@gengage/assistant-fe 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assistant-fe.css +1 -1
- package/dist/chat/chat-presentation-state.d.ts +54 -0
- package/dist/chat/chat-presentation-state.d.ts.map +1 -0
- package/dist/chat/components/AIGroupingCards.d.ts.map +1 -1
- package/dist/chat/components/AISuggestedSearchCards.d.ts.map +1 -1
- package/dist/chat/components/AITopPicks.d.ts.map +1 -1
- package/dist/chat/components/ChatDrawer.d.ts +46 -0
- package/dist/chat/components/ChatDrawer.d.ts.map +1 -1
- package/dist/chat/components/ThumbnailsColumn.d.ts +2 -0
- package/dist/chat/components/ThumbnailsColumn.d.ts.map +1 -1
- package/dist/chat/index.d.ts +10 -0
- package/dist/chat/index.d.ts.map +1 -1
- package/dist/chat/locales/en.d.ts.map +1 -1
- package/dist/chat/locales/tr.d.ts.map +1 -1
- package/dist/chat/types.d.ts +7 -1
- package/dist/chat/types.d.ts.map +1 -1
- package/dist/chat/utils/chat-presentation-debug.d.ts +20 -0
- package/dist/chat/utils/chat-presentation-debug.d.ts.map +1 -0
- package/dist/chat/utils/get-chat-scroll-element.d.ts +11 -0
- package/dist/chat/utils/get-chat-scroll-element.d.ts.map +1 -0
- package/dist/chat.cjs +1 -1
- package/dist/chat.iife.js +22 -22
- package/dist/chat.iife.js.map +1 -1
- package/dist/chat.js +10 -6
- package/dist/common/index.d.ts +2 -0
- package/dist/common/index.d.ts.map +1 -1
- package/dist/common/protocol-adapter.d.ts.map +1 -1
- package/dist/common/suggested-search-keywords.d.ts +19 -0
- package/dist/common/suggested-search-keywords.d.ts.map +1 -0
- package/dist/common/theme-utils.d.ts.map +1 -1
- package/dist/common.cjs +1 -1
- package/dist/common.cjs.map +1 -1
- package/dist/common.js +70 -66
- package/dist/common.js.map +1 -1
- package/dist/index-6hAto23F.cjs +13 -0
- package/dist/index-6hAto23F.cjs.map +1 -0
- package/dist/index-BXXXyQzR.js +5101 -0
- package/dist/index-BXXXyQzR.js.map +1 -0
- package/dist/{index-B6xRdkMq.cjs → index-CjQUfIYI.cjs} +2 -2
- package/dist/{index-B6xRdkMq.cjs.map → index-CjQUfIYI.cjs.map} +1 -1
- package/dist/{index-BsvmfVa1.js → index-DJUtLUPL.js} +3 -3
- package/dist/{index-BsvmfVa1.js.map → index-DJUtLUPL.js.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +5 -5
- package/dist/native.cjs +1 -1
- package/dist/native.iife.js +28 -28
- package/dist/native.iife.js.map +1 -1
- package/dist/native.js +1 -1
- package/dist/qna.cjs +1 -1
- package/dist/qna.css +1 -1
- package/dist/qna.iife.js +6 -6
- package/dist/qna.iife.js.map +1 -1
- package/dist/qna.js +1 -1
- package/dist/{schemas-Fiaobs4L.js → schemas-5lXjLjwW.js} +903 -879
- package/dist/schemas-5lXjLjwW.js.map +1 -0
- package/dist/schemas-DqUVzVDf.cjs +86 -0
- package/dist/schemas-DqUVzVDf.cjs.map +1 -0
- package/dist/simrel.cjs +1 -1
- package/dist/simrel.css +1 -1
- package/dist/simrel.iife.js +7 -7
- package/dist/simrel.iife.js.map +1 -1
- package/dist/simrel.js +1 -1
- package/package.json +3 -2
- package/dist/index-BzCc2DCm.cjs +0 -13
- package/dist/index-BzCc2DCm.cjs.map +0 -1
- package/dist/index-D5UPIXIA.js +0 -4831
- package/dist/index-D5UPIXIA.js.map +0 -1
- package/dist/schemas-CNzyBhf7.cjs +0 -86
- package/dist/schemas-CNzyBhf7.cjs.map +0 -1
- package/dist/schemas-Fiaobs4L.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const qt = ({ element: e, renderElement: t }) => {
|
|
2
2
|
if (!e.children || e.children.length === 0)
|
|
3
3
|
return null;
|
|
4
4
|
const n = document.createElement("div");
|
|
@@ -8,10 +8,10 @@ const Ft = ({ element: e, renderElement: t }) => {
|
|
|
8
8
|
}
|
|
9
9
|
return n;
|
|
10
10
|
};
|
|
11
|
-
function
|
|
11
|
+
function ic(e) {
|
|
12
12
|
const t = document.createElement("div");
|
|
13
13
|
if (t.className = e.containerClassName, !e.spec.elements[e.spec.root]) return t;
|
|
14
|
-
const r = e.unknownRenderer ??
|
|
14
|
+
const r = e.unknownRenderer ?? qt, o = (s) => {
|
|
15
15
|
const a = e.spec.elements[s];
|
|
16
16
|
if (!a) return null;
|
|
17
17
|
const c = e.registry[a.type];
|
|
@@ -31,14 +31,14 @@ function ec(e) {
|
|
|
31
31
|
}, i = o(e.spec.root);
|
|
32
32
|
return i && t.appendChild(i), t;
|
|
33
33
|
}
|
|
34
|
-
function
|
|
34
|
+
function sc(e, t) {
|
|
35
35
|
if (!t) return e;
|
|
36
36
|
const n = { ...e };
|
|
37
37
|
for (const [r, o] of Object.entries(t))
|
|
38
38
|
o && (n[r] = o);
|
|
39
39
|
return n;
|
|
40
40
|
}
|
|
41
|
-
function
|
|
41
|
+
function ac(e, t) {
|
|
42
42
|
const n = {
|
|
43
43
|
event_name: "stream.start",
|
|
44
44
|
account_id: e.account_id,
|
|
@@ -51,7 +51,7 @@ function nc(e, t) {
|
|
|
51
51
|
};
|
|
52
52
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), t.widget !== void 0 && (n.widget = t.widget), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function cc(e, t) {
|
|
55
55
|
const n = {
|
|
56
56
|
request_id: t.request_id,
|
|
57
57
|
chunk_index: t.chunk_index
|
|
@@ -66,7 +66,7 @@ function rc(e, t) {
|
|
|
66
66
|
};
|
|
67
67
|
return e.view_id !== void 0 && (r.view_id = e.view_id), e.user_id !== void 0 && (r.user_id = e.user_id), t.widget !== void 0 && (r.widget = t.widget), e.page_type !== void 0 && (r.page_type = e.page_type), e.sku !== void 0 && (r.sku = e.sku), r;
|
|
68
68
|
}
|
|
69
|
-
function
|
|
69
|
+
function uc(e, t) {
|
|
70
70
|
const n = {
|
|
71
71
|
event_name: "stream.ui_spec",
|
|
72
72
|
account_id: e.account_id,
|
|
@@ -80,7 +80,7 @@ function oc(e, t) {
|
|
|
80
80
|
};
|
|
81
81
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), t.widget !== void 0 && (n.widget = t.widget), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
82
82
|
}
|
|
83
|
-
function
|
|
83
|
+
function dc(e, t) {
|
|
84
84
|
const n = {
|
|
85
85
|
event_name: "stream.done",
|
|
86
86
|
account_id: e.account_id,
|
|
@@ -94,7 +94,7 @@ function ic(e, t) {
|
|
|
94
94
|
};
|
|
95
95
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), t.widget !== void 0 && (n.widget = t.widget), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
96
96
|
}
|
|
97
|
-
function
|
|
97
|
+
function lc(e, t) {
|
|
98
98
|
const n = {
|
|
99
99
|
event_name: "stream.error",
|
|
100
100
|
account_id: e.account_id,
|
|
@@ -108,7 +108,7 @@ function sc(e, t) {
|
|
|
108
108
|
};
|
|
109
109
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), t.widget !== void 0 && (n.widget = t.widget), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
110
110
|
}
|
|
111
|
-
function
|
|
111
|
+
function fc(e, t) {
|
|
112
112
|
const n = {
|
|
113
113
|
model: t.model,
|
|
114
114
|
prompt_tokens: t.prompt_tokens,
|
|
@@ -125,7 +125,7 @@ function ac(e, t) {
|
|
|
125
125
|
};
|
|
126
126
|
return e.view_id !== void 0 && (r.view_id = e.view_id), e.user_id !== void 0 && (r.user_id = e.user_id), e.page_type !== void 0 && (r.page_type = e.page_type), e.sku !== void 0 && (r.sku = e.sku), r;
|
|
127
127
|
}
|
|
128
|
-
function
|
|
128
|
+
function pc(e, t) {
|
|
129
129
|
const n = {
|
|
130
130
|
event_name: "metering.increment",
|
|
131
131
|
account_id: e.account_id,
|
|
@@ -139,7 +139,7 @@ function cc(e, t) {
|
|
|
139
139
|
};
|
|
140
140
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
141
141
|
}
|
|
142
|
-
function
|
|
142
|
+
function Vt(e, t) {
|
|
143
143
|
const n = {
|
|
144
144
|
event_name: "metering.summary",
|
|
145
145
|
account_id: e.account_id,
|
|
@@ -153,7 +153,7 @@ function Jt(e, t) {
|
|
|
153
153
|
};
|
|
154
154
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
155
155
|
}
|
|
156
|
-
function
|
|
156
|
+
function gc(e, t) {
|
|
157
157
|
const n = {
|
|
158
158
|
event_name: "chat.history.snapshot",
|
|
159
159
|
account_id: e.account_id,
|
|
@@ -167,7 +167,7 @@ function uc(e, t) {
|
|
|
167
167
|
};
|
|
168
168
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
169
169
|
}
|
|
170
|
-
function
|
|
170
|
+
function hc(e, t) {
|
|
171
171
|
const n = {
|
|
172
172
|
event_name: "widget.history.snapshot",
|
|
173
173
|
account_id: e.account_id,
|
|
@@ -182,7 +182,7 @@ function dc(e, t) {
|
|
|
182
182
|
};
|
|
183
183
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
184
184
|
}
|
|
185
|
-
function
|
|
185
|
+
function mc(e, t) {
|
|
186
186
|
const n = {
|
|
187
187
|
event_name: "basket.add",
|
|
188
188
|
account_id: e.account_id,
|
|
@@ -200,7 +200,7 @@ function lc(e, t) {
|
|
|
200
200
|
};
|
|
201
201
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
202
202
|
}
|
|
203
|
-
function
|
|
203
|
+
function Wt(e, t) {
|
|
204
204
|
const n = {
|
|
205
205
|
event_name: "checkout.start",
|
|
206
206
|
account_id: e.account_id,
|
|
@@ -217,7 +217,7 @@ function qt(e, t) {
|
|
|
217
217
|
};
|
|
218
218
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
219
219
|
}
|
|
220
|
-
function
|
|
220
|
+
function Gt(e, t) {
|
|
221
221
|
const n = {
|
|
222
222
|
event_name: "checkout.complete",
|
|
223
223
|
account_id: e.account_id,
|
|
@@ -234,7 +234,7 @@ function Vt(e, t) {
|
|
|
234
234
|
};
|
|
235
235
|
return e.view_id !== void 0 && (n.view_id = e.view_id), e.user_id !== void 0 && (n.user_id = e.user_id), e.page_type !== void 0 && (n.page_type = e.page_type), e.sku !== void 0 && (n.sku = e.sku), n;
|
|
236
236
|
}
|
|
237
|
-
const
|
|
237
|
+
const Bt = /* @__PURE__ */ new Set([
|
|
238
238
|
"p",
|
|
239
239
|
"br",
|
|
240
240
|
"a",
|
|
@@ -267,7 +267,7 @@ const Wt = /* @__PURE__ */ new Set([
|
|
|
267
267
|
"img",
|
|
268
268
|
"sup",
|
|
269
269
|
"sub"
|
|
270
|
-
]),
|
|
270
|
+
]), Kt = /* @__PURE__ */ new Set([
|
|
271
271
|
"script",
|
|
272
272
|
"iframe",
|
|
273
273
|
"object",
|
|
@@ -282,7 +282,7 @@ const Wt = /* @__PURE__ */ new Set([
|
|
|
282
282
|
"meta",
|
|
283
283
|
"template",
|
|
284
284
|
"noscript"
|
|
285
|
-
]),
|
|
285
|
+
]), Ie = {
|
|
286
286
|
"*": /* @__PURE__ */ new Set(["class"]),
|
|
287
287
|
a: /* @__PURE__ */ new Set(["href", "target", "rel"]),
|
|
288
288
|
img: /* @__PURE__ */ new Set(["src", "alt", "width", "height"]),
|
|
@@ -290,10 +290,10 @@ const Wt = /* @__PURE__ */ new Set([
|
|
|
290
290
|
span: /* @__PURE__ */ new Set(["style"]),
|
|
291
291
|
p: /* @__PURE__ */ new Set(["style"])
|
|
292
292
|
};
|
|
293
|
-
function
|
|
293
|
+
function Ht(e) {
|
|
294
294
|
return /^\s*javascript\s*:/i.test(e);
|
|
295
295
|
}
|
|
296
|
-
const
|
|
296
|
+
const Yt = /* @__PURE__ */ new Set([
|
|
297
297
|
"color",
|
|
298
298
|
"background-color",
|
|
299
299
|
"font-size",
|
|
@@ -348,8 +348,8 @@ const Ht = /* @__PURE__ */ new Set([
|
|
|
348
348
|
"justify-content",
|
|
349
349
|
"align-items",
|
|
350
350
|
"gap"
|
|
351
|
-
]),
|
|
352
|
-
function
|
|
351
|
+
]), Xt = /url\s*\(|expression\s*\(|javascript\s*:|\bimport\b|-moz-binding|behavior\s*:/i;
|
|
352
|
+
function Qt(e) {
|
|
353
353
|
const t = [];
|
|
354
354
|
for (const n of e.split(";")) {
|
|
355
355
|
const r = n.trim();
|
|
@@ -357,43 +357,43 @@ function Yt(e) {
|
|
|
357
357
|
const o = r.indexOf(":");
|
|
358
358
|
if (o === -1) continue;
|
|
359
359
|
const i = r.slice(0, o).trim().toLowerCase(), s = r.slice(o + 1).trim();
|
|
360
|
-
|
|
360
|
+
Yt.has(i) && (Xt.test(s) || t.push(r));
|
|
361
361
|
}
|
|
362
362
|
return t.join("; ");
|
|
363
363
|
}
|
|
364
|
-
function
|
|
364
|
+
function me(e, t) {
|
|
365
365
|
if (e.nodeType === Node.TEXT_NODE) return;
|
|
366
366
|
if (e.nodeType !== Node.ELEMENT_NODE) {
|
|
367
367
|
e.parentNode?.removeChild(e);
|
|
368
368
|
return;
|
|
369
369
|
}
|
|
370
370
|
const n = e, r = n.tagName.toLowerCase();
|
|
371
|
-
if (
|
|
371
|
+
if (Kt.has(r)) {
|
|
372
372
|
n.parentNode?.removeChild(n);
|
|
373
373
|
return;
|
|
374
374
|
}
|
|
375
|
-
if (!
|
|
375
|
+
if (!Bt.has(r)) {
|
|
376
376
|
const c = Array.from(n.childNodes);
|
|
377
377
|
for (const u of c)
|
|
378
378
|
t.insertBefore(u, n);
|
|
379
379
|
t.removeChild(n);
|
|
380
380
|
for (const u of c)
|
|
381
|
-
|
|
381
|
+
me(u, t);
|
|
382
382
|
return;
|
|
383
383
|
}
|
|
384
|
-
const o =
|
|
384
|
+
const o = Ie["*"] ?? /* @__PURE__ */ new Set(), i = Ie[r] ?? /* @__PURE__ */ new Set(), s = Array.from(n.attributes);
|
|
385
385
|
for (const c of s) {
|
|
386
386
|
const u = c.name.toLowerCase();
|
|
387
387
|
if (!o.has(u) && !i.has(u)) {
|
|
388
388
|
n.removeAttribute(c.name);
|
|
389
389
|
continue;
|
|
390
390
|
}
|
|
391
|
-
if (
|
|
391
|
+
if (Ht(c.value)) {
|
|
392
392
|
n.removeAttribute(c.name);
|
|
393
393
|
continue;
|
|
394
394
|
}
|
|
395
395
|
if (u === "style") {
|
|
396
|
-
const l =
|
|
396
|
+
const l = Qt(c.value);
|
|
397
397
|
l ? n.setAttribute("style", l) : n.removeAttribute("style");
|
|
398
398
|
continue;
|
|
399
399
|
}
|
|
@@ -412,36 +412,36 @@ function he(e, t) {
|
|
|
412
412
|
}
|
|
413
413
|
const a = Array.from(n.childNodes);
|
|
414
414
|
for (const c of a)
|
|
415
|
-
|
|
415
|
+
me(c, n);
|
|
416
416
|
}
|
|
417
|
-
const
|
|
418
|
-
function
|
|
417
|
+
const st = ["http:", "https:"];
|
|
418
|
+
function _c(e) {
|
|
419
419
|
try {
|
|
420
|
-
return
|
|
420
|
+
return st.includes(new URL(e).protocol);
|
|
421
421
|
} catch {
|
|
422
422
|
return !1;
|
|
423
423
|
}
|
|
424
424
|
}
|
|
425
|
-
function
|
|
425
|
+
function at(e) {
|
|
426
426
|
if (e.startsWith("/") && !e.startsWith("//")) return !0;
|
|
427
427
|
try {
|
|
428
428
|
const t = new URL(e);
|
|
429
|
-
return
|
|
429
|
+
return st.includes(t.protocol);
|
|
430
430
|
} catch {
|
|
431
431
|
return !1;
|
|
432
432
|
}
|
|
433
433
|
}
|
|
434
|
-
function
|
|
435
|
-
(t === "href" || t === "src") && !
|
|
434
|
+
function yc(e, t, n) {
|
|
435
|
+
(t === "href" || t === "src") && !at(n) || e.setAttribute(t, n);
|
|
436
436
|
}
|
|
437
|
-
function
|
|
437
|
+
function vc(e) {
|
|
438
438
|
if (!e) return "";
|
|
439
439
|
const n = new DOMParser().parseFromString(e, "text/html").body, r = Array.from(n.childNodes);
|
|
440
440
|
for (const o of r)
|
|
441
|
-
|
|
441
|
+
me(o, n);
|
|
442
442
|
return n.innerHTML;
|
|
443
443
|
}
|
|
444
|
-
function
|
|
444
|
+
function wc(e, t) {
|
|
445
445
|
window.dispatchEvent(new CustomEvent(e, { detail: t, bubbles: !1 }));
|
|
446
446
|
}
|
|
447
447
|
function te(e, t) {
|
|
@@ -450,7 +450,7 @@ function te(e, t) {
|
|
|
450
450
|
};
|
|
451
451
|
return window.addEventListener(e, n), () => window.removeEventListener(e, n);
|
|
452
452
|
}
|
|
453
|
-
function
|
|
453
|
+
function en(e) {
|
|
454
454
|
if (e.type !== "user_message" && e.type !== "inputText") return null;
|
|
455
455
|
if (typeof e.payload == "string" && e.payload.trim().length > 0)
|
|
456
456
|
return e.payload.trim();
|
|
@@ -463,7 +463,7 @@ function Qt(e) {
|
|
|
463
463
|
}
|
|
464
464
|
return typeof e.title == "string" && e.title.trim().length > 0 ? e.title.trim() : null;
|
|
465
465
|
}
|
|
466
|
-
function
|
|
466
|
+
function bc(e) {
|
|
467
467
|
let t = !1;
|
|
468
468
|
const n = [];
|
|
469
469
|
let r = 0, o = null, i = 0;
|
|
@@ -476,13 +476,13 @@ function mc(e) {
|
|
|
476
476
|
"[gengage] QNA tried to open chat, but chat widget is not initialized. Ensure GengageChat is initialized before calling wireQNAToChat()."
|
|
477
477
|
), t = !0), e?.onChatUnavailable?.();
|
|
478
478
|
}
|
|
479
|
-
function l(m,
|
|
480
|
-
const
|
|
481
|
-
if (
|
|
482
|
-
m.open?.(), m.sendMessage(
|
|
479
|
+
function l(m, b) {
|
|
480
|
+
const Z = en(b);
|
|
481
|
+
if (Z && m.sendMessage) {
|
|
482
|
+
m.open?.(), m.sendMessage(Z);
|
|
483
483
|
return;
|
|
484
484
|
}
|
|
485
|
-
m.openWithAction?.(
|
|
485
|
+
m.openWithAction?.(b);
|
|
486
486
|
}
|
|
487
487
|
function f() {
|
|
488
488
|
o !== null && (window.clearInterval(o), o = null);
|
|
@@ -491,9 +491,9 @@ function mc(e) {
|
|
|
491
491
|
const m = c();
|
|
492
492
|
if (!m) return !1;
|
|
493
493
|
if (r > 0 && (m.open?.(), r = 0), n.length > 0) {
|
|
494
|
-
const
|
|
495
|
-
for (const
|
|
496
|
-
l(m,
|
|
494
|
+
const b = n.splice(0, n.length);
|
|
495
|
+
for (const Z of b)
|
|
496
|
+
l(m, Z);
|
|
497
497
|
}
|
|
498
498
|
return f(), !0;
|
|
499
499
|
}
|
|
@@ -503,9 +503,9 @@ function mc(e) {
|
|
|
503
503
|
}, s));
|
|
504
504
|
}
|
|
505
505
|
const y = te("gengage:qna:action", (m) => {
|
|
506
|
-
const
|
|
507
|
-
if (
|
|
508
|
-
l(
|
|
506
|
+
const b = c();
|
|
507
|
+
if (b) {
|
|
508
|
+
l(b, m);
|
|
509
509
|
return;
|
|
510
510
|
}
|
|
511
511
|
u(), n.length >= 20 && n.shift(), n.push(m), g();
|
|
@@ -521,80 +521,80 @@ function mc(e) {
|
|
|
521
521
|
y(), _(), n.length = 0, r = 0, f();
|
|
522
522
|
};
|
|
523
523
|
}
|
|
524
|
-
function
|
|
524
|
+
function kc() {
|
|
525
525
|
return te("gengage:similar:product-click", ({ sku: e, url: t, sessionId: n }) => {
|
|
526
|
-
n && window.gengage?.chat?.saveSession(n, e),
|
|
526
|
+
n && window.gengage?.chat?.saveSession(n, e), at(t) && (window.location.href = t);
|
|
527
527
|
});
|
|
528
528
|
}
|
|
529
|
-
function
|
|
529
|
+
function tn() {
|
|
530
530
|
const t = window.__gengageSessionId ?? sessionStorage.getItem("gengage_session_id") ?? null ?? crypto.randomUUID();
|
|
531
531
|
return window.__gengageSessionId = t, sessionStorage.setItem("gengage_session_id", t), window.gengage || (window.gengage = {}), window.gengage.sessionId = t, t;
|
|
532
532
|
}
|
|
533
|
-
function
|
|
533
|
+
function zc() {
|
|
534
534
|
return window.gengage?.pageContext ?? null;
|
|
535
535
|
}
|
|
536
|
-
function
|
|
536
|
+
function Sc(e) {
|
|
537
537
|
window.gengage || (window.gengage = {}), window.gengage.pageContext = {
|
|
538
538
|
pageType: "other",
|
|
539
539
|
...window.gengage.pageContext,
|
|
540
540
|
...e
|
|
541
541
|
}, window.dispatchEvent(new CustomEvent("gengage:context:update", { detail: e }));
|
|
542
542
|
}
|
|
543
|
-
function
|
|
543
|
+
function nn(e) {
|
|
544
544
|
return {
|
|
545
|
-
sessionId: e?.sessionId ??
|
|
545
|
+
sessionId: e?.sessionId ?? tn(),
|
|
546
546
|
...e
|
|
547
547
|
};
|
|
548
548
|
}
|
|
549
|
-
const
|
|
549
|
+
const Ae = {
|
|
550
550
|
"--gengage-chat-offset": "20px",
|
|
551
551
|
"--gengage-chat-launcher-size": "56px",
|
|
552
552
|
"--gengage-chat-width": "400px",
|
|
553
|
-
"--gengage-chat-shell-radius": "
|
|
553
|
+
"--gengage-chat-shell-radius": "1rem",
|
|
554
554
|
"--gengage-chat-header-height": "60px",
|
|
555
555
|
"--gengage-chat-conversation-width": "396px",
|
|
556
556
|
"--gengage-chat-panel-min-width": "320px",
|
|
557
557
|
"--gengage-chat-panel-max-width": "860px",
|
|
558
558
|
"--gengage-chat-input-height": "48px",
|
|
559
559
|
"--gengage-qna-pill-radius": "999px",
|
|
560
|
-
"--gengage-qna-input-radius": "
|
|
561
|
-
"--gengage-simrel-card-radius": "
|
|
560
|
+
"--gengage-qna-input-radius": "0.75rem",
|
|
561
|
+
"--gengage-simrel-card-radius": "0.75rem"
|
|
562
562
|
};
|
|
563
|
-
function
|
|
564
|
-
return e ? { ...
|
|
563
|
+
function rn(e) {
|
|
564
|
+
return e ? { ...Ae, ...e } : { ...Ae };
|
|
565
565
|
}
|
|
566
|
-
const
|
|
567
|
-
let
|
|
568
|
-
function
|
|
566
|
+
const D = "gengage-global-toast-root", Pe = "gengage-global-toast-style", be = "gengage-global-toast-root--visible", on = 4200, sn = 1500, an = 15e3;
|
|
567
|
+
let Ne = !1, J = null;
|
|
568
|
+
function $c(e) {
|
|
569
569
|
return typeof e == "string" && e.toLowerCase().startsWith("tr") ? "Bağlantı sorunu oluştu. Lütfen tekrar deneyin." : "Connection issue. Please try again.";
|
|
570
570
|
}
|
|
571
|
-
function
|
|
572
|
-
|
|
573
|
-
|
|
571
|
+
function cn() {
|
|
572
|
+
Ne || typeof window > "u" || typeof document > "u" || (Ne = !0, te("gengage:global:error", (e) => {
|
|
573
|
+
un(e);
|
|
574
574
|
}));
|
|
575
575
|
}
|
|
576
|
-
function
|
|
576
|
+
function un(e) {
|
|
577
577
|
if (typeof document > "u") return;
|
|
578
578
|
const t = e.message.trim();
|
|
579
579
|
if (!t) return;
|
|
580
|
-
|
|
581
|
-
const n =
|
|
580
|
+
gn();
|
|
581
|
+
const n = fn();
|
|
582
582
|
n.innerHTML = "";
|
|
583
583
|
const r = document.createElement("section");
|
|
584
584
|
r.className = "gengage-global-toast gengage-global-toast--error", r.setAttribute("role", "status"), r.setAttribute("aria-live", "polite");
|
|
585
585
|
const o = document.createElement("div");
|
|
586
|
-
o.className = "gengage-global-toast-title", o.textContent =
|
|
586
|
+
o.className = "gengage-global-toast-title", o.textContent = ln(e.source);
|
|
587
587
|
const i = document.createElement("div");
|
|
588
|
-
i.className = "gengage-global-toast-message", i.textContent = t, r.appendChild(o), r.appendChild(i), n.appendChild(r), n.classList.add(
|
|
589
|
-
|
|
590
|
-
},
|
|
588
|
+
i.className = "gengage-global-toast-message", i.textContent = t, r.appendChild(o), r.appendChild(i), n.appendChild(r), n.classList.add(be), J && (clearTimeout(J), J = null), J = setTimeout(() => {
|
|
589
|
+
dn();
|
|
590
|
+
}, pn(e.durationMs));
|
|
591
591
|
}
|
|
592
|
-
function
|
|
592
|
+
function dn() {
|
|
593
593
|
if (typeof document > "u") return;
|
|
594
|
-
const e = document.getElementById(
|
|
595
|
-
e && (e.classList.remove(
|
|
594
|
+
const e = document.getElementById(D);
|
|
595
|
+
e && (e.classList.remove(be), e.innerHTML = "", J && (clearTimeout(J), J = null));
|
|
596
596
|
}
|
|
597
|
-
function
|
|
597
|
+
function ln(e) {
|
|
598
598
|
switch (e) {
|
|
599
599
|
case "chat":
|
|
600
600
|
return "Chat warning";
|
|
@@ -606,30 +606,30 @@ function un(e) {
|
|
|
606
606
|
return "Connection warning";
|
|
607
607
|
}
|
|
608
608
|
}
|
|
609
|
-
function
|
|
610
|
-
const e = document.getElementById(
|
|
609
|
+
function fn() {
|
|
610
|
+
const e = document.getElementById(D);
|
|
611
611
|
if (e instanceof HTMLElement) return e;
|
|
612
612
|
const t = document.createElement("div");
|
|
613
|
-
return t.id =
|
|
613
|
+
return t.id = D, t.className = "gengage-global-toast-root", document.body.appendChild(t), t;
|
|
614
614
|
}
|
|
615
|
-
function
|
|
616
|
-
return typeof e != "number" || !Number.isFinite(e) ?
|
|
615
|
+
function pn(e) {
|
|
616
|
+
return typeof e != "number" || !Number.isFinite(e) ? on : Math.min(an, Math.max(sn, Math.round(e)));
|
|
617
617
|
}
|
|
618
|
-
function
|
|
619
|
-
if (document.getElementById(
|
|
618
|
+
function gn() {
|
|
619
|
+
if (document.getElementById(Pe)) return;
|
|
620
620
|
const e = document.createElement("style");
|
|
621
|
-
e.id =
|
|
622
|
-
#${
|
|
621
|
+
e.id = Pe, e.textContent = `
|
|
622
|
+
#${D} {
|
|
623
623
|
position: fixed;
|
|
624
624
|
top: 16px;
|
|
625
625
|
right: 16px;
|
|
626
626
|
z-index: 2147483646;
|
|
627
627
|
pointer-events: none;
|
|
628
628
|
}
|
|
629
|
-
#${
|
|
629
|
+
#${D}.${be} {
|
|
630
630
|
pointer-events: auto;
|
|
631
631
|
}
|
|
632
|
-
#${
|
|
632
|
+
#${D} .gengage-global-toast {
|
|
633
633
|
min-width: 260px;
|
|
634
634
|
max-width: min(92vw, 420px);
|
|
635
635
|
border-radius: 12px;
|
|
@@ -644,12 +644,12 @@ function fn() {
|
|
|
644
644
|
line-height: 1.4;
|
|
645
645
|
animation: gengage-global-toast-in 180ms ease-out forwards;
|
|
646
646
|
}
|
|
647
|
-
#${
|
|
647
|
+
#${D} .gengage-global-toast-title {
|
|
648
648
|
margin: 0 0 4px;
|
|
649
649
|
font-size: 12px;
|
|
650
650
|
font-weight: 700;
|
|
651
651
|
}
|
|
652
|
-
#${
|
|
652
|
+
#${D} .gengage-global-toast-message {
|
|
653
653
|
margin: 0;
|
|
654
654
|
font-weight: 500;
|
|
655
655
|
}
|
|
@@ -666,7 +666,7 @@ function fn() {
|
|
|
666
666
|
`, document.head.appendChild(e);
|
|
667
667
|
}
|
|
668
668
|
let Y = null;
|
|
669
|
-
function
|
|
669
|
+
function hn() {
|
|
670
670
|
if (Y !== null) return Y;
|
|
671
671
|
try {
|
|
672
672
|
Y = localStorage.getItem("gengage:debug") === "1";
|
|
@@ -675,12 +675,12 @@ function pn() {
|
|
|
675
675
|
}
|
|
676
676
|
return Y;
|
|
677
677
|
}
|
|
678
|
-
function
|
|
679
|
-
if (!
|
|
678
|
+
function _e(e, t, n) {
|
|
679
|
+
if (!hn()) return;
|
|
680
680
|
const r = [`[gengage:${e}]`, t];
|
|
681
681
|
n !== void 0 && r.push(n), console.debug(...r);
|
|
682
682
|
}
|
|
683
|
-
class
|
|
683
|
+
class Ec {
|
|
684
684
|
constructor() {
|
|
685
685
|
this.isVisible = !1, this.isInitialised = !1, this._handlers = /* @__PURE__ */ new Map(), this._cleanups = [], this._ownsRoot = !1, this._destroying = !1;
|
|
686
686
|
}
|
|
@@ -692,14 +692,14 @@ class bc {
|
|
|
692
692
|
console.warn("[gengage] Widget already initialised. Call update() instead.");
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
-
const n =
|
|
695
|
+
const n = rn(t.theme);
|
|
696
696
|
this.config = {
|
|
697
697
|
...t,
|
|
698
698
|
theme: n,
|
|
699
|
-
session:
|
|
700
|
-
}, this.root = this._resolveMount(t.mountTarget), this._applyTheme(n),
|
|
699
|
+
session: nn(t.session)
|
|
700
|
+
}, this.root = this._resolveMount(t.mountTarget), this._applyTheme(n), cn();
|
|
701
701
|
const r = te("gengage:context:update", (o) => this.update(o));
|
|
702
|
-
this._cleanups.push(r),
|
|
702
|
+
this._cleanups.push(r), _e("lifecycle", `${this.constructor.name}.init`, {
|
|
703
703
|
accountId: t.accountId,
|
|
704
704
|
sku: t.pageContext?.sku
|
|
705
705
|
});
|
|
@@ -708,7 +708,7 @@ class bc {
|
|
|
708
708
|
} catch (o) {
|
|
709
709
|
throw this.destroy(), o;
|
|
710
710
|
}
|
|
711
|
-
this._destroying || (this.isInitialised = !0,
|
|
711
|
+
this._destroying || (this.isInitialised = !0, _e("lifecycle", `${this.constructor.name} ready`), this.emit("ready"));
|
|
712
712
|
}
|
|
713
713
|
update(t) {
|
|
714
714
|
this.isInitialised && (this.config.pageContext ? this.config = {
|
|
@@ -730,12 +730,12 @@ class bc {
|
|
|
730
730
|
}
|
|
731
731
|
/** Track a checkout start event. Called by host page to attribute checkout to widget interaction. */
|
|
732
732
|
trackCheckout(t, n) {
|
|
733
|
-
const r = t === "start" ?
|
|
733
|
+
const r = t === "start" ? Wt : Gt;
|
|
734
734
|
this.track(r(this.analyticsContext(), n));
|
|
735
735
|
}
|
|
736
736
|
/** Track a metering summary event. Called by host page for session-level aggregation. */
|
|
737
737
|
flushMeteringSummary(t) {
|
|
738
|
-
this.track(
|
|
738
|
+
this.track(Vt(this.analyticsContext(), t));
|
|
739
739
|
}
|
|
740
740
|
// ---------------------------------------------------------------------------
|
|
741
741
|
// Protected helpers
|
|
@@ -778,19 +778,19 @@ class bc {
|
|
|
778
778
|
if (t) {
|
|
779
779
|
for (const [n, r] of Object.entries(t))
|
|
780
780
|
if (r !== void 0) {
|
|
781
|
-
const o = n.startsWith("--") ? n : `--gengage-${
|
|
781
|
+
const o = n.startsWith("--") ? n : `--gengage-${mn(n)}`;
|
|
782
782
|
this.root.style.setProperty(o, r);
|
|
783
783
|
}
|
|
784
784
|
}
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
|
-
function
|
|
787
|
+
function mn(e) {
|
|
788
788
|
return e.replace(/([A-Z])/g, "-$1").toLowerCase();
|
|
789
789
|
}
|
|
790
|
-
function
|
|
790
|
+
function Ce(e) {
|
|
791
791
|
return typeof e == "object" && e !== null && typeof e.type == "string";
|
|
792
792
|
}
|
|
793
|
-
function
|
|
793
|
+
function _n(e) {
|
|
794
794
|
const t = [];
|
|
795
795
|
let n = 0, r = !1, o = !1, i = 0;
|
|
796
796
|
for (let s = 0; s < e.length; s++) {
|
|
@@ -811,7 +811,7 @@ function hn(e) {
|
|
|
811
811
|
}
|
|
812
812
|
return t.length > 0 ? t : [e];
|
|
813
813
|
}
|
|
814
|
-
function
|
|
814
|
+
function Re(e, t) {
|
|
815
815
|
const n = e.trim();
|
|
816
816
|
if (!n || n.startsWith(":")) return !1;
|
|
817
817
|
const r = n.startsWith("data: ") ? n.slice(6) : n;
|
|
@@ -819,14 +819,14 @@ function Ce(e, t) {
|
|
|
819
819
|
return t.onDone?.(), !0;
|
|
820
820
|
try {
|
|
821
821
|
const o = JSON.parse(r);
|
|
822
|
-
return
|
|
822
|
+
return Ce(o) ? (_e("stream", `event: ${o.type}`, o), t.onEvent(o), o.type === "done" ? (t.onDone?.(), !0) : !1) : !1;
|
|
823
823
|
} catch {
|
|
824
|
-
const o =
|
|
824
|
+
const o = _n(r);
|
|
825
825
|
if (o.length > 1) {
|
|
826
826
|
for (const i of o)
|
|
827
827
|
try {
|
|
828
828
|
const s = JSON.parse(i);
|
|
829
|
-
if (!
|
|
829
|
+
if (!Ce(s)) continue;
|
|
830
830
|
if (t.onEvent(s), s.type === "done")
|
|
831
831
|
return t.onDone?.(), !0;
|
|
832
832
|
} catch {
|
|
@@ -836,7 +836,7 @@ function Ce(e, t) {
|
|
|
836
836
|
return !1;
|
|
837
837
|
}
|
|
838
838
|
}
|
|
839
|
-
async function
|
|
839
|
+
async function yn(e, t) {
|
|
840
840
|
if (!e.ok) {
|
|
841
841
|
t.onError?.(new Error(`HTTP ${e.status}: ${e.statusText}`));
|
|
842
842
|
return;
|
|
@@ -870,9 +870,9 @@ async function mn(e, t) {
|
|
|
870
870
|
`);
|
|
871
871
|
o = g.pop() ?? "";
|
|
872
872
|
for (const y of g)
|
|
873
|
-
if (
|
|
873
|
+
if (Re(y, t)) return;
|
|
874
874
|
}
|
|
875
|
-
if (o.trim() &&
|
|
875
|
+
if (o.trim() && Re(o, t))
|
|
876
876
|
return;
|
|
877
877
|
} catch (c) {
|
|
878
878
|
if (c instanceof DOMException && c.name === "AbortError") return;
|
|
@@ -882,8 +882,8 @@ async function mn(e, t) {
|
|
|
882
882
|
}
|
|
883
883
|
t.onDone?.();
|
|
884
884
|
}
|
|
885
|
-
function
|
|
886
|
-
const r = new AbortController(), o = n.signal ?
|
|
885
|
+
function Tc(e, t, n) {
|
|
886
|
+
const r = new AbortController(), o = n.signal ? vn([n.signal, r.signal]) : r.signal;
|
|
887
887
|
return fetch(e, {
|
|
888
888
|
method: "POST",
|
|
889
889
|
headers: {
|
|
@@ -892,11 +892,11 @@ function kc(e, t, n) {
|
|
|
892
892
|
},
|
|
893
893
|
body: JSON.stringify(t),
|
|
894
894
|
signal: o
|
|
895
|
-
}).then((i) =>
|
|
895
|
+
}).then((i) => yn(i, { ...n, signal: o })).catch((i) => {
|
|
896
896
|
i instanceof DOMException && i.name === "AbortError" || n.onError?.(i instanceof Error ? i : new Error(String(i)));
|
|
897
897
|
}), r;
|
|
898
898
|
}
|
|
899
|
-
function
|
|
899
|
+
function vn(e) {
|
|
900
900
|
const t = new AbortController(), n = [];
|
|
901
901
|
for (const r of e) {
|
|
902
902
|
if (r.aborted)
|
|
@@ -912,84 +912,106 @@ function _n(e) {
|
|
|
912
912
|
{ once: !0 }
|
|
913
913
|
), t.signal;
|
|
914
914
|
}
|
|
915
|
-
|
|
915
|
+
const je = 3, wn = (e, t) => {
|
|
916
|
+
const n = e.replace(/\s+/g, " ").trim().replace(/^[,.;:!?•-]+|[,.;:!?•-]+$/g, "");
|
|
917
|
+
if (!n)
|
|
918
|
+
return "";
|
|
919
|
+
const r = t?.stripLeadingStopWords ? n.replace(/^(?:daha|için)\s+/i, "").trim() : n;
|
|
920
|
+
return r ? r.split(/\s+/).slice(0, 3).join(" ").trim() : "";
|
|
921
|
+
}, pe = (e, t) => e ? e.split(/[•,;:/()]|(?:\sve\s)|(?:\sand\s)|(?:\sile\s)|(?:\sfor\s)|(?:\swith\s)/i).map((n) => wn(n, t)).filter(Boolean) : [];
|
|
922
|
+
function bn(e) {
|
|
923
|
+
const t = (e.display_keywords ?? []).flatMap(
|
|
924
|
+
(o) => pe(o, { stripLeadingStopWords: !0 })
|
|
925
|
+
), n = t.filter((o, i) => t.indexOf(o) === i);
|
|
926
|
+
if (n.length > 0)
|
|
927
|
+
return n.slice(0, je);
|
|
928
|
+
const r = [
|
|
929
|
+
...pe(e.chosen_attribute, { stripLeadingStopWords: !0 }),
|
|
930
|
+
...pe(e.short_name)
|
|
931
|
+
];
|
|
932
|
+
return r.filter((o, i) => r.indexOf(o) === i).slice(0, je);
|
|
933
|
+
}
|
|
934
|
+
function kn(e) {
|
|
935
|
+
return bn(e).join(" • ");
|
|
936
|
+
}
|
|
937
|
+
function Zc(e) {
|
|
916
938
|
if (typeof e.type != "string") return null;
|
|
917
|
-
if (
|
|
939
|
+
if (zn(e))
|
|
918
940
|
return e;
|
|
919
941
|
const n = e;
|
|
920
942
|
switch (n.type) {
|
|
921
943
|
case "outputText":
|
|
922
|
-
return
|
|
944
|
+
return Sn(n);
|
|
923
945
|
case "suggestedActions":
|
|
924
|
-
return
|
|
946
|
+
return $n(n);
|
|
925
947
|
case "productList":
|
|
926
|
-
return
|
|
948
|
+
return En(n);
|
|
927
949
|
case "productDetails":
|
|
928
|
-
return
|
|
950
|
+
return Tn(n);
|
|
929
951
|
case "productDetailsSimilars":
|
|
930
|
-
return
|
|
952
|
+
return Zn(n);
|
|
931
953
|
case "comparisonTable":
|
|
932
|
-
return
|
|
954
|
+
return On(n);
|
|
933
955
|
case "context":
|
|
934
|
-
return
|
|
956
|
+
return Nn(n);
|
|
935
957
|
case "chatStreamEnd":
|
|
936
|
-
return
|
|
958
|
+
return Cn();
|
|
937
959
|
case "loading":
|
|
938
|
-
return
|
|
960
|
+
return Rn(n);
|
|
939
961
|
case "panelLoading":
|
|
940
|
-
return
|
|
962
|
+
return jn(n);
|
|
941
963
|
case "similarLoading":
|
|
942
|
-
return
|
|
964
|
+
return Dn(n);
|
|
943
965
|
case "redirect":
|
|
944
|
-
return
|
|
966
|
+
return Ln(n);
|
|
945
967
|
case "error":
|
|
946
|
-
return
|
|
968
|
+
return Un(n);
|
|
947
969
|
case "dummy":
|
|
948
|
-
return
|
|
970
|
+
return Mn();
|
|
949
971
|
case "launcherAction":
|
|
950
|
-
return
|
|
972
|
+
return xn(n);
|
|
951
973
|
case "text":
|
|
952
|
-
return
|
|
974
|
+
return ke(n);
|
|
953
975
|
case "productItem":
|
|
954
|
-
return
|
|
976
|
+
return Fn(n);
|
|
955
977
|
case "text_image":
|
|
956
|
-
return
|
|
978
|
+
return ct(n);
|
|
957
979
|
case "quick_qna":
|
|
958
|
-
return
|
|
980
|
+
return ut(n);
|
|
959
981
|
case "reviewHighlights":
|
|
960
|
-
return
|
|
982
|
+
return Jn(n);
|
|
961
983
|
case "aiProductSuggestions":
|
|
962
|
-
return
|
|
984
|
+
return Wn(n);
|
|
963
985
|
case "aiProductGroupings":
|
|
964
|
-
return
|
|
986
|
+
return Gn(n);
|
|
965
987
|
case "aiSuggestedSearches":
|
|
966
|
-
return
|
|
988
|
+
return Bn(n);
|
|
967
989
|
case "prosAndCons":
|
|
968
|
-
return Un(n);
|
|
969
|
-
case "getGroundingReview":
|
|
970
990
|
return qn(n);
|
|
991
|
+
case "getGroundingReview":
|
|
992
|
+
return Kn(n);
|
|
971
993
|
case "voice":
|
|
972
|
-
return
|
|
994
|
+
return Yn(n);
|
|
973
995
|
case "visitorDataResponse":
|
|
974
|
-
return
|
|
996
|
+
return Vn(n);
|
|
975
997
|
case "productListPreview":
|
|
976
|
-
return
|
|
998
|
+
return Hn();
|
|
977
999
|
case "groupList":
|
|
978
|
-
return
|
|
1000
|
+
return Xn(n);
|
|
979
1001
|
case "formGetInfo":
|
|
980
1002
|
case "formTestDrive":
|
|
981
1003
|
case "formServiceRequest":
|
|
982
1004
|
case "launchFormPage":
|
|
983
|
-
return
|
|
1005
|
+
return Qn(n);
|
|
984
1006
|
case "launcherContent":
|
|
985
|
-
return
|
|
1007
|
+
return tr(n);
|
|
986
1008
|
case "handoff":
|
|
987
|
-
return
|
|
1009
|
+
return er(n);
|
|
988
1010
|
default:
|
|
989
1011
|
return null;
|
|
990
1012
|
}
|
|
991
1013
|
}
|
|
992
|
-
function
|
|
1014
|
+
function zn(e) {
|
|
993
1015
|
const t = e.type;
|
|
994
1016
|
if (typeof t != "string") return !1;
|
|
995
1017
|
switch (t) {
|
|
@@ -1000,11 +1022,11 @@ function yn(e) {
|
|
|
1000
1022
|
case "ui_spec": {
|
|
1001
1023
|
const n = e.widget;
|
|
1002
1024
|
if (n !== "chat" && n !== "qna" && n !== "simrel") return !1;
|
|
1003
|
-
const r =
|
|
1004
|
-
return r ? typeof r.root == "string" &&
|
|
1025
|
+
const r = j(e.spec);
|
|
1026
|
+
return r ? typeof r.root == "string" && j(r.elements) !== null : !1;
|
|
1005
1027
|
}
|
|
1006
1028
|
case "action": {
|
|
1007
|
-
const n =
|
|
1029
|
+
const n = j(e.action);
|
|
1008
1030
|
return n !== null && typeof n.kind == "string";
|
|
1009
1031
|
}
|
|
1010
1032
|
case "error":
|
|
@@ -1015,7 +1037,7 @@ function yn(e) {
|
|
|
1015
1037
|
return !1;
|
|
1016
1038
|
}
|
|
1017
1039
|
}
|
|
1018
|
-
function
|
|
1040
|
+
function Sn(e) {
|
|
1019
1041
|
const t = w(e.payload.text, e.payload.plain_text) ?? "", n = w(e.payload.plain_text, e.payload.text) ?? t;
|
|
1020
1042
|
if (e.payload.is_error)
|
|
1021
1043
|
return {
|
|
@@ -1036,7 +1058,7 @@ function vn(e) {
|
|
|
1036
1058
|
const s = e.payload.conversation_mode;
|
|
1037
1059
|
return typeof s == "string" && s && (r.conversationMode = s), r;
|
|
1038
1060
|
}
|
|
1039
|
-
function
|
|
1061
|
+
function $n(e) {
|
|
1040
1062
|
const t = (e.payload.actions ?? []).map((n) => {
|
|
1041
1063
|
const r = w(n.title) ?? "", o = R(n.requestDetails, r), i = o ? {
|
|
1042
1064
|
label: r,
|
|
@@ -1044,15 +1066,15 @@ function wn(e) {
|
|
|
1044
1066
|
} : null;
|
|
1045
1067
|
return i ? (typeof n.icon == "string" && (i.icon = n.icon), typeof n.image == "string" && (i.image = n.image), i) : null;
|
|
1046
1068
|
});
|
|
1047
|
-
return
|
|
1069
|
+
return dt(t.filter(ft), "chat");
|
|
1048
1070
|
}
|
|
1049
|
-
function
|
|
1050
|
-
const t =
|
|
1071
|
+
function En(e) {
|
|
1072
|
+
const t = lt(e.payload.product_list ?? [], "chat");
|
|
1051
1073
|
t.panelHint = "panel";
|
|
1052
1074
|
const n = t.spec.elements[t.spec.root];
|
|
1053
1075
|
return n && (typeof e.payload.offset == "number" && (n.props = { ...n.props, offset: e.payload.offset }), typeof e.payload.end_of_list == "boolean" && (n.props = { ...n.props, endOfList: e.payload.end_of_list }), typeof e.payload.title == "string" && (n.props = { ...n.props, panelTitle: e.payload.title })), t;
|
|
1054
1076
|
}
|
|
1055
|
-
function
|
|
1077
|
+
function Tn(e) {
|
|
1056
1078
|
const t = e.payload.productDetails;
|
|
1057
1079
|
return t ? {
|
|
1058
1080
|
type: "ui_spec",
|
|
@@ -1067,13 +1089,13 @@ function kn(e) {
|
|
|
1067
1089
|
}
|
|
1068
1090
|
},
|
|
1069
1091
|
panelHint: "panel"
|
|
1070
|
-
} :
|
|
1092
|
+
} : rr("chat");
|
|
1071
1093
|
}
|
|
1072
|
-
function
|
|
1073
|
-
const t =
|
|
1094
|
+
function Zn(e) {
|
|
1095
|
+
const t = lt(e.payload.similarProducts ?? [], "chat"), n = t.spec.elements[t.spec.root];
|
|
1074
1096
|
return n && (n.props = { ...n.props, similarsAppend: !0 }), { ...t, panelHint: "panel" };
|
|
1075
1097
|
}
|
|
1076
|
-
function
|
|
1098
|
+
function On(e) {
|
|
1077
1099
|
const t = e.payload.multiple_product_details ?? [], n = e.payload, r = {
|
|
1078
1100
|
key_differences: n.key_differences,
|
|
1079
1101
|
recommended_choice: n.recommended_choice,
|
|
@@ -1087,23 +1109,23 @@ function Sn(e) {
|
|
|
1087
1109
|
...e.payload.product_comparison_framework ?? {}
|
|
1088
1110
|
}, o = e.payload.table, i = e.payload.features_list, s = [];
|
|
1089
1111
|
for (const m of t) {
|
|
1090
|
-
const
|
|
1091
|
-
s.push(
|
|
1112
|
+
const b = M(m);
|
|
1113
|
+
s.push(b);
|
|
1092
1114
|
}
|
|
1093
|
-
const a =
|
|
1115
|
+
const a = In(o, s, r, i);
|
|
1094
1116
|
let c;
|
|
1095
1117
|
r?.recommended_choice_sku ? c = r.recommended_choice_sku : r?.winner_product && r.winner_product.length > 0 && (c = r.winner_product[0]?.product_detail?.sku ?? r.winner_product[0]?.sku);
|
|
1096
1118
|
const u = c ? s.find((m) => m.sku === c) ?? s[0] : s[0], l = [];
|
|
1097
1119
|
if (Array.isArray(r?.key_differences))
|
|
1098
1120
|
for (const m of r.key_differences)
|
|
1099
1121
|
typeof m == "string" && l.push(m);
|
|
1100
|
-
const f =
|
|
1122
|
+
const f = ar(r?.special_considerations), p = r?.recommended_choice, g = r?.winner_hits, y = {};
|
|
1101
1123
|
for (const m of s) {
|
|
1102
|
-
const
|
|
1103
|
-
|
|
1104
|
-
title: m.name ??
|
|
1124
|
+
const b = m.sku;
|
|
1125
|
+
b && (y[b] = {
|
|
1126
|
+
title: m.name ?? b,
|
|
1105
1127
|
type: "launchSingleProduct",
|
|
1106
|
-
payload: { sku:
|
|
1128
|
+
payload: { sku: b }
|
|
1107
1129
|
});
|
|
1108
1130
|
}
|
|
1109
1131
|
const _ = {
|
|
@@ -1127,7 +1149,7 @@ function Sn(e) {
|
|
|
1127
1149
|
panelHint: "panel"
|
|
1128
1150
|
};
|
|
1129
1151
|
}
|
|
1130
|
-
function
|
|
1152
|
+
function In(e, t, n, r) {
|
|
1131
1153
|
if (!e) return [];
|
|
1132
1154
|
const o = Object.entries(e);
|
|
1133
1155
|
if (o.length === 0) return [];
|
|
@@ -1137,20 +1159,20 @@ function $n(e, t, n, r) {
|
|
|
1137
1159
|
for (const _ of g) {
|
|
1138
1160
|
const m = e[_];
|
|
1139
1161
|
if (!m || !Array.isArray(m)) continue;
|
|
1140
|
-
const
|
|
1141
|
-
y.push({ label:
|
|
1162
|
+
const b = p[_] ?? _;
|
|
1163
|
+
y.push({ label: b, values: m.map((Z) => typeof Z == "string" ? Z : String(Z ?? "")) });
|
|
1142
1164
|
}
|
|
1143
1165
|
return y;
|
|
1144
1166
|
}
|
|
1145
|
-
const s = e, a = t.map((p) => String(p.sku ?? "")).filter((p) => p.length > 0), c = n.criteria_view ?? n.criteria_view_short ?? {}, l = (r && r.length > 0 ? r : n.compared_field_names && n.compared_field_names.length > 0 ? n.compared_field_names :
|
|
1167
|
+
const s = e, a = t.map((p) => String(p.sku ?? "")).filter((p) => p.length > 0), c = n.criteria_view ?? n.criteria_view_short ?? {}, l = (r && r.length > 0 ? r : n.compared_field_names && n.compared_field_names.length > 0 ? n.compared_field_names : An(s)).filter(
|
|
1146
1168
|
(p) => p !== "name" && p !== "name_short" && !p.endsWith("_short")
|
|
1147
1169
|
), f = [];
|
|
1148
1170
|
for (const p of l) {
|
|
1149
1171
|
const g = a.map((_) => {
|
|
1150
1172
|
const m = s[_];
|
|
1151
1173
|
if (!m || typeof m != "object") return "";
|
|
1152
|
-
const
|
|
1153
|
-
return
|
|
1174
|
+
const b = m[`${p}_short`], Z = m[p];
|
|
1175
|
+
return Pn(b ?? Z);
|
|
1154
1176
|
});
|
|
1155
1177
|
if (g.every((_) => _.length === 0)) continue;
|
|
1156
1178
|
const y = c[p] ?? p;
|
|
@@ -1158,7 +1180,7 @@ function $n(e, t, n, r) {
|
|
|
1158
1180
|
}
|
|
1159
1181
|
return f;
|
|
1160
1182
|
}
|
|
1161
|
-
function
|
|
1183
|
+
function An(e) {
|
|
1162
1184
|
const t = [], n = /* @__PURE__ */ new Set();
|
|
1163
1185
|
for (const r of Object.values(e))
|
|
1164
1186
|
if (!(!r || typeof r != "object"))
|
|
@@ -1166,10 +1188,10 @@ function En(e) {
|
|
|
1166
1188
|
n.has(o) || (n.add(o), t.push(o));
|
|
1167
1189
|
return t;
|
|
1168
1190
|
}
|
|
1169
|
-
function
|
|
1191
|
+
function Pn(e) {
|
|
1170
1192
|
return typeof e == "string" ? e : typeof e == "number" || typeof e == "boolean" ? String(e) : "";
|
|
1171
1193
|
}
|
|
1172
|
-
function
|
|
1194
|
+
function Nn(e) {
|
|
1173
1195
|
return {
|
|
1174
1196
|
type: "metadata",
|
|
1175
1197
|
sessionId: "",
|
|
@@ -1181,10 +1203,10 @@ function Zn(e) {
|
|
|
1181
1203
|
}
|
|
1182
1204
|
};
|
|
1183
1205
|
}
|
|
1184
|
-
function
|
|
1206
|
+
function Cn() {
|
|
1185
1207
|
return { type: "done" };
|
|
1186
1208
|
}
|
|
1187
|
-
function
|
|
1209
|
+
function Rn(e) {
|
|
1188
1210
|
return {
|
|
1189
1211
|
type: "metadata",
|
|
1190
1212
|
sessionId: "",
|
|
@@ -1197,7 +1219,7 @@ function In(e) {
|
|
|
1197
1219
|
}
|
|
1198
1220
|
};
|
|
1199
1221
|
}
|
|
1200
|
-
function
|
|
1222
|
+
function jn(e) {
|
|
1201
1223
|
return {
|
|
1202
1224
|
type: "metadata",
|
|
1203
1225
|
sessionId: "",
|
|
@@ -1210,7 +1232,7 @@ function An(e) {
|
|
|
1210
1232
|
}
|
|
1211
1233
|
};
|
|
1212
1234
|
}
|
|
1213
|
-
function
|
|
1235
|
+
function Dn(e) {
|
|
1214
1236
|
return {
|
|
1215
1237
|
type: "metadata",
|
|
1216
1238
|
sessionId: "",
|
|
@@ -1223,7 +1245,7 @@ function Pn(e) {
|
|
|
1223
1245
|
}
|
|
1224
1246
|
};
|
|
1225
1247
|
}
|
|
1226
|
-
function
|
|
1248
|
+
function Ln(e) {
|
|
1227
1249
|
const t = w(e.payload.url);
|
|
1228
1250
|
return t ? {
|
|
1229
1251
|
type: "action",
|
|
@@ -1242,14 +1264,14 @@ function Nn(e) {
|
|
|
1242
1264
|
}
|
|
1243
1265
|
};
|
|
1244
1266
|
}
|
|
1245
|
-
function
|
|
1267
|
+
function Un(e) {
|
|
1246
1268
|
return {
|
|
1247
1269
|
type: "error",
|
|
1248
1270
|
code: "BACKEND_ERROR",
|
|
1249
1271
|
message: w(e.payload?.text, e.payload?.message, e.payload?.error) ?? "Backend returned an error"
|
|
1250
1272
|
};
|
|
1251
1273
|
}
|
|
1252
|
-
function
|
|
1274
|
+
function Mn(e) {
|
|
1253
1275
|
return {
|
|
1254
1276
|
type: "metadata",
|
|
1255
1277
|
sessionId: "",
|
|
@@ -1259,29 +1281,29 @@ function Rn(e) {
|
|
|
1259
1281
|
}
|
|
1260
1282
|
};
|
|
1261
1283
|
}
|
|
1262
|
-
function
|
|
1284
|
+
function xn(e) {
|
|
1263
1285
|
const t = e.payload ?? {};
|
|
1264
1286
|
if (Array.isArray(t.action_list)) {
|
|
1265
1287
|
const i = {
|
|
1266
1288
|
action_list: t.action_list
|
|
1267
1289
|
}, s = typeof t.type == "string" ? t.type : void 0, a = typeof t.theme == "string" ? t.theme : void 0;
|
|
1268
|
-
return s !== void 0 && (i.type = s), a !== void 0 && (i.theme = a),
|
|
1290
|
+
return s !== void 0 && (i.type = s), a !== void 0 && (i.theme = a), ut({
|
|
1269
1291
|
payload: i
|
|
1270
1292
|
});
|
|
1271
1293
|
}
|
|
1272
|
-
const r =
|
|
1294
|
+
const r = j(t.action);
|
|
1273
1295
|
if (r) {
|
|
1274
1296
|
const i = {
|
|
1275
1297
|
action: r
|
|
1276
1298
|
}, s = typeof t.text == "string" ? t.text : void 0, a = typeof t.image_url == "string" ? t.image_url : void 0, c = typeof t.theme == "string" ? t.theme : void 0;
|
|
1277
|
-
return s !== void 0 && (i.text = s), a !== void 0 && (i.image_url = a), c !== void 0 && (i.theme = c),
|
|
1299
|
+
return s !== void 0 && (i.text = s), a !== void 0 && (i.image_url = a), c !== void 0 && (i.theme = c), ct({
|
|
1278
1300
|
payload: i
|
|
1279
1301
|
});
|
|
1280
1302
|
}
|
|
1281
1303
|
const o = typeof t.text == "string" ? t.text : "";
|
|
1282
1304
|
if (o) {
|
|
1283
|
-
const i = { text: o }, s = typeof t.type == "string" ? t.type : void 0, a = typeof t.theme == "string" ? t.theme : void 0, c =
|
|
1284
|
-
return s !== void 0 && (i.type = s), c !== void 0 && (i.payload = c), a !== void 0 && (i.theme = a),
|
|
1305
|
+
const i = { text: o }, s = typeof t.type == "string" ? t.type : void 0, a = typeof t.theme == "string" ? t.theme : void 0, c = j(t.payload) ?? void 0;
|
|
1306
|
+
return s !== void 0 && (i.type = s), c !== void 0 && (i.payload = c), a !== void 0 && (i.theme = a), ke({
|
|
1285
1307
|
payload: i
|
|
1286
1308
|
});
|
|
1287
1309
|
}
|
|
@@ -1294,7 +1316,7 @@ function Dn(e) {
|
|
|
1294
1316
|
}
|
|
1295
1317
|
};
|
|
1296
1318
|
}
|
|
1297
|
-
function
|
|
1319
|
+
function ke(e) {
|
|
1298
1320
|
const t = {
|
|
1299
1321
|
text: w(e.payload.text) ?? ""
|
|
1300
1322
|
};
|
|
@@ -1312,10 +1334,10 @@ function be(e) {
|
|
|
1312
1334
|
}
|
|
1313
1335
|
};
|
|
1314
1336
|
}
|
|
1315
|
-
function
|
|
1316
|
-
return
|
|
1337
|
+
function Fn(e) {
|
|
1338
|
+
return nr(e.payload, "qna");
|
|
1317
1339
|
}
|
|
1318
|
-
function
|
|
1340
|
+
function ct(e) {
|
|
1319
1341
|
const t = w(e.payload.text) ?? "", n = R(e.payload.action, t);
|
|
1320
1342
|
if (n) {
|
|
1321
1343
|
const o = {
|
|
@@ -1339,11 +1361,11 @@ function st(e) {
|
|
|
1339
1361
|
const r = {
|
|
1340
1362
|
text: t
|
|
1341
1363
|
};
|
|
1342
|
-
return typeof e.payload.theme == "string" && (r.theme = e.payload.theme),
|
|
1364
|
+
return typeof e.payload.theme == "string" && (r.theme = e.payload.theme), ke({
|
|
1343
1365
|
payload: r
|
|
1344
1366
|
});
|
|
1345
1367
|
}
|
|
1346
|
-
function
|
|
1368
|
+
function ut(e) {
|
|
1347
1369
|
const t = (e.payload.action_list ?? []).map((n) => {
|
|
1348
1370
|
const r = w(n.title) ?? "", o = R(n.requestDetails, r), i = o ? {
|
|
1349
1371
|
label: r,
|
|
@@ -1351,9 +1373,9 @@ function at(e) {
|
|
|
1351
1373
|
} : null;
|
|
1352
1374
|
return i ? (typeof n.icon == "string" && (i.icon = n.icon), typeof n.image == "string" && (i.image = n.image), i) : null;
|
|
1353
1375
|
});
|
|
1354
|
-
return
|
|
1376
|
+
return dt(t.filter(ft), "qna");
|
|
1355
1377
|
}
|
|
1356
|
-
function
|
|
1378
|
+
function Jn(e) {
|
|
1357
1379
|
const n = { reviews: (e.payload.reviews ?? []).map((r) => {
|
|
1358
1380
|
const o = {};
|
|
1359
1381
|
return typeof r.review_class == "string" && (o.review_class = r.review_class), typeof r.review_text == "string" && (o.review_text = r.review_text), (typeof r.review_rating == "string" || typeof r.review_rating == "number") && (o.review_rating = r.review_rating), typeof r.review_tag == "string" && (o.review_tag = r.review_tag), o;
|
|
@@ -1372,7 +1394,7 @@ function Ln(e) {
|
|
|
1372
1394
|
}
|
|
1373
1395
|
};
|
|
1374
1396
|
}
|
|
1375
|
-
function
|
|
1397
|
+
function qn(e) {
|
|
1376
1398
|
const t = {};
|
|
1377
1399
|
return Array.isArray(e.payload.pros) && (t.pros = e.payload.pros), Array.isArray(e.payload.cons) && (t.cons = e.payload.cons), typeof e.payload.product_name == "string" && (t.productName = e.payload.product_name), {
|
|
1378
1400
|
type: "ui_spec",
|
|
@@ -1388,7 +1410,7 @@ function Un(e) {
|
|
|
1388
1410
|
}
|
|
1389
1411
|
};
|
|
1390
1412
|
}
|
|
1391
|
-
function
|
|
1413
|
+
function Vn(e) {
|
|
1392
1414
|
return {
|
|
1393
1415
|
type: "metadata",
|
|
1394
1416
|
sessionId: "",
|
|
@@ -1398,12 +1420,12 @@ function Mn(e) {
|
|
|
1398
1420
|
}
|
|
1399
1421
|
};
|
|
1400
1422
|
}
|
|
1401
|
-
function
|
|
1423
|
+
function Wn(e) {
|
|
1402
1424
|
const t = e.payload.product_suggestions ?? [], n = [];
|
|
1403
1425
|
for (let r = 0; r < t.length; r++) {
|
|
1404
1426
|
const o = t[r];
|
|
1405
1427
|
if (!o) continue;
|
|
1406
|
-
const i =
|
|
1428
|
+
const i = or(o);
|
|
1407
1429
|
if (!i) continue;
|
|
1408
1430
|
const s = { product: i }, a = R(o.requestDetails, i.name);
|
|
1409
1431
|
a && (s.action = a), typeof o.role == "string" && (s.role = o.role), typeof o.reason == "string" && (s.reason = o.reason), typeof o.review_highlight == "string" && (s.reviewHighlight = o.review_highlight), Array.isArray(o.labels) && (s.labels = o.labels), typeof o.expert_quality_score == "number" && (s.expertQualityScore = o.expert_quality_score), n.push(s);
|
|
@@ -1429,7 +1451,7 @@ function xn(e) {
|
|
|
1429
1451
|
}
|
|
1430
1452
|
};
|
|
1431
1453
|
}
|
|
1432
|
-
function
|
|
1454
|
+
function Gn(e) {
|
|
1433
1455
|
const t = e.payload.product_groupings ?? [], n = [];
|
|
1434
1456
|
for (let r = 0; r < t.length; r++) {
|
|
1435
1457
|
const o = t[r];
|
|
@@ -1464,23 +1486,23 @@ function Fn(e) {
|
|
|
1464
1486
|
}
|
|
1465
1487
|
};
|
|
1466
1488
|
}
|
|
1467
|
-
function
|
|
1489
|
+
function Bn(e) {
|
|
1468
1490
|
const t = e.payload.suggested_searches ?? [], n = [];
|
|
1469
1491
|
for (let r = 0; r < t.length; r++) {
|
|
1470
1492
|
const o = t[r];
|
|
1471
1493
|
if (!o) continue;
|
|
1472
1494
|
const i = w(o.short_name, o.chosen_attribute, o.detailed_user_message) ?? `Search ${r + 1}`, s = {}, a = w(o.detailed_user_message);
|
|
1473
1495
|
a && (s.text = a);
|
|
1474
|
-
const c =
|
|
1475
|
-
o.group_skus && Array.isArray(o.group_skus) ? s.group_skus = o.group_skus : Array.isArray(l) && (s.group_skus = l.filter((
|
|
1496
|
+
const c = j(o.requestDetails), u = j(c?.payload), l = u?.group_skus;
|
|
1497
|
+
o.group_skus && Array.isArray(o.group_skus) ? s.group_skus = o.group_skus : Array.isArray(l) && (s.group_skus = l.filter((Z) => typeof Z == "string"));
|
|
1476
1498
|
const f = w(o.sku, o.representative_product_sku, u?.sku);
|
|
1477
1499
|
f && (s.sku = f), s.is_suggested_text = 1;
|
|
1478
1500
|
const p = { type: "inputText", payload: s }, g = R(o.requestDetails, i), y = g?.type === "findSimilar" && typeof s.text == "string" ? R(p, i) : g ?? R(p, i);
|
|
1479
1501
|
if (!y) continue;
|
|
1480
1502
|
const _ = { shortName: i, action: y }, m = w(o.detailed_user_message);
|
|
1481
1503
|
m && m !== i && (_.detailedMessage = m);
|
|
1482
|
-
const
|
|
1483
|
-
|
|
1504
|
+
const b = kn(o);
|
|
1505
|
+
b && b !== i && b !== (m ?? "") && (_.whyDifferent = b), typeof o.image == "string" && (_.image = o.image), n.push(_);
|
|
1484
1506
|
}
|
|
1485
1507
|
return n.length === 0 ? {
|
|
1486
1508
|
type: "metadata",
|
|
@@ -1503,7 +1525,7 @@ function Jn(e) {
|
|
|
1503
1525
|
}
|
|
1504
1526
|
};
|
|
1505
1527
|
}
|
|
1506
|
-
function
|
|
1528
|
+
function Kn(e) {
|
|
1507
1529
|
const t = R(
|
|
1508
1530
|
e.payload.requestDetails,
|
|
1509
1531
|
w(e.payload.review_count, e.payload.text, e.payload.title) ?? "Show product reviews"
|
|
@@ -1532,7 +1554,7 @@ function qn(e) {
|
|
|
1532
1554
|
}
|
|
1533
1555
|
};
|
|
1534
1556
|
}
|
|
1535
|
-
function
|
|
1557
|
+
function Hn() {
|
|
1536
1558
|
return {
|
|
1537
1559
|
type: "metadata",
|
|
1538
1560
|
sessionId: "",
|
|
@@ -1542,7 +1564,7 @@ function Vn() {
|
|
|
1542
1564
|
}
|
|
1543
1565
|
};
|
|
1544
1566
|
}
|
|
1545
|
-
function
|
|
1567
|
+
function Yn(e) {
|
|
1546
1568
|
return {
|
|
1547
1569
|
type: "metadata",
|
|
1548
1570
|
sessionId: "",
|
|
@@ -1552,7 +1574,7 @@ function Wn(e) {
|
|
|
1552
1574
|
}
|
|
1553
1575
|
};
|
|
1554
1576
|
}
|
|
1555
|
-
function
|
|
1577
|
+
function Xn(e) {
|
|
1556
1578
|
const t = e.payload.group_list ?? [], n = [];
|
|
1557
1579
|
for (const o of t) {
|
|
1558
1580
|
const i = o.group_name ?? "", s = (o.product_list ?? []).map(M);
|
|
@@ -1580,7 +1602,7 @@ function Gn(e) {
|
|
|
1580
1602
|
panelHint: "panel"
|
|
1581
1603
|
};
|
|
1582
1604
|
}
|
|
1583
|
-
function
|
|
1605
|
+
function Qn(e) {
|
|
1584
1606
|
return {
|
|
1585
1607
|
type: "metadata",
|
|
1586
1608
|
sessionId: "",
|
|
@@ -1591,7 +1613,7 @@ function Bn(e) {
|
|
|
1591
1613
|
}
|
|
1592
1614
|
};
|
|
1593
1615
|
}
|
|
1594
|
-
function
|
|
1616
|
+
function er(e) {
|
|
1595
1617
|
const t = {};
|
|
1596
1618
|
return typeof e.payload?.summary == "string" && (t.summary = e.payload.summary), Array.isArray(e.payload?.products_discussed) && (t.products_discussed = e.payload.products_discussed), typeof e.payload?.user_sentiment == "string" && (t.user_sentiment = e.payload.user_sentiment), {
|
|
1597
1619
|
type: "ui_spec",
|
|
@@ -1607,7 +1629,7 @@ function Hn(e) {
|
|
|
1607
1629
|
}
|
|
1608
1630
|
};
|
|
1609
1631
|
}
|
|
1610
|
-
function
|
|
1632
|
+
function tr(e) {
|
|
1611
1633
|
return {
|
|
1612
1634
|
type: "metadata",
|
|
1613
1635
|
sessionId: "",
|
|
@@ -1617,7 +1639,7 @@ function Kn(e) {
|
|
|
1617
1639
|
}
|
|
1618
1640
|
};
|
|
1619
1641
|
}
|
|
1620
|
-
function
|
|
1642
|
+
function dt(e, t) {
|
|
1621
1643
|
const n = {}, r = [];
|
|
1622
1644
|
for (let o = 0; o < e.length; o++) {
|
|
1623
1645
|
const i = e[o];
|
|
@@ -1651,7 +1673,7 @@ function ct(e, t) {
|
|
|
1651
1673
|
spec: { root: "root", elements: n }
|
|
1652
1674
|
};
|
|
1653
1675
|
}
|
|
1654
|
-
function
|
|
1676
|
+
function lt(e, t) {
|
|
1655
1677
|
const n = {}, r = [];
|
|
1656
1678
|
for (let o = 0; o < e.length; o++) {
|
|
1657
1679
|
const i = e[o];
|
|
@@ -1672,7 +1694,7 @@ function ut(e, t) {
|
|
|
1672
1694
|
spec: { root: "root", elements: n }
|
|
1673
1695
|
};
|
|
1674
1696
|
}
|
|
1675
|
-
function
|
|
1697
|
+
function nr(e, t) {
|
|
1676
1698
|
return {
|
|
1677
1699
|
type: "ui_spec",
|
|
1678
1700
|
widget: t,
|
|
@@ -1687,7 +1709,7 @@ function Yn(e, t) {
|
|
|
1687
1709
|
}
|
|
1688
1710
|
};
|
|
1689
1711
|
}
|
|
1690
|
-
function
|
|
1712
|
+
function rr(e) {
|
|
1691
1713
|
return {
|
|
1692
1714
|
type: "ui_spec",
|
|
1693
1715
|
widget: e,
|
|
@@ -1703,11 +1725,11 @@ function Qn(e) {
|
|
|
1703
1725
|
}
|
|
1704
1726
|
};
|
|
1705
1727
|
}
|
|
1706
|
-
function
|
|
1707
|
-
const t = w(e.sku), n = w(e.short_name), r =
|
|
1708
|
-
return
|
|
1728
|
+
function or(e) {
|
|
1729
|
+
const t = w(e.sku), n = w(e.short_name), r = j(e.product_item) ?? e;
|
|
1730
|
+
return ir(r, t, n);
|
|
1709
1731
|
}
|
|
1710
|
-
function
|
|
1732
|
+
function ir(e, t, n) {
|
|
1711
1733
|
const r = w(e.sku, t), o = w(e.name, n);
|
|
1712
1734
|
if (!r || !o) return null;
|
|
1713
1735
|
const i = {
|
|
@@ -1717,26 +1739,26 @@ function er(e, t, n) {
|
|
|
1717
1739
|
s && (i.brand = s);
|
|
1718
1740
|
const a = w(e.url);
|
|
1719
1741
|
a && (i.url = a);
|
|
1720
|
-
const c =
|
|
1742
|
+
const c = sr(e.images);
|
|
1721
1743
|
if (c.length > 0)
|
|
1722
1744
|
i.images = c;
|
|
1723
1745
|
else {
|
|
1724
1746
|
const y = w(e.image, e.image_url, e.imageUrl);
|
|
1725
1747
|
y && (i.images = [y]);
|
|
1726
1748
|
}
|
|
1727
|
-
const u =
|
|
1749
|
+
const u = X(e.price_discounted);
|
|
1728
1750
|
u !== void 0 && (i.price_discounted = u);
|
|
1729
|
-
const l =
|
|
1751
|
+
const l = X(e.price);
|
|
1730
1752
|
l !== void 0 && (i.price = l);
|
|
1731
|
-
const f =
|
|
1753
|
+
const f = X(e.rating);
|
|
1732
1754
|
f !== void 0 && (i.rating = f);
|
|
1733
|
-
const p =
|
|
1755
|
+
const p = X(e.review_count) ?? X(e.reviewCount);
|
|
1734
1756
|
p !== void 0 && (i.review_count = p);
|
|
1735
1757
|
const g = w(e.cart_code, e.cartCode);
|
|
1736
1758
|
return g && (i.cart_code = g), typeof e.in_stock == "boolean" && (i.in_stock = e.in_stock), typeof e.inStock == "boolean" && (i.in_stock = e.inStock), M(i);
|
|
1737
1759
|
}
|
|
1738
1760
|
function R(e, t) {
|
|
1739
|
-
const n =
|
|
1761
|
+
const n = j(e);
|
|
1740
1762
|
if (!n) return null;
|
|
1741
1763
|
const r = n.type;
|
|
1742
1764
|
if (typeof r != "string" || r.length === 0) return null;
|
|
@@ -1746,7 +1768,7 @@ function R(e, t) {
|
|
|
1746
1768
|
};
|
|
1747
1769
|
return n.payload !== void 0 && (o.payload = n.payload), o;
|
|
1748
1770
|
}
|
|
1749
|
-
function
|
|
1771
|
+
function j(e) {
|
|
1750
1772
|
return !e || typeof e != "object" || Array.isArray(e) ? null : e;
|
|
1751
1773
|
}
|
|
1752
1774
|
function w(...e) {
|
|
@@ -1756,17 +1778,17 @@ function w(...e) {
|
|
|
1756
1778
|
if (n.length > 0) return n;
|
|
1757
1779
|
}
|
|
1758
1780
|
}
|
|
1759
|
-
function
|
|
1781
|
+
function sr(e) {
|
|
1760
1782
|
return Array.isArray(e) ? e.filter((t) => typeof t == "string" && t.length > 0) : [];
|
|
1761
1783
|
}
|
|
1762
|
-
function
|
|
1784
|
+
function ar(e) {
|
|
1763
1785
|
if (typeof e == "string") {
|
|
1764
1786
|
const t = e.trim();
|
|
1765
1787
|
return t ? [t] : [];
|
|
1766
1788
|
}
|
|
1767
1789
|
return Array.isArray(e) ? e.filter((t) => typeof t == "string").map((t) => t.trim()).filter((t) => t.length > 0) : [];
|
|
1768
1790
|
}
|
|
1769
|
-
function
|
|
1791
|
+
function X(e) {
|
|
1770
1792
|
if (typeof e == "number" && Number.isFinite(e)) return e;
|
|
1771
1793
|
if (typeof e == "string") {
|
|
1772
1794
|
let t;
|
|
@@ -1775,10 +1797,10 @@ function Q(e) {
|
|
|
1775
1797
|
if (Number.isFinite(n)) return n;
|
|
1776
1798
|
}
|
|
1777
1799
|
}
|
|
1778
|
-
function
|
|
1800
|
+
function ft(e) {
|
|
1779
1801
|
return e != null;
|
|
1780
1802
|
}
|
|
1781
|
-
const
|
|
1803
|
+
const cr = /* @__PURE__ */ new Set([
|
|
1782
1804
|
"sku",
|
|
1783
1805
|
"name",
|
|
1784
1806
|
"brand",
|
|
@@ -1811,13 +1833,13 @@ function M(e) {
|
|
|
1811
1833
|
const l = e, f = {};
|
|
1812
1834
|
let p = !1;
|
|
1813
1835
|
for (const g of Object.keys(l))
|
|
1814
|
-
|
|
1836
|
+
cr.has(g) || (f[g] = l[g], p = !0);
|
|
1815
1837
|
return p && (c.extras = f), c;
|
|
1816
1838
|
}
|
|
1817
|
-
function
|
|
1839
|
+
function Oc(e) {
|
|
1818
1840
|
return e.results.map(M);
|
|
1819
1841
|
}
|
|
1820
|
-
function
|
|
1842
|
+
function Ic(e) {
|
|
1821
1843
|
return e.product_groupings.map((t) => {
|
|
1822
1844
|
const n = {
|
|
1823
1845
|
name: t.name,
|
|
@@ -1826,22 +1848,22 @@ function $c(e) {
|
|
|
1826
1848
|
return t.highlight !== void 0 && (n.highlight = t.highlight), n;
|
|
1827
1849
|
});
|
|
1828
1850
|
}
|
|
1829
|
-
const
|
|
1851
|
+
const ur = {
|
|
1830
1852
|
process_action: "/process_action",
|
|
1831
1853
|
launcher_action: "/launcher_action",
|
|
1832
1854
|
similar_products: "/similar_products",
|
|
1833
1855
|
product_groupings: "/product_groupings"
|
|
1834
1856
|
};
|
|
1835
|
-
function
|
|
1857
|
+
function dr(e) {
|
|
1836
1858
|
if (e === void 0)
|
|
1837
1859
|
throw new Error("[gengage] middlewareUrl is required. Pass your Gengage backend URL in widget config.");
|
|
1838
1860
|
const t = e.trim();
|
|
1839
1861
|
return t === "" ? "" : t.replace(/\/+$/, "");
|
|
1840
1862
|
}
|
|
1841
|
-
function
|
|
1842
|
-
return `${
|
|
1863
|
+
function Ac(e, t) {
|
|
1864
|
+
return `${dr(t?.middlewareUrl)}/chat${ur[e]}`;
|
|
1843
1865
|
}
|
|
1844
|
-
function
|
|
1866
|
+
function lr() {
|
|
1845
1867
|
return typeof window < "u" && Array.isArray(window.dataLayer);
|
|
1846
1868
|
}
|
|
1847
1869
|
function T(e, t) {
|
|
@@ -1849,104 +1871,104 @@ function T(e, t) {
|
|
|
1849
1871
|
event: e,
|
|
1850
1872
|
...t
|
|
1851
1873
|
};
|
|
1852
|
-
|
|
1874
|
+
lr() && window.dataLayer.push(n);
|
|
1853
1875
|
}
|
|
1854
|
-
function
|
|
1876
|
+
function fr(e) {
|
|
1855
1877
|
T("gengage-on-init", { gengage_widget: e });
|
|
1856
1878
|
}
|
|
1857
|
-
function
|
|
1879
|
+
function De(e) {
|
|
1858
1880
|
T("gengage-show", { gengage_widget: e });
|
|
1859
1881
|
}
|
|
1860
|
-
function
|
|
1882
|
+
function pr(e) {
|
|
1861
1883
|
T("gengage-hide", { gengage_widget: e });
|
|
1862
1884
|
}
|
|
1863
|
-
function
|
|
1885
|
+
function gr(e, t) {
|
|
1864
1886
|
T("gengage-suggested-question", {
|
|
1865
1887
|
gengage_question_title: e,
|
|
1866
1888
|
gengage_action_type: t
|
|
1867
1889
|
});
|
|
1868
1890
|
}
|
|
1869
|
-
function
|
|
1891
|
+
function Pc(e) {
|
|
1870
1892
|
T("gengage-find-similars", { gengage_sku: e });
|
|
1871
1893
|
}
|
|
1872
|
-
function
|
|
1894
|
+
function Nc(e) {
|
|
1873
1895
|
T("gengage-compare-preselection", { gengage_sku: e });
|
|
1874
1896
|
}
|
|
1875
|
-
function
|
|
1897
|
+
function Cc(e) {
|
|
1876
1898
|
T("gengage-compare-selected", {
|
|
1877
1899
|
gengage_skus: e,
|
|
1878
1900
|
gengage_product_count: e.length
|
|
1879
1901
|
});
|
|
1880
1902
|
}
|
|
1881
|
-
function
|
|
1903
|
+
function Rc() {
|
|
1882
1904
|
T("gengage-compare-clear");
|
|
1883
1905
|
}
|
|
1884
|
-
function
|
|
1906
|
+
function jc(e) {
|
|
1885
1907
|
T("gengage-compare-received", {
|
|
1886
1908
|
gengage_product_count: e
|
|
1887
1909
|
});
|
|
1888
1910
|
}
|
|
1889
|
-
function
|
|
1911
|
+
function Dc(e) {
|
|
1890
1912
|
T("gengage-like-product", { gengage_sku: e });
|
|
1891
1913
|
}
|
|
1892
|
-
function
|
|
1914
|
+
function Lc() {
|
|
1893
1915
|
T("gengage-like-list");
|
|
1894
1916
|
}
|
|
1895
|
-
function
|
|
1917
|
+
function Uc(e, t) {
|
|
1896
1918
|
T("gengage-search", {
|
|
1897
1919
|
gengage_search_query: e,
|
|
1898
1920
|
gengage_result_count: t
|
|
1899
1921
|
});
|
|
1900
1922
|
}
|
|
1901
|
-
function
|
|
1923
|
+
function hr(e, t) {
|
|
1902
1924
|
T("gengage-product-detail", {
|
|
1903
1925
|
gengage_sku: e,
|
|
1904
1926
|
gengage_product_name: t
|
|
1905
1927
|
});
|
|
1906
1928
|
}
|
|
1907
|
-
function
|
|
1929
|
+
function mr(e, t) {
|
|
1908
1930
|
T("gengage-cart-add", {
|
|
1909
1931
|
gengage_sku: e,
|
|
1910
1932
|
gengage_quantity: t
|
|
1911
1933
|
});
|
|
1912
1934
|
}
|
|
1913
|
-
function
|
|
1935
|
+
function Mc() {
|
|
1914
1936
|
T("gengage-message-sent");
|
|
1915
1937
|
}
|
|
1916
|
-
function
|
|
1938
|
+
function xc() {
|
|
1917
1939
|
T("gengage-message-received");
|
|
1918
1940
|
}
|
|
1919
|
-
function
|
|
1941
|
+
function Fc() {
|
|
1920
1942
|
T("gengage-conversation-start");
|
|
1921
1943
|
}
|
|
1922
|
-
function
|
|
1944
|
+
function _r() {
|
|
1923
1945
|
T("gengage-voice-input");
|
|
1924
1946
|
}
|
|
1925
|
-
function
|
|
1947
|
+
function yr(e, t) {
|
|
1926
1948
|
T("gengage-error", { gengage_widget: e, gengage_error: t });
|
|
1927
1949
|
}
|
|
1928
|
-
let
|
|
1929
|
-
function
|
|
1950
|
+
let Q = null;
|
|
1951
|
+
function Jc() {
|
|
1930
1952
|
if (typeof window > "u") return () => {
|
|
1931
1953
|
};
|
|
1932
|
-
if (
|
|
1954
|
+
if (Q) return Q;
|
|
1933
1955
|
const e = [];
|
|
1934
1956
|
function t(n, r) {
|
|
1935
1957
|
const o = (i) => r(i.detail);
|
|
1936
1958
|
window.addEventListener(n, o), e.push(() => window.removeEventListener(n, o));
|
|
1937
1959
|
}
|
|
1938
|
-
return t("gengage:chat:open", () =>
|
|
1939
|
-
|
|
1960
|
+
return t("gengage:chat:open", () => De("chat")), t("gengage:chat:close", () => pr("chat")), t("gengage:chat:ready", () => fr("chat")), t("gengage:similar:add-to-cart", ({ sku: n, quantity: r }) => {
|
|
1961
|
+
mr(n, r);
|
|
1940
1962
|
}), t("gengage:similar:product-click", ({ sku: n }) => {
|
|
1941
|
-
|
|
1963
|
+
hr(n);
|
|
1942
1964
|
}), t("gengage:qna:action", ({ title: n, type: r }) => {
|
|
1943
|
-
|
|
1944
|
-
}), t("gengage:chat:voice", () =>
|
|
1945
|
-
|
|
1946
|
-
}),
|
|
1965
|
+
gr(n, r);
|
|
1966
|
+
}), t("gengage:chat:voice", () => _r()), t("gengage:qna:open-chat", () => De("chat")), t("gengage:global:error", ({ source: n, message: r }) => {
|
|
1967
|
+
yr(n, r);
|
|
1968
|
+
}), Q = () => {
|
|
1947
1969
|
for (const n of e) n();
|
|
1948
|
-
e.length = 0,
|
|
1949
|
-
},
|
|
1970
|
+
e.length = 0, Q = null;
|
|
1971
|
+
}, Q;
|
|
1950
1972
|
}
|
|
1951
1973
|
function d(e, t, n) {
|
|
1952
1974
|
function r(a, c) {
|
|
@@ -1987,23 +2009,23 @@ class G extends Error {
|
|
|
1987
2009
|
super("Encountered Promise during synchronous parse. Use .parseAsync() instead.");
|
|
1988
2010
|
}
|
|
1989
2011
|
}
|
|
1990
|
-
class
|
|
2012
|
+
class pt extends Error {
|
|
1991
2013
|
constructor(t) {
|
|
1992
2014
|
super(`Encountered unidirectional transform during encode: ${t}`), this.name = "ZodEncodeError";
|
|
1993
2015
|
}
|
|
1994
2016
|
}
|
|
1995
|
-
const
|
|
2017
|
+
const gt = {};
|
|
1996
2018
|
function L(e) {
|
|
1997
|
-
return
|
|
2019
|
+
return gt;
|
|
1998
2020
|
}
|
|
1999
|
-
function
|
|
2021
|
+
function ht(e) {
|
|
2000
2022
|
const t = Object.values(e).filter((r) => typeof r == "number");
|
|
2001
2023
|
return Object.entries(e).filter(([r, o]) => t.indexOf(+r) === -1).map(([r, o]) => o);
|
|
2002
2024
|
}
|
|
2003
|
-
function
|
|
2025
|
+
function ye(e, t) {
|
|
2004
2026
|
return typeof t == "bigint" ? t.toString() : t;
|
|
2005
2027
|
}
|
|
2006
|
-
function
|
|
2028
|
+
function ze(e) {
|
|
2007
2029
|
return {
|
|
2008
2030
|
get value() {
|
|
2009
2031
|
{
|
|
@@ -2013,14 +2035,14 @@ function ke(e) {
|
|
|
2013
2035
|
}
|
|
2014
2036
|
};
|
|
2015
2037
|
}
|
|
2016
|
-
function
|
|
2038
|
+
function Se(e) {
|
|
2017
2039
|
return e == null;
|
|
2018
2040
|
}
|
|
2019
|
-
function
|
|
2041
|
+
function $e(e) {
|
|
2020
2042
|
const t = e.startsWith("^") ? 1 : 0, n = e.endsWith("$") ? e.length - 1 : e.length;
|
|
2021
2043
|
return e.slice(t, n);
|
|
2022
2044
|
}
|
|
2023
|
-
function
|
|
2045
|
+
function vr(e, t) {
|
|
2024
2046
|
const n = (e.toString().split(".")[1] || "").length, r = t.toString();
|
|
2025
2047
|
let o = (r.split(".")[1] || "").length;
|
|
2026
2048
|
if (o === 0 && /\d?e-\d?/.test(r)) {
|
|
@@ -2030,13 +2052,13 @@ function gr(e, t) {
|
|
|
2030
2052
|
const i = n > o ? n : o, s = Number.parseInt(e.toFixed(i).replace(".", "")), a = Number.parseInt(t.toFixed(i).replace(".", ""));
|
|
2031
2053
|
return s % a / 10 ** i;
|
|
2032
2054
|
}
|
|
2033
|
-
const
|
|
2055
|
+
const Le = /* @__PURE__ */ Symbol("evaluating");
|
|
2034
2056
|
function v(e, t, n) {
|
|
2035
2057
|
let r;
|
|
2036
2058
|
Object.defineProperty(e, t, {
|
|
2037
2059
|
get() {
|
|
2038
|
-
if (r !==
|
|
2039
|
-
return r === void 0 && (r =
|
|
2060
|
+
if (r !== Le)
|
|
2061
|
+
return r === void 0 && (r = Le, r = n()), r;
|
|
2040
2062
|
},
|
|
2041
2063
|
set(o) {
|
|
2042
2064
|
Object.defineProperty(e, t, {
|
|
@@ -2063,18 +2085,18 @@ function x(...e) {
|
|
|
2063
2085
|
}
|
|
2064
2086
|
return Object.defineProperties({}, t);
|
|
2065
2087
|
}
|
|
2066
|
-
function
|
|
2088
|
+
function Ue(e) {
|
|
2067
2089
|
return JSON.stringify(e);
|
|
2068
2090
|
}
|
|
2069
|
-
function
|
|
2091
|
+
function wr(e) {
|
|
2070
2092
|
return e.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, "");
|
|
2071
2093
|
}
|
|
2072
|
-
const
|
|
2094
|
+
const mt = "captureStackTrace" in Error ? Error.captureStackTrace : (...e) => {
|
|
2073
2095
|
};
|
|
2074
2096
|
function se(e) {
|
|
2075
2097
|
return typeof e == "object" && e !== null && !Array.isArray(e);
|
|
2076
2098
|
}
|
|
2077
|
-
const
|
|
2099
|
+
const br = ze(() => {
|
|
2078
2100
|
if (typeof navigator < "u" && navigator?.userAgent?.includes("Cloudflare"))
|
|
2079
2101
|
return !1;
|
|
2080
2102
|
try {
|
|
@@ -2093,11 +2115,11 @@ function B(e) {
|
|
|
2093
2115
|
const n = t.prototype;
|
|
2094
2116
|
return !(se(n) === !1 || Object.prototype.hasOwnProperty.call(n, "isPrototypeOf") === !1);
|
|
2095
2117
|
}
|
|
2096
|
-
function
|
|
2118
|
+
function _t(e) {
|
|
2097
2119
|
return B(e) ? { ...e } : Array.isArray(e) ? [...e] : e;
|
|
2098
2120
|
}
|
|
2099
|
-
const
|
|
2100
|
-
function
|
|
2121
|
+
const kr = /* @__PURE__ */ new Set(["string", "number", "symbol"]);
|
|
2122
|
+
function K(e) {
|
|
2101
2123
|
return e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
2102
2124
|
}
|
|
2103
2125
|
function F(e, t, n) {
|
|
@@ -2117,17 +2139,17 @@ function h(e) {
|
|
|
2117
2139
|
}
|
|
2118
2140
|
return delete t.message, typeof t.error == "string" ? { ...t, error: () => t.error } : t;
|
|
2119
2141
|
}
|
|
2120
|
-
function
|
|
2142
|
+
function zr(e) {
|
|
2121
2143
|
return Object.keys(e).filter((t) => e[t]._zod.optin === "optional" && e[t]._zod.optout === "optional");
|
|
2122
2144
|
}
|
|
2123
|
-
const
|
|
2145
|
+
const Sr = {
|
|
2124
2146
|
safeint: [Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER],
|
|
2125
2147
|
int32: [-2147483648, 2147483647],
|
|
2126
2148
|
uint32: [0, 4294967295],
|
|
2127
2149
|
float32: [-34028234663852886e22, 34028234663852886e22],
|
|
2128
2150
|
float64: [-Number.MAX_VALUE, Number.MAX_VALUE]
|
|
2129
2151
|
};
|
|
2130
|
-
function
|
|
2152
|
+
function $r(e, t) {
|
|
2131
2153
|
const n = e._zod.def, r = n.checks;
|
|
2132
2154
|
if (r && r.length > 0)
|
|
2133
2155
|
throw new Error(".pick() cannot be used on object schemas containing refinements");
|
|
@@ -2145,7 +2167,7 @@ function wr(e, t) {
|
|
|
2145
2167
|
});
|
|
2146
2168
|
return F(e, i);
|
|
2147
2169
|
}
|
|
2148
|
-
function
|
|
2170
|
+
function Er(e, t) {
|
|
2149
2171
|
const n = e._zod.def, r = n.checks;
|
|
2150
2172
|
if (r && r.length > 0)
|
|
2151
2173
|
throw new Error(".omit() cannot be used on object schemas containing refinements");
|
|
@@ -2163,7 +2185,7 @@ function br(e, t) {
|
|
|
2163
2185
|
});
|
|
2164
2186
|
return F(e, i);
|
|
2165
2187
|
}
|
|
2166
|
-
function
|
|
2188
|
+
function Tr(e, t) {
|
|
2167
2189
|
if (!B(t))
|
|
2168
2190
|
throw new Error("Invalid input to extend: expected a plain object");
|
|
2169
2191
|
const n = e._zod.def.checks;
|
|
@@ -2181,7 +2203,7 @@ function kr(e, t) {
|
|
|
2181
2203
|
});
|
|
2182
2204
|
return F(e, o);
|
|
2183
2205
|
}
|
|
2184
|
-
function
|
|
2206
|
+
function Zr(e, t) {
|
|
2185
2207
|
if (!B(t))
|
|
2186
2208
|
throw new Error("Invalid input to safeExtend: expected a plain object");
|
|
2187
2209
|
const n = x(e._zod.def, {
|
|
@@ -2192,7 +2214,7 @@ function zr(e, t) {
|
|
|
2192
2214
|
});
|
|
2193
2215
|
return F(e, n);
|
|
2194
2216
|
}
|
|
2195
|
-
function
|
|
2217
|
+
function Or(e, t) {
|
|
2196
2218
|
const n = x(e._zod.def, {
|
|
2197
2219
|
get shape() {
|
|
2198
2220
|
const r = { ...e._zod.def.shape, ...t._zod.def.shape };
|
|
@@ -2206,7 +2228,7 @@ function Sr(e, t) {
|
|
|
2206
2228
|
});
|
|
2207
2229
|
return F(e, n);
|
|
2208
2230
|
}
|
|
2209
|
-
function
|
|
2231
|
+
function Ir(e, t, n) {
|
|
2210
2232
|
const o = t._zod.def.checks;
|
|
2211
2233
|
if (o && o.length > 0)
|
|
2212
2234
|
throw new Error(".partial() cannot be used on object schemas containing refinements");
|
|
@@ -2234,7 +2256,7 @@ function $r(e, t, n) {
|
|
|
2234
2256
|
});
|
|
2235
2257
|
return F(t, s);
|
|
2236
2258
|
}
|
|
2237
|
-
function
|
|
2259
|
+
function Ar(e, t, n) {
|
|
2238
2260
|
const r = x(t._zod.def, {
|
|
2239
2261
|
get shape() {
|
|
2240
2262
|
const o = t._zod.def.shape, i = { ...o };
|
|
@@ -2283,7 +2305,7 @@ function U(e, t, n) {
|
|
|
2283
2305
|
}
|
|
2284
2306
|
return delete r.inst, delete r.continue, t?.reportInput || delete r.input, r;
|
|
2285
2307
|
}
|
|
2286
|
-
function
|
|
2308
|
+
function Ee(e) {
|
|
2287
2309
|
return Array.isArray(e) ? "array" : typeof e == "string" ? "string" : "unknown";
|
|
2288
2310
|
}
|
|
2289
2311
|
function ne(...e) {
|
|
@@ -2295,25 +2317,25 @@ function ne(...e) {
|
|
|
2295
2317
|
inst: r
|
|
2296
2318
|
} : { ...t };
|
|
2297
2319
|
}
|
|
2298
|
-
const
|
|
2320
|
+
const yt = (e, t) => {
|
|
2299
2321
|
e.name = "$ZodError", Object.defineProperty(e, "_zod", {
|
|
2300
2322
|
value: e._zod,
|
|
2301
2323
|
enumerable: !1
|
|
2302
2324
|
}), Object.defineProperty(e, "issues", {
|
|
2303
2325
|
value: t,
|
|
2304
2326
|
enumerable: !1
|
|
2305
|
-
}), e.message = JSON.stringify(t,
|
|
2327
|
+
}), e.message = JSON.stringify(t, ye, 2), Object.defineProperty(e, "toString", {
|
|
2306
2328
|
value: () => e.message,
|
|
2307
2329
|
enumerable: !1
|
|
2308
2330
|
});
|
|
2309
|
-
},
|
|
2310
|
-
function
|
|
2331
|
+
}, vt = d("$ZodError", yt), wt = d("$ZodError", yt, { Parent: Error });
|
|
2332
|
+
function Pr(e, t = (n) => n.message) {
|
|
2311
2333
|
const n = {}, r = [];
|
|
2312
2334
|
for (const o of e.issues)
|
|
2313
2335
|
o.path.length > 0 ? (n[o.path[0]] = n[o.path[0]] || [], n[o.path[0]].push(t(o))) : r.push(t(o));
|
|
2314
2336
|
return { formErrors: r, fieldErrors: n };
|
|
2315
2337
|
}
|
|
2316
|
-
function
|
|
2338
|
+
function Nr(e, t = (n) => n.message) {
|
|
2317
2339
|
const n = { _errors: [] }, r = (o) => {
|
|
2318
2340
|
for (const i of o.issues)
|
|
2319
2341
|
if (i.code === "invalid_union" && i.errors.length)
|
|
@@ -2334,21 +2356,21 @@ function Zr(e, t = (n) => n.message) {
|
|
|
2334
2356
|
};
|
|
2335
2357
|
return r(e), n;
|
|
2336
2358
|
}
|
|
2337
|
-
const
|
|
2359
|
+
const Te = (e) => (t, n, r, o) => {
|
|
2338
2360
|
const i = r ? Object.assign(r, { async: !1 }) : { async: !1 }, s = t._zod.run({ value: n, issues: [] }, i);
|
|
2339
2361
|
if (s instanceof Promise)
|
|
2340
2362
|
throw new G();
|
|
2341
2363
|
if (s.issues.length) {
|
|
2342
2364
|
const a = new (o?.Err ?? e)(s.issues.map((c) => U(c, i, L())));
|
|
2343
|
-
throw
|
|
2365
|
+
throw mt(a, o?.callee), a;
|
|
2344
2366
|
}
|
|
2345
2367
|
return s.value;
|
|
2346
|
-
},
|
|
2368
|
+
}, Ze = (e) => async (t, n, r, o) => {
|
|
2347
2369
|
const i = r ? Object.assign(r, { async: !0 }) : { async: !0 };
|
|
2348
2370
|
let s = t._zod.run({ value: n, issues: [] }, i);
|
|
2349
2371
|
if (s instanceof Promise && (s = await s), s.issues.length) {
|
|
2350
2372
|
const a = new (o?.Err ?? e)(s.issues.map((c) => U(c, i, L())));
|
|
2351
|
-
throw
|
|
2373
|
+
throw mt(a, o?.callee), a;
|
|
2352
2374
|
}
|
|
2353
2375
|
return s.value;
|
|
2354
2376
|
}, de = (e) => (t, n, r) => {
|
|
@@ -2357,58 +2379,58 @@ const Ee = (e) => (t, n, r, o) => {
|
|
|
2357
2379
|
throw new G();
|
|
2358
2380
|
return i.issues.length ? {
|
|
2359
2381
|
success: !1,
|
|
2360
|
-
error: new (e ??
|
|
2382
|
+
error: new (e ?? vt)(i.issues.map((s) => U(s, o, L())))
|
|
2361
2383
|
} : { success: !0, data: i.value };
|
|
2362
|
-
},
|
|
2384
|
+
}, Cr = /* @__PURE__ */ de(wt), le = (e) => async (t, n, r) => {
|
|
2363
2385
|
const o = r ? Object.assign(r, { async: !0 }) : { async: !0 };
|
|
2364
2386
|
let i = t._zod.run({ value: n, issues: [] }, o);
|
|
2365
2387
|
return i instanceof Promise && (i = await i), i.issues.length ? {
|
|
2366
2388
|
success: !1,
|
|
2367
2389
|
error: new e(i.issues.map((s) => U(s, o, L())))
|
|
2368
2390
|
} : { success: !0, data: i.value };
|
|
2369
|
-
},
|
|
2370
|
-
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
2371
|
-
return Ee(e)(t, n, o);
|
|
2372
|
-
}, Pr = (e) => (t, n, r) => Ee(e)(t, n, r), Nr = (e) => async (t, n, r) => {
|
|
2391
|
+
}, Rr = /* @__PURE__ */ le(wt), jr = (e) => (t, n, r) => {
|
|
2373
2392
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
2374
2393
|
return Te(e)(t, n, o);
|
|
2375
|
-
},
|
|
2394
|
+
}, Dr = (e) => (t, n, r) => Te(e)(t, n, r), Lr = (e) => async (t, n, r) => {
|
|
2395
|
+
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
2396
|
+
return Ze(e)(t, n, o);
|
|
2397
|
+
}, Ur = (e) => async (t, n, r) => Ze(e)(t, n, r), Mr = (e) => (t, n, r) => {
|
|
2376
2398
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
2377
2399
|
return de(e)(t, n, o);
|
|
2378
|
-
},
|
|
2400
|
+
}, xr = (e) => (t, n, r) => de(e)(t, n, r), Fr = (e) => async (t, n, r) => {
|
|
2379
2401
|
const o = r ? Object.assign(r, { direction: "backward" }) : { direction: "backward" };
|
|
2380
2402
|
return le(e)(t, n, o);
|
|
2381
|
-
},
|
|
2382
|
-
function
|
|
2383
|
-
return new RegExp(
|
|
2403
|
+
}, Jr = (e) => async (t, n, r) => le(e)(t, n, r), qr = /^[cC][^\s-]{8,}$/, Vr = /^[0-9a-z]+$/, Wr = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, Gr = /^[0-9a-vA-V]{20}$/, Br = /^[A-Za-z0-9]{27}$/, Kr = /^[a-zA-Z0-9_-]{21}$/, Hr = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, Yr = /^([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})$/, Me = (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)$/, Xr = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, Qr = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
|
2404
|
+
function eo() {
|
|
2405
|
+
return new RegExp(Qr, "u");
|
|
2384
2406
|
}
|
|
2385
|
-
const
|
|
2386
|
-
function
|
|
2407
|
+
const to = /^(?:(?: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])$/, no = /^(([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}|:))$/, ro = /^((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])$/, oo = /^(([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])$/, io = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/, bt = /^[A-Za-z0-9_-]*$/, so = /^\+[1-9]\d{6,14}$/, kt = "(?:(?:\\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])))", ao = /* @__PURE__ */ new RegExp(`^${kt}$`);
|
|
2408
|
+
function zt(e) {
|
|
2387
2409
|
const t = "(?:[01]\\d|2[0-3]):[0-5]\\d";
|
|
2388
2410
|
return typeof e.precision == "number" ? e.precision === -1 ? `${t}` : e.precision === 0 ? `${t}:[0-5]\\d` : `${t}:[0-5]\\d\\.\\d{${e.precision}}` : `${t}(?::[0-5]\\d(?:\\.\\d+)?)?`;
|
|
2389
2411
|
}
|
|
2390
|
-
function
|
|
2391
|
-
return new RegExp(`^${
|
|
2412
|
+
function co(e) {
|
|
2413
|
+
return new RegExp(`^${zt(e)}$`);
|
|
2392
2414
|
}
|
|
2393
|
-
function
|
|
2394
|
-
const t =
|
|
2415
|
+
function uo(e) {
|
|
2416
|
+
const t = zt({ precision: e.precision }), n = ["Z"];
|
|
2395
2417
|
e.local && n.push(""), e.offset && n.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");
|
|
2396
2418
|
const r = `${t}(?:${n.join("|")})`;
|
|
2397
|
-
return new RegExp(`^${
|
|
2419
|
+
return new RegExp(`^${kt}T(?:${r})$`);
|
|
2398
2420
|
}
|
|
2399
|
-
const
|
|
2421
|
+
const lo = (e) => {
|
|
2400
2422
|
const t = e ? `[\\s\\S]{${e?.minimum ?? 0},${e?.maximum ?? ""}}` : "[\\s\\S]*";
|
|
2401
2423
|
return new RegExp(`^${t}$`);
|
|
2402
|
-
},
|
|
2424
|
+
}, fo = /^-?\d+$/, St = /^-?\d+(?:\.\d+)?$/, po = /^(?:true|false)$/i, go = /^[^A-Z]*$/, ho = /^[^a-z]*$/, A = /* @__PURE__ */ d("$ZodCheck", (e, t) => {
|
|
2403
2425
|
var n;
|
|
2404
2426
|
e._zod ?? (e._zod = {}), e._zod.def = t, (n = e._zod).onattach ?? (n.onattach = []);
|
|
2405
|
-
}),
|
|
2427
|
+
}), $t = {
|
|
2406
2428
|
number: "number",
|
|
2407
2429
|
bigint: "bigint",
|
|
2408
2430
|
object: "date"
|
|
2409
|
-
},
|
|
2431
|
+
}, Et = /* @__PURE__ */ d("$ZodCheckLessThan", (e, t) => {
|
|
2410
2432
|
A.init(e, t);
|
|
2411
|
-
const n =
|
|
2433
|
+
const n = $t[typeof t.value];
|
|
2412
2434
|
e._zod.onattach.push((r) => {
|
|
2413
2435
|
const o = r._zod.bag, i = (t.inclusive ? o.maximum : o.exclusiveMaximum) ?? Number.POSITIVE_INFINITY;
|
|
2414
2436
|
t.value < i && (t.inclusive ? o.maximum = t.value : o.exclusiveMaximum = t.value);
|
|
@@ -2423,9 +2445,9 @@ const io = (e) => {
|
|
|
2423
2445
|
continue: !t.abort
|
|
2424
2446
|
});
|
|
2425
2447
|
};
|
|
2426
|
-
}),
|
|
2448
|
+
}), Tt = /* @__PURE__ */ d("$ZodCheckGreaterThan", (e, t) => {
|
|
2427
2449
|
A.init(e, t);
|
|
2428
|
-
const n =
|
|
2450
|
+
const n = $t[typeof t.value];
|
|
2429
2451
|
e._zod.onattach.push((r) => {
|
|
2430
2452
|
const o = r._zod.bag, i = (t.inclusive ? o.minimum : o.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY;
|
|
2431
2453
|
t.value > i && (t.inclusive ? o.minimum = t.value : o.exclusiveMinimum = t.value);
|
|
@@ -2440,14 +2462,14 @@ const io = (e) => {
|
|
|
2440
2462
|
continue: !t.abort
|
|
2441
2463
|
});
|
|
2442
2464
|
};
|
|
2443
|
-
}),
|
|
2465
|
+
}), mo = /* @__PURE__ */ d("$ZodCheckMultipleOf", (e, t) => {
|
|
2444
2466
|
A.init(e, t), e._zod.onattach.push((n) => {
|
|
2445
2467
|
var r;
|
|
2446
2468
|
(r = n._zod.bag).multipleOf ?? (r.multipleOf = t.value);
|
|
2447
2469
|
}), e._zod.check = (n) => {
|
|
2448
2470
|
if (typeof n.value != typeof t.value)
|
|
2449
2471
|
throw new Error("Cannot mix number and bigint in multiple_of check.");
|
|
2450
|
-
(typeof n.value == "bigint" ? n.value % t.value === BigInt(0) :
|
|
2472
|
+
(typeof n.value == "bigint" ? n.value % t.value === BigInt(0) : vr(n.value, t.value) === 0) || n.issues.push({
|
|
2451
2473
|
origin: typeof n.value,
|
|
2452
2474
|
code: "not_multiple_of",
|
|
2453
2475
|
divisor: t.value,
|
|
@@ -2456,12 +2478,12 @@ const io = (e) => {
|
|
|
2456
2478
|
continue: !t.abort
|
|
2457
2479
|
});
|
|
2458
2480
|
};
|
|
2459
|
-
}),
|
|
2481
|
+
}), _o = /* @__PURE__ */ d("$ZodCheckNumberFormat", (e, t) => {
|
|
2460
2482
|
A.init(e, t), t.format = t.format || "float64";
|
|
2461
|
-
const n = t.format?.includes("int"), r = n ? "int" : "number", [o, i] =
|
|
2483
|
+
const n = t.format?.includes("int"), r = n ? "int" : "number", [o, i] = Sr[t.format];
|
|
2462
2484
|
e._zod.onattach.push((s) => {
|
|
2463
2485
|
const a = s._zod.bag;
|
|
2464
|
-
a.format = t.format, a.minimum = o, a.maximum = i, n && (a.pattern =
|
|
2486
|
+
a.format = t.format, a.minimum = o, a.maximum = i, n && (a.pattern = fo);
|
|
2465
2487
|
}), e._zod.check = (s) => {
|
|
2466
2488
|
const a = s.value;
|
|
2467
2489
|
if (n) {
|
|
@@ -2517,11 +2539,11 @@ const io = (e) => {
|
|
|
2517
2539
|
continue: !t.abort
|
|
2518
2540
|
});
|
|
2519
2541
|
};
|
|
2520
|
-
}),
|
|
2542
|
+
}), yo = /* @__PURE__ */ d("$ZodCheckMaxLength", (e, t) => {
|
|
2521
2543
|
var n;
|
|
2522
2544
|
A.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
2523
2545
|
const o = r.value;
|
|
2524
|
-
return !
|
|
2546
|
+
return !Se(o) && o.length !== void 0;
|
|
2525
2547
|
}), e._zod.onattach.push((r) => {
|
|
2526
2548
|
const o = r._zod.bag.maximum ?? Number.POSITIVE_INFINITY;
|
|
2527
2549
|
t.maximum < o && (r._zod.bag.maximum = t.maximum);
|
|
@@ -2529,7 +2551,7 @@ const io = (e) => {
|
|
|
2529
2551
|
const o = r.value;
|
|
2530
2552
|
if (o.length <= t.maximum)
|
|
2531
2553
|
return;
|
|
2532
|
-
const s =
|
|
2554
|
+
const s = Ee(o);
|
|
2533
2555
|
r.issues.push({
|
|
2534
2556
|
origin: s,
|
|
2535
2557
|
code: "too_big",
|
|
@@ -2540,11 +2562,11 @@ const io = (e) => {
|
|
|
2540
2562
|
continue: !t.abort
|
|
2541
2563
|
});
|
|
2542
2564
|
};
|
|
2543
|
-
}),
|
|
2565
|
+
}), vo = /* @__PURE__ */ d("$ZodCheckMinLength", (e, t) => {
|
|
2544
2566
|
var n;
|
|
2545
2567
|
A.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
2546
2568
|
const o = r.value;
|
|
2547
|
-
return !
|
|
2569
|
+
return !Se(o) && o.length !== void 0;
|
|
2548
2570
|
}), e._zod.onattach.push((r) => {
|
|
2549
2571
|
const o = r._zod.bag.minimum ?? Number.NEGATIVE_INFINITY;
|
|
2550
2572
|
t.minimum > o && (r._zod.bag.minimum = t.minimum);
|
|
@@ -2552,7 +2574,7 @@ const io = (e) => {
|
|
|
2552
2574
|
const o = r.value;
|
|
2553
2575
|
if (o.length >= t.minimum)
|
|
2554
2576
|
return;
|
|
2555
|
-
const s =
|
|
2577
|
+
const s = Ee(o);
|
|
2556
2578
|
r.issues.push({
|
|
2557
2579
|
origin: s,
|
|
2558
2580
|
code: "too_small",
|
|
@@ -2563,11 +2585,11 @@ const io = (e) => {
|
|
|
2563
2585
|
continue: !t.abort
|
|
2564
2586
|
});
|
|
2565
2587
|
};
|
|
2566
|
-
}),
|
|
2588
|
+
}), wo = /* @__PURE__ */ d("$ZodCheckLengthEquals", (e, t) => {
|
|
2567
2589
|
var n;
|
|
2568
2590
|
A.init(e, t), (n = e._zod.def).when ?? (n.when = (r) => {
|
|
2569
2591
|
const o = r.value;
|
|
2570
|
-
return !
|
|
2592
|
+
return !Se(o) && o.length !== void 0;
|
|
2571
2593
|
}), e._zod.onattach.push((r) => {
|
|
2572
2594
|
const o = r._zod.bag;
|
|
2573
2595
|
o.minimum = t.length, o.maximum = t.length, o.length = t.length;
|
|
@@ -2575,7 +2597,7 @@ const io = (e) => {
|
|
|
2575
2597
|
const o = r.value, i = o.length;
|
|
2576
2598
|
if (i === t.length)
|
|
2577
2599
|
return;
|
|
2578
|
-
const s =
|
|
2600
|
+
const s = Ee(o), a = i > t.length;
|
|
2579
2601
|
r.issues.push({
|
|
2580
2602
|
origin: s,
|
|
2581
2603
|
...a ? { code: "too_big", maximum: t.length } : { code: "too_small", minimum: t.length },
|
|
@@ -2603,7 +2625,7 @@ const io = (e) => {
|
|
|
2603
2625
|
});
|
|
2604
2626
|
}) : (r = e._zod).check ?? (r.check = () => {
|
|
2605
2627
|
});
|
|
2606
|
-
}),
|
|
2628
|
+
}), bo = /* @__PURE__ */ d("$ZodCheckRegex", (e, t) => {
|
|
2607
2629
|
fe.init(e, t), e._zod.check = (n) => {
|
|
2608
2630
|
t.pattern.lastIndex = 0, !t.pattern.test(n.value) && n.issues.push({
|
|
2609
2631
|
origin: "string",
|
|
@@ -2615,13 +2637,13 @@ const io = (e) => {
|
|
|
2615
2637
|
continue: !t.abort
|
|
2616
2638
|
});
|
|
2617
2639
|
};
|
|
2618
|
-
}),
|
|
2619
|
-
t.pattern ?? (t.pattern =
|
|
2620
|
-
}),
|
|
2621
|
-
t.pattern ?? (t.pattern =
|
|
2622
|
-
}),
|
|
2640
|
+
}), ko = /* @__PURE__ */ d("$ZodCheckLowerCase", (e, t) => {
|
|
2641
|
+
t.pattern ?? (t.pattern = go), fe.init(e, t);
|
|
2642
|
+
}), zo = /* @__PURE__ */ d("$ZodCheckUpperCase", (e, t) => {
|
|
2643
|
+
t.pattern ?? (t.pattern = ho), fe.init(e, t);
|
|
2644
|
+
}), So = /* @__PURE__ */ d("$ZodCheckIncludes", (e, t) => {
|
|
2623
2645
|
A.init(e, t);
|
|
2624
|
-
const n =
|
|
2646
|
+
const n = K(t.includes), r = new RegExp(typeof t.position == "number" ? `^.{${t.position}}${n}` : n);
|
|
2625
2647
|
t.pattern = r, e._zod.onattach.push((o) => {
|
|
2626
2648
|
const i = o._zod.bag;
|
|
2627
2649
|
i.patterns ?? (i.patterns = /* @__PURE__ */ new Set()), i.patterns.add(r);
|
|
@@ -2636,9 +2658,9 @@ const io = (e) => {
|
|
|
2636
2658
|
continue: !t.abort
|
|
2637
2659
|
});
|
|
2638
2660
|
};
|
|
2639
|
-
}),
|
|
2661
|
+
}), $o = /* @__PURE__ */ d("$ZodCheckStartsWith", (e, t) => {
|
|
2640
2662
|
A.init(e, t);
|
|
2641
|
-
const n = new RegExp(`^${
|
|
2663
|
+
const n = new RegExp(`^${K(t.prefix)}.*`);
|
|
2642
2664
|
t.pattern ?? (t.pattern = n), e._zod.onattach.push((r) => {
|
|
2643
2665
|
const o = r._zod.bag;
|
|
2644
2666
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(n);
|
|
@@ -2653,9 +2675,9 @@ const io = (e) => {
|
|
|
2653
2675
|
continue: !t.abort
|
|
2654
2676
|
});
|
|
2655
2677
|
};
|
|
2656
|
-
}),
|
|
2678
|
+
}), Eo = /* @__PURE__ */ d("$ZodCheckEndsWith", (e, t) => {
|
|
2657
2679
|
A.init(e, t);
|
|
2658
|
-
const n = new RegExp(`.*${
|
|
2680
|
+
const n = new RegExp(`.*${K(t.suffix)}$`);
|
|
2659
2681
|
t.pattern ?? (t.pattern = n), e._zod.onattach.push((r) => {
|
|
2660
2682
|
const o = r._zod.bag;
|
|
2661
2683
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(n);
|
|
@@ -2670,12 +2692,12 @@ const io = (e) => {
|
|
|
2670
2692
|
continue: !t.abort
|
|
2671
2693
|
});
|
|
2672
2694
|
};
|
|
2673
|
-
}),
|
|
2695
|
+
}), To = /* @__PURE__ */ d("$ZodCheckOverwrite", (e, t) => {
|
|
2674
2696
|
A.init(e, t), e._zod.check = (n) => {
|
|
2675
2697
|
n.value = t.tx(n.value);
|
|
2676
2698
|
};
|
|
2677
2699
|
});
|
|
2678
|
-
class
|
|
2700
|
+
class Zo {
|
|
2679
2701
|
constructor(t = []) {
|
|
2680
2702
|
this.content = [], this.indent = 0, this && (this.args = t);
|
|
2681
2703
|
}
|
|
@@ -2698,13 +2720,13 @@ class zo {
|
|
|
2698
2720
|
`));
|
|
2699
2721
|
}
|
|
2700
2722
|
}
|
|
2701
|
-
const
|
|
2723
|
+
const Oo = {
|
|
2702
2724
|
major: 4,
|
|
2703
2725
|
minor: 3,
|
|
2704
2726
|
patch: 6
|
|
2705
2727
|
}, z = /* @__PURE__ */ d("$ZodType", (e, t) => {
|
|
2706
2728
|
var n;
|
|
2707
|
-
e ?? (e = {}), e._zod.def = t, e._zod.bag = e._zod.bag || {}, e._zod.version =
|
|
2729
|
+
e ?? (e = {}), e._zod.def = t, e._zod.bag = e._zod.bag || {}, e._zod.version = Oo;
|
|
2708
2730
|
const r = [...e._zod.def.checks ?? []];
|
|
2709
2731
|
e._zod.traits.has("$ZodCheck") && r.unshift(e);
|
|
2710
2732
|
for (const o of r)
|
|
@@ -2767,17 +2789,17 @@ const So = {
|
|
|
2767
2789
|
v(e, "~standard", () => ({
|
|
2768
2790
|
validate: (o) => {
|
|
2769
2791
|
try {
|
|
2770
|
-
const i =
|
|
2792
|
+
const i = Cr(e, o);
|
|
2771
2793
|
return i.success ? { value: i.data } : { issues: i.error?.issues };
|
|
2772
2794
|
} catch {
|
|
2773
|
-
return
|
|
2795
|
+
return Rr(e, o).then((s) => s.success ? { value: s.data } : { issues: s.error?.issues });
|
|
2774
2796
|
}
|
|
2775
2797
|
},
|
|
2776
2798
|
vendor: "zod",
|
|
2777
2799
|
version: 1
|
|
2778
2800
|
}));
|
|
2779
|
-
}),
|
|
2780
|
-
z.init(e, t), e._zod.pattern = [...e?._zod.bag?.patterns ?? []].pop() ??
|
|
2801
|
+
}), Oe = /* @__PURE__ */ d("$ZodString", (e, t) => {
|
|
2802
|
+
z.init(e, t), e._zod.pattern = [...e?._zod.bag?.patterns ?? []].pop() ?? lo(e._zod.bag), e._zod.parse = (n, r) => {
|
|
2781
2803
|
if (t.coerce)
|
|
2782
2804
|
try {
|
|
2783
2805
|
n.value = String(n.value);
|
|
@@ -2790,11 +2812,11 @@ const So = {
|
|
|
2790
2812
|
inst: e
|
|
2791
2813
|
}), n;
|
|
2792
2814
|
};
|
|
2793
|
-
}),
|
|
2794
|
-
fe.init(e, t),
|
|
2795
|
-
}),
|
|
2796
|
-
t.pattern ?? (t.pattern =
|
|
2797
|
-
}),
|
|
2815
|
+
}), k = /* @__PURE__ */ d("$ZodStringFormat", (e, t) => {
|
|
2816
|
+
fe.init(e, t), Oe.init(e, t);
|
|
2817
|
+
}), Io = /* @__PURE__ */ d("$ZodGUID", (e, t) => {
|
|
2818
|
+
t.pattern ?? (t.pattern = Yr), k.init(e, t);
|
|
2819
|
+
}), Ao = /* @__PURE__ */ d("$ZodUUID", (e, t) => {
|
|
2798
2820
|
if (t.version) {
|
|
2799
2821
|
const r = {
|
|
2800
2822
|
v1: 1,
|
|
@@ -2808,14 +2830,14 @@ const So = {
|
|
|
2808
2830
|
}[t.version];
|
|
2809
2831
|
if (r === void 0)
|
|
2810
2832
|
throw new Error(`Invalid UUID version: "${t.version}"`);
|
|
2811
|
-
t.pattern ?? (t.pattern =
|
|
2833
|
+
t.pattern ?? (t.pattern = Me(r));
|
|
2812
2834
|
} else
|
|
2813
|
-
t.pattern ?? (t.pattern =
|
|
2814
|
-
|
|
2815
|
-
}),
|
|
2816
|
-
t.pattern ?? (t.pattern =
|
|
2817
|
-
}),
|
|
2818
|
-
|
|
2835
|
+
t.pattern ?? (t.pattern = Me());
|
|
2836
|
+
k.init(e, t);
|
|
2837
|
+
}), Po = /* @__PURE__ */ d("$ZodEmail", (e, t) => {
|
|
2838
|
+
t.pattern ?? (t.pattern = Xr), k.init(e, t);
|
|
2839
|
+
}), No = /* @__PURE__ */ d("$ZodURL", (e, t) => {
|
|
2840
|
+
k.init(e, t), e._zod.check = (n) => {
|
|
2819
2841
|
try {
|
|
2820
2842
|
const r = n.value.trim(), o = new URL(r);
|
|
2821
2843
|
t.hostname && (t.hostname.lastIndex = 0, t.hostname.test(o.hostname) || n.issues.push({
|
|
@@ -2846,32 +2868,32 @@ const So = {
|
|
|
2846
2868
|
});
|
|
2847
2869
|
}
|
|
2848
2870
|
};
|
|
2849
|
-
}),
|
|
2850
|
-
t.pattern ?? (t.pattern =
|
|
2851
|
-
}),
|
|
2852
|
-
t.pattern ?? (t.pattern =
|
|
2853
|
-
}),
|
|
2854
|
-
t.pattern ?? (t.pattern =
|
|
2855
|
-
}),
|
|
2856
|
-
t.pattern ?? (t.pattern =
|
|
2857
|
-
}),
|
|
2858
|
-
t.pattern ?? (t.pattern =
|
|
2859
|
-
}),
|
|
2860
|
-
t.pattern ?? (t.pattern =
|
|
2861
|
-
}),
|
|
2862
|
-
t.pattern ?? (t.pattern =
|
|
2863
|
-
}),
|
|
2864
|
-
t.pattern ?? (t.pattern =
|
|
2865
|
-
}),
|
|
2866
|
-
t.pattern ?? (t.pattern =
|
|
2867
|
-
}),
|
|
2868
|
-
t.pattern ?? (t.pattern =
|
|
2869
|
-
}),
|
|
2870
|
-
t.pattern ?? (t.pattern =
|
|
2871
|
-
}),
|
|
2872
|
-
t.pattern ?? (t.pattern =
|
|
2873
|
-
}),
|
|
2874
|
-
t.pattern ?? (t.pattern =
|
|
2871
|
+
}), Co = /* @__PURE__ */ d("$ZodEmoji", (e, t) => {
|
|
2872
|
+
t.pattern ?? (t.pattern = eo()), k.init(e, t);
|
|
2873
|
+
}), Ro = /* @__PURE__ */ d("$ZodNanoID", (e, t) => {
|
|
2874
|
+
t.pattern ?? (t.pattern = Kr), k.init(e, t);
|
|
2875
|
+
}), jo = /* @__PURE__ */ d("$ZodCUID", (e, t) => {
|
|
2876
|
+
t.pattern ?? (t.pattern = qr), k.init(e, t);
|
|
2877
|
+
}), Do = /* @__PURE__ */ d("$ZodCUID2", (e, t) => {
|
|
2878
|
+
t.pattern ?? (t.pattern = Vr), k.init(e, t);
|
|
2879
|
+
}), Lo = /* @__PURE__ */ d("$ZodULID", (e, t) => {
|
|
2880
|
+
t.pattern ?? (t.pattern = Wr), k.init(e, t);
|
|
2881
|
+
}), Uo = /* @__PURE__ */ d("$ZodXID", (e, t) => {
|
|
2882
|
+
t.pattern ?? (t.pattern = Gr), k.init(e, t);
|
|
2883
|
+
}), Mo = /* @__PURE__ */ d("$ZodKSUID", (e, t) => {
|
|
2884
|
+
t.pattern ?? (t.pattern = Br), k.init(e, t);
|
|
2885
|
+
}), xo = /* @__PURE__ */ d("$ZodISODateTime", (e, t) => {
|
|
2886
|
+
t.pattern ?? (t.pattern = uo(t)), k.init(e, t);
|
|
2887
|
+
}), Fo = /* @__PURE__ */ d("$ZodISODate", (e, t) => {
|
|
2888
|
+
t.pattern ?? (t.pattern = ao), k.init(e, t);
|
|
2889
|
+
}), Jo = /* @__PURE__ */ d("$ZodISOTime", (e, t) => {
|
|
2890
|
+
t.pattern ?? (t.pattern = co(t)), k.init(e, t);
|
|
2891
|
+
}), qo = /* @__PURE__ */ d("$ZodISODuration", (e, t) => {
|
|
2892
|
+
t.pattern ?? (t.pattern = Hr), k.init(e, t);
|
|
2893
|
+
}), Vo = /* @__PURE__ */ d("$ZodIPv4", (e, t) => {
|
|
2894
|
+
t.pattern ?? (t.pattern = to), k.init(e, t), e._zod.bag.format = "ipv4";
|
|
2895
|
+
}), Wo = /* @__PURE__ */ d("$ZodIPv6", (e, t) => {
|
|
2896
|
+
t.pattern ?? (t.pattern = no), k.init(e, t), e._zod.bag.format = "ipv6", e._zod.check = (n) => {
|
|
2875
2897
|
try {
|
|
2876
2898
|
new URL(`http://[${n.value}]`);
|
|
2877
2899
|
} catch {
|
|
@@ -2884,10 +2906,10 @@ const So = {
|
|
|
2884
2906
|
});
|
|
2885
2907
|
}
|
|
2886
2908
|
};
|
|
2887
|
-
}),
|
|
2888
|
-
t.pattern ?? (t.pattern =
|
|
2889
|
-
}),
|
|
2890
|
-
t.pattern ?? (t.pattern =
|
|
2909
|
+
}), Go = /* @__PURE__ */ d("$ZodCIDRv4", (e, t) => {
|
|
2910
|
+
t.pattern ?? (t.pattern = ro), k.init(e, t);
|
|
2911
|
+
}), Bo = /* @__PURE__ */ d("$ZodCIDRv6", (e, t) => {
|
|
2912
|
+
t.pattern ?? (t.pattern = oo), k.init(e, t), e._zod.check = (n) => {
|
|
2891
2913
|
const r = n.value.split("/");
|
|
2892
2914
|
try {
|
|
2893
2915
|
if (r.length !== 2)
|
|
@@ -2912,7 +2934,7 @@ const So = {
|
|
|
2912
2934
|
}
|
|
2913
2935
|
};
|
|
2914
2936
|
});
|
|
2915
|
-
function
|
|
2937
|
+
function Zt(e) {
|
|
2916
2938
|
if (e === "")
|
|
2917
2939
|
return !0;
|
|
2918
2940
|
if (e.length % 4 !== 0)
|
|
@@ -2923,9 +2945,9 @@ function Et(e) {
|
|
|
2923
2945
|
return !1;
|
|
2924
2946
|
}
|
|
2925
2947
|
}
|
|
2926
|
-
const
|
|
2927
|
-
t.pattern ?? (t.pattern =
|
|
2928
|
-
|
|
2948
|
+
const Ko = /* @__PURE__ */ d("$ZodBase64", (e, t) => {
|
|
2949
|
+
t.pattern ?? (t.pattern = io), k.init(e, t), e._zod.bag.contentEncoding = "base64", e._zod.check = (n) => {
|
|
2950
|
+
Zt(n.value) || n.issues.push({
|
|
2929
2951
|
code: "invalid_format",
|
|
2930
2952
|
format: "base64",
|
|
2931
2953
|
input: n.value,
|
|
@@ -2934,15 +2956,15 @@ const qo = /* @__PURE__ */ d("$ZodBase64", (e, t) => {
|
|
|
2934
2956
|
});
|
|
2935
2957
|
};
|
|
2936
2958
|
});
|
|
2937
|
-
function
|
|
2938
|
-
if (!
|
|
2959
|
+
function Ho(e) {
|
|
2960
|
+
if (!bt.test(e))
|
|
2939
2961
|
return !1;
|
|
2940
2962
|
const t = e.replace(/[-_]/g, (r) => r === "-" ? "+" : "/"), n = t.padEnd(Math.ceil(t.length / 4) * 4, "=");
|
|
2941
|
-
return
|
|
2963
|
+
return Zt(n);
|
|
2942
2964
|
}
|
|
2943
|
-
const
|
|
2944
|
-
t.pattern ?? (t.pattern =
|
|
2945
|
-
|
|
2965
|
+
const Yo = /* @__PURE__ */ d("$ZodBase64URL", (e, t) => {
|
|
2966
|
+
t.pattern ?? (t.pattern = bt), k.init(e, t), e._zod.bag.contentEncoding = "base64url", e._zod.check = (n) => {
|
|
2967
|
+
Ho(n.value) || n.issues.push({
|
|
2946
2968
|
code: "invalid_format",
|
|
2947
2969
|
format: "base64url",
|
|
2948
2970
|
input: n.value,
|
|
@@ -2950,10 +2972,10 @@ const Wo = /* @__PURE__ */ d("$ZodBase64URL", (e, t) => {
|
|
|
2950
2972
|
continue: !t.abort
|
|
2951
2973
|
});
|
|
2952
2974
|
};
|
|
2953
|
-
}),
|
|
2954
|
-
t.pattern ?? (t.pattern =
|
|
2975
|
+
}), Xo = /* @__PURE__ */ d("$ZodE164", (e, t) => {
|
|
2976
|
+
t.pattern ?? (t.pattern = so), k.init(e, t);
|
|
2955
2977
|
});
|
|
2956
|
-
function
|
|
2978
|
+
function Qo(e, t = null) {
|
|
2957
2979
|
try {
|
|
2958
2980
|
const n = e.split(".");
|
|
2959
2981
|
if (n.length !== 3)
|
|
@@ -2967,9 +2989,9 @@ function Bo(e, t = null) {
|
|
|
2967
2989
|
return !1;
|
|
2968
2990
|
}
|
|
2969
2991
|
}
|
|
2970
|
-
const
|
|
2971
|
-
|
|
2972
|
-
|
|
2992
|
+
const ei = /* @__PURE__ */ d("$ZodJWT", (e, t) => {
|
|
2993
|
+
k.init(e, t), e._zod.check = (n) => {
|
|
2994
|
+
Qo(n.value, t.alg) || n.issues.push({
|
|
2973
2995
|
code: "invalid_format",
|
|
2974
2996
|
format: "jwt",
|
|
2975
2997
|
input: n.value,
|
|
@@ -2977,8 +2999,8 @@ const Ho = /* @__PURE__ */ d("$ZodJWT", (e, t) => {
|
|
|
2977
2999
|
continue: !t.abort
|
|
2978
3000
|
});
|
|
2979
3001
|
};
|
|
2980
|
-
}),
|
|
2981
|
-
z.init(e, t), e._zod.pattern = e._zod.bag.pattern ??
|
|
3002
|
+
}), Ot = /* @__PURE__ */ d("$ZodNumber", (e, t) => {
|
|
3003
|
+
z.init(e, t), e._zod.pattern = e._zod.bag.pattern ?? St, e._zod.parse = (n, r) => {
|
|
2982
3004
|
if (t.coerce)
|
|
2983
3005
|
try {
|
|
2984
3006
|
n.value = Number(n.value);
|
|
@@ -2996,10 +3018,10 @@ const Ho = /* @__PURE__ */ d("$ZodJWT", (e, t) => {
|
|
|
2996
3018
|
...i ? { received: i } : {}
|
|
2997
3019
|
}), n;
|
|
2998
3020
|
};
|
|
2999
|
-
}),
|
|
3000
|
-
|
|
3001
|
-
}),
|
|
3002
|
-
z.init(e, t), e._zod.pattern =
|
|
3021
|
+
}), ti = /* @__PURE__ */ d("$ZodNumberFormat", (e, t) => {
|
|
3022
|
+
_o.init(e, t), Ot.init(e, t);
|
|
3023
|
+
}), ni = /* @__PURE__ */ d("$ZodBoolean", (e, t) => {
|
|
3024
|
+
z.init(e, t), e._zod.pattern = po, e._zod.parse = (n, r) => {
|
|
3003
3025
|
if (t.coerce)
|
|
3004
3026
|
try {
|
|
3005
3027
|
n.value = !!n.value;
|
|
@@ -3013,9 +3035,9 @@ const Ho = /* @__PURE__ */ d("$ZodJWT", (e, t) => {
|
|
|
3013
3035
|
inst: e
|
|
3014
3036
|
}), n;
|
|
3015
3037
|
};
|
|
3016
|
-
}),
|
|
3038
|
+
}), ri = /* @__PURE__ */ d("$ZodUnknown", (e, t) => {
|
|
3017
3039
|
z.init(e, t), e._zod.parse = (n) => n;
|
|
3018
|
-
}),
|
|
3040
|
+
}), oi = /* @__PURE__ */ d("$ZodNever", (e, t) => {
|
|
3019
3041
|
z.init(e, t), e._zod.parse = (n, r) => (n.issues.push({
|
|
3020
3042
|
expected: "never",
|
|
3021
3043
|
code: "invalid_type",
|
|
@@ -3023,10 +3045,10 @@ const Ho = /* @__PURE__ */ d("$ZodJWT", (e, t) => {
|
|
|
3023
3045
|
inst: e
|
|
3024
3046
|
}), n);
|
|
3025
3047
|
});
|
|
3026
|
-
function
|
|
3048
|
+
function xe(e, t, n) {
|
|
3027
3049
|
e.issues.length && t.issues.push(...W(n, e.issues)), t.value[n] = e.value;
|
|
3028
3050
|
}
|
|
3029
|
-
const
|
|
3051
|
+
const ii = /* @__PURE__ */ d("$ZodArray", (e, t) => {
|
|
3030
3052
|
z.init(e, t), e._zod.parse = (n, r) => {
|
|
3031
3053
|
const o = n.value;
|
|
3032
3054
|
if (!Array.isArray(o))
|
|
@@ -3043,7 +3065,7 @@ const ei = /* @__PURE__ */ d("$ZodArray", (e, t) => {
|
|
|
3043
3065
|
value: a,
|
|
3044
3066
|
issues: []
|
|
3045
3067
|
}, r);
|
|
3046
|
-
c instanceof Promise ? i.push(c.then((u) =>
|
|
3068
|
+
c instanceof Promise ? i.push(c.then((u) => xe(u, n, s))) : xe(c, n, s);
|
|
3047
3069
|
}
|
|
3048
3070
|
return i.length ? Promise.all(i).then(() => n) : n;
|
|
3049
3071
|
};
|
|
@@ -3056,12 +3078,12 @@ function ae(e, t, n, r, o) {
|
|
|
3056
3078
|
}
|
|
3057
3079
|
e.value === void 0 ? n in r && (t.value[n] = void 0) : t.value[n] = e.value;
|
|
3058
3080
|
}
|
|
3059
|
-
function
|
|
3081
|
+
function It(e) {
|
|
3060
3082
|
const t = Object.keys(e.shape);
|
|
3061
3083
|
for (const r of t)
|
|
3062
3084
|
if (!e.shape?.[r]?._zod?.traits?.has("$ZodType"))
|
|
3063
3085
|
throw new Error(`Invalid element at key "${r}": expected a Zod schema`);
|
|
3064
|
-
const n =
|
|
3086
|
+
const n = zr(e.shape);
|
|
3065
3087
|
return {
|
|
3066
3088
|
...e,
|
|
3067
3089
|
keys: t,
|
|
@@ -3070,7 +3092,7 @@ function Zt(e) {
|
|
|
3070
3092
|
optionalKeys: new Set(n)
|
|
3071
3093
|
};
|
|
3072
3094
|
}
|
|
3073
|
-
function
|
|
3095
|
+
function At(e, t, n, r, o, i) {
|
|
3074
3096
|
const s = [], a = o.keySet, c = o.catchall._zod, u = c.def.type, l = c.optout === "optional";
|
|
3075
3097
|
for (const f in t) {
|
|
3076
3098
|
if (a.has(f))
|
|
@@ -3089,7 +3111,7 @@ function Ot(e, t, n, r, o, i) {
|
|
|
3089
3111
|
inst: i
|
|
3090
3112
|
}), e.length ? Promise.all(e).then(() => n) : n;
|
|
3091
3113
|
}
|
|
3092
|
-
const
|
|
3114
|
+
const si = /* @__PURE__ */ d("$ZodObject", (e, t) => {
|
|
3093
3115
|
if (z.init(e, t), !Object.getOwnPropertyDescriptor(t, "shape")?.get) {
|
|
3094
3116
|
const a = t.shape;
|
|
3095
3117
|
Object.defineProperty(t, "shape", {
|
|
@@ -3101,7 +3123,7 @@ const ti = /* @__PURE__ */ d("$ZodObject", (e, t) => {
|
|
|
3101
3123
|
}
|
|
3102
3124
|
});
|
|
3103
3125
|
}
|
|
3104
|
-
const r =
|
|
3126
|
+
const r = ze(() => It(t));
|
|
3105
3127
|
v(e._zod, "propValues", () => {
|
|
3106
3128
|
const a = t.shape, c = {};
|
|
3107
3129
|
for (const u in a) {
|
|
@@ -3132,24 +3154,24 @@ const ti = /* @__PURE__ */ d("$ZodObject", (e, t) => {
|
|
|
3132
3154
|
const g = f[p], y = g._zod.optout === "optional", _ = g._zod.run({ value: u[p], issues: [] }, c);
|
|
3133
3155
|
_ instanceof Promise ? l.push(_.then((m) => ae(m, a, p, u, y))) : ae(_, a, p, u, y);
|
|
3134
3156
|
}
|
|
3135
|
-
return i ?
|
|
3157
|
+
return i ? At(l, u, a, c, r.value, e) : l.length ? Promise.all(l).then(() => a) : a;
|
|
3136
3158
|
};
|
|
3137
|
-
}),
|
|
3138
|
-
|
|
3139
|
-
const n = e._zod.parse, r =
|
|
3140
|
-
const g = new
|
|
3141
|
-
const I =
|
|
3159
|
+
}), ai = /* @__PURE__ */ d("$ZodObjectJIT", (e, t) => {
|
|
3160
|
+
si.init(e, t);
|
|
3161
|
+
const n = e._zod.parse, r = ze(() => It(t)), o = (p) => {
|
|
3162
|
+
const g = new Zo(["shape", "payload", "ctx"]), y = r.value, _ = (C) => {
|
|
3163
|
+
const I = Ue(C);
|
|
3142
3164
|
return `shape[${I}]._zod.run({ value: input[${I}], issues: [] }, ctx)`;
|
|
3143
3165
|
};
|
|
3144
3166
|
g.write("const input = payload.value;");
|
|
3145
3167
|
const m = /* @__PURE__ */ Object.create(null);
|
|
3146
|
-
let
|
|
3168
|
+
let b = 0;
|
|
3147
3169
|
for (const C of y.keys)
|
|
3148
|
-
m[C] = `key_${
|
|
3170
|
+
m[C] = `key_${b++}`;
|
|
3149
3171
|
g.write("const newResult = {};");
|
|
3150
3172
|
for (const C of y.keys) {
|
|
3151
|
-
const I = m[C], N =
|
|
3152
|
-
g.write(`const ${I} = ${_(C)};`),
|
|
3173
|
+
const I = m[C], N = Ue(C), Jt = p[C]?._zod?.optout === "optional";
|
|
3174
|
+
g.write(`const ${I} = ${_(C)};`), Jt ? g.write(`
|
|
3153
3175
|
if (${I}.issues.length) {
|
|
3154
3176
|
if (${N} in input) {
|
|
3155
3177
|
payload.issues = payload.issues.concat(${I}.issues.map(iss => ({
|
|
@@ -3186,16 +3208,16 @@ const ti = /* @__PURE__ */ d("$ZodObject", (e, t) => {
|
|
|
3186
3208
|
`);
|
|
3187
3209
|
}
|
|
3188
3210
|
g.write("payload.value = newResult;"), g.write("return payload;");
|
|
3189
|
-
const
|
|
3190
|
-
return (C, I) =>
|
|
3211
|
+
const Z = g.compile();
|
|
3212
|
+
return (C, I) => Z(p, C, I);
|
|
3191
3213
|
};
|
|
3192
3214
|
let i;
|
|
3193
|
-
const s = se, a = !
|
|
3215
|
+
const s = se, a = !gt.jitless, u = a && br.value, l = t.catchall;
|
|
3194
3216
|
let f;
|
|
3195
3217
|
e._zod.parse = (p, g) => {
|
|
3196
3218
|
f ?? (f = r.value);
|
|
3197
3219
|
const y = p.value;
|
|
3198
|
-
return s(y) ? a && u && g?.async === !1 && g.jitless !== !0 ? (i || (i = o(t.shape)), p = i(p, g), l ?
|
|
3220
|
+
return s(y) ? a && u && g?.async === !1 && g.jitless !== !0 ? (i || (i = o(t.shape)), p = i(p, g), l ? At([], y, p, g, f, e) : p) : n(p, g) : (p.issues.push({
|
|
3199
3221
|
expected: "object",
|
|
3200
3222
|
code: "invalid_type",
|
|
3201
3223
|
input: y,
|
|
@@ -3203,7 +3225,7 @@ const ti = /* @__PURE__ */ d("$ZodObject", (e, t) => {
|
|
|
3203
3225
|
}), p);
|
|
3204
3226
|
};
|
|
3205
3227
|
});
|
|
3206
|
-
function
|
|
3228
|
+
function Fe(e, t, n, r) {
|
|
3207
3229
|
for (const i of e)
|
|
3208
3230
|
if (i.issues.length === 0)
|
|
3209
3231
|
return t.value = i.value, t;
|
|
@@ -3215,14 +3237,14 @@ function Me(e, t, n, r) {
|
|
|
3215
3237
|
errors: e.map((i) => i.issues.map((s) => U(s, r, L())))
|
|
3216
3238
|
}), t);
|
|
3217
3239
|
}
|
|
3218
|
-
const
|
|
3240
|
+
const ci = /* @__PURE__ */ d("$ZodUnion", (e, t) => {
|
|
3219
3241
|
z.init(e, t), v(e._zod, "optin", () => t.options.some((o) => o._zod.optin === "optional") ? "optional" : void 0), v(e._zod, "optout", () => t.options.some((o) => o._zod.optout === "optional") ? "optional" : void 0), v(e._zod, "values", () => {
|
|
3220
3242
|
if (t.options.every((o) => o._zod.values))
|
|
3221
3243
|
return new Set(t.options.flatMap((o) => Array.from(o._zod.values)));
|
|
3222
3244
|
}), v(e._zod, "pattern", () => {
|
|
3223
3245
|
if (t.options.every((o) => o._zod.pattern)) {
|
|
3224
3246
|
const o = t.options.map((i) => i._zod.pattern);
|
|
3225
|
-
return new RegExp(`^(${o.map((i) =>
|
|
3247
|
+
return new RegExp(`^(${o.map((i) => $e(i.source)).join("|")})$`);
|
|
3226
3248
|
}
|
|
3227
3249
|
});
|
|
3228
3250
|
const n = t.options.length === 1, r = t.options[0]._zod.run;
|
|
@@ -3244,15 +3266,15 @@ const ri = /* @__PURE__ */ d("$ZodUnion", (e, t) => {
|
|
|
3244
3266
|
a.push(u);
|
|
3245
3267
|
}
|
|
3246
3268
|
}
|
|
3247
|
-
return s ? Promise.all(a).then((c) =>
|
|
3269
|
+
return s ? Promise.all(a).then((c) => Fe(c, o, e, i)) : Fe(a, o, e, i);
|
|
3248
3270
|
};
|
|
3249
|
-
}),
|
|
3271
|
+
}), ui = /* @__PURE__ */ d("$ZodIntersection", (e, t) => {
|
|
3250
3272
|
z.init(e, t), e._zod.parse = (n, r) => {
|
|
3251
3273
|
const o = n.value, i = t.left._zod.run({ value: o, issues: [] }, r), s = t.right._zod.run({ value: o, issues: [] }, r);
|
|
3252
|
-
return i instanceof Promise || s instanceof Promise ? Promise.all([i, s]).then(([c, u]) =>
|
|
3274
|
+
return i instanceof Promise || s instanceof Promise ? Promise.all([i, s]).then(([c, u]) => Je(n, c, u)) : Je(n, i, s);
|
|
3253
3275
|
};
|
|
3254
3276
|
});
|
|
3255
|
-
function
|
|
3277
|
+
function ve(e, t) {
|
|
3256
3278
|
if (e === t)
|
|
3257
3279
|
return { valid: !0, data: e };
|
|
3258
3280
|
if (e instanceof Date && t instanceof Date && +e == +t)
|
|
@@ -3260,7 +3282,7 @@ function ye(e, t) {
|
|
|
3260
3282
|
if (B(e) && B(t)) {
|
|
3261
3283
|
const n = Object.keys(t), r = Object.keys(e).filter((i) => n.indexOf(i) !== -1), o = { ...e, ...t };
|
|
3262
3284
|
for (const i of r) {
|
|
3263
|
-
const s =
|
|
3285
|
+
const s = ve(e[i], t[i]);
|
|
3264
3286
|
if (!s.valid)
|
|
3265
3287
|
return {
|
|
3266
3288
|
valid: !1,
|
|
@@ -3275,7 +3297,7 @@ function ye(e, t) {
|
|
|
3275
3297
|
return { valid: !1, mergeErrorPath: [] };
|
|
3276
3298
|
const n = [];
|
|
3277
3299
|
for (let r = 0; r < e.length; r++) {
|
|
3278
|
-
const o = e[r], i = t[r], s =
|
|
3300
|
+
const o = e[r], i = t[r], s = ve(o, i);
|
|
3279
3301
|
if (!s.valid)
|
|
3280
3302
|
return {
|
|
3281
3303
|
valid: !1,
|
|
@@ -3287,7 +3309,7 @@ function ye(e, t) {
|
|
|
3287
3309
|
}
|
|
3288
3310
|
return { valid: !1, mergeErrorPath: [] };
|
|
3289
3311
|
}
|
|
3290
|
-
function
|
|
3312
|
+
function Je(e, t, n) {
|
|
3291
3313
|
const r = /* @__PURE__ */ new Map();
|
|
3292
3314
|
let o;
|
|
3293
3315
|
for (const a of t.issues)
|
|
@@ -3306,12 +3328,12 @@ function xe(e, t, n) {
|
|
|
3306
3328
|
const i = [...r].filter(([, a]) => a.l && a.r).map(([a]) => a);
|
|
3307
3329
|
if (i.length && o && e.issues.push({ ...o, keys: i }), V(e))
|
|
3308
3330
|
return e;
|
|
3309
|
-
const s =
|
|
3331
|
+
const s = ve(t.value, n.value);
|
|
3310
3332
|
if (!s.valid)
|
|
3311
3333
|
throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(s.mergeErrorPath)}`);
|
|
3312
3334
|
return e.value = s.data, e;
|
|
3313
3335
|
}
|
|
3314
|
-
const
|
|
3336
|
+
const di = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
3315
3337
|
z.init(e, t), e._zod.parse = (n, r) => {
|
|
3316
3338
|
const o = n.value;
|
|
3317
3339
|
if (!B(o))
|
|
@@ -3350,7 +3372,7 @@ const ii = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
|
3350
3372
|
let c = t.keyType._zod.run({ value: a, issues: [] }, r);
|
|
3351
3373
|
if (c instanceof Promise)
|
|
3352
3374
|
throw new Error("Async schemas not supported in object keys currently");
|
|
3353
|
-
if (typeof a == "string" &&
|
|
3375
|
+
if (typeof a == "string" && St.test(a) && c.issues.length) {
|
|
3354
3376
|
const f = t.keyType._zod.run({ value: Number(a), issues: [] }, r);
|
|
3355
3377
|
if (f instanceof Promise)
|
|
3356
3378
|
throw new Error("Async schemas not supported in object keys currently");
|
|
@@ -3375,10 +3397,10 @@ const ii = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
|
3375
3397
|
}
|
|
3376
3398
|
return i.length ? Promise.all(i).then(() => n) : n;
|
|
3377
3399
|
};
|
|
3378
|
-
}),
|
|
3400
|
+
}), li = /* @__PURE__ */ d("$ZodEnum", (e, t) => {
|
|
3379
3401
|
z.init(e, t);
|
|
3380
|
-
const n =
|
|
3381
|
-
e._zod.values = r, e._zod.pattern = new RegExp(`^(${n.filter((o) =>
|
|
3402
|
+
const n = ht(t.entries), r = new Set(n);
|
|
3403
|
+
e._zod.values = r, e._zod.pattern = new RegExp(`^(${n.filter((o) => kr.has(typeof o)).map((o) => typeof o == "string" ? K(o) : o.toString()).join("|")})$`), e._zod.parse = (o, i) => {
|
|
3382
3404
|
const s = o.value;
|
|
3383
3405
|
return r.has(s) || o.issues.push({
|
|
3384
3406
|
code: "invalid_value",
|
|
@@ -3387,11 +3409,11 @@ const ii = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
|
3387
3409
|
inst: e
|
|
3388
3410
|
}), o;
|
|
3389
3411
|
};
|
|
3390
|
-
}),
|
|
3412
|
+
}), fi = /* @__PURE__ */ d("$ZodLiteral", (e, t) => {
|
|
3391
3413
|
if (z.init(e, t), t.values.length === 0)
|
|
3392
3414
|
throw new Error("Cannot create literal schema with no valid values");
|
|
3393
3415
|
const n = new Set(t.values);
|
|
3394
|
-
e._zod.values = n, e._zod.pattern = new RegExp(`^(${t.values.map((r) => typeof r == "string" ?
|
|
3416
|
+
e._zod.values = n, e._zod.pattern = new RegExp(`^(${t.values.map((r) => typeof r == "string" ? K(r) : r ? K(r.toString()) : String(r)).join("|")})$`), e._zod.parse = (r, o) => {
|
|
3395
3417
|
const i = r.value;
|
|
3396
3418
|
return n.has(i) || r.issues.push({
|
|
3397
3419
|
code: "invalid_value",
|
|
@@ -3400,10 +3422,10 @@ const ii = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
|
3400
3422
|
inst: e
|
|
3401
3423
|
}), r;
|
|
3402
3424
|
};
|
|
3403
|
-
}),
|
|
3425
|
+
}), pi = /* @__PURE__ */ d("$ZodTransform", (e, t) => {
|
|
3404
3426
|
z.init(e, t), e._zod.parse = (n, r) => {
|
|
3405
3427
|
if (r.direction === "backward")
|
|
3406
|
-
throw new
|
|
3428
|
+
throw new pt(e.constructor.name);
|
|
3407
3429
|
const o = t.transform(n.value, n);
|
|
3408
3430
|
if (r.async)
|
|
3409
3431
|
return (o instanceof Promise ? o : Promise.resolve(o)).then((s) => (n.value = s, n));
|
|
@@ -3412,52 +3434,52 @@ const ii = /* @__PURE__ */ d("$ZodRecord", (e, t) => {
|
|
|
3412
3434
|
return n.value = o, n;
|
|
3413
3435
|
};
|
|
3414
3436
|
});
|
|
3415
|
-
function
|
|
3437
|
+
function qe(e, t) {
|
|
3416
3438
|
return e.issues.length && t === void 0 ? { issues: [], value: void 0 } : e;
|
|
3417
3439
|
}
|
|
3418
|
-
const
|
|
3440
|
+
const Pt = /* @__PURE__ */ d("$ZodOptional", (e, t) => {
|
|
3419
3441
|
z.init(e, t), e._zod.optin = "optional", e._zod.optout = "optional", v(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, void 0]) : void 0), v(e._zod, "pattern", () => {
|
|
3420
3442
|
const n = t.innerType._zod.pattern;
|
|
3421
|
-
return n ? new RegExp(`^(${
|
|
3443
|
+
return n ? new RegExp(`^(${$e(n.source)})?$`) : void 0;
|
|
3422
3444
|
}), e._zod.parse = (n, r) => {
|
|
3423
3445
|
if (t.innerType._zod.optin === "optional") {
|
|
3424
3446
|
const o = t.innerType._zod.run(n, r);
|
|
3425
|
-
return o instanceof Promise ? o.then((i) =>
|
|
3447
|
+
return o instanceof Promise ? o.then((i) => qe(i, n.value)) : qe(o, n.value);
|
|
3426
3448
|
}
|
|
3427
3449
|
return n.value === void 0 ? n : t.innerType._zod.run(n, r);
|
|
3428
3450
|
};
|
|
3429
|
-
}),
|
|
3430
|
-
|
|
3431
|
-
}),
|
|
3451
|
+
}), gi = /* @__PURE__ */ d("$ZodExactOptional", (e, t) => {
|
|
3452
|
+
Pt.init(e, t), v(e._zod, "values", () => t.innerType._zod.values), v(e._zod, "pattern", () => t.innerType._zod.pattern), e._zod.parse = (n, r) => t.innerType._zod.run(n, r);
|
|
3453
|
+
}), hi = /* @__PURE__ */ d("$ZodNullable", (e, t) => {
|
|
3432
3454
|
z.init(e, t), v(e._zod, "optin", () => t.innerType._zod.optin), v(e._zod, "optout", () => t.innerType._zod.optout), v(e._zod, "pattern", () => {
|
|
3433
3455
|
const n = t.innerType._zod.pattern;
|
|
3434
|
-
return n ? new RegExp(`^(${
|
|
3456
|
+
return n ? new RegExp(`^(${$e(n.source)}|null)$`) : void 0;
|
|
3435
3457
|
}), v(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, null]) : void 0), e._zod.parse = (n, r) => n.value === null ? n : t.innerType._zod.run(n, r);
|
|
3436
|
-
}),
|
|
3458
|
+
}), mi = /* @__PURE__ */ d("$ZodDefault", (e, t) => {
|
|
3437
3459
|
z.init(e, t), e._zod.optin = "optional", v(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, r) => {
|
|
3438
3460
|
if (r.direction === "backward")
|
|
3439
3461
|
return t.innerType._zod.run(n, r);
|
|
3440
3462
|
if (n.value === void 0)
|
|
3441
3463
|
return n.value = t.defaultValue, n;
|
|
3442
3464
|
const o = t.innerType._zod.run(n, r);
|
|
3443
|
-
return o instanceof Promise ? o.then((i) =>
|
|
3465
|
+
return o instanceof Promise ? o.then((i) => Ve(i, t)) : Ve(o, t);
|
|
3444
3466
|
};
|
|
3445
3467
|
});
|
|
3446
|
-
function
|
|
3468
|
+
function Ve(e, t) {
|
|
3447
3469
|
return e.value === void 0 && (e.value = t.defaultValue), e;
|
|
3448
3470
|
}
|
|
3449
|
-
const
|
|
3471
|
+
const _i = /* @__PURE__ */ d("$ZodPrefault", (e, t) => {
|
|
3450
3472
|
z.init(e, t), e._zod.optin = "optional", v(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, r) => (r.direction === "backward" || n.value === void 0 && (n.value = t.defaultValue), t.innerType._zod.run(n, r));
|
|
3451
|
-
}),
|
|
3473
|
+
}), yi = /* @__PURE__ */ d("$ZodNonOptional", (e, t) => {
|
|
3452
3474
|
z.init(e, t), v(e._zod, "values", () => {
|
|
3453
3475
|
const n = t.innerType._zod.values;
|
|
3454
3476
|
return n ? new Set([...n].filter((r) => r !== void 0)) : void 0;
|
|
3455
3477
|
}), e._zod.parse = (n, r) => {
|
|
3456
3478
|
const o = t.innerType._zod.run(n, r);
|
|
3457
|
-
return o instanceof Promise ? o.then((i) =>
|
|
3479
|
+
return o instanceof Promise ? o.then((i) => We(i, e)) : We(o, e);
|
|
3458
3480
|
};
|
|
3459
3481
|
});
|
|
3460
|
-
function
|
|
3482
|
+
function We(e, t) {
|
|
3461
3483
|
return !e.issues.length && e.value === void 0 && e.issues.push({
|
|
3462
3484
|
code: "invalid_type",
|
|
3463
3485
|
expected: "nonoptional",
|
|
@@ -3465,7 +3487,7 @@ function qe(e, t) {
|
|
|
3465
3487
|
inst: t
|
|
3466
3488
|
}), e;
|
|
3467
3489
|
}
|
|
3468
|
-
const
|
|
3490
|
+
const vi = /* @__PURE__ */ d("$ZodCatch", (e, t) => {
|
|
3469
3491
|
z.init(e, t), v(e._zod, "optin", () => t.innerType._zod.optin), v(e._zod, "optout", () => t.innerType._zod.optout), v(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, r) => {
|
|
3470
3492
|
if (r.direction === "backward")
|
|
3471
3493
|
return t.innerType._zod.run(n, r);
|
|
@@ -3484,7 +3506,7 @@ const gi = /* @__PURE__ */ d("$ZodCatch", (e, t) => {
|
|
|
3484
3506
|
input: n.value
|
|
3485
3507
|
}), n.issues = []), n);
|
|
3486
3508
|
};
|
|
3487
|
-
}),
|
|
3509
|
+
}), wi = /* @__PURE__ */ d("$ZodPipe", (e, t) => {
|
|
3488
3510
|
z.init(e, t), v(e._zod, "values", () => t.in._zod.values), v(e._zod, "optin", () => t.in._zod.optin), v(e._zod, "optout", () => t.out._zod.optout), v(e._zod, "propValues", () => t.in._zod.propValues), e._zod.parse = (n, r) => {
|
|
3489
3511
|
if (r.direction === "backward") {
|
|
3490
3512
|
const i = t.out._zod.run(n, r);
|
|
@@ -3497,26 +3519,26 @@ const gi = /* @__PURE__ */ d("$ZodCatch", (e, t) => {
|
|
|
3497
3519
|
function oe(e, t, n) {
|
|
3498
3520
|
return e.issues.length ? (e.aborted = !0, e) : t._zod.run({ value: e.value, issues: e.issues }, n);
|
|
3499
3521
|
}
|
|
3500
|
-
const
|
|
3522
|
+
const bi = /* @__PURE__ */ d("$ZodReadonly", (e, t) => {
|
|
3501
3523
|
z.init(e, t), v(e._zod, "propValues", () => t.innerType._zod.propValues), v(e._zod, "values", () => t.innerType._zod.values), v(e._zod, "optin", () => t.innerType?._zod?.optin), v(e._zod, "optout", () => t.innerType?._zod?.optout), e._zod.parse = (n, r) => {
|
|
3502
3524
|
if (r.direction === "backward")
|
|
3503
3525
|
return t.innerType._zod.run(n, r);
|
|
3504
3526
|
const o = t.innerType._zod.run(n, r);
|
|
3505
|
-
return o instanceof Promise ? o.then(
|
|
3527
|
+
return o instanceof Promise ? o.then(Ge) : Ge(o);
|
|
3506
3528
|
};
|
|
3507
3529
|
});
|
|
3508
|
-
function
|
|
3530
|
+
function Ge(e) {
|
|
3509
3531
|
return e.value = Object.freeze(e.value), e;
|
|
3510
3532
|
}
|
|
3511
|
-
const
|
|
3533
|
+
const ki = /* @__PURE__ */ d("$ZodCustom", (e, t) => {
|
|
3512
3534
|
A.init(e, t), z.init(e, t), e._zod.parse = (n, r) => n, e._zod.check = (n) => {
|
|
3513
3535
|
const r = n.value, o = t.fn(r);
|
|
3514
3536
|
if (o instanceof Promise)
|
|
3515
|
-
return o.then((i) =>
|
|
3516
|
-
|
|
3537
|
+
return o.then((i) => Be(i, n, r, e));
|
|
3538
|
+
Be(o, n, r, e);
|
|
3517
3539
|
};
|
|
3518
3540
|
});
|
|
3519
|
-
function
|
|
3541
|
+
function Be(e, t, n, r) {
|
|
3520
3542
|
if (!e) {
|
|
3521
3543
|
const o = {
|
|
3522
3544
|
code: "custom",
|
|
@@ -3531,8 +3553,8 @@ function We(e, t, n, r) {
|
|
|
3531
3553
|
r._zod.def.params && (o.params = r._zod.def.params), t.issues.push(ne(o));
|
|
3532
3554
|
}
|
|
3533
3555
|
}
|
|
3534
|
-
var
|
|
3535
|
-
class
|
|
3556
|
+
var Ke;
|
|
3557
|
+
class zi {
|
|
3536
3558
|
constructor() {
|
|
3537
3559
|
this._map = /* @__PURE__ */ new WeakMap(), this._idmap = /* @__PURE__ */ new Map();
|
|
3538
3560
|
}
|
|
@@ -3561,20 +3583,20 @@ class yi {
|
|
|
3561
3583
|
return this._map.has(t);
|
|
3562
3584
|
}
|
|
3563
3585
|
}
|
|
3564
|
-
function
|
|
3565
|
-
return new
|
|
3586
|
+
function Si() {
|
|
3587
|
+
return new zi();
|
|
3566
3588
|
}
|
|
3567
|
-
(
|
|
3589
|
+
(Ke = globalThis).__zod_globalRegistry ?? (Ke.__zod_globalRegistry = Si());
|
|
3568
3590
|
const ee = globalThis.__zod_globalRegistry;
|
|
3569
3591
|
// @__NO_SIDE_EFFECTS__
|
|
3570
|
-
function
|
|
3592
|
+
function $i(e, t) {
|
|
3571
3593
|
return new e({
|
|
3572
3594
|
type: "string",
|
|
3573
3595
|
...h(t)
|
|
3574
3596
|
});
|
|
3575
3597
|
}
|
|
3576
3598
|
// @__NO_SIDE_EFFECTS__
|
|
3577
|
-
function
|
|
3599
|
+
function Ei(e, t) {
|
|
3578
3600
|
return new e({
|
|
3579
3601
|
type: "string",
|
|
3580
3602
|
format: "email",
|
|
@@ -3584,7 +3606,7 @@ function bi(e, t) {
|
|
|
3584
3606
|
});
|
|
3585
3607
|
}
|
|
3586
3608
|
// @__NO_SIDE_EFFECTS__
|
|
3587
|
-
function
|
|
3609
|
+
function He(e, t) {
|
|
3588
3610
|
return new e({
|
|
3589
3611
|
type: "string",
|
|
3590
3612
|
format: "guid",
|
|
@@ -3594,7 +3616,7 @@ function Be(e, t) {
|
|
|
3594
3616
|
});
|
|
3595
3617
|
}
|
|
3596
3618
|
// @__NO_SIDE_EFFECTS__
|
|
3597
|
-
function
|
|
3619
|
+
function Ti(e, t) {
|
|
3598
3620
|
return new e({
|
|
3599
3621
|
type: "string",
|
|
3600
3622
|
format: "uuid",
|
|
@@ -3604,7 +3626,7 @@ function ki(e, t) {
|
|
|
3604
3626
|
});
|
|
3605
3627
|
}
|
|
3606
3628
|
// @__NO_SIDE_EFFECTS__
|
|
3607
|
-
function
|
|
3629
|
+
function Zi(e, t) {
|
|
3608
3630
|
return new e({
|
|
3609
3631
|
type: "string",
|
|
3610
3632
|
format: "uuid",
|
|
@@ -3615,7 +3637,7 @@ function zi(e, t) {
|
|
|
3615
3637
|
});
|
|
3616
3638
|
}
|
|
3617
3639
|
// @__NO_SIDE_EFFECTS__
|
|
3618
|
-
function
|
|
3640
|
+
function Oi(e, t) {
|
|
3619
3641
|
return new e({
|
|
3620
3642
|
type: "string",
|
|
3621
3643
|
format: "uuid",
|
|
@@ -3626,7 +3648,7 @@ function Si(e, t) {
|
|
|
3626
3648
|
});
|
|
3627
3649
|
}
|
|
3628
3650
|
// @__NO_SIDE_EFFECTS__
|
|
3629
|
-
function
|
|
3651
|
+
function Ii(e, t) {
|
|
3630
3652
|
return new e({
|
|
3631
3653
|
type: "string",
|
|
3632
3654
|
format: "uuid",
|
|
@@ -3637,7 +3659,7 @@ function $i(e, t) {
|
|
|
3637
3659
|
});
|
|
3638
3660
|
}
|
|
3639
3661
|
// @__NO_SIDE_EFFECTS__
|
|
3640
|
-
function
|
|
3662
|
+
function Ai(e, t) {
|
|
3641
3663
|
return new e({
|
|
3642
3664
|
type: "string",
|
|
3643
3665
|
format: "url",
|
|
@@ -3647,7 +3669,7 @@ function Ei(e, t) {
|
|
|
3647
3669
|
});
|
|
3648
3670
|
}
|
|
3649
3671
|
// @__NO_SIDE_EFFECTS__
|
|
3650
|
-
function
|
|
3672
|
+
function Pi(e, t) {
|
|
3651
3673
|
return new e({
|
|
3652
3674
|
type: "string",
|
|
3653
3675
|
format: "emoji",
|
|
@@ -3657,7 +3679,7 @@ function Ti(e, t) {
|
|
|
3657
3679
|
});
|
|
3658
3680
|
}
|
|
3659
3681
|
// @__NO_SIDE_EFFECTS__
|
|
3660
|
-
function
|
|
3682
|
+
function Ni(e, t) {
|
|
3661
3683
|
return new e({
|
|
3662
3684
|
type: "string",
|
|
3663
3685
|
format: "nanoid",
|
|
@@ -3667,7 +3689,7 @@ function Zi(e, t) {
|
|
|
3667
3689
|
});
|
|
3668
3690
|
}
|
|
3669
3691
|
// @__NO_SIDE_EFFECTS__
|
|
3670
|
-
function
|
|
3692
|
+
function Ci(e, t) {
|
|
3671
3693
|
return new e({
|
|
3672
3694
|
type: "string",
|
|
3673
3695
|
format: "cuid",
|
|
@@ -3677,7 +3699,7 @@ function Oi(e, t) {
|
|
|
3677
3699
|
});
|
|
3678
3700
|
}
|
|
3679
3701
|
// @__NO_SIDE_EFFECTS__
|
|
3680
|
-
function
|
|
3702
|
+
function Ri(e, t) {
|
|
3681
3703
|
return new e({
|
|
3682
3704
|
type: "string",
|
|
3683
3705
|
format: "cuid2",
|
|
@@ -3687,7 +3709,7 @@ function Ii(e, t) {
|
|
|
3687
3709
|
});
|
|
3688
3710
|
}
|
|
3689
3711
|
// @__NO_SIDE_EFFECTS__
|
|
3690
|
-
function
|
|
3712
|
+
function ji(e, t) {
|
|
3691
3713
|
return new e({
|
|
3692
3714
|
type: "string",
|
|
3693
3715
|
format: "ulid",
|
|
@@ -3697,7 +3719,7 @@ function Ai(e, t) {
|
|
|
3697
3719
|
});
|
|
3698
3720
|
}
|
|
3699
3721
|
// @__NO_SIDE_EFFECTS__
|
|
3700
|
-
function
|
|
3722
|
+
function Di(e, t) {
|
|
3701
3723
|
return new e({
|
|
3702
3724
|
type: "string",
|
|
3703
3725
|
format: "xid",
|
|
@@ -3707,7 +3729,7 @@ function Pi(e, t) {
|
|
|
3707
3729
|
});
|
|
3708
3730
|
}
|
|
3709
3731
|
// @__NO_SIDE_EFFECTS__
|
|
3710
|
-
function
|
|
3732
|
+
function Li(e, t) {
|
|
3711
3733
|
return new e({
|
|
3712
3734
|
type: "string",
|
|
3713
3735
|
format: "ksuid",
|
|
@@ -3717,7 +3739,7 @@ function Ni(e, t) {
|
|
|
3717
3739
|
});
|
|
3718
3740
|
}
|
|
3719
3741
|
// @__NO_SIDE_EFFECTS__
|
|
3720
|
-
function
|
|
3742
|
+
function Ui(e, t) {
|
|
3721
3743
|
return new e({
|
|
3722
3744
|
type: "string",
|
|
3723
3745
|
format: "ipv4",
|
|
@@ -3727,7 +3749,7 @@ function Ci(e, t) {
|
|
|
3727
3749
|
});
|
|
3728
3750
|
}
|
|
3729
3751
|
// @__NO_SIDE_EFFECTS__
|
|
3730
|
-
function
|
|
3752
|
+
function Mi(e, t) {
|
|
3731
3753
|
return new e({
|
|
3732
3754
|
type: "string",
|
|
3733
3755
|
format: "ipv6",
|
|
@@ -3737,7 +3759,7 @@ function Ri(e, t) {
|
|
|
3737
3759
|
});
|
|
3738
3760
|
}
|
|
3739
3761
|
// @__NO_SIDE_EFFECTS__
|
|
3740
|
-
function
|
|
3762
|
+
function xi(e, t) {
|
|
3741
3763
|
return new e({
|
|
3742
3764
|
type: "string",
|
|
3743
3765
|
format: "cidrv4",
|
|
@@ -3747,7 +3769,7 @@ function Di(e, t) {
|
|
|
3747
3769
|
});
|
|
3748
3770
|
}
|
|
3749
3771
|
// @__NO_SIDE_EFFECTS__
|
|
3750
|
-
function
|
|
3772
|
+
function Fi(e, t) {
|
|
3751
3773
|
return new e({
|
|
3752
3774
|
type: "string",
|
|
3753
3775
|
format: "cidrv6",
|
|
@@ -3757,7 +3779,7 @@ function ji(e, t) {
|
|
|
3757
3779
|
});
|
|
3758
3780
|
}
|
|
3759
3781
|
// @__NO_SIDE_EFFECTS__
|
|
3760
|
-
function
|
|
3782
|
+
function Ji(e, t) {
|
|
3761
3783
|
return new e({
|
|
3762
3784
|
type: "string",
|
|
3763
3785
|
format: "base64",
|
|
@@ -3767,7 +3789,7 @@ function Li(e, t) {
|
|
|
3767
3789
|
});
|
|
3768
3790
|
}
|
|
3769
3791
|
// @__NO_SIDE_EFFECTS__
|
|
3770
|
-
function
|
|
3792
|
+
function qi(e, t) {
|
|
3771
3793
|
return new e({
|
|
3772
3794
|
type: "string",
|
|
3773
3795
|
format: "base64url",
|
|
@@ -3777,7 +3799,7 @@ function Ui(e, t) {
|
|
|
3777
3799
|
});
|
|
3778
3800
|
}
|
|
3779
3801
|
// @__NO_SIDE_EFFECTS__
|
|
3780
|
-
function
|
|
3802
|
+
function Vi(e, t) {
|
|
3781
3803
|
return new e({
|
|
3782
3804
|
type: "string",
|
|
3783
3805
|
format: "e164",
|
|
@@ -3787,7 +3809,7 @@ function Mi(e, t) {
|
|
|
3787
3809
|
});
|
|
3788
3810
|
}
|
|
3789
3811
|
// @__NO_SIDE_EFFECTS__
|
|
3790
|
-
function
|
|
3812
|
+
function Wi(e, t) {
|
|
3791
3813
|
return new e({
|
|
3792
3814
|
type: "string",
|
|
3793
3815
|
format: "jwt",
|
|
@@ -3797,7 +3819,7 @@ function xi(e, t) {
|
|
|
3797
3819
|
});
|
|
3798
3820
|
}
|
|
3799
3821
|
// @__NO_SIDE_EFFECTS__
|
|
3800
|
-
function
|
|
3822
|
+
function Gi(e, t) {
|
|
3801
3823
|
return new e({
|
|
3802
3824
|
type: "string",
|
|
3803
3825
|
format: "datetime",
|
|
@@ -3809,7 +3831,7 @@ function Fi(e, t) {
|
|
|
3809
3831
|
});
|
|
3810
3832
|
}
|
|
3811
3833
|
// @__NO_SIDE_EFFECTS__
|
|
3812
|
-
function
|
|
3834
|
+
function Bi(e, t) {
|
|
3813
3835
|
return new e({
|
|
3814
3836
|
type: "string",
|
|
3815
3837
|
format: "date",
|
|
@@ -3818,7 +3840,7 @@ function Ji(e, t) {
|
|
|
3818
3840
|
});
|
|
3819
3841
|
}
|
|
3820
3842
|
// @__NO_SIDE_EFFECTS__
|
|
3821
|
-
function
|
|
3843
|
+
function Ki(e, t) {
|
|
3822
3844
|
return new e({
|
|
3823
3845
|
type: "string",
|
|
3824
3846
|
format: "time",
|
|
@@ -3828,7 +3850,7 @@ function qi(e, t) {
|
|
|
3828
3850
|
});
|
|
3829
3851
|
}
|
|
3830
3852
|
// @__NO_SIDE_EFFECTS__
|
|
3831
|
-
function
|
|
3853
|
+
function Hi(e, t) {
|
|
3832
3854
|
return new e({
|
|
3833
3855
|
type: "string",
|
|
3834
3856
|
format: "duration",
|
|
@@ -3837,7 +3859,7 @@ function Vi(e, t) {
|
|
|
3837
3859
|
});
|
|
3838
3860
|
}
|
|
3839
3861
|
// @__NO_SIDE_EFFECTS__
|
|
3840
|
-
function
|
|
3862
|
+
function Yi(e, t) {
|
|
3841
3863
|
return new e({
|
|
3842
3864
|
type: "number",
|
|
3843
3865
|
checks: [],
|
|
@@ -3845,7 +3867,7 @@ function Wi(e, t) {
|
|
|
3845
3867
|
});
|
|
3846
3868
|
}
|
|
3847
3869
|
// @__NO_SIDE_EFFECTS__
|
|
3848
|
-
function
|
|
3870
|
+
function Xi(e, t) {
|
|
3849
3871
|
return new e({
|
|
3850
3872
|
type: "number",
|
|
3851
3873
|
check: "number_format",
|
|
@@ -3855,28 +3877,28 @@ function Gi(e, t) {
|
|
|
3855
3877
|
});
|
|
3856
3878
|
}
|
|
3857
3879
|
// @__NO_SIDE_EFFECTS__
|
|
3858
|
-
function
|
|
3880
|
+
function Qi(e, t) {
|
|
3859
3881
|
return new e({
|
|
3860
3882
|
type: "boolean",
|
|
3861
3883
|
...h(t)
|
|
3862
3884
|
});
|
|
3863
3885
|
}
|
|
3864
3886
|
// @__NO_SIDE_EFFECTS__
|
|
3865
|
-
function
|
|
3887
|
+
function es(e) {
|
|
3866
3888
|
return new e({
|
|
3867
3889
|
type: "unknown"
|
|
3868
3890
|
});
|
|
3869
3891
|
}
|
|
3870
3892
|
// @__NO_SIDE_EFFECTS__
|
|
3871
|
-
function
|
|
3893
|
+
function ts(e, t) {
|
|
3872
3894
|
return new e({
|
|
3873
3895
|
type: "never",
|
|
3874
3896
|
...h(t)
|
|
3875
3897
|
});
|
|
3876
3898
|
}
|
|
3877
3899
|
// @__NO_SIDE_EFFECTS__
|
|
3878
|
-
function
|
|
3879
|
-
return new
|
|
3900
|
+
function Ye(e, t) {
|
|
3901
|
+
return new Et({
|
|
3880
3902
|
check: "less_than",
|
|
3881
3903
|
...h(t),
|
|
3882
3904
|
value: e,
|
|
@@ -3884,8 +3906,8 @@ function He(e, t) {
|
|
|
3884
3906
|
});
|
|
3885
3907
|
}
|
|
3886
3908
|
// @__NO_SIDE_EFFECTS__
|
|
3887
|
-
function
|
|
3888
|
-
return new
|
|
3909
|
+
function ge(e, t) {
|
|
3910
|
+
return new Et({
|
|
3889
3911
|
check: "less_than",
|
|
3890
3912
|
...h(t),
|
|
3891
3913
|
value: e,
|
|
@@ -3893,8 +3915,8 @@ function pe(e, t) {
|
|
|
3893
3915
|
});
|
|
3894
3916
|
}
|
|
3895
3917
|
// @__NO_SIDE_EFFECTS__
|
|
3896
|
-
function
|
|
3897
|
-
return new
|
|
3918
|
+
function Xe(e, t) {
|
|
3919
|
+
return new Tt({
|
|
3898
3920
|
check: "greater_than",
|
|
3899
3921
|
...h(t),
|
|
3900
3922
|
value: e,
|
|
@@ -3902,8 +3924,8 @@ function Ke(e, t) {
|
|
|
3902
3924
|
});
|
|
3903
3925
|
}
|
|
3904
3926
|
// @__NO_SIDE_EFFECTS__
|
|
3905
|
-
function
|
|
3906
|
-
return new
|
|
3927
|
+
function he(e, t) {
|
|
3928
|
+
return new Tt({
|
|
3907
3929
|
check: "greater_than",
|
|
3908
3930
|
...h(t),
|
|
3909
3931
|
value: e,
|
|
@@ -3911,16 +3933,16 @@ function ge(e, t) {
|
|
|
3911
3933
|
});
|
|
3912
3934
|
}
|
|
3913
3935
|
// @__NO_SIDE_EFFECTS__
|
|
3914
|
-
function
|
|
3915
|
-
return new
|
|
3936
|
+
function Qe(e, t) {
|
|
3937
|
+
return new mo({
|
|
3916
3938
|
check: "multiple_of",
|
|
3917
3939
|
...h(t),
|
|
3918
3940
|
value: e
|
|
3919
3941
|
});
|
|
3920
3942
|
}
|
|
3921
3943
|
// @__NO_SIDE_EFFECTS__
|
|
3922
|
-
function
|
|
3923
|
-
return new
|
|
3944
|
+
function Nt(e, t) {
|
|
3945
|
+
return new yo({
|
|
3924
3946
|
check: "max_length",
|
|
3925
3947
|
...h(t),
|
|
3926
3948
|
maximum: e
|
|
@@ -3928,23 +3950,23 @@ function At(e, t) {
|
|
|
3928
3950
|
}
|
|
3929
3951
|
// @__NO_SIDE_EFFECTS__
|
|
3930
3952
|
function ce(e, t) {
|
|
3931
|
-
return new
|
|
3953
|
+
return new vo({
|
|
3932
3954
|
check: "min_length",
|
|
3933
3955
|
...h(t),
|
|
3934
3956
|
minimum: e
|
|
3935
3957
|
});
|
|
3936
3958
|
}
|
|
3937
3959
|
// @__NO_SIDE_EFFECTS__
|
|
3938
|
-
function
|
|
3939
|
-
return new
|
|
3960
|
+
function Ct(e, t) {
|
|
3961
|
+
return new wo({
|
|
3940
3962
|
check: "length_equals",
|
|
3941
3963
|
...h(t),
|
|
3942
3964
|
length: e
|
|
3943
3965
|
});
|
|
3944
3966
|
}
|
|
3945
3967
|
// @__NO_SIDE_EFFECTS__
|
|
3946
|
-
function
|
|
3947
|
-
return new
|
|
3968
|
+
function ns(e, t) {
|
|
3969
|
+
return new bo({
|
|
3948
3970
|
check: "string_format",
|
|
3949
3971
|
format: "regex",
|
|
3950
3972
|
...h(t),
|
|
@@ -3952,24 +3974,24 @@ function Yi(e, t) {
|
|
|
3952
3974
|
});
|
|
3953
3975
|
}
|
|
3954
3976
|
// @__NO_SIDE_EFFECTS__
|
|
3955
|
-
function
|
|
3956
|
-
return new
|
|
3977
|
+
function rs(e) {
|
|
3978
|
+
return new ko({
|
|
3957
3979
|
check: "string_format",
|
|
3958
3980
|
format: "lowercase",
|
|
3959
3981
|
...h(e)
|
|
3960
3982
|
});
|
|
3961
3983
|
}
|
|
3962
3984
|
// @__NO_SIDE_EFFECTS__
|
|
3963
|
-
function
|
|
3964
|
-
return new
|
|
3985
|
+
function os(e) {
|
|
3986
|
+
return new zo({
|
|
3965
3987
|
check: "string_format",
|
|
3966
3988
|
format: "uppercase",
|
|
3967
3989
|
...h(e)
|
|
3968
3990
|
});
|
|
3969
3991
|
}
|
|
3970
3992
|
// @__NO_SIDE_EFFECTS__
|
|
3971
|
-
function
|
|
3972
|
-
return new
|
|
3993
|
+
function is(e, t) {
|
|
3994
|
+
return new So({
|
|
3973
3995
|
check: "string_format",
|
|
3974
3996
|
format: "includes",
|
|
3975
3997
|
...h(t),
|
|
@@ -3977,8 +3999,8 @@ function es(e, t) {
|
|
|
3977
3999
|
});
|
|
3978
4000
|
}
|
|
3979
4001
|
// @__NO_SIDE_EFFECTS__
|
|
3980
|
-
function
|
|
3981
|
-
return new
|
|
4002
|
+
function ss(e, t) {
|
|
4003
|
+
return new $o({
|
|
3982
4004
|
check: "string_format",
|
|
3983
4005
|
format: "starts_with",
|
|
3984
4006
|
...h(t),
|
|
@@ -3986,8 +4008,8 @@ function ts(e, t) {
|
|
|
3986
4008
|
});
|
|
3987
4009
|
}
|
|
3988
4010
|
// @__NO_SIDE_EFFECTS__
|
|
3989
|
-
function
|
|
3990
|
-
return new
|
|
4011
|
+
function as(e, t) {
|
|
4012
|
+
return new Eo({
|
|
3991
4013
|
check: "string_format",
|
|
3992
4014
|
format: "ends_with",
|
|
3993
4015
|
...h(t),
|
|
@@ -3995,34 +4017,34 @@ function ns(e, t) {
|
|
|
3995
4017
|
});
|
|
3996
4018
|
}
|
|
3997
4019
|
// @__NO_SIDE_EFFECTS__
|
|
3998
|
-
function
|
|
3999
|
-
return new
|
|
4020
|
+
function H(e) {
|
|
4021
|
+
return new To({
|
|
4000
4022
|
check: "overwrite",
|
|
4001
4023
|
tx: e
|
|
4002
4024
|
});
|
|
4003
4025
|
}
|
|
4004
4026
|
// @__NO_SIDE_EFFECTS__
|
|
4005
|
-
function
|
|
4006
|
-
return /* @__PURE__ */
|
|
4027
|
+
function cs(e) {
|
|
4028
|
+
return /* @__PURE__ */ H((t) => t.normalize(e));
|
|
4007
4029
|
}
|
|
4008
4030
|
// @__NO_SIDE_EFFECTS__
|
|
4009
|
-
function
|
|
4010
|
-
return /* @__PURE__ */
|
|
4031
|
+
function us() {
|
|
4032
|
+
return /* @__PURE__ */ H((e) => e.trim());
|
|
4011
4033
|
}
|
|
4012
4034
|
// @__NO_SIDE_EFFECTS__
|
|
4013
|
-
function
|
|
4014
|
-
return /* @__PURE__ */
|
|
4035
|
+
function ds() {
|
|
4036
|
+
return /* @__PURE__ */ H((e) => e.toLowerCase());
|
|
4015
4037
|
}
|
|
4016
4038
|
// @__NO_SIDE_EFFECTS__
|
|
4017
|
-
function
|
|
4018
|
-
return /* @__PURE__ */
|
|
4039
|
+
function ls() {
|
|
4040
|
+
return /* @__PURE__ */ H((e) => e.toUpperCase());
|
|
4019
4041
|
}
|
|
4020
4042
|
// @__NO_SIDE_EFFECTS__
|
|
4021
|
-
function
|
|
4022
|
-
return /* @__PURE__ */
|
|
4043
|
+
function fs() {
|
|
4044
|
+
return /* @__PURE__ */ H((e) => wr(e));
|
|
4023
4045
|
}
|
|
4024
4046
|
// @__NO_SIDE_EFFECTS__
|
|
4025
|
-
function
|
|
4047
|
+
function ps(e, t, n) {
|
|
4026
4048
|
return new e({
|
|
4027
4049
|
type: "array",
|
|
4028
4050
|
element: t,
|
|
@@ -4033,7 +4055,7 @@ function cs(e, t, n) {
|
|
|
4033
4055
|
});
|
|
4034
4056
|
}
|
|
4035
4057
|
// @__NO_SIDE_EFFECTS__
|
|
4036
|
-
function
|
|
4058
|
+
function gs(e, t, n) {
|
|
4037
4059
|
return new e({
|
|
4038
4060
|
type: "custom",
|
|
4039
4061
|
check: "custom",
|
|
@@ -4042,8 +4064,8 @@ function us(e, t, n) {
|
|
|
4042
4064
|
});
|
|
4043
4065
|
}
|
|
4044
4066
|
// @__NO_SIDE_EFFECTS__
|
|
4045
|
-
function
|
|
4046
|
-
const t = /* @__PURE__ */
|
|
4067
|
+
function hs(e) {
|
|
4068
|
+
const t = /* @__PURE__ */ ms((n) => (n.addIssue = (r) => {
|
|
4047
4069
|
if (typeof r == "string")
|
|
4048
4070
|
n.issues.push(ne(r, n.value, t._zod.def));
|
|
4049
4071
|
else {
|
|
@@ -4054,14 +4076,14 @@ function ds(e) {
|
|
|
4054
4076
|
return t;
|
|
4055
4077
|
}
|
|
4056
4078
|
// @__NO_SIDE_EFFECTS__
|
|
4057
|
-
function
|
|
4079
|
+
function ms(e, t) {
|
|
4058
4080
|
const n = new A({
|
|
4059
4081
|
check: "custom",
|
|
4060
4082
|
...h(t)
|
|
4061
4083
|
});
|
|
4062
4084
|
return n._zod.check = e, n;
|
|
4063
4085
|
}
|
|
4064
|
-
function
|
|
4086
|
+
function Rt(e) {
|
|
4065
4087
|
let t = e?.target ?? "draft-2020-12";
|
|
4066
4088
|
return t === "draft-4" && (t = "draft-04"), t === "draft-7" && (t = "draft-07"), {
|
|
4067
4089
|
processors: e.processors ?? {},
|
|
@@ -4106,9 +4128,9 @@ function E(e, t, n = { path: [], schemaPath: [] }) {
|
|
|
4106
4128
|
f && (s.ref || (s.ref = f), E(f, t, l), t.seen.get(f).isParent = !0);
|
|
4107
4129
|
}
|
|
4108
4130
|
const c = t.metadataRegistry.get(e);
|
|
4109
|
-
return c && Object.assign(s.schema, c), t.io === "input" &&
|
|
4131
|
+
return c && Object.assign(s.schema, c), t.io === "input" && O(e) && (delete s.schema.examples, delete s.schema.default), t.io === "input" && s.schema._prefault && ((r = s.schema).default ?? (r.default = s.schema._prefault)), delete s.schema._prefault, t.seen.get(e).schema;
|
|
4110
4132
|
}
|
|
4111
|
-
function
|
|
4133
|
+
function jt(e, t) {
|
|
4112
4134
|
const n = e.seen.get(t);
|
|
4113
4135
|
if (!n)
|
|
4114
4136
|
throw new Error("Unprocessed schema. This is a bug in Zod.");
|
|
@@ -4180,7 +4202,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
4180
4202
|
}
|
|
4181
4203
|
}
|
|
4182
4204
|
}
|
|
4183
|
-
function
|
|
4205
|
+
function Dt(e, t) {
|
|
4184
4206
|
const n = e.seen.get(t);
|
|
4185
4207
|
if (!n)
|
|
4186
4208
|
throw new Error("Unprocessed schema. This is a bug in Zod.");
|
|
@@ -4246,7 +4268,7 @@ function Rt(e, t) {
|
|
|
4246
4268
|
throw new Error("Error converting schema to JSON.");
|
|
4247
4269
|
}
|
|
4248
4270
|
}
|
|
4249
|
-
function
|
|
4271
|
+
function O(e, t) {
|
|
4250
4272
|
const n = t ?? { seen: /* @__PURE__ */ new Set() };
|
|
4251
4273
|
if (n.seen.has(e))
|
|
4252
4274
|
return !1;
|
|
@@ -4255,57 +4277,57 @@ function Z(e, t) {
|
|
|
4255
4277
|
if (r.type === "transform")
|
|
4256
4278
|
return !0;
|
|
4257
4279
|
if (r.type === "array")
|
|
4258
|
-
return
|
|
4280
|
+
return O(r.element, n);
|
|
4259
4281
|
if (r.type === "set")
|
|
4260
|
-
return
|
|
4282
|
+
return O(r.valueType, n);
|
|
4261
4283
|
if (r.type === "lazy")
|
|
4262
|
-
return
|
|
4284
|
+
return O(r.getter(), n);
|
|
4263
4285
|
if (r.type === "promise" || r.type === "optional" || r.type === "nonoptional" || r.type === "nullable" || r.type === "readonly" || r.type === "default" || r.type === "prefault")
|
|
4264
|
-
return
|
|
4286
|
+
return O(r.innerType, n);
|
|
4265
4287
|
if (r.type === "intersection")
|
|
4266
|
-
return
|
|
4288
|
+
return O(r.left, n) || O(r.right, n);
|
|
4267
4289
|
if (r.type === "record" || r.type === "map")
|
|
4268
|
-
return
|
|
4290
|
+
return O(r.keyType, n) || O(r.valueType, n);
|
|
4269
4291
|
if (r.type === "pipe")
|
|
4270
|
-
return
|
|
4292
|
+
return O(r.in, n) || O(r.out, n);
|
|
4271
4293
|
if (r.type === "object") {
|
|
4272
4294
|
for (const o in r.shape)
|
|
4273
|
-
if (
|
|
4295
|
+
if (O(r.shape[o], n))
|
|
4274
4296
|
return !0;
|
|
4275
4297
|
return !1;
|
|
4276
4298
|
}
|
|
4277
4299
|
if (r.type === "union") {
|
|
4278
4300
|
for (const o of r.options)
|
|
4279
|
-
if (
|
|
4301
|
+
if (O(o, n))
|
|
4280
4302
|
return !0;
|
|
4281
4303
|
return !1;
|
|
4282
4304
|
}
|
|
4283
4305
|
if (r.type === "tuple") {
|
|
4284
4306
|
for (const o of r.items)
|
|
4285
|
-
if (
|
|
4307
|
+
if (O(o, n))
|
|
4286
4308
|
return !0;
|
|
4287
|
-
return !!(r.rest &&
|
|
4309
|
+
return !!(r.rest && O(r.rest, n));
|
|
4288
4310
|
}
|
|
4289
4311
|
return !1;
|
|
4290
4312
|
}
|
|
4291
|
-
const
|
|
4292
|
-
const r =
|
|
4293
|
-
return E(e, r),
|
|
4313
|
+
const _s = (e, t = {}) => (n) => {
|
|
4314
|
+
const r = Rt({ ...n, processors: t });
|
|
4315
|
+
return E(e, r), jt(r, e), Dt(r, e);
|
|
4294
4316
|
}, ue = (e, t, n = {}) => (r) => {
|
|
4295
|
-
const { libraryOptions: o, target: i } = r ?? {}, s =
|
|
4296
|
-
return E(e, s),
|
|
4297
|
-
},
|
|
4317
|
+
const { libraryOptions: o, target: i } = r ?? {}, s = Rt({ ...o ?? {}, target: i, io: t, processors: n });
|
|
4318
|
+
return E(e, s), jt(s, e), Dt(s, e);
|
|
4319
|
+
}, ys = {
|
|
4298
4320
|
guid: "uuid",
|
|
4299
4321
|
url: "uri",
|
|
4300
4322
|
datetime: "date-time",
|
|
4301
4323
|
json_string: "json-string",
|
|
4302
4324
|
regex: ""
|
|
4303
4325
|
// do not set
|
|
4304
|
-
},
|
|
4326
|
+
}, vs = (e, t, n, r) => {
|
|
4305
4327
|
const o = n;
|
|
4306
4328
|
o.type = "string";
|
|
4307
4329
|
const { minimum: i, maximum: s, format: a, patterns: c, contentEncoding: u } = e._zod.bag;
|
|
4308
|
-
if (typeof i == "number" && (o.minLength = i), typeof s == "number" && (o.maxLength = s), a && (o.format =
|
|
4330
|
+
if (typeof i == "number" && (o.minLength = i), typeof s == "number" && (o.maxLength = s), a && (o.format = ys[a] ?? a, o.format === "" && delete o.format, a === "time" && delete o.format), u && (o.contentEncoding = u), c && c.size > 0) {
|
|
4309
4331
|
const l = [...c];
|
|
4310
4332
|
l.length === 1 ? o.pattern = l[0].source : l.length > 1 && (o.allOf = [
|
|
4311
4333
|
...l.map((f) => ({
|
|
@@ -4314,18 +4336,18 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4314
4336
|
}))
|
|
4315
4337
|
]);
|
|
4316
4338
|
}
|
|
4317
|
-
},
|
|
4339
|
+
}, ws = (e, t, n, r) => {
|
|
4318
4340
|
const o = n, { minimum: i, maximum: s, format: a, multipleOf: c, exclusiveMaximum: u, exclusiveMinimum: l } = e._zod.bag;
|
|
4319
4341
|
typeof a == "string" && a.includes("int") ? o.type = "integer" : o.type = "number", typeof l == "number" && (t.target === "draft-04" || t.target === "openapi-3.0" ? (o.minimum = l, o.exclusiveMinimum = !0) : o.exclusiveMinimum = l), typeof i == "number" && (o.minimum = i, typeof l == "number" && t.target !== "draft-04" && (l >= i ? delete o.minimum : delete o.exclusiveMinimum)), typeof u == "number" && (t.target === "draft-04" || t.target === "openapi-3.0" ? (o.maximum = u, o.exclusiveMaximum = !0) : o.exclusiveMaximum = u), typeof s == "number" && (o.maximum = s, typeof u == "number" && t.target !== "draft-04" && (u <= s ? delete o.maximum : delete o.exclusiveMaximum)), typeof c == "number" && (o.multipleOf = c);
|
|
4320
|
-
},
|
|
4342
|
+
}, bs = (e, t, n, r) => {
|
|
4321
4343
|
n.type = "boolean";
|
|
4322
|
-
},
|
|
4344
|
+
}, ks = (e, t, n, r) => {
|
|
4323
4345
|
n.not = {};
|
|
4324
|
-
},
|
|
4325
|
-
},
|
|
4326
|
-
const o = e._zod.def, i =
|
|
4346
|
+
}, zs = (e, t, n, r) => {
|
|
4347
|
+
}, Ss = (e, t, n, r) => {
|
|
4348
|
+
const o = e._zod.def, i = ht(o.entries);
|
|
4327
4349
|
i.every((s) => typeof s == "number") && (n.type = "number"), i.every((s) => typeof s == "string") && (n.type = "string"), n.enum = i;
|
|
4328
|
-
},
|
|
4350
|
+
}, $s = (e, t, n, r) => {
|
|
4329
4351
|
const o = e._zod.def, i = [];
|
|
4330
4352
|
for (const s of o.values)
|
|
4331
4353
|
if (s === void 0) {
|
|
@@ -4342,16 +4364,16 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4342
4364
|
n.type = s === null ? "null" : typeof s, t.target === "draft-04" || t.target === "openapi-3.0" ? n.enum = [s] : n.const = s;
|
|
4343
4365
|
} else
|
|
4344
4366
|
i.every((s) => typeof s == "number") && (n.type = "number"), i.every((s) => typeof s == "string") && (n.type = "string"), i.every((s) => typeof s == "boolean") && (n.type = "boolean"), i.every((s) => s === null) && (n.type = "null"), n.enum = i;
|
|
4345
|
-
},
|
|
4367
|
+
}, Es = (e, t, n, r) => {
|
|
4346
4368
|
if (t.unrepresentable === "throw")
|
|
4347
4369
|
throw new Error("Custom types cannot be represented in JSON Schema");
|
|
4348
|
-
},
|
|
4370
|
+
}, Ts = (e, t, n, r) => {
|
|
4349
4371
|
if (t.unrepresentable === "throw")
|
|
4350
4372
|
throw new Error("Transforms cannot be represented in JSON Schema");
|
|
4351
|
-
},
|
|
4373
|
+
}, Zs = (e, t, n, r) => {
|
|
4352
4374
|
const o = n, i = e._zod.def, { minimum: s, maximum: a } = e._zod.bag;
|
|
4353
4375
|
typeof s == "number" && (o.minItems = s), typeof a == "number" && (o.maxItems = a), o.type = "array", o.items = E(i.element, t, { ...r, path: [...r.path, "items"] });
|
|
4354
|
-
},
|
|
4376
|
+
}, Os = (e, t, n, r) => {
|
|
4355
4377
|
const o = n, i = e._zod.def;
|
|
4356
4378
|
o.type = "object", o.properties = {};
|
|
4357
4379
|
const s = i.shape;
|
|
@@ -4368,13 +4390,13 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4368
4390
|
...r,
|
|
4369
4391
|
path: [...r.path, "additionalProperties"]
|
|
4370
4392
|
})) : t.io === "output" && (o.additionalProperties = !1);
|
|
4371
|
-
},
|
|
4393
|
+
}, Is = (e, t, n, r) => {
|
|
4372
4394
|
const o = e._zod.def, i = o.inclusive === !1, s = o.options.map((a, c) => E(a, t, {
|
|
4373
4395
|
...r,
|
|
4374
4396
|
path: [...r.path, i ? "oneOf" : "anyOf", c]
|
|
4375
4397
|
}));
|
|
4376
4398
|
i ? n.oneOf = s : n.anyOf = s;
|
|
4377
|
-
},
|
|
4399
|
+
}, As = (e, t, n, r) => {
|
|
4378
4400
|
const o = e._zod.def, i = E(o.left, t, {
|
|
4379
4401
|
...r,
|
|
4380
4402
|
path: [...r.path, "allOf", 0]
|
|
@@ -4386,7 +4408,7 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4386
4408
|
...a(s) ? s.allOf : [s]
|
|
4387
4409
|
];
|
|
4388
4410
|
n.allOf = c;
|
|
4389
|
-
},
|
|
4411
|
+
}, Ps = (e, t, n, r) => {
|
|
4390
4412
|
const o = n, i = e._zod.def;
|
|
4391
4413
|
o.type = "object";
|
|
4392
4414
|
const s = i.keyType, c = s._zod.bag?.patterns;
|
|
@@ -4411,25 +4433,25 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4411
4433
|
const l = [...u].filter((f) => typeof f == "string" || typeof f == "number");
|
|
4412
4434
|
l.length > 0 && (o.required = l);
|
|
4413
4435
|
}
|
|
4414
|
-
},
|
|
4436
|
+
}, Ns = (e, t, n, r) => {
|
|
4415
4437
|
const o = e._zod.def, i = E(o.innerType, t, r), s = t.seen.get(e);
|
|
4416
4438
|
t.target === "openapi-3.0" ? (s.ref = o.innerType, n.nullable = !0) : n.anyOf = [i, { type: "null" }];
|
|
4417
|
-
},
|
|
4439
|
+
}, Cs = (e, t, n, r) => {
|
|
4418
4440
|
const o = e._zod.def;
|
|
4419
4441
|
E(o.innerType, t, r);
|
|
4420
4442
|
const i = t.seen.get(e);
|
|
4421
4443
|
i.ref = o.innerType;
|
|
4422
|
-
},
|
|
4444
|
+
}, Rs = (e, t, n, r) => {
|
|
4423
4445
|
const o = e._zod.def;
|
|
4424
4446
|
E(o.innerType, t, r);
|
|
4425
4447
|
const i = t.seen.get(e);
|
|
4426
4448
|
i.ref = o.innerType, n.default = JSON.parse(JSON.stringify(o.defaultValue));
|
|
4427
|
-
},
|
|
4449
|
+
}, js = (e, t, n, r) => {
|
|
4428
4450
|
const o = e._zod.def;
|
|
4429
4451
|
E(o.innerType, t, r);
|
|
4430
4452
|
const i = t.seen.get(e);
|
|
4431
4453
|
i.ref = o.innerType, t.io === "input" && (n._prefault = JSON.parse(JSON.stringify(o.defaultValue)));
|
|
4432
|
-
},
|
|
4454
|
+
}, Ds = (e, t, n, r) => {
|
|
4433
4455
|
const o = e._zod.def;
|
|
4434
4456
|
E(o.innerType, t, r);
|
|
4435
4457
|
const i = t.seen.get(e);
|
|
@@ -4441,64 +4463,64 @@ const fs = (e, t = {}) => (n) => {
|
|
|
4441
4463
|
throw new Error("Dynamic catch values are not supported in JSON Schema");
|
|
4442
4464
|
}
|
|
4443
4465
|
n.default = s;
|
|
4444
|
-
},
|
|
4466
|
+
}, Ls = (e, t, n, r) => {
|
|
4445
4467
|
const o = e._zod.def, i = t.io === "input" ? o.in._zod.def.type === "transform" ? o.out : o.in : o.out;
|
|
4446
4468
|
E(i, t, r);
|
|
4447
4469
|
const s = t.seen.get(e);
|
|
4448
4470
|
s.ref = i;
|
|
4449
|
-
},
|
|
4471
|
+
}, Us = (e, t, n, r) => {
|
|
4450
4472
|
const o = e._zod.def;
|
|
4451
4473
|
E(o.innerType, t, r);
|
|
4452
4474
|
const i = t.seen.get(e);
|
|
4453
4475
|
i.ref = o.innerType, n.readOnly = !0;
|
|
4454
|
-
},
|
|
4476
|
+
}, Lt = (e, t, n, r) => {
|
|
4455
4477
|
const o = e._zod.def;
|
|
4456
4478
|
E(o.innerType, t, r);
|
|
4457
4479
|
const i = t.seen.get(e);
|
|
4458
4480
|
i.ref = o.innerType;
|
|
4459
|
-
},
|
|
4460
|
-
|
|
4481
|
+
}, Ms = /* @__PURE__ */ d("ZodISODateTime", (e, t) => {
|
|
4482
|
+
xo.init(e, t), $.init(e, t);
|
|
4461
4483
|
});
|
|
4462
|
-
function
|
|
4463
|
-
return /* @__PURE__ */
|
|
4484
|
+
function xs(e) {
|
|
4485
|
+
return /* @__PURE__ */ Gi(Ms, e);
|
|
4464
4486
|
}
|
|
4465
|
-
const
|
|
4466
|
-
|
|
4487
|
+
const Fs = /* @__PURE__ */ d("ZodISODate", (e, t) => {
|
|
4488
|
+
Fo.init(e, t), $.init(e, t);
|
|
4467
4489
|
});
|
|
4468
|
-
function
|
|
4469
|
-
return /* @__PURE__ */
|
|
4490
|
+
function Js(e) {
|
|
4491
|
+
return /* @__PURE__ */ Bi(Fs, e);
|
|
4470
4492
|
}
|
|
4471
|
-
const
|
|
4472
|
-
|
|
4493
|
+
const qs = /* @__PURE__ */ d("ZodISOTime", (e, t) => {
|
|
4494
|
+
Jo.init(e, t), $.init(e, t);
|
|
4473
4495
|
});
|
|
4474
|
-
function
|
|
4475
|
-
return /* @__PURE__ */
|
|
4496
|
+
function Vs(e) {
|
|
4497
|
+
return /* @__PURE__ */ Ki(qs, e);
|
|
4476
4498
|
}
|
|
4477
|
-
const
|
|
4478
|
-
|
|
4499
|
+
const Ws = /* @__PURE__ */ d("ZodISODuration", (e, t) => {
|
|
4500
|
+
qo.init(e, t), $.init(e, t);
|
|
4479
4501
|
});
|
|
4480
|
-
function
|
|
4481
|
-
return /* @__PURE__ */
|
|
4502
|
+
function Gs(e) {
|
|
4503
|
+
return /* @__PURE__ */ Hi(Ws, e);
|
|
4482
4504
|
}
|
|
4483
|
-
const
|
|
4484
|
-
|
|
4505
|
+
const Bs = (e, t) => {
|
|
4506
|
+
vt.init(e, t), e.name = "ZodError", Object.defineProperties(e, {
|
|
4485
4507
|
format: {
|
|
4486
|
-
value: (n) =>
|
|
4508
|
+
value: (n) => Nr(e, n)
|
|
4487
4509
|
// enumerable: false,
|
|
4488
4510
|
},
|
|
4489
4511
|
flatten: {
|
|
4490
|
-
value: (n) =>
|
|
4512
|
+
value: (n) => Pr(e, n)
|
|
4491
4513
|
// enumerable: false,
|
|
4492
4514
|
},
|
|
4493
4515
|
addIssue: {
|
|
4494
4516
|
value: (n) => {
|
|
4495
|
-
e.issues.push(n), e.message = JSON.stringify(e.issues,
|
|
4517
|
+
e.issues.push(n), e.message = JSON.stringify(e.issues, ye, 2);
|
|
4496
4518
|
}
|
|
4497
4519
|
// enumerable: false,
|
|
4498
4520
|
},
|
|
4499
4521
|
addIssues: {
|
|
4500
4522
|
value: (n) => {
|
|
4501
|
-
e.issues.push(...n), e.message = JSON.stringify(e.issues,
|
|
4523
|
+
e.issues.push(...n), e.message = JSON.stringify(e.issues, ye, 2);
|
|
4502
4524
|
}
|
|
4503
4525
|
// enumerable: false,
|
|
4504
4526
|
},
|
|
@@ -4509,21 +4531,21 @@ const Js = (e, t) => {
|
|
|
4509
4531
|
// enumerable: false,
|
|
4510
4532
|
}
|
|
4511
4533
|
});
|
|
4512
|
-
}, P = d("ZodError",
|
|
4534
|
+
}, P = d("ZodError", Bs, {
|
|
4513
4535
|
Parent: Error
|
|
4514
|
-
}),
|
|
4536
|
+
}), Ks = /* @__PURE__ */ Te(P), Hs = /* @__PURE__ */ Ze(P), Ys = /* @__PURE__ */ de(P), Xs = /* @__PURE__ */ le(P), Qs = /* @__PURE__ */ jr(P), ea = /* @__PURE__ */ Dr(P), ta = /* @__PURE__ */ Lr(P), na = /* @__PURE__ */ Ur(P), ra = /* @__PURE__ */ Mr(P), oa = /* @__PURE__ */ xr(P), ia = /* @__PURE__ */ Fr(P), sa = /* @__PURE__ */ Jr(P), S = /* @__PURE__ */ d("ZodType", (e, t) => (z.init(e, t), Object.assign(e["~standard"], {
|
|
4515
4537
|
jsonSchema: {
|
|
4516
4538
|
input: ue(e, "input"),
|
|
4517
4539
|
output: ue(e, "output")
|
|
4518
4540
|
}
|
|
4519
|
-
}), e.toJSONSchema =
|
|
4541
|
+
}), e.toJSONSchema = _s(e, {}), e.def = t, e.type = t.type, Object.defineProperty(e, "_def", { value: t }), e.check = (...n) => e.clone(x(t, {
|
|
4520
4542
|
checks: [
|
|
4521
4543
|
...t.checks ?? [],
|
|
4522
4544
|
...n.map((r) => typeof r == "function" ? { _zod: { check: r, def: { check: "custom" }, onattach: [] } } : r)
|
|
4523
4545
|
]
|
|
4524
4546
|
}), {
|
|
4525
4547
|
parent: !0
|
|
4526
|
-
}), e.with = e.check, e.clone = (n, r) => F(e, n, r), e.brand = () => e, e.register = ((n, r) => (n.add(e, r), e)), e.parse = (n, r) =>
|
|
4548
|
+
}), e.with = e.check, e.clone = (n, r) => F(e, n, r), e.brand = () => e, e.register = ((n, r) => (n.add(e, r), e)), e.parse = (n, r) => Ks(e, n, r, { callee: e.parse }), e.safeParse = (n, r) => Ys(e, n, r), e.parseAsync = async (n, r) => Hs(e, n, r, { callee: e.parseAsync }), e.safeParseAsync = async (n, r) => Xs(e, n, r), e.spa = e.safeParseAsync, e.encode = (n, r) => Qs(e, n, r), e.decode = (n, r) => ea(e, n, r), e.encodeAsync = async (n, r) => ta(e, n, r), e.decodeAsync = async (n, r) => na(e, n, r), e.safeEncode = (n, r) => ra(e, n, r), e.safeDecode = (n, r) => oa(e, n, r), e.safeEncodeAsync = async (n, r) => ia(e, n, r), e.safeDecodeAsync = async (n, r) => sa(e, n, r), e.refine = (n, r) => e.check(nc(n, r)), e.superRefine = (n) => e.check(rc(n)), e.overwrite = (n) => e.check(/* @__PURE__ */ H(n)), e.optional = () => rt(e), e.exactOptional = () => Ja(e), e.nullable = () => ot(e), e.nullish = () => rt(ot(e)), e.nonoptional = (n) => Ka(e, n), e.array = () => Aa(e), e.or = (n) => Ca([e, n]), e.and = (n) => ja(e, n), e.transform = (n) => it(e, xa(n)), e.default = (n) => Wa(e, n), e.prefault = (n) => Ba(e, n), e.catch = (n) => Ya(e, n), e.pipe = (n) => it(e, n), e.readonly = () => ec(e), e.describe = (n) => {
|
|
4527
4549
|
const r = e.clone();
|
|
4528
4550
|
return ee.add(r, { description: n }), r;
|
|
4529
4551
|
}, Object.defineProperty(e, "description", {
|
|
@@ -4536,138 +4558,138 @@ const Js = (e, t) => {
|
|
|
4536
4558
|
return ee.get(e);
|
|
4537
4559
|
const r = e.clone();
|
|
4538
4560
|
return ee.add(r, n[0]), r;
|
|
4539
|
-
}, e.isOptional = () => e.safeParse(void 0).success, e.isNullable = () => e.safeParse(null).success, e.apply = (n) => n(e), e)),
|
|
4540
|
-
|
|
4561
|
+
}, e.isOptional = () => e.safeParse(void 0).success, e.isNullable = () => e.safeParse(null).success, e.apply = (n) => n(e), e)), Ut = /* @__PURE__ */ d("_ZodString", (e, t) => {
|
|
4562
|
+
Oe.init(e, t), S.init(e, t), e._zod.processJSONSchema = (r, o, i) => vs(e, r, o);
|
|
4541
4563
|
const n = e._zod.bag;
|
|
4542
|
-
e.format = n.format ?? null, e.minLength = n.minimum ?? null, e.maxLength = n.maximum ?? null, e.regex = (...r) => e.check(/* @__PURE__ */
|
|
4543
|
-
}),
|
|
4544
|
-
|
|
4564
|
+
e.format = n.format ?? null, e.minLength = n.minimum ?? null, e.maxLength = n.maximum ?? null, e.regex = (...r) => e.check(/* @__PURE__ */ ns(...r)), e.includes = (...r) => e.check(/* @__PURE__ */ is(...r)), e.startsWith = (...r) => e.check(/* @__PURE__ */ ss(...r)), e.endsWith = (...r) => e.check(/* @__PURE__ */ as(...r)), e.min = (...r) => e.check(/* @__PURE__ */ ce(...r)), e.max = (...r) => e.check(/* @__PURE__ */ Nt(...r)), e.length = (...r) => e.check(/* @__PURE__ */ Ct(...r)), e.nonempty = (...r) => e.check(/* @__PURE__ */ ce(1, ...r)), e.lowercase = (r) => e.check(/* @__PURE__ */ rs(r)), e.uppercase = (r) => e.check(/* @__PURE__ */ os(r)), e.trim = () => e.check(/* @__PURE__ */ us()), e.normalize = (...r) => e.check(/* @__PURE__ */ cs(...r)), e.toLowerCase = () => e.check(/* @__PURE__ */ ds()), e.toUpperCase = () => e.check(/* @__PURE__ */ ls()), e.slugify = () => e.check(/* @__PURE__ */ fs());
|
|
4565
|
+
}), aa = /* @__PURE__ */ d("ZodString", (e, t) => {
|
|
4566
|
+
Oe.init(e, t), Ut.init(e, t), e.email = (n) => e.check(/* @__PURE__ */ Ei(ca, n)), e.url = (n) => e.check(/* @__PURE__ */ Ai(ua, n)), e.jwt = (n) => e.check(/* @__PURE__ */ Wi(Sa, n)), e.emoji = (n) => e.check(/* @__PURE__ */ Pi(da, n)), e.guid = (n) => e.check(/* @__PURE__ */ He(et, n)), e.uuid = (n) => e.check(/* @__PURE__ */ Ti(ie, n)), e.uuidv4 = (n) => e.check(/* @__PURE__ */ Zi(ie, n)), e.uuidv6 = (n) => e.check(/* @__PURE__ */ Oi(ie, n)), e.uuidv7 = (n) => e.check(/* @__PURE__ */ Ii(ie, n)), e.nanoid = (n) => e.check(/* @__PURE__ */ Ni(la, n)), e.guid = (n) => e.check(/* @__PURE__ */ He(et, n)), e.cuid = (n) => e.check(/* @__PURE__ */ Ci(fa, n)), e.cuid2 = (n) => e.check(/* @__PURE__ */ Ri(pa, n)), e.ulid = (n) => e.check(/* @__PURE__ */ ji(ga, n)), e.base64 = (n) => e.check(/* @__PURE__ */ Ji(ba, n)), e.base64url = (n) => e.check(/* @__PURE__ */ qi(ka, n)), e.xid = (n) => e.check(/* @__PURE__ */ Di(ha, n)), e.ksuid = (n) => e.check(/* @__PURE__ */ Li(ma, n)), e.ipv4 = (n) => e.check(/* @__PURE__ */ Ui(_a, n)), e.ipv6 = (n) => e.check(/* @__PURE__ */ Mi(ya, n)), e.cidrv4 = (n) => e.check(/* @__PURE__ */ xi(va, n)), e.cidrv6 = (n) => e.check(/* @__PURE__ */ Fi(wa, n)), e.e164 = (n) => e.check(/* @__PURE__ */ Vi(za, n)), e.datetime = (n) => e.check(xs(n)), e.date = (n) => e.check(Js(n)), e.time = (n) => e.check(Vs(n)), e.duration = (n) => e.check(Gs(n));
|
|
4545
4567
|
});
|
|
4546
|
-
function
|
|
4547
|
-
return /* @__PURE__ */
|
|
4568
|
+
function qc(e) {
|
|
4569
|
+
return /* @__PURE__ */ $i(aa, e);
|
|
4548
4570
|
}
|
|
4549
4571
|
const $ = /* @__PURE__ */ d("ZodStringFormat", (e, t) => {
|
|
4550
|
-
|
|
4551
|
-
}),
|
|
4552
|
-
|
|
4553
|
-
}),
|
|
4554
|
-
$o.init(e, t), $.init(e, t);
|
|
4555
|
-
}), ie = /* @__PURE__ */ d("ZodUUID", (e, t) => {
|
|
4556
|
-
Eo.init(e, t), $.init(e, t);
|
|
4557
|
-
}), oa = /* @__PURE__ */ d("ZodURL", (e, t) => {
|
|
4558
|
-
Zo.init(e, t), $.init(e, t);
|
|
4559
|
-
}), ia = /* @__PURE__ */ d("ZodEmoji", (e, t) => {
|
|
4560
|
-
Oo.init(e, t), $.init(e, t);
|
|
4561
|
-
}), sa = /* @__PURE__ */ d("ZodNanoID", (e, t) => {
|
|
4572
|
+
k.init(e, t), Ut.init(e, t);
|
|
4573
|
+
}), ca = /* @__PURE__ */ d("ZodEmail", (e, t) => {
|
|
4574
|
+
Po.init(e, t), $.init(e, t);
|
|
4575
|
+
}), et = /* @__PURE__ */ d("ZodGUID", (e, t) => {
|
|
4562
4576
|
Io.init(e, t), $.init(e, t);
|
|
4563
|
-
}),
|
|
4577
|
+
}), ie = /* @__PURE__ */ d("ZodUUID", (e, t) => {
|
|
4564
4578
|
Ao.init(e, t), $.init(e, t);
|
|
4565
|
-
}),
|
|
4566
|
-
Po.init(e, t), $.init(e, t);
|
|
4567
|
-
}), ua = /* @__PURE__ */ d("ZodULID", (e, t) => {
|
|
4579
|
+
}), ua = /* @__PURE__ */ d("ZodURL", (e, t) => {
|
|
4568
4580
|
No.init(e, t), $.init(e, t);
|
|
4569
|
-
}), da = /* @__PURE__ */ d("
|
|
4581
|
+
}), da = /* @__PURE__ */ d("ZodEmoji", (e, t) => {
|
|
4570
4582
|
Co.init(e, t), $.init(e, t);
|
|
4571
|
-
}), la = /* @__PURE__ */ d("
|
|
4583
|
+
}), la = /* @__PURE__ */ d("ZodNanoID", (e, t) => {
|
|
4572
4584
|
Ro.init(e, t), $.init(e, t);
|
|
4573
|
-
}), fa = /* @__PURE__ */ d("
|
|
4585
|
+
}), fa = /* @__PURE__ */ d("ZodCUID", (e, t) => {
|
|
4586
|
+
jo.init(e, t), $.init(e, t);
|
|
4587
|
+
}), pa = /* @__PURE__ */ d("ZodCUID2", (e, t) => {
|
|
4588
|
+
Do.init(e, t), $.init(e, t);
|
|
4589
|
+
}), ga = /* @__PURE__ */ d("ZodULID", (e, t) => {
|
|
4590
|
+
Lo.init(e, t), $.init(e, t);
|
|
4591
|
+
}), ha = /* @__PURE__ */ d("ZodXID", (e, t) => {
|
|
4592
|
+
Uo.init(e, t), $.init(e, t);
|
|
4593
|
+
}), ma = /* @__PURE__ */ d("ZodKSUID", (e, t) => {
|
|
4574
4594
|
Mo.init(e, t), $.init(e, t);
|
|
4575
|
-
}),
|
|
4576
|
-
|
|
4577
|
-
}),
|
|
4578
|
-
Fo.init(e, t), $.init(e, t);
|
|
4579
|
-
}), ha = /* @__PURE__ */ d("ZodCIDRv6", (e, t) => {
|
|
4580
|
-
Jo.init(e, t), $.init(e, t);
|
|
4581
|
-
}), ma = /* @__PURE__ */ d("ZodBase64", (e, t) => {
|
|
4582
|
-
qo.init(e, t), $.init(e, t);
|
|
4583
|
-
}), _a = /* @__PURE__ */ d("ZodBase64URL", (e, t) => {
|
|
4595
|
+
}), _a = /* @__PURE__ */ d("ZodIPv4", (e, t) => {
|
|
4596
|
+
Vo.init(e, t), $.init(e, t);
|
|
4597
|
+
}), ya = /* @__PURE__ */ d("ZodIPv6", (e, t) => {
|
|
4584
4598
|
Wo.init(e, t), $.init(e, t);
|
|
4585
|
-
}),
|
|
4599
|
+
}), va = /* @__PURE__ */ d("ZodCIDRv4", (e, t) => {
|
|
4586
4600
|
Go.init(e, t), $.init(e, t);
|
|
4587
|
-
}),
|
|
4588
|
-
|
|
4589
|
-
}),
|
|
4590
|
-
|
|
4601
|
+
}), wa = /* @__PURE__ */ d("ZodCIDRv6", (e, t) => {
|
|
4602
|
+
Bo.init(e, t), $.init(e, t);
|
|
4603
|
+
}), ba = /* @__PURE__ */ d("ZodBase64", (e, t) => {
|
|
4604
|
+
Ko.init(e, t), $.init(e, t);
|
|
4605
|
+
}), ka = /* @__PURE__ */ d("ZodBase64URL", (e, t) => {
|
|
4606
|
+
Yo.init(e, t), $.init(e, t);
|
|
4607
|
+
}), za = /* @__PURE__ */ d("ZodE164", (e, t) => {
|
|
4608
|
+
Xo.init(e, t), $.init(e, t);
|
|
4609
|
+
}), Sa = /* @__PURE__ */ d("ZodJWT", (e, t) => {
|
|
4610
|
+
ei.init(e, t), $.init(e, t);
|
|
4611
|
+
}), Mt = /* @__PURE__ */ d("ZodNumber", (e, t) => {
|
|
4612
|
+
Ot.init(e, t), S.init(e, t), e._zod.processJSONSchema = (r, o, i) => ws(e, r, o), e.gt = (r, o) => e.check(/* @__PURE__ */ Xe(r, o)), e.gte = (r, o) => e.check(/* @__PURE__ */ he(r, o)), e.min = (r, o) => e.check(/* @__PURE__ */ he(r, o)), e.lt = (r, o) => e.check(/* @__PURE__ */ Ye(r, o)), e.lte = (r, o) => e.check(/* @__PURE__ */ ge(r, o)), e.max = (r, o) => e.check(/* @__PURE__ */ ge(r, o)), e.int = (r) => e.check(tt(r)), e.safe = (r) => e.check(tt(r)), e.positive = (r) => e.check(/* @__PURE__ */ Xe(0, r)), e.nonnegative = (r) => e.check(/* @__PURE__ */ he(0, r)), e.negative = (r) => e.check(/* @__PURE__ */ Ye(0, r)), e.nonpositive = (r) => e.check(/* @__PURE__ */ ge(0, r)), e.multipleOf = (r, o) => e.check(/* @__PURE__ */ Qe(r, o)), e.step = (r, o) => e.check(/* @__PURE__ */ Qe(r, o)), e.finite = () => e;
|
|
4591
4613
|
const n = e._zod.bag;
|
|
4592
4614
|
e.minValue = Math.max(n.minimum ?? Number.NEGATIVE_INFINITY, n.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null, e.maxValue = Math.min(n.maximum ?? Number.POSITIVE_INFINITY, n.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null, e.isInt = (n.format ?? "").includes("int") || Number.isSafeInteger(n.multipleOf ?? 0.5), e.isFinite = !0, e.format = n.format ?? null;
|
|
4593
4615
|
});
|
|
4594
|
-
function
|
|
4595
|
-
return /* @__PURE__ */
|
|
4616
|
+
function Vc(e) {
|
|
4617
|
+
return /* @__PURE__ */ Yi(Mt, e);
|
|
4596
4618
|
}
|
|
4597
|
-
const
|
|
4598
|
-
|
|
4619
|
+
const $a = /* @__PURE__ */ d("ZodNumberFormat", (e, t) => {
|
|
4620
|
+
ti.init(e, t), Mt.init(e, t);
|
|
4599
4621
|
});
|
|
4600
|
-
function
|
|
4601
|
-
return /* @__PURE__ */
|
|
4622
|
+
function tt(e) {
|
|
4623
|
+
return /* @__PURE__ */ Xi($a, e);
|
|
4602
4624
|
}
|
|
4603
|
-
const
|
|
4604
|
-
|
|
4625
|
+
const Ea = /* @__PURE__ */ d("ZodBoolean", (e, t) => {
|
|
4626
|
+
ni.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => bs(e, n, r);
|
|
4605
4627
|
});
|
|
4606
|
-
function
|
|
4607
|
-
return /* @__PURE__ */
|
|
4628
|
+
function Wc(e) {
|
|
4629
|
+
return /* @__PURE__ */ Qi(Ea, e);
|
|
4608
4630
|
}
|
|
4609
|
-
const
|
|
4610
|
-
|
|
4631
|
+
const Ta = /* @__PURE__ */ d("ZodUnknown", (e, t) => {
|
|
4632
|
+
ri.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => zs();
|
|
4611
4633
|
});
|
|
4612
|
-
function
|
|
4613
|
-
return /* @__PURE__ */
|
|
4634
|
+
function nt() {
|
|
4635
|
+
return /* @__PURE__ */ es(Ta);
|
|
4614
4636
|
}
|
|
4615
|
-
const
|
|
4616
|
-
|
|
4637
|
+
const Za = /* @__PURE__ */ d("ZodNever", (e, t) => {
|
|
4638
|
+
oi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => ks(e, n, r);
|
|
4617
4639
|
});
|
|
4618
|
-
function
|
|
4619
|
-
return /* @__PURE__ */
|
|
4640
|
+
function Oa(e) {
|
|
4641
|
+
return /* @__PURE__ */ ts(Za, e);
|
|
4620
4642
|
}
|
|
4621
|
-
const
|
|
4622
|
-
|
|
4643
|
+
const Ia = /* @__PURE__ */ d("ZodArray", (e, t) => {
|
|
4644
|
+
ii.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Zs(e, n, r, o), e.element = t.element, e.min = (n, r) => e.check(/* @__PURE__ */ ce(n, r)), e.nonempty = (n) => e.check(/* @__PURE__ */ ce(1, n)), e.max = (n, r) => e.check(/* @__PURE__ */ Nt(n, r)), e.length = (n, r) => e.check(/* @__PURE__ */ Ct(n, r)), e.unwrap = () => e.element;
|
|
4623
4645
|
});
|
|
4624
|
-
function
|
|
4625
|
-
return /* @__PURE__ */
|
|
4646
|
+
function Aa(e, t) {
|
|
4647
|
+
return /* @__PURE__ */ ps(Ia, e, t);
|
|
4626
4648
|
}
|
|
4627
|
-
const
|
|
4628
|
-
|
|
4649
|
+
const Pa = /* @__PURE__ */ d("ZodObject", (e, t) => {
|
|
4650
|
+
ai.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Os(e, n, r, o), v(e, "shape", () => t.shape), e.keyof = () => La(Object.keys(e._zod.def.shape)), e.catchall = (n) => e.clone({ ...e._zod.def, catchall: n }), e.passthrough = () => e.clone({ ...e._zod.def, catchall: nt() }), e.loose = () => e.clone({ ...e._zod.def, catchall: nt() }), e.strict = () => e.clone({ ...e._zod.def, catchall: Oa() }), e.strip = () => e.clone({ ...e._zod.def, catchall: void 0 }), e.extend = (n) => Tr(e, n), e.safeExtend = (n) => Zr(e, n), e.merge = (n) => Or(e, n), e.pick = (n) => $r(e, n), e.omit = (n) => Er(e, n), e.partial = (...n) => Ir(xt, e, n[0]), e.required = (...n) => Ar(Ft, e, n[0]);
|
|
4629
4651
|
});
|
|
4630
|
-
function
|
|
4652
|
+
function Gc(e, t) {
|
|
4631
4653
|
const n = {
|
|
4632
4654
|
type: "object",
|
|
4633
4655
|
shape: e ?? {},
|
|
4634
4656
|
...h(t)
|
|
4635
4657
|
};
|
|
4636
|
-
return new
|
|
4658
|
+
return new Pa(n);
|
|
4637
4659
|
}
|
|
4638
|
-
const
|
|
4639
|
-
|
|
4660
|
+
const Na = /* @__PURE__ */ d("ZodUnion", (e, t) => {
|
|
4661
|
+
ci.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Is(e, n, r, o), e.options = t.options;
|
|
4640
4662
|
});
|
|
4641
|
-
function
|
|
4642
|
-
return new
|
|
4663
|
+
function Ca(e, t) {
|
|
4664
|
+
return new Na({
|
|
4643
4665
|
type: "union",
|
|
4644
4666
|
options: e,
|
|
4645
4667
|
...h(t)
|
|
4646
4668
|
});
|
|
4647
4669
|
}
|
|
4648
|
-
const
|
|
4649
|
-
|
|
4670
|
+
const Ra = /* @__PURE__ */ d("ZodIntersection", (e, t) => {
|
|
4671
|
+
ui.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => As(e, n, r, o);
|
|
4650
4672
|
});
|
|
4651
|
-
function
|
|
4652
|
-
return new
|
|
4673
|
+
function ja(e, t) {
|
|
4674
|
+
return new Ra({
|
|
4653
4675
|
type: "intersection",
|
|
4654
4676
|
left: e,
|
|
4655
4677
|
right: t
|
|
4656
4678
|
});
|
|
4657
4679
|
}
|
|
4658
|
-
const
|
|
4659
|
-
|
|
4680
|
+
const Da = /* @__PURE__ */ d("ZodRecord", (e, t) => {
|
|
4681
|
+
di.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ps(e, n, r, o), e.keyType = t.keyType, e.valueType = t.valueType;
|
|
4660
4682
|
});
|
|
4661
|
-
function
|
|
4662
|
-
return new
|
|
4683
|
+
function Bc(e, t, n) {
|
|
4684
|
+
return new Da({
|
|
4663
4685
|
type: "record",
|
|
4664
4686
|
keyType: e,
|
|
4665
4687
|
valueType: t,
|
|
4666
4688
|
...h(n)
|
|
4667
4689
|
});
|
|
4668
4690
|
}
|
|
4669
|
-
const
|
|
4670
|
-
|
|
4691
|
+
const we = /* @__PURE__ */ d("ZodEnum", (e, t) => {
|
|
4692
|
+
li.init(e, t), S.init(e, t), e._zod.processJSONSchema = (r, o, i) => Ss(e, r, o), e.enum = t.entries, e.options = Object.values(t.entries);
|
|
4671
4693
|
const n = new Set(Object.keys(t.entries));
|
|
4672
4694
|
e.extract = (r, o) => {
|
|
4673
4695
|
const i = {};
|
|
@@ -4676,7 +4698,7 @@ const ve = /* @__PURE__ */ d("ZodEnum", (e, t) => {
|
|
|
4676
4698
|
i[s] = t.entries[s];
|
|
4677
4699
|
else
|
|
4678
4700
|
throw new Error(`Key ${s} not found in enum`);
|
|
4679
|
-
return new
|
|
4701
|
+
return new we({
|
|
4680
4702
|
...t,
|
|
4681
4703
|
checks: [],
|
|
4682
4704
|
...h(o),
|
|
@@ -4689,7 +4711,7 @@ const ve = /* @__PURE__ */ d("ZodEnum", (e, t) => {
|
|
|
4689
4711
|
delete i[s];
|
|
4690
4712
|
else
|
|
4691
4713
|
throw new Error(`Key ${s} not found in enum`);
|
|
4692
|
-
return new
|
|
4714
|
+
return new we({
|
|
4693
4715
|
...t,
|
|
4694
4716
|
checks: [],
|
|
4695
4717
|
...h(o),
|
|
@@ -4697,16 +4719,16 @@ const ve = /* @__PURE__ */ d("ZodEnum", (e, t) => {
|
|
|
4697
4719
|
});
|
|
4698
4720
|
};
|
|
4699
4721
|
});
|
|
4700
|
-
function
|
|
4722
|
+
function La(e, t) {
|
|
4701
4723
|
const n = Array.isArray(e) ? Object.fromEntries(e.map((r) => [r, r])) : e;
|
|
4702
|
-
return new
|
|
4724
|
+
return new we({
|
|
4703
4725
|
type: "enum",
|
|
4704
4726
|
entries: n,
|
|
4705
4727
|
...h(t)
|
|
4706
4728
|
});
|
|
4707
4729
|
}
|
|
4708
|
-
const
|
|
4709
|
-
|
|
4730
|
+
const Ua = /* @__PURE__ */ d("ZodLiteral", (e, t) => {
|
|
4731
|
+
fi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => $s(e, n, r), e.values = new Set(t.values), Object.defineProperty(e, "value", {
|
|
4710
4732
|
get() {
|
|
4711
4733
|
if (t.values.length > 1)
|
|
4712
4734
|
throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");
|
|
@@ -4714,17 +4736,17 @@ const Ca = /* @__PURE__ */ d("ZodLiteral", (e, t) => {
|
|
|
4714
4736
|
}
|
|
4715
4737
|
});
|
|
4716
4738
|
});
|
|
4717
|
-
function
|
|
4718
|
-
return new
|
|
4739
|
+
function Kc(e, t) {
|
|
4740
|
+
return new Ua({
|
|
4719
4741
|
type: "literal",
|
|
4720
4742
|
values: Array.isArray(e) ? e : [e],
|
|
4721
4743
|
...h(t)
|
|
4722
4744
|
});
|
|
4723
4745
|
}
|
|
4724
|
-
const
|
|
4725
|
-
|
|
4746
|
+
const Ma = /* @__PURE__ */ d("ZodTransform", (e, t) => {
|
|
4747
|
+
pi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ts(e, n), e._zod.parse = (n, r) => {
|
|
4726
4748
|
if (r.direction === "backward")
|
|
4727
|
-
throw new
|
|
4749
|
+
throw new pt(e.constructor.name);
|
|
4728
4750
|
n.addIssue = (i) => {
|
|
4729
4751
|
if (typeof i == "string")
|
|
4730
4752
|
n.issues.push(ne(i, n.value, t));
|
|
@@ -4737,184 +4759,186 @@ const Ra = /* @__PURE__ */ d("ZodTransform", (e, t) => {
|
|
|
4737
4759
|
return o instanceof Promise ? o.then((i) => (n.value = i, n)) : (n.value = o, n);
|
|
4738
4760
|
};
|
|
4739
4761
|
});
|
|
4740
|
-
function
|
|
4741
|
-
return new
|
|
4762
|
+
function xa(e) {
|
|
4763
|
+
return new Ma({
|
|
4742
4764
|
type: "transform",
|
|
4743
4765
|
transform: e
|
|
4744
4766
|
});
|
|
4745
4767
|
}
|
|
4746
|
-
const
|
|
4747
|
-
|
|
4768
|
+
const xt = /* @__PURE__ */ d("ZodOptional", (e, t) => {
|
|
4769
|
+
Pt.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Lt(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4748
4770
|
});
|
|
4749
|
-
function
|
|
4750
|
-
return new
|
|
4771
|
+
function rt(e) {
|
|
4772
|
+
return new xt({
|
|
4751
4773
|
type: "optional",
|
|
4752
4774
|
innerType: e
|
|
4753
4775
|
});
|
|
4754
4776
|
}
|
|
4755
|
-
const
|
|
4756
|
-
|
|
4777
|
+
const Fa = /* @__PURE__ */ d("ZodExactOptional", (e, t) => {
|
|
4778
|
+
gi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Lt(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4757
4779
|
});
|
|
4758
|
-
function
|
|
4759
|
-
return new
|
|
4780
|
+
function Ja(e) {
|
|
4781
|
+
return new Fa({
|
|
4760
4782
|
type: "optional",
|
|
4761
4783
|
innerType: e
|
|
4762
4784
|
});
|
|
4763
4785
|
}
|
|
4764
|
-
const
|
|
4765
|
-
|
|
4786
|
+
const qa = /* @__PURE__ */ d("ZodNullable", (e, t) => {
|
|
4787
|
+
hi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ns(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4766
4788
|
});
|
|
4767
|
-
function
|
|
4768
|
-
return new
|
|
4789
|
+
function ot(e) {
|
|
4790
|
+
return new qa({
|
|
4769
4791
|
type: "nullable",
|
|
4770
4792
|
innerType: e
|
|
4771
4793
|
});
|
|
4772
4794
|
}
|
|
4773
|
-
const
|
|
4774
|
-
|
|
4795
|
+
const Va = /* @__PURE__ */ d("ZodDefault", (e, t) => {
|
|
4796
|
+
mi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Rs(e, n, r, o), e.unwrap = () => e._zod.def.innerType, e.removeDefault = e.unwrap;
|
|
4775
4797
|
});
|
|
4776
|
-
function
|
|
4777
|
-
return new
|
|
4798
|
+
function Wa(e, t) {
|
|
4799
|
+
return new Va({
|
|
4778
4800
|
type: "default",
|
|
4779
4801
|
innerType: e,
|
|
4780
4802
|
get defaultValue() {
|
|
4781
|
-
return typeof t == "function" ? t() :
|
|
4803
|
+
return typeof t == "function" ? t() : _t(t);
|
|
4782
4804
|
}
|
|
4783
4805
|
});
|
|
4784
4806
|
}
|
|
4785
|
-
const
|
|
4786
|
-
|
|
4807
|
+
const Ga = /* @__PURE__ */ d("ZodPrefault", (e, t) => {
|
|
4808
|
+
_i.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => js(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4787
4809
|
});
|
|
4788
|
-
function
|
|
4789
|
-
return new
|
|
4810
|
+
function Ba(e, t) {
|
|
4811
|
+
return new Ga({
|
|
4790
4812
|
type: "prefault",
|
|
4791
4813
|
innerType: e,
|
|
4792
4814
|
get defaultValue() {
|
|
4793
|
-
return typeof t == "function" ? t() :
|
|
4815
|
+
return typeof t == "function" ? t() : _t(t);
|
|
4794
4816
|
}
|
|
4795
4817
|
});
|
|
4796
4818
|
}
|
|
4797
|
-
const
|
|
4798
|
-
|
|
4819
|
+
const Ft = /* @__PURE__ */ d("ZodNonOptional", (e, t) => {
|
|
4820
|
+
yi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Cs(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4799
4821
|
});
|
|
4800
|
-
function
|
|
4801
|
-
return new
|
|
4822
|
+
function Ka(e, t) {
|
|
4823
|
+
return new Ft({
|
|
4802
4824
|
type: "nonoptional",
|
|
4803
4825
|
innerType: e,
|
|
4804
4826
|
...h(t)
|
|
4805
4827
|
});
|
|
4806
4828
|
}
|
|
4807
|
-
const
|
|
4808
|
-
|
|
4829
|
+
const Ha = /* @__PURE__ */ d("ZodCatch", (e, t) => {
|
|
4830
|
+
vi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ds(e, n, r, o), e.unwrap = () => e._zod.def.innerType, e.removeCatch = e.unwrap;
|
|
4809
4831
|
});
|
|
4810
|
-
function
|
|
4811
|
-
return new
|
|
4832
|
+
function Ya(e, t) {
|
|
4833
|
+
return new Ha({
|
|
4812
4834
|
type: "catch",
|
|
4813
4835
|
innerType: e,
|
|
4814
4836
|
catchValue: typeof t == "function" ? t : () => t
|
|
4815
4837
|
});
|
|
4816
4838
|
}
|
|
4817
|
-
const
|
|
4818
|
-
|
|
4839
|
+
const Xa = /* @__PURE__ */ d("ZodPipe", (e, t) => {
|
|
4840
|
+
wi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Ls(e, n, r, o), e.in = t.in, e.out = t.out;
|
|
4819
4841
|
});
|
|
4820
|
-
function
|
|
4821
|
-
return new
|
|
4842
|
+
function it(e, t) {
|
|
4843
|
+
return new Xa({
|
|
4822
4844
|
type: "pipe",
|
|
4823
4845
|
in: e,
|
|
4824
4846
|
out: t
|
|
4825
4847
|
// ...util.normalizeParams(params),
|
|
4826
4848
|
});
|
|
4827
4849
|
}
|
|
4828
|
-
const
|
|
4829
|
-
|
|
4850
|
+
const Qa = /* @__PURE__ */ d("ZodReadonly", (e, t) => {
|
|
4851
|
+
bi.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Us(e, n, r, o), e.unwrap = () => e._zod.def.innerType;
|
|
4830
4852
|
});
|
|
4831
|
-
function
|
|
4832
|
-
return new
|
|
4853
|
+
function ec(e) {
|
|
4854
|
+
return new Qa({
|
|
4833
4855
|
type: "readonly",
|
|
4834
4856
|
innerType: e
|
|
4835
4857
|
});
|
|
4836
4858
|
}
|
|
4837
|
-
const
|
|
4838
|
-
|
|
4859
|
+
const tc = /* @__PURE__ */ d("ZodCustom", (e, t) => {
|
|
4860
|
+
ki.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, r, o) => Es(e, n);
|
|
4839
4861
|
});
|
|
4840
|
-
function
|
|
4841
|
-
return /* @__PURE__ */
|
|
4862
|
+
function nc(e, t = {}) {
|
|
4863
|
+
return /* @__PURE__ */ gs(tc, e, t);
|
|
4842
4864
|
}
|
|
4843
|
-
function
|
|
4844
|
-
return /* @__PURE__ */
|
|
4865
|
+
function rc(e) {
|
|
4866
|
+
return /* @__PURE__ */ hs(e);
|
|
4845
4867
|
}
|
|
4846
4868
|
export {
|
|
4847
|
-
|
|
4848
|
-
|
|
4849
|
-
|
|
4850
|
-
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
4857
|
-
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4861
|
-
|
|
4862
|
-
|
|
4863
|
-
|
|
4864
|
-
|
|
4865
|
-
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4871
|
-
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
|
|
4916
|
-
|
|
4917
|
-
|
|
4918
|
-
|
|
4869
|
+
bc as $,
|
|
4870
|
+
mr as A,
|
|
4871
|
+
Ec as B,
|
|
4872
|
+
mc as C,
|
|
4873
|
+
_e as D,
|
|
4874
|
+
at as E,
|
|
4875
|
+
yc as F,
|
|
4876
|
+
Bc as G,
|
|
4877
|
+
Lc as H,
|
|
4878
|
+
Mc as I,
|
|
4879
|
+
Fc as J,
|
|
4880
|
+
Rc as K,
|
|
4881
|
+
Nc as L,
|
|
4882
|
+
Cc as M,
|
|
4883
|
+
Dc as N,
|
|
4884
|
+
Pc as O,
|
|
4885
|
+
xc as P,
|
|
4886
|
+
pc as Q,
|
|
4887
|
+
gc as R,
|
|
4888
|
+
_r as S,
|
|
4889
|
+
fc as T,
|
|
4890
|
+
uc as U,
|
|
4891
|
+
jc as V,
|
|
4892
|
+
Uc as W,
|
|
4893
|
+
cc as X,
|
|
4894
|
+
Kc as Y,
|
|
4895
|
+
nn as Z,
|
|
4896
|
+
La as _,
|
|
4897
|
+
Zc as a,
|
|
4898
|
+
dr as a0,
|
|
4899
|
+
Ae as a1,
|
|
4900
|
+
tn as a2,
|
|
4901
|
+
Gt as a3,
|
|
4902
|
+
Wt as a4,
|
|
4903
|
+
qt as a5,
|
|
4904
|
+
dn as a6,
|
|
4905
|
+
bn as a7,
|
|
4906
|
+
kn as a8,
|
|
4907
|
+
zc as a9,
|
|
4908
|
+
te as aa,
|
|
4909
|
+
Vt as ab,
|
|
4910
|
+
M as ac,
|
|
4911
|
+
cn as ad,
|
|
4912
|
+
un as ae,
|
|
4913
|
+
Tc as af,
|
|
4914
|
+
Sc as ag,
|
|
4915
|
+
Jc as ah,
|
|
4916
|
+
kc as ai,
|
|
4917
|
+
rn as aj,
|
|
4918
|
+
Ac as b,
|
|
4919
|
+
yn as c,
|
|
4920
|
+
Wc as d,
|
|
4921
|
+
nt as e,
|
|
4922
|
+
Aa as f,
|
|
4923
|
+
ac as g,
|
|
4924
|
+
dc as h,
|
|
4925
|
+
De as i,
|
|
4926
|
+
wc as j,
|
|
4927
|
+
$c as k,
|
|
4928
|
+
lc as l,
|
|
4929
|
+
sc as m,
|
|
4930
|
+
gr as n,
|
|
4931
|
+
Gc as o,
|
|
4932
|
+
Oc as p,
|
|
4933
|
+
Ic as q,
|
|
4934
|
+
ic as r,
|
|
4935
|
+
qc as s,
|
|
4936
|
+
fr as t,
|
|
4937
|
+
Ca as u,
|
|
4938
|
+
vc as v,
|
|
4939
|
+
hc as w,
|
|
4940
|
+
_c as x,
|
|
4941
|
+
Vc as y,
|
|
4942
|
+
hr as z
|
|
4919
4943
|
};
|
|
4920
|
-
//# sourceMappingURL=schemas-
|
|
4944
|
+
//# sourceMappingURL=schemas-5lXjLjwW.js.map
|