testing-farm
Advanced tools
Comparing version 1.4.2 to 1.5.0
import { isError } from './util'; | ||
import { About, Composes, NewRequest, NewRequestResponse, Ranch, Request, ErrorResponse } from './schema'; | ||
import { composesSchema, aboutSchema, newRequestResponseSchema, requestSchema } from './schema'; | ||
import { composesSchema, aboutSchema, urlSchema, ranchSchema, newRequestResponseSchema, newRequestSchema, requestIdSchema, requestSchema } from './schema'; | ||
export type { Ranch, NewRequest, NewRequestResponse, Request, Composes, About, ErrorResponse, }; | ||
export { isError, composesSchema, aboutSchema, newRequestResponseSchema, requestSchema, }; | ||
export { isError, composesSchema, aboutSchema, newRequestResponseSchema, requestSchema, urlSchema, ranchSchema, newRequestSchema, requestIdSchema, }; | ||
export default class TestingFarmAPI { | ||
@@ -7,0 +7,0 @@ private readonly link; |
import { PublicLink } from './link'; | ||
import { isError } from './util'; | ||
import { composesSchema, aboutSchema, urlSchema, ranchSchema, newRequestResponseSchema, newRequestSchema, requestIdSchema, requestSchema, } from './schema'; | ||
export { isError, composesSchema, aboutSchema, newRequestResponseSchema, requestSchema, }; | ||
export { isError, composesSchema, aboutSchema, newRequestResponseSchema, requestSchema, urlSchema, ranchSchema, newRequestSchema, requestIdSchema, }; | ||
export default class TestingFarmAPI { | ||
@@ -6,0 +6,0 @@ constructor(instance) { |
@@ -562,11 +562,11 @@ import { z } from 'zod'; | ||
overall: z.ZodString; | ||
xunit: z.ZodString; | ||
xunit: z.ZodNullable<z.ZodString>; | ||
}, "strip", z.ZodTypeAny, { | ||
summary: string | null; | ||
overall: string; | ||
xunit: string; | ||
xunit: string | null; | ||
}, { | ||
summary: string | null; | ||
overall: string; | ||
xunit: string; | ||
xunit: string | null; | ||
}>; | ||
@@ -663,3 +663,3 @@ run: z.ZodObject<{ | ||
overall: string; | ||
xunit: string; | ||
xunit: string | null; | ||
}; | ||
@@ -710,3 +710,3 @@ run: { | ||
overall: string; | ||
xunit: string; | ||
xunit: string | null; | ||
}; | ||
@@ -713,0 +713,0 @@ run: { |
@@ -143,3 +143,3 @@ import { z } from 'zod'; | ||
overall: z.string(), | ||
xunit: z.string(), | ||
xunit: z.string().nullable(), | ||
}), | ||
@@ -146,0 +146,0 @@ run: z.object({ |
{ | ||
"name": "testing-farm", | ||
"version": "1.4.2", | ||
"version": "1.5.0", | ||
"description": "A NodeJS module to access Testing Farm instances through the REST API.", | ||
@@ -32,8 +32,8 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/node": "18.18.3", | ||
"@typescript-eslint/eslint-plugin": "6.7.4", | ||
"@typescript-eslint/parser": "6.7.4", | ||
"@types/node": "20.9.0", | ||
"@typescript-eslint/eslint-plugin": "6.10.0", | ||
"@typescript-eslint/parser": "6.10.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"eslint": "8.50.0", | ||
"prettier": "3.0.3", | ||
"eslint": "8.53.0", | ||
"prettier": "3.1.0", | ||
"typescript": "5.2.2", | ||
@@ -40,0 +40,0 @@ "vitest": "^0.34.0" |
@@ -39,2 +39,6 @@ import { PublicLink } from './link'; | ||
requestSchema, | ||
urlSchema, | ||
ranchSchema, | ||
newRequestSchema, | ||
requestIdSchema, | ||
}; | ||
@@ -41,0 +45,0 @@ |
@@ -161,3 +161,3 @@ import { z } from 'zod'; | ||
overall: z.string(), | ||
xunit: z.string(), | ||
xunit: z.string().nullable(), | ||
}), | ||
@@ -164,0 +164,0 @@ run: z.object({ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
91289
1426