@connectedxm/zpl-generator 0.0.1

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.
@@ -0,0 +1,2975 @@
1
+ var v;
2
+ (function(n) {
3
+ n.assertEqual = (s) => {
4
+ };
5
+ function e(s) {
6
+ }
7
+ n.assertIs = e;
8
+ function t(s) {
9
+ throw new Error();
10
+ }
11
+ n.assertNever = t, n.arrayToEnum = (s) => {
12
+ const a = {};
13
+ for (const i of s)
14
+ a[i] = i;
15
+ return a;
16
+ }, n.getValidEnumValues = (s) => {
17
+ const a = n.objectKeys(s).filter((o) => typeof s[s[o]] != "number"), i = {};
18
+ for (const o of a)
19
+ i[o] = s[o];
20
+ return n.objectValues(i);
21
+ }, n.objectValues = (s) => n.objectKeys(s).map(function(a) {
22
+ return s[a];
23
+ }), n.objectKeys = typeof Object.keys == "function" ? (s) => Object.keys(s) : (s) => {
24
+ const a = [];
25
+ for (const i in s)
26
+ Object.prototype.hasOwnProperty.call(s, i) && a.push(i);
27
+ return a;
28
+ }, n.find = (s, a) => {
29
+ for (const i of s)
30
+ if (a(i))
31
+ return i;
32
+ }, n.isInteger = typeof Number.isInteger == "function" ? (s) => Number.isInteger(s) : (s) => typeof s == "number" && Number.isFinite(s) && Math.floor(s) === s;
33
+ function r(s, a = " | ") {
34
+ return s.map((i) => typeof i == "string" ? `'${i}'` : i).join(a);
35
+ }
36
+ n.joinValues = r, n.jsonStringifyReplacer = (s, a) => typeof a == "bigint" ? a.toString() : a;
37
+ })(v || (v = {}));
38
+ var pe;
39
+ (function(n) {
40
+ n.mergeShapes = (e, t) => ({
41
+ ...e,
42
+ ...t
43
+ // second overwrites first
44
+ });
45
+ })(pe || (pe = {}));
46
+ const u = v.arrayToEnum([
47
+ "string",
48
+ "nan",
49
+ "number",
50
+ "integer",
51
+ "float",
52
+ "boolean",
53
+ "date",
54
+ "bigint",
55
+ "symbol",
56
+ "function",
57
+ "undefined",
58
+ "null",
59
+ "array",
60
+ "object",
61
+ "unknown",
62
+ "promise",
63
+ "void",
64
+ "never",
65
+ "map",
66
+ "set"
67
+ ]), $ = (n) => {
68
+ switch (typeof n) {
69
+ case "undefined":
70
+ return u.undefined;
71
+ case "string":
72
+ return u.string;
73
+ case "number":
74
+ return Number.isNaN(n) ? u.nan : u.number;
75
+ case "boolean":
76
+ return u.boolean;
77
+ case "function":
78
+ return u.function;
79
+ case "bigint":
80
+ return u.bigint;
81
+ case "symbol":
82
+ return u.symbol;
83
+ case "object":
84
+ return Array.isArray(n) ? u.array : n === null ? u.null : n.then && typeof n.then == "function" && n.catch && typeof n.catch == "function" ? u.promise : typeof Map < "u" && n instanceof Map ? u.map : typeof Set < "u" && n instanceof Set ? u.set : typeof Date < "u" && n instanceof Date ? u.date : u.object;
85
+ default:
86
+ return u.unknown;
87
+ }
88
+ }, d = v.arrayToEnum([
89
+ "invalid_type",
90
+ "invalid_literal",
91
+ "custom",
92
+ "invalid_union",
93
+ "invalid_union_discriminator",
94
+ "invalid_enum_value",
95
+ "unrecognized_keys",
96
+ "invalid_arguments",
97
+ "invalid_return_type",
98
+ "invalid_date",
99
+ "invalid_string",
100
+ "too_small",
101
+ "too_big",
102
+ "invalid_intersection_types",
103
+ "not_multiple_of",
104
+ "not_finite"
105
+ ]);
106
+ class O extends Error {
107
+ get errors() {
108
+ return this.issues;
109
+ }
110
+ constructor(e) {
111
+ super(), this.issues = [], this.addIssue = (r) => {
112
+ this.issues = [...this.issues, r];
113
+ }, this.addIssues = (r = []) => {
114
+ this.issues = [...this.issues, ...r];
115
+ };
116
+ const t = new.target.prototype;
117
+ Object.setPrototypeOf ? Object.setPrototypeOf(this, t) : this.__proto__ = t, this.name = "ZodError", this.issues = e;
118
+ }
119
+ format(e) {
120
+ const t = e || function(a) {
121
+ return a.message;
122
+ }, r = { _errors: [] }, s = (a) => {
123
+ for (const i of a.issues)
124
+ if (i.code === "invalid_union")
125
+ i.unionErrors.map(s);
126
+ else if (i.code === "invalid_return_type")
127
+ s(i.returnTypeError);
128
+ else if (i.code === "invalid_arguments")
129
+ s(i.argumentsError);
130
+ else if (i.path.length === 0)
131
+ r._errors.push(t(i));
132
+ else {
133
+ let o = r, h = 0;
134
+ for (; h < i.path.length; ) {
135
+ const f = i.path[h];
136
+ h === i.path.length - 1 ? (o[f] = o[f] || { _errors: [] }, o[f]._errors.push(t(i))) : o[f] = o[f] || { _errors: [] }, o = o[f], h++;
137
+ }
138
+ }
139
+ };
140
+ return s(this), r;
141
+ }
142
+ static assert(e) {
143
+ if (!(e instanceof O))
144
+ throw new Error(`Not a ZodError: ${e}`);
145
+ }
146
+ toString() {
147
+ return this.message;
148
+ }
149
+ get message() {
150
+ return JSON.stringify(this.issues, v.jsonStringifyReplacer, 2);
151
+ }
152
+ get isEmpty() {
153
+ return this.issues.length === 0;
154
+ }
155
+ flatten(e = (t) => t.message) {
156
+ const t = {}, r = [];
157
+ for (const s of this.issues)
158
+ if (s.path.length > 0) {
159
+ const a = s.path[0];
160
+ t[a] = t[a] || [], t[a].push(e(s));
161
+ } else
162
+ r.push(e(s));
163
+ return { formErrors: r, fieldErrors: t };
164
+ }
165
+ get formErrors() {
166
+ return this.flatten();
167
+ }
168
+ }
169
+ O.create = (n) => new O(n);
170
+ const ae = (n, e) => {
171
+ let t;
172
+ switch (n.code) {
173
+ case d.invalid_type:
174
+ n.received === u.undefined ? t = "Required" : t = `Expected ${n.expected}, received ${n.received}`;
175
+ break;
176
+ case d.invalid_literal:
177
+ t = `Invalid literal value, expected ${JSON.stringify(n.expected, v.jsonStringifyReplacer)}`;
178
+ break;
179
+ case d.unrecognized_keys:
180
+ t = `Unrecognized key(s) in object: ${v.joinValues(n.keys, ", ")}`;
181
+ break;
182
+ case d.invalid_union:
183
+ t = "Invalid input";
184
+ break;
185
+ case d.invalid_union_discriminator:
186
+ t = `Invalid discriminator value. Expected ${v.joinValues(n.options)}`;
187
+ break;
188
+ case d.invalid_enum_value:
189
+ t = `Invalid enum value. Expected ${v.joinValues(n.options)}, received '${n.received}'`;
190
+ break;
191
+ case d.invalid_arguments:
192
+ t = "Invalid function arguments";
193
+ break;
194
+ case d.invalid_return_type:
195
+ t = "Invalid function return type";
196
+ break;
197
+ case d.invalid_date:
198
+ t = "Invalid date";
199
+ break;
200
+ case d.invalid_string:
201
+ typeof n.validation == "object" ? "includes" in n.validation ? (t = `Invalid input: must include "${n.validation.includes}"`, typeof n.validation.position == "number" && (t = `${t} at one or more positions greater than or equal to ${n.validation.position}`)) : "startsWith" in n.validation ? t = `Invalid input: must start with "${n.validation.startsWith}"` : "endsWith" in n.validation ? t = `Invalid input: must end with "${n.validation.endsWith}"` : v.assertNever(n.validation) : n.validation !== "regex" ? t = `Invalid ${n.validation}` : t = "Invalid";
202
+ break;
203
+ case d.too_small:
204
+ n.type === "array" ? t = `Array must contain ${n.exact ? "exactly" : n.inclusive ? "at least" : "more than"} ${n.minimum} element(s)` : n.type === "string" ? t = `String must contain ${n.exact ? "exactly" : n.inclusive ? "at least" : "over"} ${n.minimum} character(s)` : n.type === "number" ? t = `Number must be ${n.exact ? "exactly equal to " : n.inclusive ? "greater than or equal to " : "greater than "}${n.minimum}` : n.type === "bigint" ? t = `Number must be ${n.exact ? "exactly equal to " : n.inclusive ? "greater than or equal to " : "greater than "}${n.minimum}` : n.type === "date" ? t = `Date must be ${n.exact ? "exactly equal to " : n.inclusive ? "greater than or equal to " : "greater than "}${new Date(Number(n.minimum))}` : t = "Invalid input";
205
+ break;
206
+ case d.too_big:
207
+ n.type === "array" ? t = `Array must contain ${n.exact ? "exactly" : n.inclusive ? "at most" : "less than"} ${n.maximum} element(s)` : n.type === "string" ? t = `String must contain ${n.exact ? "exactly" : n.inclusive ? "at most" : "under"} ${n.maximum} character(s)` : n.type === "number" ? t = `Number must be ${n.exact ? "exactly" : n.inclusive ? "less than or equal to" : "less than"} ${n.maximum}` : n.type === "bigint" ? t = `BigInt must be ${n.exact ? "exactly" : n.inclusive ? "less than or equal to" : "less than"} ${n.maximum}` : n.type === "date" ? t = `Date must be ${n.exact ? "exactly" : n.inclusive ? "smaller than or equal to" : "smaller than"} ${new Date(Number(n.maximum))}` : t = "Invalid input";
208
+ break;
209
+ case d.custom:
210
+ t = "Invalid input";
211
+ break;
212
+ case d.invalid_intersection_types:
213
+ t = "Intersection results could not be merged";
214
+ break;
215
+ case d.not_multiple_of:
216
+ t = `Number must be a multiple of ${n.multipleOf}`;
217
+ break;
218
+ case d.not_finite:
219
+ t = "Number must be finite";
220
+ break;
221
+ default:
222
+ t = e.defaultError, v.assertNever(n);
223
+ }
224
+ return { message: t };
225
+ };
226
+ let Ee = ae;
227
+ function Ie() {
228
+ return Ee;
229
+ }
230
+ const Me = (n) => {
231
+ const { data: e, path: t, errorMaps: r, issueData: s } = n, a = [...t, ...s.path || []], i = {
232
+ ...s,
233
+ path: a
234
+ };
235
+ if (s.message !== void 0)
236
+ return {
237
+ ...s,
238
+ path: a,
239
+ message: s.message
240
+ };
241
+ let o = "";
242
+ const h = r.filter((f) => !!f).slice().reverse();
243
+ for (const f of h)
244
+ o = f(i, { data: e, defaultError: o }).message;
245
+ return {
246
+ ...s,
247
+ path: a,
248
+ message: o
249
+ };
250
+ };
251
+ function c(n, e) {
252
+ const t = Ie(), r = Me({
253
+ issueData: e,
254
+ data: n.data,
255
+ path: n.path,
256
+ errorMaps: [
257
+ n.common.contextualErrorMap,
258
+ // contextual error map is first priority
259
+ n.schemaErrorMap,
260
+ // then schema-bound map if available
261
+ t,
262
+ // then global override map
263
+ t === ae ? void 0 : ae
264
+ // then global default map
265
+ ].filter((s) => !!s)
266
+ });
267
+ n.common.issues.push(r);
268
+ }
269
+ class b {
270
+ constructor() {
271
+ this.value = "valid";
272
+ }
273
+ dirty() {
274
+ this.value === "valid" && (this.value = "dirty");
275
+ }
276
+ abort() {
277
+ this.value !== "aborted" && (this.value = "aborted");
278
+ }
279
+ static mergeArray(e, t) {
280
+ const r = [];
281
+ for (const s of t) {
282
+ if (s.status === "aborted")
283
+ return m;
284
+ s.status === "dirty" && e.dirty(), r.push(s.value);
285
+ }
286
+ return { status: e.value, value: r };
287
+ }
288
+ static async mergeObjectAsync(e, t) {
289
+ const r = [];
290
+ for (const s of t) {
291
+ const a = await s.key, i = await s.value;
292
+ r.push({
293
+ key: a,
294
+ value: i
295
+ });
296
+ }
297
+ return b.mergeObjectSync(e, r);
298
+ }
299
+ static mergeObjectSync(e, t) {
300
+ const r = {};
301
+ for (const s of t) {
302
+ const { key: a, value: i } = s;
303
+ if (a.status === "aborted" || i.status === "aborted")
304
+ return m;
305
+ a.status === "dirty" && e.dirty(), i.status === "dirty" && e.dirty(), a.value !== "__proto__" && (typeof i.value < "u" || s.alwaysSet) && (r[a.value] = i.value);
306
+ }
307
+ return { status: e.value, value: r };
308
+ }
309
+ }
310
+ const m = Object.freeze({
311
+ status: "aborted"
312
+ }), W = (n) => ({ status: "dirty", value: n }), S = (n) => ({ status: "valid", value: n }), ge = (n) => n.status === "aborted", ye = (n) => n.status === "dirty", D = (n) => n.status === "valid", U = (n) => typeof Promise < "u" && n instanceof Promise;
313
+ var l;
314
+ (function(n) {
315
+ n.errToObj = (e) => typeof e == "string" ? { message: e } : e || {}, n.toString = (e) => typeof e == "string" ? e : e?.message;
316
+ })(l || (l = {}));
317
+ class Z {
318
+ constructor(e, t, r, s) {
319
+ this._cachedPath = [], this.parent = e, this.data = t, this._path = r, this._key = s;
320
+ }
321
+ get path() {
322
+ return this._cachedPath.length || (Array.isArray(this._key) ? this._cachedPath.push(...this._path, ...this._key) : this._cachedPath.push(...this._path, this._key)), this._cachedPath;
323
+ }
324
+ }
325
+ const _e = (n, e) => {
326
+ if (D(e))
327
+ return { success: !0, data: e.value };
328
+ if (!n.common.issues.length)
329
+ throw new Error("Validation failed but no issues detected.");
330
+ return {
331
+ success: !1,
332
+ get error() {
333
+ if (this._error)
334
+ return this._error;
335
+ const t = new O(n.common.issues);
336
+ return this._error = t, this._error;
337
+ }
338
+ };
339
+ };
340
+ function g(n) {
341
+ if (!n)
342
+ return {};
343
+ const { errorMap: e, invalid_type_error: t, required_error: r, description: s } = n;
344
+ if (e && (t || r))
345
+ throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
346
+ return e ? { errorMap: e, description: s } : { errorMap: (i, o) => {
347
+ const { message: h } = n;
348
+ return i.code === "invalid_enum_value" ? { message: h ?? o.defaultError } : typeof o.data > "u" ? { message: h ?? r ?? o.defaultError } : i.code !== "invalid_type" ? { message: o.defaultError } : { message: h ?? t ?? o.defaultError };
349
+ }, description: s };
350
+ }
351
+ class _ {
352
+ get description() {
353
+ return this._def.description;
354
+ }
355
+ _getType(e) {
356
+ return $(e.data);
357
+ }
358
+ _getOrReturnCtx(e, t) {
359
+ return t || {
360
+ common: e.parent.common,
361
+ data: e.data,
362
+ parsedType: $(e.data),
363
+ schemaErrorMap: this._def.errorMap,
364
+ path: e.path,
365
+ parent: e.parent
366
+ };
367
+ }
368
+ _processInputParams(e) {
369
+ return {
370
+ status: new b(),
371
+ ctx: {
372
+ common: e.parent.common,
373
+ data: e.data,
374
+ parsedType: $(e.data),
375
+ schemaErrorMap: this._def.errorMap,
376
+ path: e.path,
377
+ parent: e.parent
378
+ }
379
+ };
380
+ }
381
+ _parseSync(e) {
382
+ const t = this._parse(e);
383
+ if (U(t))
384
+ throw new Error("Synchronous parse encountered promise.");
385
+ return t;
386
+ }
387
+ _parseAsync(e) {
388
+ const t = this._parse(e);
389
+ return Promise.resolve(t);
390
+ }
391
+ parse(e, t) {
392
+ const r = this.safeParse(e, t);
393
+ if (r.success)
394
+ return r.data;
395
+ throw r.error;
396
+ }
397
+ safeParse(e, t) {
398
+ const r = {
399
+ common: {
400
+ issues: [],
401
+ async: t?.async ?? !1,
402
+ contextualErrorMap: t?.errorMap
403
+ },
404
+ path: t?.path || [],
405
+ schemaErrorMap: this._def.errorMap,
406
+ parent: null,
407
+ data: e,
408
+ parsedType: $(e)
409
+ }, s = this._parseSync({ data: e, path: r.path, parent: r });
410
+ return _e(r, s);
411
+ }
412
+ "~validate"(e) {
413
+ const t = {
414
+ common: {
415
+ issues: [],
416
+ async: !!this["~standard"].async
417
+ },
418
+ path: [],
419
+ schemaErrorMap: this._def.errorMap,
420
+ parent: null,
421
+ data: e,
422
+ parsedType: $(e)
423
+ };
424
+ if (!this["~standard"].async)
425
+ try {
426
+ const r = this._parseSync({ data: e, path: [], parent: t });
427
+ return D(r) ? {
428
+ value: r.value
429
+ } : {
430
+ issues: t.common.issues
431
+ };
432
+ } catch (r) {
433
+ r?.message?.toLowerCase()?.includes("encountered") && (this["~standard"].async = !0), t.common = {
434
+ issues: [],
435
+ async: !0
436
+ };
437
+ }
438
+ return this._parseAsync({ data: e, path: [], parent: t }).then((r) => D(r) ? {
439
+ value: r.value
440
+ } : {
441
+ issues: t.common.issues
442
+ });
443
+ }
444
+ async parseAsync(e, t) {
445
+ const r = await this.safeParseAsync(e, t);
446
+ if (r.success)
447
+ return r.data;
448
+ throw r.error;
449
+ }
450
+ async safeParseAsync(e, t) {
451
+ const r = {
452
+ common: {
453
+ issues: [],
454
+ contextualErrorMap: t?.errorMap,
455
+ async: !0
456
+ },
457
+ path: t?.path || [],
458
+ schemaErrorMap: this._def.errorMap,
459
+ parent: null,
460
+ data: e,
461
+ parsedType: $(e)
462
+ }, s = this._parse({ data: e, path: r.path, parent: r }), a = await (U(s) ? s : Promise.resolve(s));
463
+ return _e(r, a);
464
+ }
465
+ refine(e, t) {
466
+ const r = (s) => typeof t == "string" || typeof t > "u" ? { message: t } : typeof t == "function" ? t(s) : t;
467
+ return this._refinement((s, a) => {
468
+ const i = e(s), o = () => a.addIssue({
469
+ code: d.custom,
470
+ ...r(s)
471
+ });
472
+ return typeof Promise < "u" && i instanceof Promise ? i.then((h) => h ? !0 : (o(), !1)) : i ? !0 : (o(), !1);
473
+ });
474
+ }
475
+ refinement(e, t) {
476
+ return this._refinement((r, s) => e(r) ? !0 : (s.addIssue(typeof t == "function" ? t(r, s) : t), !1));
477
+ }
478
+ _refinement(e) {
479
+ return new M({
480
+ schema: this,
481
+ typeName: p.ZodEffects,
482
+ effect: { type: "refinement", refinement: e }
483
+ });
484
+ }
485
+ superRefine(e) {
486
+ return this._refinement(e);
487
+ }
488
+ constructor(e) {
489
+ this.spa = this.safeParseAsync, this._def = e, this.parse = this.parse.bind(this), this.safeParse = this.safeParse.bind(this), this.parseAsync = this.parseAsync.bind(this), this.safeParseAsync = this.safeParseAsync.bind(this), this.spa = this.spa.bind(this), this.refine = this.refine.bind(this), this.refinement = this.refinement.bind(this), this.superRefine = this.superRefine.bind(this), this.optional = this.optional.bind(this), this.nullable = this.nullable.bind(this), this.nullish = this.nullish.bind(this), this.array = this.array.bind(this), this.promise = this.promise.bind(this), this.or = this.or.bind(this), this.and = this.and.bind(this), this.transform = this.transform.bind(this), this.brand = this.brand.bind(this), this.default = this.default.bind(this), this.catch = this.catch.bind(this), this.describe = this.describe.bind(this), this.pipe = this.pipe.bind(this), this.readonly = this.readonly.bind(this), this.isNullable = this.isNullable.bind(this), this.isOptional = this.isOptional.bind(this), this["~standard"] = {
490
+ version: 1,
491
+ vendor: "zod",
492
+ validate: (t) => this["~validate"](t)
493
+ };
494
+ }
495
+ optional() {
496
+ return N.create(this, this._def);
497
+ }
498
+ nullable() {
499
+ return L.create(this, this._def);
500
+ }
501
+ nullish() {
502
+ return this.nullable().optional();
503
+ }
504
+ array() {
505
+ return T.create(this);
506
+ }
507
+ promise() {
508
+ return X.create(this, this._def);
509
+ }
510
+ or(e) {
511
+ return H.create([this, e], this._def);
512
+ }
513
+ and(e) {
514
+ return Y.create(this, e, this._def);
515
+ }
516
+ transform(e) {
517
+ return new M({
518
+ ...g(this._def),
519
+ schema: this,
520
+ typeName: p.ZodEffects,
521
+ effect: { type: "transform", transform: e }
522
+ });
523
+ }
524
+ default(e) {
525
+ const t = typeof e == "function" ? e : () => e;
526
+ return new G({
527
+ ...g(this._def),
528
+ innerType: this,
529
+ defaultValue: t,
530
+ typeName: p.ZodDefault
531
+ });
532
+ }
533
+ brand() {
534
+ return new Oe({
535
+ typeName: p.ZodBranded,
536
+ type: this,
537
+ ...g(this._def)
538
+ });
539
+ }
540
+ catch(e) {
541
+ const t = typeof e == "function" ? e : () => e;
542
+ return new K({
543
+ ...g(this._def),
544
+ innerType: this,
545
+ catchValue: t,
546
+ typeName: p.ZodCatch
547
+ });
548
+ }
549
+ describe(e) {
550
+ const t = this.constructor;
551
+ return new t({
552
+ ...this._def,
553
+ description: e
554
+ });
555
+ }
556
+ pipe(e) {
557
+ return le.create(this, e);
558
+ }
559
+ readonly() {
560
+ return ee.create(this);
561
+ }
562
+ isOptional() {
563
+ return this.safeParse(void 0).success;
564
+ }
565
+ isNullable() {
566
+ return this.safeParse(null).success;
567
+ }
568
+ }
569
+ const Le = /^c[^\s-]{8,}$/i, Pe = /^[0-9a-z]+$/, Ve = /^[0-9A-HJKMNP-TV-Z]{26}$/i, De = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i, Be = /^[a-z0-9_-]{21}$/i, We = /^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/, ze = /^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/, Fe = /^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i, Ue = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
570
+ let re;
571
+ const qe = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/, He = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/, Ye = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/, Je = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, Qe = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/, Xe = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/, Ce = "((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))", Ge = new RegExp(`^${Ce}$`);
572
+ function Ae(n) {
573
+ let e = "[0-5]\\d";
574
+ n.precision ? e = `${e}\\.\\d{${n.precision}}` : n.precision == null && (e = `${e}(\\.\\d+)?`);
575
+ const t = n.precision ? "+" : "?";
576
+ return `([01]\\d|2[0-3]):[0-5]\\d(:${e})${t}`;
577
+ }
578
+ function Ke(n) {
579
+ return new RegExp(`^${Ae(n)}$`);
580
+ }
581
+ function et(n) {
582
+ let e = `${Ce}T${Ae(n)}`;
583
+ const t = [];
584
+ return t.push(n.local ? "Z?" : "Z"), n.offset && t.push("([+-]\\d{2}:?\\d{2})"), e = `${e}(${t.join("|")})`, new RegExp(`^${e}$`);
585
+ }
586
+ function tt(n, e) {
587
+ return !!((e === "v4" || !e) && qe.test(n) || (e === "v6" || !e) && Ye.test(n));
588
+ }
589
+ function nt(n, e) {
590
+ if (!We.test(n))
591
+ return !1;
592
+ try {
593
+ const [t] = n.split(".");
594
+ if (!t)
595
+ return !1;
596
+ const r = t.replace(/-/g, "+").replace(/_/g, "/").padEnd(t.length + (4 - t.length % 4) % 4, "="), s = JSON.parse(atob(r));
597
+ return !(typeof s != "object" || s === null || "typ" in s && s?.typ !== "JWT" || !s.alg || e && s.alg !== e);
598
+ } catch {
599
+ return !1;
600
+ }
601
+ }
602
+ function rt(n, e) {
603
+ return !!((e === "v4" || !e) && He.test(n) || (e === "v6" || !e) && Je.test(n));
604
+ }
605
+ class R extends _ {
606
+ _parse(e) {
607
+ if (this._def.coerce && (e.data = String(e.data)), this._getType(e) !== u.string) {
608
+ const a = this._getOrReturnCtx(e);
609
+ return c(a, {
610
+ code: d.invalid_type,
611
+ expected: u.string,
612
+ received: a.parsedType
613
+ }), m;
614
+ }
615
+ const r = new b();
616
+ let s;
617
+ for (const a of this._def.checks)
618
+ if (a.kind === "min")
619
+ e.data.length < a.value && (s = this._getOrReturnCtx(e, s), c(s, {
620
+ code: d.too_small,
621
+ minimum: a.value,
622
+ type: "string",
623
+ inclusive: !0,
624
+ exact: !1,
625
+ message: a.message
626
+ }), r.dirty());
627
+ else if (a.kind === "max")
628
+ e.data.length > a.value && (s = this._getOrReturnCtx(e, s), c(s, {
629
+ code: d.too_big,
630
+ maximum: a.value,
631
+ type: "string",
632
+ inclusive: !0,
633
+ exact: !1,
634
+ message: a.message
635
+ }), r.dirty());
636
+ else if (a.kind === "length") {
637
+ const i = e.data.length > a.value, o = e.data.length < a.value;
638
+ (i || o) && (s = this._getOrReturnCtx(e, s), i ? c(s, {
639
+ code: d.too_big,
640
+ maximum: a.value,
641
+ type: "string",
642
+ inclusive: !0,
643
+ exact: !0,
644
+ message: a.message
645
+ }) : o && c(s, {
646
+ code: d.too_small,
647
+ minimum: a.value,
648
+ type: "string",
649
+ inclusive: !0,
650
+ exact: !0,
651
+ message: a.message
652
+ }), r.dirty());
653
+ } else if (a.kind === "email")
654
+ Fe.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
655
+ validation: "email",
656
+ code: d.invalid_string,
657
+ message: a.message
658
+ }), r.dirty());
659
+ else if (a.kind === "emoji")
660
+ re || (re = new RegExp(Ue, "u")), re.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
661
+ validation: "emoji",
662
+ code: d.invalid_string,
663
+ message: a.message
664
+ }), r.dirty());
665
+ else if (a.kind === "uuid")
666
+ De.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
667
+ validation: "uuid",
668
+ code: d.invalid_string,
669
+ message: a.message
670
+ }), r.dirty());
671
+ else if (a.kind === "nanoid")
672
+ Be.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
673
+ validation: "nanoid",
674
+ code: d.invalid_string,
675
+ message: a.message
676
+ }), r.dirty());
677
+ else if (a.kind === "cuid")
678
+ Le.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
679
+ validation: "cuid",
680
+ code: d.invalid_string,
681
+ message: a.message
682
+ }), r.dirty());
683
+ else if (a.kind === "cuid2")
684
+ Pe.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
685
+ validation: "cuid2",
686
+ code: d.invalid_string,
687
+ message: a.message
688
+ }), r.dirty());
689
+ else if (a.kind === "ulid")
690
+ Ve.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
691
+ validation: "ulid",
692
+ code: d.invalid_string,
693
+ message: a.message
694
+ }), r.dirty());
695
+ else if (a.kind === "url")
696
+ try {
697
+ new URL(e.data);
698
+ } catch {
699
+ s = this._getOrReturnCtx(e, s), c(s, {
700
+ validation: "url",
701
+ code: d.invalid_string,
702
+ message: a.message
703
+ }), r.dirty();
704
+ }
705
+ else a.kind === "regex" ? (a.regex.lastIndex = 0, a.regex.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
706
+ validation: "regex",
707
+ code: d.invalid_string,
708
+ message: a.message
709
+ }), r.dirty())) : a.kind === "trim" ? e.data = e.data.trim() : a.kind === "includes" ? e.data.includes(a.value, a.position) || (s = this._getOrReturnCtx(e, s), c(s, {
710
+ code: d.invalid_string,
711
+ validation: { includes: a.value, position: a.position },
712
+ message: a.message
713
+ }), r.dirty()) : a.kind === "toLowerCase" ? e.data = e.data.toLowerCase() : a.kind === "toUpperCase" ? e.data = e.data.toUpperCase() : a.kind === "startsWith" ? e.data.startsWith(a.value) || (s = this._getOrReturnCtx(e, s), c(s, {
714
+ code: d.invalid_string,
715
+ validation: { startsWith: a.value },
716
+ message: a.message
717
+ }), r.dirty()) : a.kind === "endsWith" ? e.data.endsWith(a.value) || (s = this._getOrReturnCtx(e, s), c(s, {
718
+ code: d.invalid_string,
719
+ validation: { endsWith: a.value },
720
+ message: a.message
721
+ }), r.dirty()) : a.kind === "datetime" ? et(a).test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
722
+ code: d.invalid_string,
723
+ validation: "datetime",
724
+ message: a.message
725
+ }), r.dirty()) : a.kind === "date" ? Ge.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
726
+ code: d.invalid_string,
727
+ validation: "date",
728
+ message: a.message
729
+ }), r.dirty()) : a.kind === "time" ? Ke(a).test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
730
+ code: d.invalid_string,
731
+ validation: "time",
732
+ message: a.message
733
+ }), r.dirty()) : a.kind === "duration" ? ze.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
734
+ validation: "duration",
735
+ code: d.invalid_string,
736
+ message: a.message
737
+ }), r.dirty()) : a.kind === "ip" ? tt(e.data, a.version) || (s = this._getOrReturnCtx(e, s), c(s, {
738
+ validation: "ip",
739
+ code: d.invalid_string,
740
+ message: a.message
741
+ }), r.dirty()) : a.kind === "jwt" ? nt(e.data, a.alg) || (s = this._getOrReturnCtx(e, s), c(s, {
742
+ validation: "jwt",
743
+ code: d.invalid_string,
744
+ message: a.message
745
+ }), r.dirty()) : a.kind === "cidr" ? rt(e.data, a.version) || (s = this._getOrReturnCtx(e, s), c(s, {
746
+ validation: "cidr",
747
+ code: d.invalid_string,
748
+ message: a.message
749
+ }), r.dirty()) : a.kind === "base64" ? Qe.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
750
+ validation: "base64",
751
+ code: d.invalid_string,
752
+ message: a.message
753
+ }), r.dirty()) : a.kind === "base64url" ? Xe.test(e.data) || (s = this._getOrReturnCtx(e, s), c(s, {
754
+ validation: "base64url",
755
+ code: d.invalid_string,
756
+ message: a.message
757
+ }), r.dirty()) : v.assertNever(a);
758
+ return { status: r.value, value: e.data };
759
+ }
760
+ _regex(e, t, r) {
761
+ return this.refinement((s) => e.test(s), {
762
+ validation: t,
763
+ code: d.invalid_string,
764
+ ...l.errToObj(r)
765
+ });
766
+ }
767
+ _addCheck(e) {
768
+ return new R({
769
+ ...this._def,
770
+ checks: [...this._def.checks, e]
771
+ });
772
+ }
773
+ email(e) {
774
+ return this._addCheck({ kind: "email", ...l.errToObj(e) });
775
+ }
776
+ url(e) {
777
+ return this._addCheck({ kind: "url", ...l.errToObj(e) });
778
+ }
779
+ emoji(e) {
780
+ return this._addCheck({ kind: "emoji", ...l.errToObj(e) });
781
+ }
782
+ uuid(e) {
783
+ return this._addCheck({ kind: "uuid", ...l.errToObj(e) });
784
+ }
785
+ nanoid(e) {
786
+ return this._addCheck({ kind: "nanoid", ...l.errToObj(e) });
787
+ }
788
+ cuid(e) {
789
+ return this._addCheck({ kind: "cuid", ...l.errToObj(e) });
790
+ }
791
+ cuid2(e) {
792
+ return this._addCheck({ kind: "cuid2", ...l.errToObj(e) });
793
+ }
794
+ ulid(e) {
795
+ return this._addCheck({ kind: "ulid", ...l.errToObj(e) });
796
+ }
797
+ base64(e) {
798
+ return this._addCheck({ kind: "base64", ...l.errToObj(e) });
799
+ }
800
+ base64url(e) {
801
+ return this._addCheck({
802
+ kind: "base64url",
803
+ ...l.errToObj(e)
804
+ });
805
+ }
806
+ jwt(e) {
807
+ return this._addCheck({ kind: "jwt", ...l.errToObj(e) });
808
+ }
809
+ ip(e) {
810
+ return this._addCheck({ kind: "ip", ...l.errToObj(e) });
811
+ }
812
+ cidr(e) {
813
+ return this._addCheck({ kind: "cidr", ...l.errToObj(e) });
814
+ }
815
+ datetime(e) {
816
+ return typeof e == "string" ? this._addCheck({
817
+ kind: "datetime",
818
+ precision: null,
819
+ offset: !1,
820
+ local: !1,
821
+ message: e
822
+ }) : this._addCheck({
823
+ kind: "datetime",
824
+ precision: typeof e?.precision > "u" ? null : e?.precision,
825
+ offset: e?.offset ?? !1,
826
+ local: e?.local ?? !1,
827
+ ...l.errToObj(e?.message)
828
+ });
829
+ }
830
+ date(e) {
831
+ return this._addCheck({ kind: "date", message: e });
832
+ }
833
+ time(e) {
834
+ return typeof e == "string" ? this._addCheck({
835
+ kind: "time",
836
+ precision: null,
837
+ message: e
838
+ }) : this._addCheck({
839
+ kind: "time",
840
+ precision: typeof e?.precision > "u" ? null : e?.precision,
841
+ ...l.errToObj(e?.message)
842
+ });
843
+ }
844
+ duration(e) {
845
+ return this._addCheck({ kind: "duration", ...l.errToObj(e) });
846
+ }
847
+ regex(e, t) {
848
+ return this._addCheck({
849
+ kind: "regex",
850
+ regex: e,
851
+ ...l.errToObj(t)
852
+ });
853
+ }
854
+ includes(e, t) {
855
+ return this._addCheck({
856
+ kind: "includes",
857
+ value: e,
858
+ position: t?.position,
859
+ ...l.errToObj(t?.message)
860
+ });
861
+ }
862
+ startsWith(e, t) {
863
+ return this._addCheck({
864
+ kind: "startsWith",
865
+ value: e,
866
+ ...l.errToObj(t)
867
+ });
868
+ }
869
+ endsWith(e, t) {
870
+ return this._addCheck({
871
+ kind: "endsWith",
872
+ value: e,
873
+ ...l.errToObj(t)
874
+ });
875
+ }
876
+ min(e, t) {
877
+ return this._addCheck({
878
+ kind: "min",
879
+ value: e,
880
+ ...l.errToObj(t)
881
+ });
882
+ }
883
+ max(e, t) {
884
+ return this._addCheck({
885
+ kind: "max",
886
+ value: e,
887
+ ...l.errToObj(t)
888
+ });
889
+ }
890
+ length(e, t) {
891
+ return this._addCheck({
892
+ kind: "length",
893
+ value: e,
894
+ ...l.errToObj(t)
895
+ });
896
+ }
897
+ /**
898
+ * Equivalent to `.min(1)`
899
+ */
900
+ nonempty(e) {
901
+ return this.min(1, l.errToObj(e));
902
+ }
903
+ trim() {
904
+ return new R({
905
+ ...this._def,
906
+ checks: [...this._def.checks, { kind: "trim" }]
907
+ });
908
+ }
909
+ toLowerCase() {
910
+ return new R({
911
+ ...this._def,
912
+ checks: [...this._def.checks, { kind: "toLowerCase" }]
913
+ });
914
+ }
915
+ toUpperCase() {
916
+ return new R({
917
+ ...this._def,
918
+ checks: [...this._def.checks, { kind: "toUpperCase" }]
919
+ });
920
+ }
921
+ get isDatetime() {
922
+ return !!this._def.checks.find((e) => e.kind === "datetime");
923
+ }
924
+ get isDate() {
925
+ return !!this._def.checks.find((e) => e.kind === "date");
926
+ }
927
+ get isTime() {
928
+ return !!this._def.checks.find((e) => e.kind === "time");
929
+ }
930
+ get isDuration() {
931
+ return !!this._def.checks.find((e) => e.kind === "duration");
932
+ }
933
+ get isEmail() {
934
+ return !!this._def.checks.find((e) => e.kind === "email");
935
+ }
936
+ get isURL() {
937
+ return !!this._def.checks.find((e) => e.kind === "url");
938
+ }
939
+ get isEmoji() {
940
+ return !!this._def.checks.find((e) => e.kind === "emoji");
941
+ }
942
+ get isUUID() {
943
+ return !!this._def.checks.find((e) => e.kind === "uuid");
944
+ }
945
+ get isNANOID() {
946
+ return !!this._def.checks.find((e) => e.kind === "nanoid");
947
+ }
948
+ get isCUID() {
949
+ return !!this._def.checks.find((e) => e.kind === "cuid");
950
+ }
951
+ get isCUID2() {
952
+ return !!this._def.checks.find((e) => e.kind === "cuid2");
953
+ }
954
+ get isULID() {
955
+ return !!this._def.checks.find((e) => e.kind === "ulid");
956
+ }
957
+ get isIP() {
958
+ return !!this._def.checks.find((e) => e.kind === "ip");
959
+ }
960
+ get isCIDR() {
961
+ return !!this._def.checks.find((e) => e.kind === "cidr");
962
+ }
963
+ get isBase64() {
964
+ return !!this._def.checks.find((e) => e.kind === "base64");
965
+ }
966
+ get isBase64url() {
967
+ return !!this._def.checks.find((e) => e.kind === "base64url");
968
+ }
969
+ get minLength() {
970
+ let e = null;
971
+ for (const t of this._def.checks)
972
+ t.kind === "min" && (e === null || t.value > e) && (e = t.value);
973
+ return e;
974
+ }
975
+ get maxLength() {
976
+ let e = null;
977
+ for (const t of this._def.checks)
978
+ t.kind === "max" && (e === null || t.value < e) && (e = t.value);
979
+ return e;
980
+ }
981
+ }
982
+ R.create = (n) => new R({
983
+ checks: [],
984
+ typeName: p.ZodString,
985
+ coerce: n?.coerce ?? !1,
986
+ ...g(n)
987
+ });
988
+ function st(n, e) {
989
+ const t = (n.toString().split(".")[1] || "").length, r = (e.toString().split(".")[1] || "").length, s = t > r ? t : r, a = Number.parseInt(n.toFixed(s).replace(".", "")), i = Number.parseInt(e.toFixed(s).replace(".", ""));
990
+ return a % i / 10 ** s;
991
+ }
992
+ class B extends _ {
993
+ constructor() {
994
+ super(...arguments), this.min = this.gte, this.max = this.lte, this.step = this.multipleOf;
995
+ }
996
+ _parse(e) {
997
+ if (this._def.coerce && (e.data = Number(e.data)), this._getType(e) !== u.number) {
998
+ const a = this._getOrReturnCtx(e);
999
+ return c(a, {
1000
+ code: d.invalid_type,
1001
+ expected: u.number,
1002
+ received: a.parsedType
1003
+ }), m;
1004
+ }
1005
+ let r;
1006
+ const s = new b();
1007
+ for (const a of this._def.checks)
1008
+ a.kind === "int" ? v.isInteger(e.data) || (r = this._getOrReturnCtx(e, r), c(r, {
1009
+ code: d.invalid_type,
1010
+ expected: "integer",
1011
+ received: "float",
1012
+ message: a.message
1013
+ }), s.dirty()) : a.kind === "min" ? (a.inclusive ? e.data < a.value : e.data <= a.value) && (r = this._getOrReturnCtx(e, r), c(r, {
1014
+ code: d.too_small,
1015
+ minimum: a.value,
1016
+ type: "number",
1017
+ inclusive: a.inclusive,
1018
+ exact: !1,
1019
+ message: a.message
1020
+ }), s.dirty()) : a.kind === "max" ? (a.inclusive ? e.data > a.value : e.data >= a.value) && (r = this._getOrReturnCtx(e, r), c(r, {
1021
+ code: d.too_big,
1022
+ maximum: a.value,
1023
+ type: "number",
1024
+ inclusive: a.inclusive,
1025
+ exact: !1,
1026
+ message: a.message
1027
+ }), s.dirty()) : a.kind === "multipleOf" ? st(e.data, a.value) !== 0 && (r = this._getOrReturnCtx(e, r), c(r, {
1028
+ code: d.not_multiple_of,
1029
+ multipleOf: a.value,
1030
+ message: a.message
1031
+ }), s.dirty()) : a.kind === "finite" ? Number.isFinite(e.data) || (r = this._getOrReturnCtx(e, r), c(r, {
1032
+ code: d.not_finite,
1033
+ message: a.message
1034
+ }), s.dirty()) : v.assertNever(a);
1035
+ return { status: s.value, value: e.data };
1036
+ }
1037
+ gte(e, t) {
1038
+ return this.setLimit("min", e, !0, l.toString(t));
1039
+ }
1040
+ gt(e, t) {
1041
+ return this.setLimit("min", e, !1, l.toString(t));
1042
+ }
1043
+ lte(e, t) {
1044
+ return this.setLimit("max", e, !0, l.toString(t));
1045
+ }
1046
+ lt(e, t) {
1047
+ return this.setLimit("max", e, !1, l.toString(t));
1048
+ }
1049
+ setLimit(e, t, r, s) {
1050
+ return new B({
1051
+ ...this._def,
1052
+ checks: [
1053
+ ...this._def.checks,
1054
+ {
1055
+ kind: e,
1056
+ value: t,
1057
+ inclusive: r,
1058
+ message: l.toString(s)
1059
+ }
1060
+ ]
1061
+ });
1062
+ }
1063
+ _addCheck(e) {
1064
+ return new B({
1065
+ ...this._def,
1066
+ checks: [...this._def.checks, e]
1067
+ });
1068
+ }
1069
+ int(e) {
1070
+ return this._addCheck({
1071
+ kind: "int",
1072
+ message: l.toString(e)
1073
+ });
1074
+ }
1075
+ positive(e) {
1076
+ return this._addCheck({
1077
+ kind: "min",
1078
+ value: 0,
1079
+ inclusive: !1,
1080
+ message: l.toString(e)
1081
+ });
1082
+ }
1083
+ negative(e) {
1084
+ return this._addCheck({
1085
+ kind: "max",
1086
+ value: 0,
1087
+ inclusive: !1,
1088
+ message: l.toString(e)
1089
+ });
1090
+ }
1091
+ nonpositive(e) {
1092
+ return this._addCheck({
1093
+ kind: "max",
1094
+ value: 0,
1095
+ inclusive: !0,
1096
+ message: l.toString(e)
1097
+ });
1098
+ }
1099
+ nonnegative(e) {
1100
+ return this._addCheck({
1101
+ kind: "min",
1102
+ value: 0,
1103
+ inclusive: !0,
1104
+ message: l.toString(e)
1105
+ });
1106
+ }
1107
+ multipleOf(e, t) {
1108
+ return this._addCheck({
1109
+ kind: "multipleOf",
1110
+ value: e,
1111
+ message: l.toString(t)
1112
+ });
1113
+ }
1114
+ finite(e) {
1115
+ return this._addCheck({
1116
+ kind: "finite",
1117
+ message: l.toString(e)
1118
+ });
1119
+ }
1120
+ safe(e) {
1121
+ return this._addCheck({
1122
+ kind: "min",
1123
+ inclusive: !0,
1124
+ value: Number.MIN_SAFE_INTEGER,
1125
+ message: l.toString(e)
1126
+ })._addCheck({
1127
+ kind: "max",
1128
+ inclusive: !0,
1129
+ value: Number.MAX_SAFE_INTEGER,
1130
+ message: l.toString(e)
1131
+ });
1132
+ }
1133
+ get minValue() {
1134
+ let e = null;
1135
+ for (const t of this._def.checks)
1136
+ t.kind === "min" && (e === null || t.value > e) && (e = t.value);
1137
+ return e;
1138
+ }
1139
+ get maxValue() {
1140
+ let e = null;
1141
+ for (const t of this._def.checks)
1142
+ t.kind === "max" && (e === null || t.value < e) && (e = t.value);
1143
+ return e;
1144
+ }
1145
+ get isInt() {
1146
+ return !!this._def.checks.find((e) => e.kind === "int" || e.kind === "multipleOf" && v.isInteger(e.value));
1147
+ }
1148
+ get isFinite() {
1149
+ let e = null, t = null;
1150
+ for (const r of this._def.checks) {
1151
+ if (r.kind === "finite" || r.kind === "int" || r.kind === "multipleOf")
1152
+ return !0;
1153
+ r.kind === "min" ? (t === null || r.value > t) && (t = r.value) : r.kind === "max" && (e === null || r.value < e) && (e = r.value);
1154
+ }
1155
+ return Number.isFinite(t) && Number.isFinite(e);
1156
+ }
1157
+ }
1158
+ B.create = (n) => new B({
1159
+ checks: [],
1160
+ typeName: p.ZodNumber,
1161
+ coerce: n?.coerce || !1,
1162
+ ...g(n)
1163
+ });
1164
+ class z extends _ {
1165
+ constructor() {
1166
+ super(...arguments), this.min = this.gte, this.max = this.lte;
1167
+ }
1168
+ _parse(e) {
1169
+ if (this._def.coerce)
1170
+ try {
1171
+ e.data = BigInt(e.data);
1172
+ } catch {
1173
+ return this._getInvalidInput(e);
1174
+ }
1175
+ if (this._getType(e) !== u.bigint)
1176
+ return this._getInvalidInput(e);
1177
+ let r;
1178
+ const s = new b();
1179
+ for (const a of this._def.checks)
1180
+ a.kind === "min" ? (a.inclusive ? e.data < a.value : e.data <= a.value) && (r = this._getOrReturnCtx(e, r), c(r, {
1181
+ code: d.too_small,
1182
+ type: "bigint",
1183
+ minimum: a.value,
1184
+ inclusive: a.inclusive,
1185
+ message: a.message
1186
+ }), s.dirty()) : a.kind === "max" ? (a.inclusive ? e.data > a.value : e.data >= a.value) && (r = this._getOrReturnCtx(e, r), c(r, {
1187
+ code: d.too_big,
1188
+ type: "bigint",
1189
+ maximum: a.value,
1190
+ inclusive: a.inclusive,
1191
+ message: a.message
1192
+ }), s.dirty()) : a.kind === "multipleOf" ? e.data % a.value !== BigInt(0) && (r = this._getOrReturnCtx(e, r), c(r, {
1193
+ code: d.not_multiple_of,
1194
+ multipleOf: a.value,
1195
+ message: a.message
1196
+ }), s.dirty()) : v.assertNever(a);
1197
+ return { status: s.value, value: e.data };
1198
+ }
1199
+ _getInvalidInput(e) {
1200
+ const t = this._getOrReturnCtx(e);
1201
+ return c(t, {
1202
+ code: d.invalid_type,
1203
+ expected: u.bigint,
1204
+ received: t.parsedType
1205
+ }), m;
1206
+ }
1207
+ gte(e, t) {
1208
+ return this.setLimit("min", e, !0, l.toString(t));
1209
+ }
1210
+ gt(e, t) {
1211
+ return this.setLimit("min", e, !1, l.toString(t));
1212
+ }
1213
+ lte(e, t) {
1214
+ return this.setLimit("max", e, !0, l.toString(t));
1215
+ }
1216
+ lt(e, t) {
1217
+ return this.setLimit("max", e, !1, l.toString(t));
1218
+ }
1219
+ setLimit(e, t, r, s) {
1220
+ return new z({
1221
+ ...this._def,
1222
+ checks: [
1223
+ ...this._def.checks,
1224
+ {
1225
+ kind: e,
1226
+ value: t,
1227
+ inclusive: r,
1228
+ message: l.toString(s)
1229
+ }
1230
+ ]
1231
+ });
1232
+ }
1233
+ _addCheck(e) {
1234
+ return new z({
1235
+ ...this._def,
1236
+ checks: [...this._def.checks, e]
1237
+ });
1238
+ }
1239
+ positive(e) {
1240
+ return this._addCheck({
1241
+ kind: "min",
1242
+ value: BigInt(0),
1243
+ inclusive: !1,
1244
+ message: l.toString(e)
1245
+ });
1246
+ }
1247
+ negative(e) {
1248
+ return this._addCheck({
1249
+ kind: "max",
1250
+ value: BigInt(0),
1251
+ inclusive: !1,
1252
+ message: l.toString(e)
1253
+ });
1254
+ }
1255
+ nonpositive(e) {
1256
+ return this._addCheck({
1257
+ kind: "max",
1258
+ value: BigInt(0),
1259
+ inclusive: !0,
1260
+ message: l.toString(e)
1261
+ });
1262
+ }
1263
+ nonnegative(e) {
1264
+ return this._addCheck({
1265
+ kind: "min",
1266
+ value: BigInt(0),
1267
+ inclusive: !0,
1268
+ message: l.toString(e)
1269
+ });
1270
+ }
1271
+ multipleOf(e, t) {
1272
+ return this._addCheck({
1273
+ kind: "multipleOf",
1274
+ value: e,
1275
+ message: l.toString(t)
1276
+ });
1277
+ }
1278
+ get minValue() {
1279
+ let e = null;
1280
+ for (const t of this._def.checks)
1281
+ t.kind === "min" && (e === null || t.value > e) && (e = t.value);
1282
+ return e;
1283
+ }
1284
+ get maxValue() {
1285
+ let e = null;
1286
+ for (const t of this._def.checks)
1287
+ t.kind === "max" && (e === null || t.value < e) && (e = t.value);
1288
+ return e;
1289
+ }
1290
+ }
1291
+ z.create = (n) => new z({
1292
+ checks: [],
1293
+ typeName: p.ZodBigInt,
1294
+ coerce: n?.coerce ?? !1,
1295
+ ...g(n)
1296
+ });
1297
+ class ve extends _ {
1298
+ _parse(e) {
1299
+ if (this._def.coerce && (e.data = !!e.data), this._getType(e) !== u.boolean) {
1300
+ const r = this._getOrReturnCtx(e);
1301
+ return c(r, {
1302
+ code: d.invalid_type,
1303
+ expected: u.boolean,
1304
+ received: r.parsedType
1305
+ }), m;
1306
+ }
1307
+ return S(e.data);
1308
+ }
1309
+ }
1310
+ ve.create = (n) => new ve({
1311
+ typeName: p.ZodBoolean,
1312
+ coerce: n?.coerce || !1,
1313
+ ...g(n)
1314
+ });
1315
+ class q extends _ {
1316
+ _parse(e) {
1317
+ if (this._def.coerce && (e.data = new Date(e.data)), this._getType(e) !== u.date) {
1318
+ const a = this._getOrReturnCtx(e);
1319
+ return c(a, {
1320
+ code: d.invalid_type,
1321
+ expected: u.date,
1322
+ received: a.parsedType
1323
+ }), m;
1324
+ }
1325
+ if (Number.isNaN(e.data.getTime())) {
1326
+ const a = this._getOrReturnCtx(e);
1327
+ return c(a, {
1328
+ code: d.invalid_date
1329
+ }), m;
1330
+ }
1331
+ const r = new b();
1332
+ let s;
1333
+ for (const a of this._def.checks)
1334
+ a.kind === "min" ? e.data.getTime() < a.value && (s = this._getOrReturnCtx(e, s), c(s, {
1335
+ code: d.too_small,
1336
+ message: a.message,
1337
+ inclusive: !0,
1338
+ exact: !1,
1339
+ minimum: a.value,
1340
+ type: "date"
1341
+ }), r.dirty()) : a.kind === "max" ? e.data.getTime() > a.value && (s = this._getOrReturnCtx(e, s), c(s, {
1342
+ code: d.too_big,
1343
+ message: a.message,
1344
+ inclusive: !0,
1345
+ exact: !1,
1346
+ maximum: a.value,
1347
+ type: "date"
1348
+ }), r.dirty()) : v.assertNever(a);
1349
+ return {
1350
+ status: r.value,
1351
+ value: new Date(e.data.getTime())
1352
+ };
1353
+ }
1354
+ _addCheck(e) {
1355
+ return new q({
1356
+ ...this._def,
1357
+ checks: [...this._def.checks, e]
1358
+ });
1359
+ }
1360
+ min(e, t) {
1361
+ return this._addCheck({
1362
+ kind: "min",
1363
+ value: e.getTime(),
1364
+ message: l.toString(t)
1365
+ });
1366
+ }
1367
+ max(e, t) {
1368
+ return this._addCheck({
1369
+ kind: "max",
1370
+ value: e.getTime(),
1371
+ message: l.toString(t)
1372
+ });
1373
+ }
1374
+ get minDate() {
1375
+ let e = null;
1376
+ for (const t of this._def.checks)
1377
+ t.kind === "min" && (e === null || t.value > e) && (e = t.value);
1378
+ return e != null ? new Date(e) : null;
1379
+ }
1380
+ get maxDate() {
1381
+ let e = null;
1382
+ for (const t of this._def.checks)
1383
+ t.kind === "max" && (e === null || t.value < e) && (e = t.value);
1384
+ return e != null ? new Date(e) : null;
1385
+ }
1386
+ }
1387
+ q.create = (n) => new q({
1388
+ checks: [],
1389
+ coerce: n?.coerce || !1,
1390
+ typeName: p.ZodDate,
1391
+ ...g(n)
1392
+ });
1393
+ class xe extends _ {
1394
+ _parse(e) {
1395
+ if (this._getType(e) !== u.symbol) {
1396
+ const r = this._getOrReturnCtx(e);
1397
+ return c(r, {
1398
+ code: d.invalid_type,
1399
+ expected: u.symbol,
1400
+ received: r.parsedType
1401
+ }), m;
1402
+ }
1403
+ return S(e.data);
1404
+ }
1405
+ }
1406
+ xe.create = (n) => new xe({
1407
+ typeName: p.ZodSymbol,
1408
+ ...g(n)
1409
+ });
1410
+ class ie extends _ {
1411
+ _parse(e) {
1412
+ if (this._getType(e) !== u.undefined) {
1413
+ const r = this._getOrReturnCtx(e);
1414
+ return c(r, {
1415
+ code: d.invalid_type,
1416
+ expected: u.undefined,
1417
+ received: r.parsedType
1418
+ }), m;
1419
+ }
1420
+ return S(e.data);
1421
+ }
1422
+ }
1423
+ ie.create = (n) => new ie({
1424
+ typeName: p.ZodUndefined,
1425
+ ...g(n)
1426
+ });
1427
+ class oe extends _ {
1428
+ _parse(e) {
1429
+ if (this._getType(e) !== u.null) {
1430
+ const r = this._getOrReturnCtx(e);
1431
+ return c(r, {
1432
+ code: d.invalid_type,
1433
+ expected: u.null,
1434
+ received: r.parsedType
1435
+ }), m;
1436
+ }
1437
+ return S(e.data);
1438
+ }
1439
+ }
1440
+ oe.create = (n) => new oe({
1441
+ typeName: p.ZodNull,
1442
+ ...g(n)
1443
+ });
1444
+ class ke extends _ {
1445
+ constructor() {
1446
+ super(...arguments), this._any = !0;
1447
+ }
1448
+ _parse(e) {
1449
+ return S(e.data);
1450
+ }
1451
+ }
1452
+ ke.create = (n) => new ke({
1453
+ typeName: p.ZodAny,
1454
+ ...g(n)
1455
+ });
1456
+ class we extends _ {
1457
+ constructor() {
1458
+ super(...arguments), this._unknown = !0;
1459
+ }
1460
+ _parse(e) {
1461
+ return S(e.data);
1462
+ }
1463
+ }
1464
+ we.create = (n) => new we({
1465
+ typeName: p.ZodUnknown,
1466
+ ...g(n)
1467
+ });
1468
+ class j extends _ {
1469
+ _parse(e) {
1470
+ const t = this._getOrReturnCtx(e);
1471
+ return c(t, {
1472
+ code: d.invalid_type,
1473
+ expected: u.never,
1474
+ received: t.parsedType
1475
+ }), m;
1476
+ }
1477
+ }
1478
+ j.create = (n) => new j({
1479
+ typeName: p.ZodNever,
1480
+ ...g(n)
1481
+ });
1482
+ class be extends _ {
1483
+ _parse(e) {
1484
+ if (this._getType(e) !== u.undefined) {
1485
+ const r = this._getOrReturnCtx(e);
1486
+ return c(r, {
1487
+ code: d.invalid_type,
1488
+ expected: u.void,
1489
+ received: r.parsedType
1490
+ }), m;
1491
+ }
1492
+ return S(e.data);
1493
+ }
1494
+ }
1495
+ be.create = (n) => new be({
1496
+ typeName: p.ZodVoid,
1497
+ ...g(n)
1498
+ });
1499
+ class T extends _ {
1500
+ _parse(e) {
1501
+ const { ctx: t, status: r } = this._processInputParams(e), s = this._def;
1502
+ if (t.parsedType !== u.array)
1503
+ return c(t, {
1504
+ code: d.invalid_type,
1505
+ expected: u.array,
1506
+ received: t.parsedType
1507
+ }), m;
1508
+ if (s.exactLength !== null) {
1509
+ const i = t.data.length > s.exactLength.value, o = t.data.length < s.exactLength.value;
1510
+ (i || o) && (c(t, {
1511
+ code: i ? d.too_big : d.too_small,
1512
+ minimum: o ? s.exactLength.value : void 0,
1513
+ maximum: i ? s.exactLength.value : void 0,
1514
+ type: "array",
1515
+ inclusive: !0,
1516
+ exact: !0,
1517
+ message: s.exactLength.message
1518
+ }), r.dirty());
1519
+ }
1520
+ if (s.minLength !== null && t.data.length < s.minLength.value && (c(t, {
1521
+ code: d.too_small,
1522
+ minimum: s.minLength.value,
1523
+ type: "array",
1524
+ inclusive: !0,
1525
+ exact: !1,
1526
+ message: s.minLength.message
1527
+ }), r.dirty()), s.maxLength !== null && t.data.length > s.maxLength.value && (c(t, {
1528
+ code: d.too_big,
1529
+ maximum: s.maxLength.value,
1530
+ type: "array",
1531
+ inclusive: !0,
1532
+ exact: !1,
1533
+ message: s.maxLength.message
1534
+ }), r.dirty()), t.common.async)
1535
+ return Promise.all([...t.data].map((i, o) => s.type._parseAsync(new Z(t, i, t.path, o)))).then((i) => b.mergeArray(r, i));
1536
+ const a = [...t.data].map((i, o) => s.type._parseSync(new Z(t, i, t.path, o)));
1537
+ return b.mergeArray(r, a);
1538
+ }
1539
+ get element() {
1540
+ return this._def.type;
1541
+ }
1542
+ min(e, t) {
1543
+ return new T({
1544
+ ...this._def,
1545
+ minLength: { value: e, message: l.toString(t) }
1546
+ });
1547
+ }
1548
+ max(e, t) {
1549
+ return new T({
1550
+ ...this._def,
1551
+ maxLength: { value: e, message: l.toString(t) }
1552
+ });
1553
+ }
1554
+ length(e, t) {
1555
+ return new T({
1556
+ ...this._def,
1557
+ exactLength: { value: e, message: l.toString(t) }
1558
+ });
1559
+ }
1560
+ nonempty(e) {
1561
+ return this.min(1, e);
1562
+ }
1563
+ }
1564
+ T.create = (n, e) => new T({
1565
+ type: n,
1566
+ minLength: null,
1567
+ maxLength: null,
1568
+ exactLength: null,
1569
+ typeName: p.ZodArray,
1570
+ ...g(e)
1571
+ });
1572
+ function P(n) {
1573
+ if (n instanceof k) {
1574
+ const e = {};
1575
+ for (const t in n.shape) {
1576
+ const r = n.shape[t];
1577
+ e[t] = N.create(P(r));
1578
+ }
1579
+ return new k({
1580
+ ...n._def,
1581
+ shape: () => e
1582
+ });
1583
+ } else return n instanceof T ? new T({
1584
+ ...n._def,
1585
+ type: P(n.element)
1586
+ }) : n instanceof N ? N.create(P(n.unwrap())) : n instanceof L ? L.create(P(n.unwrap())) : n instanceof E ? E.create(n.items.map((e) => P(e))) : n;
1587
+ }
1588
+ class k extends _ {
1589
+ constructor() {
1590
+ super(...arguments), this._cached = null, this.nonstrict = this.passthrough, this.augment = this.extend;
1591
+ }
1592
+ _getCached() {
1593
+ if (this._cached !== null)
1594
+ return this._cached;
1595
+ const e = this._def.shape(), t = v.objectKeys(e);
1596
+ return this._cached = { shape: e, keys: t }, this._cached;
1597
+ }
1598
+ _parse(e) {
1599
+ if (this._getType(e) !== u.object) {
1600
+ const f = this._getOrReturnCtx(e);
1601
+ return c(f, {
1602
+ code: d.invalid_type,
1603
+ expected: u.object,
1604
+ received: f.parsedType
1605
+ }), m;
1606
+ }
1607
+ const { status: r, ctx: s } = this._processInputParams(e), { shape: a, keys: i } = this._getCached(), o = [];
1608
+ if (!(this._def.catchall instanceof j && this._def.unknownKeys === "strip"))
1609
+ for (const f in s.data)
1610
+ i.includes(f) || o.push(f);
1611
+ const h = [];
1612
+ for (const f of i) {
1613
+ const y = a[f], C = s.data[f];
1614
+ h.push({
1615
+ key: { status: "valid", value: f },
1616
+ value: y._parse(new Z(s, C, s.path, f)),
1617
+ alwaysSet: f in s.data
1618
+ });
1619
+ }
1620
+ if (this._def.catchall instanceof j) {
1621
+ const f = this._def.unknownKeys;
1622
+ if (f === "passthrough")
1623
+ for (const y of o)
1624
+ h.push({
1625
+ key: { status: "valid", value: y },
1626
+ value: { status: "valid", value: s.data[y] }
1627
+ });
1628
+ else if (f === "strict")
1629
+ o.length > 0 && (c(s, {
1630
+ code: d.unrecognized_keys,
1631
+ keys: o
1632
+ }), r.dirty());
1633
+ else if (f !== "strip") throw new Error("Internal ZodObject error: invalid unknownKeys value.");
1634
+ } else {
1635
+ const f = this._def.catchall;
1636
+ for (const y of o) {
1637
+ const C = s.data[y];
1638
+ h.push({
1639
+ key: { status: "valid", value: y },
1640
+ value: f._parse(
1641
+ new Z(s, C, s.path, y)
1642
+ //, ctx.child(key), value, getParsedType(value)
1643
+ ),
1644
+ alwaysSet: y in s.data
1645
+ });
1646
+ }
1647
+ }
1648
+ return s.common.async ? Promise.resolve().then(async () => {
1649
+ const f = [];
1650
+ for (const y of h) {
1651
+ const C = await y.key, ne = await y.value;
1652
+ f.push({
1653
+ key: C,
1654
+ value: ne,
1655
+ alwaysSet: y.alwaysSet
1656
+ });
1657
+ }
1658
+ return f;
1659
+ }).then((f) => b.mergeObjectSync(r, f)) : b.mergeObjectSync(r, h);
1660
+ }
1661
+ get shape() {
1662
+ return this._def.shape();
1663
+ }
1664
+ strict(e) {
1665
+ return l.errToObj, new k({
1666
+ ...this._def,
1667
+ unknownKeys: "strict",
1668
+ ...e !== void 0 ? {
1669
+ errorMap: (t, r) => {
1670
+ const s = this._def.errorMap?.(t, r).message ?? r.defaultError;
1671
+ return t.code === "unrecognized_keys" ? {
1672
+ message: l.errToObj(e).message ?? s
1673
+ } : {
1674
+ message: s
1675
+ };
1676
+ }
1677
+ } : {}
1678
+ });
1679
+ }
1680
+ strip() {
1681
+ return new k({
1682
+ ...this._def,
1683
+ unknownKeys: "strip"
1684
+ });
1685
+ }
1686
+ passthrough() {
1687
+ return new k({
1688
+ ...this._def,
1689
+ unknownKeys: "passthrough"
1690
+ });
1691
+ }
1692
+ // const AugmentFactory =
1693
+ // <Def extends ZodObjectDef>(def: Def) =>
1694
+ // <Augmentation extends ZodRawShape>(
1695
+ // augmentation: Augmentation
1696
+ // ): ZodObject<
1697
+ // extendShape<ReturnType<Def["shape"]>, Augmentation>,
1698
+ // Def["unknownKeys"],
1699
+ // Def["catchall"]
1700
+ // > => {
1701
+ // return new ZodObject({
1702
+ // ...def,
1703
+ // shape: () => ({
1704
+ // ...def.shape(),
1705
+ // ...augmentation,
1706
+ // }),
1707
+ // }) as any;
1708
+ // };
1709
+ extend(e) {
1710
+ return new k({
1711
+ ...this._def,
1712
+ shape: () => ({
1713
+ ...this._def.shape(),
1714
+ ...e
1715
+ })
1716
+ });
1717
+ }
1718
+ /**
1719
+ * Prior to zod@1.0.12 there was a bug in the
1720
+ * inferred type of merged objects. Please
1721
+ * upgrade if you are experiencing issues.
1722
+ */
1723
+ merge(e) {
1724
+ return new k({
1725
+ unknownKeys: e._def.unknownKeys,
1726
+ catchall: e._def.catchall,
1727
+ shape: () => ({
1728
+ ...this._def.shape(),
1729
+ ...e._def.shape()
1730
+ }),
1731
+ typeName: p.ZodObject
1732
+ });
1733
+ }
1734
+ // merge<
1735
+ // Incoming extends AnyZodObject,
1736
+ // Augmentation extends Incoming["shape"],
1737
+ // NewOutput extends {
1738
+ // [k in keyof Augmentation | keyof Output]: k extends keyof Augmentation
1739
+ // ? Augmentation[k]["_output"]
1740
+ // : k extends keyof Output
1741
+ // ? Output[k]
1742
+ // : never;
1743
+ // },
1744
+ // NewInput extends {
1745
+ // [k in keyof Augmentation | keyof Input]: k extends keyof Augmentation
1746
+ // ? Augmentation[k]["_input"]
1747
+ // : k extends keyof Input
1748
+ // ? Input[k]
1749
+ // : never;
1750
+ // }
1751
+ // >(
1752
+ // merging: Incoming
1753
+ // ): ZodObject<
1754
+ // extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
1755
+ // Incoming["_def"]["unknownKeys"],
1756
+ // Incoming["_def"]["catchall"],
1757
+ // NewOutput,
1758
+ // NewInput
1759
+ // > {
1760
+ // const merged: any = new ZodObject({
1761
+ // unknownKeys: merging._def.unknownKeys,
1762
+ // catchall: merging._def.catchall,
1763
+ // shape: () =>
1764
+ // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
1765
+ // typeName: ZodFirstPartyTypeKind.ZodObject,
1766
+ // }) as any;
1767
+ // return merged;
1768
+ // }
1769
+ setKey(e, t) {
1770
+ return this.augment({ [e]: t });
1771
+ }
1772
+ // merge<Incoming extends AnyZodObject>(
1773
+ // merging: Incoming
1774
+ // ): //ZodObject<T & Incoming["_shape"], UnknownKeys, Catchall> = (merging) => {
1775
+ // ZodObject<
1776
+ // extendShape<T, ReturnType<Incoming["_def"]["shape"]>>,
1777
+ // Incoming["_def"]["unknownKeys"],
1778
+ // Incoming["_def"]["catchall"]
1779
+ // > {
1780
+ // // const mergedShape = objectUtil.mergeShapes(
1781
+ // // this._def.shape(),
1782
+ // // merging._def.shape()
1783
+ // // );
1784
+ // const merged: any = new ZodObject({
1785
+ // unknownKeys: merging._def.unknownKeys,
1786
+ // catchall: merging._def.catchall,
1787
+ // shape: () =>
1788
+ // objectUtil.mergeShapes(this._def.shape(), merging._def.shape()),
1789
+ // typeName: ZodFirstPartyTypeKind.ZodObject,
1790
+ // }) as any;
1791
+ // return merged;
1792
+ // }
1793
+ catchall(e) {
1794
+ return new k({
1795
+ ...this._def,
1796
+ catchall: e
1797
+ });
1798
+ }
1799
+ pick(e) {
1800
+ const t = {};
1801
+ for (const r of v.objectKeys(e))
1802
+ e[r] && this.shape[r] && (t[r] = this.shape[r]);
1803
+ return new k({
1804
+ ...this._def,
1805
+ shape: () => t
1806
+ });
1807
+ }
1808
+ omit(e) {
1809
+ const t = {};
1810
+ for (const r of v.objectKeys(this.shape))
1811
+ e[r] || (t[r] = this.shape[r]);
1812
+ return new k({
1813
+ ...this._def,
1814
+ shape: () => t
1815
+ });
1816
+ }
1817
+ /**
1818
+ * @deprecated
1819
+ */
1820
+ deepPartial() {
1821
+ return P(this);
1822
+ }
1823
+ partial(e) {
1824
+ const t = {};
1825
+ for (const r of v.objectKeys(this.shape)) {
1826
+ const s = this.shape[r];
1827
+ e && !e[r] ? t[r] = s : t[r] = s.optional();
1828
+ }
1829
+ return new k({
1830
+ ...this._def,
1831
+ shape: () => t
1832
+ });
1833
+ }
1834
+ required(e) {
1835
+ const t = {};
1836
+ for (const r of v.objectKeys(this.shape))
1837
+ if (e && !e[r])
1838
+ t[r] = this.shape[r];
1839
+ else {
1840
+ let a = this.shape[r];
1841
+ for (; a instanceof N; )
1842
+ a = a._def.innerType;
1843
+ t[r] = a;
1844
+ }
1845
+ return new k({
1846
+ ...this._def,
1847
+ shape: () => t
1848
+ });
1849
+ }
1850
+ keyof() {
1851
+ return Ne(v.objectKeys(this.shape));
1852
+ }
1853
+ }
1854
+ k.create = (n, e) => new k({
1855
+ shape: () => n,
1856
+ unknownKeys: "strip",
1857
+ catchall: j.create(),
1858
+ typeName: p.ZodObject,
1859
+ ...g(e)
1860
+ });
1861
+ k.strictCreate = (n, e) => new k({
1862
+ shape: () => n,
1863
+ unknownKeys: "strict",
1864
+ catchall: j.create(),
1865
+ typeName: p.ZodObject,
1866
+ ...g(e)
1867
+ });
1868
+ k.lazycreate = (n, e) => new k({
1869
+ shape: n,
1870
+ unknownKeys: "strip",
1871
+ catchall: j.create(),
1872
+ typeName: p.ZodObject,
1873
+ ...g(e)
1874
+ });
1875
+ class H extends _ {
1876
+ _parse(e) {
1877
+ const { ctx: t } = this._processInputParams(e), r = this._def.options;
1878
+ function s(a) {
1879
+ for (const o of a)
1880
+ if (o.result.status === "valid")
1881
+ return o.result;
1882
+ for (const o of a)
1883
+ if (o.result.status === "dirty")
1884
+ return t.common.issues.push(...o.ctx.common.issues), o.result;
1885
+ const i = a.map((o) => new O(o.ctx.common.issues));
1886
+ return c(t, {
1887
+ code: d.invalid_union,
1888
+ unionErrors: i
1889
+ }), m;
1890
+ }
1891
+ if (t.common.async)
1892
+ return Promise.all(r.map(async (a) => {
1893
+ const i = {
1894
+ ...t,
1895
+ common: {
1896
+ ...t.common,
1897
+ issues: []
1898
+ },
1899
+ parent: null
1900
+ };
1901
+ return {
1902
+ result: await a._parseAsync({
1903
+ data: t.data,
1904
+ path: t.path,
1905
+ parent: i
1906
+ }),
1907
+ ctx: i
1908
+ };
1909
+ })).then(s);
1910
+ {
1911
+ let a;
1912
+ const i = [];
1913
+ for (const h of r) {
1914
+ const f = {
1915
+ ...t,
1916
+ common: {
1917
+ ...t.common,
1918
+ issues: []
1919
+ },
1920
+ parent: null
1921
+ }, y = h._parseSync({
1922
+ data: t.data,
1923
+ path: t.path,
1924
+ parent: f
1925
+ });
1926
+ if (y.status === "valid")
1927
+ return y;
1928
+ y.status === "dirty" && !a && (a = { result: y, ctx: f }), f.common.issues.length && i.push(f.common.issues);
1929
+ }
1930
+ if (a)
1931
+ return t.common.issues.push(...a.ctx.common.issues), a.result;
1932
+ const o = i.map((h) => new O(h));
1933
+ return c(t, {
1934
+ code: d.invalid_union,
1935
+ unionErrors: o
1936
+ }), m;
1937
+ }
1938
+ }
1939
+ get options() {
1940
+ return this._def.options;
1941
+ }
1942
+ }
1943
+ H.create = (n, e) => new H({
1944
+ options: n,
1945
+ typeName: p.ZodUnion,
1946
+ ...g(e)
1947
+ });
1948
+ const A = (n) => n instanceof ce ? A(n.schema) : n instanceof M ? A(n.innerType()) : n instanceof J ? [n.value] : n instanceof I ? n.options : n instanceof Q ? v.objectValues(n.enum) : n instanceof G ? A(n._def.innerType) : n instanceof ie ? [void 0] : n instanceof oe ? [null] : n instanceof N ? [void 0, ...A(n.unwrap())] : n instanceof L ? [null, ...A(n.unwrap())] : n instanceof Oe || n instanceof ee ? A(n.unwrap()) : n instanceof K ? A(n._def.innerType) : [];
1949
+ class ue extends _ {
1950
+ _parse(e) {
1951
+ const { ctx: t } = this._processInputParams(e);
1952
+ if (t.parsedType !== u.object)
1953
+ return c(t, {
1954
+ code: d.invalid_type,
1955
+ expected: u.object,
1956
+ received: t.parsedType
1957
+ }), m;
1958
+ const r = this.discriminator, s = t.data[r], a = this.optionsMap.get(s);
1959
+ return a ? t.common.async ? a._parseAsync({
1960
+ data: t.data,
1961
+ path: t.path,
1962
+ parent: t
1963
+ }) : a._parseSync({
1964
+ data: t.data,
1965
+ path: t.path,
1966
+ parent: t
1967
+ }) : (c(t, {
1968
+ code: d.invalid_union_discriminator,
1969
+ options: Array.from(this.optionsMap.keys()),
1970
+ path: [r]
1971
+ }), m);
1972
+ }
1973
+ get discriminator() {
1974
+ return this._def.discriminator;
1975
+ }
1976
+ get options() {
1977
+ return this._def.options;
1978
+ }
1979
+ get optionsMap() {
1980
+ return this._def.optionsMap;
1981
+ }
1982
+ /**
1983
+ * The constructor of the discriminated union schema. Its behaviour is very similar to that of the normal z.union() constructor.
1984
+ * However, it only allows a union of objects, all of which need to share a discriminator property. This property must
1985
+ * have a different value for each object in the union.
1986
+ * @param discriminator the name of the discriminator property
1987
+ * @param types an array of object schemas
1988
+ * @param params
1989
+ */
1990
+ static create(e, t, r) {
1991
+ const s = /* @__PURE__ */ new Map();
1992
+ for (const a of t) {
1993
+ const i = A(a.shape[e]);
1994
+ if (!i.length)
1995
+ throw new Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);
1996
+ for (const o of i) {
1997
+ if (s.has(o))
1998
+ throw new Error(`Discriminator property ${String(e)} has duplicate value ${String(o)}`);
1999
+ s.set(o, a);
2000
+ }
2001
+ }
2002
+ return new ue({
2003
+ typeName: p.ZodDiscriminatedUnion,
2004
+ discriminator: e,
2005
+ options: t,
2006
+ optionsMap: s,
2007
+ ...g(r)
2008
+ });
2009
+ }
2010
+ }
2011
+ function de(n, e) {
2012
+ const t = $(n), r = $(e);
2013
+ if (n === e)
2014
+ return { valid: !0, data: n };
2015
+ if (t === u.object && r === u.object) {
2016
+ const s = v.objectKeys(e), a = v.objectKeys(n).filter((o) => s.indexOf(o) !== -1), i = { ...n, ...e };
2017
+ for (const o of a) {
2018
+ const h = de(n[o], e[o]);
2019
+ if (!h.valid)
2020
+ return { valid: !1 };
2021
+ i[o] = h.data;
2022
+ }
2023
+ return { valid: !0, data: i };
2024
+ } else if (t === u.array && r === u.array) {
2025
+ if (n.length !== e.length)
2026
+ return { valid: !1 };
2027
+ const s = [];
2028
+ for (let a = 0; a < n.length; a++) {
2029
+ const i = n[a], o = e[a], h = de(i, o);
2030
+ if (!h.valid)
2031
+ return { valid: !1 };
2032
+ s.push(h.data);
2033
+ }
2034
+ return { valid: !0, data: s };
2035
+ } else return t === u.date && r === u.date && +n == +e ? { valid: !0, data: n } : { valid: !1 };
2036
+ }
2037
+ class Y extends _ {
2038
+ _parse(e) {
2039
+ const { status: t, ctx: r } = this._processInputParams(e), s = (a, i) => {
2040
+ if (ge(a) || ge(i))
2041
+ return m;
2042
+ const o = de(a.value, i.value);
2043
+ return o.valid ? ((ye(a) || ye(i)) && t.dirty(), { status: t.value, value: o.data }) : (c(r, {
2044
+ code: d.invalid_intersection_types
2045
+ }), m);
2046
+ };
2047
+ return r.common.async ? Promise.all([
2048
+ this._def.left._parseAsync({
2049
+ data: r.data,
2050
+ path: r.path,
2051
+ parent: r
2052
+ }),
2053
+ this._def.right._parseAsync({
2054
+ data: r.data,
2055
+ path: r.path,
2056
+ parent: r
2057
+ })
2058
+ ]).then(([a, i]) => s(a, i)) : s(this._def.left._parseSync({
2059
+ data: r.data,
2060
+ path: r.path,
2061
+ parent: r
2062
+ }), this._def.right._parseSync({
2063
+ data: r.data,
2064
+ path: r.path,
2065
+ parent: r
2066
+ }));
2067
+ }
2068
+ }
2069
+ Y.create = (n, e, t) => new Y({
2070
+ left: n,
2071
+ right: e,
2072
+ typeName: p.ZodIntersection,
2073
+ ...g(t)
2074
+ });
2075
+ class E extends _ {
2076
+ _parse(e) {
2077
+ const { status: t, ctx: r } = this._processInputParams(e);
2078
+ if (r.parsedType !== u.array)
2079
+ return c(r, {
2080
+ code: d.invalid_type,
2081
+ expected: u.array,
2082
+ received: r.parsedType
2083
+ }), m;
2084
+ if (r.data.length < this._def.items.length)
2085
+ return c(r, {
2086
+ code: d.too_small,
2087
+ minimum: this._def.items.length,
2088
+ inclusive: !0,
2089
+ exact: !1,
2090
+ type: "array"
2091
+ }), m;
2092
+ !this._def.rest && r.data.length > this._def.items.length && (c(r, {
2093
+ code: d.too_big,
2094
+ maximum: this._def.items.length,
2095
+ inclusive: !0,
2096
+ exact: !1,
2097
+ type: "array"
2098
+ }), t.dirty());
2099
+ const a = [...r.data].map((i, o) => {
2100
+ const h = this._def.items[o] || this._def.rest;
2101
+ return h ? h._parse(new Z(r, i, r.path, o)) : null;
2102
+ }).filter((i) => !!i);
2103
+ return r.common.async ? Promise.all(a).then((i) => b.mergeArray(t, i)) : b.mergeArray(t, a);
2104
+ }
2105
+ get items() {
2106
+ return this._def.items;
2107
+ }
2108
+ rest(e) {
2109
+ return new E({
2110
+ ...this._def,
2111
+ rest: e
2112
+ });
2113
+ }
2114
+ }
2115
+ E.create = (n, e) => {
2116
+ if (!Array.isArray(n))
2117
+ throw new Error("You must pass an array of schemas to z.tuple([ ... ])");
2118
+ return new E({
2119
+ items: n,
2120
+ typeName: p.ZodTuple,
2121
+ rest: null,
2122
+ ...g(e)
2123
+ });
2124
+ };
2125
+ class Se extends _ {
2126
+ get keySchema() {
2127
+ return this._def.keyType;
2128
+ }
2129
+ get valueSchema() {
2130
+ return this._def.valueType;
2131
+ }
2132
+ _parse(e) {
2133
+ const { status: t, ctx: r } = this._processInputParams(e);
2134
+ if (r.parsedType !== u.map)
2135
+ return c(r, {
2136
+ code: d.invalid_type,
2137
+ expected: u.map,
2138
+ received: r.parsedType
2139
+ }), m;
2140
+ const s = this._def.keyType, a = this._def.valueType, i = [...r.data.entries()].map(([o, h], f) => ({
2141
+ key: s._parse(new Z(r, o, r.path, [f, "key"])),
2142
+ value: a._parse(new Z(r, h, r.path, [f, "value"]))
2143
+ }));
2144
+ if (r.common.async) {
2145
+ const o = /* @__PURE__ */ new Map();
2146
+ return Promise.resolve().then(async () => {
2147
+ for (const h of i) {
2148
+ const f = await h.key, y = await h.value;
2149
+ if (f.status === "aborted" || y.status === "aborted")
2150
+ return m;
2151
+ (f.status === "dirty" || y.status === "dirty") && t.dirty(), o.set(f.value, y.value);
2152
+ }
2153
+ return { status: t.value, value: o };
2154
+ });
2155
+ } else {
2156
+ const o = /* @__PURE__ */ new Map();
2157
+ for (const h of i) {
2158
+ const f = h.key, y = h.value;
2159
+ if (f.status === "aborted" || y.status === "aborted")
2160
+ return m;
2161
+ (f.status === "dirty" || y.status === "dirty") && t.dirty(), o.set(f.value, y.value);
2162
+ }
2163
+ return { status: t.value, value: o };
2164
+ }
2165
+ }
2166
+ }
2167
+ Se.create = (n, e, t) => new Se({
2168
+ valueType: e,
2169
+ keyType: n,
2170
+ typeName: p.ZodMap,
2171
+ ...g(t)
2172
+ });
2173
+ class F extends _ {
2174
+ _parse(e) {
2175
+ const { status: t, ctx: r } = this._processInputParams(e);
2176
+ if (r.parsedType !== u.set)
2177
+ return c(r, {
2178
+ code: d.invalid_type,
2179
+ expected: u.set,
2180
+ received: r.parsedType
2181
+ }), m;
2182
+ const s = this._def;
2183
+ s.minSize !== null && r.data.size < s.minSize.value && (c(r, {
2184
+ code: d.too_small,
2185
+ minimum: s.minSize.value,
2186
+ type: "set",
2187
+ inclusive: !0,
2188
+ exact: !1,
2189
+ message: s.minSize.message
2190
+ }), t.dirty()), s.maxSize !== null && r.data.size > s.maxSize.value && (c(r, {
2191
+ code: d.too_big,
2192
+ maximum: s.maxSize.value,
2193
+ type: "set",
2194
+ inclusive: !0,
2195
+ exact: !1,
2196
+ message: s.maxSize.message
2197
+ }), t.dirty());
2198
+ const a = this._def.valueType;
2199
+ function i(h) {
2200
+ const f = /* @__PURE__ */ new Set();
2201
+ for (const y of h) {
2202
+ if (y.status === "aborted")
2203
+ return m;
2204
+ y.status === "dirty" && t.dirty(), f.add(y.value);
2205
+ }
2206
+ return { status: t.value, value: f };
2207
+ }
2208
+ const o = [...r.data.values()].map((h, f) => a._parse(new Z(r, h, r.path, f)));
2209
+ return r.common.async ? Promise.all(o).then((h) => i(h)) : i(o);
2210
+ }
2211
+ min(e, t) {
2212
+ return new F({
2213
+ ...this._def,
2214
+ minSize: { value: e, message: l.toString(t) }
2215
+ });
2216
+ }
2217
+ max(e, t) {
2218
+ return new F({
2219
+ ...this._def,
2220
+ maxSize: { value: e, message: l.toString(t) }
2221
+ });
2222
+ }
2223
+ size(e, t) {
2224
+ return this.min(e, t).max(e, t);
2225
+ }
2226
+ nonempty(e) {
2227
+ return this.min(1, e);
2228
+ }
2229
+ }
2230
+ F.create = (n, e) => new F({
2231
+ valueType: n,
2232
+ minSize: null,
2233
+ maxSize: null,
2234
+ typeName: p.ZodSet,
2235
+ ...g(e)
2236
+ });
2237
+ class ce extends _ {
2238
+ get schema() {
2239
+ return this._def.getter();
2240
+ }
2241
+ _parse(e) {
2242
+ const { ctx: t } = this._processInputParams(e);
2243
+ return this._def.getter()._parse({ data: t.data, path: t.path, parent: t });
2244
+ }
2245
+ }
2246
+ ce.create = (n, e) => new ce({
2247
+ getter: n,
2248
+ typeName: p.ZodLazy,
2249
+ ...g(e)
2250
+ });
2251
+ class J extends _ {
2252
+ _parse(e) {
2253
+ if (e.data !== this._def.value) {
2254
+ const t = this._getOrReturnCtx(e);
2255
+ return c(t, {
2256
+ received: t.data,
2257
+ code: d.invalid_literal,
2258
+ expected: this._def.value
2259
+ }), m;
2260
+ }
2261
+ return { status: "valid", value: e.data };
2262
+ }
2263
+ get value() {
2264
+ return this._def.value;
2265
+ }
2266
+ }
2267
+ J.create = (n, e) => new J({
2268
+ value: n,
2269
+ typeName: p.ZodLiteral,
2270
+ ...g(e)
2271
+ });
2272
+ function Ne(n, e) {
2273
+ return new I({
2274
+ values: n,
2275
+ typeName: p.ZodEnum,
2276
+ ...g(e)
2277
+ });
2278
+ }
2279
+ class I extends _ {
2280
+ _parse(e) {
2281
+ if (typeof e.data != "string") {
2282
+ const t = this._getOrReturnCtx(e), r = this._def.values;
2283
+ return c(t, {
2284
+ expected: v.joinValues(r),
2285
+ received: t.parsedType,
2286
+ code: d.invalid_type
2287
+ }), m;
2288
+ }
2289
+ if (this._cache || (this._cache = new Set(this._def.values)), !this._cache.has(e.data)) {
2290
+ const t = this._getOrReturnCtx(e), r = this._def.values;
2291
+ return c(t, {
2292
+ received: t.data,
2293
+ code: d.invalid_enum_value,
2294
+ options: r
2295
+ }), m;
2296
+ }
2297
+ return S(e.data);
2298
+ }
2299
+ get options() {
2300
+ return this._def.values;
2301
+ }
2302
+ get enum() {
2303
+ const e = {};
2304
+ for (const t of this._def.values)
2305
+ e[t] = t;
2306
+ return e;
2307
+ }
2308
+ get Values() {
2309
+ const e = {};
2310
+ for (const t of this._def.values)
2311
+ e[t] = t;
2312
+ return e;
2313
+ }
2314
+ get Enum() {
2315
+ const e = {};
2316
+ for (const t of this._def.values)
2317
+ e[t] = t;
2318
+ return e;
2319
+ }
2320
+ extract(e, t = this._def) {
2321
+ return I.create(e, {
2322
+ ...this._def,
2323
+ ...t
2324
+ });
2325
+ }
2326
+ exclude(e, t = this._def) {
2327
+ return I.create(this.options.filter((r) => !e.includes(r)), {
2328
+ ...this._def,
2329
+ ...t
2330
+ });
2331
+ }
2332
+ }
2333
+ I.create = Ne;
2334
+ class Q extends _ {
2335
+ _parse(e) {
2336
+ const t = v.getValidEnumValues(this._def.values), r = this._getOrReturnCtx(e);
2337
+ if (r.parsedType !== u.string && r.parsedType !== u.number) {
2338
+ const s = v.objectValues(t);
2339
+ return c(r, {
2340
+ expected: v.joinValues(s),
2341
+ received: r.parsedType,
2342
+ code: d.invalid_type
2343
+ }), m;
2344
+ }
2345
+ if (this._cache || (this._cache = new Set(v.getValidEnumValues(this._def.values))), !this._cache.has(e.data)) {
2346
+ const s = v.objectValues(t);
2347
+ return c(r, {
2348
+ received: r.data,
2349
+ code: d.invalid_enum_value,
2350
+ options: s
2351
+ }), m;
2352
+ }
2353
+ return S(e.data);
2354
+ }
2355
+ get enum() {
2356
+ return this._def.values;
2357
+ }
2358
+ }
2359
+ Q.create = (n, e) => new Q({
2360
+ values: n,
2361
+ typeName: p.ZodNativeEnum,
2362
+ ...g(e)
2363
+ });
2364
+ class X extends _ {
2365
+ unwrap() {
2366
+ return this._def.type;
2367
+ }
2368
+ _parse(e) {
2369
+ const { ctx: t } = this._processInputParams(e);
2370
+ if (t.parsedType !== u.promise && t.common.async === !1)
2371
+ return c(t, {
2372
+ code: d.invalid_type,
2373
+ expected: u.promise,
2374
+ received: t.parsedType
2375
+ }), m;
2376
+ const r = t.parsedType === u.promise ? t.data : Promise.resolve(t.data);
2377
+ return S(r.then((s) => this._def.type.parseAsync(s, {
2378
+ path: t.path,
2379
+ errorMap: t.common.contextualErrorMap
2380
+ })));
2381
+ }
2382
+ }
2383
+ X.create = (n, e) => new X({
2384
+ type: n,
2385
+ typeName: p.ZodPromise,
2386
+ ...g(e)
2387
+ });
2388
+ class M extends _ {
2389
+ innerType() {
2390
+ return this._def.schema;
2391
+ }
2392
+ sourceType() {
2393
+ return this._def.schema._def.typeName === p.ZodEffects ? this._def.schema.sourceType() : this._def.schema;
2394
+ }
2395
+ _parse(e) {
2396
+ const { status: t, ctx: r } = this._processInputParams(e), s = this._def.effect || null, a = {
2397
+ addIssue: (i) => {
2398
+ c(r, i), i.fatal ? t.abort() : t.dirty();
2399
+ },
2400
+ get path() {
2401
+ return r.path;
2402
+ }
2403
+ };
2404
+ if (a.addIssue = a.addIssue.bind(a), s.type === "preprocess") {
2405
+ const i = s.transform(r.data, a);
2406
+ if (r.common.async)
2407
+ return Promise.resolve(i).then(async (o) => {
2408
+ if (t.value === "aborted")
2409
+ return m;
2410
+ const h = await this._def.schema._parseAsync({
2411
+ data: o,
2412
+ path: r.path,
2413
+ parent: r
2414
+ });
2415
+ return h.status === "aborted" ? m : h.status === "dirty" || t.value === "dirty" ? W(h.value) : h;
2416
+ });
2417
+ {
2418
+ if (t.value === "aborted")
2419
+ return m;
2420
+ const o = this._def.schema._parseSync({
2421
+ data: i,
2422
+ path: r.path,
2423
+ parent: r
2424
+ });
2425
+ return o.status === "aborted" ? m : o.status === "dirty" || t.value === "dirty" ? W(o.value) : o;
2426
+ }
2427
+ }
2428
+ if (s.type === "refinement") {
2429
+ const i = (o) => {
2430
+ const h = s.refinement(o, a);
2431
+ if (r.common.async)
2432
+ return Promise.resolve(h);
2433
+ if (h instanceof Promise)
2434
+ throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");
2435
+ return o;
2436
+ };
2437
+ if (r.common.async === !1) {
2438
+ const o = this._def.schema._parseSync({
2439
+ data: r.data,
2440
+ path: r.path,
2441
+ parent: r
2442
+ });
2443
+ return o.status === "aborted" ? m : (o.status === "dirty" && t.dirty(), i(o.value), { status: t.value, value: o.value });
2444
+ } else
2445
+ return this._def.schema._parseAsync({ data: r.data, path: r.path, parent: r }).then((o) => o.status === "aborted" ? m : (o.status === "dirty" && t.dirty(), i(o.value).then(() => ({ status: t.value, value: o.value }))));
2446
+ }
2447
+ if (s.type === "transform")
2448
+ if (r.common.async === !1) {
2449
+ const i = this._def.schema._parseSync({
2450
+ data: r.data,
2451
+ path: r.path,
2452
+ parent: r
2453
+ });
2454
+ if (!D(i))
2455
+ return m;
2456
+ const o = s.transform(i.value, a);
2457
+ if (o instanceof Promise)
2458
+ throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");
2459
+ return { status: t.value, value: o };
2460
+ } else
2461
+ return this._def.schema._parseAsync({ data: r.data, path: r.path, parent: r }).then((i) => D(i) ? Promise.resolve(s.transform(i.value, a)).then((o) => ({
2462
+ status: t.value,
2463
+ value: o
2464
+ })) : m);
2465
+ v.assertNever(s);
2466
+ }
2467
+ }
2468
+ M.create = (n, e, t) => new M({
2469
+ schema: n,
2470
+ typeName: p.ZodEffects,
2471
+ effect: e,
2472
+ ...g(t)
2473
+ });
2474
+ M.createWithPreprocess = (n, e, t) => new M({
2475
+ schema: e,
2476
+ effect: { type: "preprocess", transform: n },
2477
+ typeName: p.ZodEffects,
2478
+ ...g(t)
2479
+ });
2480
+ class N extends _ {
2481
+ _parse(e) {
2482
+ return this._getType(e) === u.undefined ? S(void 0) : this._def.innerType._parse(e);
2483
+ }
2484
+ unwrap() {
2485
+ return this._def.innerType;
2486
+ }
2487
+ }
2488
+ N.create = (n, e) => new N({
2489
+ innerType: n,
2490
+ typeName: p.ZodOptional,
2491
+ ...g(e)
2492
+ });
2493
+ class L extends _ {
2494
+ _parse(e) {
2495
+ return this._getType(e) === u.null ? S(null) : this._def.innerType._parse(e);
2496
+ }
2497
+ unwrap() {
2498
+ return this._def.innerType;
2499
+ }
2500
+ }
2501
+ L.create = (n, e) => new L({
2502
+ innerType: n,
2503
+ typeName: p.ZodNullable,
2504
+ ...g(e)
2505
+ });
2506
+ class G extends _ {
2507
+ _parse(e) {
2508
+ const { ctx: t } = this._processInputParams(e);
2509
+ let r = t.data;
2510
+ return t.parsedType === u.undefined && (r = this._def.defaultValue()), this._def.innerType._parse({
2511
+ data: r,
2512
+ path: t.path,
2513
+ parent: t
2514
+ });
2515
+ }
2516
+ removeDefault() {
2517
+ return this._def.innerType;
2518
+ }
2519
+ }
2520
+ G.create = (n, e) => new G({
2521
+ innerType: n,
2522
+ typeName: p.ZodDefault,
2523
+ defaultValue: typeof e.default == "function" ? e.default : () => e.default,
2524
+ ...g(e)
2525
+ });
2526
+ class K extends _ {
2527
+ _parse(e) {
2528
+ const { ctx: t } = this._processInputParams(e), r = {
2529
+ ...t,
2530
+ common: {
2531
+ ...t.common,
2532
+ issues: []
2533
+ }
2534
+ }, s = this._def.innerType._parse({
2535
+ data: r.data,
2536
+ path: r.path,
2537
+ parent: {
2538
+ ...r
2539
+ }
2540
+ });
2541
+ return U(s) ? s.then((a) => ({
2542
+ status: "valid",
2543
+ value: a.status === "valid" ? a.value : this._def.catchValue({
2544
+ get error() {
2545
+ return new O(r.common.issues);
2546
+ },
2547
+ input: r.data
2548
+ })
2549
+ })) : {
2550
+ status: "valid",
2551
+ value: s.status === "valid" ? s.value : this._def.catchValue({
2552
+ get error() {
2553
+ return new O(r.common.issues);
2554
+ },
2555
+ input: r.data
2556
+ })
2557
+ };
2558
+ }
2559
+ removeCatch() {
2560
+ return this._def.innerType;
2561
+ }
2562
+ }
2563
+ K.create = (n, e) => new K({
2564
+ innerType: n,
2565
+ typeName: p.ZodCatch,
2566
+ catchValue: typeof e.catch == "function" ? e.catch : () => e.catch,
2567
+ ...g(e)
2568
+ });
2569
+ class Te extends _ {
2570
+ _parse(e) {
2571
+ if (this._getType(e) !== u.nan) {
2572
+ const r = this._getOrReturnCtx(e);
2573
+ return c(r, {
2574
+ code: d.invalid_type,
2575
+ expected: u.nan,
2576
+ received: r.parsedType
2577
+ }), m;
2578
+ }
2579
+ return { status: "valid", value: e.data };
2580
+ }
2581
+ }
2582
+ Te.create = (n) => new Te({
2583
+ typeName: p.ZodNaN,
2584
+ ...g(n)
2585
+ });
2586
+ class Oe extends _ {
2587
+ _parse(e) {
2588
+ const { ctx: t } = this._processInputParams(e), r = t.data;
2589
+ return this._def.type._parse({
2590
+ data: r,
2591
+ path: t.path,
2592
+ parent: t
2593
+ });
2594
+ }
2595
+ unwrap() {
2596
+ return this._def.type;
2597
+ }
2598
+ }
2599
+ class le extends _ {
2600
+ _parse(e) {
2601
+ const { status: t, ctx: r } = this._processInputParams(e);
2602
+ if (r.common.async)
2603
+ return (async () => {
2604
+ const a = await this._def.in._parseAsync({
2605
+ data: r.data,
2606
+ path: r.path,
2607
+ parent: r
2608
+ });
2609
+ return a.status === "aborted" ? m : a.status === "dirty" ? (t.dirty(), W(a.value)) : this._def.out._parseAsync({
2610
+ data: a.value,
2611
+ path: r.path,
2612
+ parent: r
2613
+ });
2614
+ })();
2615
+ {
2616
+ const s = this._def.in._parseSync({
2617
+ data: r.data,
2618
+ path: r.path,
2619
+ parent: r
2620
+ });
2621
+ return s.status === "aborted" ? m : s.status === "dirty" ? (t.dirty(), {
2622
+ status: "dirty",
2623
+ value: s.value
2624
+ }) : this._def.out._parseSync({
2625
+ data: s.value,
2626
+ path: r.path,
2627
+ parent: r
2628
+ });
2629
+ }
2630
+ }
2631
+ static create(e, t) {
2632
+ return new le({
2633
+ in: e,
2634
+ out: t,
2635
+ typeName: p.ZodPipeline
2636
+ });
2637
+ }
2638
+ }
2639
+ class ee extends _ {
2640
+ _parse(e) {
2641
+ const t = this._def.innerType._parse(e), r = (s) => (D(s) && (s.value = Object.freeze(s.value)), s);
2642
+ return U(t) ? t.then((s) => r(s)) : r(t);
2643
+ }
2644
+ unwrap() {
2645
+ return this._def.innerType;
2646
+ }
2647
+ }
2648
+ ee.create = (n, e) => new ee({
2649
+ innerType: n,
2650
+ typeName: p.ZodReadonly,
2651
+ ...g(e)
2652
+ });
2653
+ var p;
2654
+ (function(n) {
2655
+ n.ZodString = "ZodString", n.ZodNumber = "ZodNumber", n.ZodNaN = "ZodNaN", n.ZodBigInt = "ZodBigInt", n.ZodBoolean = "ZodBoolean", n.ZodDate = "ZodDate", n.ZodSymbol = "ZodSymbol", n.ZodUndefined = "ZodUndefined", n.ZodNull = "ZodNull", n.ZodAny = "ZodAny", n.ZodUnknown = "ZodUnknown", n.ZodNever = "ZodNever", n.ZodVoid = "ZodVoid", n.ZodArray = "ZodArray", n.ZodObject = "ZodObject", n.ZodUnion = "ZodUnion", n.ZodDiscriminatedUnion = "ZodDiscriminatedUnion", n.ZodIntersection = "ZodIntersection", n.ZodTuple = "ZodTuple", n.ZodRecord = "ZodRecord", n.ZodMap = "ZodMap", n.ZodSet = "ZodSet", n.ZodFunction = "ZodFunction", n.ZodLazy = "ZodLazy", n.ZodLiteral = "ZodLiteral", n.ZodEnum = "ZodEnum", n.ZodEffects = "ZodEffects", n.ZodNativeEnum = "ZodNativeEnum", n.ZodOptional = "ZodOptional", n.ZodNullable = "ZodNullable", n.ZodDefault = "ZodDefault", n.ZodCatch = "ZodCatch", n.ZodPromise = "ZodPromise", n.ZodBranded = "ZodBranded", n.ZodPipeline = "ZodPipeline", n.ZodReadonly = "ZodReadonly";
2656
+ })(p || (p = {}));
2657
+ const te = R.create, x = B.create;
2658
+ j.create;
2659
+ const $e = T.create, fe = k.create;
2660
+ H.create;
2661
+ const at = ue.create;
2662
+ Y.create;
2663
+ E.create;
2664
+ const V = J.create;
2665
+ I.create;
2666
+ const w = Q.create;
2667
+ X.create;
2668
+ N.create;
2669
+ L.create;
2670
+ const it = {
2671
+ Off: "O",
2672
+ Normal: "N",
2673
+ BackfeedAfter: "A",
2674
+ BackfeedBefore: "B",
2675
+ Backfeed10: "10",
2676
+ Backfeed20: "20",
2677
+ Backfeed30: "30",
2678
+ Backfeed40: "40",
2679
+ Backfeed50: "50",
2680
+ Backfeed60: "60",
2681
+ Backfeed70: "70",
2682
+ Backfeed80: "80",
2683
+ Backfeed90: "90"
2684
+ }, ot = w(it), dt = {
2685
+ Continuous: "N",
2686
+ VariableLengthContinuous: "V",
2687
+ NonContinuousWebSensing: "W",
2688
+ NonContinuousWebSensingAlt: "Y",
2689
+ NonContinuousMarkSensing: "M",
2690
+ AutoDetect: "A"
2691
+ }, ct = w(dt), ut = {
2692
+ DirectThermal: "D",
2693
+ ThermalTransfer: "T"
2694
+ }, lt = w(ut), ft = {
2695
+ Invert: "I",
2696
+ Normal: "N"
2697
+ }, ht = w(ft), mt = {
2698
+ Mirror: "Y",
2699
+ Normal: "N"
2700
+ }, pt = w(mt), gt = {
2701
+ Normal: "A",
2702
+ Half: "B"
2703
+ }, yt = w(gt), _t = {
2704
+ Enable: "Y",
2705
+ Disable: "N"
2706
+ }, vt = w(_t), xt = {
2707
+ TearOff: "T",
2708
+ PeelOff: "P",
2709
+ Rewind: "R",
2710
+ Applicator: "A",
2711
+ Cut: "C",
2712
+ DelayedCut: "D",
2713
+ EncodeRFID: "F",
2714
+ Kiosk: "K"
2715
+ }, kt = w(xt), wt = {
2716
+ Prepeel: "Y",
2717
+ NoPrepeel: "N"
2718
+ }, bt = w(wt), St = {
2719
+ AllMedia: "Y",
2720
+ ContinuousOnly: "N"
2721
+ }, Tt = w(St), Ct = {
2722
+ NoRotation: "N",
2723
+ Rotate90: "R",
2724
+ Rotate180: "I",
2725
+ Rotate270: "B"
2726
+ }, Re = w(Ct), At = {
2727
+ Left: "L",
2728
+ Right: "R",
2729
+ Center: "C",
2730
+ Justified: "J"
2731
+ }, Nt = w(At), Ot = {
2732
+ Highest: "H",
2733
+ High: "Q",
2734
+ Medium: "M",
2735
+ Lower: "L"
2736
+ }, $t = w(Ot), Rt = {
2737
+ Yes: "Y",
2738
+ No: "N"
2739
+ }, se = w(Rt), Ze = {
2740
+ Start: "start",
2741
+ End: "end"
2742
+ }, Zt = w(Ze), jt = fe({
2743
+ word: te(),
2744
+ width: x(),
2745
+ spaceWidth: x()
2746
+ }), he = fe({
2747
+ name: te(),
2748
+ x: x().int(),
2749
+ y: x().int(),
2750
+ data: te()
2751
+ }), Et = he.extend({
2752
+ type: V("field"),
2753
+ // ^A font, height, width
2754
+ font: te().regex(/^[A-Z0-9]$/, "Font must be a single character A-Z or 0-9"),
2755
+ fontOrientation: Re,
2756
+ fontHeight: x().int().min(1).max(32e3),
2757
+ fontWidth: x().int().min(1).max(32e3).optional(),
2758
+ // ^FB maxWidth, maxLines, lineSpacing, alignment, hangingIndent
2759
+ maxWidth: x().int().min(0).max(9999),
2760
+ maxLines: x().int().min(1).max(9999),
2761
+ lineSpacing: x().int().min(-9999).max(9999),
2762
+ alignment: Nt,
2763
+ hangingIndent: x().int().min(0).max(9999),
2764
+ verticalAlignment: Zt,
2765
+ wordWidths: $e(jt).optional()
2766
+ }), It = he.extend({
2767
+ type: V("barcode"),
2768
+ // ^BY barWidth
2769
+ barWidth: x().int().min(4).max(9999),
2770
+ // ^BC orientation, height, line, lineAbove, checkDigit
2771
+ orientation: Re,
2772
+ height: x().int().min(1).max(32e3),
2773
+ line: se,
2774
+ lineAbove: se,
2775
+ checkDigit: se
2776
+ }), Mt = he.extend({
2777
+ type: V("qrcode"),
2778
+ // ^BQ orientation, model, magnification, errorCorrection, mask
2779
+ orientation: V("N"),
2780
+ model: V("2"),
2781
+ magnification: x().int().min(1).max(100),
2782
+ errorCorrection: $t,
2783
+ mask: x().int().min(0).max(7)
2784
+ }), Lt = at("type", [
2785
+ Et,
2786
+ It,
2787
+ Mt
2788
+ ]), je = fe({
2789
+ type: V("thermal"),
2790
+ // ~TA adjustment
2791
+ tearOffAdjustment: x().int().min(0).max(120),
2792
+ // ~JS sequence
2793
+ backfeedActions: ot,
2794
+ // ^MN media, offset
2795
+ media: ct,
2796
+ mediaOffset: x().int().min(-75).max(283),
2797
+ // ^MT mediaType
2798
+ thermalMediaType: lt,
2799
+ // ^PO orientation
2800
+ printOrientation: ht,
2801
+ // ^PM mirror
2802
+ mirror: pt,
2803
+ // ^LH x,y
2804
+ labelHomeX: x().int().min(0).max(32e3),
2805
+ labelHomeY: x().int().min(0).max(32e3),
2806
+ // ^JM adjustment
2807
+ printDensityAdjustment: yt,
2808
+ // ^PR printSpeed, slewSpeed, backfeedSpeed
2809
+ printSpeed: x().int().min(1).max(14),
2810
+ slewSpeed: x().int().min(1).max(14),
2811
+ backfeedSpeed: x().int().min(1).max(14),
2812
+ // ~SD darkness
2813
+ darkness: x().int().min(0).max(30),
2814
+ // ^LR reverse
2815
+ reverse: vt,
2816
+ // ^MM mode, prepeel
2817
+ postPrintMode: kt,
2818
+ prepeel: bt,
2819
+ // ^PW width
2820
+ printWidth: x().int().min(2),
2821
+ // ^LL length, allMedia
2822
+ labelLength: x().int().min(1).max(32e3),
2823
+ allMedia: Tt,
2824
+ // Blocks
2825
+ blocks: $e(Lt)
2826
+ });
2827
+ function Yt(n) {
2828
+ return je.safeParse(n);
2829
+ }
2830
+ function Jt(n) {
2831
+ return je.parse(n);
2832
+ }
2833
+ function Qt(n) {
2834
+ if (n.type === "thermal")
2835
+ return Pt(n);
2836
+ throw new Error(`Unsupported badge type: ${n.type}`);
2837
+ }
2838
+ function Pt(n) {
2839
+ const e = ["^XA", Vt(n)];
2840
+ for (const t of n.blocks)
2841
+ e.push(Dt(t));
2842
+ return e.push("^XZ"), e.join(`
2843
+ `);
2844
+ }
2845
+ function Vt(n) {
2846
+ const t = [
2847
+ `~TA${String(n.tearOffAdjustment).padStart(3, "0")}`,
2848
+ `~JS${n.backfeedActions}`,
2849
+ `^MN${n.media},${n.mediaOffset}`,
2850
+ `^MT${n.thermalMediaType}`,
2851
+ `^PO${n.printOrientation}`,
2852
+ `^PM${n.mirror}`,
2853
+ `^LH${n.labelHomeX},${n.labelHomeY}`
2854
+ ];
2855
+ return n.printDensityAdjustment !== void 0 && t.push(`^JM${n.printDensityAdjustment}`), t.push(
2856
+ `^PR${n.printSpeed},${n.slewSpeed},${n.backfeedSpeed}`,
2857
+ `~SD${n.darkness}`,
2858
+ `^LR${n.reverse}`,
2859
+ `^MM${n.postPrintMode},${n.prepeel}`,
2860
+ `^PW${n.printWidth}`,
2861
+ `^LL${n.labelLength},${n.allMedia}`
2862
+ ), t.join(`
2863
+ `);
2864
+ }
2865
+ function Dt(n) {
2866
+ switch (n.type) {
2867
+ case "field":
2868
+ return Bt(n);
2869
+ case "barcode":
2870
+ return qt(n);
2871
+ case "qrcode":
2872
+ return Ht(n);
2873
+ default: {
2874
+ const e = n;
2875
+ throw new Error(`Unsupported block type: ${e.type}`);
2876
+ }
2877
+ }
2878
+ }
2879
+ function Bt(n) {
2880
+ const e = n.fontOrientation;
2881
+ let t = `^A${n.font}${e},${n.fontHeight}`;
2882
+ n.fontWidth !== void 0 && (t += `,${n.fontWidth}`);
2883
+ const r = `^FB${n.maxWidth},${n.maxLines},${n.lineSpacing},${n.alignment},${n.hangingIndent}`, s = Wt(n);
2884
+ return `^FT${n.x},${n.y}${t}${r}^FD${s}^FS`;
2885
+ }
2886
+ function Wt(n) {
2887
+ if (n.verticalAlignment !== Ze.End)
2888
+ return n.data;
2889
+ const e = zt(n), t = Math.max(0, n.maxLines - e);
2890
+ return "\\&".repeat(t) + n.data;
2891
+ }
2892
+ function zt(n) {
2893
+ const e = n.data.split("\\&");
2894
+ return n.wordWidths ? Ft(e, n.wordWidths, n.maxWidth) : Ut(e, n.maxWidth, n.fontWidth ?? n.fontHeight);
2895
+ }
2896
+ function Ft(n, e, t) {
2897
+ const r = /* @__PURE__ */ new Map();
2898
+ for (const a of e)
2899
+ r.set(a.word, a);
2900
+ let s = 0;
2901
+ for (const a of n) {
2902
+ if (a.length === 0) {
2903
+ s += 1;
2904
+ continue;
2905
+ }
2906
+ const i = a.split(" ");
2907
+ let o = 0, h = 1;
2908
+ for (let f = 0; f < i.length; f++) {
2909
+ const y = r.get(i[f]), C = y?.width ?? 0, ne = y?.spaceWidth ?? 0, me = o > 0 ? ne + C : C;
2910
+ o > 0 && o + me > t ? (h++, o = C) : o += me;
2911
+ }
2912
+ s += h;
2913
+ }
2914
+ return s;
2915
+ }
2916
+ function Ut(n, e, t) {
2917
+ const r = Math.floor(e / t);
2918
+ if (r <= 0)
2919
+ return n.length;
2920
+ let s = 0;
2921
+ for (const a of n)
2922
+ s += Math.max(1, Math.ceil(a.length / r));
2923
+ return s;
2924
+ }
2925
+ function qt(n) {
2926
+ const e = `^BY${n.barWidth}`, t = `^BC${n.orientation},${n.height},${n.line},${n.lineAbove},${n.checkDigit},N`;
2927
+ return `^FT${n.x},${n.y}${e}${t}^FD>;${n.data}^FS`;
2928
+ }
2929
+ function Ht(n) {
2930
+ const e = `^BQ${n.orientation},${n.model},${n.magnification},${n.errorCorrection},${n.mask}`;
2931
+ return `^FT${n.x},${n.y}${e}^FDQA,${n.data}^FS`;
2932
+ }
2933
+ export {
2934
+ St as AllMediaMode,
2935
+ it as BackfeedAction,
2936
+ Ct as FontOrientation,
2937
+ dt as MediaType,
2938
+ mt as MirrorMode,
2939
+ xt as PostPrintMode,
2940
+ wt as PrepeelMode,
2941
+ gt as PrintDensityAdjustment,
2942
+ ft as PrintOrientation,
2943
+ Ot as QRCodeErrorCorrection,
2944
+ _t as ReverseMode,
2945
+ At as TextAlignment,
2946
+ ut as ThermalMediaType,
2947
+ Ze as VerticalAlignment,
2948
+ Rt as YesNo,
2949
+ Tt as allMediaModeSchema,
2950
+ Wt as applyVerticalAlignment,
2951
+ ot as backfeedActionSchema,
2952
+ je as badgeSchema,
2953
+ It as barcodeBlockSchema,
2954
+ Lt as blockSchema,
2955
+ zt as countLines,
2956
+ Et as fieldBlockSchema,
2957
+ Re as fontOrientationSchema,
2958
+ Qt as generate,
2959
+ ct as mediaTypeSchema,
2960
+ pt as mirrorModeSchema,
2961
+ kt as postPrintModeSchema,
2962
+ bt as prepeelModeSchema,
2963
+ yt as printDensityAdjustmentSchema,
2964
+ ht as printOrientationSchema,
2965
+ $t as qrCodeErrorCorrectionSchema,
2966
+ Mt as qrcodeBlockSchema,
2967
+ vt as reverseModeSchema,
2968
+ Nt as textAlignmentSchema,
2969
+ lt as thermalMediaTypeSchema,
2970
+ Yt as validateBadge,
2971
+ Jt as validateBadgeOrThrow,
2972
+ Zt as verticalAlignmentSchema,
2973
+ jt as wordWidthSchema,
2974
+ se as yesNoSchema
2975
+ };