@gabrielbryk/json-schema-to-zod 2.12.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/RELEASE_SETUP.md +120 -0
- package/.github/TOOLING_GUIDE.md +169 -0
- package/.github/dependabot.yml +52 -0
- package/.github/workflows/ci.yml +33 -0
- package/.github/workflows/release.yml +12 -4
- package/.github/workflows/security.yml +40 -0
- package/.husky/commit-msg +1 -0
- package/.husky/pre-commit +1 -0
- package/.lintstagedrc.json +3 -0
- package/.prettierrc +20 -0
- package/AGENTS.md +7 -0
- package/CHANGELOG.md +13 -4
- package/README.md +9 -9
- package/commitlint.config.js +24 -0
- package/createIndex.ts +4 -4
- package/dist/cli.js +3 -4
- package/dist/core/analyzeSchema.js +28 -5
- package/dist/core/emitZod.js +11 -4
- package/dist/generators/generateBundle.js +67 -92
- package/dist/parsers/parseAllOf.js +11 -12
- package/dist/parsers/parseAnyOf.js +2 -2
- package/dist/parsers/parseArray.js +38 -12
- package/dist/parsers/parseMultipleType.js +2 -2
- package/dist/parsers/parseNumber.js +44 -102
- package/dist/parsers/parseObject.js +138 -393
- package/dist/parsers/parseOneOf.js +57 -100
- package/dist/parsers/parseSchema.js +132 -55
- package/dist/parsers/parseSimpleDiscriminatedOneOf.js +2 -2
- package/dist/parsers/parseString.js +113 -253
- package/dist/types/Types.d.ts +22 -1
- package/dist/types/core/analyzeSchema.d.ts +1 -0
- package/dist/types/generators/generateBundle.d.ts +1 -1
- package/dist/utils/cliTools.js +1 -2
- package/dist/utils/esmEmitter.js +6 -2
- package/dist/utils/extractInlineObject.js +1 -3
- package/dist/utils/jsdocs.js +1 -4
- package/dist/utils/liftInlineObjects.js +76 -15
- package/dist/utils/resolveRef.js +35 -10
- package/dist/utils/schemaRepresentation.js +35 -66
- package/dist/zodToJsonSchema.js +1 -2
- package/docs/IMPROVEMENT-PLAN.md +30 -12
- package/docs/ZOD-V4-RECURSIVE-TYPE-LIMITATIONS.md +70 -25
- package/docs/proposals/allof-required-merging.md +10 -4
- package/docs/proposals/bundle-refactor.md +10 -4
- package/docs/proposals/discriminated-union-with-default.md +18 -14
- package/docs/proposals/inline-object-lifting.md +15 -5
- package/docs/proposals/ref-anchor-support.md +11 -0
- package/output.txt +67 -0
- package/package.json +18 -5
- package/scripts/generateWorkflowSchema.ts +5 -14
- package/scripts/regenerate_bundle.ts +25 -0
- package/tsc_output.txt +542 -0
- package/tsc_output_2.txt +489 -0
package/tsc_output_2.txt
ADDED
|
@@ -0,0 +1,489 @@
|
|
|
1
|
+
test/functional-validation.test.ts(129,14): error TS18046: 'compiled.result' is of type 'unknown'.
|
|
2
|
+
test/functional-validation.test.ts(208,30): error TS2345: Argument of type '{ allOf: ({ type: string; properties: { a: { type: string; }; b?: undefined; }; } | { type: string; properties: { b: { type: string; }; a?: undefined; }; })[]; }' is not assignable to parameter of type 'JsonSchema'.
|
|
3
|
+
Type '{ allOf: ({ type: string; properties: { a: { type: string; }; b?: undefined; }; } | { type: string; properties: { b: { type: string; }; a?: undefined; }; })[]; }' is not assignable to type 'JsonSchemaObject'.
|
|
4
|
+
Type '{ allOf: ({ type: string; properties: { a: { type: string; }; b?: undefined; }; } | { type: string; properties: { b: { type: string; }; a?: undefined; }; })[]; }' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
5
|
+
Types of property 'allOf' are incompatible.
|
|
6
|
+
Type '({ type: string; properties: { a: { type: string; }; b?: undefined; }; } | { type: string; properties: { b: { type: string; }; a?: undefined; }; })[]' is not assignable to type 'JsonSchema[]'.
|
|
7
|
+
Type '{ type: string; properties: { a: { type: string; }; b?: undefined; }; } | { type: string; properties: { b: { type: string; }; a?: undefined; }; }' is not assignable to type 'JsonSchema'.
|
|
8
|
+
Type '{ type: string; properties: { a: { type: string; }; b?: undefined; }; }' is not assignable to type 'JsonSchema'.
|
|
9
|
+
Type '{ type: string; properties: { a: { type: string; }; b?: undefined; }; }' is not assignable to type 'JsonSchemaObject'.
|
|
10
|
+
Type '{ type: string; properties: { a: { type: string; }; b?: undefined; }; }' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
11
|
+
Types of property 'properties' are incompatible.
|
|
12
|
+
Type '{ a: { type: string; }; b?: undefined; }' is not assignable to type '{ [key: string]: JsonSchema; }'.
|
|
13
|
+
Property 'b' is incompatible with index signature.
|
|
14
|
+
Type 'undefined' is not assignable to type 'JsonSchema'.
|
|
15
|
+
test/functional-validation.test.ts(232,14): error TS18046: 'compiled.result' is of type 'unknown'.
|
|
16
|
+
test/functional-validation.test.ts(249,14): error TS18046: 'compiled.result' is of type 'unknown'.
|
|
17
|
+
test/generateSchemaBundle.snap.test.ts(1,38): error TS2834: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.
|
|
18
|
+
test/generateSchemaBundle.test.ts(4,38): error TS2834: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.
|
|
19
|
+
test/generateSchemaBundle.test.ts(74,40): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
20
|
+
test/generateSchemaBundle.test.ts(93,42): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
21
|
+
test/generateSchemaBundle.test.ts(120,43): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
22
|
+
test/generateSchemaBundle.test.ts(151,41): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
23
|
+
test/generateSchemaBundle.test.ts(189,38): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
24
|
+
test/generateSchemaBundle.test.ts(190,38): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
25
|
+
test/generateSchemaBundle.test.ts(212,42): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
26
|
+
test/generateSchemaBundle.test.ts(224,42): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
27
|
+
test/generateSchemaBundle.test.ts(235,42): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
28
|
+
test/generateSchemaBundle.test.ts(286,43): error TS7006: Parameter 'f' implicitly has an 'any' type.
|
|
29
|
+
test/jsonSchemaToZod.test.ts(17,28): error TS2345: Argument of type 'JSONSchema6Definition' is not assignable to parameter of type 'JsonSchema'.
|
|
30
|
+
Type 'JSONSchema6' is not assignable to type 'JsonSchema'.
|
|
31
|
+
Type 'JSONSchema6' is not assignable to type 'JsonSchemaObject'.
|
|
32
|
+
Type 'JSONSchema6' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
33
|
+
Types of property 'definitions' are incompatible.
|
|
34
|
+
Type '{ [k: string]: JSONSchema6Definition; } | undefined' is not assignable to type 'Record<string, JsonSchema> | undefined'.
|
|
35
|
+
Type '{ [k: string]: JSONSchema6Definition; }' is not assignable to type 'Record<string, JsonSchema>'.
|
|
36
|
+
'string' index signatures are incompatible.
|
|
37
|
+
Type 'JSONSchema6Definition' is not assignable to type 'JsonSchema'.
|
|
38
|
+
Type 'JSONSchema6' is not assignable to type 'JsonSchema'.
|
|
39
|
+
Type 'JSONSchema6' is not assignable to type 'JsonSchemaObject'.
|
|
40
|
+
Type 'JSONSchema6' is not assignable to type 'Record<string, unknown>'.
|
|
41
|
+
Index signature for type 'string' is missing in type 'JSONSchema6'.
|
|
42
|
+
test/jsonSchemaToZod.test.ts(18,28): error TS2345: Argument of type 'JSONSchema7Definition' is not assignable to parameter of type 'JsonSchema'.
|
|
43
|
+
Type 'JSONSchema7' is not assignable to type 'JsonSchema'.
|
|
44
|
+
Type 'JSONSchema7' is not assignable to type 'JsonSchemaObject'.
|
|
45
|
+
Type 'JSONSchema7' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
46
|
+
Types of property '$defs' are incompatible.
|
|
47
|
+
Type '{ [key: string]: JSONSchema7Definition; } | undefined' is not assignable to type 'Record<string, JsonSchema> | undefined'.
|
|
48
|
+
Type '{ [key: string]: JSONSchema7Definition; }' is not assignable to type 'Record<string, JsonSchema>'.
|
|
49
|
+
'string' index signatures are incompatible.
|
|
50
|
+
Type 'JSONSchema7Definition' is not assignable to type 'JsonSchema'.
|
|
51
|
+
Type 'JSONSchema7' is not assignable to type 'JsonSchema'.
|
|
52
|
+
Type 'JSONSchema7' is not assignable to type 'JsonSchemaObject'.
|
|
53
|
+
Type 'JSONSchema7' is not assignable to type 'Record<string, unknown>'.
|
|
54
|
+
Index signature for type 'string' is missing in type 'JSONSchema7'.
|
|
55
|
+
test/jsonSchemaToZod.test.ts(373,23): error TS2345: Argument of type '{ oneOf: ({ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; } | { type: string; properties: { kind: { const: string; }; flag: { type: string; }; value?: undefined; }; required: string[]; })[]; discriminator: { ...; }; }' is not assignable to parameter of type 'JsonSchema'.
|
|
56
|
+
Type '{ oneOf: ({ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; } | { type: string; properties: { kind: { const: string; }; flag: { type: string; }; value?: undefined; }; required: string[]; })[]; discriminator: { ...; }; }' is not assignable to type 'JsonSchemaObject'.
|
|
57
|
+
Type '{ oneOf: ({ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; } | { type: string; properties: { kind: { const: string; }; flag: { type: string; }; value?: undefined; }; required: string[]; })[]; discriminator: { ...; }; }' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
58
|
+
Types of property 'oneOf' are incompatible.
|
|
59
|
+
Type '({ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; } | { type: string; properties: { kind: { const: string; }; flag: { type: string; }; value?: undefined; }; required: string[]; })[]' is not assignable to type 'JsonSchema[]'.
|
|
60
|
+
Type '{ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; } | { type: string; properties: { kind: { const: string; }; flag: { type: string; }; value?: undefined; }; required: string[]; }' is not assignable to type 'JsonSchema'.
|
|
61
|
+
Type '{ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; }' is not assignable to type 'JsonSchema'.
|
|
62
|
+
Type '{ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; }' is not assignable to type 'JsonSchemaObject'.
|
|
63
|
+
Type '{ type: string; properties: { kind: { const: string; }; value: { type: string; }; flag?: undefined; }; required: string[]; }' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
64
|
+
Types of property 'properties' are incompatible.
|
|
65
|
+
Type '{ kind: { const: string; }; value: { type: string; }; flag?: undefined; }' is not assignable to type '{ [key: string]: JsonSchema; }'.
|
|
66
|
+
Property 'flag' is incompatible with index signature.
|
|
67
|
+
Type 'undefined' is not assignable to type 'JsonSchema'.
|
|
68
|
+
test/output/workflow.zod.ts(20,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
69
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
70
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
71
|
+
test/output/workflow.zod.ts(38,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
72
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
73
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
74
|
+
test/output/workflow.zod.ts(56,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
75
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
76
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
77
|
+
test/output/workflow.zod.ts(74,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
78
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
79
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
80
|
+
test/output/workflow.zod.ts(92,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
81
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
82
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
83
|
+
test/output/workflow.zod.ts(109,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
84
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
85
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
86
|
+
test/output/workflow.zod.ts(128,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
87
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
88
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
89
|
+
test/output/workflow.zod.ts(148,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
90
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
91
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
92
|
+
test/output/workflow.zod.ts(165,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
93
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
94
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
95
|
+
test/output/workflow.zod.ts(185,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
96
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
97
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
98
|
+
test/output/workflow.zod.ts(204,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
99
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
100
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
101
|
+
test/output/workflow.zod.ts(223,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
102
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
103
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
104
|
+
test/output/workflow.zod.ts(241,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
105
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
106
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
107
|
+
test/output/workflow.zod.ts(260,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
108
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
109
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
110
|
+
test/output/workflow.zod.ts(279,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
111
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
112
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
113
|
+
test/output/workflow.zod.ts(298,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
114
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
115
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
116
|
+
test/output/workflow.zod.ts(319,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
117
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
118
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
119
|
+
test/output/workflow.zod.ts(340,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
120
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
121
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
122
|
+
test/output/workflow.zod.ts(348,428): error TS2448: Block-scoped variable 'TaskList' used before its declaration.
|
|
123
|
+
test/output/workflow.zod.ts(348,428): error TS2454: Variable 'TaskList' is used before being assigned.
|
|
124
|
+
test/output/workflow.zod.ts(362,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
125
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
126
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
127
|
+
test/output/workflow.zod.ts(380,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
128
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
129
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
130
|
+
test/output/workflow.zod.ts(398,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
131
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
132
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
133
|
+
test/output/workflow.zod.ts(416,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
134
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
135
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
136
|
+
test/output/workflow.zod.ts(434,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
137
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
138
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
139
|
+
test/output/workflow.zod.ts(452,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
140
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
141
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
142
|
+
test/output/workflow.zod.ts(469,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
143
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
144
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
145
|
+
test/output/workflow.zod.ts(477,92): error TS2448: Block-scoped variable 'TaskList' used before its declaration.
|
|
146
|
+
test/output/workflow.zod.ts(477,92): error TS2454: Variable 'TaskList' is used before being assigned.
|
|
147
|
+
test/output/workflow.zod.ts(490,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
148
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
149
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
150
|
+
test/output/workflow.zod.ts(508,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
151
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
152
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
153
|
+
test/output/workflow.zod.ts(526,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
154
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
155
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
156
|
+
test/output/workflow.zod.ts(535,874): error TS2448: Block-scoped variable 'TaskList' used before its declaration.
|
|
157
|
+
test/output/workflow.zod.ts(535,874): error TS2454: Variable 'TaskList' is used before being assigned.
|
|
158
|
+
test/output/workflow.zod.ts(549,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
159
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
160
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
161
|
+
test/output/workflow.zod.ts(566,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
162
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
163
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
164
|
+
test/output/workflow.zod.ts(586,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
165
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
166
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
167
|
+
test/output/workflow.zod.ts(599,18): error TS2339: Property 'errors' does not exist on type 'ZodError<any>'.
|
|
168
|
+
test/output/workflow.zod.ts(599,34): error TS7006: Parameter 'error' implicitly has an 'any' type.
|
|
169
|
+
test/output/workflow.zod.ts(614,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
170
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
171
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
172
|
+
test/output/workflow.zod.ts(631,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
173
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
174
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
175
|
+
test/output/workflow.zod.ts(650,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
176
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
177
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
178
|
+
test/output/workflow.zod.ts(671,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
179
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
180
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
181
|
+
test/output/workflow.zod.ts(679,94): error TS2448: Block-scoped variable 'TaskList' used before its declaration.
|
|
182
|
+
test/output/workflow.zod.ts(679,94): error TS2454: Variable 'TaskList' is used before being assigned.
|
|
183
|
+
test/output/workflow.zod.ts(690,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
184
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
185
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
186
|
+
test/output/workflow.zod.ts(710,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
187
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
188
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
189
|
+
test/output/workflow.zod.ts(733,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
190
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
191
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
192
|
+
test/output/workflow/schemas/AsyncApiMessageConsumptionPolicy.ts(15,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
193
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
194
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
195
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(16,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
196
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
197
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
198
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(34,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
199
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
200
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
201
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(52,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
202
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
203
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
204
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(70,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
205
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
206
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
207
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(88,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
208
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
209
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
210
|
+
test/output/workflow/schemas/AuthenticationPolicy.ts(105,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
211
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
212
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
213
|
+
test/output/workflow/schemas/CallTask.ts(23,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
214
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
215
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
216
|
+
test/output/workflow/schemas/CallTask.ts(41,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
217
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
218
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
219
|
+
test/output/workflow/schemas/CallTask.ts(59,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
220
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
221
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
222
|
+
test/output/workflow/schemas/CallTask.ts(77,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
223
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
224
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
225
|
+
test/output/workflow/schemas/CallTask.ts(95,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
226
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
227
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
228
|
+
test/output/workflow/schemas/CallTask.ts(113,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
229
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
230
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
231
|
+
test/output/workflow/schemas/CallTask.ts(130,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
232
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
233
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
234
|
+
test/output/workflow/schemas/ContainerLifetime.ts(8,18): error TS2339: Property 'errors' does not exist on type 'ZodError<any>'.
|
|
235
|
+
test/output/workflow/schemas/ContainerLifetime.ts(8,34): error TS7006: Parameter 'error' implicitly has an 'any' type.
|
|
236
|
+
test/output/workflow/schemas/Duration.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
237
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
238
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
239
|
+
test/output/workflow/schemas/Endpoint.ts(17,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
240
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
241
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
242
|
+
test/output/workflow/schemas/Endpoint.ts(34,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
243
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
244
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
245
|
+
test/output/workflow/schemas/Error.ts(15,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
246
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
247
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
248
|
+
test/output/workflow/schemas/Error.ts(33,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
249
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
250
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
251
|
+
test/output/workflow/schemas/EventConsumptionStrategy.ts(15,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
252
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
253
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
254
|
+
test/output/workflow/schemas/EventConsumptionStrategy.ts(32,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
255
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
256
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
257
|
+
test/output/workflow/schemas/EventProperties.ts(15,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
258
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
259
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
260
|
+
test/output/workflow/schemas/EventProperties.ts(33,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
261
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
262
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
263
|
+
test/output/workflow/schemas/EventProperties.ts(51,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
264
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
265
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
266
|
+
test/output/workflow/schemas/Export.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
267
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
268
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
269
|
+
test/output/workflow/schemas/Input.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
270
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
271
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
272
|
+
test/output/workflow/schemas/Output.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
273
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
274
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
275
|
+
test/output/workflow/schemas/RaiseTask.ts(15,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
276
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
277
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
278
|
+
test/output/workflow/schemas/ReferenceableAuthenticationPolicy.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
279
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
280
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
281
|
+
test/output/workflow/schemas/RetryPolicy.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
282
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
283
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
284
|
+
test/output/workflow/schemas/RunTask.ts(17,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
285
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
286
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
287
|
+
test/output/workflow/schemas/RunTask.ts(34,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
288
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
289
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
290
|
+
test/output/workflow/schemas/Schema.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
291
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
292
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
293
|
+
test/output/workflow/schemas/SetTask.ts(14,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
294
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
295
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
296
|
+
test/output/workflow/schemas/Task.ts(25,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
297
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
298
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
299
|
+
test/output/workflow/schemas/TaskBase.ts(18,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
300
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
301
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
302
|
+
test/output/workflow/schemas/TryTask.ts(17,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
303
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
304
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
305
|
+
test/output/workflow/schemas/workflowSchema.ts(26,20): error TS2345: Argument of type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to parameter of type 'string | { [x: string]: unknown; readonly pattern?: string | undefined; readonly format: $ZodStringFormats | (string & {}); readonly input?: string | undefined; readonly code: "invalid_format"; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 mor...'.
|
|
306
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: z.ZodError<unknown>[]; message: string; }' is not assignable to type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: $ZodIssue[][]; readonly code: "invalid_union"; readonly inclusive?: true | undefined; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1...'.
|
|
307
|
+
Type '{ path: never[]; code: "invalid_union"; unionErrors: ZodError<unknown>[]; message: string; }' is missing the following properties from type '{ [x: string]: unknown; readonly discriminator?: string | undefined; readonly input?: unknown; readonly errors: []; readonly code: "invalid_union"; readonly inclusive: false; readonly path?: PropertyKey[] | undefined; readonly message?: string | undefined; readonly inst?: $ZodType<...> | ... 1 more ... | undefined; ...': errors, inclusive
|
|
308
|
+
test/parsers/parseAllOf.test.ts(1,28): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseAllOf.js'?
|
|
309
|
+
test/parsers/parseAllOf.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
310
|
+
test/parsers/parseAllOf.test.ts(4,22): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
311
|
+
test/parsers/parseAllOf.test.ts(5,41): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
312
|
+
test/parsers/parseAllOf.test.ts(17,38): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
313
|
+
test/parsers/parseAllOf.test.ts(29,39): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
314
|
+
test/parsers/parseAnyOf.test.ts(1,28): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseAnyOf.js'?
|
|
315
|
+
test/parsers/parseAnyOf.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
316
|
+
test/parsers/parseAnyOf.test.ts(4,22): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
317
|
+
test/parsers/parseAnyOf.test.ts(5,59): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
318
|
+
test/parsers/parseAnyOf.test.ts(22,43): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
319
|
+
test/parsers/parseAnyOf.test.ts(32,52): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
320
|
+
test/parsers/parseArray.test.ts(1,28): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseArray.js'?
|
|
321
|
+
test/parsers/parseArray.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
322
|
+
test/parsers/parseArray.test.ts(4,22): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
323
|
+
test/parsers/parseArray.test.ts(5,49): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
324
|
+
test/parsers/parseArray.test.ts(25,50): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
325
|
+
test/parsers/parseArray.test.ts(40,43): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
326
|
+
test/parsers/parseArray.test.ts(56,46): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
327
|
+
test/parsers/parseConst.test.ts(1,28): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseConst.js'?
|
|
328
|
+
test/parsers/parseConst.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
329
|
+
test/parsers/parseConst.test.ts(4,22): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
330
|
+
test/parsers/parseConst.test.ts(5,42): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
331
|
+
test/parsers/parseEnum.test.ts(1,27): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseEnum.js'?
|
|
332
|
+
test/parsers/parseEnum.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
333
|
+
test/parsers/parseEnum.test.ts(4,21): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
334
|
+
test/parsers/parseEnum.test.ts(5,48): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
335
|
+
test/parsers/parseEnum.test.ts(16,56): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
336
|
+
test/parsers/parseEnum.test.ts(27,55): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
337
|
+
test/parsers/parseEnum.test.ts(37,49): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
338
|
+
test/parsers/parseMultipleType.test.ts(1,29): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseSchema.js'?
|
|
339
|
+
test/parsers/parseMultipleType.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
340
|
+
test/parsers/parseMultipleType.test.ts(4,29): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
341
|
+
test/parsers/parseMultipleType.test.ts(5,72): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
342
|
+
test/parsers/parseNot.test.ts(1,26): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseNot.js'?
|
|
343
|
+
test/parsers/parseNot.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
344
|
+
test/parsers/parseNot.test.ts(4,20): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
345
|
+
test/parsers/parseNot.test.ts(5,13): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
346
|
+
test/parsers/parseNullable.test.ts(1,29): error TS2834: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Consider adding an extension to the import path.
|
|
347
|
+
test/parsers/parseNullable.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
348
|
+
test/parsers/parseNullable.test.ts(4,25): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
349
|
+
test/parsers/parseNullable.test.ts(5,53): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
350
|
+
test/parsers/parseNumber.test.ts(1,29): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseNumber.js'?
|
|
351
|
+
test/parsers/parseNumber.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
352
|
+
test/parsers/parseNumber.test.ts(4,23): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
353
|
+
test/parsers/parseNumber.test.ts(5,34): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
354
|
+
test/parsers/parseNumber.test.ts(30,56): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
355
|
+
test/parsers/parseNumber.test.ts(41,56): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
356
|
+
test/parsers/parseNumber.test.ts(51,56): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
357
|
+
test/parsers/parseNumber.test.ts(62,51): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
358
|
+
test/parsers/parseNumber.test.ts(72,57): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
359
|
+
test/parsers/parseNumber.test.ts(99,39): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
360
|
+
test/parsers/parseNumber.test.ts(119,38): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
361
|
+
test/parsers/parseObject.test.ts(4,29): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseObject.js'?
|
|
362
|
+
test/parsers/parseObject.test.ts(5,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
363
|
+
test/parsers/parseObject.test.ts(11,23): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
364
|
+
test/parsers/parseObject.test.ts(12,50): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
365
|
+
test/parsers/parseObject.test.ts(24,48): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
366
|
+
test/parsers/parseObject.test.ts(37,77): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
367
|
+
test/parsers/parseObject.test.ts(59,83): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
368
|
+
test/parsers/parseObject.test.ts(78,82): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
369
|
+
test/parsers/parseObject.test.ts(97,88): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
370
|
+
test/parsers/parseObject.test.ts(117,86): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
371
|
+
test/parsers/parseObject.test.ts(130,85): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
372
|
+
test/parsers/parseObject.test.ts(143,91): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
373
|
+
test/parsers/parseObject.test.ts(157,63): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
374
|
+
test/parsers/parseObject.test.ts(175,15): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
375
|
+
test/parsers/parseObject.test.ts(359,73): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
376
|
+
test/parsers/parseObject.test.ts(370,15): error TS2353: Object literal may only specify known properties, and 'unevaluatedProperties' does not exist in type 'JSONSchema7'.
|
|
377
|
+
test/parsers/parseObject.test.ts(402,101): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
378
|
+
test/parsers/parseObject.test.ts(429,34): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
379
|
+
test/parsers/parseObject.test.ts(436,41): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
380
|
+
test/parsers/parseObject.test.ts(469,66): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
381
|
+
test/parsers/parseObject.test.ts(494,75): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
382
|
+
test/parsers/parseObject.test.ts(517,85): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
383
|
+
test/parsers/parseObject.test.ts(564,51): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
384
|
+
test/parsers/parseObject.test.ts(577,73): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
385
|
+
test/parsers/parseObject.test.ts(617,60): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
386
|
+
test/parsers/parseObject.test.ts(631,48): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
387
|
+
test/parsers/parseObject.test.ts(650,63): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
388
|
+
test/parsers/parseObject.test.ts(674,30): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
389
|
+
test/parsers/parseObject.test.ts(682,7): error TS2353: Object literal may only specify known properties, and 'dependentRequired' does not exist in type 'JSONSchema7 & { type: "object"; }'.
|
|
390
|
+
test/parsers/parseObject.test.ts(693,50): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
391
|
+
test/parsers/parseObject.test.ts(700,7): error TS2353: Object literal may only specify known properties, and 'dependentRequired' does not exist in type 'JSONSchema7 & { type: "object"; }'.
|
|
392
|
+
test/parsers/parseOneOf.test.ts(1,28): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseOneOf.js'?
|
|
393
|
+
test/parsers/parseOneOf.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
394
|
+
test/parsers/parseOneOf.test.ts(4,22): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
395
|
+
test/parsers/parseOneOf.test.ts(5,52): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
396
|
+
test/parsers/parseOneOf.test.ts(22,86): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
397
|
+
test/parsers/parseOneOf.test.ts(57,43): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
398
|
+
test/parsers/parseOneOf.test.ts(67,52): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
399
|
+
test/parsers/parseSchema.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
400
|
+
test/parsers/parseSchema.test.ts(4,23): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
401
|
+
test/parsers/parseSchema.test.ts(5,52): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
402
|
+
test/parsers/parseSchema.test.ts(9,51): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
403
|
+
test/parsers/parseSchema.test.ts(27,61): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
404
|
+
test/parsers/parseSchema.test.ts(34,35): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
405
|
+
test/parsers/parseSchema.test.ts(47,31): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
406
|
+
test/parsers/parseSchema.test.ts(54,40): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
407
|
+
test/parsers/parseSchema.test.ts(63,44): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
408
|
+
test/parsers/parseSchema.test.ts(82,32): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
409
|
+
test/parsers/parseSchema.test.ts(94,61): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
410
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(4,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
411
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(6,41): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
412
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(7,80): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
413
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(37,43): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
414
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(60,52): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
415
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(72,58): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
416
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(105,81): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
417
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(132,86): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
418
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(151,59): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
419
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(169,58): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
420
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(178,66): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
421
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(192,67): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
422
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(202,72): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
423
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(217,80): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
424
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(234,67): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
425
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(252,80): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
426
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(269,95): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
427
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(286,82): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
428
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(303,68): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
429
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(318,82): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
430
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(335,58): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
431
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(352,73): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
432
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(371,68): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
433
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(390,69): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
434
|
+
test/parsers/parseSimpleDiscriminatedOneOf.test.ts(409,69): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
435
|
+
test/parsers/parseString.test.ts(2,29): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/parsers/parseString.js'?
|
|
436
|
+
test/parsers/parseString.test.ts(3,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
437
|
+
test/parsers/parseString.test.ts(5,23): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
438
|
+
test/parsers/parseString.test.ts(13,28): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
439
|
+
test/parsers/parseString.test.ts(27,18): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
440
|
+
test/parsers/parseString.test.ts(37,15): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
441
|
+
test/parsers/parseString.test.ts(54,16): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
442
|
+
test/parsers/parseString.test.ts(64,17): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
443
|
+
test/parsers/parseString.test.ts(74,17): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
444
|
+
test/parsers/parseString.test.ts(84,17): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
445
|
+
test/parsers/parseString.test.ts(94,21): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
446
|
+
test/parsers/parseString.test.ts(104,19): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
447
|
+
test/parsers/parseString.test.ts(141,29): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
448
|
+
test/parsers/parseString.test.ts(192,39): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
449
|
+
test/parsers/parseString.test.ts(211,62): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
450
|
+
test/parsers/parseString.test.ts(253,51): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
451
|
+
test/parsers/parseString.test.ts(270,61): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
452
|
+
test/parsers/parseString.test.ts(274,43): error TS7006: Parameter 'format' implicitly has an 'any' type.
|
|
453
|
+
test/parsers/parseString.test.ts(274,51): error TS7006: Parameter 'path' implicitly has an 'any' type.
|
|
454
|
+
test/reconstructJsonSchema.test.ts(1,39): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../src/zodToJsonSchema.js'?
|
|
455
|
+
test/reconstructJsonSchema.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './suite.js'?
|
|
456
|
+
test/reconstructJsonSchema.test.ts(4,33): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
457
|
+
test/reconstructJsonSchema.test.ts(5,66): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
458
|
+
test/reconstructJsonSchema.test.ts(25,71): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
459
|
+
test/reconstructJsonSchema.test.ts(59,49): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
460
|
+
test/reconstructJsonSchema.test.ts(83,53): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
461
|
+
test/utils/assertCode.ts(30,7): error TS2322: Type 'boolean | undefined' is not assignable to type 'boolean'.
|
|
462
|
+
Type 'undefined' is not assignable to type 'boolean'.
|
|
463
|
+
test/utils/cliTools.test.ts(1,40): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/utils/cliTools.js'?
|
|
464
|
+
test/utils/cliTools.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
465
|
+
test/utils/cliTools.test.ts(4,20): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
466
|
+
test/utils/cliTools.test.ts(5,91): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
467
|
+
test/utils/cliTools.test.ts(10,66): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
468
|
+
test/utils/cliTools.test.ts(20,79): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
469
|
+
test/utils/cliTools.test.ts(30,58): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
470
|
+
test/utils/cliTools.test.ts(42,62): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
471
|
+
test/utils/half.test.ts(1,22): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/utils/half.js'?
|
|
472
|
+
test/utils/half.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
473
|
+
test/utils/half.test.ts(4,16): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
474
|
+
test/utils/half.test.ts(5,17): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
475
|
+
test/utils/liftInlineObjects.test.ts(43,38): error TS2345: Argument of type '{ readonly allOf: readonly [{ readonly type: "object"; readonly properties: { readonly a: { readonly type: "string"; }; }; }, { readonly type: "object"; readonly properties: { readonly b: { readonly type: "string"; }; }; }]; }' is not assignable to parameter of type 'JsonSchema'.
|
|
476
|
+
Type '{ readonly allOf: readonly [{ readonly type: "object"; readonly properties: { readonly a: { readonly type: "string"; }; }; }, { readonly type: "object"; readonly properties: { readonly b: { readonly type: "string"; }; }; }]; }' is not assignable to type 'JsonSchemaObject'.
|
|
477
|
+
Type '{ readonly allOf: readonly [{ readonly type: "object"; readonly properties: { readonly a: { readonly type: "string"; }; }; }, { readonly type: "object"; readonly properties: { readonly b: { readonly type: "string"; }; }; }]; }' is not assignable to type '{ type?: string | string[] | undefined; $id?: string | undefined; $ref?: string | undefined; $anchor?: string | undefined; $dynamicRef?: string | undefined; $dynamicAnchor?: string | undefined; ... 44 more ...; errorMessage?: { ...; } | undefined; }'.
|
|
478
|
+
Types of property 'allOf' are incompatible.
|
|
479
|
+
The type 'readonly [{ readonly type: "object"; readonly properties: { readonly a: { readonly type: "string"; }; }; }, { readonly type: "object"; readonly properties: { readonly b: { readonly type: "string"; }; }; }]' is 'readonly' and cannot be assigned to the mutable type 'JsonSchema[]'.
|
|
480
|
+
test/utils/omit.test.ts(1,22): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../../src/utils/omit.js'?
|
|
481
|
+
test/utils/omit.test.ts(2,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean '../suite.js'?
|
|
482
|
+
test/utils/omit.test.ts(4,16): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
483
|
+
test/utils/omit.test.ts(5,17): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
484
|
+
test/utils/omit.test.ts(14,7): error TS2578: Unused '@ts-expect-error' directive.
|
|
485
|
+
test/utils/omit.test.ts(22,5): error TS2578: Unused '@ts-expect-error' directive.
|
|
486
|
+
test/workflowSchema.test.ts(6,23): error TS2835: Relative import paths need explicit file extensions in ECMAScript imports when '--moduleResolution' is 'node16' or 'nodenext'. Did you mean './suite.js'?
|
|
487
|
+
test/workflowSchema.test.ts(8,25): error TS7006: Parameter 'test' implicitly has an 'any' type.
|
|
488
|
+
test/workflowSchema.test.ts(9,45): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|
|
489
|
+
test/workflowSchema.test.ts(30,64): error TS7006: Parameter 'assert' implicitly has an 'any' type.
|