@forklaunch/validator 0.3.0 → 0.3.2
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/LICENSE +21 -0
- package/lib/eslint.config.d.mts +3 -0
- package/lib/eslint.config.d.mts.map +1 -0
- package/lib/eslint.config.mjs +10 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +1 -0
- package/lib/jest.config.d.ts +4 -0
- package/lib/jest.config.d.ts.map +1 -0
- package/lib/jest.config.js +21 -0
- package/{dist → lib/src/shared}/types/schema.types.d.ts +47 -7
- package/lib/src/shared/types/schema.types.d.ts.map +1 -0
- package/lib/src/typebox/index.d.ts +3 -0
- package/lib/src/typebox/index.d.ts.map +1 -0
- package/lib/src/typebox/index.js +1 -0
- package/lib/src/typebox/staticSchemaValidator.d.ts +93 -0
- package/lib/src/typebox/staticSchemaValidator.d.ts.map +1 -0
- package/lib/src/typebox/staticSchemaValidator.js +91 -0
- package/lib/src/typebox/typeboxSchemaValidator.d.ts +110 -0
- package/lib/src/typebox/typeboxSchemaValidator.d.ts.map +1 -0
- package/lib/src/typebox/typeboxSchemaValidator.js +343 -0
- package/{dist/typebox/types/typebox.schema.types.d.ts → lib/src/typebox/types/schema.types.d.ts} +9 -13
- package/lib/src/typebox/types/schema.types.d.ts.map +1 -0
- package/lib/src/zod/index.d.ts +3 -0
- package/lib/src/zod/index.d.ts.map +1 -0
- package/lib/src/zod/index.js +1 -0
- package/lib/src/zod/staticSchemaValidator.d.ts +93 -0
- package/lib/src/zod/staticSchemaValidator.d.ts.map +1 -0
- package/lib/src/zod/staticSchemaValidator.js +91 -0
- package/{dist/zod/types/zod.schema.types.d.ts → lib/src/zod/types/schema.types.d.ts} +3 -2
- package/lib/src/zod/types/schema.types.d.ts.map +1 -0
- package/lib/src/zod/types/schema.types.js +1 -0
- package/lib/src/zod/zodSchemaValidator.d.ts +98 -0
- package/lib/src/zod/zodSchemaValidator.d.ts.map +1 -0
- package/lib/src/zod/zodSchemaValidator.js +179 -0
- package/lib/tests/typebox/advancedParse.test.d.ts +2 -0
- package/lib/tests/typebox/advancedParse.test.d.ts.map +1 -0
- package/lib/tests/typebox/advancedParse.test.js +514 -0
- package/lib/tests/typebox/largeSchema.test.d.ts +2 -0
- package/lib/tests/typebox/largeSchema.test.d.ts.map +1 -0
- package/{dist → lib}/tests/typebox/largeSchema.test.js +46 -49
- package/lib/tests/typebox/schemaValidator.test.d.ts +2 -0
- package/lib/tests/typebox/schemaValidator.test.d.ts.map +1 -0
- package/lib/tests/typebox/schemaValidator.test.js +219 -0
- package/{dist/tests/typebox/equality.test.d.ts → lib/tests/typebox/typeEquality.test.d.ts} +1 -0
- package/lib/tests/typebox/typeEquality.test.d.ts.map +1 -0
- package/lib/tests/typebox/typeEquality.test.js +100 -0
- package/lib/tests/utils/compare.d.ts +2 -0
- package/lib/tests/utils/compare.d.ts.map +1 -0
- package/lib/tests/utils/compare.js +8 -0
- package/{dist/tests → lib/tests/utils}/mockSchemaValidator.d.ts +14 -8
- package/lib/tests/utils/mockSchemaValidator.d.ts.map +1 -0
- package/lib/tests/utils/mockSchemaValidator.js +72 -0
- package/lib/tests/zod/advancedParse.test.d.ts +2 -0
- package/lib/tests/zod/advancedParse.test.d.ts.map +1 -0
- package/lib/tests/zod/advancedParse.test.js +514 -0
- package/lib/tests/zod/largeSchema.test.d.ts +2 -0
- package/lib/tests/zod/largeSchema.test.d.ts.map +1 -0
- package/{dist → lib}/tests/zod/largeSchema.test.js +43 -46
- package/lib/tests/zod/schemaValidator.test.d.ts +2 -0
- package/lib/tests/zod/schemaValidator.test.d.ts.map +1 -0
- package/lib/tests/zod/schemaValidator.test.js +179 -0
- package/{dist/tests/zod/equality.test.d.ts → lib/tests/zod/typeEquality.test.d.ts} +1 -0
- package/lib/tests/zod/typeEquality.test.d.ts.map +1 -0
- package/lib/tests/zod/typeEquality.test.js +100 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/vitest.config.d.ts +3 -0
- package/lib/vitest.config.d.ts.map +1 -0
- package/lib/vitest.config.js +7 -0
- package/package.json +35 -39
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -18
- package/dist/index.js.map +0 -1
- package/dist/jest.config.d.ts +0 -3
- package/dist/jest.config.js +0 -10
- package/dist/jest.config.js.map +0 -1
- package/dist/tests/mockSchemaValidator.js +0 -60
- package/dist/tests/mockSchemaValidator.js.map +0 -1
- package/dist/tests/typebox/equality.test.js +0 -234
- package/dist/tests/typebox/equality.test.js.map +0 -1
- package/dist/tests/typebox/largeSchema.test.js.map +0 -1
- package/dist/tests/zod/equality.test.js +0 -238
- package/dist/tests/zod/equality.test.js.map +0 -1
- package/dist/tests/zod/largeSchema.test.js.map +0 -1
- package/dist/typebox/index.d.ts +0 -1
- package/dist/typebox/index.js +0 -18
- package/dist/typebox/index.js.map +0 -1
- package/dist/typebox/typebox.schemaValidator.d.ts +0 -150
- package/dist/typebox/typebox.schemaValidator.js +0 -203
- package/dist/typebox/typebox.schemaValidator.js.map +0 -1
- package/dist/typebox/types/typebox.schema.types.js +0 -3
- package/dist/typebox/types/typebox.schema.types.js.map +0 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/index.js +0 -18
- package/dist/types/index.js.map +0 -1
- package/dist/types/schema.types.js +0 -3
- package/dist/types/schema.types.js.map +0 -1
- package/dist/zod/index.d.ts +0 -1
- package/dist/zod/index.js +0 -18
- package/dist/zod/index.js.map +0 -1
- package/dist/zod/types/zod.schema.types.js +0 -3
- package/dist/zod/types/zod.schema.types.js.map +0 -1
- package/dist/zod/zod.schemaValidator.d.ts +0 -147
- package/dist/zod/zod.schemaValidator.js +0 -196
- package/dist/zod/zod.schemaValidator.js.map +0 -1
- /package/{dist/tests/typebox/largeSchema.test.d.ts → lib/src/shared/types/schema.types.js} +0 -0
- /package/{dist/tests/zod/largeSchema.test.d.ts → lib/src/typebox/types/schema.types.js} +0 -0
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* This module provides a Zod-based schema definition.
|
|
4
|
-
* It includes various types, schema creation, validation, and OpenAPI integration.
|
|
5
|
-
*
|
|
6
|
-
* @module ZodSchemaValidator
|
|
7
|
-
*/
|
|
8
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.openapi = exports.validate = exports.literal = exports.union = exports.array = exports.optional = exports.schemify = exports.never = exports.unknown = exports.any = exports.empty = exports.symbol = exports.date = exports.boolean = exports.bigint = exports.number = exports.string = exports.ZodSchema = exports.ZodSchemaValidator = void 0;
|
|
10
|
-
const zod_openapi_1 = require("@anatine/zod-openapi");
|
|
11
|
-
const zod_1 = require("zod");
|
|
12
|
-
/**
|
|
13
|
-
* Class representing a Zod schema definition.
|
|
14
|
-
* @implements {SchemaValidator}
|
|
15
|
-
*/
|
|
16
|
-
class ZodSchemaValidator {
|
|
17
|
-
_Type;
|
|
18
|
-
_SchemaCatchall;
|
|
19
|
-
_ValidSchemaObject;
|
|
20
|
-
string = zod_1.z.string();
|
|
21
|
-
number = zod_1.z.number();
|
|
22
|
-
bigint = zod_1.z.bigint();
|
|
23
|
-
boolean = zod_1.z.boolean();
|
|
24
|
-
date = zod_1.z.date();
|
|
25
|
-
symbol = zod_1.z.symbol();
|
|
26
|
-
empty = zod_1.z.union([zod_1.z.void(), zod_1.z.null(), zod_1.z.undefined()]);
|
|
27
|
-
any = zod_1.z.any();
|
|
28
|
-
unknown = zod_1.z.unknown();
|
|
29
|
-
never = zod_1.z.never();
|
|
30
|
-
/**
|
|
31
|
-
* Convert a schema to a Zod schema.
|
|
32
|
-
* @param {ZodIdiomaticSchema} schema - The schema to convert.
|
|
33
|
-
* @returns {ZodResolve<T>} The resolved schema.
|
|
34
|
-
*/
|
|
35
|
-
schemify(schema) {
|
|
36
|
-
if (typeof schema === 'string' ||
|
|
37
|
-
typeof schema === 'number' ||
|
|
38
|
-
typeof schema === 'boolean') {
|
|
39
|
-
return zod_1.z.literal(schema);
|
|
40
|
-
}
|
|
41
|
-
if (schema instanceof zod_1.ZodType) {
|
|
42
|
-
return schema;
|
|
43
|
-
}
|
|
44
|
-
const newSchema = {};
|
|
45
|
-
Object.getOwnPropertyNames(schema).forEach((key) => {
|
|
46
|
-
if (schema[key] instanceof zod_1.ZodType) {
|
|
47
|
-
newSchema[key] = schema[key];
|
|
48
|
-
}
|
|
49
|
-
else {
|
|
50
|
-
newSchema[key] = this.schemify(schema[key]);
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
return zod_1.z.object(newSchema);
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Make a schema optional.
|
|
57
|
-
* @param {ZodIdiomaticSchema} schema - The schema to make optional.
|
|
58
|
-
* @returns {ZodOptional<ZodResolve<T>>} The optional schema.
|
|
59
|
-
*/
|
|
60
|
-
optional(schema) {
|
|
61
|
-
if (schema instanceof zod_1.ZodType) {
|
|
62
|
-
return schema.optional();
|
|
63
|
-
}
|
|
64
|
-
return this.schemify(schema).optional();
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* Create an array schema.
|
|
68
|
-
* @param {ZodIdiomaticSchema} schema - The schema to use for array items.
|
|
69
|
-
* @returns {ZodArray<ZodResolve<T>>} The array schema.
|
|
70
|
-
*/
|
|
71
|
-
array(schema) {
|
|
72
|
-
if (schema instanceof zod_1.ZodType) {
|
|
73
|
-
return schema.array();
|
|
74
|
-
}
|
|
75
|
-
return this.schemify(schema).array();
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* Create a union schema.
|
|
79
|
-
* @param {ZodUnionContainer} schemas - The schemas to union.
|
|
80
|
-
* @returns {ZodUnion<UnionZodResolve<T>>} The union schema.
|
|
81
|
-
*/
|
|
82
|
-
union(schemas) {
|
|
83
|
-
if (schemas.length < 2) {
|
|
84
|
-
throw new Error('Union must have at least two schemas');
|
|
85
|
-
}
|
|
86
|
-
const unionTypes = schemas.map((schema) => {
|
|
87
|
-
if (schema instanceof zod_1.ZodType) {
|
|
88
|
-
return schema;
|
|
89
|
-
}
|
|
90
|
-
return this.schemify(schema);
|
|
91
|
-
});
|
|
92
|
-
return zod_1.z.union(unionTypes);
|
|
93
|
-
}
|
|
94
|
-
/**
|
|
95
|
-
* Create a literal schema.
|
|
96
|
-
* @param {LiteralSchema} value - The literal value.
|
|
97
|
-
* @returns {ZodLiteral<ZodResolve<T>>} The literal schema.
|
|
98
|
-
*/
|
|
99
|
-
literal(value) {
|
|
100
|
-
return zod_1.z.literal(value);
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* Validate a value against a schema.
|
|
104
|
-
* @param {ZodCatchall} schema - The schema to validate against.
|
|
105
|
-
* @param {unknown} value - The value to validate.
|
|
106
|
-
* @returns {boolean} True if valid, otherwise false.
|
|
107
|
-
*/
|
|
108
|
-
validate(schema, value) {
|
|
109
|
-
return schema.safeParse(value).success;
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Convert a schema to an OpenAPI schema object.
|
|
113
|
-
* @param {ZodIdiomaticSchema} schema - The schema to convert.
|
|
114
|
-
* @returns {SchemaObject} The OpenAPI schema object.
|
|
115
|
-
*/
|
|
116
|
-
openapi(schema) {
|
|
117
|
-
return (0, zod_openapi_1.generateSchema)(this.schemify(schema));
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
exports.ZodSchemaValidator = ZodSchemaValidator;
|
|
121
|
-
/**
|
|
122
|
-
* Factory function for creating a ZodSchemaValidator instance.
|
|
123
|
-
* @returns {ZodSchemaValidator} The ZodSchemaValidator instance.
|
|
124
|
-
*/
|
|
125
|
-
const ZodSchema = () => new ZodSchemaValidator();
|
|
126
|
-
exports.ZodSchema = ZodSchema;
|
|
127
|
-
const SchemaValidator = (0, exports.ZodSchema)();
|
|
128
|
-
/**
|
|
129
|
-
* Zod schema definition for string type.
|
|
130
|
-
*/
|
|
131
|
-
exports.string = SchemaValidator.string;
|
|
132
|
-
/**
|
|
133
|
-
* Zod schema definition for number type.
|
|
134
|
-
*/
|
|
135
|
-
exports.number = SchemaValidator.number;
|
|
136
|
-
/**
|
|
137
|
-
* Zod schema definition for bigint type.
|
|
138
|
-
*/
|
|
139
|
-
exports.bigint = SchemaValidator.bigint;
|
|
140
|
-
/**
|
|
141
|
-
* Zod schema definition for boolean type.
|
|
142
|
-
*/
|
|
143
|
-
exports.boolean = SchemaValidator.boolean;
|
|
144
|
-
/**
|
|
145
|
-
* Zod schema definition for date type.
|
|
146
|
-
*/
|
|
147
|
-
exports.date = SchemaValidator.date;
|
|
148
|
-
/**
|
|
149
|
-
* Zod schema definition for symbol type.
|
|
150
|
-
*/
|
|
151
|
-
exports.symbol = SchemaValidator.symbol;
|
|
152
|
-
/**
|
|
153
|
-
* Zod schema definition for undefined, null, void types.
|
|
154
|
-
*/
|
|
155
|
-
exports.empty = SchemaValidator.empty;
|
|
156
|
-
/**
|
|
157
|
-
* Zod schema definition for any type.
|
|
158
|
-
*/
|
|
159
|
-
exports.any = SchemaValidator.any;
|
|
160
|
-
/**
|
|
161
|
-
* Zod schema definition for unknown type.
|
|
162
|
-
*/
|
|
163
|
-
exports.unknown = SchemaValidator.unknown;
|
|
164
|
-
/**
|
|
165
|
-
* Zod schema definition for never type.
|
|
166
|
-
*/
|
|
167
|
-
exports.never = SchemaValidator.never;
|
|
168
|
-
/**
|
|
169
|
-
* Transforms valid schema into Zod schema.
|
|
170
|
-
*/
|
|
171
|
-
exports.schemify = SchemaValidator.schemify.bind(SchemaValidator);
|
|
172
|
-
/**
|
|
173
|
-
* Makes a valid schema optional.
|
|
174
|
-
*/
|
|
175
|
-
exports.optional = SchemaValidator.optional.bind(SchemaValidator);
|
|
176
|
-
/**
|
|
177
|
-
* Defines an array for a valid schema.
|
|
178
|
-
*/
|
|
179
|
-
exports.array = SchemaValidator.array.bind(SchemaValidator);
|
|
180
|
-
/**
|
|
181
|
-
* Defines a union for a valid schema.
|
|
182
|
-
*/
|
|
183
|
-
exports.union = SchemaValidator.union.bind(SchemaValidator);
|
|
184
|
-
/**
|
|
185
|
-
* Defines a literal for a valid schema.
|
|
186
|
-
*/
|
|
187
|
-
exports.literal = SchemaValidator.literal.bind(SchemaValidator);
|
|
188
|
-
/**
|
|
189
|
-
* Validates a value against a valid schema.
|
|
190
|
-
*/
|
|
191
|
-
exports.validate = SchemaValidator.validate.bind(SchemaValidator);
|
|
192
|
-
/**
|
|
193
|
-
* Generates an OpenAPI schema object from a valid schema.
|
|
194
|
-
*/
|
|
195
|
-
exports.openapi = SchemaValidator.openapi.bind(SchemaValidator);
|
|
196
|
-
//# sourceMappingURL=zod.schemaValidator.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"zod.schemaValidator.js","sourceRoot":"","sources":["../../zod/zod.schemaValidator.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|
|
File without changes
|