@connectedxm/zpl-generator 0.0.4-beta.1 → 0.0.4-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +278 -271
- package/dist/src/generate.d.ts +0 -10
- package/dist/src/validate.d.ts +17 -0
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -32,25 +32,25 @@ function a(e, t, n) {
|
|
|
32
32
|
value: (c) => n?.Parent && c instanceof n.Parent ? !0 : c?._zod?.traits?.has(e)
|
|
33
33
|
}), Object.defineProperty(i, "name", { value: e }), i;
|
|
34
34
|
}
|
|
35
|
-
class
|
|
35
|
+
class F extends Error {
|
|
36
36
|
constructor() {
|
|
37
37
|
super("Encountered Promise during synchronous parse. Use .parseAsync() instead.");
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
class
|
|
40
|
+
class Le extends Error {
|
|
41
41
|
constructor(t) {
|
|
42
42
|
super(`Encountered unidirectional transform during encode: ${t}`), this.name = "ZodEncodeError";
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
-
const
|
|
46
|
-
function
|
|
47
|
-
return
|
|
45
|
+
const Je = {};
|
|
46
|
+
function C(e) {
|
|
47
|
+
return Je;
|
|
48
48
|
}
|
|
49
|
-
function
|
|
49
|
+
function Ve(e) {
|
|
50
50
|
const t = Object.values(e).filter((r) => typeof r == "number");
|
|
51
51
|
return Object.entries(e).filter(([r, o]) => t.indexOf(+r) === -1).map(([r, o]) => o);
|
|
52
52
|
}
|
|
53
|
-
function
|
|
53
|
+
function le(e, t) {
|
|
54
54
|
return typeof t == "bigint" ? t.toString() : t;
|
|
55
55
|
}
|
|
56
56
|
function ne(e) {
|
|
@@ -63,10 +63,10 @@ function ne(e) {
|
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
65
|
}
|
|
66
|
-
function
|
|
66
|
+
function de(e) {
|
|
67
67
|
return e == null;
|
|
68
68
|
}
|
|
69
|
-
function
|
|
69
|
+
function he(e) {
|
|
70
70
|
const t = e.startsWith("^") ? 1 : 0, n = e.endsWith("$") ? e.length - 1 : e.length;
|
|
71
71
|
return e.slice(t, n);
|
|
72
72
|
}
|
|
@@ -80,13 +80,13 @@ function St(e, t) {
|
|
|
80
80
|
const s = n > o ? n : o, i = Number.parseInt(e.toFixed(s).replace(".", "")), c = Number.parseInt(t.toFixed(s).replace(".", ""));
|
|
81
81
|
return i % c / 10 ** s;
|
|
82
82
|
}
|
|
83
|
-
const
|
|
83
|
+
const ye = /* @__PURE__ */ Symbol("evaluating");
|
|
84
84
|
function _(e, t, n) {
|
|
85
85
|
let r;
|
|
86
86
|
Object.defineProperty(e, t, {
|
|
87
87
|
get() {
|
|
88
|
-
if (r !==
|
|
89
|
-
return r === void 0 && (r =
|
|
88
|
+
if (r !== ye)
|
|
89
|
+
return r === void 0 && (r = ye, r = n()), r;
|
|
90
90
|
},
|
|
91
91
|
set(o) {
|
|
92
92
|
Object.defineProperty(e, t, {
|
|
@@ -97,7 +97,7 @@ function _(e, t, n) {
|
|
|
97
97
|
configurable: !0
|
|
98
98
|
});
|
|
99
99
|
}
|
|
100
|
-
function
|
|
100
|
+
function R(e, t, n) {
|
|
101
101
|
Object.defineProperty(e, t, {
|
|
102
102
|
value: n,
|
|
103
103
|
writable: !0,
|
|
@@ -113,13 +113,13 @@ function P(...e) {
|
|
|
113
113
|
}
|
|
114
114
|
return Object.defineProperties({}, t);
|
|
115
115
|
}
|
|
116
|
-
function
|
|
116
|
+
function ze(e) {
|
|
117
117
|
return JSON.stringify(e);
|
|
118
118
|
}
|
|
119
119
|
function Ot(e) {
|
|
120
120
|
return e.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, "");
|
|
121
121
|
}
|
|
122
|
-
const
|
|
122
|
+
const Be = "captureStackTrace" in Error ? Error.captureStackTrace : (...e) => {
|
|
123
123
|
};
|
|
124
124
|
function B(e) {
|
|
125
125
|
return typeof e == "object" && e !== null && !Array.isArray(e);
|
|
@@ -143,11 +143,11 @@ function W(e) {
|
|
|
143
143
|
const n = t.prototype;
|
|
144
144
|
return !(B(n) === !1 || Object.prototype.hasOwnProperty.call(n, "isPrototypeOf") === !1);
|
|
145
145
|
}
|
|
146
|
-
function
|
|
146
|
+
function We(e) {
|
|
147
147
|
return W(e) ? { ...e } : Array.isArray(e) ? [...e] : e;
|
|
148
148
|
}
|
|
149
149
|
const Tt = /* @__PURE__ */ new Set(["string", "number", "symbol"]);
|
|
150
|
-
function
|
|
150
|
+
function U(e) {
|
|
151
151
|
return e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
152
152
|
}
|
|
153
153
|
function A(e, t, n) {
|
|
@@ -189,7 +189,7 @@ function Pt(e, t) {
|
|
|
189
189
|
throw new Error(`Unrecognized key: "${c}"`);
|
|
190
190
|
t[c] && (i[c] = n.shape[c]);
|
|
191
191
|
}
|
|
192
|
-
return
|
|
192
|
+
return R(this, "shape", i), i;
|
|
193
193
|
},
|
|
194
194
|
checks: []
|
|
195
195
|
});
|
|
@@ -207,7 +207,7 @@ function At(e, t) {
|
|
|
207
207
|
throw new Error(`Unrecognized key: "${c}"`);
|
|
208
208
|
t[c] && delete i[c];
|
|
209
209
|
}
|
|
210
|
-
return
|
|
210
|
+
return R(this, "shape", i), i;
|
|
211
211
|
},
|
|
212
212
|
checks: []
|
|
213
213
|
});
|
|
@@ -226,27 +226,27 @@ function jt(e, t) {
|
|
|
226
226
|
const o = P(e._zod.def, {
|
|
227
227
|
get shape() {
|
|
228
228
|
const s = { ...e._zod.def.shape, ...t };
|
|
229
|
-
return
|
|
229
|
+
return R(this, "shape", s), s;
|
|
230
230
|
}
|
|
231
231
|
});
|
|
232
232
|
return A(e, o);
|
|
233
233
|
}
|
|
234
|
-
function
|
|
234
|
+
function Ct(e, t) {
|
|
235
235
|
if (!W(t))
|
|
236
236
|
throw new Error("Invalid input to safeExtend: expected a plain object");
|
|
237
237
|
const n = P(e._zod.def, {
|
|
238
238
|
get shape() {
|
|
239
239
|
const r = { ...e._zod.def.shape, ...t };
|
|
240
|
-
return
|
|
240
|
+
return R(this, "shape", r), r;
|
|
241
241
|
}
|
|
242
242
|
});
|
|
243
243
|
return A(e, n);
|
|
244
244
|
}
|
|
245
|
-
function
|
|
245
|
+
function xt(e, t) {
|
|
246
246
|
const n = P(e._zod.def, {
|
|
247
247
|
get shape() {
|
|
248
248
|
const r = { ...e._zod.def.shape, ...t._zod.def.shape };
|
|
249
|
-
return
|
|
249
|
+
return R(this, "shape", r), r;
|
|
250
250
|
},
|
|
251
251
|
get catchall() {
|
|
252
252
|
return t._zod.def.catchall;
|
|
@@ -278,7 +278,7 @@ function Rt(e, t, n) {
|
|
|
278
278
|
type: "optional",
|
|
279
279
|
innerType: c[l]
|
|
280
280
|
}) : c[l];
|
|
281
|
-
return
|
|
281
|
+
return R(this, "shape", u), u;
|
|
282
282
|
},
|
|
283
283
|
checks: []
|
|
284
284
|
});
|
|
@@ -303,12 +303,12 @@ function Dt(e, t, n) {
|
|
|
303
303
|
type: "nonoptional",
|
|
304
304
|
innerType: o[i]
|
|
305
305
|
});
|
|
306
|
-
return
|
|
306
|
+
return R(this, "shape", s), s;
|
|
307
307
|
}
|
|
308
308
|
});
|
|
309
309
|
return A(t, r);
|
|
310
310
|
}
|
|
311
|
-
function
|
|
311
|
+
function D(e, t = 0) {
|
|
312
312
|
if (e.aborted === !0)
|
|
313
313
|
return !0;
|
|
314
314
|
for (let n = t; n < e.issues.length; n++)
|
|
@@ -316,7 +316,7 @@ function R(e, t = 0) {
|
|
|
316
316
|
return !0;
|
|
317
317
|
return !1;
|
|
318
318
|
}
|
|
319
|
-
function
|
|
319
|
+
function Ye(e, t) {
|
|
320
320
|
return t.map((n) => {
|
|
321
321
|
var r;
|
|
322
322
|
return (r = n).path ?? (r.path = []), n.path.unshift(e), n;
|
|
@@ -333,7 +333,7 @@ function x(e, t, n) {
|
|
|
333
333
|
}
|
|
334
334
|
return delete r.inst, delete r.continue, t?.reportInput || delete r.input, r;
|
|
335
335
|
}
|
|
336
|
-
function
|
|
336
|
+
function me(e) {
|
|
337
337
|
return Array.isArray(e) ? "array" : typeof e == "string" ? "string" : "unknown";
|
|
338
338
|
}
|
|
339
339
|
function Y(...e) {
|
|
@@ -345,18 +345,18 @@ function Y(...e) {
|
|
|
345
345
|
inst: r
|
|
346
346
|
} : { ...t };
|
|
347
347
|
}
|
|
348
|
-
const
|
|
348
|
+
const Ke = (e, t) => {
|
|
349
349
|
e.name = "$ZodError", Object.defineProperty(e, "_zod", {
|
|
350
350
|
value: e._zod,
|
|
351
351
|
enumerable: !1
|
|
352
352
|
}), Object.defineProperty(e, "issues", {
|
|
353
353
|
value: t,
|
|
354
354
|
enumerable: !1
|
|
355
|
-
}), e.message = JSON.stringify(t,
|
|
355
|
+
}), e.message = JSON.stringify(t, le, 2), Object.defineProperty(e, "toString", {
|
|
356
356
|
value: () => e.message,
|
|
357
357
|
enumerable: !1
|
|
358
358
|
});
|
|
359
|
-
},
|
|
359
|
+
}, Ge = a("$ZodError", Ke), He = a("$ZodError", Ke, { Parent: Error });
|
|
360
360
|
function Ft(e, t = (n) => n.message) {
|
|
361
361
|
const n = {}, r = [];
|
|
362
362
|
for (const o of e.issues)
|
|
@@ -384,67 +384,67 @@ function Mt(e, t = (n) => n.message) {
|
|
|
384
384
|
};
|
|
385
385
|
return r(e), n;
|
|
386
386
|
}
|
|
387
|
-
const
|
|
387
|
+
const _e = (e) => (t, n, r, o) => {
|
|
388
388
|
const s = r ? Object.assign(r, { async: !1 }) : { async: !1 }, i = t._zod.run({ value: n, issues: [] }, s);
|
|
389
389
|
if (i instanceof Promise)
|
|
390
|
-
throw new
|
|
390
|
+
throw new F();
|
|
391
391
|
if (i.issues.length) {
|
|
392
|
-
const c = new (o?.Err ?? e)(i.issues.map((u) => x(u, s,
|
|
393
|
-
throw
|
|
392
|
+
const c = new (o?.Err ?? e)(i.issues.map((u) => x(u, s, C())));
|
|
393
|
+
throw Be(c, o?.callee), c;
|
|
394
394
|
}
|
|
395
395
|
return i.value;
|
|
396
|
-
},
|
|
396
|
+
}, ge = (e) => async (t, n, r, o) => {
|
|
397
397
|
const s = r ? Object.assign(r, { async: !0 }) : { async: !0 };
|
|
398
398
|
let i = t._zod.run({ value: n, issues: [] }, s);
|
|
399
399
|
if (i instanceof Promise && (i = await i), i.issues.length) {
|
|
400
|
-
const c = new (o?.Err ?? e)(i.issues.map((u) => x(u, s,
|
|
401
|
-
throw
|
|
400
|
+
const c = new (o?.Err ?? e)(i.issues.map((u) => x(u, s, C())));
|
|
401
|
+
throw Be(c, o?.callee), c;
|
|
402
402
|
}
|
|
403
403
|
return i.value;
|
|
404
404
|
}, re = (e) => (t, n, r) => {
|
|
405
405
|
const o = r ? { ...r, async: !1 } : { async: !1 }, s = t._zod.run({ value: n, issues: [] }, o);
|
|
406
406
|
if (s instanceof Promise)
|
|
407
|
-
throw new
|
|
407
|
+
throw new F();
|
|
408
408
|
return s.issues.length ? {
|
|
409
409
|
success: !1,
|
|
410
|
-
error: new (e ??
|
|
410
|
+
error: new (e ?? Ge)(s.issues.map((i) => x(i, o, C())))
|
|
411
411
|
} : { success: !0, data: s.value };
|
|
412
|
-
}, Ut = /* @__PURE__ */ re(
|
|
412
|
+
}, Ut = /* @__PURE__ */ re(He), oe = (e) => async (t, n, r) => {
|
|
413
413
|
const o = r ? Object.assign(r, { async: !0 }) : { async: !0 };
|
|
414
414
|
let s = t._zod.run({ value: n, issues: [] }, o);
|
|
415
415
|
return s instanceof Promise && (s = await s), s.issues.length ? {
|
|
416
416
|
success: !1,
|
|
417
|
-
error: new e(s.issues.map((i) => x(i, o,
|
|
417
|
+
error: new e(s.issues.map((i) => x(i, o, C())))
|
|
418
418
|
} : { success: !0, data: s.value };
|
|
419
|
-
}, Lt = /* @__PURE__ */ oe(
|
|
419
|
+
}, Lt = /* @__PURE__ */ oe(He), Jt = (e) => (t, n, r) => {
|
|
420
420
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
421
|
-
return
|
|
422
|
-
}, Vt = (e) => (t, n, r) =>
|
|
421
|
+
return _e(e)(t, n, o);
|
|
422
|
+
}, Vt = (e) => (t, n, r) => _e(e)(t, n, r), Bt = (e) => async (t, n, r) => {
|
|
423
423
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
424
|
-
return
|
|
425
|
-
}, Wt = (e) => async (t, n, r) =>
|
|
424
|
+
return ge(e)(t, n, o);
|
|
425
|
+
}, Wt = (e) => async (t, n, r) => ge(e)(t, n, r), Yt = (e) => (t, n, r) => {
|
|
426
426
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
427
427
|
return re(e)(t, n, o);
|
|
428
428
|
}, Kt = (e) => (t, n, r) => re(e)(t, n, r), Gt = (e) => async (t, n, r) => {
|
|
429
429
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
430
430
|
return oe(e)(t, n, o);
|
|
431
|
-
}, Ht = (e) => async (t, n, r) => oe(e)(t, n, r), qt = /^[cC][^\s-]{8,}$/, Xt = /^[0-9a-z]+$/, Qt = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, en = /^[0-9a-vA-V]{20}$/, tn = /^[A-Za-z0-9]{27}$/, nn = /^[a-zA-Z0-9_-]{21}$/, rn = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, on = /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,
|
|
431
|
+
}, Ht = (e) => async (t, n, r) => oe(e)(t, n, r), qt = /^[cC][^\s-]{8,}$/, Xt = /^[0-9a-z]+$/, Qt = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, en = /^[0-9a-vA-V]{20}$/, tn = /^[A-Za-z0-9]{27}$/, nn = /^[a-zA-Z0-9_-]{21}$/, rn = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, on = /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/, we = (e) => e ? new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`) : /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/, sn = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, cn = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
|
432
432
|
function an() {
|
|
433
433
|
return new RegExp(cn, "u");
|
|
434
434
|
}
|
|
435
|
-
const un = /^(?:(?: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])$/, ln = /^(([0-9a-fA-F]{1,4}:){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}|:))$/, fn = /^((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])\/([0-9]|[1-2][0-9]|3[0-2])$/, pn = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, dn = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,
|
|
436
|
-
function
|
|
435
|
+
const un = /^(?:(?: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])$/, ln = /^(([0-9a-fA-F]{1,4}:){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}|:))$/, fn = /^((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])\/([0-9]|[1-2][0-9]|3[0-2])$/, pn = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, dn = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/, qe = /^[A-Za-z0-9_-]*$/, hn = /^\+[1-9]\d{6,14}$/, Xe = "(?:(?:\\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])))", mn = /* @__PURE__ */ new RegExp(`^${Xe}$`);
|
|
436
|
+
function Qe(e) {
|
|
437
437
|
const t = "(?:[01]\\d|2[0-3]):[0-5]\\d";
|
|
438
438
|
return typeof e.precision == "number" ? e.precision === -1 ? `${t}` : e.precision === 0 ? `${t}:[0-5]\\d` : `${t}:[0-5]\\d\\.\\d{${e.precision}}` : `${t}(?::[0-5]\\d(?:\\.\\d+)?)?`;
|
|
439
439
|
}
|
|
440
440
|
function _n(e) {
|
|
441
|
-
return new RegExp(`^${
|
|
441
|
+
return new RegExp(`^${Qe(e)}$`);
|
|
442
442
|
}
|
|
443
443
|
function gn(e) {
|
|
444
|
-
const t =
|
|
444
|
+
const t = Qe({ precision: e.precision }), n = ["Z"];
|
|
445
445
|
e.local && n.push(""), e.offset && n.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");
|
|
446
446
|
const r = `${t}(?:${n.join("|")})`;
|
|
447
|
-
return new RegExp(`^${
|
|
447
|
+
return new RegExp(`^${Xe}T(?:${r})$`);
|
|
448
448
|
}
|
|
449
449
|
const vn = (e) => {
|
|
450
450
|
const t = e ? `[\\s\\S]{${e?.minimum ?? 0},${e?.maximum ?? ""}}` : "[\\s\\S]*";
|
|
@@ -452,13 +452,13 @@ const vn = (e) => {
|
|
|
452
452
|
}, bn = /^-?\d+$/, yn = /^-?\d+(?:\.\d+)?$/, zn = /^(?:true|false)$/i, wn = /^[^A-Z]*$/, $n = /^[^a-z]*$/, E = /* @__PURE__ */ a("$ZodCheck", (e, t) => {
|
|
453
453
|
var n;
|
|
454
454
|
e._zod ?? (e._zod = {}), e._zod.def = t, (n = e._zod).onattach ?? (n.onattach = []);
|
|
455
|
-
}),
|
|
455
|
+
}), et = {
|
|
456
456
|
number: "number",
|
|
457
457
|
bigint: "bigint",
|
|
458
458
|
object: "date"
|
|
459
|
-
},
|
|
459
|
+
}, tt = /* @__PURE__ */ a("$ZodCheckLessThan", (e, t) => {
|
|
460
460
|
E.init(e, t);
|
|
461
|
-
const n =
|
|
461
|
+
const n = et[typeof t.value];
|
|
462
462
|
e._zod.onattach.push((r) => {
|
|
463
463
|
const o = r._zod.bag, s = (t.inclusive ? o.maximum : o.exclusiveMaximum) ?? Number.POSITIVE_INFINITY;
|
|
464
464
|
t.value < s && (t.inclusive ? o.maximum = t.value : o.exclusiveMaximum = t.value);
|
|
@@ -473,9 +473,9 @@ const vn = (e) => {
|
|
|
473
473
|
continue: !t.abort
|
|
474
474
|
});
|
|
475
475
|
};
|
|
476
|
-
}),
|
|
476
|
+
}), nt = /* @__PURE__ */ a("$ZodCheckGreaterThan", (e, t) => {
|
|
477
477
|
E.init(e, t);
|
|
478
|
-
const n =
|
|
478
|
+
const n = et[typeof t.value];
|
|
479
479
|
e._zod.onattach.push((r) => {
|
|
480
480
|
const o = r._zod.bag, s = (t.inclusive ? o.minimum : o.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY;
|
|
481
481
|
t.value > s && (t.inclusive ? o.minimum = t.value : o.exclusiveMinimum = t.value);
|
|
@@ -571,7 +571,7 @@ const vn = (e) => {
|
|
|
571
571
|
var n;
|
|
572
572
|
E.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
573
573
|
const o = r.value;
|
|
574
|
-
return !
|
|
574
|
+
return !de(o) && o.length !== void 0;
|
|
575
575
|
}), e._zod.onattach.push((r) => {
|
|
576
576
|
const o = r._zod.bag.maximum ?? Number.POSITIVE_INFINITY;
|
|
577
577
|
t.maximum < o && (r._zod.bag.maximum = t.maximum);
|
|
@@ -579,7 +579,7 @@ const vn = (e) => {
|
|
|
579
579
|
const o = r.value;
|
|
580
580
|
if (o.length <= t.maximum)
|
|
581
581
|
return;
|
|
582
|
-
const i =
|
|
582
|
+
const i = me(o);
|
|
583
583
|
r.issues.push({
|
|
584
584
|
origin: i,
|
|
585
585
|
code: "too_big",
|
|
@@ -594,7 +594,7 @@ const vn = (e) => {
|
|
|
594
594
|
var n;
|
|
595
595
|
E.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
596
596
|
const o = r.value;
|
|
597
|
-
return !
|
|
597
|
+
return !de(o) && o.length !== void 0;
|
|
598
598
|
}), e._zod.onattach.push((r) => {
|
|
599
599
|
const o = r._zod.bag.minimum ?? Number.NEGATIVE_INFINITY;
|
|
600
600
|
t.minimum > o && (r._zod.bag.minimum = t.minimum);
|
|
@@ -602,7 +602,7 @@ const vn = (e) => {
|
|
|
602
602
|
const o = r.value;
|
|
603
603
|
if (o.length >= t.minimum)
|
|
604
604
|
return;
|
|
605
|
-
const i =
|
|
605
|
+
const i = me(o);
|
|
606
606
|
r.issues.push({
|
|
607
607
|
origin: i,
|
|
608
608
|
code: "too_small",
|
|
@@ -617,7 +617,7 @@ const vn = (e) => {
|
|
|
617
617
|
var n;
|
|
618
618
|
E.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
619
619
|
const o = r.value;
|
|
620
|
-
return !
|
|
620
|
+
return !de(o) && o.length !== void 0;
|
|
621
621
|
}), e._zod.onattach.push((r) => {
|
|
622
622
|
const o = r._zod.bag;
|
|
623
623
|
o.minimum = t.length, o.maximum = t.length, o.length = t.length;
|
|
@@ -625,7 +625,7 @@ const vn = (e) => {
|
|
|
625
625
|
const o = r.value, s = o.length;
|
|
626
626
|
if (s === t.length)
|
|
627
627
|
return;
|
|
628
|
-
const i =
|
|
628
|
+
const i = me(o), c = s > t.length;
|
|
629
629
|
r.issues.push({
|
|
630
630
|
origin: i,
|
|
631
631
|
...c ? { code: "too_big", maximum: t.length } : { code: "too_small", minimum: t.length },
|
|
@@ -671,7 +671,7 @@ const vn = (e) => {
|
|
|
671
671
|
t.pattern ?? (t.pattern = $n), ie.init(e, t);
|
|
672
672
|
}), Pn = /* @__PURE__ */ a("$ZodCheckIncludes", (e, t) => {
|
|
673
673
|
E.init(e, t);
|
|
674
|
-
const n =
|
|
674
|
+
const n = U(t.includes), r = new RegExp(typeof t.position == "number" ? `^.{${t.position}}${n}` : n);
|
|
675
675
|
t.pattern = r, e._zod.onattach.push((o) => {
|
|
676
676
|
const s = o._zod.bag;
|
|
677
677
|
s.patterns ?? (s.patterns = /* @__PURE__ */ new Set()), s.patterns.add(r);
|
|
@@ -688,7 +688,7 @@ const vn = (e) => {
|
|
|
688
688
|
};
|
|
689
689
|
}), An = /* @__PURE__ */ a("$ZodCheckStartsWith", (e, t) => {
|
|
690
690
|
E.init(e, t);
|
|
691
|
-
const n = new RegExp(`^${
|
|
691
|
+
const n = new RegExp(`^${U(t.prefix)}.*`);
|
|
692
692
|
t.pattern ?? (t.pattern = n), e._zod.onattach.push((r) => {
|
|
693
693
|
const o = r._zod.bag;
|
|
694
694
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(n);
|
|
@@ -705,7 +705,7 @@ const vn = (e) => {
|
|
|
705
705
|
};
|
|
706
706
|
}), jn = /* @__PURE__ */ a("$ZodCheckEndsWith", (e, t) => {
|
|
707
707
|
E.init(e, t);
|
|
708
|
-
const n = new RegExp(`.*${
|
|
708
|
+
const n = new RegExp(`.*${U(t.suffix)}$`);
|
|
709
709
|
t.pattern ?? (t.pattern = n), e._zod.onattach.push((r) => {
|
|
710
710
|
const o = r._zod.bag;
|
|
711
711
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(n);
|
|
@@ -720,12 +720,12 @@ const vn = (e) => {
|
|
|
720
720
|
continue: !t.abort
|
|
721
721
|
});
|
|
722
722
|
};
|
|
723
|
-
}),
|
|
723
|
+
}), Cn = /* @__PURE__ */ a("$ZodCheckOverwrite", (e, t) => {
|
|
724
724
|
E.init(e, t), e._zod.check = (n) => {
|
|
725
725
|
n.value = t.tx(n.value);
|
|
726
726
|
};
|
|
727
727
|
});
|
|
728
|
-
class
|
|
728
|
+
class xn {
|
|
729
729
|
constructor(t = []) {
|
|
730
730
|
this.content = [], this.indent = 0, this && (this.args = t);
|
|
731
731
|
}
|
|
@@ -766,7 +766,7 @@ const Rn = {
|
|
|
766
766
|
});
|
|
767
767
|
else {
|
|
768
768
|
const o = (i, c, u) => {
|
|
769
|
-
let l =
|
|
769
|
+
let l = D(i), f;
|
|
770
770
|
for (const m of c) {
|
|
771
771
|
if (m._zod.def.when) {
|
|
772
772
|
if (!m._zod.def.when(i))
|
|
@@ -775,25 +775,25 @@ const Rn = {
|
|
|
775
775
|
continue;
|
|
776
776
|
const d = i.issues.length, h = m._zod.check(i);
|
|
777
777
|
if (h instanceof Promise && u?.async === !1)
|
|
778
|
-
throw new
|
|
778
|
+
throw new F();
|
|
779
779
|
if (f || h instanceof Promise)
|
|
780
780
|
f = (f ?? Promise.resolve()).then(async () => {
|
|
781
|
-
await h, i.issues.length !== d && (l || (l =
|
|
781
|
+
await h, i.issues.length !== d && (l || (l = D(i, d)));
|
|
782
782
|
});
|
|
783
783
|
else {
|
|
784
784
|
if (i.issues.length === d)
|
|
785
785
|
continue;
|
|
786
|
-
l || (l =
|
|
786
|
+
l || (l = D(i, d));
|
|
787
787
|
}
|
|
788
788
|
}
|
|
789
789
|
return f ? f.then(() => i) : i;
|
|
790
790
|
}, s = (i, c, u) => {
|
|
791
|
-
if (
|
|
791
|
+
if (D(i))
|
|
792
792
|
return i.aborted = !0, i;
|
|
793
793
|
const l = o(c, r, u);
|
|
794
794
|
if (l instanceof Promise) {
|
|
795
795
|
if (u.async === !1)
|
|
796
|
-
throw new
|
|
796
|
+
throw new F();
|
|
797
797
|
return l.then((f) => e._zod.parse(f, u));
|
|
798
798
|
}
|
|
799
799
|
return e._zod.parse(l, u);
|
|
@@ -808,7 +808,7 @@ const Rn = {
|
|
|
808
808
|
const u = e._zod.parse(i, c);
|
|
809
809
|
if (u instanceof Promise) {
|
|
810
810
|
if (c.async === !1)
|
|
811
|
-
throw new
|
|
811
|
+
throw new F();
|
|
812
812
|
return u.then((l) => o(l, r, c));
|
|
813
813
|
}
|
|
814
814
|
return o(u, r, c);
|
|
@@ -826,7 +826,7 @@ const Rn = {
|
|
|
826
826
|
vendor: "zod",
|
|
827
827
|
version: 1
|
|
828
828
|
}));
|
|
829
|
-
}),
|
|
829
|
+
}), ve = /* @__PURE__ */ a("$ZodString", (e, t) => {
|
|
830
830
|
y.init(e, t), e._zod.pattern = [...e?._zod.bag?.patterns ?? []].pop() ?? vn(e._zod.bag), e._zod.parse = (n, r) => {
|
|
831
831
|
if (t.coerce)
|
|
832
832
|
try {
|
|
@@ -841,7 +841,7 @@ const Rn = {
|
|
|
841
841
|
}), n;
|
|
842
842
|
};
|
|
843
843
|
}), v = /* @__PURE__ */ a("$ZodStringFormat", (e, t) => {
|
|
844
|
-
ie.init(e, t),
|
|
844
|
+
ie.init(e, t), ve.init(e, t);
|
|
845
845
|
}), Dn = /* @__PURE__ */ a("$ZodGUID", (e, t) => {
|
|
846
846
|
t.pattern ?? (t.pattern = on), v.init(e, t);
|
|
847
847
|
}), Fn = /* @__PURE__ */ a("$ZodUUID", (e, t) => {
|
|
@@ -858,9 +858,9 @@ const Rn = {
|
|
|
858
858
|
}[t.version];
|
|
859
859
|
if (r === void 0)
|
|
860
860
|
throw new Error(`Invalid UUID version: "${t.version}"`);
|
|
861
|
-
t.pattern ?? (t.pattern =
|
|
861
|
+
t.pattern ?? (t.pattern = we(r));
|
|
862
862
|
} else
|
|
863
|
-
t.pattern ?? (t.pattern =
|
|
863
|
+
t.pattern ?? (t.pattern = we());
|
|
864
864
|
v.init(e, t);
|
|
865
865
|
}), Mn = /* @__PURE__ */ a("$ZodEmail", (e, t) => {
|
|
866
866
|
t.pattern ?? (t.pattern = sn), v.init(e, t);
|
|
@@ -962,7 +962,7 @@ const Rn = {
|
|
|
962
962
|
}
|
|
963
963
|
};
|
|
964
964
|
});
|
|
965
|
-
function
|
|
965
|
+
function rt(e) {
|
|
966
966
|
if (e === "")
|
|
967
967
|
return !0;
|
|
968
968
|
if (e.length % 4 !== 0)
|
|
@@ -975,7 +975,7 @@ function nt(e) {
|
|
|
975
975
|
}
|
|
976
976
|
const rr = /* @__PURE__ */ a("$ZodBase64", (e, t) => {
|
|
977
977
|
t.pattern ?? (t.pattern = dn), v.init(e, t), e._zod.bag.contentEncoding = "base64", e._zod.check = (n) => {
|
|
978
|
-
|
|
978
|
+
rt(n.value) || n.issues.push({
|
|
979
979
|
code: "invalid_format",
|
|
980
980
|
format: "base64",
|
|
981
981
|
input: n.value,
|
|
@@ -985,13 +985,13 @@ const rr = /* @__PURE__ */ a("$ZodBase64", (e, t) => {
|
|
|
985
985
|
};
|
|
986
986
|
});
|
|
987
987
|
function or(e) {
|
|
988
|
-
if (!
|
|
988
|
+
if (!qe.test(e))
|
|
989
989
|
return !1;
|
|
990
990
|
const t = e.replace(/[-_]/g, (r) => r === "-" ? "+" : "/"), n = t.padEnd(Math.ceil(t.length / 4) * 4, "=");
|
|
991
|
-
return
|
|
991
|
+
return rt(n);
|
|
992
992
|
}
|
|
993
993
|
const ir = /* @__PURE__ */ a("$ZodBase64URL", (e, t) => {
|
|
994
|
-
t.pattern ?? (t.pattern =
|
|
994
|
+
t.pattern ?? (t.pattern = qe), v.init(e, t), e._zod.bag.contentEncoding = "base64url", e._zod.check = (n) => {
|
|
995
995
|
or(n.value) || n.issues.push({
|
|
996
996
|
code: "invalid_format",
|
|
997
997
|
format: "base64url",
|
|
@@ -1027,7 +1027,7 @@ const ar = /* @__PURE__ */ a("$ZodJWT", (e, t) => {
|
|
|
1027
1027
|
continue: !t.abort
|
|
1028
1028
|
});
|
|
1029
1029
|
};
|
|
1030
|
-
}),
|
|
1030
|
+
}), ot = /* @__PURE__ */ a("$ZodNumber", (e, t) => {
|
|
1031
1031
|
y.init(e, t), e._zod.pattern = e._zod.bag.pattern ?? yn, e._zod.parse = (n, r) => {
|
|
1032
1032
|
if (t.coerce)
|
|
1033
1033
|
try {
|
|
@@ -1047,7 +1047,7 @@ const ar = /* @__PURE__ */ a("$ZodJWT", (e, t) => {
|
|
|
1047
1047
|
}), n;
|
|
1048
1048
|
};
|
|
1049
1049
|
}), ur = /* @__PURE__ */ a("$ZodNumberFormat", (e, t) => {
|
|
1050
|
-
Zn.init(e, t),
|
|
1050
|
+
Zn.init(e, t), ot.init(e, t);
|
|
1051
1051
|
}), lr = /* @__PURE__ */ a("$ZodBoolean", (e, t) => {
|
|
1052
1052
|
y.init(e, t), e._zod.pattern = zn, e._zod.parse = (n, r) => {
|
|
1053
1053
|
if (t.coerce)
|
|
@@ -1073,8 +1073,8 @@ const ar = /* @__PURE__ */ a("$ZodJWT", (e, t) => {
|
|
|
1073
1073
|
inst: e
|
|
1074
1074
|
}), n);
|
|
1075
1075
|
});
|
|
1076
|
-
function
|
|
1077
|
-
e.issues.length && t.issues.push(...
|
|
1076
|
+
function $e(e, t, n) {
|
|
1077
|
+
e.issues.length && t.issues.push(...Ye(n, e.issues)), t.value[n] = e.value;
|
|
1078
1078
|
}
|
|
1079
1079
|
const dr = /* @__PURE__ */ a("$ZodArray", (e, t) => {
|
|
1080
1080
|
y.init(e, t), e._zod.parse = (n, r) => {
|
|
@@ -1093,7 +1093,7 @@ const dr = /* @__PURE__ */ a("$ZodArray", (e, t) => {
|
|
|
1093
1093
|
value: c,
|
|
1094
1094
|
issues: []
|
|
1095
1095
|
}, r);
|
|
1096
|
-
u instanceof Promise ? s.push(u.then((l) =>
|
|
1096
|
+
u instanceof Promise ? s.push(u.then((l) => $e(l, n, i))) : $e(u, n, i);
|
|
1097
1097
|
}
|
|
1098
1098
|
return s.length ? Promise.all(s).then(() => n) : n;
|
|
1099
1099
|
};
|
|
@@ -1102,11 +1102,11 @@ function X(e, t, n, r, o) {
|
|
|
1102
1102
|
if (e.issues.length) {
|
|
1103
1103
|
if (o && !(n in r))
|
|
1104
1104
|
return;
|
|
1105
|
-
t.issues.push(...
|
|
1105
|
+
t.issues.push(...Ye(n, e.issues));
|
|
1106
1106
|
}
|
|
1107
1107
|
e.value === void 0 ? n in r && (t.value[n] = void 0) : t.value[n] = e.value;
|
|
1108
1108
|
}
|
|
1109
|
-
function
|
|
1109
|
+
function it(e) {
|
|
1110
1110
|
const t = Object.keys(e.shape);
|
|
1111
1111
|
for (const r of t)
|
|
1112
1112
|
if (!e.shape?.[r]?._zod?.traits?.has("$ZodType"))
|
|
@@ -1120,7 +1120,7 @@ function ot(e) {
|
|
|
1120
1120
|
optionalKeys: new Set(n)
|
|
1121
1121
|
};
|
|
1122
1122
|
}
|
|
1123
|
-
function
|
|
1123
|
+
function st(e, t, n, r, o, s) {
|
|
1124
1124
|
const i = [], c = o.keySet, u = o.catchall._zod, l = u.def.type, f = u.optout === "optional";
|
|
1125
1125
|
for (const m in t) {
|
|
1126
1126
|
if (c.has(m))
|
|
@@ -1151,7 +1151,7 @@ const hr = /* @__PURE__ */ a("$ZodObject", (e, t) => {
|
|
|
1151
1151
|
}
|
|
1152
1152
|
});
|
|
1153
1153
|
}
|
|
1154
|
-
const r = ne(() =>
|
|
1154
|
+
const r = ne(() => it(t));
|
|
1155
1155
|
_(e._zod, "propValues", () => {
|
|
1156
1156
|
const c = t.shape, u = {};
|
|
1157
1157
|
for (const l in c) {
|
|
@@ -1182,13 +1182,13 @@ const hr = /* @__PURE__ */ a("$ZodObject", (e, t) => {
|
|
|
1182
1182
|
const h = m[d], Z = h._zod.optout === "optional", w = h._zod.run({ value: l[d], issues: [] }, u);
|
|
1183
1183
|
w instanceof Promise ? f.push(w.then((K) => X(K, c, d, l, Z))) : X(w, c, d, l, Z);
|
|
1184
1184
|
}
|
|
1185
|
-
return s ?
|
|
1185
|
+
return s ? st(f, l, c, u, r.value, e) : f.length ? Promise.all(f).then(() => c) : c;
|
|
1186
1186
|
};
|
|
1187
1187
|
}), mr = /* @__PURE__ */ a("$ZodObjectJIT", (e, t) => {
|
|
1188
1188
|
hr.init(e, t);
|
|
1189
|
-
const n = e._zod.parse, r = ne(() =>
|
|
1190
|
-
const h = new
|
|
1191
|
-
const O =
|
|
1189
|
+
const n = e._zod.parse, r = ne(() => it(t)), o = (d) => {
|
|
1190
|
+
const h = new xn(["shape", "payload", "ctx"]), Z = r.value, w = (N) => {
|
|
1191
|
+
const O = ze(N);
|
|
1192
1192
|
return `shape[${O}]._zod.run({ value: input[${O}], issues: [] }, ctx)`;
|
|
1193
1193
|
};
|
|
1194
1194
|
h.write("const input = payload.value;");
|
|
@@ -1198,7 +1198,7 @@ const hr = /* @__PURE__ */ a("$ZodObject", (e, t) => {
|
|
|
1198
1198
|
K[N] = `key_${$t++}`;
|
|
1199
1199
|
h.write("const newResult = {};");
|
|
1200
1200
|
for (const N of Z.keys) {
|
|
1201
|
-
const O = K[N], I =
|
|
1201
|
+
const O = K[N], I = ze(N), Zt = d[N]?._zod?.optout === "optional";
|
|
1202
1202
|
h.write(`const ${O} = ${w(N)};`), Zt ? h.write(`
|
|
1203
1203
|
if (${O}.issues.length) {
|
|
1204
1204
|
if (${I} in input) {
|
|
@@ -1240,12 +1240,12 @@ const hr = /* @__PURE__ */ a("$ZodObject", (e, t) => {
|
|
|
1240
1240
|
return (N, O) => kt(d, N, O);
|
|
1241
1241
|
};
|
|
1242
1242
|
let s;
|
|
1243
|
-
const i = B, c = !
|
|
1243
|
+
const i = B, c = !Je.jitless, l = c && Et.value, f = t.catchall;
|
|
1244
1244
|
let m;
|
|
1245
1245
|
e._zod.parse = (d, h) => {
|
|
1246
1246
|
m ?? (m = r.value);
|
|
1247
1247
|
const Z = d.value;
|
|
1248
|
-
return i(Z) ? c && l && h?.async === !1 && h.jitless !== !0 ? (s || (s = o(t.shape)), d = s(d, h), f ?
|
|
1248
|
+
return i(Z) ? c && l && h?.async === !1 && h.jitless !== !0 ? (s || (s = o(t.shape)), d = s(d, h), f ? st([], Z, d, h, m, e) : d) : n(d, h) : (d.issues.push({
|
|
1249
1249
|
expected: "object",
|
|
1250
1250
|
code: "invalid_type",
|
|
1251
1251
|
input: Z,
|
|
@@ -1253,26 +1253,26 @@ const hr = /* @__PURE__ */ a("$ZodObject", (e, t) => {
|
|
|
1253
1253
|
}), d);
|
|
1254
1254
|
};
|
|
1255
1255
|
});
|
|
1256
|
-
function
|
|
1256
|
+
function ke(e, t, n, r) {
|
|
1257
1257
|
for (const s of e)
|
|
1258
1258
|
if (s.issues.length === 0)
|
|
1259
1259
|
return t.value = s.value, t;
|
|
1260
|
-
const o = e.filter((s) => !
|
|
1260
|
+
const o = e.filter((s) => !D(s));
|
|
1261
1261
|
return o.length === 1 ? (t.value = o[0].value, o[0]) : (t.issues.push({
|
|
1262
1262
|
code: "invalid_union",
|
|
1263
1263
|
input: t.value,
|
|
1264
1264
|
inst: n,
|
|
1265
|
-
errors: e.map((s) => s.issues.map((i) => x(i, r,
|
|
1265
|
+
errors: e.map((s) => s.issues.map((i) => x(i, r, C())))
|
|
1266
1266
|
}), t);
|
|
1267
1267
|
}
|
|
1268
|
-
const
|
|
1268
|
+
const ct = /* @__PURE__ */ a("$ZodUnion", (e, t) => {
|
|
1269
1269
|
y.init(e, t), _(e._zod, "optin", () => t.options.some((o) => o._zod.optin === "optional") ? "optional" : void 0), _(e._zod, "optout", () => t.options.some((o) => o._zod.optout === "optional") ? "optional" : void 0), _(e._zod, "values", () => {
|
|
1270
1270
|
if (t.options.every((o) => o._zod.values))
|
|
1271
1271
|
return new Set(t.options.flatMap((o) => Array.from(o._zod.values)));
|
|
1272
1272
|
}), _(e._zod, "pattern", () => {
|
|
1273
1273
|
if (t.options.every((o) => o._zod.pattern)) {
|
|
1274
1274
|
const o = t.options.map((s) => s._zod.pattern);
|
|
1275
|
-
return new RegExp(`^(${o.map((s) =>
|
|
1275
|
+
return new RegExp(`^(${o.map((s) => he(s.source)).join("|")})$`);
|
|
1276
1276
|
}
|
|
1277
1277
|
});
|
|
1278
1278
|
const n = t.options.length === 1, r = t.options[0]._zod.run;
|
|
@@ -1294,10 +1294,10 @@ const st = /* @__PURE__ */ a("$ZodUnion", (e, t) => {
|
|
|
1294
1294
|
c.push(l);
|
|
1295
1295
|
}
|
|
1296
1296
|
}
|
|
1297
|
-
return i ? Promise.all(c).then((u) =>
|
|
1297
|
+
return i ? Promise.all(c).then((u) => ke(u, o, e, s)) : ke(c, o, e, s);
|
|
1298
1298
|
};
|
|
1299
1299
|
}), _r = /* @__PURE__ */ a("$ZodDiscriminatedUnion", (e, t) => {
|
|
1300
|
-
t.inclusive = !1,
|
|
1300
|
+
t.inclusive = !1, ct.init(e, t);
|
|
1301
1301
|
const n = e._zod.parse;
|
|
1302
1302
|
_(e._zod, "propValues", () => {
|
|
1303
1303
|
const o = {};
|
|
@@ -1350,10 +1350,10 @@ const st = /* @__PURE__ */ a("$ZodUnion", (e, t) => {
|
|
|
1350
1350
|
}), gr = /* @__PURE__ */ a("$ZodIntersection", (e, t) => {
|
|
1351
1351
|
y.init(e, t), e._zod.parse = (n, r) => {
|
|
1352
1352
|
const o = n.value, s = t.left._zod.run({ value: o, issues: [] }, r), i = t.right._zod.run({ value: o, issues: [] }, r);
|
|
1353
|
-
return s instanceof Promise || i instanceof Promise ? Promise.all([s, i]).then(([u, l]) =>
|
|
1353
|
+
return s instanceof Promise || i instanceof Promise ? Promise.all([s, i]).then(([u, l]) => Ze(n, u, l)) : Ze(n, s, i);
|
|
1354
1354
|
};
|
|
1355
1355
|
});
|
|
1356
|
-
function
|
|
1356
|
+
function fe(e, t) {
|
|
1357
1357
|
if (e === t)
|
|
1358
1358
|
return { valid: !0, data: e };
|
|
1359
1359
|
if (e instanceof Date && t instanceof Date && +e == +t)
|
|
@@ -1361,7 +1361,7 @@ function le(e, t) {
|
|
|
1361
1361
|
if (W(e) && W(t)) {
|
|
1362
1362
|
const n = Object.keys(t), r = Object.keys(e).filter((s) => n.indexOf(s) !== -1), o = { ...e, ...t };
|
|
1363
1363
|
for (const s of r) {
|
|
1364
|
-
const i =
|
|
1364
|
+
const i = fe(e[s], t[s]);
|
|
1365
1365
|
if (!i.valid)
|
|
1366
1366
|
return {
|
|
1367
1367
|
valid: !1,
|
|
@@ -1376,7 +1376,7 @@ function le(e, t) {
|
|
|
1376
1376
|
return { valid: !1, mergeErrorPath: [] };
|
|
1377
1377
|
const n = [];
|
|
1378
1378
|
for (let r = 0; r < e.length; r++) {
|
|
1379
|
-
const o = e[r], s = t[r], i =
|
|
1379
|
+
const o = e[r], s = t[r], i = fe(o, s);
|
|
1380
1380
|
if (!i.valid)
|
|
1381
1381
|
return {
|
|
1382
1382
|
valid: !1,
|
|
@@ -1388,7 +1388,7 @@ function le(e, t) {
|
|
|
1388
1388
|
}
|
|
1389
1389
|
return { valid: !1, mergeErrorPath: [] };
|
|
1390
1390
|
}
|
|
1391
|
-
function
|
|
1391
|
+
function Ze(e, t, n) {
|
|
1392
1392
|
const r = /* @__PURE__ */ new Map();
|
|
1393
1393
|
let o;
|
|
1394
1394
|
for (const c of t.issues)
|
|
@@ -1405,17 +1405,17 @@ function ke(e, t, n) {
|
|
|
1405
1405
|
else
|
|
1406
1406
|
e.issues.push(c);
|
|
1407
1407
|
const s = [...r].filter(([, c]) => c.l && c.r).map(([c]) => c);
|
|
1408
|
-
if (s.length && o && e.issues.push({ ...o, keys: s }),
|
|
1408
|
+
if (s.length && o && e.issues.push({ ...o, keys: s }), D(e))
|
|
1409
1409
|
return e;
|
|
1410
|
-
const i =
|
|
1410
|
+
const i = fe(t.value, n.value);
|
|
1411
1411
|
if (!i.valid)
|
|
1412
1412
|
throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(i.mergeErrorPath)}`);
|
|
1413
1413
|
return e.value = i.data, e;
|
|
1414
1414
|
}
|
|
1415
1415
|
const vr = /* @__PURE__ */ a("$ZodEnum", (e, t) => {
|
|
1416
1416
|
y.init(e, t);
|
|
1417
|
-
const n =
|
|
1418
|
-
e._zod.values = r, e._zod.pattern = new RegExp(`^(${n.filter((o) => Tt.has(typeof o)).map((o) => typeof o == "string" ?
|
|
1417
|
+
const n = Ve(t.entries), r = new Set(n);
|
|
1418
|
+
e._zod.values = r, e._zod.pattern = new RegExp(`^(${n.filter((o) => Tt.has(typeof o)).map((o) => typeof o == "string" ? U(o) : o.toString()).join("|")})$`), e._zod.parse = (o, s) => {
|
|
1419
1419
|
const i = o.value;
|
|
1420
1420
|
return r.has(i) || o.issues.push({
|
|
1421
1421
|
code: "invalid_value",
|
|
@@ -1428,7 +1428,7 @@ const vr = /* @__PURE__ */ a("$ZodEnum", (e, t) => {
|
|
|
1428
1428
|
if (y.init(e, t), t.values.length === 0)
|
|
1429
1429
|
throw new Error("Cannot create literal schema with no valid values");
|
|
1430
1430
|
const n = new Set(t.values);
|
|
1431
|
-
e._zod.values = n, e._zod.pattern = new RegExp(`^(${t.values.map((r) => typeof r == "string" ?
|
|
1431
|
+
e._zod.values = n, e._zod.pattern = new RegExp(`^(${t.values.map((r) => typeof r == "string" ? U(r) : r ? U(r.toString()) : String(r)).join("|")})$`), e._zod.parse = (r, o) => {
|
|
1432
1432
|
const s = r.value;
|
|
1433
1433
|
return n.has(s) || r.issues.push({
|
|
1434
1434
|
code: "invalid_value",
|
|
@@ -1440,35 +1440,35 @@ const vr = /* @__PURE__ */ a("$ZodEnum", (e, t) => {
|
|
|
1440
1440
|
}), yr = /* @__PURE__ */ a("$ZodTransform", (e, t) => {
|
|
1441
1441
|
y.init(e, t), e._zod.parse = (n, r) => {
|
|
1442
1442
|
if (r.direction === "backward")
|
|
1443
|
-
throw new
|
|
1443
|
+
throw new Le(e.constructor.name);
|
|
1444
1444
|
const o = t.transform(n.value, n);
|
|
1445
1445
|
if (r.async)
|
|
1446
1446
|
return (o instanceof Promise ? o : Promise.resolve(o)).then((i) => (n.value = i, n));
|
|
1447
1447
|
if (o instanceof Promise)
|
|
1448
|
-
throw new
|
|
1448
|
+
throw new F();
|
|
1449
1449
|
return n.value = o, n;
|
|
1450
1450
|
};
|
|
1451
1451
|
});
|
|
1452
|
-
function
|
|
1452
|
+
function Se(e, t) {
|
|
1453
1453
|
return e.issues.length && t === void 0 ? { issues: [], value: void 0 } : e;
|
|
1454
1454
|
}
|
|
1455
|
-
const
|
|
1455
|
+
const at = /* @__PURE__ */ a("$ZodOptional", (e, t) => {
|
|
1456
1456
|
y.init(e, t), e._zod.optin = "optional", e._zod.optout = "optional", _(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, void 0]) : void 0), _(e._zod, "pattern", () => {
|
|
1457
1457
|
const n = t.innerType._zod.pattern;
|
|
1458
|
-
return n ? new RegExp(`^(${
|
|
1458
|
+
return n ? new RegExp(`^(${he(n.source)})?$`) : void 0;
|
|
1459
1459
|
}), e._zod.parse = (n, r) => {
|
|
1460
1460
|
if (t.innerType._zod.optin === "optional") {
|
|
1461
1461
|
const o = t.innerType._zod.run(n, r);
|
|
1462
|
-
return o instanceof Promise ? o.then((s) =>
|
|
1462
|
+
return o instanceof Promise ? o.then((s) => Se(s, n.value)) : Se(o, n.value);
|
|
1463
1463
|
}
|
|
1464
1464
|
return n.value === void 0 ? n : t.innerType._zod.run(n, r);
|
|
1465
1465
|
};
|
|
1466
1466
|
}), zr = /* @__PURE__ */ a("$ZodExactOptional", (e, t) => {
|
|
1467
|
-
|
|
1467
|
+
at.init(e, t), _(e._zod, "values", () => t.innerType._zod.values), _(e._zod, "pattern", () => t.innerType._zod.pattern), e._zod.parse = (n, r) => t.innerType._zod.run(n, r);
|
|
1468
1468
|
}), wr = /* @__PURE__ */ a("$ZodNullable", (e, t) => {
|
|
1469
1469
|
y.init(e, t), _(e._zod, "optin", () => t.innerType._zod.optin), _(e._zod, "optout", () => t.innerType._zod.optout), _(e._zod, "pattern", () => {
|
|
1470
1470
|
const n = t.innerType._zod.pattern;
|
|
1471
|
-
return n ? new RegExp(`^(${
|
|
1471
|
+
return n ? new RegExp(`^(${he(n.source)}|null)$`) : void 0;
|
|
1472
1472
|
}), _(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, null]) : void 0), e._zod.parse = (n, r) => n.value === null ? n : t.innerType._zod.run(n, r);
|
|
1473
1473
|
}), $r = /* @__PURE__ */ a("$ZodDefault", (e, t) => {
|
|
1474
1474
|
y.init(e, t), e._zod.optin = "optional", _(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, r) => {
|
|
@@ -1477,10 +1477,10 @@ const ct = /* @__PURE__ */ a("$ZodOptional", (e, t) => {
|
|
|
1477
1477
|
if (n.value === void 0)
|
|
1478
1478
|
return n.value = t.defaultValue, n;
|
|
1479
1479
|
const o = t.innerType._zod.run(n, r);
|
|
1480
|
-
return o instanceof Promise ? o.then((s) =>
|
|
1480
|
+
return o instanceof Promise ? o.then((s) => Oe(s, t)) : Oe(o, t);
|
|
1481
1481
|
};
|
|
1482
1482
|
});
|
|
1483
|
-
function
|
|
1483
|
+
function Oe(e, t) {
|
|
1484
1484
|
return e.value === void 0 && (e.value = t.defaultValue), e;
|
|
1485
1485
|
}
|
|
1486
1486
|
const kr = /* @__PURE__ */ a("$ZodPrefault", (e, t) => {
|
|
@@ -1491,10 +1491,10 @@ const kr = /* @__PURE__ */ a("$ZodPrefault", (e, t) => {
|
|
|
1491
1491
|
return n ? new Set([...n].filter((r) => r !== void 0)) : void 0;
|
|
1492
1492
|
}), e._zod.parse = (n, r) => {
|
|
1493
1493
|
const o = t.innerType._zod.run(n, r);
|
|
1494
|
-
return o instanceof Promise ? o.then((s) =>
|
|
1494
|
+
return o instanceof Promise ? o.then((s) => Ee(s, e)) : Ee(o, e);
|
|
1495
1495
|
};
|
|
1496
1496
|
});
|
|
1497
|
-
function
|
|
1497
|
+
function Ee(e, t) {
|
|
1498
1498
|
return !e.issues.length && e.value === void 0 && e.issues.push({
|
|
1499
1499
|
code: "invalid_type",
|
|
1500
1500
|
expected: "nonoptional",
|
|
@@ -1510,13 +1510,13 @@ const Sr = /* @__PURE__ */ a("$ZodCatch", (e, t) => {
|
|
|
1510
1510
|
return o instanceof Promise ? o.then((s) => (n.value = s.value, s.issues.length && (n.value = t.catchValue({
|
|
1511
1511
|
...n,
|
|
1512
1512
|
error: {
|
|
1513
|
-
issues: s.issues.map((i) => x(i, r,
|
|
1513
|
+
issues: s.issues.map((i) => x(i, r, C()))
|
|
1514
1514
|
},
|
|
1515
1515
|
input: n.value
|
|
1516
1516
|
}), n.issues = []), n)) : (n.value = o.value, o.issues.length && (n.value = t.catchValue({
|
|
1517
1517
|
...n,
|
|
1518
1518
|
error: {
|
|
1519
|
-
issues: o.issues.map((s) => x(s, r,
|
|
1519
|
+
issues: o.issues.map((s) => x(s, r, C()))
|
|
1520
1520
|
},
|
|
1521
1521
|
input: n.value
|
|
1522
1522
|
}), n.issues = []), n);
|
|
@@ -1539,21 +1539,21 @@ const Er = /* @__PURE__ */ a("$ZodReadonly", (e, t) => {
|
|
|
1539
1539
|
if (r.direction === "backward")
|
|
1540
1540
|
return t.innerType._zod.run(n, r);
|
|
1541
1541
|
const o = t.innerType._zod.run(n, r);
|
|
1542
|
-
return o instanceof Promise ? o.then(
|
|
1542
|
+
return o instanceof Promise ? o.then(Te) : Te(o);
|
|
1543
1543
|
};
|
|
1544
1544
|
});
|
|
1545
|
-
function
|
|
1545
|
+
function Te(e) {
|
|
1546
1546
|
return e.value = Object.freeze(e.value), e;
|
|
1547
1547
|
}
|
|
1548
1548
|
const Tr = /* @__PURE__ */ a("$ZodCustom", (e, t) => {
|
|
1549
1549
|
E.init(e, t), y.init(e, t), e._zod.parse = (n, r) => n, e._zod.check = (n) => {
|
|
1550
1550
|
const r = n.value, o = t.fn(r);
|
|
1551
1551
|
if (o instanceof Promise)
|
|
1552
|
-
return o.then((s) =>
|
|
1553
|
-
|
|
1552
|
+
return o.then((s) => Ie(s, n, r, e));
|
|
1553
|
+
Ie(o, n, r, e);
|
|
1554
1554
|
};
|
|
1555
1555
|
});
|
|
1556
|
-
function
|
|
1556
|
+
function Ie(e, t, n, r) {
|
|
1557
1557
|
if (!e) {
|
|
1558
1558
|
const o = {
|
|
1559
1559
|
code: "custom",
|
|
@@ -1568,7 +1568,7 @@ function Te(e, t, n, r) {
|
|
|
1568
1568
|
r._zod.def.params && (o.params = r._zod.def.params), t.issues.push(Y(o));
|
|
1569
1569
|
}
|
|
1570
1570
|
}
|
|
1571
|
-
var
|
|
1571
|
+
var Ne;
|
|
1572
1572
|
class Ir {
|
|
1573
1573
|
constructor() {
|
|
1574
1574
|
this._map = /* @__PURE__ */ new WeakMap(), this._idmap = /* @__PURE__ */ new Map();
|
|
@@ -1601,8 +1601,8 @@ class Ir {
|
|
|
1601
1601
|
function Nr() {
|
|
1602
1602
|
return new Ir();
|
|
1603
1603
|
}
|
|
1604
|
-
(
|
|
1605
|
-
const
|
|
1604
|
+
(Ne = globalThis).__zod_globalRegistry ?? (Ne.__zod_globalRegistry = Nr());
|
|
1605
|
+
const J = globalThis.__zod_globalRegistry;
|
|
1606
1606
|
// @__NO_SIDE_EFFECTS__
|
|
1607
1607
|
function Pr(e, t) {
|
|
1608
1608
|
return new e({
|
|
@@ -1621,7 +1621,7 @@ function Ar(e, t) {
|
|
|
1621
1621
|
});
|
|
1622
1622
|
}
|
|
1623
1623
|
// @__NO_SIDE_EFFECTS__
|
|
1624
|
-
function
|
|
1624
|
+
function Pe(e, t) {
|
|
1625
1625
|
return new e({
|
|
1626
1626
|
type: "string",
|
|
1627
1627
|
format: "guid",
|
|
@@ -1641,7 +1641,7 @@ function jr(e, t) {
|
|
|
1641
1641
|
});
|
|
1642
1642
|
}
|
|
1643
1643
|
// @__NO_SIDE_EFFECTS__
|
|
1644
|
-
function
|
|
1644
|
+
function Cr(e, t) {
|
|
1645
1645
|
return new e({
|
|
1646
1646
|
type: "string",
|
|
1647
1647
|
format: "uuid",
|
|
@@ -1652,7 +1652,7 @@ function xr(e, t) {
|
|
|
1652
1652
|
});
|
|
1653
1653
|
}
|
|
1654
1654
|
// @__NO_SIDE_EFFECTS__
|
|
1655
|
-
function
|
|
1655
|
+
function xr(e, t) {
|
|
1656
1656
|
return new e({
|
|
1657
1657
|
type: "string",
|
|
1658
1658
|
format: "uuid",
|
|
@@ -1912,8 +1912,8 @@ function ao(e, t) {
|
|
|
1912
1912
|
});
|
|
1913
1913
|
}
|
|
1914
1914
|
// @__NO_SIDE_EFFECTS__
|
|
1915
|
-
function
|
|
1916
|
-
return new
|
|
1915
|
+
function Ae(e, t) {
|
|
1916
|
+
return new tt({
|
|
1917
1917
|
check: "less_than",
|
|
1918
1918
|
...p(t),
|
|
1919
1919
|
value: e,
|
|
@@ -1921,8 +1921,8 @@ function Pe(e, t) {
|
|
|
1921
1921
|
});
|
|
1922
1922
|
}
|
|
1923
1923
|
// @__NO_SIDE_EFFECTS__
|
|
1924
|
-
function
|
|
1925
|
-
return new
|
|
1924
|
+
function ce(e, t) {
|
|
1925
|
+
return new tt({
|
|
1926
1926
|
check: "less_than",
|
|
1927
1927
|
...p(t),
|
|
1928
1928
|
value: e,
|
|
@@ -1930,8 +1930,8 @@ function se(e, t) {
|
|
|
1930
1930
|
});
|
|
1931
1931
|
}
|
|
1932
1932
|
// @__NO_SIDE_EFFECTS__
|
|
1933
|
-
function
|
|
1934
|
-
return new
|
|
1933
|
+
function je(e, t) {
|
|
1934
|
+
return new nt({
|
|
1935
1935
|
check: "greater_than",
|
|
1936
1936
|
...p(t),
|
|
1937
1937
|
value: e,
|
|
@@ -1939,8 +1939,8 @@ function Ae(e, t) {
|
|
|
1939
1939
|
});
|
|
1940
1940
|
}
|
|
1941
1941
|
// @__NO_SIDE_EFFECTS__
|
|
1942
|
-
function
|
|
1943
|
-
return new
|
|
1942
|
+
function ae(e, t) {
|
|
1943
|
+
return new nt({
|
|
1944
1944
|
check: "greater_than",
|
|
1945
1945
|
...p(t),
|
|
1946
1946
|
value: e,
|
|
@@ -1948,7 +1948,7 @@ function ce(e, t) {
|
|
|
1948
1948
|
});
|
|
1949
1949
|
}
|
|
1950
1950
|
// @__NO_SIDE_EFFECTS__
|
|
1951
|
-
function
|
|
1951
|
+
function Ce(e, t) {
|
|
1952
1952
|
return new kn({
|
|
1953
1953
|
check: "multiple_of",
|
|
1954
1954
|
...p(t),
|
|
@@ -1956,7 +1956,7 @@ function je(e, t) {
|
|
|
1956
1956
|
});
|
|
1957
1957
|
}
|
|
1958
1958
|
// @__NO_SIDE_EFFECTS__
|
|
1959
|
-
function
|
|
1959
|
+
function ut(e, t) {
|
|
1960
1960
|
return new Sn({
|
|
1961
1961
|
check: "max_length",
|
|
1962
1962
|
...p(t),
|
|
@@ -1972,7 +1972,7 @@ function Q(e, t) {
|
|
|
1972
1972
|
});
|
|
1973
1973
|
}
|
|
1974
1974
|
// @__NO_SIDE_EFFECTS__
|
|
1975
|
-
function
|
|
1975
|
+
function lt(e, t) {
|
|
1976
1976
|
return new En({
|
|
1977
1977
|
check: "length_equals",
|
|
1978
1978
|
...p(t),
|
|
@@ -2032,31 +2032,31 @@ function mo(e, t) {
|
|
|
2032
2032
|
});
|
|
2033
2033
|
}
|
|
2034
2034
|
// @__NO_SIDE_EFFECTS__
|
|
2035
|
-
function
|
|
2036
|
-
return new
|
|
2035
|
+
function L(e) {
|
|
2036
|
+
return new Cn({
|
|
2037
2037
|
check: "overwrite",
|
|
2038
2038
|
tx: e
|
|
2039
2039
|
});
|
|
2040
2040
|
}
|
|
2041
2041
|
// @__NO_SIDE_EFFECTS__
|
|
2042
2042
|
function _o(e) {
|
|
2043
|
-
return /* @__PURE__ */
|
|
2043
|
+
return /* @__PURE__ */ L((t) => t.normalize(e));
|
|
2044
2044
|
}
|
|
2045
2045
|
// @__NO_SIDE_EFFECTS__
|
|
2046
2046
|
function go() {
|
|
2047
|
-
return /* @__PURE__ */
|
|
2047
|
+
return /* @__PURE__ */ L((e) => e.trim());
|
|
2048
2048
|
}
|
|
2049
2049
|
// @__NO_SIDE_EFFECTS__
|
|
2050
2050
|
function vo() {
|
|
2051
|
-
return /* @__PURE__ */
|
|
2051
|
+
return /* @__PURE__ */ L((e) => e.toLowerCase());
|
|
2052
2052
|
}
|
|
2053
2053
|
// @__NO_SIDE_EFFECTS__
|
|
2054
2054
|
function bo() {
|
|
2055
|
-
return /* @__PURE__ */
|
|
2055
|
+
return /* @__PURE__ */ L((e) => e.toUpperCase());
|
|
2056
2056
|
}
|
|
2057
2057
|
// @__NO_SIDE_EFFECTS__
|
|
2058
2058
|
function yo() {
|
|
2059
|
-
return /* @__PURE__ */
|
|
2059
|
+
return /* @__PURE__ */ L((e) => Ot(e));
|
|
2060
2060
|
}
|
|
2061
2061
|
// @__NO_SIDE_EFFECTS__
|
|
2062
2062
|
function zo(e, t, n) {
|
|
@@ -2098,11 +2098,11 @@ function ko(e, t) {
|
|
|
2098
2098
|
});
|
|
2099
2099
|
return n._zod.check = e, n;
|
|
2100
2100
|
}
|
|
2101
|
-
function
|
|
2101
|
+
function ft(e) {
|
|
2102
2102
|
let t = e?.target ?? "draft-2020-12";
|
|
2103
2103
|
return t === "draft-4" && (t = "draft-04"), t === "draft-7" && (t = "draft-07"), {
|
|
2104
2104
|
processors: e.processors ?? {},
|
|
2105
|
-
metadataRegistry: e?.metadata ??
|
|
2105
|
+
metadataRegistry: e?.metadata ?? J,
|
|
2106
2106
|
target: t,
|
|
2107
2107
|
unrepresentable: e?.unrepresentable ?? "throw",
|
|
2108
2108
|
override: e?.override ?? (() => {
|
|
@@ -2145,7 +2145,7 @@ function $(e, t, n = { path: [], schemaPath: [] }) {
|
|
|
2145
2145
|
const u = t.metadataRegistry.get(e);
|
|
2146
2146
|
return u && Object.assign(i.schema, u), t.io === "input" && S(e) && (delete i.schema.examples, delete i.schema.default), t.io === "input" && i.schema._prefault && ((r = i.schema).default ?? (r.default = i.schema._prefault)), delete i.schema._prefault, t.seen.get(e).schema;
|
|
2147
2147
|
}
|
|
2148
|
-
function
|
|
2148
|
+
function pt(e, t) {
|
|
2149
2149
|
const n = e.seen.get(t);
|
|
2150
2150
|
if (!n)
|
|
2151
2151
|
throw new Error("Unprocessed schema. This is a bug in Zod.");
|
|
@@ -2217,7 +2217,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
2217
2217
|
}
|
|
2218
2218
|
}
|
|
2219
2219
|
}
|
|
2220
|
-
function
|
|
2220
|
+
function dt(e, t) {
|
|
2221
2221
|
const n = e.seen.get(t);
|
|
2222
2222
|
if (!n)
|
|
2223
2223
|
throw new Error("Unprocessed schema. This is a bug in Zod.");
|
|
@@ -2326,11 +2326,11 @@ function S(e, t) {
|
|
|
2326
2326
|
return !1;
|
|
2327
2327
|
}
|
|
2328
2328
|
const Zo = (e, t = {}) => (n) => {
|
|
2329
|
-
const r =
|
|
2330
|
-
return $(e, r),
|
|
2329
|
+
const r = ft({ ...n, processors: t });
|
|
2330
|
+
return $(e, r), pt(r, e), dt(r, e);
|
|
2331
2331
|
}, ee = (e, t, n = {}) => (r) => {
|
|
2332
|
-
const { libraryOptions: o, target: s } = r ?? {}, i =
|
|
2333
|
-
return $(e, i),
|
|
2332
|
+
const { libraryOptions: o, target: s } = r ?? {}, i = ft({ ...o ?? {}, target: s, io: t, processors: n });
|
|
2333
|
+
return $(e, i), pt(i, e), dt(i, e);
|
|
2334
2334
|
}, So = {
|
|
2335
2335
|
guid: "uuid",
|
|
2336
2336
|
url: "uri",
|
|
@@ -2360,7 +2360,7 @@ const Zo = (e, t = {}) => (n) => {
|
|
|
2360
2360
|
n.not = {};
|
|
2361
2361
|
}, No = (e, t, n, r) => {
|
|
2362
2362
|
}, Po = (e, t, n, r) => {
|
|
2363
|
-
const o = e._zod.def, s =
|
|
2363
|
+
const o = e._zod.def, s = Ve(o.entries);
|
|
2364
2364
|
s.every((i) => typeof i == "number") && (n.type = "number"), s.every((i) => typeof i == "string") && (n.type = "string"), n.enum = s;
|
|
2365
2365
|
}, Ao = (e, t, n, r) => {
|
|
2366
2366
|
const o = e._zod.def, s = [];
|
|
@@ -2382,10 +2382,10 @@ const Zo = (e, t = {}) => (n) => {
|
|
|
2382
2382
|
}, jo = (e, t, n, r) => {
|
|
2383
2383
|
if (t.unrepresentable === "throw")
|
|
2384
2384
|
throw new Error("Custom types cannot be represented in JSON Schema");
|
|
2385
|
-
},
|
|
2385
|
+
}, Co = (e, t, n, r) => {
|
|
2386
2386
|
if (t.unrepresentable === "throw")
|
|
2387
2387
|
throw new Error("Transforms cannot be represented in JSON Schema");
|
|
2388
|
-
},
|
|
2388
|
+
}, xo = (e, t, n, r) => {
|
|
2389
2389
|
const o = n, s = e._zod.def, { minimum: i, maximum: c } = e._zod.bag;
|
|
2390
2390
|
typeof i == "number" && (o.minItems = i), typeof c == "number" && (o.maxItems = c), o.type = "array", o.items = $(s.element, t, { ...r, path: [...r.path, "items"] });
|
|
2391
2391
|
}, Ro = (e, t, n, r) => {
|
|
@@ -2463,7 +2463,7 @@ const Zo = (e, t = {}) => (n) => {
|
|
|
2463
2463
|
$(o.innerType, t, r);
|
|
2464
2464
|
const s = t.seen.get(e);
|
|
2465
2465
|
s.ref = o.innerType, n.readOnly = !0;
|
|
2466
|
-
},
|
|
2466
|
+
}, ht = (e, t, n, r) => {
|
|
2467
2467
|
const o = e._zod.def;
|
|
2468
2468
|
$(o.innerType, t, r);
|
|
2469
2469
|
const s = t.seen.get(e);
|
|
@@ -2493,7 +2493,7 @@ function ei(e) {
|
|
|
2493
2493
|
return /* @__PURE__ */ ro(Qo, e);
|
|
2494
2494
|
}
|
|
2495
2495
|
const ti = (e, t) => {
|
|
2496
|
-
|
|
2496
|
+
Ge.init(e, t), e.name = "ZodError", Object.defineProperties(e, {
|
|
2497
2497
|
format: {
|
|
2498
2498
|
value: (n) => Mt(e, n)
|
|
2499
2499
|
// enumerable: false,
|
|
@@ -2504,13 +2504,13 @@ const ti = (e, t) => {
|
|
|
2504
2504
|
},
|
|
2505
2505
|
addIssue: {
|
|
2506
2506
|
value: (n) => {
|
|
2507
|
-
e.issues.push(n), e.message = JSON.stringify(e.issues,
|
|
2507
|
+
e.issues.push(n), e.message = JSON.stringify(e.issues, le, 2);
|
|
2508
2508
|
}
|
|
2509
2509
|
// enumerable: false,
|
|
2510
2510
|
},
|
|
2511
2511
|
addIssues: {
|
|
2512
2512
|
value: (n) => {
|
|
2513
|
-
e.issues.push(...n), e.message = JSON.stringify(e.issues,
|
|
2513
|
+
e.issues.push(...n), e.message = JSON.stringify(e.issues, le, 2);
|
|
2514
2514
|
}
|
|
2515
2515
|
// enumerable: false,
|
|
2516
2516
|
},
|
|
@@ -2523,7 +2523,7 @@ const ti = (e, t) => {
|
|
|
2523
2523
|
});
|
|
2524
2524
|
}, T = a("ZodError", ti, {
|
|
2525
2525
|
Parent: Error
|
|
2526
|
-
}), ni = /* @__PURE__ */
|
|
2526
|
+
}), ni = /* @__PURE__ */ _e(T), ri = /* @__PURE__ */ ge(T), oi = /* @__PURE__ */ re(T), ii = /* @__PURE__ */ oe(T), si = /* @__PURE__ */ Jt(T), ci = /* @__PURE__ */ Vt(T), ai = /* @__PURE__ */ Bt(T), ui = /* @__PURE__ */ Wt(T), li = /* @__PURE__ */ Yt(T), fi = /* @__PURE__ */ Kt(T), pi = /* @__PURE__ */ Gt(T), di = /* @__PURE__ */ Ht(T), z = /* @__PURE__ */ a("ZodType", (e, t) => (y.init(e, t), Object.assign(e["~standard"], {
|
|
2527
2527
|
jsonSchema: {
|
|
2528
2528
|
input: ee(e, "input"),
|
|
2529
2529
|
output: ee(e, "output")
|
|
@@ -2535,31 +2535,31 @@ const ti = (e, t) => {
|
|
|
2535
2535
|
]
|
|
2536
2536
|
}), {
|
|
2537
2537
|
parent: !0
|
|
2538
|
-
}), e.with = e.check, e.clone = (n, r) => A(e, n, r), e.brand = () => e, e.register = ((n, r) => (n.add(e, r), e)), e.parse = (n, r) => ni(e, n, r, { callee: e.parse }), e.safeParse = (n, r) => oi(e, n, r), e.parseAsync = async (n, r) => ri(e, n, r, { callee: e.parseAsync }), e.safeParseAsync = async (n, r) => ii(e, n, r), e.spa = e.safeParseAsync, e.encode = (n, r) => si(e, n, r), e.decode = (n, r) => ci(e, n, r), e.encodeAsync = async (n, r) => ai(e, n, r), e.decodeAsync = async (n, r) => ui(e, n, r), e.safeEncode = (n, r) => li(e, n, r), e.safeDecode = (n, r) => fi(e, n, r), e.safeEncodeAsync = async (n, r) => pi(e, n, r), e.safeDecodeAsync = async (n, r) => di(e, n, r), e.refine = (n, r) => e.check(us(n, r)), e.superRefine = (n) => e.check(ls(n)), e.overwrite = (n) => e.check(/* @__PURE__ */
|
|
2538
|
+
}), e.with = e.check, e.clone = (n, r) => A(e, n, r), e.brand = () => e, e.register = ((n, r) => (n.add(e, r), e)), e.parse = (n, r) => ni(e, n, r, { callee: e.parse }), e.safeParse = (n, r) => oi(e, n, r), e.parseAsync = async (n, r) => ri(e, n, r, { callee: e.parseAsync }), e.safeParseAsync = async (n, r) => ii(e, n, r), e.spa = e.safeParseAsync, e.encode = (n, r) => si(e, n, r), e.decode = (n, r) => ci(e, n, r), e.encodeAsync = async (n, r) => ai(e, n, r), e.decodeAsync = async (n, r) => ui(e, n, r), e.safeEncode = (n, r) => li(e, n, r), e.safeDecode = (n, r) => fi(e, n, r), e.safeEncodeAsync = async (n, r) => pi(e, n, r), e.safeDecodeAsync = async (n, r) => di(e, n, r), e.refine = (n, r) => e.check(us(n, r)), e.superRefine = (n) => e.check(ls(n)), e.overwrite = (n) => e.check(/* @__PURE__ */ L(n)), e.optional = () => Fe(e), e.exactOptional = () => Hi(e), e.nullable = () => Me(e), e.nullish = () => Fe(Me(e)), e.nonoptional = (n) => ns(e, n), e.array = () => pe(e), e.or = (n) => Mi([e, n]), e.and = (n) => Vi(e, n), e.transform = (n) => Ue(e, Ki(n)), e.default = (n) => Qi(e, n), e.prefault = (n) => ts(e, n), e.catch = (n) => os(e, n), e.pipe = (n) => Ue(e, n), e.readonly = () => cs(e), e.describe = (n) => {
|
|
2539
2539
|
const r = e.clone();
|
|
2540
|
-
return
|
|
2540
|
+
return J.add(r, { description: n }), r;
|
|
2541
2541
|
}, Object.defineProperty(e, "description", {
|
|
2542
2542
|
get() {
|
|
2543
|
-
return
|
|
2543
|
+
return J.get(e)?.description;
|
|
2544
2544
|
},
|
|
2545
2545
|
configurable: !0
|
|
2546
2546
|
}), e.meta = (...n) => {
|
|
2547
2547
|
if (n.length === 0)
|
|
2548
|
-
return
|
|
2548
|
+
return J.get(e);
|
|
2549
2549
|
const r = e.clone();
|
|
2550
|
-
return
|
|
2551
|
-
}, e.isOptional = () => e.safeParse(void 0).success, e.isNullable = () => e.safeParse(null).success, e.apply = (n) => n(e), e)),
|
|
2552
|
-
|
|
2550
|
+
return J.add(r, n[0]), r;
|
|
2551
|
+
}, e.isOptional = () => e.safeParse(void 0).success, e.isNullable = () => e.safeParse(null).success, e.apply = (n) => n(e), e)), mt = /* @__PURE__ */ a("_ZodString", (e, t) => {
|
|
2552
|
+
ve.init(e, t), z.init(e, t), e._zod.processJSONSchema = (r, o, s) => Oo(e, r, o);
|
|
2553
2553
|
const n = e._zod.bag;
|
|
2554
|
-
e.format = n.format ?? null, e.minLength = n.minimum ?? null, e.maxLength = n.maximum ?? null, e.regex = (...r) => e.check(/* @__PURE__ */ uo(...r)), e.includes = (...r) => e.check(/* @__PURE__ */ po(...r)), e.startsWith = (...r) => e.check(/* @__PURE__ */ ho(...r)), e.endsWith = (...r) => e.check(/* @__PURE__ */ mo(...r)), e.min = (...r) => e.check(/* @__PURE__ */ Q(...r)), e.max = (...r) => e.check(/* @__PURE__ */
|
|
2554
|
+
e.format = n.format ?? null, e.minLength = n.minimum ?? null, e.maxLength = n.maximum ?? null, e.regex = (...r) => e.check(/* @__PURE__ */ uo(...r)), e.includes = (...r) => e.check(/* @__PURE__ */ po(...r)), e.startsWith = (...r) => e.check(/* @__PURE__ */ ho(...r)), e.endsWith = (...r) => e.check(/* @__PURE__ */ mo(...r)), e.min = (...r) => e.check(/* @__PURE__ */ Q(...r)), e.max = (...r) => e.check(/* @__PURE__ */ ut(...r)), e.length = (...r) => e.check(/* @__PURE__ */ lt(...r)), e.nonempty = (...r) => e.check(/* @__PURE__ */ Q(1, ...r)), e.lowercase = (r) => e.check(/* @__PURE__ */ lo(r)), e.uppercase = (r) => e.check(/* @__PURE__ */ fo(r)), e.trim = () => e.check(/* @__PURE__ */ go()), e.normalize = (...r) => e.check(/* @__PURE__ */ _o(...r)), e.toLowerCase = () => e.check(/* @__PURE__ */ vo()), e.toUpperCase = () => e.check(/* @__PURE__ */ bo()), e.slugify = () => e.check(/* @__PURE__ */ yo());
|
|
2555
2555
|
}), hi = /* @__PURE__ */ a("ZodString", (e, t) => {
|
|
2556
|
-
|
|
2556
|
+
ve.init(e, t), mt.init(e, t), e.email = (n) => e.check(/* @__PURE__ */ Ar(mi, n)), e.url = (n) => e.check(/* @__PURE__ */ Dr(_i, n)), e.jwt = (n) => e.check(/* @__PURE__ */ Qr(Ni, n)), e.emoji = (n) => e.check(/* @__PURE__ */ Fr(gi, n)), e.guid = (n) => e.check(/* @__PURE__ */ Pe(xe, n)), e.uuid = (n) => e.check(/* @__PURE__ */ jr(q, n)), e.uuidv4 = (n) => e.check(/* @__PURE__ */ Cr(q, n)), e.uuidv6 = (n) => e.check(/* @__PURE__ */ xr(q, n)), e.uuidv7 = (n) => e.check(/* @__PURE__ */ Rr(q, n)), e.nanoid = (n) => e.check(/* @__PURE__ */ Mr(vi, n)), e.guid = (n) => e.check(/* @__PURE__ */ Pe(xe, n)), e.cuid = (n) => e.check(/* @__PURE__ */ Ur(bi, n)), e.cuid2 = (n) => e.check(/* @__PURE__ */ Lr(yi, n)), e.ulid = (n) => e.check(/* @__PURE__ */ Jr(zi, n)), e.base64 = (n) => e.check(/* @__PURE__ */ Hr(Ei, n)), e.base64url = (n) => e.check(/* @__PURE__ */ qr(Ti, n)), e.xid = (n) => e.check(/* @__PURE__ */ Vr(wi, n)), e.ksuid = (n) => e.check(/* @__PURE__ */ Br($i, n)), e.ipv4 = (n) => e.check(/* @__PURE__ */ Wr(ki, n)), e.ipv6 = (n) => e.check(/* @__PURE__ */ Yr(Zi, n)), e.cidrv4 = (n) => e.check(/* @__PURE__ */ Kr(Si, n)), e.cidrv6 = (n) => e.check(/* @__PURE__ */ Gr(Oi, n)), e.e164 = (n) => e.check(/* @__PURE__ */ Xr(Ii, n)), e.datetime = (n) => e.check(Ko(n)), e.date = (n) => e.check(Ho(n)), e.time = (n) => e.check(Xo(n)), e.duration = (n) => e.check(ei(n));
|
|
2557
2557
|
});
|
|
2558
|
-
function
|
|
2558
|
+
function j(e) {
|
|
2559
2559
|
return /* @__PURE__ */ Pr(hi, e);
|
|
2560
2560
|
}
|
|
2561
2561
|
const b = /* @__PURE__ */ a("ZodStringFormat", (e, t) => {
|
|
2562
|
-
v.init(e, t),
|
|
2562
|
+
v.init(e, t), mt.init(e, t);
|
|
2563
2563
|
}), mi = /* @__PURE__ */ a("ZodEmail", (e, t) => {
|
|
2564
2564
|
Mn.init(e, t), b.init(e, t);
|
|
2565
2565
|
}), xe = /* @__PURE__ */ a("ZodGUID", (e, t) => {
|
|
@@ -2598,18 +2598,18 @@ const b = /* @__PURE__ */ a("ZodStringFormat", (e, t) => {
|
|
|
2598
2598
|
sr.init(e, t), b.init(e, t);
|
|
2599
2599
|
}), Ni = /* @__PURE__ */ a("ZodJWT", (e, t) => {
|
|
2600
2600
|
ar.init(e, t), b.init(e, t);
|
|
2601
|
-
}),
|
|
2602
|
-
|
|
2601
|
+
}), _t = /* @__PURE__ */ a("ZodNumber", (e, t) => {
|
|
2602
|
+
ot.init(e, t), z.init(e, t), e._zod.processJSONSchema = (r, o, s) => Eo(e, r, o), e.gt = (r, o) => e.check(/* @__PURE__ */ je(r, o)), e.gte = (r, o) => e.check(/* @__PURE__ */ ae(r, o)), e.min = (r, o) => e.check(/* @__PURE__ */ ae(r, o)), e.lt = (r, o) => e.check(/* @__PURE__ */ Ae(r, o)), e.lte = (r, o) => e.check(/* @__PURE__ */ ce(r, o)), e.max = (r, o) => e.check(/* @__PURE__ */ ce(r, o)), e.int = (r) => e.check(Re(r)), e.safe = (r) => e.check(Re(r)), e.positive = (r) => e.check(/* @__PURE__ */ je(0, r)), e.nonnegative = (r) => e.check(/* @__PURE__ */ ae(0, r)), e.negative = (r) => e.check(/* @__PURE__ */ Ae(0, r)), e.nonpositive = (r) => e.check(/* @__PURE__ */ ce(0, r)), e.multipleOf = (r, o) => e.check(/* @__PURE__ */ Ce(r, o)), e.step = (r, o) => e.check(/* @__PURE__ */ Ce(r, o)), e.finite = () => e;
|
|
2603
2603
|
const n = e._zod.bag;
|
|
2604
2604
|
e.minValue = Math.max(n.minimum ?? Number.NEGATIVE_INFINITY, n.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null, e.maxValue = Math.min(n.maximum ?? Number.POSITIVE_INFINITY, n.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null, e.isInt = (n.format ?? "").includes("int") || Number.isSafeInteger(n.multipleOf ?? 0.5), e.isFinite = !0, e.format = n.format ?? null;
|
|
2605
2605
|
});
|
|
2606
2606
|
function g(e) {
|
|
2607
|
-
return /* @__PURE__ */ oo(
|
|
2607
|
+
return /* @__PURE__ */ oo(_t, e);
|
|
2608
2608
|
}
|
|
2609
2609
|
const Pi = /* @__PURE__ */ a("ZodNumberFormat", (e, t) => {
|
|
2610
|
-
ur.init(e, t),
|
|
2610
|
+
ur.init(e, t), _t.init(e, t);
|
|
2611
2611
|
});
|
|
2612
|
-
function
|
|
2612
|
+
function Re(e) {
|
|
2613
2613
|
return /* @__PURE__ */ io(Pi, e);
|
|
2614
2614
|
}
|
|
2615
2615
|
const Ai = /* @__PURE__ */ a("ZodBoolean", (e, t) => {
|
|
@@ -2618,28 +2618,28 @@ const Ai = /* @__PURE__ */ a("ZodBoolean", (e, t) => {
|
|
|
2618
2618
|
function ji(e) {
|
|
2619
2619
|
return /* @__PURE__ */ so(Ai, e);
|
|
2620
2620
|
}
|
|
2621
|
-
const
|
|
2621
|
+
const Ci = /* @__PURE__ */ a("ZodUnknown", (e, t) => {
|
|
2622
2622
|
fr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => No();
|
|
2623
2623
|
});
|
|
2624
|
-
function
|
|
2625
|
-
return /* @__PURE__ */ co(
|
|
2624
|
+
function De() {
|
|
2625
|
+
return /* @__PURE__ */ co(Ci);
|
|
2626
2626
|
}
|
|
2627
|
-
const
|
|
2627
|
+
const xi = /* @__PURE__ */ a("ZodNever", (e, t) => {
|
|
2628
2628
|
pr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Io(e, n, r);
|
|
2629
2629
|
});
|
|
2630
2630
|
function Ri(e) {
|
|
2631
|
-
return /* @__PURE__ */ ao(
|
|
2631
|
+
return /* @__PURE__ */ ao(xi, e);
|
|
2632
2632
|
}
|
|
2633
2633
|
const Di = /* @__PURE__ */ a("ZodArray", (e, t) => {
|
|
2634
|
-
dr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) =>
|
|
2634
|
+
dr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => xo(e, n, r, o), e.element = t.element, e.min = (n, r) => e.check(/* @__PURE__ */ Q(n, r)), e.nonempty = (n) => e.check(/* @__PURE__ */ Q(1, n)), e.max = (n, r) => e.check(/* @__PURE__ */ ut(n, r)), e.length = (n, r) => e.check(/* @__PURE__ */ lt(n, r)), e.unwrap = () => e.element;
|
|
2635
2635
|
});
|
|
2636
|
-
function
|
|
2636
|
+
function pe(e, t) {
|
|
2637
2637
|
return /* @__PURE__ */ zo(Di, e, t);
|
|
2638
2638
|
}
|
|
2639
2639
|
const Fi = /* @__PURE__ */ a("ZodObject", (e, t) => {
|
|
2640
|
-
mr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ro(e, n, r, o), _(e, "shape", () => t.shape), e.keyof = () => Bi(Object.keys(e._zod.def.shape)), e.catchall = (n) => e.clone({ ...e._zod.def, catchall: n }), e.passthrough = () => e.clone({ ...e._zod.def, catchall:
|
|
2640
|
+
mr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ro(e, n, r, o), _(e, "shape", () => t.shape), e.keyof = () => Bi(Object.keys(e._zod.def.shape)), e.catchall = (n) => e.clone({ ...e._zod.def, catchall: n }), e.passthrough = () => e.clone({ ...e._zod.def, catchall: De() }), e.loose = () => e.clone({ ...e._zod.def, catchall: De() }), e.strict = () => e.clone({ ...e._zod.def, catchall: Ri() }), e.strip = () => e.clone({ ...e._zod.def, catchall: void 0 }), e.extend = (n) => jt(e, n), e.safeExtend = (n) => Ct(e, n), e.merge = (n) => xt(e, n), e.pick = (n) => Pt(e, n), e.omit = (n) => At(e, n), e.partial = (...n) => Rt(vt, e, n[0]), e.required = (...n) => Dt(bt, e, n[0]);
|
|
2641
2641
|
});
|
|
2642
|
-
function
|
|
2642
|
+
function se(e, t) {
|
|
2643
2643
|
const n = {
|
|
2644
2644
|
type: "object",
|
|
2645
2645
|
shape: e ?? {},
|
|
@@ -2648,7 +2648,7 @@ function ge(e, t) {
|
|
|
2648
2648
|
return new Fi(n);
|
|
2649
2649
|
}
|
|
2650
2650
|
const gt = /* @__PURE__ */ a("ZodUnion", (e, t) => {
|
|
2651
|
-
|
|
2651
|
+
ct.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Do(e, n, r, o), e.options = t.options;
|
|
2652
2652
|
});
|
|
2653
2653
|
function Mi(e, t) {
|
|
2654
2654
|
return new gt({
|
|
@@ -2733,7 +2733,7 @@ const Wi = /* @__PURE__ */ a("ZodLiteral", (e, t) => {
|
|
|
2733
2733
|
}
|
|
2734
2734
|
});
|
|
2735
2735
|
});
|
|
2736
|
-
function
|
|
2736
|
+
function M(e, t) {
|
|
2737
2737
|
return new Wi({
|
|
2738
2738
|
type: "literal",
|
|
2739
2739
|
values: Array.isArray(e) ? e : [e],
|
|
@@ -2741,9 +2741,9 @@ function F(e, t) {
|
|
|
2741
2741
|
});
|
|
2742
2742
|
}
|
|
2743
2743
|
const Yi = /* @__PURE__ */ a("ZodTransform", (e, t) => {
|
|
2744
|
-
yr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) =>
|
|
2744
|
+
yr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Co(e, n), e._zod.parse = (n, r) => {
|
|
2745
2745
|
if (r.direction === "backward")
|
|
2746
|
-
throw new
|
|
2746
|
+
throw new Le(e.constructor.name);
|
|
2747
2747
|
n.addIssue = (s) => {
|
|
2748
2748
|
if (typeof s == "string")
|
|
2749
2749
|
n.issues.push(Y(s, n.value, t));
|
|
@@ -2763,16 +2763,16 @@ function Ki(e) {
|
|
|
2763
2763
|
});
|
|
2764
2764
|
}
|
|
2765
2765
|
const vt = /* @__PURE__ */ a("ZodOptional", (e, t) => {
|
|
2766
|
-
|
|
2766
|
+
at.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => ht(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
2767
2767
|
});
|
|
2768
|
-
function
|
|
2768
|
+
function Fe(e) {
|
|
2769
2769
|
return new vt({
|
|
2770
2770
|
type: "optional",
|
|
2771
2771
|
innerType: e
|
|
2772
2772
|
});
|
|
2773
2773
|
}
|
|
2774
2774
|
const Gi = /* @__PURE__ */ a("ZodExactOptional", (e, t) => {
|
|
2775
|
-
zr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) =>
|
|
2775
|
+
zr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => ht(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
2776
2776
|
});
|
|
2777
2777
|
function Hi(e) {
|
|
2778
2778
|
return new Gi({
|
|
@@ -2783,7 +2783,7 @@ function Hi(e) {
|
|
|
2783
2783
|
const qi = /* @__PURE__ */ a("ZodNullable", (e, t) => {
|
|
2784
2784
|
wr.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Mo(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
2785
2785
|
});
|
|
2786
|
-
function
|
|
2786
|
+
function Me(e) {
|
|
2787
2787
|
return new qi({
|
|
2788
2788
|
type: "nullable",
|
|
2789
2789
|
innerType: e
|
|
@@ -2797,7 +2797,7 @@ function Qi(e, t) {
|
|
|
2797
2797
|
type: "default",
|
|
2798
2798
|
innerType: e,
|
|
2799
2799
|
get defaultValue() {
|
|
2800
|
-
return typeof t == "function" ? t() :
|
|
2800
|
+
return typeof t == "function" ? t() : We(t);
|
|
2801
2801
|
}
|
|
2802
2802
|
});
|
|
2803
2803
|
}
|
|
@@ -2809,7 +2809,7 @@ function ts(e, t) {
|
|
|
2809
2809
|
type: "prefault",
|
|
2810
2810
|
innerType: e,
|
|
2811
2811
|
get defaultValue() {
|
|
2812
|
-
return typeof t == "function" ? t() :
|
|
2812
|
+
return typeof t == "function" ? t() : We(t);
|
|
2813
2813
|
}
|
|
2814
2814
|
});
|
|
2815
2815
|
}
|
|
@@ -2836,7 +2836,7 @@ function os(e, t) {
|
|
|
2836
2836
|
const is = /* @__PURE__ */ a("ZodPipe", (e, t) => {
|
|
2837
2837
|
Or.init(e, t), z.init(e, t), e._zod.processJSONSchema = (n, r, o) => Bo(e, n, r, o), e.in = t.in, e.out = t.out;
|
|
2838
2838
|
});
|
|
2839
|
-
function
|
|
2839
|
+
function Ue(e, t) {
|
|
2840
2840
|
return new is({
|
|
2841
2841
|
type: "pipe",
|
|
2842
2842
|
in: e,
|
|
@@ -2930,10 +2930,10 @@ const fs = {
|
|
|
2930
2930
|
High: "Q",
|
|
2931
2931
|
Medium: "M",
|
|
2932
2932
|
Lower: "L"
|
|
2933
|
-
},
|
|
2933
|
+
}, Cs = k(js), xs = {
|
|
2934
2934
|
Yes: "Y",
|
|
2935
2935
|
No: "N"
|
|
2936
|
-
},
|
|
2936
|
+
}, ue = k(xs), zt = {
|
|
2937
2937
|
Start: "start",
|
|
2938
2938
|
End: "end"
|
|
2939
2939
|
}, Rs = k(zt), Ds = {
|
|
@@ -2943,27 +2943,27 @@ const fs = {
|
|
|
2943
2943
|
pass: "pass",
|
|
2944
2944
|
passResponses: "passResponses",
|
|
2945
2945
|
passAttributes: "passAttributes"
|
|
2946
|
-
}, Fs = k(Ds),
|
|
2946
|
+
}, Fs = k(Ds), V = {
|
|
2947
2947
|
None: "None",
|
|
2948
2948
|
Uppercase: "Uppercase",
|
|
2949
2949
|
Lowercase: "Lowercase",
|
|
2950
2950
|
Capitalize: "Capitalize"
|
|
2951
|
-
}, Ms = k(
|
|
2952
|
-
word:
|
|
2951
|
+
}, Ms = k(V), rc = se({
|
|
2952
|
+
word: j(),
|
|
2953
2953
|
width: g(),
|
|
2954
2954
|
spaceWidth: g()
|
|
2955
|
-
}),
|
|
2956
|
-
name:
|
|
2955
|
+
}), be = se({
|
|
2956
|
+
name: j(),
|
|
2957
2957
|
x: g().int(),
|
|
2958
2958
|
y: g().int(),
|
|
2959
|
-
defaultValue:
|
|
2959
|
+
defaultValue: j(),
|
|
2960
2960
|
sourceType: Fs,
|
|
2961
|
-
sourceLookup:
|
|
2961
|
+
sourceLookup: j(),
|
|
2962
2962
|
hideEmpty: ji()
|
|
2963
|
-
}), Us =
|
|
2964
|
-
type:
|
|
2963
|
+
}), Us = be.extend({
|
|
2964
|
+
type: M("text"),
|
|
2965
2965
|
// ^A font, height
|
|
2966
|
-
font:
|
|
2966
|
+
font: j().regex(/^[A-Z0-9]$/, "Font must be a single character A-Z or 0-9"),
|
|
2967
2967
|
fontOrientation: yt,
|
|
2968
2968
|
fontHeight: g().int().min(1).max(32e3),
|
|
2969
2969
|
// ^FB maxWidth, maxLines, lineSpacing, alignment, hangingIndent
|
|
@@ -2977,30 +2977,33 @@ const fs = {
|
|
|
2977
2977
|
charsPerLine: g().int().min(1).max(100),
|
|
2978
2978
|
transformation: Ms,
|
|
2979
2979
|
maxCharacters: g().int().min(1).max(100)
|
|
2980
|
-
}), Ls =
|
|
2981
|
-
type:
|
|
2980
|
+
}), Ls = be.extend({
|
|
2981
|
+
type: M("barcode"),
|
|
2982
2982
|
// ^BY barWidth
|
|
2983
2983
|
barWidth: g().int().min(4).max(9999),
|
|
2984
2984
|
// ^BC orientation, height, line, lineAbove, checkDigit
|
|
2985
2985
|
orientation: yt,
|
|
2986
2986
|
height: g().int().min(1).max(32e3),
|
|
2987
|
-
line:
|
|
2988
|
-
lineAbove:
|
|
2989
|
-
checkDigit:
|
|
2990
|
-
}), Js =
|
|
2991
|
-
type:
|
|
2987
|
+
line: ue,
|
|
2988
|
+
lineAbove: ue,
|
|
2989
|
+
checkDigit: ue
|
|
2990
|
+
}), Js = be.extend({
|
|
2991
|
+
type: M("qrcode"),
|
|
2992
2992
|
// ^BQ orientation, model, magnification, errorCorrection, mask
|
|
2993
|
-
orientation:
|
|
2994
|
-
model:
|
|
2993
|
+
orientation: M("N"),
|
|
2994
|
+
model: M("2"),
|
|
2995
2995
|
magnification: g().int().min(1).max(100),
|
|
2996
|
-
errorCorrection:
|
|
2996
|
+
errorCorrection: Cs,
|
|
2997
2997
|
mask: g().int().min(0).max(7)
|
|
2998
2998
|
}), Vs = Li("type", [
|
|
2999
2999
|
Us,
|
|
3000
3000
|
Ls,
|
|
3001
3001
|
Js
|
|
3002
|
-
]),
|
|
3003
|
-
|
|
3002
|
+
]), Bs = se({
|
|
3003
|
+
name: j(),
|
|
3004
|
+
alias: j().length(1)
|
|
3005
|
+
}), wt = se({
|
|
3006
|
+
type: M("thermal"),
|
|
3004
3007
|
// ~TA adjustment
|
|
3005
3008
|
tearOffAdjustment: g().int().min(0).max(120),
|
|
3006
3009
|
// ~JS sequence
|
|
@@ -3036,7 +3039,8 @@ const fs = {
|
|
|
3036
3039
|
labelLength: g().int().min(1).max(32e3),
|
|
3037
3040
|
allMedia: Is,
|
|
3038
3041
|
// Fields
|
|
3039
|
-
fields:
|
|
3042
|
+
fields: pe(Vs),
|
|
3043
|
+
fonts: pe(Bs)
|
|
3040
3044
|
});
|
|
3041
3045
|
function oc(e) {
|
|
3042
3046
|
return wt.safeParse(e);
|
|
@@ -3046,19 +3050,19 @@ function ic(e) {
|
|
|
3046
3050
|
}
|
|
3047
3051
|
function sc(e, t) {
|
|
3048
3052
|
if (e.type === "thermal")
|
|
3049
|
-
return
|
|
3053
|
+
return Ws(e, t);
|
|
3050
3054
|
throw new Error(`Unsupported badge type: ${e.type}`);
|
|
3051
3055
|
}
|
|
3052
|
-
function
|
|
3053
|
-
const n = ["^XA",
|
|
3056
|
+
function Ws(e, t) {
|
|
3057
|
+
const n = ["^XA", Ys(e)];
|
|
3054
3058
|
for (const r of e.fields) {
|
|
3055
|
-
const o =
|
|
3059
|
+
const o = Ks(r, t);
|
|
3056
3060
|
o && n.push(o);
|
|
3057
3061
|
}
|
|
3058
3062
|
return n.push("^XZ"), n.join(`
|
|
3059
3063
|
`);
|
|
3060
3064
|
}
|
|
3061
|
-
function
|
|
3065
|
+
function Ys(e) {
|
|
3062
3066
|
const n = [
|
|
3063
3067
|
`~TA${String(e.tearOffAdjustment).padStart(3, "0")}`,
|
|
3064
3068
|
`~JS${e.backfeedActions}`,
|
|
@@ -3068,22 +3072,25 @@ function Ws(e) {
|
|
|
3068
3072
|
`^PM${e.mirror}`,
|
|
3069
3073
|
`^LH${e.labelHomeX},${e.labelHomeY}`
|
|
3070
3074
|
];
|
|
3071
|
-
|
|
3075
|
+
e.printDensityAdjustment !== void 0 && n.push(`^JM${e.printDensityAdjustment}`), n.push(
|
|
3072
3076
|
`^PR${e.printSpeed},${e.slewSpeed},${e.backfeedSpeed}`,
|
|
3073
3077
|
`~SD${e.darkness}`,
|
|
3074
3078
|
`^LR${e.reverse}`,
|
|
3075
3079
|
`^MM${e.postPrintMode},${e.prepeel}`,
|
|
3076
3080
|
`^PW${e.printWidth}`,
|
|
3077
3081
|
`^LL${e.labelLength},${e.allMedia}`
|
|
3078
|
-
)
|
|
3082
|
+
);
|
|
3083
|
+
for (const r of e.fonts)
|
|
3084
|
+
n.push(`^CW${r.alias},E:${r.name}`);
|
|
3085
|
+
return n.join(`
|
|
3079
3086
|
`);
|
|
3080
3087
|
}
|
|
3081
|
-
function
|
|
3082
|
-
let n =
|
|
3088
|
+
function Ks(e, t) {
|
|
3089
|
+
let n = Gs(e, t);
|
|
3083
3090
|
if (typeof n == "string")
|
|
3084
3091
|
switch (e.type) {
|
|
3085
3092
|
case "text":
|
|
3086
|
-
return n =
|
|
3093
|
+
return n = Hs(e, n), qs(e, n);
|
|
3087
3094
|
case "barcode":
|
|
3088
3095
|
return ec(e, n);
|
|
3089
3096
|
case "qrcode":
|
|
@@ -3094,7 +3101,7 @@ function Ys(e, t) {
|
|
|
3094
3101
|
}
|
|
3095
3102
|
}
|
|
3096
3103
|
}
|
|
3097
|
-
function
|
|
3104
|
+
function Gs(e, t) {
|
|
3098
3105
|
if (!t) return e.defaultValue ?? "";
|
|
3099
3106
|
let n = [];
|
|
3100
3107
|
const r = e.sourceLookup.split(",");
|
|
@@ -3142,35 +3149,35 @@ function Ks(e, t) {
|
|
|
3142
3149
|
}
|
|
3143
3150
|
return n.length === 0 ? e.hideEmpty ? void 0 : e.defaultValue ?? "" : n.join(" ");
|
|
3144
3151
|
}
|
|
3145
|
-
function
|
|
3152
|
+
function Hs(e, t) {
|
|
3146
3153
|
switch (e.transformation) {
|
|
3147
|
-
case
|
|
3154
|
+
case V.None:
|
|
3148
3155
|
break;
|
|
3149
|
-
case
|
|
3156
|
+
case V.Uppercase:
|
|
3150
3157
|
t = t.toUpperCase();
|
|
3151
3158
|
break;
|
|
3152
|
-
case
|
|
3159
|
+
case V.Lowercase:
|
|
3153
3160
|
t = t.toLowerCase();
|
|
3154
3161
|
break;
|
|
3155
|
-
case
|
|
3162
|
+
case V.Capitalize:
|
|
3156
3163
|
t = t.charAt(0).toUpperCase() + t.slice(1).toLowerCase();
|
|
3157
3164
|
break;
|
|
3158
3165
|
}
|
|
3159
3166
|
return e.maxCharacters !== void 0 && (t = t.slice(0, e.maxCharacters)), t;
|
|
3160
3167
|
}
|
|
3161
|
-
function Hs(e, t) {
|
|
3162
|
-
const n = e.fontOrientation, r = `^A${e.font}${n},${e.fontHeight}`, o = `^FB${e.maxWidth},${e.maxLines},${e.lineSpacing},${e.alignment},${e.hangingIndent}`, s = qs(e, t);
|
|
3163
|
-
return `^FT${e.x},${e.y}${r}${o}^FD${s}^FS`;
|
|
3164
|
-
}
|
|
3165
3168
|
function qs(e, t) {
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3169
|
+
const n = e.fontOrientation, r = `^A${e.font}${n},${e.fontHeight}`;
|
|
3170
|
+
let o = e.maxLines;
|
|
3171
|
+
if (e.verticalAlignment === zt.End) {
|
|
3172
|
+
const i = Xs(e, t);
|
|
3173
|
+
o = Math.min(i, e.maxLines);
|
|
3174
|
+
}
|
|
3175
|
+
const s = `^FB${e.maxWidth},${o},${e.lineSpacing},${e.alignment},${e.hangingIndent}`;
|
|
3176
|
+
return `^FT${e.x},${e.y}${r}${s}^FD${t}^FS`;
|
|
3170
3177
|
}
|
|
3171
3178
|
function Xs(e, t) {
|
|
3172
|
-
const n = t.split("\\&");
|
|
3173
|
-
return Qs(n,
|
|
3179
|
+
const n = t.split("\\&"), r = e.charsPerLine ?? 0;
|
|
3180
|
+
return Qs(n, r);
|
|
3174
3181
|
}
|
|
3175
3182
|
function Qs(e, t) {
|
|
3176
3183
|
if (t <= 0)
|
|
@@ -3202,27 +3209,27 @@ export {
|
|
|
3202
3209
|
$s as ReverseMode,
|
|
3203
3210
|
Ds as SourceType,
|
|
3204
3211
|
Ps as TextAlignment,
|
|
3205
|
-
|
|
3212
|
+
V as TextTransformation,
|
|
3206
3213
|
ms as ThermalMediaType,
|
|
3207
3214
|
zt as VerticalAlignment,
|
|
3208
|
-
|
|
3215
|
+
xs as YesNo,
|
|
3209
3216
|
Is as allMediaModeSchema,
|
|
3210
|
-
qs as applyVerticalAlignment,
|
|
3211
3217
|
ps as backfeedActionSchema,
|
|
3212
3218
|
wt as badgeSchema,
|
|
3213
3219
|
Ls as barcodeFieldSchema,
|
|
3214
3220
|
Xs as countLines,
|
|
3215
3221
|
Vs as fieldSchema,
|
|
3216
3222
|
yt as fontOrientationSchema,
|
|
3223
|
+
Bs as fontSchema,
|
|
3217
3224
|
sc as generate,
|
|
3218
|
-
|
|
3225
|
+
Gs as getFieldValue,
|
|
3219
3226
|
hs as mediaTypeSchema,
|
|
3220
3227
|
ys as mirrorModeSchema,
|
|
3221
3228
|
Ss as postPrintModeSchema,
|
|
3222
3229
|
Es as prepeelModeSchema,
|
|
3223
3230
|
ws as printDensityAdjustmentSchema,
|
|
3224
3231
|
vs as printOrientationSchema,
|
|
3225
|
-
|
|
3232
|
+
Cs as qrCodeErrorCorrectionSchema,
|
|
3226
3233
|
Js as qrcodeFieldSchema,
|
|
3227
3234
|
ks as reverseModeSchema,
|
|
3228
3235
|
Fs as sourceTypeSchema,
|
|
@@ -3234,5 +3241,5 @@ export {
|
|
|
3234
3241
|
ic as validateBadgeOrThrow,
|
|
3235
3242
|
Rs as verticalAlignmentSchema,
|
|
3236
3243
|
rc as wordWidthSchema,
|
|
3237
|
-
|
|
3244
|
+
ue as yesNoSchema
|
|
3238
3245
|
};
|