@dcc-bs/communication.bs.js 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,17 @@
1
+ class K extends Error {
2
+ $type = "ApiError";
3
+ errorId;
4
+ debugMessage;
5
+ status;
6
+ constructor(n, r, o) {
7
+ super(`API Error: ${n} (status: ${r})`), this.errorId = n, this.status = r, this.debugMessage = o;
8
+ }
9
+ }
10
+ class os extends K {
11
+ constructor(n, r) {
12
+ super("invalid_json_response", n, JSON.stringify(r));
13
+ }
14
+ }
1
15
  const si = Object.freeze({
2
16
  status: "aborted"
3
17
  });
@@ -43,18 +57,18 @@ const at = {};
43
57
  function E(e) {
44
58
  return e && Object.assign(at, e), at;
45
59
  }
46
- function os(e) {
47
- return e;
48
- }
49
60
  function as(e) {
50
61
  return e;
51
62
  }
52
63
  function us(e) {
64
+ return e;
53
65
  }
54
66
  function cs(e) {
55
- throw new Error();
56
67
  }
57
68
  function ss(e) {
69
+ throw new Error();
70
+ }
71
+ function ls(e) {
58
72
  }
59
73
  function tn(e) {
60
74
  const n = Object.values(e).filter((o) => typeof o == "number");
@@ -113,7 +127,7 @@ function z(e, n, r) {
113
127
  function $t(e) {
114
128
  return Object.create(Object.getPrototypeOf(e), Object.getOwnPropertyDescriptors(e));
115
129
  }
116
- function V(e, n, r) {
130
+ function B(e, n, r) {
117
131
  Object.defineProperty(e, n, {
118
132
  value: r,
119
133
  writable: !0,
@@ -129,13 +143,13 @@ function re(...e) {
129
143
  }
130
144
  return Object.defineProperties({}, n);
131
145
  }
132
- function ls(e) {
146
+ function ds(e) {
133
147
  return re(e._zod.def);
134
148
  }
135
- function ds(e, n) {
149
+ function ms(e, n) {
136
150
  return n ? n.reduce((r, o) => r?.[o], e) : e;
137
151
  }
138
- function ms(e) {
152
+ function fs(e) {
139
153
  const n = Object.keys(e), r = n.map((o) => e[o]);
140
154
  return Promise.all(r).then((o) => {
141
155
  const t = {};
@@ -144,7 +158,7 @@ function ms(e) {
144
158
  return t;
145
159
  });
146
160
  }
147
- function fs(e = 10) {
161
+ function ps(e = 10) {
148
162
  const n = "abcdefghijklmnopqrstuvwxyz";
149
163
  let r = "";
150
164
  for (let o = 0; o < e; o++)
@@ -181,13 +195,13 @@ function se(e) {
181
195
  function _t(e) {
182
196
  return se(e) ? { ...e } : Array.isArray(e) ? [...e] : e;
183
197
  }
184
- function ps(e) {
198
+ function vs(e) {
185
199
  let n = 0;
186
200
  for (const r in e)
187
201
  Object.prototype.hasOwnProperty.call(e, r) && n++;
188
202
  return n;
189
203
  }
190
- const vs = (e) => {
204
+ const gs = (e) => {
191
205
  const n = typeof e;
192
206
  switch (n) {
193
207
  case "undefined":
@@ -230,7 +244,7 @@ function p(e) {
230
244
  }
231
245
  return delete n.message, typeof n.error == "string" ? { ...n, error: () => n.error } : n;
232
246
  }
233
- function gs(e) {
247
+ function hs(e) {
234
248
  let n;
235
249
  return new Proxy({}, {
236
250
  get(r, o, t) {
@@ -281,7 +295,7 @@ function hi(e, n) {
281
295
  throw new Error(`Unrecognized key: "${i}"`);
282
296
  n[i] && (t[i] = r.shape[i]);
283
297
  }
284
- return V(this, "shape", t), t;
298
+ return B(this, "shape", t), t;
285
299
  },
286
300
  checks: []
287
301
  });
@@ -296,7 +310,7 @@ function $i(e, n) {
296
310
  throw new Error(`Unrecognized key: "${i}"`);
297
311
  n[i] && delete t[i];
298
312
  }
299
- return V(this, "shape", t), t;
313
+ return B(this, "shape", t), t;
300
314
  },
301
315
  checks: []
302
316
  });
@@ -311,7 +325,7 @@ function _i(e, n) {
311
325
  const t = re(e._zod.def, {
312
326
  get shape() {
313
327
  const i = { ...e._zod.def.shape, ...n };
314
- return V(this, "shape", i), i;
328
+ return B(this, "shape", i), i;
315
329
  },
316
330
  checks: []
317
331
  });
@@ -324,7 +338,7 @@ function bi(e, n) {
324
338
  ...e._zod.def,
325
339
  get shape() {
326
340
  const o = { ...e._zod.def.shape, ...n };
327
- return V(this, "shape", o), o;
341
+ return B(this, "shape", o), o;
328
342
  },
329
343
  checks: e._zod.def.checks
330
344
  };
@@ -334,7 +348,7 @@ function yi(e, n) {
334
348
  const r = re(e._zod.def, {
335
349
  get shape() {
336
350
  const o = { ...e._zod.def.shape, ...n._zod.def.shape };
337
- return V(this, "shape", o), o;
351
+ return B(this, "shape", o), o;
338
352
  },
339
353
  get catchall() {
340
354
  return n._zod.def.catchall;
@@ -363,7 +377,7 @@ function ki(e, n, r) {
363
377
  type: "optional",
364
378
  innerType: t[a]
365
379
  }) : t[a];
366
- return V(this, "shape", i), i;
380
+ return B(this, "shape", i), i;
367
381
  },
368
382
  checks: []
369
383
  });
@@ -388,7 +402,7 @@ function wi(e, n, r) {
388
402
  type: "nonoptional",
389
403
  innerType: t[a]
390
404
  });
391
- return V(this, "shape", i), i;
405
+ return B(this, "shape", i), i;
392
406
  },
393
407
  checks: []
394
408
  });
@@ -402,7 +416,7 @@ function oe(e, n = 0) {
402
416
  return !0;
403
417
  return !1;
404
418
  }
405
- function K(e, n) {
419
+ function W(e, n) {
406
420
  return n.map((r) => {
407
421
  var o;
408
422
  return (o = r).path ?? (o.path = []), r.path.unshift(e), r;
@@ -411,7 +425,7 @@ function K(e, n) {
411
425
  function je(e) {
412
426
  return typeof e == "string" ? e : e?.message;
413
427
  }
414
- function G(e, n, r) {
428
+ function V(e, n, r) {
415
429
  const o = { ...e, path: e.path ?? [] };
416
430
  if (!e.message) {
417
431
  const t = je(e.inst?._zod.def?.error?.(e)) ?? je(n?.error?.(e)) ?? je(r.customError?.(e)) ?? je(r.localeError?.(e)) ?? "Invalid input";
@@ -434,7 +448,7 @@ function _e(...e) {
434
448
  inst: o
435
449
  } : { ...n };
436
450
  }
437
- function hs(e) {
451
+ function $s(e) {
438
452
  return Object.entries(e).filter(([n, r]) => Number.isNaN(Number.parseInt(n, 10))).map((n) => n[1]);
439
453
  }
440
454
  function Ii(e) {
@@ -449,14 +463,14 @@ function zi(e) {
449
463
  n += String.fromCharCode(e[r]);
450
464
  return btoa(n);
451
465
  }
452
- function $s(e) {
466
+ function _s(e) {
453
467
  const n = e.replace(/-/g, "+").replace(/_/g, "/"), r = "=".repeat((4 - n.length % 4) % 4);
454
468
  return Ii(n + r);
455
469
  }
456
- function _s(e) {
470
+ function bs(e) {
457
471
  return zi(e).replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "");
458
472
  }
459
- function bs(e) {
473
+ function ys(e) {
460
474
  const n = e.replace(/^0x/, "");
461
475
  if (n.length % 2 !== 0)
462
476
  throw new Error("Invalid hex string length");
@@ -465,47 +479,47 @@ function bs(e) {
465
479
  r[o / 2] = Number.parseInt(n.slice(o, o + 2), 16);
466
480
  return r;
467
481
  }
468
- function ys(e) {
482
+ function ks(e) {
469
483
  return Array.from(e).map((n) => n.toString(16).padStart(2, "0")).join("");
470
484
  }
471
- class ks {
485
+ class ws {
472
486
  constructor(...n) {
473
487
  }
474
488
  }
475
489
  const Si = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
476
490
  __proto__: null,
477
491
  BIGINT_FORMAT_RANGES: gi,
478
- Class: ks,
492
+ Class: ws,
479
493
  NUMBER_FORMAT_RANGES: vi,
480
494
  aborted: oe,
481
495
  allowsEval: mi,
482
- assert: ss,
483
- assertEqual: os,
484
- assertIs: us,
485
- assertNever: cs,
486
- assertNotEqual: as,
487
- assignProp: V,
496
+ assert: ls,
497
+ assertEqual: as,
498
+ assertIs: cs,
499
+ assertNever: ss,
500
+ assertNotEqual: us,
501
+ assignProp: B,
488
502
  base64ToUint8Array: Ii,
489
- base64urlToUint8Array: $s,
503
+ base64urlToUint8Array: _s,
490
504
  cached: Ae,
491
505
  captureStackTrace: nn,
492
- cleanEnum: hs,
506
+ cleanEnum: $s,
493
507
  cleanRegex: ht,
494
508
  clone: C,
495
- cloneDef: ls,
496
- createTransparentProxy: gs,
509
+ cloneDef: ds,
510
+ createTransparentProxy: hs,
497
511
  defineLazy: z,
498
512
  esc: Mt,
499
513
  escapeRegex: ee,
500
514
  extend: _i,
501
- finalizeIssue: G,
515
+ finalizeIssue: V,
502
516
  floatSafeRemainder: di,
503
- getElementAtPath: ds,
517
+ getElementAtPath: ms,
504
518
  getEnumValues: tn,
505
519
  getLengthableOrigin: yt,
506
- getParsedType: vs,
520
+ getParsedType: gs,
507
521
  getSizableOrigin: bt,
508
- hexToUint8Array: bs,
522
+ hexToUint8Array: ys,
509
523
  isObject: $e,
510
524
  isPlainObject: se,
511
525
  issue: _e,
@@ -515,24 +529,24 @@ const Si = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
515
529
  mergeDefs: re,
516
530
  normalizeParams: p,
517
531
  nullish: me,
518
- numKeys: ps,
532
+ numKeys: vs,
519
533
  objectClone: $t,
520
534
  omit: $i,
521
535
  optionalKeys: pi,
522
536
  partial: ki,
523
537
  pick: hi,
524
- prefixIssues: K,
538
+ prefixIssues: W,
525
539
  primitiveTypes: fi,
526
- promiseAllObject: ms,
540
+ promiseAllObject: fs,
527
541
  propertyKeyTypes: ct,
528
- randomString: fs,
542
+ randomString: ps,
529
543
  required: wi,
530
544
  safeExtend: bi,
531
545
  shallowClone: _t,
532
546
  stringifyPrimitive: y,
533
547
  uint8ArrayToBase64: zi,
534
- uint8ArrayToBase64url: _s,
535
- uint8ArrayToHex: ys,
548
+ uint8ArrayToBase64url: bs,
549
+ uint8ArrayToHex: ks,
536
550
  unwrapMessage: je
537
551
  }, Symbol.toStringTag, { value: "Module" })), ji = (e, n) => {
538
552
  e.name = "$ZodError", Object.defineProperty(e, "_zod", {
@@ -620,7 +634,7 @@ const Re = (e) => (n, r, o, t) => {
620
634
  if (a instanceof Promise)
621
635
  throw new ue();
622
636
  if (a.issues.length) {
623
- const u = new (t?.Err ?? e)(a.issues.map((c) => G(c, i, E())));
637
+ const u = new (t?.Err ?? e)(a.issues.map((c) => V(c, i, E())));
624
638
  throw nn(u, t?.callee), u;
625
639
  }
626
640
  return a.value;
@@ -628,7 +642,7 @@ const Re = (e) => (n, r, o, t) => {
628
642
  const i = o ? Object.assign(o, { async: !0 }) : { async: !0 };
629
643
  let a = n._zod.run({ value: r, issues: [] }, i);
630
644
  if (a instanceof Promise && (a = await a), a.issues.length) {
631
- const u = new (t?.Err ?? e)(a.issues.map((c) => G(c, i, E())));
645
+ const u = new (t?.Err ?? e)(a.issues.map((c) => V(c, i, E())));
632
646
  throw nn(u, t?.callee), u;
633
647
  }
634
648
  return a.value;
@@ -638,30 +652,30 @@ const Re = (e) => (n, r, o, t) => {
638
652
  throw new ue();
639
653
  return i.issues.length ? {
640
654
  success: !1,
641
- error: new (e ?? rn)(i.issues.map((a) => G(a, t, E())))
655
+ error: new (e ?? rn)(i.issues.map((a) => V(a, t, E())))
642
656
  } : { success: !0, data: i.value };
643
657
  }, Ni = /* @__PURE__ */ Le(F), Ce = (e) => async (n, r, o) => {
644
658
  const t = o ? Object.assign(o, { async: !0 }) : { async: !0 };
645
659
  let i = n._zod.run({ value: r, issues: [] }, t);
646
660
  return i instanceof Promise && (i = await i), i.issues.length ? {
647
661
  success: !1,
648
- error: new e(i.issues.map((a) => G(a, t, E())))
662
+ error: new e(i.issues.map((a) => V(a, t, E())))
649
663
  } : { success: !0, data: i.value };
650
664
  }, Pi = /* @__PURE__ */ Ce(F), un = (e) => (n, r, o) => {
651
665
  const t = o ? Object.assign(o, { direction: "backward" }) : { direction: "backward" };
652
666
  return Re(e)(n, r, t);
653
- }, ws = /* @__PURE__ */ un(F), cn = (e) => (n, r, o) => Re(e)(n, r, o), Is = /* @__PURE__ */ cn(F), sn = (e) => async (n, r, o) => {
667
+ }, Is = /* @__PURE__ */ un(F), cn = (e) => (n, r, o) => Re(e)(n, r, o), zs = /* @__PURE__ */ cn(F), sn = (e) => async (n, r, o) => {
654
668
  const t = o ? Object.assign(o, { direction: "backward" }) : { direction: "backward" };
655
669
  return Fe(e)(n, r, t);
656
- }, zs = /* @__PURE__ */ sn(F), ln = (e) => async (n, r, o) => Fe(e)(n, r, o), Ss = /* @__PURE__ */ ln(F), dn = (e) => (n, r, o) => {
670
+ }, Ss = /* @__PURE__ */ sn(F), ln = (e) => async (n, r, o) => Fe(e)(n, r, o), js = /* @__PURE__ */ ln(F), dn = (e) => (n, r, o) => {
657
671
  const t = o ? Object.assign(o, { direction: "backward" }) : { direction: "backward" };
658
672
  return Le(e)(n, r, t);
659
- }, js = /* @__PURE__ */ dn(F), mn = (e) => (n, r, o) => Le(e)(n, r, o), xs = /* @__PURE__ */ mn(F), fn = (e) => async (n, r, o) => {
673
+ }, xs = /* @__PURE__ */ dn(F), mn = (e) => (n, r, o) => Le(e)(n, r, o), Os = /* @__PURE__ */ mn(F), fn = (e) => async (n, r, o) => {
660
674
  const t = o ? Object.assign(o, { direction: "backward" }) : { direction: "backward" };
661
675
  return Ce(e)(n, r, t);
662
- }, Os = /* @__PURE__ */ fn(F), pn = (e) => async (n, r, o) => Ce(e)(n, r, o), Us = /* @__PURE__ */ pn(F), Di = /^[cC][^\s-]{8,}$/, Ti = /^[0-9a-z]+$/, Zi = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, Ei = /^[0-9a-vA-V]{20}$/, Ai = /^[A-Za-z0-9]{27}$/, Ri = /^[a-zA-Z0-9_-]{21}$/, Fi = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, Ns = /^[-+]?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)?)??$/, Li = /^([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})$/, be = (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)$/, Ps = /* @__PURE__ */ be(4), Ds = /* @__PURE__ */ be(6), Ts = /* @__PURE__ */ be(7), Ci = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, Zs = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/, Es = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/, Mi = /^[^\s@"]{1,64}@[^\s@]{1,255}$/u, As = Mi, Rs = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/, Fs = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
676
+ }, Us = /* @__PURE__ */ fn(F), pn = (e) => async (n, r, o) => Ce(e)(n, r, o), Ns = /* @__PURE__ */ pn(F), Di = /^[cC][^\s-]{8,}$/, Ti = /^[0-9a-z]+$/, Zi = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, Ei = /^[0-9a-vA-V]{20}$/, Ai = /^[A-Za-z0-9]{27}$/, Ri = /^[a-zA-Z0-9_-]{21}$/, Fi = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, Ps = /^[-+]?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)?)??$/, Li = /^([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})$/, be = (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)$/, Ds = /* @__PURE__ */ be(4), Ts = /* @__PURE__ */ be(6), Zs = /* @__PURE__ */ be(7), Ci = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, Es = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/, As = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/, Mi = /^[^\s@"]{1,64}@[^\s@]{1,255}$/u, Rs = Mi, Fs = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/, Ls = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
663
677
  function Ji() {
664
- return new RegExp(Fs, "u");
678
+ return new RegExp(Ls, "u");
665
679
  }
666
680
  const Ki = /^(?:(?: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])$/, Wi = /^(([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}|:))$/, Gi = /^((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])$/, Vi = /^(([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])$/, Bi = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/, vn = /^[A-Za-z0-9_-]*$/, gn = /^(?=.{1,253}\.?$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[-0-9a-zA-Z]{0,61}[0-9a-zA-Z])?)*\.?$/, qi = /^([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}$/, Xi = /^\+(?:[0-9]){6,14}[0-9]$/, Yi = "(?:(?:\\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])))", Hi = /* @__PURE__ */ new RegExp(`^${Yi}$`);
667
681
  function Qi(e) {
@@ -687,13 +701,13 @@ function Me(e, n) {
687
701
  function Je(e) {
688
702
  return new RegExp(`^[A-Za-z0-9_-]{${e}}$`);
689
703
  }
690
- const Ls = /^[0-9a-fA-F]{32}$/, Cs = /* @__PURE__ */ Me(22, "=="), Ms = /* @__PURE__ */ Je(22), Js = /^[0-9a-fA-F]{40}$/, Ks = /* @__PURE__ */ Me(27, "="), Ws = /* @__PURE__ */ Je(27), Gs = /^[0-9a-fA-F]{64}$/, Vs = /* @__PURE__ */ Me(43, "="), Bs = /* @__PURE__ */ Je(43), qs = /^[0-9a-fA-F]{96}$/, Xs = /* @__PURE__ */ Me(64, ""), Ys = /* @__PURE__ */ Je(64), Hs = /^[0-9a-fA-F]{128}$/, Qs = /* @__PURE__ */ Me(86, "=="), el = /* @__PURE__ */ Je(86), hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
704
+ const Cs = /^[0-9a-fA-F]{32}$/, Ms = /* @__PURE__ */ Me(22, "=="), Js = /* @__PURE__ */ Je(22), Ks = /^[0-9a-fA-F]{40}$/, Ws = /* @__PURE__ */ Me(27, "="), Gs = /* @__PURE__ */ Je(27), Vs = /^[0-9a-fA-F]{64}$/, Bs = /* @__PURE__ */ Me(43, "="), qs = /* @__PURE__ */ Je(43), Xs = /^[0-9a-fA-F]{96}$/, Ys = /* @__PURE__ */ Me(64, ""), Hs = /* @__PURE__ */ Je(64), Qs = /^[0-9a-fA-F]{128}$/, el = /* @__PURE__ */ Me(86, "=="), tl = /* @__PURE__ */ Je(86), hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
691
705
  __proto__: null,
692
706
  base64: Bi,
693
707
  base64url: vn,
694
708
  bigint: ro,
695
709
  boolean: ao,
696
- browserEmail: Rs,
710
+ browserEmail: Fs,
697
711
  cidrv4: Gi,
698
712
  cidrv6: Vi,
699
713
  cuid: Di,
@@ -705,36 +719,36 @@ const Ls = /^[0-9a-fA-F]{32}$/, Cs = /* @__PURE__ */ Me(22, "=="), Ms = /* @__PU
705
719
  e164: Xi,
706
720
  email: Ci,
707
721
  emoji: Ji,
708
- extendedDuration: Ns,
722
+ extendedDuration: Ps,
709
723
  guid: Li,
710
724
  hex: mo,
711
725
  hostname: gn,
712
- html5Email: Zs,
713
- idnEmail: As,
726
+ html5Email: Es,
727
+ idnEmail: Rs,
714
728
  integer: io,
715
729
  ipv4: Ki,
716
730
  ipv6: Wi,
717
731
  ksuid: Ai,
718
732
  lowercase: so,
719
- md5_base64: Cs,
720
- md5_base64url: Ms,
721
- md5_hex: Ls,
733
+ md5_base64: Ms,
734
+ md5_base64url: Js,
735
+ md5_hex: Cs,
722
736
  nanoid: Ri,
723
737
  null: uo,
724
738
  number: oo,
725
- rfc5322Email: Es,
726
- sha1_base64: Ks,
727
- sha1_base64url: Ws,
728
- sha1_hex: Js,
729
- sha256_base64: Vs,
730
- sha256_base64url: Bs,
731
- sha256_hex: Gs,
732
- sha384_base64: Xs,
733
- sha384_base64url: Ys,
734
- sha384_hex: qs,
735
- sha512_base64: Qs,
736
- sha512_base64url: el,
737
- sha512_hex: Hs,
739
+ rfc5322Email: As,
740
+ sha1_base64: Ws,
741
+ sha1_base64url: Gs,
742
+ sha1_hex: Ks,
743
+ sha256_base64: Bs,
744
+ sha256_base64url: qs,
745
+ sha256_hex: Vs,
746
+ sha384_base64: Ys,
747
+ sha384_base64url: Hs,
748
+ sha384_hex: Xs,
749
+ sha512_base64: el,
750
+ sha512_base64url: tl,
751
+ sha512_hex: Qs,
738
752
  string: no,
739
753
  time: eo,
740
754
  ulid: Zi,
@@ -742,9 +756,9 @@ const Ls = /^[0-9a-fA-F]{32}$/, Cs = /* @__PURE__ */ Me(22, "=="), Ms = /* @__PU
742
756
  unicodeEmail: Mi,
743
757
  uppercase: lo,
744
758
  uuid: be,
745
- uuid4: Ps,
746
- uuid6: Ds,
747
- uuid7: Ts,
759
+ uuid4: Ds,
760
+ uuid6: Ts,
761
+ uuid7: Zs,
748
762
  xid: Ei
749
763
  }, Symbol.toStringTag, { value: "Module" })), P = /* @__PURE__ */ s("$ZodCheck", (e, n) => {
750
764
  var r;
@@ -1102,7 +1116,7 @@ const Ls = /^[0-9a-fA-F]{32}$/, Cs = /* @__PURE__ */ Me(22, "=="), Ms = /* @__PU
1102
1116
  };
1103
1117
  });
1104
1118
  function Vr(e, n, r) {
1105
- e.issues.length && n.issues.push(...K(r, e.issues));
1119
+ e.issues.length && n.issues.push(...W(r, e.issues));
1106
1120
  }
1107
1121
  const Oo = /* @__PURE__ */ s("$ZodCheckProperty", (e, n) => {
1108
1122
  P.init(e, n), e._zod.check = (r) => {
@@ -1576,7 +1590,7 @@ const ia = /* @__PURE__ */ s("$ZodJWT", (e, n) => {
1576
1590
  };
1577
1591
  });
1578
1592
  function Br(e, n, r) {
1579
- e.issues.length && n.issues.push(...K(r, e.issues)), n.value[r] = e.value;
1593
+ e.issues.length && n.issues.push(...W(r, e.issues)), n.value[r] = e.value;
1580
1594
  }
1581
1595
  const ga = /* @__PURE__ */ s("$ZodArray", (e, n) => {
1582
1596
  k.init(e, n), e._zod.parse = (r, o) => {
@@ -1601,7 +1615,7 @@ const ga = /* @__PURE__ */ s("$ZodArray", (e, n) => {
1601
1615
  };
1602
1616
  });
1603
1617
  function st(e, n, r, o) {
1604
- e.issues.length && n.issues.push(...K(r, e.issues)), e.value === void 0 ? r in o && (n.value[r] = void 0) : n.value[r] = e.value;
1618
+ e.issues.length && n.issues.push(...W(r, e.issues)), e.value === void 0 ? r in o && (n.value[r] = void 0) : n.value[r] = e.value;
1605
1619
  }
1606
1620
  function ha(e) {
1607
1621
  const n = Object.keys(e.shape);
@@ -1732,7 +1746,7 @@ function qr(e, n, r, o) {
1732
1746
  code: "invalid_union",
1733
1747
  input: n.value,
1734
1748
  inst: r,
1735
- errors: e.map((i) => i.issues.map((a) => G(a, o, E())))
1749
+ errors: e.map((i) => i.issues.map((a) => V(a, o, E())))
1736
1750
  }), n);
1737
1751
  }
1738
1752
  const In = /* @__PURE__ */ s("$ZodUnion", (e, n) => {
@@ -1915,7 +1929,7 @@ const zn = /* @__PURE__ */ s("$ZodTuple", (e, n) => {
1915
1929
  };
1916
1930
  });
1917
1931
  function He(e, n, r) {
1918
- e.issues.length && n.issues.push(...K(r, e.issues)), n.value[r] = e.value;
1932
+ e.issues.length && n.issues.push(...W(r, e.issues)), n.value[r] = e.value;
1919
1933
  }
1920
1934
  const wa = /* @__PURE__ */ s("$ZodRecord", (e, n) => {
1921
1935
  k.init(e, n), e._zod.parse = (r, o) => {
@@ -1935,8 +1949,8 @@ const wa = /* @__PURE__ */ s("$ZodRecord", (e, n) => {
1935
1949
  if (typeof c == "string" || typeof c == "number" || typeof c == "symbol") {
1936
1950
  const l = n.valueType._zod.run({ value: t[c], issues: [] }, o);
1937
1951
  l instanceof Promise ? i.push(l.then((f) => {
1938
- f.issues.length && r.issues.push(...K(c, f.issues)), r.value[c] = f.value;
1939
- })) : (l.issues.length && r.issues.push(...K(c, l.issues)), r.value[c] = l.value);
1952
+ f.issues.length && r.issues.push(...W(c, f.issues)), r.value[c] = f.value;
1953
+ })) : (l.issues.length && r.issues.push(...W(c, l.issues)), r.value[c] = l.value);
1940
1954
  }
1941
1955
  let u;
1942
1956
  for (const c in t)
@@ -1959,7 +1973,7 @@ const wa = /* @__PURE__ */ s("$ZodRecord", (e, n) => {
1959
1973
  r.issues.push({
1960
1974
  code: "invalid_key",
1961
1975
  origin: "record",
1962
- issues: u.issues.map((l) => G(l, o, E())),
1976
+ issues: u.issues.map((l) => V(l, o, E())),
1963
1977
  input: a,
1964
1978
  path: [a],
1965
1979
  inst: e
@@ -1968,8 +1982,8 @@ const wa = /* @__PURE__ */ s("$ZodRecord", (e, n) => {
1968
1982
  }
1969
1983
  const c = n.valueType._zod.run({ value: t[a], issues: [] }, o);
1970
1984
  c instanceof Promise ? i.push(c.then((l) => {
1971
- l.issues.length && r.issues.push(...K(a, l.issues)), r.value[u.value] = l.value;
1972
- })) : (c.issues.length && r.issues.push(...K(a, c.issues)), r.value[u.value] = c.value);
1985
+ l.issues.length && r.issues.push(...W(a, l.issues)), r.value[u.value] = l.value;
1986
+ })) : (c.issues.length && r.issues.push(...W(a, c.issues)), r.value[u.value] = c.value);
1973
1987
  }
1974
1988
  }
1975
1989
  return i.length ? Promise.all(i).then(() => r) : r;
@@ -1996,19 +2010,19 @@ const wa = /* @__PURE__ */ s("$ZodRecord", (e, n) => {
1996
2010
  };
1997
2011
  });
1998
2012
  function Yr(e, n, r, o, t, i, a) {
1999
- e.issues.length && (ct.has(typeof o) ? r.issues.push(...K(o, e.issues)) : r.issues.push({
2013
+ e.issues.length && (ct.has(typeof o) ? r.issues.push(...W(o, e.issues)) : r.issues.push({
2000
2014
  code: "invalid_key",
2001
2015
  origin: "map",
2002
2016
  input: t,
2003
2017
  inst: i,
2004
- issues: e.issues.map((u) => G(u, a, E()))
2005
- })), n.issues.length && (ct.has(typeof o) ? r.issues.push(...K(o, n.issues)) : r.issues.push({
2018
+ issues: e.issues.map((u) => V(u, a, E()))
2019
+ })), n.issues.length && (ct.has(typeof o) ? r.issues.push(...W(o, n.issues)) : r.issues.push({
2006
2020
  origin: "map",
2007
2021
  code: "invalid_element",
2008
2022
  input: t,
2009
2023
  inst: i,
2010
2024
  key: o,
2011
- issues: n.issues.map((u) => G(u, a, E()))
2025
+ issues: n.issues.map((u) => V(u, a, E()))
2012
2026
  })), r.value.set(e.value, n.value);
2013
2027
  }
2014
2028
  const za = /* @__PURE__ */ s("$ZodSet", (e, n) => {
@@ -2145,13 +2159,13 @@ const Za = /* @__PURE__ */ s("$ZodSuccess", (e, n) => {
2145
2159
  return t instanceof Promise ? t.then((i) => (r.value = i.value, i.issues.length && (r.value = n.catchValue({
2146
2160
  ...r,
2147
2161
  error: {
2148
- issues: i.issues.map((a) => G(a, o, E()))
2162
+ issues: i.issues.map((a) => V(a, o, E()))
2149
2163
  },
2150
2164
  input: r.value
2151
2165
  }), r.issues = []), r)) : (r.value = t.value, t.issues.length && (r.value = n.catchValue({
2152
2166
  ...r,
2153
2167
  error: {
2154
- issues: t.issues.map((i) => G(i, o, E()))
2168
+ issues: t.issues.map((i) => V(i, o, E()))
2155
2169
  },
2156
2170
  input: r.value
2157
2171
  }), r.issues = []), r);
@@ -2308,7 +2322,7 @@ function ri(e, n, r, o) {
2308
2322
  o._zod.def.params && (t.params = o._zod.def.params), n.issues.push(_e(t));
2309
2323
  }
2310
2324
  }
2311
- const tl = () => {
2325
+ const nl = () => {
2312
2326
  const e = {
2313
2327
  string: { unit: "حرف", verb: "أن يحوي" },
2314
2328
  file: { unit: "بايت", verb: "أن يحوي" },
@@ -2396,12 +2410,12 @@ const tl = () => {
2396
2410
  }
2397
2411
  };
2398
2412
  };
2399
- function nl() {
2413
+ function rl() {
2400
2414
  return {
2401
- localeError: tl()
2415
+ localeError: nl()
2402
2416
  };
2403
2417
  }
2404
- const rl = () => {
2418
+ const il = () => {
2405
2419
  const e = {
2406
2420
  string: { unit: "simvol", verb: "olmalıdır" },
2407
2421
  file: { unit: "bayt", verb: "olmalıdır" },
@@ -2489,16 +2503,16 @@ const rl = () => {
2489
2503
  }
2490
2504
  };
2491
2505
  };
2492
- function il() {
2506
+ function ol() {
2493
2507
  return {
2494
- localeError: rl()
2508
+ localeError: il()
2495
2509
  };
2496
2510
  }
2497
2511
  function ii(e, n, r, o) {
2498
2512
  const t = Math.abs(e), i = t % 10, a = t % 100;
2499
2513
  return a >= 11 && a <= 19 ? o : i === 1 ? n : i >= 2 && i <= 4 ? r : o;
2500
2514
  }
2501
- const ol = () => {
2515
+ const al = () => {
2502
2516
  const e = {
2503
2517
  string: {
2504
2518
  unit: {
@@ -2622,12 +2636,12 @@ const ol = () => {
2622
2636
  }
2623
2637
  };
2624
2638
  };
2625
- function al() {
2639
+ function ul() {
2626
2640
  return {
2627
- localeError: ol()
2641
+ localeError: al()
2628
2642
  };
2629
2643
  }
2630
- const ul = () => {
2644
+ const cl = () => {
2631
2645
  const e = {
2632
2646
  string: { unit: "caràcters", verb: "contenir" },
2633
2647
  file: { unit: "bytes", verb: "contenir" },
@@ -2717,12 +2731,12 @@ const ul = () => {
2717
2731
  }
2718
2732
  };
2719
2733
  };
2720
- function cl() {
2734
+ function sl() {
2721
2735
  return {
2722
- localeError: ul()
2736
+ localeError: cl()
2723
2737
  };
2724
2738
  }
2725
- const sl = () => {
2739
+ const ll = () => {
2726
2740
  const e = {
2727
2741
  string: { unit: "znaků", verb: "mít" },
2728
2742
  file: { unit: "bajtů", verb: "mít" },
@@ -2822,12 +2836,12 @@ const sl = () => {
2822
2836
  }
2823
2837
  };
2824
2838
  };
2825
- function ll() {
2839
+ function dl() {
2826
2840
  return {
2827
- localeError: sl()
2841
+ localeError: ll()
2828
2842
  };
2829
2843
  }
2830
- const dl = () => {
2844
+ const ml = () => {
2831
2845
  const e = {
2832
2846
  string: { unit: "tegn", verb: "havde" },
2833
2847
  file: { unit: "bytes", verb: "havde" },
@@ -2920,12 +2934,12 @@ const dl = () => {
2920
2934
  }
2921
2935
  };
2922
2936
  };
2923
- function ml() {
2937
+ function fl() {
2924
2938
  return {
2925
- localeError: dl()
2939
+ localeError: ml()
2926
2940
  };
2927
2941
  }
2928
- const fl = () => {
2942
+ const pl = () => {
2929
2943
  const e = {
2930
2944
  string: { unit: "Zeichen", verb: "zu haben" },
2931
2945
  file: { unit: "Bytes", verb: "zu haben" },
@@ -3013,12 +3027,12 @@ const fl = () => {
3013
3027
  }
3014
3028
  };
3015
3029
  };
3016
- function pl() {
3030
+ function vl() {
3017
3031
  return {
3018
- localeError: fl()
3032
+ localeError: pl()
3019
3033
  };
3020
3034
  }
3021
- const vl = (e) => {
3035
+ const gl = (e) => {
3022
3036
  const n = typeof e;
3023
3037
  switch (n) {
3024
3038
  case "number":
@@ -3033,7 +3047,7 @@ const vl = (e) => {
3033
3047
  }
3034
3048
  }
3035
3049
  return n;
3036
- }, gl = () => {
3050
+ }, hl = () => {
3037
3051
  const e = {
3038
3052
  string: { unit: "characters", verb: "to have" },
3039
3053
  file: { unit: "bytes", verb: "to have" },
@@ -3076,7 +3090,7 @@ const vl = (e) => {
3076
3090
  return (o) => {
3077
3091
  switch (o.code) {
3078
3092
  case "invalid_type":
3079
- return `Invalid input: expected ${o.expected}, received ${vl(o.input)}`;
3093
+ return `Invalid input: expected ${o.expected}, received ${gl(o.input)}`;
3080
3094
  case "invalid_value":
3081
3095
  return o.values.length === 1 ? `Invalid input: expected ${y(o.values[0])}` : `Invalid option: expected one of ${v(o.values, "|")}`;
3082
3096
  case "too_big": {
@@ -3108,10 +3122,10 @@ const vl = (e) => {
3108
3122
  };
3109
3123
  function Wa() {
3110
3124
  return {
3111
- localeError: gl()
3125
+ localeError: hl()
3112
3126
  };
3113
3127
  }
3114
- const hl = (e) => {
3128
+ const $l = (e) => {
3115
3129
  const n = typeof e;
3116
3130
  switch (n) {
3117
3131
  case "number":
@@ -3126,7 +3140,7 @@ const hl = (e) => {
3126
3140
  }
3127
3141
  }
3128
3142
  return n;
3129
- }, $l = () => {
3143
+ }, _l = () => {
3130
3144
  const e = {
3131
3145
  string: { unit: "karaktrojn", verb: "havi" },
3132
3146
  file: { unit: "bajtojn", verb: "havi" },
@@ -3169,7 +3183,7 @@ const hl = (e) => {
3169
3183
  return (o) => {
3170
3184
  switch (o.code) {
3171
3185
  case "invalid_type":
3172
- return `Nevalida enigo: atendiĝis ${o.expected}, riceviĝis ${hl(o.input)}`;
3186
+ return `Nevalida enigo: atendiĝis ${o.expected}, riceviĝis ${$l(o.input)}`;
3173
3187
  case "invalid_value":
3174
3188
  return o.values.length === 1 ? `Nevalida enigo: atendiĝis ${y(o.values[0])}` : `Nevalida opcio: atendiĝis unu el ${v(o.values, "|")}`;
3175
3189
  case "too_big": {
@@ -3199,12 +3213,12 @@ const hl = (e) => {
3199
3213
  }
3200
3214
  };
3201
3215
  };
3202
- function _l() {
3216
+ function bl() {
3203
3217
  return {
3204
- localeError: $l()
3218
+ localeError: _l()
3205
3219
  };
3206
3220
  }
3207
- const bl = () => {
3221
+ const yl = () => {
3208
3222
  const e = {
3209
3223
  string: { unit: "caracteres", verb: "tener" },
3210
3224
  file: { unit: "bytes", verb: "tener" },
@@ -3315,12 +3329,12 @@ const bl = () => {
3315
3329
  }
3316
3330
  };
3317
3331
  };
3318
- function yl() {
3332
+ function kl() {
3319
3333
  return {
3320
- localeError: bl()
3334
+ localeError: yl()
3321
3335
  };
3322
3336
  }
3323
- const kl = () => {
3337
+ const wl = () => {
3324
3338
  const e = {
3325
3339
  string: { unit: "کاراکتر", verb: "داشته باشد" },
3326
3340
  file: { unit: "بایت", verb: "داشته باشد" },
@@ -3408,12 +3422,12 @@ const kl = () => {
3408
3422
  }
3409
3423
  };
3410
3424
  };
3411
- function wl() {
3425
+ function Il() {
3412
3426
  return {
3413
- localeError: kl()
3427
+ localeError: wl()
3414
3428
  };
3415
3429
  }
3416
- const Il = () => {
3430
+ const zl = () => {
3417
3431
  const e = {
3418
3432
  string: { unit: "merkkiä", subject: "merkkijonon" },
3419
3433
  file: { unit: "tavua", subject: "tiedoston" },
@@ -3505,12 +3519,12 @@ const Il = () => {
3505
3519
  }
3506
3520
  };
3507
3521
  };
3508
- function zl() {
3522
+ function Sl() {
3509
3523
  return {
3510
- localeError: Il()
3524
+ localeError: zl()
3511
3525
  };
3512
3526
  }
3513
- const Sl = () => {
3527
+ const jl = () => {
3514
3528
  const e = {
3515
3529
  string: { unit: "caractères", verb: "avoir" },
3516
3530
  file: { unit: "octets", verb: "avoir" },
@@ -3598,12 +3612,12 @@ const Sl = () => {
3598
3612
  }
3599
3613
  };
3600
3614
  };
3601
- function jl() {
3615
+ function xl() {
3602
3616
  return {
3603
- localeError: Sl()
3617
+ localeError: jl()
3604
3618
  };
3605
3619
  }
3606
- const xl = () => {
3620
+ const Ol = () => {
3607
3621
  const e = {
3608
3622
  string: { unit: "caractères", verb: "avoir" },
3609
3623
  file: { unit: "octets", verb: "avoir" },
@@ -3691,12 +3705,12 @@ const xl = () => {
3691
3705
  }
3692
3706
  };
3693
3707
  };
3694
- function Ol() {
3708
+ function Ul() {
3695
3709
  return {
3696
- localeError: xl()
3710
+ localeError: Ol()
3697
3711
  };
3698
3712
  }
3699
- const Ul = () => {
3713
+ const Nl = () => {
3700
3714
  const e = {
3701
3715
  string: { unit: "אותיות", verb: "לכלול" },
3702
3716
  file: { unit: "בייטים", verb: "לכלול" },
@@ -3785,12 +3799,12 @@ const Ul = () => {
3785
3799
  }
3786
3800
  };
3787
3801
  };
3788
- function Nl() {
3802
+ function Pl() {
3789
3803
  return {
3790
- localeError: Ul()
3804
+ localeError: Nl()
3791
3805
  };
3792
3806
  }
3793
- const Pl = () => {
3807
+ const Dl = () => {
3794
3808
  const e = {
3795
3809
  string: { unit: "karakter", verb: "legyen" },
3796
3810
  file: { unit: "byte", verb: "legyen" },
@@ -3879,12 +3893,12 @@ const Pl = () => {
3879
3893
  }
3880
3894
  };
3881
3895
  };
3882
- function Dl() {
3896
+ function Tl() {
3883
3897
  return {
3884
- localeError: Pl()
3898
+ localeError: Dl()
3885
3899
  };
3886
3900
  }
3887
- const Tl = () => {
3901
+ const Zl = () => {
3888
3902
  const e = {
3889
3903
  string: { unit: "karakter", verb: "memiliki" },
3890
3904
  file: { unit: "byte", verb: "memiliki" },
@@ -3972,12 +3986,12 @@ const Tl = () => {
3972
3986
  }
3973
3987
  };
3974
3988
  };
3975
- function Zl() {
3989
+ function El() {
3976
3990
  return {
3977
- localeError: Tl()
3991
+ localeError: Zl()
3978
3992
  };
3979
3993
  }
3980
- const El = (e) => {
3994
+ const Al = (e) => {
3981
3995
  const n = typeof e;
3982
3996
  switch (n) {
3983
3997
  case "number":
@@ -3992,7 +4006,7 @@ const El = (e) => {
3992
4006
  }
3993
4007
  }
3994
4008
  return n;
3995
- }, Al = () => {
4009
+ }, Rl = () => {
3996
4010
  const e = {
3997
4011
  string: { unit: "stafi", verb: "að hafa" },
3998
4012
  file: { unit: "bæti", verb: "að hafa" },
@@ -4035,7 +4049,7 @@ const El = (e) => {
4035
4049
  return (o) => {
4036
4050
  switch (o.code) {
4037
4051
  case "invalid_type":
4038
- return `Rangt gildi: Þú slóst inn ${El(o.input)} þar sem á að vera ${o.expected}`;
4052
+ return `Rangt gildi: Þú slóst inn ${Al(o.input)} þar sem á að vera ${o.expected}`;
4039
4053
  case "invalid_value":
4040
4054
  return o.values.length === 1 ? `Rangt gildi: gert ráð fyrir ${y(o.values[0])}` : `Ógilt val: má vera eitt af eftirfarandi ${v(o.values, "|")}`;
4041
4055
  case "too_big": {
@@ -4065,12 +4079,12 @@ const El = (e) => {
4065
4079
  }
4066
4080
  };
4067
4081
  };
4068
- function Rl() {
4082
+ function Fl() {
4069
4083
  return {
4070
- localeError: Al()
4084
+ localeError: Rl()
4071
4085
  };
4072
4086
  }
4073
- const Fl = () => {
4087
+ const Ll = () => {
4074
4088
  const e = {
4075
4089
  string: { unit: "caratteri", verb: "avere" },
4076
4090
  file: { unit: "byte", verb: "avere" },
@@ -4159,12 +4173,12 @@ const Fl = () => {
4159
4173
  }
4160
4174
  };
4161
4175
  };
4162
- function Ll() {
4176
+ function Cl() {
4163
4177
  return {
4164
- localeError: Fl()
4178
+ localeError: Ll()
4165
4179
  };
4166
4180
  }
4167
- const Cl = () => {
4181
+ const Ml = () => {
4168
4182
  const e = {
4169
4183
  string: { unit: "文字", verb: "である" },
4170
4184
  file: { unit: "バイト", verb: "である" },
@@ -4252,12 +4266,12 @@ const Cl = () => {
4252
4266
  }
4253
4267
  };
4254
4268
  };
4255
- function Ml() {
4269
+ function Jl() {
4256
4270
  return {
4257
- localeError: Cl()
4271
+ localeError: Ml()
4258
4272
  };
4259
4273
  }
4260
- const Jl = (e) => {
4274
+ const Kl = (e) => {
4261
4275
  const n = typeof e;
4262
4276
  switch (n) {
4263
4277
  case "number":
@@ -4279,7 +4293,7 @@ const Jl = (e) => {
4279
4293
  symbol: "symbol",
4280
4294
  function: "ფუნქცია"
4281
4295
  }[n] ?? n;
4282
- }, Kl = () => {
4296
+ }, Wl = () => {
4283
4297
  const e = {
4284
4298
  string: { unit: "სიმბოლო", verb: "უნდა შეიცავდეს" },
4285
4299
  file: { unit: "ბაიტი", verb: "უნდა შეიცავდეს" },
@@ -4322,7 +4336,7 @@ const Jl = (e) => {
4322
4336
  return (o) => {
4323
4337
  switch (o.code) {
4324
4338
  case "invalid_type":
4325
- return `არასწორი შეყვანა: მოსალოდნელი ${o.expected}, მიღებული ${Jl(o.input)}`;
4339
+ return `არასწორი შეყვანა: მოსალოდნელი ${o.expected}, მიღებული ${Kl(o.input)}`;
4326
4340
  case "invalid_value":
4327
4341
  return o.values.length === 1 ? `არასწორი შეყვანა: მოსალოდნელი ${y(o.values[0])}` : `არასწორი ვარიანტი: მოსალოდნელია ერთ-ერთი ${v(o.values, "|")}-დან`;
4328
4342
  case "too_big": {
@@ -4352,12 +4366,12 @@ const Jl = (e) => {
4352
4366
  }
4353
4367
  };
4354
4368
  };
4355
- function Wl() {
4369
+ function Gl() {
4356
4370
  return {
4357
- localeError: Kl()
4371
+ localeError: Wl()
4358
4372
  };
4359
4373
  }
4360
- const Gl = () => {
4374
+ const Vl = () => {
4361
4375
  const e = {
4362
4376
  string: { unit: "តួអក្សរ", verb: "គួរមាន" },
4363
4377
  file: { unit: "បៃ", verb: "គួរមាន" },
@@ -4447,13 +4461,13 @@ const Gl = () => {
4447
4461
  };
4448
4462
  function Ga() {
4449
4463
  return {
4450
- localeError: Gl()
4464
+ localeError: Vl()
4451
4465
  };
4452
4466
  }
4453
- function Vl() {
4467
+ function Bl() {
4454
4468
  return Ga();
4455
4469
  }
4456
- const Bl = () => {
4470
+ const ql = () => {
4457
4471
  const e = {
4458
4472
  string: { unit: "문자", verb: "to have" },
4459
4473
  file: { unit: "바이트", verb: "to have" },
@@ -4541,12 +4555,12 @@ const Bl = () => {
4541
4555
  }
4542
4556
  };
4543
4557
  };
4544
- function ql() {
4558
+ function Xl() {
4545
4559
  return {
4546
- localeError: Bl()
4560
+ localeError: ql()
4547
4561
  };
4548
4562
  }
4549
- const Xl = (e) => xe(typeof e, e), xe = (e, n = void 0) => {
4563
+ const Yl = (e) => xe(typeof e, e), xe = (e, n = void 0) => {
4550
4564
  switch (e) {
4551
4565
  case "number":
4552
4566
  return Number.isNaN(n) ? "NaN" : "skaičius";
@@ -4575,7 +4589,7 @@ function oi(e) {
4575
4589
  const n = Math.abs(e), r = n % 10, o = n % 100;
4576
4590
  return o >= 11 && o <= 19 || r === 0 ? "many" : r === 1 ? "one" : "few";
4577
4591
  }
4578
- const Yl = () => {
4592
+ const Hl = () => {
4579
4593
  const e = {
4580
4594
  string: {
4581
4595
  unit: {
@@ -4686,7 +4700,7 @@ const Yl = () => {
4686
4700
  return (o) => {
4687
4701
  switch (o.code) {
4688
4702
  case "invalid_type":
4689
- return `Gautas tipas ${Xl(o.input)}, o tikėtasi - ${xe(o.expected)}`;
4703
+ return `Gautas tipas ${Yl(o.input)}, o tikėtasi - ${xe(o.expected)}`;
4690
4704
  case "invalid_value":
4691
4705
  return o.values.length === 1 ? `Privalo būti ${y(o.values[0])}` : `Privalo būti vienas iš ${v(o.values, "|")} pasirinkimų`;
4692
4706
  case "too_big": {
@@ -4724,12 +4738,12 @@ const Yl = () => {
4724
4738
  }
4725
4739
  };
4726
4740
  };
4727
- function Hl() {
4741
+ function Ql() {
4728
4742
  return {
4729
- localeError: Yl()
4743
+ localeError: Hl()
4730
4744
  };
4731
4745
  }
4732
- const Ql = () => {
4746
+ const ed = () => {
4733
4747
  const e = {
4734
4748
  string: { unit: "знаци", verb: "да имаат" },
4735
4749
  file: { unit: "бајти", verb: "да имаат" },
@@ -4818,12 +4832,12 @@ const Ql = () => {
4818
4832
  }
4819
4833
  };
4820
4834
  };
4821
- function ed() {
4835
+ function td() {
4822
4836
  return {
4823
- localeError: Ql()
4837
+ localeError: ed()
4824
4838
  };
4825
4839
  }
4826
- const td = () => {
4840
+ const nd = () => {
4827
4841
  const e = {
4828
4842
  string: { unit: "aksara", verb: "mempunyai" },
4829
4843
  file: { unit: "bait", verb: "mempunyai" },
@@ -4911,12 +4925,12 @@ const td = () => {
4911
4925
  }
4912
4926
  };
4913
4927
  };
4914
- function nd() {
4928
+ function rd() {
4915
4929
  return {
4916
- localeError: td()
4930
+ localeError: nd()
4917
4931
  };
4918
4932
  }
4919
- const rd = () => {
4933
+ const id = () => {
4920
4934
  const e = {
4921
4935
  string: { unit: "tekens" },
4922
4936
  file: { unit: "bytes" },
@@ -5004,12 +5018,12 @@ const rd = () => {
5004
5018
  }
5005
5019
  };
5006
5020
  };
5007
- function id() {
5021
+ function od() {
5008
5022
  return {
5009
- localeError: rd()
5023
+ localeError: id()
5010
5024
  };
5011
5025
  }
5012
- const od = () => {
5026
+ const ad = () => {
5013
5027
  const e = {
5014
5028
  string: { unit: "tegn", verb: "å ha" },
5015
5029
  file: { unit: "bytes", verb: "å ha" },
@@ -5097,12 +5111,12 @@ const od = () => {
5097
5111
  }
5098
5112
  };
5099
5113
  };
5100
- function ad() {
5114
+ function ud() {
5101
5115
  return {
5102
- localeError: od()
5116
+ localeError: ad()
5103
5117
  };
5104
5118
  }
5105
- const ud = () => {
5119
+ const cd = () => {
5106
5120
  const e = {
5107
5121
  string: { unit: "harf", verb: "olmalıdır" },
5108
5122
  file: { unit: "bayt", verb: "olmalıdır" },
@@ -5191,12 +5205,12 @@ const ud = () => {
5191
5205
  }
5192
5206
  };
5193
5207
  };
5194
- function cd() {
5208
+ function sd() {
5195
5209
  return {
5196
- localeError: ud()
5210
+ localeError: cd()
5197
5211
  };
5198
5212
  }
5199
- const sd = () => {
5213
+ const ld = () => {
5200
5214
  const e = {
5201
5215
  string: { unit: "توکي", verb: "ولري" },
5202
5216
  file: { unit: "بایټس", verb: "ولري" },
@@ -5284,12 +5298,12 @@ const sd = () => {
5284
5298
  }
5285
5299
  };
5286
5300
  };
5287
- function ld() {
5301
+ function dd() {
5288
5302
  return {
5289
- localeError: sd()
5303
+ localeError: ld()
5290
5304
  };
5291
5305
  }
5292
- const dd = () => {
5306
+ const md = () => {
5293
5307
  const e = {
5294
5308
  string: { unit: "znaków", verb: "mieć" },
5295
5309
  file: { unit: "bajtów", verb: "mieć" },
@@ -5377,12 +5391,12 @@ const dd = () => {
5377
5391
  }
5378
5392
  };
5379
5393
  };
5380
- function md() {
5394
+ function fd() {
5381
5395
  return {
5382
- localeError: dd()
5396
+ localeError: md()
5383
5397
  };
5384
5398
  }
5385
- const fd = () => {
5399
+ const pd = () => {
5386
5400
  const e = {
5387
5401
  string: { unit: "caracteres", verb: "ter" },
5388
5402
  file: { unit: "bytes", verb: "ter" },
@@ -5470,16 +5484,16 @@ const fd = () => {
5470
5484
  }
5471
5485
  };
5472
5486
  };
5473
- function pd() {
5487
+ function vd() {
5474
5488
  return {
5475
- localeError: fd()
5489
+ localeError: pd()
5476
5490
  };
5477
5491
  }
5478
5492
  function ai(e, n, r, o) {
5479
5493
  const t = Math.abs(e), i = t % 10, a = t % 100;
5480
5494
  return a >= 11 && a <= 19 ? o : i === 1 ? n : i >= 2 && i <= 4 ? r : o;
5481
5495
  }
5482
- const vd = () => {
5496
+ const gd = () => {
5483
5497
  const e = {
5484
5498
  string: {
5485
5499
  unit: {
@@ -5603,12 +5617,12 @@ const vd = () => {
5603
5617
  }
5604
5618
  };
5605
5619
  };
5606
- function gd() {
5620
+ function hd() {
5607
5621
  return {
5608
- localeError: vd()
5622
+ localeError: gd()
5609
5623
  };
5610
5624
  }
5611
- const hd = () => {
5625
+ const $d = () => {
5612
5626
  const e = {
5613
5627
  string: { unit: "znakov", verb: "imeti" },
5614
5628
  file: { unit: "bajtov", verb: "imeti" },
@@ -5696,12 +5710,12 @@ const hd = () => {
5696
5710
  }
5697
5711
  };
5698
5712
  };
5699
- function $d() {
5713
+ function _d() {
5700
5714
  return {
5701
- localeError: hd()
5715
+ localeError: $d()
5702
5716
  };
5703
5717
  }
5704
- const _d = () => {
5718
+ const bd = () => {
5705
5719
  const e = {
5706
5720
  string: { unit: "tecken", verb: "att ha" },
5707
5721
  file: { unit: "bytes", verb: "att ha" },
@@ -5789,12 +5803,12 @@ const _d = () => {
5789
5803
  }
5790
5804
  };
5791
5805
  };
5792
- function bd() {
5806
+ function yd() {
5793
5807
  return {
5794
- localeError: _d()
5808
+ localeError: bd()
5795
5809
  };
5796
5810
  }
5797
- const yd = () => {
5811
+ const kd = () => {
5798
5812
  const e = {
5799
5813
  string: { unit: "எழுத்துக்கள்", verb: "கொண்டிருக்க வேண்டும்" },
5800
5814
  file: { unit: "பைட்டுகள்", verb: "கொண்டிருக்க வேண்டும்" },
@@ -5882,12 +5896,12 @@ const yd = () => {
5882
5896
  }
5883
5897
  };
5884
5898
  };
5885
- function kd() {
5899
+ function wd() {
5886
5900
  return {
5887
- localeError: yd()
5901
+ localeError: kd()
5888
5902
  };
5889
5903
  }
5890
- const wd = () => {
5904
+ const Id = () => {
5891
5905
  const e = {
5892
5906
  string: { unit: "ตัวอักษร", verb: "ควรมี" },
5893
5907
  file: { unit: "ไบต์", verb: "ควรมี" },
@@ -5975,12 +5989,12 @@ const wd = () => {
5975
5989
  }
5976
5990
  };
5977
5991
  };
5978
- function Id() {
5992
+ function zd() {
5979
5993
  return {
5980
- localeError: wd()
5994
+ localeError: Id()
5981
5995
  };
5982
5996
  }
5983
- const zd = (e) => {
5997
+ const Sd = (e) => {
5984
5998
  const n = typeof e;
5985
5999
  switch (n) {
5986
6000
  case "number":
@@ -5995,7 +6009,7 @@ const zd = (e) => {
5995
6009
  }
5996
6010
  }
5997
6011
  return n;
5998
- }, Sd = () => {
6012
+ }, jd = () => {
5999
6013
  const e = {
6000
6014
  string: { unit: "karakter", verb: "olmalı" },
6001
6015
  file: { unit: "bayt", verb: "olmalı" },
@@ -6038,7 +6052,7 @@ const zd = (e) => {
6038
6052
  return (o) => {
6039
6053
  switch (o.code) {
6040
6054
  case "invalid_type":
6041
- return `Geçersiz değer: beklenen ${o.expected}, alınan ${zd(o.input)}`;
6055
+ return `Geçersiz değer: beklenen ${o.expected}, alınan ${Sd(o.input)}`;
6042
6056
  case "invalid_value":
6043
6057
  return o.values.length === 1 ? `Geçersiz değer: beklenen ${y(o.values[0])}` : `Geçersiz seçenek: aşağıdakilerden biri olmalı: ${v(o.values, "|")}`;
6044
6058
  case "too_big": {
@@ -6068,12 +6082,12 @@ const zd = (e) => {
6068
6082
  }
6069
6083
  };
6070
6084
  };
6071
- function jd() {
6085
+ function xd() {
6072
6086
  return {
6073
- localeError: Sd()
6087
+ localeError: jd()
6074
6088
  };
6075
6089
  }
6076
- const xd = () => {
6090
+ const Od = () => {
6077
6091
  const e = {
6078
6092
  string: { unit: "символів", verb: "матиме" },
6079
6093
  file: { unit: "байтів", verb: "матиме" },
@@ -6164,13 +6178,13 @@ const xd = () => {
6164
6178
  };
6165
6179
  function Va() {
6166
6180
  return {
6167
- localeError: xd()
6181
+ localeError: Od()
6168
6182
  };
6169
6183
  }
6170
- function Od() {
6184
+ function Ud() {
6171
6185
  return Va();
6172
6186
  }
6173
- const Ud = () => {
6187
+ const Nd = () => {
6174
6188
  const e = {
6175
6189
  string: { unit: "حروف", verb: "ہونا" },
6176
6190
  file: { unit: "بائٹس", verb: "ہونا" },
@@ -6258,12 +6272,12 @@ const Ud = () => {
6258
6272
  }
6259
6273
  };
6260
6274
  };
6261
- function Nd() {
6275
+ function Pd() {
6262
6276
  return {
6263
- localeError: Ud()
6277
+ localeError: Nd()
6264
6278
  };
6265
6279
  }
6266
- const Pd = () => {
6280
+ const Dd = () => {
6267
6281
  const e = {
6268
6282
  string: { unit: "ký tự", verb: "có" },
6269
6283
  file: { unit: "byte", verb: "có" },
@@ -6351,12 +6365,12 @@ const Pd = () => {
6351
6365
  }
6352
6366
  };
6353
6367
  };
6354
- function Dd() {
6368
+ function Td() {
6355
6369
  return {
6356
- localeError: Pd()
6370
+ localeError: Dd()
6357
6371
  };
6358
6372
  }
6359
- const Td = () => {
6373
+ const Zd = () => {
6360
6374
  const e = {
6361
6375
  string: { unit: "字符", verb: "包含" },
6362
6376
  file: { unit: "字节", verb: "包含" },
@@ -6444,12 +6458,12 @@ const Td = () => {
6444
6458
  }
6445
6459
  };
6446
6460
  };
6447
- function Zd() {
6461
+ function Ed() {
6448
6462
  return {
6449
- localeError: Td()
6463
+ localeError: Zd()
6450
6464
  };
6451
6465
  }
6452
- const Ed = () => {
6466
+ const Ad = () => {
6453
6467
  const e = {
6454
6468
  string: { unit: "字元", verb: "擁有" },
6455
6469
  file: { unit: "位元組", verb: "擁有" },
@@ -6537,12 +6551,12 @@ const Ed = () => {
6537
6551
  }
6538
6552
  };
6539
6553
  };
6540
- function Ad() {
6554
+ function Rd() {
6541
6555
  return {
6542
- localeError: Ed()
6556
+ localeError: Ad()
6543
6557
  };
6544
6558
  }
6545
- const Rd = () => {
6559
+ const Fd = () => {
6546
6560
  const e = {
6547
6561
  string: { unit: "àmi", verb: "ní" },
6548
6562
  file: { unit: "bytes", verb: "ní" },
@@ -6630,59 +6644,59 @@ const Rd = () => {
6630
6644
  }
6631
6645
  };
6632
6646
  };
6633
- function Fd() {
6647
+ function Ld() {
6634
6648
  return {
6635
- localeError: Rd()
6649
+ localeError: Fd()
6636
6650
  };
6637
6651
  }
6638
6652
  const Ba = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6639
6653
  __proto__: null,
6640
- ar: nl,
6641
- az: il,
6642
- be: al,
6643
- ca: cl,
6644
- cs: ll,
6645
- da: ml,
6646
- de: pl,
6654
+ ar: rl,
6655
+ az: ol,
6656
+ be: ul,
6657
+ ca: sl,
6658
+ cs: dl,
6659
+ da: fl,
6660
+ de: vl,
6647
6661
  en: Wa,
6648
- eo: _l,
6649
- es: yl,
6650
- fa: wl,
6651
- fi: zl,
6652
- fr: jl,
6653
- frCA: Ol,
6654
- he: Nl,
6655
- hu: Dl,
6656
- id: Zl,
6657
- is: Rl,
6658
- it: Ll,
6659
- ja: Ml,
6660
- ka: Wl,
6661
- kh: Vl,
6662
+ eo: bl,
6663
+ es: kl,
6664
+ fa: Il,
6665
+ fi: Sl,
6666
+ fr: xl,
6667
+ frCA: Ul,
6668
+ he: Pl,
6669
+ hu: Tl,
6670
+ id: El,
6671
+ is: Fl,
6672
+ it: Cl,
6673
+ ja: Jl,
6674
+ ka: Gl,
6675
+ kh: Bl,
6662
6676
  km: Ga,
6663
- ko: ql,
6664
- lt: Hl,
6665
- mk: ed,
6666
- ms: nd,
6667
- nl: id,
6668
- no: ad,
6669
- ota: cd,
6670
- pl: md,
6671
- ps: ld,
6672
- pt: pd,
6673
- ru: gd,
6674
- sl: $d,
6675
- sv: bd,
6676
- ta: kd,
6677
- th: Id,
6678
- tr: jd,
6679
- ua: Od,
6677
+ ko: Xl,
6678
+ lt: Ql,
6679
+ mk: td,
6680
+ ms: rd,
6681
+ nl: od,
6682
+ no: ud,
6683
+ ota: sd,
6684
+ pl: fd,
6685
+ ps: dd,
6686
+ pt: vd,
6687
+ ru: hd,
6688
+ sl: _d,
6689
+ sv: yd,
6690
+ ta: wd,
6691
+ th: zd,
6692
+ tr: xd,
6693
+ ua: Ud,
6680
6694
  uk: Va,
6681
- ur: Nd,
6682
- vi: Dd,
6683
- yo: Fd,
6684
- zhCN: Zd,
6685
- zhTW: Ad
6695
+ ur: Pd,
6696
+ vi: Td,
6697
+ yo: Ld,
6698
+ zhCN: Ed,
6699
+ zhTW: Rd
6686
6700
  }, Symbol.toStringTag, { value: "Module" })), qa = Symbol("ZodOutput"), Xa = Symbol("ZodInput");
6687
6701
  class jn {
6688
6702
  constructor() {
@@ -7150,7 +7164,7 @@ function le(e, n) {
7150
7164
  inclusive: !1
7151
7165
  });
7152
7166
  }
7153
- function W(e, n) {
7167
+ function G(e, n) {
7154
7168
  return new $n({
7155
7169
  check: "less_than",
7156
7170
  ...p(n),
@@ -7181,7 +7195,7 @@ function xu(e) {
7181
7195
  return le(0, e);
7182
7196
  }
7183
7197
  function Ou(e) {
7184
- return W(0, e);
7198
+ return G(0, e);
7185
7199
  }
7186
7200
  function Uu(e) {
7187
7201
  return R(0, e);
@@ -7324,14 +7338,14 @@ function Pu(e, n, r) {
7324
7338
  ...p(r)
7325
7339
  });
7326
7340
  }
7327
- function Ld(e, n, r) {
7341
+ function Cd(e, n, r) {
7328
7342
  return new e({
7329
7343
  type: "union",
7330
7344
  options: n,
7331
7345
  ...p(r)
7332
7346
  });
7333
7347
  }
7334
- function Cd(e, n, r, o) {
7348
+ function Md(e, n, r, o) {
7335
7349
  return new e({
7336
7350
  type: "union",
7337
7351
  options: r,
@@ -7339,14 +7353,14 @@ function Cd(e, n, r, o) {
7339
7353
  ...p(o)
7340
7354
  });
7341
7355
  }
7342
- function Md(e, n, r) {
7356
+ function Jd(e, n, r) {
7343
7357
  return new e({
7344
7358
  type: "intersection",
7345
7359
  left: n,
7346
7360
  right: r
7347
7361
  });
7348
7362
  }
7349
- function Jd(e, n, r, o) {
7363
+ function Kd(e, n, r, o) {
7350
7364
  const t = r instanceof k, i = t ? o : r, a = t ? r : null;
7351
7365
  return new e({
7352
7366
  type: "tuple",
@@ -7355,7 +7369,7 @@ function Jd(e, n, r, o) {
7355
7369
  ...p(i)
7356
7370
  });
7357
7371
  }
7358
- function Kd(e, n, r, o) {
7372
+ function Wd(e, n, r, o) {
7359
7373
  return new e({
7360
7374
  type: "record",
7361
7375
  keyType: n,
@@ -7363,7 +7377,7 @@ function Kd(e, n, r, o) {
7363
7377
  ...p(o)
7364
7378
  });
7365
7379
  }
7366
- function Wd(e, n, r, o) {
7380
+ function Gd(e, n, r, o) {
7367
7381
  return new e({
7368
7382
  type: "map",
7369
7383
  keyType: n,
@@ -7371,14 +7385,14 @@ function Wd(e, n, r, o) {
7371
7385
  ...p(o)
7372
7386
  });
7373
7387
  }
7374
- function Gd(e, n, r) {
7388
+ function Vd(e, n, r) {
7375
7389
  return new e({
7376
7390
  type: "set",
7377
7391
  valueType: n,
7378
7392
  ...p(r)
7379
7393
  });
7380
7394
  }
7381
- function Vd(e, n, r) {
7395
+ function Bd(e, n, r) {
7382
7396
  const o = Array.isArray(n) ? Object.fromEntries(n.map((t) => [t, t])) : n;
7383
7397
  return new e({
7384
7398
  type: "enum",
@@ -7386,14 +7400,14 @@ function Vd(e, n, r) {
7386
7400
  ...p(r)
7387
7401
  });
7388
7402
  }
7389
- function Bd(e, n, r) {
7403
+ function qd(e, n, r) {
7390
7404
  return new e({
7391
7405
  type: "enum",
7392
7406
  entries: n,
7393
7407
  ...p(r)
7394
7408
  });
7395
7409
  }
7396
- function qd(e, n, r) {
7410
+ function Xd(e, n, r) {
7397
7411
  return new e({
7398
7412
  type: "literal",
7399
7413
  values: Array.isArray(n) ? n : [n],
@@ -7406,25 +7420,25 @@ function Du(e, n) {
7406
7420
  ...p(n)
7407
7421
  });
7408
7422
  }
7409
- function Xd(e, n) {
7423
+ function Yd(e, n) {
7410
7424
  return new e({
7411
7425
  type: "transform",
7412
7426
  transform: n
7413
7427
  });
7414
7428
  }
7415
- function Yd(e, n) {
7429
+ function Hd(e, n) {
7416
7430
  return new e({
7417
7431
  type: "optional",
7418
7432
  innerType: n
7419
7433
  });
7420
7434
  }
7421
- function Hd(e, n) {
7435
+ function Qd(e, n) {
7422
7436
  return new e({
7423
7437
  type: "nullable",
7424
7438
  innerType: n
7425
7439
  });
7426
7440
  }
7427
- function Qd(e, n, r) {
7441
+ function em(e, n, r) {
7428
7442
  return new e({
7429
7443
  type: "default",
7430
7444
  innerType: n,
@@ -7433,53 +7447,53 @@ function Qd(e, n, r) {
7433
7447
  }
7434
7448
  });
7435
7449
  }
7436
- function em(e, n, r) {
7450
+ function tm(e, n, r) {
7437
7451
  return new e({
7438
7452
  type: "nonoptional",
7439
7453
  innerType: n,
7440
7454
  ...p(r)
7441
7455
  });
7442
7456
  }
7443
- function tm(e, n) {
7457
+ function nm(e, n) {
7444
7458
  return new e({
7445
7459
  type: "success",
7446
7460
  innerType: n
7447
7461
  });
7448
7462
  }
7449
- function nm(e, n, r) {
7463
+ function rm(e, n, r) {
7450
7464
  return new e({
7451
7465
  type: "catch",
7452
7466
  innerType: n,
7453
7467
  catchValue: typeof r == "function" ? r : () => r
7454
7468
  });
7455
7469
  }
7456
- function rm(e, n, r) {
7470
+ function im(e, n, r) {
7457
7471
  return new e({
7458
7472
  type: "pipe",
7459
7473
  in: n,
7460
7474
  out: r
7461
7475
  });
7462
7476
  }
7463
- function im(e, n) {
7477
+ function om(e, n) {
7464
7478
  return new e({
7465
7479
  type: "readonly",
7466
7480
  innerType: n
7467
7481
  });
7468
7482
  }
7469
- function om(e, n, r) {
7483
+ function am(e, n, r) {
7470
7484
  return new e({
7471
7485
  type: "template_literal",
7472
7486
  parts: n,
7473
7487
  ...p(r)
7474
7488
  });
7475
7489
  }
7476
- function am(e, n) {
7490
+ function um(e, n) {
7477
7491
  return new e({
7478
7492
  type: "lazy",
7479
7493
  getter: n
7480
7494
  });
7481
7495
  }
7482
- function um(e, n) {
7496
+ function cm(e, n) {
7483
7497
  return new e({
7484
7498
  type: "promise",
7485
7499
  innerType: n
@@ -8073,9 +8087,9 @@ function D(e, n) {
8073
8087
  }
8074
8088
  throw new Error(`Unknown schema type: ${t.type}`);
8075
8089
  }
8076
- const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8090
+ const sm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8077
8091
  __proto__: null
8078
- }, Symbol.toStringTag, { value: "Module" })), sm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8092
+ }, Symbol.toStringTag, { value: "Module" })), lm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8079
8093
  __proto__: null,
8080
8094
  $ZodAny: da,
8081
8095
  $ZodArray: ga,
@@ -8179,7 +8193,7 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8179
8193
  $input: Xa,
8180
8194
  $output: qa,
8181
8195
  Doc: Po,
8182
- JSONSchema: cm,
8196
+ JSONSchema: sm,
8183
8197
  JSONSchemaGenerator: Gt,
8184
8198
  NEVER: si,
8185
8199
  TimePrecision: Qa,
@@ -8189,7 +8203,7 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8189
8203
  _base64url: Gn,
8190
8204
  _bigint: fu,
8191
8205
  _boolean: du,
8192
- _catch: nm,
8206
+ _catch: rm,
8193
8207
  _check: Au,
8194
8208
  _cidrv4: Jn,
8195
8209
  _cidrv6: Kn,
@@ -8204,15 +8218,15 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8204
8218
  _date: Iu,
8205
8219
  _decode: cn,
8206
8220
  _decodeAsync: ln,
8207
- _default: Qd,
8208
- _discriminatedUnion: Cd,
8221
+ _default: em,
8222
+ _discriminatedUnion: Md,
8209
8223
  _e164: Vn,
8210
8224
  _email: On,
8211
8225
  _emoji: Tn,
8212
8226
  _encode: un,
8213
8227
  _encodeAsync: sn,
8214
8228
  _endsWith: tr,
8215
- _enum: Vd,
8229
+ _enum: Bd,
8216
8230
  _file: Du,
8217
8231
  _float32: uu,
8218
8232
  _float64: cu,
@@ -8223,7 +8237,7 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8223
8237
  _int: au,
8224
8238
  _int32: su,
8225
8239
  _int64: vu,
8226
- _intersection: Md,
8240
+ _intersection: Jd,
8227
8241
  _ipv4: Cn,
8228
8242
  _ipv6: Mn,
8229
8243
  _isoDate: tu,
@@ -8232,14 +8246,14 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8232
8246
  _isoTime: nu,
8233
8247
  _jwt: Bn,
8234
8248
  _ksuid: Ln,
8235
- _lazy: am,
8249
+ _lazy: um,
8236
8250
  _length: zt,
8237
- _literal: qd,
8251
+ _literal: Xd,
8238
8252
  _lowercase: Yn,
8239
8253
  _lt: le,
8240
- _lte: W,
8241
- _map: Wd,
8242
- _max: W,
8254
+ _lte: G,
8255
+ _map: Gd,
8256
+ _max: G,
8243
8257
  _maxLength: It,
8244
8258
  _maxSize: wt,
8245
8259
  _mime: nr,
@@ -8249,26 +8263,26 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8249
8263
  _multipleOf: Ue,
8250
8264
  _nan: Su,
8251
8265
  _nanoid: Zn,
8252
- _nativeEnum: Bd,
8266
+ _nativeEnum: qd,
8253
8267
  _negative: xu,
8254
8268
  _never: ku,
8255
8269
  _nonnegative: Uu,
8256
- _nonoptional: em,
8270
+ _nonoptional: tm,
8257
8271
  _nonpositive: Ou,
8258
8272
  _normalize: rr,
8259
8273
  _null: _u,
8260
- _nullable: Hd,
8274
+ _nullable: Qd,
8261
8275
  _number: iu,
8262
- _optional: Yd,
8276
+ _optional: Hd,
8263
8277
  _overwrite: fe,
8264
8278
  _parse: Re,
8265
8279
  _parseAsync: Fe,
8266
- _pipe: rm,
8280
+ _pipe: im,
8267
8281
  _positive: ju,
8268
- _promise: um,
8282
+ _promise: cm,
8269
8283
  _property: Nu,
8270
- _readonly: im,
8271
- _record: Kd,
8284
+ _readonly: om,
8285
+ _record: Wd,
8272
8286
  _refine: Zu,
8273
8287
  _regex: Xn,
8274
8288
  _safeDecode: mn,
@@ -8277,26 +8291,26 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8277
8291
  _safeEncodeAsync: fn,
8278
8292
  _safeParse: Le,
8279
8293
  _safeParseAsync: Ce,
8280
- _set: Gd,
8294
+ _set: Vd,
8281
8295
  _size: qn,
8282
8296
  _startsWith: er,
8283
8297
  _string: Ya,
8284
8298
  _stringFormat: Ge,
8285
8299
  _stringbool: Ru,
8286
- _success: tm,
8300
+ _success: nm,
8287
8301
  _superRefine: Eu,
8288
8302
  _symbol: hu,
8289
- _templateLiteral: om,
8303
+ _templateLiteral: am,
8290
8304
  _toLowerCase: or,
8291
8305
  _toUpperCase: ar,
8292
- _transform: Xd,
8306
+ _transform: Yd,
8293
8307
  _trim: ir,
8294
- _tuple: Jd,
8308
+ _tuple: Kd,
8295
8309
  _uint32: lu,
8296
8310
  _uint64: gu,
8297
8311
  _ulid: Rn,
8298
8312
  _undefined: $u,
8299
- _union: Ld,
8313
+ _union: Cd,
8300
8314
  _unknown: yu,
8301
8315
  _uppercase: Hn,
8302
8316
  _url: kt,
@@ -8308,10 +8322,10 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8308
8322
  _xid: Fn,
8309
8323
  clone: C,
8310
8324
  config: E,
8311
- decode: Is,
8312
- decodeAsync: Ss,
8313
- encode: ws,
8314
- encodeAsync: zs,
8325
+ decode: zs,
8326
+ decodeAsync: js,
8327
+ encode: Is,
8328
+ encodeAsync: Ss,
8315
8329
  flattenError: on,
8316
8330
  formatError: an,
8317
8331
  globalConfig: at,
@@ -8325,10 +8339,10 @@ const cm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8325
8339
  prettifyError: Ui,
8326
8340
  regexes: hn,
8327
8341
  registry: xn,
8328
- safeDecode: xs,
8329
- safeDecodeAsync: Us,
8330
- safeEncode: js,
8331
- safeEncodeAsync: Os,
8342
+ safeDecode: Os,
8343
+ safeDecodeAsync: Ns,
8344
+ safeEncode: xs,
8345
+ safeEncodeAsync: Us,
8332
8346
  safeParse: Ni,
8333
8347
  safeParseAsync: Pi,
8334
8348
  toDotPath: Oi,
@@ -8360,7 +8374,7 @@ const lr = /* @__PURE__ */ s("ZodISODuration", (e, n) => {
8360
8374
  function Ju(e) {
8361
8375
  return ru(lr, e);
8362
8376
  }
8363
- const lm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8377
+ const dm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8364
8378
  __proto__: null,
8365
8379
  ZodISODate: cr,
8366
8380
  ZodISODateTime: ur,
@@ -8399,7 +8413,7 @@ const lm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
8399
8413
  // enumerable: false,
8400
8414
  }
8401
8415
  });
8402
- }, dm = s("ZodError", Ku), L = s("ZodError", Ku, {
8416
+ }, mm = s("ZodError", Ku), L = s("ZodError", Ku, {
8403
8417
  Parent: Error
8404
8418
  }), Wu = /* @__PURE__ */ Re(L), Gu = /* @__PURE__ */ Fe(L), Vu = /* @__PURE__ */ Le(L), Bu = /* @__PURE__ */ Ce(L), qu = /* @__PURE__ */ un(L), Xu = /* @__PURE__ */ cn(L), Yu = /* @__PURE__ */ sn(L), Hu = /* @__PURE__ */ ln(L), Qu = /* @__PURE__ */ dn(L), ec = /* @__PURE__ */ mn(L), tc = /* @__PURE__ */ fn(L), nc = /* @__PURE__ */ pn(L), I = /* @__PURE__ */ s("ZodType", (e, n) => (k.init(e, n), e.def = n, e.type = n.type, Object.defineProperty(e, "_def", { value: n }), e.check = (...r) => e.clone(
8405
8419
  {
@@ -8438,37 +8452,37 @@ const N = /* @__PURE__ */ s("ZodStringFormat", (e, n) => {
8438
8452
  }), mr = /* @__PURE__ */ s("ZodEmail", (e, n) => {
8439
8453
  Eo.init(e, n), N.init(e, n);
8440
8454
  });
8441
- function mm(e) {
8455
+ function fm(e) {
8442
8456
  return On(mr, e);
8443
8457
  }
8444
8458
  const dt = /* @__PURE__ */ s("ZodGUID", (e, n) => {
8445
8459
  To.init(e, n), N.init(e, n);
8446
8460
  });
8447
- function fm(e) {
8461
+ function pm(e) {
8448
8462
  return lt(dt, e);
8449
8463
  }
8450
8464
  const X = /* @__PURE__ */ s("ZodUUID", (e, n) => {
8451
8465
  Zo.init(e, n), N.init(e, n);
8452
8466
  });
8453
- function pm(e) {
8467
+ function vm(e) {
8454
8468
  return Un(X, e);
8455
8469
  }
8456
- function vm(e) {
8470
+ function gm(e) {
8457
8471
  return Nn(X, e);
8458
8472
  }
8459
- function gm(e) {
8473
+ function hm(e) {
8460
8474
  return Pn(X, e);
8461
8475
  }
8462
- function hm(e) {
8476
+ function $m(e) {
8463
8477
  return Dn(X, e);
8464
8478
  }
8465
8479
  const jt = /* @__PURE__ */ s("ZodURL", (e, n) => {
8466
8480
  Ao.init(e, n), N.init(e, n);
8467
8481
  });
8468
- function $m(e) {
8482
+ function _m(e) {
8469
8483
  return kt(jt, e);
8470
8484
  }
8471
- function _m(e) {
8485
+ function bm(e) {
8472
8486
  return kt(jt, {
8473
8487
  protocol: /^https?$/,
8474
8488
  hostname: qi,
@@ -8478,113 +8492,113 @@ function _m(e) {
8478
8492
  const fr = /* @__PURE__ */ s("ZodEmoji", (e, n) => {
8479
8493
  Ro.init(e, n), N.init(e, n);
8480
8494
  });
8481
- function bm(e) {
8495
+ function ym(e) {
8482
8496
  return Tn(fr, e);
8483
8497
  }
8484
8498
  const pr = /* @__PURE__ */ s("ZodNanoID", (e, n) => {
8485
8499
  Fo.init(e, n), N.init(e, n);
8486
8500
  });
8487
- function ym(e) {
8501
+ function km(e) {
8488
8502
  return Zn(pr, e);
8489
8503
  }
8490
8504
  const vr = /* @__PURE__ */ s("ZodCUID", (e, n) => {
8491
8505
  Lo.init(e, n), N.init(e, n);
8492
8506
  });
8493
- function km(e) {
8507
+ function wm(e) {
8494
8508
  return En(vr, e);
8495
8509
  }
8496
8510
  const gr = /* @__PURE__ */ s("ZodCUID2", (e, n) => {
8497
8511
  Co.init(e, n), N.init(e, n);
8498
8512
  });
8499
- function wm(e) {
8513
+ function Im(e) {
8500
8514
  return An(gr, e);
8501
8515
  }
8502
8516
  const hr = /* @__PURE__ */ s("ZodULID", (e, n) => {
8503
8517
  Mo.init(e, n), N.init(e, n);
8504
8518
  });
8505
- function Im(e) {
8519
+ function zm(e) {
8506
8520
  return Rn(hr, e);
8507
8521
  }
8508
8522
  const $r = /* @__PURE__ */ s("ZodXID", (e, n) => {
8509
8523
  Jo.init(e, n), N.init(e, n);
8510
8524
  });
8511
- function zm(e) {
8525
+ function Sm(e) {
8512
8526
  return Fn($r, e);
8513
8527
  }
8514
8528
  const _r = /* @__PURE__ */ s("ZodKSUID", (e, n) => {
8515
8529
  Ko.init(e, n), N.init(e, n);
8516
8530
  });
8517
- function Sm(e) {
8531
+ function jm(e) {
8518
8532
  return Ln(_r, e);
8519
8533
  }
8520
8534
  const br = /* @__PURE__ */ s("ZodIPv4", (e, n) => {
8521
8535
  qo.init(e, n), N.init(e, n);
8522
8536
  });
8523
- function jm(e) {
8537
+ function xm(e) {
8524
8538
  return Cn(br, e);
8525
8539
  }
8526
8540
  const yr = /* @__PURE__ */ s("ZodIPv6", (e, n) => {
8527
8541
  Xo.init(e, n), N.init(e, n);
8528
8542
  });
8529
- function xm(e) {
8543
+ function Om(e) {
8530
8544
  return Mn(yr, e);
8531
8545
  }
8532
8546
  const kr = /* @__PURE__ */ s("ZodCIDRv4", (e, n) => {
8533
8547
  Yo.init(e, n), N.init(e, n);
8534
8548
  });
8535
- function Om(e) {
8549
+ function Um(e) {
8536
8550
  return Jn(kr, e);
8537
8551
  }
8538
8552
  const wr = /* @__PURE__ */ s("ZodCIDRv6", (e, n) => {
8539
8553
  Ho.init(e, n), N.init(e, n);
8540
8554
  });
8541
- function Um(e) {
8555
+ function Nm(e) {
8542
8556
  return Kn(wr, e);
8543
8557
  }
8544
8558
  const Ir = /* @__PURE__ */ s("ZodBase64", (e, n) => {
8545
8559
  Qo.init(e, n), N.init(e, n);
8546
8560
  });
8547
- function Nm(e) {
8561
+ function Pm(e) {
8548
8562
  return Wn(Ir, e);
8549
8563
  }
8550
8564
  const zr = /* @__PURE__ */ s("ZodBase64URL", (e, n) => {
8551
8565
  ta.init(e, n), N.init(e, n);
8552
8566
  });
8553
- function Pm(e) {
8567
+ function Dm(e) {
8554
8568
  return Gn(zr, e);
8555
8569
  }
8556
8570
  const Sr = /* @__PURE__ */ s("ZodE164", (e, n) => {
8557
8571
  na.init(e, n), N.init(e, n);
8558
8572
  });
8559
- function Dm(e) {
8573
+ function Tm(e) {
8560
8574
  return Vn(Sr, e);
8561
8575
  }
8562
8576
  const jr = /* @__PURE__ */ s("ZodJWT", (e, n) => {
8563
8577
  ia.init(e, n), N.init(e, n);
8564
8578
  });
8565
- function Tm(e) {
8579
+ function Zm(e) {
8566
8580
  return Bn(jr, e);
8567
8581
  }
8568
8582
  const Ve = /* @__PURE__ */ s("ZodCustomStringFormat", (e, n) => {
8569
8583
  oa.init(e, n), N.init(e, n);
8570
8584
  });
8571
- function Zm(e, n, r = {}) {
8585
+ function Em(e, n, r = {}) {
8572
8586
  return Ge(Ve, e, n, r);
8573
8587
  }
8574
- function Em(e) {
8588
+ function Am(e) {
8575
8589
  return Ge(Ve, "hostname", gn, e);
8576
8590
  }
8577
- function Am(e) {
8591
+ function Rm(e) {
8578
8592
  return Ge(Ve, "hex", mo, e);
8579
8593
  }
8580
- function Rm(e, n) {
8594
+ function Fm(e, n) {
8581
8595
  const r = n?.enc ?? "hex", o = `${e}_${r}`, t = hn[o];
8582
8596
  if (!t)
8583
8597
  throw new Error(`Unrecognized hash format: ${o}`);
8584
8598
  return Ge(Ve, o, t, n);
8585
8599
  }
8586
8600
  const xt = /* @__PURE__ */ s("ZodNumber", (e, n) => {
8587
- yn.init(e, n), I.init(e, n), e.gt = (o, t) => e.check(de(o, t)), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.lt = (o, t) => e.check(le(o, t)), e.lte = (o, t) => e.check(W(o, t)), e.max = (o, t) => e.check(W(o, t)), e.int = (o) => e.check(Bt(o)), e.safe = (o) => e.check(Bt(o)), e.positive = (o) => e.check(de(0, o)), e.nonnegative = (o) => e.check(R(0, o)), e.negative = (o) => e.check(le(0, o)), e.nonpositive = (o) => e.check(W(0, o)), e.multipleOf = (o, t) => e.check(Ue(o, t)), e.step = (o, t) => e.check(Ue(o, t)), e.finite = () => e;
8601
+ yn.init(e, n), I.init(e, n), e.gt = (o, t) => e.check(de(o, t)), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.lt = (o, t) => e.check(le(o, t)), e.lte = (o, t) => e.check(G(o, t)), e.max = (o, t) => e.check(G(o, t)), e.int = (o) => e.check(Bt(o)), e.safe = (o) => e.check(Bt(o)), e.positive = (o) => e.check(de(0, o)), e.nonnegative = (o) => e.check(R(0, o)), e.negative = (o) => e.check(le(0, o)), e.nonpositive = (o) => e.check(G(0, o)), e.multipleOf = (o, t) => e.check(Ue(o, t)), e.step = (o, t) => e.check(Ue(o, t)), e.finite = () => e;
8588
8602
  const r = e._zod.bag;
8589
8603
  e.minValue = Math.max(r.minimum ?? Number.NEGATIVE_INFINITY, r.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null, e.maxValue = Math.min(r.maximum ?? Number.POSITIVE_INFINITY, r.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null, e.isInt = (r.format ?? "").includes("int") || Number.isSafeInteger(r.multipleOf ?? 0.5), e.isFinite = !0, e.format = r.format ?? null;
8590
8604
  });
@@ -8597,16 +8611,16 @@ const we = /* @__PURE__ */ s("ZodNumberFormat", (e, n) => {
8597
8611
  function Bt(e) {
8598
8612
  return au(we, e);
8599
8613
  }
8600
- function Fm(e) {
8614
+ function Lm(e) {
8601
8615
  return uu(we, e);
8602
8616
  }
8603
- function Lm(e) {
8617
+ function Cm(e) {
8604
8618
  return cu(we, e);
8605
8619
  }
8606
- function Cm(e) {
8620
+ function Mm(e) {
8607
8621
  return su(we, e);
8608
8622
  }
8609
- function Mm(e) {
8623
+ function Jm(e) {
8610
8624
  return lu(we, e);
8611
8625
  }
8612
8626
  const Ot = /* @__PURE__ */ s("ZodBoolean", (e, n) => {
@@ -8616,32 +8630,32 @@ function ic(e) {
8616
8630
  return du(Ot, e);
8617
8631
  }
8618
8632
  const Ut = /* @__PURE__ */ s("ZodBigInt", (e, n) => {
8619
- wn.init(e, n), I.init(e, n), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.gt = (o, t) => e.check(de(o, t)), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.lt = (o, t) => e.check(le(o, t)), e.lte = (o, t) => e.check(W(o, t)), e.max = (o, t) => e.check(W(o, t)), e.positive = (o) => e.check(de(BigInt(0), o)), e.negative = (o) => e.check(le(BigInt(0), o)), e.nonpositive = (o) => e.check(W(BigInt(0), o)), e.nonnegative = (o) => e.check(R(BigInt(0), o)), e.multipleOf = (o, t) => e.check(Ue(o, t));
8633
+ wn.init(e, n), I.init(e, n), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.gt = (o, t) => e.check(de(o, t)), e.gte = (o, t) => e.check(R(o, t)), e.min = (o, t) => e.check(R(o, t)), e.lt = (o, t) => e.check(le(o, t)), e.lte = (o, t) => e.check(G(o, t)), e.max = (o, t) => e.check(G(o, t)), e.positive = (o) => e.check(de(BigInt(0), o)), e.negative = (o) => e.check(le(BigInt(0), o)), e.nonpositive = (o) => e.check(G(BigInt(0), o)), e.nonnegative = (o) => e.check(R(BigInt(0), o)), e.multipleOf = (o, t) => e.check(Ue(o, t));
8620
8634
  const r = e._zod.bag;
8621
8635
  e.minValue = r.minimum ?? null, e.maxValue = r.maximum ?? null, e.format = r.format ?? null;
8622
8636
  });
8623
- function Jm(e) {
8637
+ function Km(e) {
8624
8638
  return fu(Ut, e);
8625
8639
  }
8626
8640
  const xr = /* @__PURE__ */ s("ZodBigIntFormat", (e, n) => {
8627
8641
  ua.init(e, n), Ut.init(e, n);
8628
8642
  });
8629
- function Km(e) {
8643
+ function Wm(e) {
8630
8644
  return vu(xr, e);
8631
8645
  }
8632
- function Wm(e) {
8646
+ function Gm(e) {
8633
8647
  return gu(xr, e);
8634
8648
  }
8635
8649
  const oc = /* @__PURE__ */ s("ZodSymbol", (e, n) => {
8636
8650
  ca.init(e, n), I.init(e, n);
8637
8651
  });
8638
- function Gm(e) {
8652
+ function Vm(e) {
8639
8653
  return hu(oc, e);
8640
8654
  }
8641
8655
  const ac = /* @__PURE__ */ s("ZodUndefined", (e, n) => {
8642
8656
  sa.init(e, n), I.init(e, n);
8643
8657
  });
8644
- function Vm(e) {
8658
+ function Bm(e) {
8645
8659
  return $u(ac, e);
8646
8660
  }
8647
8661
  const uc = /* @__PURE__ */ s("ZodNull", (e, n) => {
@@ -8653,7 +8667,7 @@ function cc(e) {
8653
8667
  const sc = /* @__PURE__ */ s("ZodAny", (e, n) => {
8654
8668
  da.init(e, n), I.init(e, n);
8655
8669
  });
8656
- function Bm() {
8670
+ function qm() {
8657
8671
  return bu(sc);
8658
8672
  }
8659
8673
  const lc = /* @__PURE__ */ s("ZodUnknown", (e, n) => {
@@ -8671,15 +8685,15 @@ function Or(e) {
8671
8685
  const mc = /* @__PURE__ */ s("ZodVoid", (e, n) => {
8672
8686
  pa.init(e, n), I.init(e, n);
8673
8687
  });
8674
- function qm(e) {
8688
+ function Xm(e) {
8675
8689
  return wu(mc, e);
8676
8690
  }
8677
8691
  const Ur = /* @__PURE__ */ s("ZodDate", (e, n) => {
8678
- va.init(e, n), I.init(e, n), e.min = (o, t) => e.check(R(o, t)), e.max = (o, t) => e.check(W(o, t));
8692
+ va.init(e, n), I.init(e, n), e.min = (o, t) => e.check(R(o, t)), e.max = (o, t) => e.check(G(o, t));
8679
8693
  const r = e._zod.bag;
8680
8694
  e.minDate = r.minimum ? new Date(r.minimum) : null, e.maxDate = r.maximum ? new Date(r.maximum) : null;
8681
8695
  });
8682
- function Xm(e) {
8696
+ function Ym(e) {
8683
8697
  return Iu(Ur, e);
8684
8698
  }
8685
8699
  const fc = /* @__PURE__ */ s("ZodArray", (e, n) => {
@@ -8688,38 +8702,38 @@ const fc = /* @__PURE__ */ s("ZodArray", (e, n) => {
8688
8702
  function Nt(e, n) {
8689
8703
  return Pu(fc, e, n);
8690
8704
  }
8691
- function Ym(e) {
8705
+ function Hm(e) {
8692
8706
  const n = e._zod.def.shape;
8693
8707
  return Tr(Object.keys(n));
8694
8708
  }
8695
8709
  const Pt = /* @__PURE__ */ s("ZodObject", (e, n) => {
8696
8710
  ba.init(e, n), I.init(e, n), z(e, "shape", () => n.shape), e.keyof = () => Tr(Object.keys(e._zod.def.shape)), e.catchall = (r) => e.clone({ ...e._zod.def, catchall: r }), e.passthrough = () => e.clone({ ...e._zod.def, catchall: ke() }), e.loose = () => e.clone({ ...e._zod.def, catchall: ke() }), e.strict = () => e.clone({ ...e._zod.def, catchall: Or() }), e.strip = () => e.clone({ ...e._zod.def, catchall: void 0 }), e.extend = (r) => _i(e, r), e.safeExtend = (r) => bi(e, r), e.merge = (r) => yi(e, r), e.pick = (r) => hi(e, r), e.omit = (r) => $i(e, r), e.partial = (...r) => ki(Er, e, r[0]), e.required = (...r) => wi(Ar, e, r[0]);
8697
8711
  });
8698
- function Hm(e, n) {
8712
+ function Qm(e, n) {
8699
8713
  const r = {
8700
8714
  type: "object",
8701
8715
  get shape() {
8702
- return V(this, "shape", e ? $t(e) : {}), this.shape;
8716
+ return B(this, "shape", e ? $t(e) : {}), this.shape;
8703
8717
  },
8704
8718
  ...p(n)
8705
8719
  };
8706
8720
  return new Pt(r);
8707
8721
  }
8708
- function Qm(e, n) {
8722
+ function ef(e, n) {
8709
8723
  return new Pt({
8710
8724
  type: "object",
8711
8725
  get shape() {
8712
- return V(this, "shape", $t(e)), this.shape;
8726
+ return B(this, "shape", $t(e)), this.shape;
8713
8727
  },
8714
8728
  catchall: Or(),
8715
8729
  ...p(n)
8716
8730
  });
8717
8731
  }
8718
- function ef(e, n) {
8732
+ function tf(e, n) {
8719
8733
  return new Pt({
8720
8734
  type: "object",
8721
8735
  get shape() {
8722
- return V(this, "shape", $t(e)), this.shape;
8736
+ return B(this, "shape", $t(e)), this.shape;
8723
8737
  },
8724
8738
  catchall: ke(),
8725
8739
  ...p(n)
@@ -8738,7 +8752,7 @@ function Pr(e, n) {
8738
8752
  const pc = /* @__PURE__ */ s("ZodDiscriminatedUnion", (e, n) => {
8739
8753
  Nr.init(e, n), ya.init(e, n);
8740
8754
  });
8741
- function tf(e, n, r) {
8755
+ function nf(e, n, r) {
8742
8756
  return new pc({
8743
8757
  type: "union",
8744
8758
  options: n,
@@ -8782,7 +8796,7 @@ function _c(e, n, r) {
8782
8796
  ...p(r)
8783
8797
  });
8784
8798
  }
8785
- function nf(e, n, r) {
8799
+ function rf(e, n, r) {
8786
8800
  const o = C(e);
8787
8801
  return o._zod.values = void 0, new Dr({
8788
8802
  type: "record",
@@ -8794,7 +8808,7 @@ function nf(e, n, r) {
8794
8808
  const bc = /* @__PURE__ */ s("ZodMap", (e, n) => {
8795
8809
  Ia.init(e, n), I.init(e, n), e.keyType = n.keyType, e.valueType = n.valueType;
8796
8810
  });
8797
- function rf(e, n, r) {
8811
+ function of(e, n, r) {
8798
8812
  return new bc({
8799
8813
  type: "map",
8800
8814
  keyType: e,
@@ -8805,7 +8819,7 @@ function rf(e, n, r) {
8805
8819
  const yc = /* @__PURE__ */ s("ZodSet", (e, n) => {
8806
8820
  za.init(e, n), I.init(e, n), e.min = (...r) => e.check(Ne(...r)), e.nonempty = (r) => e.check(Ne(1, r)), e.max = (...r) => e.check(wt(...r)), e.size = (...r) => e.check(qn(...r));
8807
8821
  });
8808
- function of(e, n) {
8822
+ function af(e, n) {
8809
8823
  return new yc({
8810
8824
  type: "set",
8811
8825
  valueType: e,
@@ -8851,7 +8865,7 @@ function Tr(e, n) {
8851
8865
  ...p(n)
8852
8866
  });
8853
8867
  }
8854
- function af(e, n) {
8868
+ function uf(e, n) {
8855
8869
  return new Pe({
8856
8870
  type: "enum",
8857
8871
  entries: e,
@@ -8867,7 +8881,7 @@ const kc = /* @__PURE__ */ s("ZodLiteral", (e, n) => {
8867
8881
  }
8868
8882
  });
8869
8883
  });
8870
- function uf(e, n) {
8884
+ function cf(e, n) {
8871
8885
  return new kc({
8872
8886
  type: "literal",
8873
8887
  values: Array.isArray(e) ? e : [e],
@@ -8877,7 +8891,7 @@ function uf(e, n) {
8877
8891
  const wc = /* @__PURE__ */ s("ZodFile", (e, n) => {
8878
8892
  xa.init(e, n), I.init(e, n), e.min = (r, o) => e.check(Ne(r, o)), e.max = (r, o) => e.check(wt(r, o)), e.mime = (r, o) => e.check(nr(Array.isArray(r) ? r : [r], o));
8879
8893
  });
8880
- function cf(e) {
8894
+ function sf(e) {
8881
8895
  return Du(wc, e);
8882
8896
  }
8883
8897
  const Ic = /* @__PURE__ */ s("ZodTransform", (e, n) => {
@@ -8920,7 +8934,7 @@ function ft(e) {
8920
8934
  innerType: e
8921
8935
  });
8922
8936
  }
8923
- function sf(e) {
8937
+ function lf(e) {
8924
8938
  return mt(ft(e));
8925
8939
  }
8926
8940
  const Sc = /* @__PURE__ */ s("ZodDefault", (e, n) => {
@@ -8960,7 +8974,7 @@ function Uc(e, n) {
8960
8974
  const Nc = /* @__PURE__ */ s("ZodSuccess", (e, n) => {
8961
8975
  Za.init(e, n), I.init(e, n), e.unwrap = () => e._zod.def.innerType;
8962
8976
  });
8963
- function lf(e) {
8977
+ function df(e) {
8964
8978
  return new Nc({
8965
8979
  type: "success",
8966
8980
  innerType: e
@@ -8979,7 +8993,7 @@ function Dc(e, n) {
8979
8993
  const Tc = /* @__PURE__ */ s("ZodNaN", (e, n) => {
8980
8994
  Aa.init(e, n), I.init(e, n);
8981
8995
  });
8982
- function df(e) {
8996
+ function mf(e) {
8983
8997
  return Su(Tc, e);
8984
8998
  }
8985
8999
  const Rr = /* @__PURE__ */ s("ZodPipe", (e, n) => {
@@ -8996,7 +9010,7 @@ function pt(e, n) {
8996
9010
  const Fr = /* @__PURE__ */ s("ZodCodec", (e, n) => {
8997
9011
  Rr.init(e, n), Sn.init(e, n);
8998
9012
  });
8999
- function mf(e, n, r) {
9013
+ function ff(e, n, r) {
9000
9014
  return new Fr({
9001
9015
  type: "pipe",
9002
9016
  in: e,
@@ -9017,7 +9031,7 @@ function Ec(e) {
9017
9031
  const Ac = /* @__PURE__ */ s("ZodTemplateLiteral", (e, n) => {
9018
9032
  La.init(e, n), I.init(e, n);
9019
9033
  });
9020
- function ff(e, n) {
9034
+ function pf(e, n) {
9021
9035
  return new Ac({
9022
9036
  type: "template_literal",
9023
9037
  parts: e,
@@ -9036,7 +9050,7 @@ function Fc(e) {
9036
9050
  const Lc = /* @__PURE__ */ s("ZodPromise", (e, n) => {
9037
9051
  Ma.init(e, n), I.init(e, n), e.unwrap = () => e._zod.def.innerType;
9038
9052
  });
9039
- function pf(e) {
9053
+ function vf(e) {
9040
9054
  return new Lc({
9041
9055
  type: "promise",
9042
9056
  innerType: e
@@ -9055,14 +9069,14 @@ function ui(e) {
9055
9069
  const Dt = /* @__PURE__ */ s("ZodCustom", (e, n) => {
9056
9070
  Ka.init(e, n), I.init(e, n);
9057
9071
  });
9058
- function vf(e) {
9072
+ function gf(e) {
9059
9073
  const n = new P({
9060
9074
  check: "custom"
9061
9075
  // ...util.normalizeParams(params),
9062
9076
  });
9063
9077
  return n._zod.check = e, n;
9064
9078
  }
9065
- function gf(e, n) {
9079
+ function hf(e, n) {
9066
9080
  return Tu(Dt, e ?? (() => !0), n);
9067
9081
  }
9068
9082
  function Mc(e, n = {}) {
@@ -9071,7 +9085,7 @@ function Mc(e, n = {}) {
9071
9085
  function Jc(e) {
9072
9086
  return Eu(e);
9073
9087
  }
9074
- function hf(e, n = {
9088
+ function $f(e, n = {
9075
9089
  error: `Input not instance of ${e.name}`
9076
9090
  }) {
9077
9091
  const r = new Dt({
@@ -9083,19 +9097,19 @@ function hf(e, n = {
9083
9097
  });
9084
9098
  return r._zod.bag.Class = e, r;
9085
9099
  }
9086
- const $f = (...e) => Ru({
9100
+ const _f = (...e) => Ru({
9087
9101
  Codec: Fr,
9088
9102
  Boolean: Ot,
9089
9103
  String: St
9090
9104
  }, ...e);
9091
- function _f(e) {
9105
+ function bf(e) {
9092
9106
  const n = Fc(() => Pr([Vt(e), rc(), ic(), cc(), Nt(n), _c(Vt(), n)]));
9093
9107
  return n;
9094
9108
  }
9095
- function bf(e, n) {
9109
+ function yf(e, n) {
9096
9110
  return pt(Zr(e), n);
9097
9111
  }
9098
- const yf = {
9112
+ const kf = {
9099
9113
  invalid_type: "invalid_type",
9100
9114
  too_big: "too_big",
9101
9115
  too_small: "too_small",
@@ -9108,38 +9122,38 @@ const yf = {
9108
9122
  invalid_value: "invalid_value",
9109
9123
  custom: "custom"
9110
9124
  };
9111
- function kf(e) {
9125
+ function wf(e) {
9112
9126
  E({
9113
9127
  customError: e
9114
9128
  });
9115
9129
  }
9116
- function wf() {
9130
+ function If() {
9117
9131
  return E().customError;
9118
9132
  }
9119
9133
  var qt;
9120
9134
  qt || (qt = {});
9121
- function If(e) {
9135
+ function zf(e) {
9122
9136
  return Ha(St, e);
9123
9137
  }
9124
- function zf(e) {
9138
+ function Sf(e) {
9125
9139
  return ou(xt, e);
9126
9140
  }
9127
- function Sf(e) {
9141
+ function jf(e) {
9128
9142
  return mu(Ot, e);
9129
9143
  }
9130
- function jf(e) {
9144
+ function xf(e) {
9131
9145
  return pu(Ut, e);
9132
9146
  }
9133
- function xf(e) {
9147
+ function Of(e) {
9134
9148
  return zu(Ur, e);
9135
9149
  }
9136
- const Of = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9150
+ const Uf = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9137
9151
  __proto__: null,
9138
- bigint: jf,
9139
- boolean: Sf,
9140
- date: xf,
9141
- number: zf,
9142
- string: If
9152
+ bigint: xf,
9153
+ boolean: jf,
9154
+ date: Of,
9155
+ number: Sf,
9156
+ string: zf
9143
9157
  }, Symbol.toStringTag, { value: "Module" }));
9144
9158
  E(Wa());
9145
9159
  const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
@@ -9171,7 +9185,7 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9171
9185
  ZodEmail: mr,
9172
9186
  ZodEmoji: fr,
9173
9187
  ZodEnum: Pe,
9174
- ZodError: dm,
9188
+ ZodError: mm,
9175
9189
  ZodFile: wc,
9176
9190
  get ZodFirstPartyTypeKind() {
9177
9191
  return qt;
@@ -9185,7 +9199,7 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9185
9199
  ZodISODuration: lr,
9186
9200
  ZodISOTime: sr,
9187
9201
  ZodIntersection: vc,
9188
- ZodIssueCode: yf,
9202
+ ZodIssueCode: kf,
9189
9203
  ZodJWT: jr,
9190
9204
  ZodKSUID: _r,
9191
9205
  ZodLazy: Rc,
@@ -9227,81 +9241,81 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9227
9241
  _ZodString: dr,
9228
9242
  _default: jc,
9229
9243
  _function: ui,
9230
- any: Bm,
9244
+ any: qm,
9231
9245
  array: Nt,
9232
- base64: Nm,
9233
- base64url: Pm,
9234
- bigint: Jm,
9246
+ base64: Pm,
9247
+ base64url: Dm,
9248
+ bigint: Km,
9235
9249
  boolean: ic,
9236
9250
  catch: Dc,
9237
- check: vf,
9238
- cidrv4: Om,
9239
- cidrv6: Um,
9251
+ check: gf,
9252
+ cidrv4: Um,
9253
+ cidrv6: Nm,
9240
9254
  clone: C,
9241
- codec: mf,
9242
- coerce: Of,
9255
+ codec: ff,
9256
+ coerce: Uf,
9243
9257
  config: E,
9244
- core: sm,
9245
- cuid: km,
9246
- cuid2: wm,
9247
- custom: gf,
9248
- date: Xm,
9258
+ core: lm,
9259
+ cuid: wm,
9260
+ cuid2: Im,
9261
+ custom: hf,
9262
+ date: Ym,
9249
9263
  decode: Xu,
9250
9264
  decodeAsync: Hu,
9251
- discriminatedUnion: tf,
9252
- e164: Dm,
9253
- email: mm,
9254
- emoji: bm,
9265
+ discriminatedUnion: nf,
9266
+ e164: Tm,
9267
+ email: fm,
9268
+ emoji: ym,
9255
9269
  encode: qu,
9256
9270
  encodeAsync: Yu,
9257
9271
  endsWith: tr,
9258
9272
  enum: Tr,
9259
- file: cf,
9273
+ file: sf,
9260
9274
  flattenError: on,
9261
- float32: Fm,
9262
- float64: Lm,
9275
+ float32: Lm,
9276
+ float64: Cm,
9263
9277
  formatError: an,
9264
9278
  function: ui,
9265
- getErrorMap: wf,
9279
+ getErrorMap: If,
9266
9280
  globalRegistry: ae,
9267
9281
  gt: de,
9268
9282
  gte: R,
9269
- guid: fm,
9270
- hash: Rm,
9271
- hex: Am,
9272
- hostname: Em,
9273
- httpUrl: _m,
9283
+ guid: pm,
9284
+ hash: Fm,
9285
+ hex: Rm,
9286
+ hostname: Am,
9287
+ httpUrl: bm,
9274
9288
  includes: Qn,
9275
- instanceof: hf,
9289
+ instanceof: $f,
9276
9290
  int: Bt,
9277
- int32: Cm,
9278
- int64: Km,
9291
+ int32: Mm,
9292
+ int64: Wm,
9279
9293
  intersection: gc,
9280
- ipv4: jm,
9281
- ipv6: xm,
9282
- iso: lm,
9283
- json: _f,
9284
- jwt: Tm,
9285
- keyof: Ym,
9286
- ksuid: Sm,
9294
+ ipv4: xm,
9295
+ ipv6: Om,
9296
+ iso: dm,
9297
+ json: bf,
9298
+ jwt: Zm,
9299
+ keyof: Hm,
9300
+ ksuid: jm,
9287
9301
  lazy: Fc,
9288
9302
  length: zt,
9289
- literal: uf,
9303
+ literal: cf,
9290
9304
  locales: Ba,
9291
- looseObject: ef,
9305
+ looseObject: tf,
9292
9306
  lowercase: Yn,
9293
9307
  lt: le,
9294
- lte: W,
9295
- map: rf,
9308
+ lte: G,
9309
+ map: of,
9296
9310
  maxLength: It,
9297
9311
  maxSize: wt,
9298
9312
  mime: nr,
9299
9313
  minLength: ye,
9300
9314
  minSize: Ne,
9301
9315
  multipleOf: Ue,
9302
- nan: df,
9303
- nanoid: ym,
9304
- nativeEnum: af,
9316
+ nan: mf,
9317
+ nanoid: km,
9318
+ nativeEnum: uf,
9305
9319
  negative: xu,
9306
9320
  never: Or,
9307
9321
  nonnegative: Uu,
@@ -9310,20 +9324,20 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9310
9324
  normalize: rr,
9311
9325
  null: cc,
9312
9326
  nullable: ft,
9313
- nullish: sf,
9327
+ nullish: lf,
9314
9328
  number: rc,
9315
- object: Hm,
9329
+ object: Qm,
9316
9330
  optional: mt,
9317
9331
  overwrite: fe,
9318
9332
  parse: Wu,
9319
9333
  parseAsync: Gu,
9320
- partialRecord: nf,
9334
+ partialRecord: rf,
9321
9335
  pipe: pt,
9322
9336
  positive: ju,
9323
9337
  prefault: Oc,
9324
- preprocess: bf,
9338
+ preprocess: yf,
9325
9339
  prettifyError: Ui,
9326
- promise: pf,
9340
+ promise: vf,
9327
9341
  property: Nu,
9328
9342
  readonly: Ec,
9329
9343
  record: _c,
@@ -9337,18 +9351,18 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9337
9351
  safeEncodeAsync: tc,
9338
9352
  safeParse: Vu,
9339
9353
  safeParseAsync: Bu,
9340
- set: of,
9341
- setErrorMap: kf,
9354
+ set: af,
9355
+ setErrorMap: wf,
9342
9356
  size: qn,
9343
9357
  startsWith: er,
9344
- strictObject: Qm,
9358
+ strictObject: ef,
9345
9359
  string: Vt,
9346
- stringFormat: Zm,
9347
- stringbool: $f,
9348
- success: lf,
9360
+ stringFormat: Em,
9361
+ stringbool: _f,
9362
+ success: df,
9349
9363
  superRefine: Jc,
9350
- symbol: Gm,
9351
- templateLiteral: ff,
9364
+ symbol: Vm,
9365
+ templateLiteral: pf,
9352
9366
  toJSONSchema: Fu,
9353
9367
  toLowerCase: or,
9354
9368
  toUpperCase: ar,
@@ -9356,22 +9370,22 @@ const Et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
9356
9370
  treeifyError: xi,
9357
9371
  trim: ir,
9358
9372
  tuple: $c,
9359
- uint32: Mm,
9360
- uint64: Wm,
9361
- ulid: Im,
9362
- undefined: Vm,
9373
+ uint32: Jm,
9374
+ uint64: Gm,
9375
+ ulid: zm,
9376
+ undefined: Bm,
9363
9377
  union: Pr,
9364
9378
  unknown: ke,
9365
9379
  uppercase: Hn,
9366
- url: $m,
9380
+ url: _m,
9367
9381
  util: Si,
9368
- uuid: pm,
9369
- uuidv4: vm,
9370
- uuidv6: gm,
9371
- uuidv7: hm,
9372
- void: qm,
9373
- xid: zm
9374
- }, Symbol.toStringTag, { value: "Module" })), Uf = Et.object({
9382
+ uuid: vm,
9383
+ uuidv4: gm,
9384
+ uuidv6: hm,
9385
+ uuidv7: $m,
9386
+ void: Xm,
9387
+ xid: Sm
9388
+ }, Symbol.toStringTag, { value: "Module" })), Nf = Et.object({
9375
9389
  errorId: Et.string().optional().default("unexpected_error"),
9376
9390
  debugMessage: Et.string().optional()
9377
9391
  });
@@ -9380,27 +9394,30 @@ function Kc(e) {
9380
9394
  }
9381
9395
  async function At(e) {
9382
9396
  try {
9383
- const n = Uf.parse(await e.json());
9384
- return new B(
9385
- n.errorId,
9397
+ const n = await e.json(), r = Nf.safeParse(n);
9398
+ if (!r.success)
9399
+ return new os(e.status, n);
9400
+ const o = r.data;
9401
+ return new K(
9402
+ o.errorId,
9386
9403
  e.status,
9387
- n.debugMessage ?? JSON.stringify(n)
9404
+ o.debugMessage ?? JSON.stringify(o)
9388
9405
  );
9389
9406
  } catch {
9390
- return new B("unexpected_error", e.status);
9407
+ return new K("unexpected_error", e.status);
9391
9408
  }
9392
9409
  }
9393
9410
  async function nt(e) {
9394
- if (e instanceof B)
9411
+ if (e instanceof K)
9395
9412
  return e;
9396
9413
  if (e && typeof e == "object" && "name" in e && e.name === "AbortError")
9397
- return new B("request_aborted", 499);
9414
+ return new K("request_aborted", 499);
9398
9415
  if (e && typeof e == "object" && "cause" in e && e.cause === "aborted")
9399
- return new B("request_aborted", 499);
9416
+ return new K("request_aborted", 499);
9400
9417
  if (typeof e == "string" && e === "aborted")
9401
- return new B("request_aborted", 499);
9418
+ return new K("request_aborted", 499);
9402
9419
  const n = e instanceof Error ? e.message : String(e);
9403
- return new B("fetch_failed", 500, n);
9420
+ return new K("fetch_failed", 500, n);
9404
9421
  }
9405
9422
  function Wc(e) {
9406
9423
  let n = 2166136261;
@@ -9408,7 +9425,7 @@ function Wc(e) {
9408
9425
  n ^= e.charCodeAt(r), n += (n << 1) + (n << 4) + (n << 7) + (n << 8) + (n << 24);
9409
9426
  return (n >>> 0).toString(16);
9410
9427
  }
9411
- async function Nf(e) {
9428
+ async function Pf(e) {
9412
9429
  const n = [];
9413
9430
  for (const [r, o] of e.entries())
9414
9431
  if (typeof o == "object" && o !== null && "name" in o && "size" in o && "type" in o) {
@@ -9418,7 +9435,7 @@ async function Nf(e) {
9418
9435
  n.push(`${r}:${o}`);
9419
9436
  return Wc(n.sort().join("|"));
9420
9437
  }
9421
- function Pf(e) {
9438
+ function Df(e) {
9422
9439
  if (!e) return {};
9423
9440
  if (e instanceof Headers) {
9424
9441
  const r = {};
@@ -9527,7 +9544,7 @@ function T(e = { headers: {} }) {
9527
9544
  const M = {
9528
9545
  "Content-Type": "application/json",
9529
9546
  ...e.headers,
9530
- ...Pf(w.headers)
9547
+ ...Df(w.headers)
9531
9548
  };
9532
9549
  if (e.auth) {
9533
9550
  if (e.auth.type === "bearer" && e.auth.token)
@@ -9561,7 +9578,7 @@ function T(e = { headers: {} }) {
9561
9578
  if (typeof J.body == "string")
9562
9579
  pe += `_${Wc(J.body)}`;
9563
9580
  else if (J.body instanceof FormData) {
9564
- const Z = await Nf(
9581
+ const Z = await Pf(
9565
9582
  J.body
9566
9583
  );
9567
9584
  pe += `_${Z}`;
@@ -9643,15 +9660,6 @@ function T(e = { headers: {} }) {
9643
9660
  build: j
9644
9661
  };
9645
9662
  }
9646
- class B extends Error {
9647
- $type = "ApiError";
9648
- errorId;
9649
- debugMessage;
9650
- status;
9651
- constructor(n, r, o) {
9652
- super(`API Error: ${n} (status: ${r})`), this.errorId = n, this.status = r, this.debugMessage = o;
9653
- }
9654
- }
9655
9663
  function Lr(e) {
9656
9664
  const n = e ?? T().build(), r = (async (a, u) => {
9657
9665
  try {
@@ -9660,7 +9668,7 @@ function Lr(e) {
9660
9668
  const l = await c.json();
9661
9669
  if (u && "schema" in u) {
9662
9670
  const m = u.schema.safeParse(l);
9663
- return m.success ? m.data : new B(
9671
+ return m.success ? m.data : new K(
9664
9672
  "schema_validation_failed",
9665
9673
  500,
9666
9674
  `Response validation failed: ${m.error.message}`
@@ -9687,7 +9695,7 @@ function Lr(e) {
9687
9695
  if (c.ok) {
9688
9696
  const l = c.body?.getReader(), f = new TextDecoder();
9689
9697
  if (!l)
9690
- throw new B(
9698
+ throw new K(
9691
9699
  "unexpected_error",
9692
9700
  500,
9693
9701
  "Response body is null"
@@ -9710,7 +9718,7 @@ function Lr(e) {
9710
9718
  for await (const c of t(a, u)) {
9711
9719
  const l = JSON.parse(c), f = u.schema.safeParse(l);
9712
9720
  if (!f.success)
9713
- throw new B(
9721
+ throw new K(
9714
9722
  "schema_validation_failed",
9715
9723
  500,
9716
9724
  `Chunk validation failed: ${f.error.message}`
@@ -9732,17 +9740,17 @@ let Rt;
9732
9740
  function Tt() {
9733
9741
  return Rt || (Rt = Lr()), Rt;
9734
9742
  }
9735
- async function sp(e, n) {
9743
+ async function lp(e, n) {
9736
9744
  return Tt().apiFetch(e, n);
9737
9745
  }
9738
- async function lp(e, n) {
9746
+ async function dp(e, n) {
9739
9747
  return Tt().apiStreamFetch(e, n);
9740
9748
  }
9741
- async function* dp(e, n) {
9749
+ async function* mp(e, n) {
9742
9750
  for await (const r of Tt().apiFetchTextMany(e, n ?? {}))
9743
9751
  yield r;
9744
9752
  }
9745
- async function* mp(e, n) {
9753
+ async function* fp(e, n) {
9746
9754
  for await (const r of Tt().apiFetchMany(e, n))
9747
9755
  yield r;
9748
9756
  }
@@ -9752,18 +9760,18 @@ async function* mp(e, n) {
9752
9760
  * @license MIT
9753
9761
  **/
9754
9762
  // @__NO_SIDE_EFFECTS__
9755
- function Df(e) {
9763
+ function Tf(e) {
9756
9764
  const n = /* @__PURE__ */ Object.create(null);
9757
9765
  for (const r of e.split(",")) n[r] = 1;
9758
9766
  return (r) => r in n;
9759
9767
  }
9760
- const Tf = Object.assign, Zf = Object.prototype.hasOwnProperty, Xt = (e, n) => Zf.call(e, n), De = Array.isArray, ot = (e) => Gc(e) === "[object Map]", Ef = (e) => typeof e == "string", Be = (e) => typeof e == "symbol", Te = (e) => e !== null && typeof e == "object", Af = Object.prototype.toString, Gc = (e) => Af.call(e), Rf = (e) => Gc(e).slice(8, -1), Cr = (e) => Ef(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, Oe = (e, n) => !Object.is(e, n);
9768
+ const Zf = Object.assign, Ef = Object.prototype.hasOwnProperty, Xt = (e, n) => Ef.call(e, n), De = Array.isArray, ot = (e) => Gc(e) === "[object Map]", Af = (e) => typeof e == "string", Be = (e) => typeof e == "symbol", Te = (e) => e !== null && typeof e == "object", Rf = Object.prototype.toString, Gc = (e) => Rf.call(e), Ff = (e) => Gc(e).slice(8, -1), Cr = (e) => Af(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, Oe = (e, n) => !Object.is(e, n);
9761
9769
  /**
9762
9770
  * @vue/reactivity v3.5.25
9763
9771
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
9764
9772
  * @license MIT
9765
9773
  **/
9766
- let Ff, Vc = 0, Ft;
9774
+ let Lf, Vc = 0, Ft;
9767
9775
  function Mr() {
9768
9776
  Vc++;
9769
9777
  }
@@ -9788,10 +9796,10 @@ function Jr() {
9788
9796
  }
9789
9797
  let vt = !0;
9790
9798
  const Bc = [];
9791
- function Lf() {
9799
+ function Cf() {
9792
9800
  Bc.push(vt), vt = !1;
9793
9801
  }
9794
- function Cf() {
9802
+ function Mf() {
9795
9803
  const e = Bc.pop();
9796
9804
  vt = e === void 0 ? !0 : e;
9797
9805
  }
@@ -9823,7 +9831,7 @@ const Yt = /* @__PURE__ */ new WeakMap(), ce = Symbol(
9823
9831
  ""
9824
9832
  );
9825
9833
  function A(e, n, r) {
9826
- if (vt && Ff) {
9834
+ if (vt && Lf) {
9827
9835
  let o = Yt.get(e);
9828
9836
  o || Yt.set(e, o = /* @__PURE__ */ new Map());
9829
9837
  let t = o.get(r);
@@ -9871,7 +9879,7 @@ function Kr(e) {
9871
9879
  function H(e, n) {
9872
9880
  return te(e) ? rs(e) ? Ee(Y(n)) : Ee(n) : Y(n);
9873
9881
  }
9874
- const Mf = {
9882
+ const Jf = {
9875
9883
  __proto__: null,
9876
9884
  [Symbol.iterator]() {
9877
9885
  return Lt(this, Symbol.iterator, (e) => H(this, e));
@@ -9988,10 +9996,10 @@ function Lt(e, n, r) {
9988
9996
  return i.done || (i.value = r(i.value)), i;
9989
9997
  }), t;
9990
9998
  }
9991
- const Jf = Array.prototype;
9999
+ const Kf = Array.prototype;
9992
10000
  function q(e, n, r, o, t, i) {
9993
10001
  const a = Kr(e), u = a !== e && !ne(e), c = a[n];
9994
- if (c !== Jf[n]) {
10002
+ if (c !== Kf[n]) {
9995
10003
  const m = c.apply(e, i);
9996
10004
  return u ? Y(m) : m;
9997
10005
  }
@@ -10017,17 +10025,17 @@ function Ct(e, n, r) {
10017
10025
  const o = O(e);
10018
10026
  A(o, "iterate", Ze);
10019
10027
  const t = o[n](...r);
10020
- return (t === -1 || t === !1) && ip(r[0]) ? (r[0] = O(r[0]), o[n](...r)) : t;
10028
+ return (t === -1 || t === !1) && op(r[0]) ? (r[0] = O(r[0]), o[n](...r)) : t;
10021
10029
  }
10022
10030
  function Se(e, n, r = []) {
10023
- Lf(), Mr();
10031
+ Cf(), Mr();
10024
10032
  const o = O(e)[n].apply(e, r);
10025
- return Jr(), Cf(), o;
10033
+ return Jr(), Mf(), o;
10026
10034
  }
10027
- const Kf = /* @__PURE__ */ Df("__proto__,__v_isRef,__isVue"), Xc = new Set(
10035
+ const Wf = /* @__PURE__ */ Tf("__proto__,__v_isRef,__isVue"), Xc = new Set(
10028
10036
  /* @__PURE__ */ Object.getOwnPropertyNames(Symbol).filter((e) => e !== "arguments" && e !== "caller").map((e) => Symbol[e]).filter(Be)
10029
10037
  );
10030
- function Wf(e) {
10038
+ function Gf(e) {
10031
10039
  Be(e) || (e = String(e));
10032
10040
  const n = O(this);
10033
10041
  return A(n, "has", e), n.hasOwnProperty(e);
@@ -10046,16 +10054,16 @@ class Yc {
10046
10054
  if (r === "__v_isShallow")
10047
10055
  return i;
10048
10056
  if (r === "__v_raw")
10049
- return o === (t ? i ? tp : es : i ? ep : Qc).get(n) || // receiver is not the reactive proxy, but has the same prototype
10057
+ return o === (t ? i ? np : es : i ? tp : Qc).get(n) || // receiver is not the reactive proxy, but has the same prototype
10050
10058
  // this means the receiver is a user proxy of the reactive proxy
10051
10059
  Object.getPrototypeOf(n) === Object.getPrototypeOf(o) ? n : void 0;
10052
10060
  const a = De(n);
10053
10061
  if (!t) {
10054
10062
  let c;
10055
- if (a && (c = Mf[r]))
10063
+ if (a && (c = Jf[r]))
10056
10064
  return c;
10057
10065
  if (r === "hasOwnProperty")
10058
- return Wf;
10066
+ return Gf;
10059
10067
  }
10060
10068
  const u = Reflect.get(
10061
10069
  n,
@@ -10065,7 +10073,7 @@ class Yc {
10065
10073
  // its class methods
10066
10074
  ge(n) ? n : o
10067
10075
  );
10068
- if ((Be(r) ? Xc.has(r) : Kf(r)) || (t || A(n, "get", r), i))
10076
+ if ((Be(r) ? Xc.has(r) : Wf(r)) || (t || A(n, "get", r), i))
10069
10077
  return u;
10070
10078
  if (ge(u)) {
10071
10079
  const c = a && Cr(r) ? u : u.value;
@@ -10074,7 +10082,7 @@ class Yc {
10074
10082
  return Te(u) ? t ? en(u) : ts(u) : u;
10075
10083
  }
10076
10084
  }
10077
- class Gf extends Yc {
10085
+ class Vf extends Yc {
10078
10086
  constructor(n = !1) {
10079
10087
  super(!1, n);
10080
10088
  }
@@ -10112,7 +10120,7 @@ class Gf extends Yc {
10112
10120
  ), Reflect.ownKeys(n);
10113
10121
  }
10114
10122
  }
10115
- class Vf extends Yc {
10123
+ class Bf extends Yc {
10116
10124
  constructor(n = !1) {
10117
10125
  super(!0, n);
10118
10126
  }
@@ -10123,8 +10131,8 @@ class Vf extends Yc {
10123
10131
  return !0;
10124
10132
  }
10125
10133
  }
10126
- const Bf = /* @__PURE__ */ new Gf(), qf = /* @__PURE__ */ new Vf(), Qt = (e) => e, rt = (e) => Reflect.getPrototypeOf(e);
10127
- function Xf(e, n, r) {
10134
+ const qf = /* @__PURE__ */ new Vf(), Xf = /* @__PURE__ */ new Bf(), Qt = (e) => e, rt = (e) => Reflect.getPrototypeOf(e);
10135
+ function Yf(e, n, r) {
10128
10136
  return function(...o) {
10129
10137
  const t = this.__v_raw, i = O(t), a = ot(i), u = e === "entries" || e === Symbol.iterator && a, c = e === "keys" && a, l = t[e](...o), f = r ? Qt : n ? Ee : Y;
10130
10138
  return !n && A(
@@ -10152,7 +10160,7 @@ function it(e) {
10152
10160
  return e === "delete" ? !1 : e === "clear" ? void 0 : this;
10153
10161
  };
10154
10162
  }
10155
- function Yf(e, n) {
10163
+ function Hf(e, n) {
10156
10164
  const r = {
10157
10165
  get(t) {
10158
10166
  const i = this.__v_raw, a = O(i), u = O(t);
@@ -10177,7 +10185,7 @@ function Yf(e, n) {
10177
10185
  return !e && A(c, "iterate", ce), u.forEach((f, m) => t.call(i, l(f), l(m), a));
10178
10186
  }
10179
10187
  };
10180
- return Tf(
10188
+ return Zf(
10181
10189
  r,
10182
10190
  e ? {
10183
10191
  add: it("add"),
@@ -10221,23 +10229,23 @@ function Yf(e, n) {
10221
10229
  "entries",
10222
10230
  Symbol.iterator
10223
10231
  ].forEach((t) => {
10224
- r[t] = Xf(t, e, n);
10232
+ r[t] = Yf(t, e, n);
10225
10233
  }), r;
10226
10234
  }
10227
10235
  function Hc(e, n) {
10228
- const r = Yf(e, n);
10236
+ const r = Hf(e, n);
10229
10237
  return (o, t, i) => t === "__v_isReactive" ? !e : t === "__v_isReadonly" ? e : t === "__v_raw" ? o : Reflect.get(
10230
10238
  Xt(r, t) && t in o ? r : o,
10231
10239
  t,
10232
10240
  i
10233
10241
  );
10234
10242
  }
10235
- const Hf = {
10243
+ const Qf = {
10236
10244
  get: /* @__PURE__ */ Hc(!1, !1)
10237
- }, Qf = {
10245
+ }, ep = {
10238
10246
  get: /* @__PURE__ */ Hc(!0, !1)
10239
- }, Qc = /* @__PURE__ */ new WeakMap(), ep = /* @__PURE__ */ new WeakMap(), es = /* @__PURE__ */ new WeakMap(), tp = /* @__PURE__ */ new WeakMap();
10240
- function np(e) {
10247
+ }, Qc = /* @__PURE__ */ new WeakMap(), tp = /* @__PURE__ */ new WeakMap(), es = /* @__PURE__ */ new WeakMap(), np = /* @__PURE__ */ new WeakMap();
10248
+ function rp(e) {
10241
10249
  switch (e) {
10242
10250
  case "Object":
10243
10251
  case "Array":
@@ -10251,15 +10259,15 @@ function np(e) {
10251
10259
  return 0;
10252
10260
  }
10253
10261
  }
10254
- function rp(e) {
10255
- return e.__v_skip || !Object.isExtensible(e) ? 0 : np(Rf(e));
10262
+ function ip(e) {
10263
+ return e.__v_skip || !Object.isExtensible(e) ? 0 : rp(Ff(e));
10256
10264
  }
10257
10265
  function ts(e) {
10258
10266
  return te(e) ? e : ns(
10259
10267
  e,
10260
10268
  !1,
10261
- Bf,
10262
- Hf,
10269
+ qf,
10270
+ Qf,
10263
10271
  Qc
10264
10272
  );
10265
10273
  }
@@ -10267,15 +10275,15 @@ function en(e) {
10267
10275
  return ns(
10268
10276
  e,
10269
10277
  !0,
10270
- qf,
10271
- Qf,
10278
+ Xf,
10279
+ ep,
10272
10280
  es
10273
10281
  );
10274
10282
  }
10275
10283
  function ns(e, n, r, o, t) {
10276
10284
  if (!Te(e) || e.__v_raw && !(n && e.__v_isReactive))
10277
10285
  return e;
10278
- const i = rp(e);
10286
+ const i = ip(e);
10279
10287
  if (i === 0)
10280
10288
  return e;
10281
10289
  const a = t.get(e);
@@ -10296,7 +10304,7 @@ function te(e) {
10296
10304
  function ne(e) {
10297
10305
  return !!(e && e.__v_isShallow);
10298
10306
  }
10299
- function ip(e) {
10307
+ function op(e) {
10300
10308
  return e ? !!e.__v_raw : !1;
10301
10309
  }
10302
10310
  function O(e) {
@@ -10308,12 +10316,12 @@ function ge(e) {
10308
10316
  return e ? e.__v_isRef === !0 : !1;
10309
10317
  }
10310
10318
  function he(e) {
10311
- return op(e, !1);
10319
+ return ap(e, !1);
10312
10320
  }
10313
- function op(e, n) {
10314
- return ge(e) ? e : new ap(e, n);
10321
+ function ap(e, n) {
10322
+ return ge(e) ? e : new up(e, n);
10315
10323
  }
10316
- class ap {
10324
+ class up {
10317
10325
  constructor(n, r) {
10318
10326
  this.dep = new qc(), this.__v_isRef = !0, this.__v_isShallow = !1, this._rawValue = r ? n : O(n), this._value = r ? n : Y(n), this.__v_isShallow = r;
10319
10327
  }
@@ -10325,8 +10333,8 @@ class ap {
10325
10333
  n = o ? n : O(n), Oe(n, r) && (this._rawValue = n, this._value = o ? n : Y(n), this.dep.trigger());
10326
10334
  }
10327
10335
  }
10328
- const up = T().build();
10329
- function fp(e, n, r = up) {
10336
+ const cp = T().build();
10337
+ function pp(e, n, r = cp) {
10330
10338
  const o = Lr(r), t = he(), i = he(), a = he(!0);
10331
10339
  return o.apiFetch(e, n).then((u) => {
10332
10340
  Kc(u) ? i.value = u : t.value = u;
@@ -10343,8 +10351,8 @@ function fp(e, n, r = up) {
10343
10351
  pending: a
10344
10352
  };
10345
10353
  }
10346
- const cp = T().build();
10347
- function pp(e, n, r = cp) {
10354
+ const sp = T().build();
10355
+ function vp(e, n, r = sp) {
10348
10356
  const o = Lr(r), t = he(), i = he(), a = he(!0);
10349
10357
  return o.apiFetch(e, n).then((u) => {
10350
10358
  Kc(u) ? i.value = u : t.value = u;
@@ -10362,14 +10370,14 @@ function pp(e, n, r = cp) {
10362
10370
  };
10363
10371
  }
10364
10372
  export {
10365
- B as ApiError,
10366
- sp as apiFetch,
10367
- mp as apiFetchMany,
10368
- dp as apiFetchTextMany,
10369
- lp as apiStreamFetch,
10373
+ K as ApiError,
10374
+ lp as apiFetch,
10375
+ fp as apiFetchMany,
10376
+ mp as apiFetchTextMany,
10377
+ dp as apiStreamFetch,
10370
10378
  Lr as createApiClient,
10371
10379
  T as createFetcherBuilder,
10372
10380
  Kc as isApiError,
10373
- fp as useApiFetch,
10374
- pp as useApiFetchWithSchema
10381
+ pp as useApiFetch,
10382
+ vp as useApiFetchWithSchema
10375
10383
  };