@getopenpay/openpay-js-react 0.0.10 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1017 -961
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { jsx as
|
|
3
|
-
const
|
|
1
|
+
import vr, { createContext as gr, useContext as _r, useState as I, useMemo as Oe, useCallback as Te, useRef as Pt, useEffect as He } from "react";
|
|
2
|
+
import { jsx as oe } from "react/jsx-runtime";
|
|
3
|
+
const Zt = gr({
|
|
4
4
|
formId: "",
|
|
5
5
|
formHeight: "",
|
|
6
6
|
referer: void 0,
|
|
@@ -8,34 +8,34 @@ const At = vr({
|
|
|
8
8
|
registerIframe: () => {
|
|
9
9
|
},
|
|
10
10
|
baseUrl: ""
|
|
11
|
-
}),
|
|
12
|
-
const r =
|
|
11
|
+
}), xr = () => {
|
|
12
|
+
const r = _r(Zt);
|
|
13
13
|
if (!r)
|
|
14
14
|
throw new Error("useOpenPayElements must be used within an OpenPayElementsProvider");
|
|
15
15
|
return r;
|
|
16
16
|
};
|
|
17
|
-
var
|
|
18
|
-
for (var
|
|
19
|
-
|
|
20
|
-
function
|
|
21
|
-
return (
|
|
17
|
+
var R = [];
|
|
18
|
+
for (var dt = 0; dt < 256; ++dt)
|
|
19
|
+
R.push((dt + 256).toString(16).slice(1));
|
|
20
|
+
function br(r, e = 0) {
|
|
21
|
+
return (R[r[e + 0]] + R[r[e + 1]] + R[r[e + 2]] + R[r[e + 3]] + "-" + R[r[e + 4]] + R[r[e + 5]] + "-" + R[r[e + 6]] + R[r[e + 7]] + "-" + R[r[e + 8]] + R[r[e + 9]] + "-" + R[r[e + 10]] + R[r[e + 11]] + R[r[e + 12]] + R[r[e + 13]] + R[r[e + 14]] + R[r[e + 15]]).toLowerCase();
|
|
22
22
|
}
|
|
23
|
-
var
|
|
24
|
-
function
|
|
25
|
-
if (!
|
|
23
|
+
var We, kr = new Uint8Array(16);
|
|
24
|
+
function wr() {
|
|
25
|
+
if (!We && (We = typeof crypto < "u" && crypto.getRandomValues && crypto.getRandomValues.bind(crypto), !We))
|
|
26
26
|
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
|
27
|
-
return
|
|
27
|
+
return We(kr);
|
|
28
28
|
}
|
|
29
|
-
var
|
|
30
|
-
const
|
|
31
|
-
randomUUID:
|
|
29
|
+
var Er = typeof crypto < "u" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
|
|
30
|
+
const Ct = {
|
|
31
|
+
randomUUID: Er
|
|
32
32
|
};
|
|
33
|
-
function
|
|
34
|
-
if (
|
|
35
|
-
return
|
|
33
|
+
function jt(r, e, t) {
|
|
34
|
+
if (Ct.randomUUID && !e && !r)
|
|
35
|
+
return Ct.randomUUID();
|
|
36
36
|
r = r || {};
|
|
37
|
-
var n = r.random || (r.rng ||
|
|
38
|
-
return n[6] = n[6] & 15 | 64, n[8] = n[8] & 63 | 128,
|
|
37
|
+
var n = r.random || (r.rng || wr)();
|
|
38
|
+
return n[6] = n[6] & 15 | 64, n[8] = n[8] & 63 | 128, br(n);
|
|
39
39
|
}
|
|
40
40
|
var x;
|
|
41
41
|
(function(r) {
|
|
@@ -73,15 +73,15 @@ var x;
|
|
|
73
73
|
}
|
|
74
74
|
r.joinValues = n, r.jsonStringifyReplacer = (s, a) => typeof a == "bigint" ? a.toString() : a;
|
|
75
75
|
})(x || (x = {}));
|
|
76
|
-
var
|
|
76
|
+
var lt;
|
|
77
77
|
(function(r) {
|
|
78
78
|
r.mergeShapes = (e, t) => ({
|
|
79
79
|
...e,
|
|
80
80
|
...t
|
|
81
81
|
// second overwrites first
|
|
82
82
|
});
|
|
83
|
-
})(
|
|
84
|
-
const
|
|
83
|
+
})(lt || (lt = {}));
|
|
84
|
+
const h = x.arrayToEnum([
|
|
85
85
|
"string",
|
|
86
86
|
"nan",
|
|
87
87
|
"number",
|
|
@@ -102,28 +102,28 @@ const f = x.arrayToEnum([
|
|
|
102
102
|
"never",
|
|
103
103
|
"map",
|
|
104
104
|
"set"
|
|
105
|
-
]),
|
|
105
|
+
]), ie = (r) => {
|
|
106
106
|
switch (typeof r) {
|
|
107
107
|
case "undefined":
|
|
108
|
-
return
|
|
108
|
+
return h.undefined;
|
|
109
109
|
case "string":
|
|
110
|
-
return
|
|
110
|
+
return h.string;
|
|
111
111
|
case "number":
|
|
112
|
-
return isNaN(r) ?
|
|
112
|
+
return isNaN(r) ? h.nan : h.number;
|
|
113
113
|
case "boolean":
|
|
114
|
-
return
|
|
114
|
+
return h.boolean;
|
|
115
115
|
case "function":
|
|
116
|
-
return
|
|
116
|
+
return h.function;
|
|
117
117
|
case "bigint":
|
|
118
|
-
return
|
|
118
|
+
return h.bigint;
|
|
119
119
|
case "symbol":
|
|
120
|
-
return
|
|
120
|
+
return h.symbol;
|
|
121
121
|
case "object":
|
|
122
|
-
return Array.isArray(r) ?
|
|
122
|
+
return Array.isArray(r) ? h.array : r === null ? h.null : r.then && typeof r.then == "function" && r.catch && typeof r.catch == "function" ? h.promise : typeof Map < "u" && r instanceof Map ? h.map : typeof Set < "u" && r instanceof Set ? h.set : typeof Date < "u" && r instanceof Date ? h.date : h.object;
|
|
123
123
|
default:
|
|
124
|
-
return
|
|
124
|
+
return h.unknown;
|
|
125
125
|
}
|
|
126
|
-
},
|
|
126
|
+
}, d = x.arrayToEnum([
|
|
127
127
|
"invalid_type",
|
|
128
128
|
"invalid_literal",
|
|
129
129
|
"custom",
|
|
@@ -140,8 +140,8 @@ const f = x.arrayToEnum([
|
|
|
140
140
|
"invalid_intersection_types",
|
|
141
141
|
"not_multiple_of",
|
|
142
142
|
"not_finite"
|
|
143
|
-
]),
|
|
144
|
-
class
|
|
143
|
+
]), Tr = (r) => JSON.stringify(r, null, 2).replace(/"([^"]+)":/g, "$1:");
|
|
144
|
+
class M extends Error {
|
|
145
145
|
constructor(e) {
|
|
146
146
|
super(), this.issues = [], this.addIssue = (n) => {
|
|
147
147
|
this.issues = [...this.issues, n];
|
|
@@ -170,15 +170,15 @@ class Z extends Error {
|
|
|
170
170
|
else {
|
|
171
171
|
let o = n, u = 0;
|
|
172
172
|
for (; u < i.path.length; ) {
|
|
173
|
-
const
|
|
174
|
-
u === i.path.length - 1 ? (o[
|
|
173
|
+
const c = i.path[u];
|
|
174
|
+
u === i.path.length - 1 ? (o[c] = o[c] || { _errors: [] }, o[c]._errors.push(t(i))) : o[c] = o[c] || { _errors: [] }, o = o[c], u++;
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
};
|
|
178
178
|
return s(this), n;
|
|
179
179
|
}
|
|
180
180
|
static assert(e) {
|
|
181
|
-
if (!(e instanceof
|
|
181
|
+
if (!(e instanceof M))
|
|
182
182
|
throw new Error(`Not a ZodError: ${e}`);
|
|
183
183
|
}
|
|
184
184
|
toString() {
|
|
@@ -200,56 +200,56 @@ class Z extends Error {
|
|
|
200
200
|
return this.flatten();
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
|
-
|
|
204
|
-
const
|
|
203
|
+
M.create = (r) => new M(r);
|
|
204
|
+
const _e = (r, e) => {
|
|
205
205
|
let t;
|
|
206
206
|
switch (r.code) {
|
|
207
|
-
case
|
|
208
|
-
r.received ===
|
|
207
|
+
case d.invalid_type:
|
|
208
|
+
r.received === h.undefined ? t = "Required" : t = `Expected ${r.expected}, received ${r.received}`;
|
|
209
209
|
break;
|
|
210
|
-
case
|
|
210
|
+
case d.invalid_literal:
|
|
211
211
|
t = `Invalid literal value, expected ${JSON.stringify(r.expected, x.jsonStringifyReplacer)}`;
|
|
212
212
|
break;
|
|
213
|
-
case
|
|
213
|
+
case d.unrecognized_keys:
|
|
214
214
|
t = `Unrecognized key(s) in object: ${x.joinValues(r.keys, ", ")}`;
|
|
215
215
|
break;
|
|
216
|
-
case
|
|
216
|
+
case d.invalid_union:
|
|
217
217
|
t = "Invalid input";
|
|
218
218
|
break;
|
|
219
|
-
case
|
|
219
|
+
case d.invalid_union_discriminator:
|
|
220
220
|
t = `Invalid discriminator value. Expected ${x.joinValues(r.options)}`;
|
|
221
221
|
break;
|
|
222
|
-
case
|
|
222
|
+
case d.invalid_enum_value:
|
|
223
223
|
t = `Invalid enum value. Expected ${x.joinValues(r.options)}, received '${r.received}'`;
|
|
224
224
|
break;
|
|
225
|
-
case
|
|
225
|
+
case d.invalid_arguments:
|
|
226
226
|
t = "Invalid function arguments";
|
|
227
227
|
break;
|
|
228
|
-
case
|
|
228
|
+
case d.invalid_return_type:
|
|
229
229
|
t = "Invalid function return type";
|
|
230
230
|
break;
|
|
231
|
-
case
|
|
231
|
+
case d.invalid_date:
|
|
232
232
|
t = "Invalid date";
|
|
233
233
|
break;
|
|
234
|
-
case
|
|
234
|
+
case d.invalid_string:
|
|
235
235
|
typeof r.validation == "object" ? "includes" in r.validation ? (t = `Invalid input: must include "${r.validation.includes}"`, typeof r.validation.position == "number" && (t = `${t} at one or more positions greater than or equal to ${r.validation.position}`)) : "startsWith" in r.validation ? t = `Invalid input: must start with "${r.validation.startsWith}"` : "endsWith" in r.validation ? t = `Invalid input: must end with "${r.validation.endsWith}"` : x.assertNever(r.validation) : r.validation !== "regex" ? t = `Invalid ${r.validation}` : t = "Invalid";
|
|
236
236
|
break;
|
|
237
|
-
case
|
|
237
|
+
case d.too_small:
|
|
238
238
|
r.type === "array" ? t = `Array must contain ${r.exact ? "exactly" : r.inclusive ? "at least" : "more than"} ${r.minimum} element(s)` : r.type === "string" ? t = `String must contain ${r.exact ? "exactly" : r.inclusive ? "at least" : "over"} ${r.minimum} character(s)` : r.type === "number" ? t = `Number must be ${r.exact ? "exactly equal to " : r.inclusive ? "greater than or equal to " : "greater than "}${r.minimum}` : r.type === "date" ? t = `Date must be ${r.exact ? "exactly equal to " : r.inclusive ? "greater than or equal to " : "greater than "}${new Date(Number(r.minimum))}` : t = "Invalid input";
|
|
239
239
|
break;
|
|
240
|
-
case
|
|
240
|
+
case d.too_big:
|
|
241
241
|
r.type === "array" ? t = `Array must contain ${r.exact ? "exactly" : r.inclusive ? "at most" : "less than"} ${r.maximum} element(s)` : r.type === "string" ? t = `String must contain ${r.exact ? "exactly" : r.inclusive ? "at most" : "under"} ${r.maximum} character(s)` : r.type === "number" ? t = `Number must be ${r.exact ? "exactly" : r.inclusive ? "less than or equal to" : "less than"} ${r.maximum}` : r.type === "bigint" ? t = `BigInt must be ${r.exact ? "exactly" : r.inclusive ? "less than or equal to" : "less than"} ${r.maximum}` : r.type === "date" ? t = `Date must be ${r.exact ? "exactly" : r.inclusive ? "smaller than or equal to" : "smaller than"} ${new Date(Number(r.maximum))}` : t = "Invalid input";
|
|
242
242
|
break;
|
|
243
|
-
case
|
|
243
|
+
case d.custom:
|
|
244
244
|
t = "Invalid input";
|
|
245
245
|
break;
|
|
246
|
-
case
|
|
246
|
+
case d.invalid_intersection_types:
|
|
247
247
|
t = "Intersection results could not be merged";
|
|
248
248
|
break;
|
|
249
|
-
case
|
|
249
|
+
case d.not_multiple_of:
|
|
250
250
|
t = `Number must be a multiple of ${r.multipleOf}`;
|
|
251
251
|
break;
|
|
252
|
-
case
|
|
252
|
+
case d.not_finite:
|
|
253
253
|
t = "Number must be finite";
|
|
254
254
|
break;
|
|
255
255
|
default:
|
|
@@ -257,14 +257,14 @@ const ye = (r, e) => {
|
|
|
257
257
|
}
|
|
258
258
|
return { message: t };
|
|
259
259
|
};
|
|
260
|
-
let
|
|
261
|
-
function
|
|
262
|
-
|
|
260
|
+
let Mt = _e;
|
|
261
|
+
function Sr(r) {
|
|
262
|
+
Mt = r;
|
|
263
263
|
}
|
|
264
|
-
function
|
|
265
|
-
return
|
|
264
|
+
function Ke() {
|
|
265
|
+
return Mt;
|
|
266
266
|
}
|
|
267
|
-
const
|
|
267
|
+
const Ye = (r) => {
|
|
268
268
|
const { data: e, path: t, errorMaps: n, issueData: s } = r, a = [...t, ...s.path || []], i = {
|
|
269
269
|
...s,
|
|
270
270
|
path: a
|
|
@@ -276,17 +276,17 @@ const He = (r) => {
|
|
|
276
276
|
message: s.message
|
|
277
277
|
};
|
|
278
278
|
let o = "";
|
|
279
|
-
const u = n.filter((
|
|
280
|
-
for (const
|
|
281
|
-
o =
|
|
279
|
+
const u = n.filter((c) => !!c).slice().reverse();
|
|
280
|
+
for (const c of u)
|
|
281
|
+
o = c(i, { data: e, defaultError: o }).message;
|
|
282
282
|
return {
|
|
283
283
|
...s,
|
|
284
284
|
path: a,
|
|
285
285
|
message: o
|
|
286
286
|
};
|
|
287
|
-
},
|
|
287
|
+
}, Cr = [];
|
|
288
288
|
function l(r, e) {
|
|
289
|
-
const t =
|
|
289
|
+
const t = Ke(), n = Ye({
|
|
290
290
|
issueData: e,
|
|
291
291
|
data: r.data,
|
|
292
292
|
path: r.path,
|
|
@@ -294,13 +294,13 @@ function l(r, e) {
|
|
|
294
294
|
r.common.contextualErrorMap,
|
|
295
295
|
r.schemaErrorMap,
|
|
296
296
|
t,
|
|
297
|
-
t ===
|
|
297
|
+
t === _e ? void 0 : _e
|
|
298
298
|
// then global default map
|
|
299
299
|
].filter((s) => !!s)
|
|
300
300
|
});
|
|
301
301
|
r.common.issues.push(n);
|
|
302
302
|
}
|
|
303
|
-
class
|
|
303
|
+
class N {
|
|
304
304
|
constructor() {
|
|
305
305
|
this.value = "valid";
|
|
306
306
|
}
|
|
@@ -328,7 +328,7 @@ class I {
|
|
|
328
328
|
value: i
|
|
329
329
|
});
|
|
330
330
|
}
|
|
331
|
-
return
|
|
331
|
+
return N.mergeObjectSync(e, n);
|
|
332
332
|
}
|
|
333
333
|
static mergeObjectSync(e, t) {
|
|
334
334
|
const n = {};
|
|
@@ -343,21 +343,21 @@ class I {
|
|
|
343
343
|
}
|
|
344
344
|
const v = Object.freeze({
|
|
345
345
|
status: "aborted"
|
|
346
|
-
}),
|
|
347
|
-
function
|
|
346
|
+
}), ve = (r) => ({ status: "dirty", value: r }), P = (r) => ({ status: "valid", value: r }), ft = (r) => r.status === "aborted", ht = (r) => r.status === "dirty", Re = (r) => r.status === "valid", Ie = (r) => typeof Promise < "u" && r instanceof Promise;
|
|
347
|
+
function Je(r, e, t, n) {
|
|
348
348
|
if (typeof e == "function" ? r !== e || !n : !e.has(r)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
349
349
|
return e.get(r);
|
|
350
350
|
}
|
|
351
|
-
function
|
|
351
|
+
function Dt(r, e, t, n, s) {
|
|
352
352
|
if (typeof e == "function" ? r !== e || !s : !e.has(r)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
353
353
|
return e.set(r, t), t;
|
|
354
354
|
}
|
|
355
|
-
var
|
|
355
|
+
var m;
|
|
356
356
|
(function(r) {
|
|
357
357
|
r.errToObj = (e) => typeof e == "string" ? { message: e } : e || {}, r.toString = (e) => typeof e == "string" ? e : e == null ? void 0 : e.message;
|
|
358
|
-
})(
|
|
359
|
-
var
|
|
360
|
-
class
|
|
358
|
+
})(m || (m = {}));
|
|
359
|
+
var Se, Ce;
|
|
360
|
+
class Y {
|
|
361
361
|
constructor(e, t, n, s) {
|
|
362
362
|
this._cachedPath = [], this.parent = e, this.data = t, this._path = n, this._key = s;
|
|
363
363
|
}
|
|
@@ -365,8 +365,8 @@ class W {
|
|
|
365
365
|
return this._cachedPath.length || (this._key instanceof Array ? this._cachedPath.push(...this._path, ...this._key) : this._cachedPath.push(...this._path, this._key)), this._cachedPath;
|
|
366
366
|
}
|
|
367
367
|
}
|
|
368
|
-
const
|
|
369
|
-
if (
|
|
368
|
+
const Ot = (r, e) => {
|
|
369
|
+
if (Re(e))
|
|
370
370
|
return { success: !0, data: e.value };
|
|
371
371
|
if (!r.common.issues.length)
|
|
372
372
|
throw new Error("Validation failed but no issues detected.");
|
|
@@ -375,7 +375,7 @@ const St = (r, e) => {
|
|
|
375
375
|
get error() {
|
|
376
376
|
if (this._error)
|
|
377
377
|
return this._error;
|
|
378
|
-
const t = new
|
|
378
|
+
const t = new M(r.common.issues);
|
|
379
379
|
return this._error = t, this._error;
|
|
380
380
|
}
|
|
381
381
|
};
|
|
@@ -387,9 +387,9 @@ function g(r) {
|
|
|
387
387
|
if (e && (t || n))
|
|
388
388
|
throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
|
|
389
389
|
return e ? { errorMap: e, description: s } : { errorMap: (i, o) => {
|
|
390
|
-
var u,
|
|
391
|
-
const { message:
|
|
392
|
-
return i.code === "invalid_enum_value" ? { message:
|
|
390
|
+
var u, c;
|
|
391
|
+
const { message: p } = r;
|
|
392
|
+
return i.code === "invalid_enum_value" ? { message: p ?? o.defaultError } : typeof o.data > "u" ? { message: (u = p ?? n) !== null && u !== void 0 ? u : o.defaultError } : i.code !== "invalid_type" ? { message: o.defaultError } : { message: (c = p ?? t) !== null && c !== void 0 ? c : o.defaultError };
|
|
393
393
|
}, description: s };
|
|
394
394
|
}
|
|
395
395
|
class _ {
|
|
@@ -400,13 +400,13 @@ class _ {
|
|
|
400
400
|
return this._def.description;
|
|
401
401
|
}
|
|
402
402
|
_getType(e) {
|
|
403
|
-
return
|
|
403
|
+
return ie(e.data);
|
|
404
404
|
}
|
|
405
405
|
_getOrReturnCtx(e, t) {
|
|
406
406
|
return t || {
|
|
407
407
|
common: e.parent.common,
|
|
408
408
|
data: e.data,
|
|
409
|
-
parsedType:
|
|
409
|
+
parsedType: ie(e.data),
|
|
410
410
|
schemaErrorMap: this._def.errorMap,
|
|
411
411
|
path: e.path,
|
|
412
412
|
parent: e.parent
|
|
@@ -414,11 +414,11 @@ class _ {
|
|
|
414
414
|
}
|
|
415
415
|
_processInputParams(e) {
|
|
416
416
|
return {
|
|
417
|
-
status: new
|
|
417
|
+
status: new N(),
|
|
418
418
|
ctx: {
|
|
419
419
|
common: e.parent.common,
|
|
420
420
|
data: e.data,
|
|
421
|
-
parsedType:
|
|
421
|
+
parsedType: ie(e.data),
|
|
422
422
|
schemaErrorMap: this._def.errorMap,
|
|
423
423
|
path: e.path,
|
|
424
424
|
parent: e.parent
|
|
@@ -427,7 +427,7 @@ class _ {
|
|
|
427
427
|
}
|
|
428
428
|
_parseSync(e) {
|
|
429
429
|
const t = this._parse(e);
|
|
430
|
-
if (
|
|
430
|
+
if (Ie(t))
|
|
431
431
|
throw new Error("Synchronous parse encountered promise.");
|
|
432
432
|
return t;
|
|
433
433
|
}
|
|
@@ -453,9 +453,9 @@ class _ {
|
|
|
453
453
|
schemaErrorMap: this._def.errorMap,
|
|
454
454
|
parent: null,
|
|
455
455
|
data: e,
|
|
456
|
-
parsedType:
|
|
456
|
+
parsedType: ie(e)
|
|
457
457
|
}, a = this._parseSync({ data: e, path: s.path, parent: s });
|
|
458
|
-
return
|
|
458
|
+
return Ot(s, a);
|
|
459
459
|
}
|
|
460
460
|
async parseAsync(e, t) {
|
|
461
461
|
const n = await this.safeParseAsync(e, t);
|
|
@@ -474,15 +474,15 @@ class _ {
|
|
|
474
474
|
schemaErrorMap: this._def.errorMap,
|
|
475
475
|
parent: null,
|
|
476
476
|
data: e,
|
|
477
|
-
parsedType:
|
|
478
|
-
}, s = this._parse({ data: e, path: n.path, parent: n }), a = await (
|
|
479
|
-
return
|
|
477
|
+
parsedType: ie(e)
|
|
478
|
+
}, s = this._parse({ data: e, path: n.path, parent: n }), a = await (Ie(s) ? s : Promise.resolve(s));
|
|
479
|
+
return Ot(n, a);
|
|
480
480
|
}
|
|
481
481
|
refine(e, t) {
|
|
482
482
|
const n = (s) => typeof t == "string" || typeof t > "u" ? { message: t } : typeof t == "function" ? t(s) : t;
|
|
483
483
|
return this._refinement((s, a) => {
|
|
484
484
|
const i = e(s), o = () => a.addIssue({
|
|
485
|
-
code:
|
|
485
|
+
code: d.custom,
|
|
486
486
|
...n(s)
|
|
487
487
|
});
|
|
488
488
|
return typeof Promise < "u" && i instanceof Promise ? i.then((u) => u ? !0 : (o(), !1)) : i ? !0 : (o(), !1);
|
|
@@ -492,7 +492,7 @@ class _ {
|
|
|
492
492
|
return this._refinement((n, s) => e(n) ? !0 : (s.addIssue(typeof t == "function" ? t(n, s) : t), !1));
|
|
493
493
|
}
|
|
494
494
|
_refinement(e) {
|
|
495
|
-
return new
|
|
495
|
+
return new B({
|
|
496
496
|
schema: this,
|
|
497
497
|
typeName: y.ZodEffects,
|
|
498
498
|
effect: { type: "refinement", refinement: e }
|
|
@@ -502,28 +502,28 @@ class _ {
|
|
|
502
502
|
return this._refinement(e);
|
|
503
503
|
}
|
|
504
504
|
optional() {
|
|
505
|
-
return
|
|
505
|
+
return K.create(this, this._def);
|
|
506
506
|
}
|
|
507
507
|
nullable() {
|
|
508
|
-
return
|
|
508
|
+
return le.create(this, this._def);
|
|
509
509
|
}
|
|
510
510
|
nullish() {
|
|
511
511
|
return this.nullable().optional();
|
|
512
512
|
}
|
|
513
513
|
array() {
|
|
514
|
-
return
|
|
514
|
+
return F.create(this, this._def);
|
|
515
515
|
}
|
|
516
516
|
promise() {
|
|
517
|
-
return
|
|
517
|
+
return be.create(this, this._def);
|
|
518
518
|
}
|
|
519
519
|
or(e) {
|
|
520
|
-
return
|
|
520
|
+
return Ze.create([this, e], this._def);
|
|
521
521
|
}
|
|
522
522
|
and(e) {
|
|
523
|
-
return
|
|
523
|
+
return je.create(this, e, this._def);
|
|
524
524
|
}
|
|
525
525
|
transform(e) {
|
|
526
|
-
return new
|
|
526
|
+
return new B({
|
|
527
527
|
...g(this._def),
|
|
528
528
|
schema: this,
|
|
529
529
|
typeName: y.ZodEffects,
|
|
@@ -532,7 +532,7 @@ class _ {
|
|
|
532
532
|
}
|
|
533
533
|
default(e) {
|
|
534
534
|
const t = typeof e == "function" ? e : () => e;
|
|
535
|
-
return new
|
|
535
|
+
return new $e({
|
|
536
536
|
...g(this._def),
|
|
537
537
|
innerType: this,
|
|
538
538
|
defaultValue: t,
|
|
@@ -540,7 +540,7 @@ class _ {
|
|
|
540
540
|
});
|
|
541
541
|
}
|
|
542
542
|
brand() {
|
|
543
|
-
return new
|
|
543
|
+
return new yt({
|
|
544
544
|
typeName: y.ZodBranded,
|
|
545
545
|
type: this,
|
|
546
546
|
...g(this._def)
|
|
@@ -548,7 +548,7 @@ class _ {
|
|
|
548
548
|
}
|
|
549
549
|
catch(e) {
|
|
550
550
|
const t = typeof e == "function" ? e : () => e;
|
|
551
|
-
return new
|
|
551
|
+
return new Ve({
|
|
552
552
|
...g(this._def),
|
|
553
553
|
innerType: this,
|
|
554
554
|
catchValue: t,
|
|
@@ -563,10 +563,10 @@ class _ {
|
|
|
563
563
|
});
|
|
564
564
|
}
|
|
565
565
|
pipe(e) {
|
|
566
|
-
return
|
|
566
|
+
return Fe.create(this, e);
|
|
567
567
|
}
|
|
568
568
|
readonly() {
|
|
569
|
-
return
|
|
569
|
+
return ze.create(this);
|
|
570
570
|
}
|
|
571
571
|
isOptional() {
|
|
572
572
|
return this.safeParse(void 0).success;
|
|
@@ -575,40 +575,40 @@ class _ {
|
|
|
575
575
|
return this.safeParse(null).success;
|
|
576
576
|
}
|
|
577
577
|
}
|
|
578
|
-
const
|
|
579
|
-
let
|
|
580
|
-
const
|
|
581
|
-
function
|
|
578
|
+
const Or = /^c[^\s-]{8,}$/i, Rr = /^[0-9a-z]+$/, Ir = /^[0-9A-HJKMNP-TV-Z]{26}$/, Nr = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i, Ar = /^[a-z0-9_-]{21}$/i, Pr = /^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/, Zr = /^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i, jr = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
|
579
|
+
let ut;
|
|
580
|
+
const Mr = /^(?:(?: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])$/, Dr = /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/, Lr = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/, Lt = "((\\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])))", Ur = new RegExp(`^${Lt}$`);
|
|
581
|
+
function Ut(r) {
|
|
582
582
|
let e = "([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d";
|
|
583
583
|
return r.precision ? e = `${e}\\.\\d{${r.precision}}` : r.precision == null && (e = `${e}(\\.\\d+)?`), e;
|
|
584
584
|
}
|
|
585
|
-
function
|
|
586
|
-
return new RegExp(`^${
|
|
585
|
+
function $r(r) {
|
|
586
|
+
return new RegExp(`^${Ut(r)}$`);
|
|
587
587
|
}
|
|
588
|
-
function
|
|
589
|
-
let e = `${
|
|
588
|
+
function $t(r) {
|
|
589
|
+
let e = `${Lt}T${Ut(r)}`;
|
|
590
590
|
const t = [];
|
|
591
591
|
return t.push(r.local ? "Z?" : "Z"), r.offset && t.push("([+-]\\d{2}:?\\d{2})"), e = `${e}(${t.join("|")})`, new RegExp(`^${e}$`);
|
|
592
592
|
}
|
|
593
|
-
function
|
|
594
|
-
return !!((e === "v4" || !e) &&
|
|
593
|
+
function Vr(r, e) {
|
|
594
|
+
return !!((e === "v4" || !e) && Mr.test(r) || (e === "v6" || !e) && Dr.test(r));
|
|
595
595
|
}
|
|
596
|
-
class
|
|
596
|
+
class z extends _ {
|
|
597
597
|
_parse(e) {
|
|
598
|
-
if (this._def.coerce && (e.data = String(e.data)), this._getType(e) !==
|
|
598
|
+
if (this._def.coerce && (e.data = String(e.data)), this._getType(e) !== h.string) {
|
|
599
599
|
const a = this._getOrReturnCtx(e);
|
|
600
600
|
return l(a, {
|
|
601
|
-
code:
|
|
602
|
-
expected:
|
|
601
|
+
code: d.invalid_type,
|
|
602
|
+
expected: h.string,
|
|
603
603
|
received: a.parsedType
|
|
604
604
|
}), v;
|
|
605
605
|
}
|
|
606
|
-
const n = new
|
|
606
|
+
const n = new N();
|
|
607
607
|
let s;
|
|
608
608
|
for (const a of this._def.checks)
|
|
609
609
|
if (a.kind === "min")
|
|
610
610
|
e.data.length < a.value && (s = this._getOrReturnCtx(e, s), l(s, {
|
|
611
|
-
code:
|
|
611
|
+
code: d.too_small,
|
|
612
612
|
minimum: a.value,
|
|
613
613
|
type: "string",
|
|
614
614
|
inclusive: !0,
|
|
@@ -617,7 +617,7 @@ class $ extends _ {
|
|
|
617
617
|
}), n.dirty());
|
|
618
618
|
else if (a.kind === "max")
|
|
619
619
|
e.data.length > a.value && (s = this._getOrReturnCtx(e, s), l(s, {
|
|
620
|
-
code:
|
|
620
|
+
code: d.too_big,
|
|
621
621
|
maximum: a.value,
|
|
622
622
|
type: "string",
|
|
623
623
|
inclusive: !0,
|
|
@@ -627,14 +627,14 @@ class $ extends _ {
|
|
|
627
627
|
else if (a.kind === "length") {
|
|
628
628
|
const i = e.data.length > a.value, o = e.data.length < a.value;
|
|
629
629
|
(i || o) && (s = this._getOrReturnCtx(e, s), i ? l(s, {
|
|
630
|
-
code:
|
|
630
|
+
code: d.too_big,
|
|
631
631
|
maximum: a.value,
|
|
632
632
|
type: "string",
|
|
633
633
|
inclusive: !0,
|
|
634
634
|
exact: !0,
|
|
635
635
|
message: a.message
|
|
636
636
|
}) : o && l(s, {
|
|
637
|
-
code:
|
|
637
|
+
code: d.too_small,
|
|
638
638
|
minimum: a.value,
|
|
639
639
|
type: "string",
|
|
640
640
|
inclusive: !0,
|
|
@@ -644,43 +644,43 @@ class $ extends _ {
|
|
|
644
644
|
} else if (a.kind === "email")
|
|
645
645
|
Zr.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
646
646
|
validation: "email",
|
|
647
|
-
code:
|
|
647
|
+
code: d.invalid_string,
|
|
648
648
|
message: a.message
|
|
649
649
|
}), n.dirty());
|
|
650
650
|
else if (a.kind === "emoji")
|
|
651
|
-
|
|
651
|
+
ut || (ut = new RegExp(jr, "u")), ut.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
652
652
|
validation: "emoji",
|
|
653
|
-
code:
|
|
653
|
+
code: d.invalid_string,
|
|
654
654
|
message: a.message
|
|
655
655
|
}), n.dirty());
|
|
656
656
|
else if (a.kind === "uuid")
|
|
657
|
-
|
|
657
|
+
Nr.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
658
658
|
validation: "uuid",
|
|
659
|
-
code:
|
|
659
|
+
code: d.invalid_string,
|
|
660
660
|
message: a.message
|
|
661
661
|
}), n.dirty());
|
|
662
662
|
else if (a.kind === "nanoid")
|
|
663
|
-
|
|
663
|
+
Ar.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
664
664
|
validation: "nanoid",
|
|
665
|
-
code:
|
|
665
|
+
code: d.invalid_string,
|
|
666
666
|
message: a.message
|
|
667
667
|
}), n.dirty());
|
|
668
668
|
else if (a.kind === "cuid")
|
|
669
|
-
|
|
669
|
+
Or.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
670
670
|
validation: "cuid",
|
|
671
|
-
code:
|
|
671
|
+
code: d.invalid_string,
|
|
672
672
|
message: a.message
|
|
673
673
|
}), n.dirty());
|
|
674
674
|
else if (a.kind === "cuid2")
|
|
675
|
-
|
|
675
|
+
Rr.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
676
676
|
validation: "cuid2",
|
|
677
|
-
code:
|
|
677
|
+
code: d.invalid_string,
|
|
678
678
|
message: a.message
|
|
679
679
|
}), n.dirty());
|
|
680
680
|
else if (a.kind === "ulid")
|
|
681
|
-
|
|
681
|
+
Ir.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
682
682
|
validation: "ulid",
|
|
683
|
-
code:
|
|
683
|
+
code: d.invalid_string,
|
|
684
684
|
message: a.message
|
|
685
685
|
}), n.dirty());
|
|
686
686
|
else if (a.kind === "url")
|
|
@@ -689,49 +689,49 @@ class $ extends _ {
|
|
|
689
689
|
} catch {
|
|
690
690
|
s = this._getOrReturnCtx(e, s), l(s, {
|
|
691
691
|
validation: "url",
|
|
692
|
-
code:
|
|
692
|
+
code: d.invalid_string,
|
|
693
693
|
message: a.message
|
|
694
694
|
}), n.dirty();
|
|
695
695
|
}
|
|
696
696
|
else a.kind === "regex" ? (a.regex.lastIndex = 0, a.regex.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
697
697
|
validation: "regex",
|
|
698
|
-
code:
|
|
698
|
+
code: d.invalid_string,
|
|
699
699
|
message: a.message
|
|
700
700
|
}), n.dirty())) : a.kind === "trim" ? e.data = e.data.trim() : a.kind === "includes" ? e.data.includes(a.value, a.position) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
701
|
-
code:
|
|
701
|
+
code: d.invalid_string,
|
|
702
702
|
validation: { includes: a.value, position: a.position },
|
|
703
703
|
message: a.message
|
|
704
704
|
}), n.dirty()) : a.kind === "toLowerCase" ? e.data = e.data.toLowerCase() : a.kind === "toUpperCase" ? e.data = e.data.toUpperCase() : a.kind === "startsWith" ? e.data.startsWith(a.value) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
705
|
-
code:
|
|
705
|
+
code: d.invalid_string,
|
|
706
706
|
validation: { startsWith: a.value },
|
|
707
707
|
message: a.message
|
|
708
708
|
}), n.dirty()) : a.kind === "endsWith" ? e.data.endsWith(a.value) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
709
|
-
code:
|
|
709
|
+
code: d.invalid_string,
|
|
710
710
|
validation: { endsWith: a.value },
|
|
711
711
|
message: a.message
|
|
712
|
-
}), n.dirty()) : a.kind === "datetime" ?
|
|
713
|
-
code:
|
|
712
|
+
}), n.dirty()) : a.kind === "datetime" ? $t(a).test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
713
|
+
code: d.invalid_string,
|
|
714
714
|
validation: "datetime",
|
|
715
715
|
message: a.message
|
|
716
|
-
}), n.dirty()) : a.kind === "date" ?
|
|
717
|
-
code:
|
|
716
|
+
}), n.dirty()) : a.kind === "date" ? Ur.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
717
|
+
code: d.invalid_string,
|
|
718
718
|
validation: "date",
|
|
719
719
|
message: a.message
|
|
720
|
-
}), n.dirty()) : a.kind === "time" ?
|
|
721
|
-
code:
|
|
720
|
+
}), n.dirty()) : a.kind === "time" ? $r(a).test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
721
|
+
code: d.invalid_string,
|
|
722
722
|
validation: "time",
|
|
723
723
|
message: a.message
|
|
724
|
-
}), n.dirty()) : a.kind === "duration" ?
|
|
724
|
+
}), n.dirty()) : a.kind === "duration" ? Pr.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
725
725
|
validation: "duration",
|
|
726
|
-
code:
|
|
726
|
+
code: d.invalid_string,
|
|
727
727
|
message: a.message
|
|
728
|
-
}), n.dirty()) : a.kind === "ip" ?
|
|
728
|
+
}), n.dirty()) : a.kind === "ip" ? Vr(e.data, a.version) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
729
729
|
validation: "ip",
|
|
730
|
-
code:
|
|
730
|
+
code: d.invalid_string,
|
|
731
731
|
message: a.message
|
|
732
|
-
}), n.dirty()) : a.kind === "base64" ?
|
|
732
|
+
}), n.dirty()) : a.kind === "base64" ? Lr.test(e.data) || (s = this._getOrReturnCtx(e, s), l(s, {
|
|
733
733
|
validation: "base64",
|
|
734
|
-
code:
|
|
734
|
+
code: d.invalid_string,
|
|
735
735
|
message: a.message
|
|
736
736
|
}), n.dirty()) : x.assertNever(a);
|
|
737
737
|
return { status: n.value, value: e.data };
|
|
@@ -739,45 +739,45 @@ class $ extends _ {
|
|
|
739
739
|
_regex(e, t, n) {
|
|
740
740
|
return this.refinement((s) => e.test(s), {
|
|
741
741
|
validation: t,
|
|
742
|
-
code:
|
|
743
|
-
...
|
|
742
|
+
code: d.invalid_string,
|
|
743
|
+
...m.errToObj(n)
|
|
744
744
|
});
|
|
745
745
|
}
|
|
746
746
|
_addCheck(e) {
|
|
747
|
-
return new
|
|
747
|
+
return new z({
|
|
748
748
|
...this._def,
|
|
749
749
|
checks: [...this._def.checks, e]
|
|
750
750
|
});
|
|
751
751
|
}
|
|
752
752
|
email(e) {
|
|
753
|
-
return this._addCheck({ kind: "email", ...
|
|
753
|
+
return this._addCheck({ kind: "email", ...m.errToObj(e) });
|
|
754
754
|
}
|
|
755
755
|
url(e) {
|
|
756
|
-
return this._addCheck({ kind: "url", ...
|
|
756
|
+
return this._addCheck({ kind: "url", ...m.errToObj(e) });
|
|
757
757
|
}
|
|
758
758
|
emoji(e) {
|
|
759
|
-
return this._addCheck({ kind: "emoji", ...
|
|
759
|
+
return this._addCheck({ kind: "emoji", ...m.errToObj(e) });
|
|
760
760
|
}
|
|
761
761
|
uuid(e) {
|
|
762
|
-
return this._addCheck({ kind: "uuid", ...
|
|
762
|
+
return this._addCheck({ kind: "uuid", ...m.errToObj(e) });
|
|
763
763
|
}
|
|
764
764
|
nanoid(e) {
|
|
765
|
-
return this._addCheck({ kind: "nanoid", ...
|
|
765
|
+
return this._addCheck({ kind: "nanoid", ...m.errToObj(e) });
|
|
766
766
|
}
|
|
767
767
|
cuid(e) {
|
|
768
|
-
return this._addCheck({ kind: "cuid", ...
|
|
768
|
+
return this._addCheck({ kind: "cuid", ...m.errToObj(e) });
|
|
769
769
|
}
|
|
770
770
|
cuid2(e) {
|
|
771
|
-
return this._addCheck({ kind: "cuid2", ...
|
|
771
|
+
return this._addCheck({ kind: "cuid2", ...m.errToObj(e) });
|
|
772
772
|
}
|
|
773
773
|
ulid(e) {
|
|
774
|
-
return this._addCheck({ kind: "ulid", ...
|
|
774
|
+
return this._addCheck({ kind: "ulid", ...m.errToObj(e) });
|
|
775
775
|
}
|
|
776
776
|
base64(e) {
|
|
777
|
-
return this._addCheck({ kind: "base64", ...
|
|
777
|
+
return this._addCheck({ kind: "base64", ...m.errToObj(e) });
|
|
778
778
|
}
|
|
779
779
|
ip(e) {
|
|
780
|
-
return this._addCheck({ kind: "ip", ...
|
|
780
|
+
return this._addCheck({ kind: "ip", ...m.errToObj(e) });
|
|
781
781
|
}
|
|
782
782
|
datetime(e) {
|
|
783
783
|
var t, n;
|
|
@@ -792,7 +792,7 @@ class $ extends _ {
|
|
|
792
792
|
precision: typeof (e == null ? void 0 : e.precision) > "u" ? null : e == null ? void 0 : e.precision,
|
|
793
793
|
offset: (t = e == null ? void 0 : e.offset) !== null && t !== void 0 ? t : !1,
|
|
794
794
|
local: (n = e == null ? void 0 : e.local) !== null && n !== void 0 ? n : !1,
|
|
795
|
-
...
|
|
795
|
+
...m.errToObj(e == null ? void 0 : e.message)
|
|
796
796
|
});
|
|
797
797
|
}
|
|
798
798
|
date(e) {
|
|
@@ -806,17 +806,17 @@ class $ extends _ {
|
|
|
806
806
|
}) : this._addCheck({
|
|
807
807
|
kind: "time",
|
|
808
808
|
precision: typeof (e == null ? void 0 : e.precision) > "u" ? null : e == null ? void 0 : e.precision,
|
|
809
|
-
...
|
|
809
|
+
...m.errToObj(e == null ? void 0 : e.message)
|
|
810
810
|
});
|
|
811
811
|
}
|
|
812
812
|
duration(e) {
|
|
813
|
-
return this._addCheck({ kind: "duration", ...
|
|
813
|
+
return this._addCheck({ kind: "duration", ...m.errToObj(e) });
|
|
814
814
|
}
|
|
815
815
|
regex(e, t) {
|
|
816
816
|
return this._addCheck({
|
|
817
817
|
kind: "regex",
|
|
818
818
|
regex: e,
|
|
819
|
-
...
|
|
819
|
+
...m.errToObj(t)
|
|
820
820
|
});
|
|
821
821
|
}
|
|
822
822
|
includes(e, t) {
|
|
@@ -824,42 +824,42 @@ class $ extends _ {
|
|
|
824
824
|
kind: "includes",
|
|
825
825
|
value: e,
|
|
826
826
|
position: t == null ? void 0 : t.position,
|
|
827
|
-
...
|
|
827
|
+
...m.errToObj(t == null ? void 0 : t.message)
|
|
828
828
|
});
|
|
829
829
|
}
|
|
830
830
|
startsWith(e, t) {
|
|
831
831
|
return this._addCheck({
|
|
832
832
|
kind: "startsWith",
|
|
833
833
|
value: e,
|
|
834
|
-
...
|
|
834
|
+
...m.errToObj(t)
|
|
835
835
|
});
|
|
836
836
|
}
|
|
837
837
|
endsWith(e, t) {
|
|
838
838
|
return this._addCheck({
|
|
839
839
|
kind: "endsWith",
|
|
840
840
|
value: e,
|
|
841
|
-
...
|
|
841
|
+
...m.errToObj(t)
|
|
842
842
|
});
|
|
843
843
|
}
|
|
844
844
|
min(e, t) {
|
|
845
845
|
return this._addCheck({
|
|
846
846
|
kind: "min",
|
|
847
847
|
value: e,
|
|
848
|
-
...
|
|
848
|
+
...m.errToObj(t)
|
|
849
849
|
});
|
|
850
850
|
}
|
|
851
851
|
max(e, t) {
|
|
852
852
|
return this._addCheck({
|
|
853
853
|
kind: "max",
|
|
854
854
|
value: e,
|
|
855
|
-
...
|
|
855
|
+
...m.errToObj(t)
|
|
856
856
|
});
|
|
857
857
|
}
|
|
858
858
|
length(e, t) {
|
|
859
859
|
return this._addCheck({
|
|
860
860
|
kind: "length",
|
|
861
861
|
value: e,
|
|
862
|
-
...
|
|
862
|
+
...m.errToObj(t)
|
|
863
863
|
});
|
|
864
864
|
}
|
|
865
865
|
/**
|
|
@@ -867,22 +867,22 @@ class $ extends _ {
|
|
|
867
867
|
* @see {@link ZodString.min}
|
|
868
868
|
*/
|
|
869
869
|
nonempty(e) {
|
|
870
|
-
return this.min(1,
|
|
870
|
+
return this.min(1, m.errToObj(e));
|
|
871
871
|
}
|
|
872
872
|
trim() {
|
|
873
|
-
return new
|
|
873
|
+
return new z({
|
|
874
874
|
...this._def,
|
|
875
875
|
checks: [...this._def.checks, { kind: "trim" }]
|
|
876
876
|
});
|
|
877
877
|
}
|
|
878
878
|
toLowerCase() {
|
|
879
|
-
return new
|
|
879
|
+
return new z({
|
|
880
880
|
...this._def,
|
|
881
881
|
checks: [...this._def.checks, { kind: "toLowerCase" }]
|
|
882
882
|
});
|
|
883
883
|
}
|
|
884
884
|
toUpperCase() {
|
|
885
|
-
return new
|
|
885
|
+
return new z({
|
|
886
886
|
...this._def,
|
|
887
887
|
checks: [...this._def.checks, { kind: "toUpperCase" }]
|
|
888
888
|
});
|
|
@@ -942,78 +942,78 @@ class $ extends _ {
|
|
|
942
942
|
return e;
|
|
943
943
|
}
|
|
944
944
|
}
|
|
945
|
-
|
|
945
|
+
z.create = (r) => {
|
|
946
946
|
var e;
|
|
947
|
-
return new
|
|
947
|
+
return new z({
|
|
948
948
|
checks: [],
|
|
949
949
|
typeName: y.ZodString,
|
|
950
950
|
coerce: (e = r == null ? void 0 : r.coerce) !== null && e !== void 0 ? e : !1,
|
|
951
951
|
...g(r)
|
|
952
952
|
});
|
|
953
953
|
};
|
|
954
|
-
function
|
|
954
|
+
function zr(r, e) {
|
|
955
955
|
const t = (r.toString().split(".")[1] || "").length, n = (e.toString().split(".")[1] || "").length, s = t > n ? t : n, a = parseInt(r.toFixed(s).replace(".", "")), i = parseInt(e.toFixed(s).replace(".", ""));
|
|
956
956
|
return a % i / Math.pow(10, s);
|
|
957
957
|
}
|
|
958
|
-
class
|
|
958
|
+
class ce extends _ {
|
|
959
959
|
constructor() {
|
|
960
960
|
super(...arguments), this.min = this.gte, this.max = this.lte, this.step = this.multipleOf;
|
|
961
961
|
}
|
|
962
962
|
_parse(e) {
|
|
963
|
-
if (this._def.coerce && (e.data = Number(e.data)), this._getType(e) !==
|
|
963
|
+
if (this._def.coerce && (e.data = Number(e.data)), this._getType(e) !== h.number) {
|
|
964
964
|
const a = this._getOrReturnCtx(e);
|
|
965
965
|
return l(a, {
|
|
966
|
-
code:
|
|
967
|
-
expected:
|
|
966
|
+
code: d.invalid_type,
|
|
967
|
+
expected: h.number,
|
|
968
968
|
received: a.parsedType
|
|
969
969
|
}), v;
|
|
970
970
|
}
|
|
971
971
|
let n;
|
|
972
|
-
const s = new
|
|
972
|
+
const s = new N();
|
|
973
973
|
for (const a of this._def.checks)
|
|
974
974
|
a.kind === "int" ? x.isInteger(e.data) || (n = this._getOrReturnCtx(e, n), l(n, {
|
|
975
|
-
code:
|
|
975
|
+
code: d.invalid_type,
|
|
976
976
|
expected: "integer",
|
|
977
977
|
received: "float",
|
|
978
978
|
message: a.message
|
|
979
979
|
}), s.dirty()) : a.kind === "min" ? (a.inclusive ? e.data < a.value : e.data <= a.value) && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
980
|
-
code:
|
|
980
|
+
code: d.too_small,
|
|
981
981
|
minimum: a.value,
|
|
982
982
|
type: "number",
|
|
983
983
|
inclusive: a.inclusive,
|
|
984
984
|
exact: !1,
|
|
985
985
|
message: a.message
|
|
986
986
|
}), s.dirty()) : a.kind === "max" ? (a.inclusive ? e.data > a.value : e.data >= a.value) && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
987
|
-
code:
|
|
987
|
+
code: d.too_big,
|
|
988
988
|
maximum: a.value,
|
|
989
989
|
type: "number",
|
|
990
990
|
inclusive: a.inclusive,
|
|
991
991
|
exact: !1,
|
|
992
992
|
message: a.message
|
|
993
|
-
}), s.dirty()) : a.kind === "multipleOf" ?
|
|
994
|
-
code:
|
|
993
|
+
}), s.dirty()) : a.kind === "multipleOf" ? zr(e.data, a.value) !== 0 && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
994
|
+
code: d.not_multiple_of,
|
|
995
995
|
multipleOf: a.value,
|
|
996
996
|
message: a.message
|
|
997
997
|
}), s.dirty()) : a.kind === "finite" ? Number.isFinite(e.data) || (n = this._getOrReturnCtx(e, n), l(n, {
|
|
998
|
-
code:
|
|
998
|
+
code: d.not_finite,
|
|
999
999
|
message: a.message
|
|
1000
1000
|
}), s.dirty()) : x.assertNever(a);
|
|
1001
1001
|
return { status: s.value, value: e.data };
|
|
1002
1002
|
}
|
|
1003
1003
|
gte(e, t) {
|
|
1004
|
-
return this.setLimit("min", e, !0,
|
|
1004
|
+
return this.setLimit("min", e, !0, m.toString(t));
|
|
1005
1005
|
}
|
|
1006
1006
|
gt(e, t) {
|
|
1007
|
-
return this.setLimit("min", e, !1,
|
|
1007
|
+
return this.setLimit("min", e, !1, m.toString(t));
|
|
1008
1008
|
}
|
|
1009
1009
|
lte(e, t) {
|
|
1010
|
-
return this.setLimit("max", e, !0,
|
|
1010
|
+
return this.setLimit("max", e, !0, m.toString(t));
|
|
1011
1011
|
}
|
|
1012
1012
|
lt(e, t) {
|
|
1013
|
-
return this.setLimit("max", e, !1,
|
|
1013
|
+
return this.setLimit("max", e, !1, m.toString(t));
|
|
1014
1014
|
}
|
|
1015
1015
|
setLimit(e, t, n, s) {
|
|
1016
|
-
return new
|
|
1016
|
+
return new ce({
|
|
1017
1017
|
...this._def,
|
|
1018
1018
|
checks: [
|
|
1019
1019
|
...this._def.checks,
|
|
@@ -1021,13 +1021,13 @@ class ne extends _ {
|
|
|
1021
1021
|
kind: e,
|
|
1022
1022
|
value: t,
|
|
1023
1023
|
inclusive: n,
|
|
1024
|
-
message:
|
|
1024
|
+
message: m.toString(s)
|
|
1025
1025
|
}
|
|
1026
1026
|
]
|
|
1027
1027
|
});
|
|
1028
1028
|
}
|
|
1029
1029
|
_addCheck(e) {
|
|
1030
|
-
return new
|
|
1030
|
+
return new ce({
|
|
1031
1031
|
...this._def,
|
|
1032
1032
|
checks: [...this._def.checks, e]
|
|
1033
1033
|
});
|
|
@@ -1035,7 +1035,7 @@ class ne extends _ {
|
|
|
1035
1035
|
int(e) {
|
|
1036
1036
|
return this._addCheck({
|
|
1037
1037
|
kind: "int",
|
|
1038
|
-
message:
|
|
1038
|
+
message: m.toString(e)
|
|
1039
1039
|
});
|
|
1040
1040
|
}
|
|
1041
1041
|
positive(e) {
|
|
@@ -1043,7 +1043,7 @@ class ne extends _ {
|
|
|
1043
1043
|
kind: "min",
|
|
1044
1044
|
value: 0,
|
|
1045
1045
|
inclusive: !1,
|
|
1046
|
-
message:
|
|
1046
|
+
message: m.toString(e)
|
|
1047
1047
|
});
|
|
1048
1048
|
}
|
|
1049
1049
|
negative(e) {
|
|
@@ -1051,7 +1051,7 @@ class ne extends _ {
|
|
|
1051
1051
|
kind: "max",
|
|
1052
1052
|
value: 0,
|
|
1053
1053
|
inclusive: !1,
|
|
1054
|
-
message:
|
|
1054
|
+
message: m.toString(e)
|
|
1055
1055
|
});
|
|
1056
1056
|
}
|
|
1057
1057
|
nonpositive(e) {
|
|
@@ -1059,7 +1059,7 @@ class ne extends _ {
|
|
|
1059
1059
|
kind: "max",
|
|
1060
1060
|
value: 0,
|
|
1061
1061
|
inclusive: !0,
|
|
1062
|
-
message:
|
|
1062
|
+
message: m.toString(e)
|
|
1063
1063
|
});
|
|
1064
1064
|
}
|
|
1065
1065
|
nonnegative(e) {
|
|
@@ -1067,20 +1067,20 @@ class ne extends _ {
|
|
|
1067
1067
|
kind: "min",
|
|
1068
1068
|
value: 0,
|
|
1069
1069
|
inclusive: !0,
|
|
1070
|
-
message:
|
|
1070
|
+
message: m.toString(e)
|
|
1071
1071
|
});
|
|
1072
1072
|
}
|
|
1073
1073
|
multipleOf(e, t) {
|
|
1074
1074
|
return this._addCheck({
|
|
1075
1075
|
kind: "multipleOf",
|
|
1076
1076
|
value: e,
|
|
1077
|
-
message:
|
|
1077
|
+
message: m.toString(t)
|
|
1078
1078
|
});
|
|
1079
1079
|
}
|
|
1080
1080
|
finite(e) {
|
|
1081
1081
|
return this._addCheck({
|
|
1082
1082
|
kind: "finite",
|
|
1083
|
-
message:
|
|
1083
|
+
message: m.toString(e)
|
|
1084
1084
|
});
|
|
1085
1085
|
}
|
|
1086
1086
|
safe(e) {
|
|
@@ -1088,12 +1088,12 @@ class ne extends _ {
|
|
|
1088
1088
|
kind: "min",
|
|
1089
1089
|
inclusive: !0,
|
|
1090
1090
|
value: Number.MIN_SAFE_INTEGER,
|
|
1091
|
-
message:
|
|
1091
|
+
message: m.toString(e)
|
|
1092
1092
|
})._addCheck({
|
|
1093
1093
|
kind: "max",
|
|
1094
1094
|
inclusive: !0,
|
|
1095
1095
|
value: Number.MAX_SAFE_INTEGER,
|
|
1096
|
-
message:
|
|
1096
|
+
message: m.toString(e)
|
|
1097
1097
|
});
|
|
1098
1098
|
}
|
|
1099
1099
|
get minValue() {
|
|
@@ -1121,61 +1121,61 @@ class ne extends _ {
|
|
|
1121
1121
|
return Number.isFinite(t) && Number.isFinite(e);
|
|
1122
1122
|
}
|
|
1123
1123
|
}
|
|
1124
|
-
|
|
1124
|
+
ce.create = (r) => new ce({
|
|
1125
1125
|
checks: [],
|
|
1126
1126
|
typeName: y.ZodNumber,
|
|
1127
1127
|
coerce: (r == null ? void 0 : r.coerce) || !1,
|
|
1128
1128
|
...g(r)
|
|
1129
1129
|
});
|
|
1130
|
-
class
|
|
1130
|
+
class de extends _ {
|
|
1131
1131
|
constructor() {
|
|
1132
1132
|
super(...arguments), this.min = this.gte, this.max = this.lte;
|
|
1133
1133
|
}
|
|
1134
1134
|
_parse(e) {
|
|
1135
|
-
if (this._def.coerce && (e.data = BigInt(e.data)), this._getType(e) !==
|
|
1135
|
+
if (this._def.coerce && (e.data = BigInt(e.data)), this._getType(e) !== h.bigint) {
|
|
1136
1136
|
const a = this._getOrReturnCtx(e);
|
|
1137
1137
|
return l(a, {
|
|
1138
|
-
code:
|
|
1139
|
-
expected:
|
|
1138
|
+
code: d.invalid_type,
|
|
1139
|
+
expected: h.bigint,
|
|
1140
1140
|
received: a.parsedType
|
|
1141
1141
|
}), v;
|
|
1142
1142
|
}
|
|
1143
1143
|
let n;
|
|
1144
|
-
const s = new
|
|
1144
|
+
const s = new N();
|
|
1145
1145
|
for (const a of this._def.checks)
|
|
1146
1146
|
a.kind === "min" ? (a.inclusive ? e.data < a.value : e.data <= a.value) && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
1147
|
-
code:
|
|
1147
|
+
code: d.too_small,
|
|
1148
1148
|
type: "bigint",
|
|
1149
1149
|
minimum: a.value,
|
|
1150
1150
|
inclusive: a.inclusive,
|
|
1151
1151
|
message: a.message
|
|
1152
1152
|
}), s.dirty()) : a.kind === "max" ? (a.inclusive ? e.data > a.value : e.data >= a.value) && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
1153
|
-
code:
|
|
1153
|
+
code: d.too_big,
|
|
1154
1154
|
type: "bigint",
|
|
1155
1155
|
maximum: a.value,
|
|
1156
1156
|
inclusive: a.inclusive,
|
|
1157
1157
|
message: a.message
|
|
1158
1158
|
}), s.dirty()) : a.kind === "multipleOf" ? e.data % a.value !== BigInt(0) && (n = this._getOrReturnCtx(e, n), l(n, {
|
|
1159
|
-
code:
|
|
1159
|
+
code: d.not_multiple_of,
|
|
1160
1160
|
multipleOf: a.value,
|
|
1161
1161
|
message: a.message
|
|
1162
1162
|
}), s.dirty()) : x.assertNever(a);
|
|
1163
1163
|
return { status: s.value, value: e.data };
|
|
1164
1164
|
}
|
|
1165
1165
|
gte(e, t) {
|
|
1166
|
-
return this.setLimit("min", e, !0,
|
|
1166
|
+
return this.setLimit("min", e, !0, m.toString(t));
|
|
1167
1167
|
}
|
|
1168
1168
|
gt(e, t) {
|
|
1169
|
-
return this.setLimit("min", e, !1,
|
|
1169
|
+
return this.setLimit("min", e, !1, m.toString(t));
|
|
1170
1170
|
}
|
|
1171
1171
|
lte(e, t) {
|
|
1172
|
-
return this.setLimit("max", e, !0,
|
|
1172
|
+
return this.setLimit("max", e, !0, m.toString(t));
|
|
1173
1173
|
}
|
|
1174
1174
|
lt(e, t) {
|
|
1175
|
-
return this.setLimit("max", e, !1,
|
|
1175
|
+
return this.setLimit("max", e, !1, m.toString(t));
|
|
1176
1176
|
}
|
|
1177
1177
|
setLimit(e, t, n, s) {
|
|
1178
|
-
return new
|
|
1178
|
+
return new de({
|
|
1179
1179
|
...this._def,
|
|
1180
1180
|
checks: [
|
|
1181
1181
|
...this._def.checks,
|
|
@@ -1183,13 +1183,13 @@ class se extends _ {
|
|
|
1183
1183
|
kind: e,
|
|
1184
1184
|
value: t,
|
|
1185
1185
|
inclusive: n,
|
|
1186
|
-
message:
|
|
1186
|
+
message: m.toString(s)
|
|
1187
1187
|
}
|
|
1188
1188
|
]
|
|
1189
1189
|
});
|
|
1190
1190
|
}
|
|
1191
1191
|
_addCheck(e) {
|
|
1192
|
-
return new
|
|
1192
|
+
return new de({
|
|
1193
1193
|
...this._def,
|
|
1194
1194
|
checks: [...this._def.checks, e]
|
|
1195
1195
|
});
|
|
@@ -1199,7 +1199,7 @@ class se extends _ {
|
|
|
1199
1199
|
kind: "min",
|
|
1200
1200
|
value: BigInt(0),
|
|
1201
1201
|
inclusive: !1,
|
|
1202
|
-
message:
|
|
1202
|
+
message: m.toString(e)
|
|
1203
1203
|
});
|
|
1204
1204
|
}
|
|
1205
1205
|
negative(e) {
|
|
@@ -1207,7 +1207,7 @@ class se extends _ {
|
|
|
1207
1207
|
kind: "max",
|
|
1208
1208
|
value: BigInt(0),
|
|
1209
1209
|
inclusive: !1,
|
|
1210
|
-
message:
|
|
1210
|
+
message: m.toString(e)
|
|
1211
1211
|
});
|
|
1212
1212
|
}
|
|
1213
1213
|
nonpositive(e) {
|
|
@@ -1215,7 +1215,7 @@ class se extends _ {
|
|
|
1215
1215
|
kind: "max",
|
|
1216
1216
|
value: BigInt(0),
|
|
1217
1217
|
inclusive: !0,
|
|
1218
|
-
message:
|
|
1218
|
+
message: m.toString(e)
|
|
1219
1219
|
});
|
|
1220
1220
|
}
|
|
1221
1221
|
nonnegative(e) {
|
|
@@ -1223,14 +1223,14 @@ class se extends _ {
|
|
|
1223
1223
|
kind: "min",
|
|
1224
1224
|
value: BigInt(0),
|
|
1225
1225
|
inclusive: !0,
|
|
1226
|
-
message:
|
|
1226
|
+
message: m.toString(e)
|
|
1227
1227
|
});
|
|
1228
1228
|
}
|
|
1229
1229
|
multipleOf(e, t) {
|
|
1230
1230
|
return this._addCheck({
|
|
1231
1231
|
kind: "multipleOf",
|
|
1232
1232
|
value: e,
|
|
1233
|
-
message:
|
|
1233
|
+
message: m.toString(t)
|
|
1234
1234
|
});
|
|
1235
1235
|
}
|
|
1236
1236
|
get minValue() {
|
|
@@ -1246,61 +1246,61 @@ class se extends _ {
|
|
|
1246
1246
|
return e;
|
|
1247
1247
|
}
|
|
1248
1248
|
}
|
|
1249
|
-
|
|
1249
|
+
de.create = (r) => {
|
|
1250
1250
|
var e;
|
|
1251
|
-
return new
|
|
1251
|
+
return new de({
|
|
1252
1252
|
checks: [],
|
|
1253
1253
|
typeName: y.ZodBigInt,
|
|
1254
1254
|
coerce: (e = r == null ? void 0 : r.coerce) !== null && e !== void 0 ? e : !1,
|
|
1255
1255
|
...g(r)
|
|
1256
1256
|
});
|
|
1257
1257
|
};
|
|
1258
|
-
class
|
|
1258
|
+
class Ne extends _ {
|
|
1259
1259
|
_parse(e) {
|
|
1260
|
-
if (this._def.coerce && (e.data = !!e.data), this._getType(e) !==
|
|
1260
|
+
if (this._def.coerce && (e.data = !!e.data), this._getType(e) !== h.boolean) {
|
|
1261
1261
|
const n = this._getOrReturnCtx(e);
|
|
1262
1262
|
return l(n, {
|
|
1263
|
-
code:
|
|
1264
|
-
expected:
|
|
1263
|
+
code: d.invalid_type,
|
|
1264
|
+
expected: h.boolean,
|
|
1265
1265
|
received: n.parsedType
|
|
1266
1266
|
}), v;
|
|
1267
1267
|
}
|
|
1268
|
-
return
|
|
1268
|
+
return P(e.data);
|
|
1269
1269
|
}
|
|
1270
1270
|
}
|
|
1271
|
-
|
|
1271
|
+
Ne.create = (r) => new Ne({
|
|
1272
1272
|
typeName: y.ZodBoolean,
|
|
1273
1273
|
coerce: (r == null ? void 0 : r.coerce) || !1,
|
|
1274
1274
|
...g(r)
|
|
1275
1275
|
});
|
|
1276
|
-
class
|
|
1276
|
+
class he extends _ {
|
|
1277
1277
|
_parse(e) {
|
|
1278
|
-
if (this._def.coerce && (e.data = new Date(e.data)), this._getType(e) !==
|
|
1278
|
+
if (this._def.coerce && (e.data = new Date(e.data)), this._getType(e) !== h.date) {
|
|
1279
1279
|
const a = this._getOrReturnCtx(e);
|
|
1280
1280
|
return l(a, {
|
|
1281
|
-
code:
|
|
1282
|
-
expected:
|
|
1281
|
+
code: d.invalid_type,
|
|
1282
|
+
expected: h.date,
|
|
1283
1283
|
received: a.parsedType
|
|
1284
1284
|
}), v;
|
|
1285
1285
|
}
|
|
1286
1286
|
if (isNaN(e.data.getTime())) {
|
|
1287
1287
|
const a = this._getOrReturnCtx(e);
|
|
1288
1288
|
return l(a, {
|
|
1289
|
-
code:
|
|
1289
|
+
code: d.invalid_date
|
|
1290
1290
|
}), v;
|
|
1291
1291
|
}
|
|
1292
|
-
const n = new
|
|
1292
|
+
const n = new N();
|
|
1293
1293
|
let s;
|
|
1294
1294
|
for (const a of this._def.checks)
|
|
1295
1295
|
a.kind === "min" ? e.data.getTime() < a.value && (s = this._getOrReturnCtx(e, s), l(s, {
|
|
1296
|
-
code:
|
|
1296
|
+
code: d.too_small,
|
|
1297
1297
|
message: a.message,
|
|
1298
1298
|
inclusive: !0,
|
|
1299
1299
|
exact: !1,
|
|
1300
1300
|
minimum: a.value,
|
|
1301
1301
|
type: "date"
|
|
1302
1302
|
}), n.dirty()) : a.kind === "max" ? e.data.getTime() > a.value && (s = this._getOrReturnCtx(e, s), l(s, {
|
|
1303
|
-
code:
|
|
1303
|
+
code: d.too_big,
|
|
1304
1304
|
message: a.message,
|
|
1305
1305
|
inclusive: !0,
|
|
1306
1306
|
exact: !1,
|
|
@@ -1313,7 +1313,7 @@ class ue extends _ {
|
|
|
1313
1313
|
};
|
|
1314
1314
|
}
|
|
1315
1315
|
_addCheck(e) {
|
|
1316
|
-
return new
|
|
1316
|
+
return new he({
|
|
1317
1317
|
...this._def,
|
|
1318
1318
|
checks: [...this._def.checks, e]
|
|
1319
1319
|
});
|
|
@@ -1322,14 +1322,14 @@ class ue extends _ {
|
|
|
1322
1322
|
return this._addCheck({
|
|
1323
1323
|
kind: "min",
|
|
1324
1324
|
value: e.getTime(),
|
|
1325
|
-
message:
|
|
1325
|
+
message: m.toString(t)
|
|
1326
1326
|
});
|
|
1327
1327
|
}
|
|
1328
1328
|
max(e, t) {
|
|
1329
1329
|
return this._addCheck({
|
|
1330
1330
|
kind: "max",
|
|
1331
1331
|
value: e.getTime(),
|
|
1332
|
-
message:
|
|
1332
|
+
message: m.toString(t)
|
|
1333
1333
|
});
|
|
1334
1334
|
}
|
|
1335
1335
|
get minDate() {
|
|
@@ -1345,131 +1345,131 @@ class ue extends _ {
|
|
|
1345
1345
|
return e != null ? new Date(e) : null;
|
|
1346
1346
|
}
|
|
1347
1347
|
}
|
|
1348
|
-
|
|
1348
|
+
he.create = (r) => new he({
|
|
1349
1349
|
checks: [],
|
|
1350
1350
|
coerce: (r == null ? void 0 : r.coerce) || !1,
|
|
1351
1351
|
typeName: y.ZodDate,
|
|
1352
1352
|
...g(r)
|
|
1353
1353
|
});
|
|
1354
|
-
class
|
|
1354
|
+
class Ge extends _ {
|
|
1355
1355
|
_parse(e) {
|
|
1356
|
-
if (this._getType(e) !==
|
|
1356
|
+
if (this._getType(e) !== h.symbol) {
|
|
1357
1357
|
const n = this._getOrReturnCtx(e);
|
|
1358
1358
|
return l(n, {
|
|
1359
|
-
code:
|
|
1360
|
-
expected:
|
|
1359
|
+
code: d.invalid_type,
|
|
1360
|
+
expected: h.symbol,
|
|
1361
1361
|
received: n.parsedType
|
|
1362
1362
|
}), v;
|
|
1363
1363
|
}
|
|
1364
|
-
return
|
|
1364
|
+
return P(e.data);
|
|
1365
1365
|
}
|
|
1366
1366
|
}
|
|
1367
|
-
|
|
1367
|
+
Ge.create = (r) => new Ge({
|
|
1368
1368
|
typeName: y.ZodSymbol,
|
|
1369
1369
|
...g(r)
|
|
1370
1370
|
});
|
|
1371
|
-
class
|
|
1371
|
+
class Ae extends _ {
|
|
1372
1372
|
_parse(e) {
|
|
1373
|
-
if (this._getType(e) !==
|
|
1373
|
+
if (this._getType(e) !== h.undefined) {
|
|
1374
1374
|
const n = this._getOrReturnCtx(e);
|
|
1375
1375
|
return l(n, {
|
|
1376
|
-
code:
|
|
1377
|
-
expected:
|
|
1376
|
+
code: d.invalid_type,
|
|
1377
|
+
expected: h.undefined,
|
|
1378
1378
|
received: n.parsedType
|
|
1379
1379
|
}), v;
|
|
1380
1380
|
}
|
|
1381
|
-
return
|
|
1381
|
+
return P(e.data);
|
|
1382
1382
|
}
|
|
1383
1383
|
}
|
|
1384
|
-
|
|
1384
|
+
Ae.create = (r) => new Ae({
|
|
1385
1385
|
typeName: y.ZodUndefined,
|
|
1386
1386
|
...g(r)
|
|
1387
1387
|
});
|
|
1388
|
-
class
|
|
1388
|
+
class Pe extends _ {
|
|
1389
1389
|
_parse(e) {
|
|
1390
|
-
if (this._getType(e) !==
|
|
1390
|
+
if (this._getType(e) !== h.null) {
|
|
1391
1391
|
const n = this._getOrReturnCtx(e);
|
|
1392
1392
|
return l(n, {
|
|
1393
|
-
code:
|
|
1394
|
-
expected:
|
|
1393
|
+
code: d.invalid_type,
|
|
1394
|
+
expected: h.null,
|
|
1395
1395
|
received: n.parsedType
|
|
1396
1396
|
}), v;
|
|
1397
1397
|
}
|
|
1398
|
-
return
|
|
1398
|
+
return P(e.data);
|
|
1399
1399
|
}
|
|
1400
1400
|
}
|
|
1401
|
-
|
|
1401
|
+
Pe.create = (r) => new Pe({
|
|
1402
1402
|
typeName: y.ZodNull,
|
|
1403
1403
|
...g(r)
|
|
1404
1404
|
});
|
|
1405
|
-
class
|
|
1405
|
+
class xe extends _ {
|
|
1406
1406
|
constructor() {
|
|
1407
1407
|
super(...arguments), this._any = !0;
|
|
1408
1408
|
}
|
|
1409
1409
|
_parse(e) {
|
|
1410
|
-
return
|
|
1410
|
+
return P(e.data);
|
|
1411
1411
|
}
|
|
1412
1412
|
}
|
|
1413
|
-
|
|
1413
|
+
xe.create = (r) => new xe({
|
|
1414
1414
|
typeName: y.ZodAny,
|
|
1415
1415
|
...g(r)
|
|
1416
1416
|
});
|
|
1417
|
-
class
|
|
1417
|
+
class fe extends _ {
|
|
1418
1418
|
constructor() {
|
|
1419
1419
|
super(...arguments), this._unknown = !0;
|
|
1420
1420
|
}
|
|
1421
1421
|
_parse(e) {
|
|
1422
|
-
return
|
|
1422
|
+
return P(e.data);
|
|
1423
1423
|
}
|
|
1424
1424
|
}
|
|
1425
|
-
|
|
1425
|
+
fe.create = (r) => new fe({
|
|
1426
1426
|
typeName: y.ZodUnknown,
|
|
1427
1427
|
...g(r)
|
|
1428
1428
|
});
|
|
1429
|
-
class
|
|
1429
|
+
class ne extends _ {
|
|
1430
1430
|
_parse(e) {
|
|
1431
1431
|
const t = this._getOrReturnCtx(e);
|
|
1432
1432
|
return l(t, {
|
|
1433
|
-
code:
|
|
1434
|
-
expected:
|
|
1433
|
+
code: d.invalid_type,
|
|
1434
|
+
expected: h.never,
|
|
1435
1435
|
received: t.parsedType
|
|
1436
1436
|
}), v;
|
|
1437
1437
|
}
|
|
1438
1438
|
}
|
|
1439
|
-
|
|
1439
|
+
ne.create = (r) => new ne({
|
|
1440
1440
|
typeName: y.ZodNever,
|
|
1441
1441
|
...g(r)
|
|
1442
1442
|
});
|
|
1443
|
-
class
|
|
1443
|
+
class Xe extends _ {
|
|
1444
1444
|
_parse(e) {
|
|
1445
|
-
if (this._getType(e) !==
|
|
1445
|
+
if (this._getType(e) !== h.undefined) {
|
|
1446
1446
|
const n = this._getOrReturnCtx(e);
|
|
1447
1447
|
return l(n, {
|
|
1448
|
-
code:
|
|
1449
|
-
expected:
|
|
1448
|
+
code: d.invalid_type,
|
|
1449
|
+
expected: h.void,
|
|
1450
1450
|
received: n.parsedType
|
|
1451
1451
|
}), v;
|
|
1452
1452
|
}
|
|
1453
|
-
return
|
|
1453
|
+
return P(e.data);
|
|
1454
1454
|
}
|
|
1455
1455
|
}
|
|
1456
|
-
|
|
1456
|
+
Xe.create = (r) => new Xe({
|
|
1457
1457
|
typeName: y.ZodVoid,
|
|
1458
1458
|
...g(r)
|
|
1459
1459
|
});
|
|
1460
|
-
class
|
|
1460
|
+
class F extends _ {
|
|
1461
1461
|
_parse(e) {
|
|
1462
1462
|
const { ctx: t, status: n } = this._processInputParams(e), s = this._def;
|
|
1463
|
-
if (t.parsedType !==
|
|
1463
|
+
if (t.parsedType !== h.array)
|
|
1464
1464
|
return l(t, {
|
|
1465
|
-
code:
|
|
1466
|
-
expected:
|
|
1465
|
+
code: d.invalid_type,
|
|
1466
|
+
expected: h.array,
|
|
1467
1467
|
received: t.parsedType
|
|
1468
1468
|
}), v;
|
|
1469
1469
|
if (s.exactLength !== null) {
|
|
1470
1470
|
const i = t.data.length > s.exactLength.value, o = t.data.length < s.exactLength.value;
|
|
1471
1471
|
(i || o) && (l(t, {
|
|
1472
|
-
code: i ?
|
|
1472
|
+
code: i ? d.too_big : d.too_small,
|
|
1473
1473
|
minimum: o ? s.exactLength.value : void 0,
|
|
1474
1474
|
maximum: i ? s.exactLength.value : void 0,
|
|
1475
1475
|
type: "array",
|
|
@@ -1479,50 +1479,50 @@ class V extends _ {
|
|
|
1479
1479
|
}), n.dirty());
|
|
1480
1480
|
}
|
|
1481
1481
|
if (s.minLength !== null && t.data.length < s.minLength.value && (l(t, {
|
|
1482
|
-
code:
|
|
1482
|
+
code: d.too_small,
|
|
1483
1483
|
minimum: s.minLength.value,
|
|
1484
1484
|
type: "array",
|
|
1485
1485
|
inclusive: !0,
|
|
1486
1486
|
exact: !1,
|
|
1487
1487
|
message: s.minLength.message
|
|
1488
1488
|
}), n.dirty()), s.maxLength !== null && t.data.length > s.maxLength.value && (l(t, {
|
|
1489
|
-
code:
|
|
1489
|
+
code: d.too_big,
|
|
1490
1490
|
maximum: s.maxLength.value,
|
|
1491
1491
|
type: "array",
|
|
1492
1492
|
inclusive: !0,
|
|
1493
1493
|
exact: !1,
|
|
1494
1494
|
message: s.maxLength.message
|
|
1495
1495
|
}), n.dirty()), t.common.async)
|
|
1496
|
-
return Promise.all([...t.data].map((i, o) => s.type._parseAsync(new
|
|
1497
|
-
const a = [...t.data].map((i, o) => s.type._parseSync(new
|
|
1498
|
-
return
|
|
1496
|
+
return Promise.all([...t.data].map((i, o) => s.type._parseAsync(new Y(t, i, t.path, o)))).then((i) => N.mergeArray(n, i));
|
|
1497
|
+
const a = [...t.data].map((i, o) => s.type._parseSync(new Y(t, i, t.path, o)));
|
|
1498
|
+
return N.mergeArray(n, a);
|
|
1499
1499
|
}
|
|
1500
1500
|
get element() {
|
|
1501
1501
|
return this._def.type;
|
|
1502
1502
|
}
|
|
1503
1503
|
min(e, t) {
|
|
1504
|
-
return new
|
|
1504
|
+
return new F({
|
|
1505
1505
|
...this._def,
|
|
1506
|
-
minLength: { value: e, message:
|
|
1506
|
+
minLength: { value: e, message: m.toString(t) }
|
|
1507
1507
|
});
|
|
1508
1508
|
}
|
|
1509
1509
|
max(e, t) {
|
|
1510
|
-
return new
|
|
1510
|
+
return new F({
|
|
1511
1511
|
...this._def,
|
|
1512
|
-
maxLength: { value: e, message:
|
|
1512
|
+
maxLength: { value: e, message: m.toString(t) }
|
|
1513
1513
|
});
|
|
1514
1514
|
}
|
|
1515
1515
|
length(e, t) {
|
|
1516
|
-
return new
|
|
1516
|
+
return new F({
|
|
1517
1517
|
...this._def,
|
|
1518
|
-
exactLength: { value: e, message:
|
|
1518
|
+
exactLength: { value: e, message: m.toString(t) }
|
|
1519
1519
|
});
|
|
1520
1520
|
}
|
|
1521
1521
|
nonempty(e) {
|
|
1522
1522
|
return this.min(1, e);
|
|
1523
1523
|
}
|
|
1524
1524
|
}
|
|
1525
|
-
|
|
1525
|
+
F.create = (r, e) => new F({
|
|
1526
1526
|
type: r,
|
|
1527
1527
|
minLength: null,
|
|
1528
1528
|
maxLength: null,
|
|
@@ -1530,23 +1530,23 @@ V.create = (r, e) => new V({
|
|
|
1530
1530
|
typeName: y.ZodArray,
|
|
1531
1531
|
...g(e)
|
|
1532
1532
|
});
|
|
1533
|
-
function
|
|
1534
|
-
if (r instanceof
|
|
1533
|
+
function ye(r) {
|
|
1534
|
+
if (r instanceof E) {
|
|
1535
1535
|
const e = {};
|
|
1536
1536
|
for (const t in r.shape) {
|
|
1537
1537
|
const n = r.shape[t];
|
|
1538
|
-
e[t] =
|
|
1538
|
+
e[t] = K.create(ye(n));
|
|
1539
1539
|
}
|
|
1540
|
-
return new
|
|
1540
|
+
return new E({
|
|
1541
1541
|
...r._def,
|
|
1542
1542
|
shape: () => e
|
|
1543
1543
|
});
|
|
1544
|
-
} else return r instanceof
|
|
1544
|
+
} else return r instanceof F ? new F({
|
|
1545
1545
|
...r._def,
|
|
1546
|
-
type:
|
|
1547
|
-
}) : r instanceof
|
|
1546
|
+
type: ye(r.element)
|
|
1547
|
+
}) : r instanceof K ? K.create(ye(r.unwrap())) : r instanceof le ? le.create(ye(r.unwrap())) : r instanceof J ? J.create(r.items.map((e) => ye(e))) : r;
|
|
1548
1548
|
}
|
|
1549
|
-
class
|
|
1549
|
+
class E extends _ {
|
|
1550
1550
|
constructor() {
|
|
1551
1551
|
super(...arguments), this._cached = null, this.nonstrict = this.passthrough, this.augment = this.extend;
|
|
1552
1552
|
}
|
|
@@ -1557,73 +1557,73 @@ class w extends _ {
|
|
|
1557
1557
|
return this._cached = { shape: e, keys: t };
|
|
1558
1558
|
}
|
|
1559
1559
|
_parse(e) {
|
|
1560
|
-
if (this._getType(e) !==
|
|
1561
|
-
const
|
|
1562
|
-
return l(
|
|
1563
|
-
code:
|
|
1564
|
-
expected:
|
|
1565
|
-
received:
|
|
1560
|
+
if (this._getType(e) !== h.object) {
|
|
1561
|
+
const c = this._getOrReturnCtx(e);
|
|
1562
|
+
return l(c, {
|
|
1563
|
+
code: d.invalid_type,
|
|
1564
|
+
expected: h.object,
|
|
1565
|
+
received: c.parsedType
|
|
1566
1566
|
}), v;
|
|
1567
1567
|
}
|
|
1568
1568
|
const { status: n, ctx: s } = this._processInputParams(e), { shape: a, keys: i } = this._getCached(), o = [];
|
|
1569
|
-
if (!(this._def.catchall instanceof
|
|
1570
|
-
for (const
|
|
1571
|
-
i.includes(
|
|
1569
|
+
if (!(this._def.catchall instanceof ne && this._def.unknownKeys === "strip"))
|
|
1570
|
+
for (const c in s.data)
|
|
1571
|
+
i.includes(c) || o.push(c);
|
|
1572
1572
|
const u = [];
|
|
1573
|
-
for (const
|
|
1574
|
-
const
|
|
1573
|
+
for (const c of i) {
|
|
1574
|
+
const p = a[c], b = s.data[c];
|
|
1575
1575
|
u.push({
|
|
1576
|
-
key: { status: "valid", value:
|
|
1577
|
-
value:
|
|
1578
|
-
alwaysSet:
|
|
1576
|
+
key: { status: "valid", value: c },
|
|
1577
|
+
value: p._parse(new Y(s, b, s.path, c)),
|
|
1578
|
+
alwaysSet: c in s.data
|
|
1579
1579
|
});
|
|
1580
1580
|
}
|
|
1581
|
-
if (this._def.catchall instanceof
|
|
1582
|
-
const
|
|
1583
|
-
if (
|
|
1584
|
-
for (const
|
|
1581
|
+
if (this._def.catchall instanceof ne) {
|
|
1582
|
+
const c = this._def.unknownKeys;
|
|
1583
|
+
if (c === "passthrough")
|
|
1584
|
+
for (const p of o)
|
|
1585
1585
|
u.push({
|
|
1586
|
-
key: { status: "valid", value:
|
|
1587
|
-
value: { status: "valid", value: s.data[
|
|
1586
|
+
key: { status: "valid", value: p },
|
|
1587
|
+
value: { status: "valid", value: s.data[p] }
|
|
1588
1588
|
});
|
|
1589
|
-
else if (
|
|
1589
|
+
else if (c === "strict")
|
|
1590
1590
|
o.length > 0 && (l(s, {
|
|
1591
|
-
code:
|
|
1591
|
+
code: d.unrecognized_keys,
|
|
1592
1592
|
keys: o
|
|
1593
1593
|
}), n.dirty());
|
|
1594
|
-
else if (
|
|
1594
|
+
else if (c !== "strip") throw new Error("Internal ZodObject error: invalid unknownKeys value.");
|
|
1595
1595
|
} else {
|
|
1596
|
-
const
|
|
1597
|
-
for (const
|
|
1598
|
-
const b = s.data[
|
|
1596
|
+
const c = this._def.catchall;
|
|
1597
|
+
for (const p of o) {
|
|
1598
|
+
const b = s.data[p];
|
|
1599
1599
|
u.push({
|
|
1600
|
-
key: { status: "valid", value:
|
|
1601
|
-
value:
|
|
1602
|
-
new
|
|
1600
|
+
key: { status: "valid", value: p },
|
|
1601
|
+
value: c._parse(
|
|
1602
|
+
new Y(s, b, s.path, p)
|
|
1603
1603
|
//, ctx.child(key), value, getParsedType(value)
|
|
1604
1604
|
),
|
|
1605
|
-
alwaysSet:
|
|
1605
|
+
alwaysSet: p in s.data
|
|
1606
1606
|
});
|
|
1607
1607
|
}
|
|
1608
1608
|
}
|
|
1609
1609
|
return s.common.async ? Promise.resolve().then(async () => {
|
|
1610
|
-
const
|
|
1611
|
-
for (const
|
|
1612
|
-
const b = await
|
|
1613
|
-
|
|
1610
|
+
const c = [];
|
|
1611
|
+
for (const p of u) {
|
|
1612
|
+
const b = await p.key, T = await p.value;
|
|
1613
|
+
c.push({
|
|
1614
1614
|
key: b,
|
|
1615
1615
|
value: T,
|
|
1616
|
-
alwaysSet:
|
|
1616
|
+
alwaysSet: p.alwaysSet
|
|
1617
1617
|
});
|
|
1618
1618
|
}
|
|
1619
|
-
return
|
|
1620
|
-
}).then((
|
|
1619
|
+
return c;
|
|
1620
|
+
}).then((c) => N.mergeObjectSync(n, c)) : N.mergeObjectSync(n, u);
|
|
1621
1621
|
}
|
|
1622
1622
|
get shape() {
|
|
1623
1623
|
return this._def.shape();
|
|
1624
1624
|
}
|
|
1625
1625
|
strict(e) {
|
|
1626
|
-
return
|
|
1626
|
+
return m.errToObj, new E({
|
|
1627
1627
|
...this._def,
|
|
1628
1628
|
unknownKeys: "strict",
|
|
1629
1629
|
...e !== void 0 ? {
|
|
@@ -1631,7 +1631,7 @@ class w extends _ {
|
|
|
1631
1631
|
var s, a, i, o;
|
|
1632
1632
|
const u = (i = (a = (s = this._def).errorMap) === null || a === void 0 ? void 0 : a.call(s, t, n).message) !== null && i !== void 0 ? i : n.defaultError;
|
|
1633
1633
|
return t.code === "unrecognized_keys" ? {
|
|
1634
|
-
message: (o =
|
|
1634
|
+
message: (o = m.errToObj(e).message) !== null && o !== void 0 ? o : u
|
|
1635
1635
|
} : {
|
|
1636
1636
|
message: u
|
|
1637
1637
|
};
|
|
@@ -1640,13 +1640,13 @@ class w extends _ {
|
|
|
1640
1640
|
});
|
|
1641
1641
|
}
|
|
1642
1642
|
strip() {
|
|
1643
|
-
return new
|
|
1643
|
+
return new E({
|
|
1644
1644
|
...this._def,
|
|
1645
1645
|
unknownKeys: "strip"
|
|
1646
1646
|
});
|
|
1647
1647
|
}
|
|
1648
1648
|
passthrough() {
|
|
1649
|
-
return new
|
|
1649
|
+
return new E({
|
|
1650
1650
|
...this._def,
|
|
1651
1651
|
unknownKeys: "passthrough"
|
|
1652
1652
|
});
|
|
@@ -1669,7 +1669,7 @@ class w extends _ {
|
|
|
1669
1669
|
// }) as any;
|
|
1670
1670
|
// };
|
|
1671
1671
|
extend(e) {
|
|
1672
|
-
return new
|
|
1672
|
+
return new E({
|
|
1673
1673
|
...this._def,
|
|
1674
1674
|
shape: () => ({
|
|
1675
1675
|
...this._def.shape(),
|
|
@@ -1683,7 +1683,7 @@ class w extends _ {
|
|
|
1683
1683
|
* upgrade if you are experiencing issues.
|
|
1684
1684
|
*/
|
|
1685
1685
|
merge(e) {
|
|
1686
|
-
return new
|
|
1686
|
+
return new E({
|
|
1687
1687
|
unknownKeys: e._def.unknownKeys,
|
|
1688
1688
|
catchall: e._def.catchall,
|
|
1689
1689
|
shape: () => ({
|
|
@@ -1753,7 +1753,7 @@ class w extends _ {
|
|
|
1753
1753
|
// return merged;
|
|
1754
1754
|
// }
|
|
1755
1755
|
catchall(e) {
|
|
1756
|
-
return new
|
|
1756
|
+
return new E({
|
|
1757
1757
|
...this._def,
|
|
1758
1758
|
catchall: e
|
|
1759
1759
|
});
|
|
@@ -1762,7 +1762,7 @@ class w extends _ {
|
|
|
1762
1762
|
const t = {};
|
|
1763
1763
|
return x.objectKeys(e).forEach((n) => {
|
|
1764
1764
|
e[n] && this.shape[n] && (t[n] = this.shape[n]);
|
|
1765
|
-
}), new
|
|
1765
|
+
}), new E({
|
|
1766
1766
|
...this._def,
|
|
1767
1767
|
shape: () => t
|
|
1768
1768
|
});
|
|
@@ -1771,7 +1771,7 @@ class w extends _ {
|
|
|
1771
1771
|
const t = {};
|
|
1772
1772
|
return x.objectKeys(this.shape).forEach((n) => {
|
|
1773
1773
|
e[n] || (t[n] = this.shape[n]);
|
|
1774
|
-
}), new
|
|
1774
|
+
}), new E({
|
|
1775
1775
|
...this._def,
|
|
1776
1776
|
shape: () => t
|
|
1777
1777
|
});
|
|
@@ -1780,14 +1780,14 @@ class w extends _ {
|
|
|
1780
1780
|
* @deprecated
|
|
1781
1781
|
*/
|
|
1782
1782
|
deepPartial() {
|
|
1783
|
-
return
|
|
1783
|
+
return ye(this);
|
|
1784
1784
|
}
|
|
1785
1785
|
partial(e) {
|
|
1786
1786
|
const t = {};
|
|
1787
1787
|
return x.objectKeys(this.shape).forEach((n) => {
|
|
1788
1788
|
const s = this.shape[n];
|
|
1789
1789
|
e && !e[n] ? t[n] = s : t[n] = s.optional();
|
|
1790
|
-
}), new
|
|
1790
|
+
}), new E({
|
|
1791
1791
|
...this._def,
|
|
1792
1792
|
shape: () => t
|
|
1793
1793
|
});
|
|
@@ -1799,41 +1799,41 @@ class w extends _ {
|
|
|
1799
1799
|
t[n] = this.shape[n];
|
|
1800
1800
|
else {
|
|
1801
1801
|
let a = this.shape[n];
|
|
1802
|
-
for (; a instanceof
|
|
1802
|
+
for (; a instanceof K; )
|
|
1803
1803
|
a = a._def.innerType;
|
|
1804
1804
|
t[n] = a;
|
|
1805
1805
|
}
|
|
1806
|
-
}), new
|
|
1806
|
+
}), new E({
|
|
1807
1807
|
...this._def,
|
|
1808
1808
|
shape: () => t
|
|
1809
1809
|
});
|
|
1810
1810
|
}
|
|
1811
1811
|
keyof() {
|
|
1812
|
-
return
|
|
1812
|
+
return Vt(x.objectKeys(this.shape));
|
|
1813
1813
|
}
|
|
1814
1814
|
}
|
|
1815
|
-
|
|
1815
|
+
E.create = (r, e) => new E({
|
|
1816
1816
|
shape: () => r,
|
|
1817
1817
|
unknownKeys: "strip",
|
|
1818
|
-
catchall:
|
|
1818
|
+
catchall: ne.create(),
|
|
1819
1819
|
typeName: y.ZodObject,
|
|
1820
1820
|
...g(e)
|
|
1821
1821
|
});
|
|
1822
|
-
|
|
1822
|
+
E.strictCreate = (r, e) => new E({
|
|
1823
1823
|
shape: () => r,
|
|
1824
1824
|
unknownKeys: "strict",
|
|
1825
|
-
catchall:
|
|
1825
|
+
catchall: ne.create(),
|
|
1826
1826
|
typeName: y.ZodObject,
|
|
1827
1827
|
...g(e)
|
|
1828
1828
|
});
|
|
1829
|
-
|
|
1829
|
+
E.lazycreate = (r, e) => new E({
|
|
1830
1830
|
shape: r,
|
|
1831
1831
|
unknownKeys: "strip",
|
|
1832
|
-
catchall:
|
|
1832
|
+
catchall: ne.create(),
|
|
1833
1833
|
typeName: y.ZodObject,
|
|
1834
1834
|
...g(e)
|
|
1835
1835
|
});
|
|
1836
|
-
class
|
|
1836
|
+
class Ze extends _ {
|
|
1837
1837
|
_parse(e) {
|
|
1838
1838
|
const { ctx: t } = this._processInputParams(e), n = this._def.options;
|
|
1839
1839
|
function s(a) {
|
|
@@ -1843,9 +1843,9 @@ class Ne extends _ {
|
|
|
1843
1843
|
for (const o of a)
|
|
1844
1844
|
if (o.result.status === "dirty")
|
|
1845
1845
|
return t.common.issues.push(...o.ctx.common.issues), o.result;
|
|
1846
|
-
const i = a.map((o) => new
|
|
1846
|
+
const i = a.map((o) => new M(o.ctx.common.issues));
|
|
1847
1847
|
return l(t, {
|
|
1848
|
-
code:
|
|
1848
|
+
code: d.invalid_union,
|
|
1849
1849
|
unionErrors: i
|
|
1850
1850
|
}), v;
|
|
1851
1851
|
}
|
|
@@ -1872,27 +1872,27 @@ class Ne extends _ {
|
|
|
1872
1872
|
let a;
|
|
1873
1873
|
const i = [];
|
|
1874
1874
|
for (const u of n) {
|
|
1875
|
-
const
|
|
1875
|
+
const c = {
|
|
1876
1876
|
...t,
|
|
1877
1877
|
common: {
|
|
1878
1878
|
...t.common,
|
|
1879
1879
|
issues: []
|
|
1880
1880
|
},
|
|
1881
1881
|
parent: null
|
|
1882
|
-
},
|
|
1882
|
+
}, p = u._parseSync({
|
|
1883
1883
|
data: t.data,
|
|
1884
1884
|
path: t.path,
|
|
1885
|
-
parent:
|
|
1885
|
+
parent: c
|
|
1886
1886
|
});
|
|
1887
|
-
if (
|
|
1888
|
-
return
|
|
1889
|
-
|
|
1887
|
+
if (p.status === "valid")
|
|
1888
|
+
return p;
|
|
1889
|
+
p.status === "dirty" && !a && (a = { result: p, ctx: c }), c.common.issues.length && i.push(c.common.issues);
|
|
1890
1890
|
}
|
|
1891
1891
|
if (a)
|
|
1892
1892
|
return t.common.issues.push(...a.ctx.common.issues), a.result;
|
|
1893
|
-
const o = i.map((u) => new
|
|
1893
|
+
const o = i.map((u) => new M(u));
|
|
1894
1894
|
return l(t, {
|
|
1895
|
-
code:
|
|
1895
|
+
code: d.invalid_union,
|
|
1896
1896
|
unionErrors: o
|
|
1897
1897
|
}), v;
|
|
1898
1898
|
}
|
|
@@ -1901,19 +1901,19 @@ class Ne extends _ {
|
|
|
1901
1901
|
return this._def.options;
|
|
1902
1902
|
}
|
|
1903
1903
|
}
|
|
1904
|
-
|
|
1904
|
+
Ze.create = (r, e) => new Ze({
|
|
1905
1905
|
options: r,
|
|
1906
1906
|
typeName: y.ZodUnion,
|
|
1907
1907
|
...g(e)
|
|
1908
1908
|
});
|
|
1909
|
-
const
|
|
1910
|
-
class
|
|
1909
|
+
const re = (r) => r instanceof De ? re(r.schema) : r instanceof B ? re(r.innerType()) : r instanceof Le ? [r.value] : r instanceof ue ? r.options : r instanceof Ue ? x.objectValues(r.enum) : r instanceof $e ? re(r._def.innerType) : r instanceof Ae ? [void 0] : r instanceof Pe ? [null] : r instanceof K ? [void 0, ...re(r.unwrap())] : r instanceof le ? [null, ...re(r.unwrap())] : r instanceof yt || r instanceof ze ? re(r.unwrap()) : r instanceof Ve ? re(r._def.innerType) : [];
|
|
1910
|
+
class tt extends _ {
|
|
1911
1911
|
_parse(e) {
|
|
1912
1912
|
const { ctx: t } = this._processInputParams(e);
|
|
1913
|
-
if (t.parsedType !==
|
|
1913
|
+
if (t.parsedType !== h.object)
|
|
1914
1914
|
return l(t, {
|
|
1915
|
-
code:
|
|
1916
|
-
expected:
|
|
1915
|
+
code: d.invalid_type,
|
|
1916
|
+
expected: h.object,
|
|
1917
1917
|
received: t.parsedType
|
|
1918
1918
|
}), v;
|
|
1919
1919
|
const n = this.discriminator, s = t.data[n], a = this.optionsMap.get(s);
|
|
@@ -1926,7 +1926,7 @@ class Qe extends _ {
|
|
|
1926
1926
|
path: t.path,
|
|
1927
1927
|
parent: t
|
|
1928
1928
|
}) : (l(t, {
|
|
1929
|
-
code:
|
|
1929
|
+
code: d.invalid_union_discriminator,
|
|
1930
1930
|
options: Array.from(this.optionsMap.keys()),
|
|
1931
1931
|
path: [n]
|
|
1932
1932
|
}), v);
|
|
@@ -1951,7 +1951,7 @@ class Qe extends _ {
|
|
|
1951
1951
|
static create(e, t, n) {
|
|
1952
1952
|
const s = /* @__PURE__ */ new Map();
|
|
1953
1953
|
for (const a of t) {
|
|
1954
|
-
const i =
|
|
1954
|
+
const i = re(a.shape[e]);
|
|
1955
1955
|
if (!i.length)
|
|
1956
1956
|
throw new Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);
|
|
1957
1957
|
for (const o of i) {
|
|
@@ -1960,7 +1960,7 @@ class Qe extends _ {
|
|
|
1960
1960
|
s.set(o, a);
|
|
1961
1961
|
}
|
|
1962
1962
|
}
|
|
1963
|
-
return new
|
|
1963
|
+
return new tt({
|
|
1964
1964
|
typeName: y.ZodDiscriminatedUnion,
|
|
1965
1965
|
discriminator: e,
|
|
1966
1966
|
options: t,
|
|
@@ -1969,40 +1969,40 @@ class Qe extends _ {
|
|
|
1969
1969
|
});
|
|
1970
1970
|
}
|
|
1971
1971
|
}
|
|
1972
|
-
function
|
|
1973
|
-
const t =
|
|
1972
|
+
function pt(r, e) {
|
|
1973
|
+
const t = ie(r), n = ie(e);
|
|
1974
1974
|
if (r === e)
|
|
1975
1975
|
return { valid: !0, data: r };
|
|
1976
|
-
if (t ===
|
|
1976
|
+
if (t === h.object && n === h.object) {
|
|
1977
1977
|
const s = x.objectKeys(e), a = x.objectKeys(r).filter((o) => s.indexOf(o) !== -1), i = { ...r, ...e };
|
|
1978
1978
|
for (const o of a) {
|
|
1979
|
-
const u =
|
|
1979
|
+
const u = pt(r[o], e[o]);
|
|
1980
1980
|
if (!u.valid)
|
|
1981
1981
|
return { valid: !1 };
|
|
1982
1982
|
i[o] = u.data;
|
|
1983
1983
|
}
|
|
1984
1984
|
return { valid: !0, data: i };
|
|
1985
|
-
} else if (t ===
|
|
1985
|
+
} else if (t === h.array && n === h.array) {
|
|
1986
1986
|
if (r.length !== e.length)
|
|
1987
1987
|
return { valid: !1 };
|
|
1988
1988
|
const s = [];
|
|
1989
1989
|
for (let a = 0; a < r.length; a++) {
|
|
1990
|
-
const i = r[a], o = e[a], u =
|
|
1990
|
+
const i = r[a], o = e[a], u = pt(i, o);
|
|
1991
1991
|
if (!u.valid)
|
|
1992
1992
|
return { valid: !1 };
|
|
1993
1993
|
s.push(u.data);
|
|
1994
1994
|
}
|
|
1995
1995
|
return { valid: !0, data: s };
|
|
1996
|
-
} else return t ===
|
|
1996
|
+
} else return t === h.date && n === h.date && +r == +e ? { valid: !0, data: r } : { valid: !1 };
|
|
1997
1997
|
}
|
|
1998
|
-
class
|
|
1998
|
+
class je extends _ {
|
|
1999
1999
|
_parse(e) {
|
|
2000
2000
|
const { status: t, ctx: n } = this._processInputParams(e), s = (a, i) => {
|
|
2001
|
-
if (
|
|
2001
|
+
if (ft(a) || ft(i))
|
|
2002
2002
|
return v;
|
|
2003
|
-
const o =
|
|
2004
|
-
return o.valid ? ((
|
|
2005
|
-
code:
|
|
2003
|
+
const o = pt(a.value, i.value);
|
|
2004
|
+
return o.valid ? ((ht(a) || ht(i)) && t.dirty(), { status: t.value, value: o.data }) : (l(n, {
|
|
2005
|
+
code: d.invalid_intersection_types
|
|
2006
2006
|
}), v);
|
|
2007
2007
|
};
|
|
2008
2008
|
return n.common.async ? Promise.all([
|
|
@@ -2027,31 +2027,31 @@ class Ae extends _ {
|
|
|
2027
2027
|
}));
|
|
2028
2028
|
}
|
|
2029
2029
|
}
|
|
2030
|
-
|
|
2030
|
+
je.create = (r, e, t) => new je({
|
|
2031
2031
|
left: r,
|
|
2032
2032
|
right: e,
|
|
2033
2033
|
typeName: y.ZodIntersection,
|
|
2034
2034
|
...g(t)
|
|
2035
2035
|
});
|
|
2036
|
-
class
|
|
2036
|
+
class J extends _ {
|
|
2037
2037
|
_parse(e) {
|
|
2038
2038
|
const { status: t, ctx: n } = this._processInputParams(e);
|
|
2039
|
-
if (n.parsedType !==
|
|
2039
|
+
if (n.parsedType !== h.array)
|
|
2040
2040
|
return l(n, {
|
|
2041
|
-
code:
|
|
2042
|
-
expected:
|
|
2041
|
+
code: d.invalid_type,
|
|
2042
|
+
expected: h.array,
|
|
2043
2043
|
received: n.parsedType
|
|
2044
2044
|
}), v;
|
|
2045
2045
|
if (n.data.length < this._def.items.length)
|
|
2046
2046
|
return l(n, {
|
|
2047
|
-
code:
|
|
2047
|
+
code: d.too_small,
|
|
2048
2048
|
minimum: this._def.items.length,
|
|
2049
2049
|
inclusive: !0,
|
|
2050
2050
|
exact: !1,
|
|
2051
2051
|
type: "array"
|
|
2052
2052
|
}), v;
|
|
2053
2053
|
!this._def.rest && n.data.length > this._def.items.length && (l(n, {
|
|
2054
|
-
code:
|
|
2054
|
+
code: d.too_big,
|
|
2055
2055
|
maximum: this._def.items.length,
|
|
2056
2056
|
inclusive: !0,
|
|
2057
2057
|
exact: !1,
|
|
@@ -2059,31 +2059,31 @@ class q extends _ {
|
|
|
2059
2059
|
}), t.dirty());
|
|
2060
2060
|
const a = [...n.data].map((i, o) => {
|
|
2061
2061
|
const u = this._def.items[o] || this._def.rest;
|
|
2062
|
-
return u ? u._parse(new
|
|
2062
|
+
return u ? u._parse(new Y(n, i, n.path, o)) : null;
|
|
2063
2063
|
}).filter((i) => !!i);
|
|
2064
|
-
return n.common.async ? Promise.all(a).then((i) =>
|
|
2064
|
+
return n.common.async ? Promise.all(a).then((i) => N.mergeArray(t, i)) : N.mergeArray(t, a);
|
|
2065
2065
|
}
|
|
2066
2066
|
get items() {
|
|
2067
2067
|
return this._def.items;
|
|
2068
2068
|
}
|
|
2069
2069
|
rest(e) {
|
|
2070
|
-
return new
|
|
2070
|
+
return new J({
|
|
2071
2071
|
...this._def,
|
|
2072
2072
|
rest: e
|
|
2073
2073
|
});
|
|
2074
2074
|
}
|
|
2075
2075
|
}
|
|
2076
|
-
|
|
2076
|
+
J.create = (r, e) => {
|
|
2077
2077
|
if (!Array.isArray(r))
|
|
2078
2078
|
throw new Error("You must pass an array of schemas to z.tuple([ ... ])");
|
|
2079
|
-
return new
|
|
2079
|
+
return new J({
|
|
2080
2080
|
items: r,
|
|
2081
2081
|
typeName: y.ZodTuple,
|
|
2082
2082
|
rest: null,
|
|
2083
2083
|
...g(e)
|
|
2084
2084
|
});
|
|
2085
2085
|
};
|
|
2086
|
-
class
|
|
2086
|
+
class Me extends _ {
|
|
2087
2087
|
get keySchema() {
|
|
2088
2088
|
return this._def.keyType;
|
|
2089
2089
|
}
|
|
@@ -2092,39 +2092,39 @@ class Ze extends _ {
|
|
|
2092
2092
|
}
|
|
2093
2093
|
_parse(e) {
|
|
2094
2094
|
const { status: t, ctx: n } = this._processInputParams(e);
|
|
2095
|
-
if (n.parsedType !==
|
|
2095
|
+
if (n.parsedType !== h.object)
|
|
2096
2096
|
return l(n, {
|
|
2097
|
-
code:
|
|
2098
|
-
expected:
|
|
2097
|
+
code: d.invalid_type,
|
|
2098
|
+
expected: h.object,
|
|
2099
2099
|
received: n.parsedType
|
|
2100
2100
|
}), v;
|
|
2101
2101
|
const s = [], a = this._def.keyType, i = this._def.valueType;
|
|
2102
2102
|
for (const o in n.data)
|
|
2103
2103
|
s.push({
|
|
2104
|
-
key: a._parse(new
|
|
2105
|
-
value: i._parse(new
|
|
2104
|
+
key: a._parse(new Y(n, o, n.path, o)),
|
|
2105
|
+
value: i._parse(new Y(n, n.data[o], n.path, o)),
|
|
2106
2106
|
alwaysSet: o in n.data
|
|
2107
2107
|
});
|
|
2108
|
-
return n.common.async ?
|
|
2108
|
+
return n.common.async ? N.mergeObjectAsync(t, s) : N.mergeObjectSync(t, s);
|
|
2109
2109
|
}
|
|
2110
2110
|
get element() {
|
|
2111
2111
|
return this._def.valueType;
|
|
2112
2112
|
}
|
|
2113
2113
|
static create(e, t, n) {
|
|
2114
|
-
return t instanceof _ ? new
|
|
2114
|
+
return t instanceof _ ? new Me({
|
|
2115
2115
|
keyType: e,
|
|
2116
2116
|
valueType: t,
|
|
2117
2117
|
typeName: y.ZodRecord,
|
|
2118
2118
|
...g(n)
|
|
2119
|
-
}) : new
|
|
2120
|
-
keyType:
|
|
2119
|
+
}) : new Me({
|
|
2120
|
+
keyType: z.create(),
|
|
2121
2121
|
valueType: e,
|
|
2122
2122
|
typeName: y.ZodRecord,
|
|
2123
2123
|
...g(t)
|
|
2124
2124
|
});
|
|
2125
2125
|
}
|
|
2126
2126
|
}
|
|
2127
|
-
class
|
|
2127
|
+
class Qe extends _ {
|
|
2128
2128
|
get keySchema() {
|
|
2129
2129
|
return this._def.keyType;
|
|
2130
2130
|
}
|
|
@@ -2133,64 +2133,64 @@ class Ge extends _ {
|
|
|
2133
2133
|
}
|
|
2134
2134
|
_parse(e) {
|
|
2135
2135
|
const { status: t, ctx: n } = this._processInputParams(e);
|
|
2136
|
-
if (n.parsedType !==
|
|
2136
|
+
if (n.parsedType !== h.map)
|
|
2137
2137
|
return l(n, {
|
|
2138
|
-
code:
|
|
2139
|
-
expected:
|
|
2138
|
+
code: d.invalid_type,
|
|
2139
|
+
expected: h.map,
|
|
2140
2140
|
received: n.parsedType
|
|
2141
2141
|
}), v;
|
|
2142
|
-
const s = this._def.keyType, a = this._def.valueType, i = [...n.data.entries()].map(([o, u],
|
|
2143
|
-
key: s._parse(new
|
|
2144
|
-
value: a._parse(new
|
|
2142
|
+
const s = this._def.keyType, a = this._def.valueType, i = [...n.data.entries()].map(([o, u], c) => ({
|
|
2143
|
+
key: s._parse(new Y(n, o, n.path, [c, "key"])),
|
|
2144
|
+
value: a._parse(new Y(n, u, n.path, [c, "value"]))
|
|
2145
2145
|
}));
|
|
2146
2146
|
if (n.common.async) {
|
|
2147
2147
|
const o = /* @__PURE__ */ new Map();
|
|
2148
2148
|
return Promise.resolve().then(async () => {
|
|
2149
2149
|
for (const u of i) {
|
|
2150
|
-
const
|
|
2151
|
-
if (
|
|
2150
|
+
const c = await u.key, p = await u.value;
|
|
2151
|
+
if (c.status === "aborted" || p.status === "aborted")
|
|
2152
2152
|
return v;
|
|
2153
|
-
(
|
|
2153
|
+
(c.status === "dirty" || p.status === "dirty") && t.dirty(), o.set(c.value, p.value);
|
|
2154
2154
|
}
|
|
2155
2155
|
return { status: t.value, value: o };
|
|
2156
2156
|
});
|
|
2157
2157
|
} else {
|
|
2158
2158
|
const o = /* @__PURE__ */ new Map();
|
|
2159
2159
|
for (const u of i) {
|
|
2160
|
-
const
|
|
2161
|
-
if (
|
|
2160
|
+
const c = u.key, p = u.value;
|
|
2161
|
+
if (c.status === "aborted" || p.status === "aborted")
|
|
2162
2162
|
return v;
|
|
2163
|
-
(
|
|
2163
|
+
(c.status === "dirty" || p.status === "dirty") && t.dirty(), o.set(c.value, p.value);
|
|
2164
2164
|
}
|
|
2165
2165
|
return { status: t.value, value: o };
|
|
2166
2166
|
}
|
|
2167
2167
|
}
|
|
2168
2168
|
}
|
|
2169
|
-
|
|
2169
|
+
Qe.create = (r, e, t) => new Qe({
|
|
2170
2170
|
valueType: e,
|
|
2171
2171
|
keyType: r,
|
|
2172
2172
|
typeName: y.ZodMap,
|
|
2173
2173
|
...g(t)
|
|
2174
2174
|
});
|
|
2175
|
-
class
|
|
2175
|
+
class pe extends _ {
|
|
2176
2176
|
_parse(e) {
|
|
2177
2177
|
const { status: t, ctx: n } = this._processInputParams(e);
|
|
2178
|
-
if (n.parsedType !==
|
|
2178
|
+
if (n.parsedType !== h.set)
|
|
2179
2179
|
return l(n, {
|
|
2180
|
-
code:
|
|
2181
|
-
expected:
|
|
2180
|
+
code: d.invalid_type,
|
|
2181
|
+
expected: h.set,
|
|
2182
2182
|
received: n.parsedType
|
|
2183
2183
|
}), v;
|
|
2184
2184
|
const s = this._def;
|
|
2185
2185
|
s.minSize !== null && n.data.size < s.minSize.value && (l(n, {
|
|
2186
|
-
code:
|
|
2186
|
+
code: d.too_small,
|
|
2187
2187
|
minimum: s.minSize.value,
|
|
2188
2188
|
type: "set",
|
|
2189
2189
|
inclusive: !0,
|
|
2190
2190
|
exact: !1,
|
|
2191
2191
|
message: s.minSize.message
|
|
2192
2192
|
}), t.dirty()), s.maxSize !== null && n.data.size > s.maxSize.value && (l(n, {
|
|
2193
|
-
code:
|
|
2193
|
+
code: d.too_big,
|
|
2194
2194
|
maximum: s.maxSize.value,
|
|
2195
2195
|
type: "set",
|
|
2196
2196
|
inclusive: !0,
|
|
@@ -2199,27 +2199,27 @@ class le extends _ {
|
|
|
2199
2199
|
}), t.dirty());
|
|
2200
2200
|
const a = this._def.valueType;
|
|
2201
2201
|
function i(u) {
|
|
2202
|
-
const
|
|
2203
|
-
for (const
|
|
2204
|
-
if (
|
|
2202
|
+
const c = /* @__PURE__ */ new Set();
|
|
2203
|
+
for (const p of u) {
|
|
2204
|
+
if (p.status === "aborted")
|
|
2205
2205
|
return v;
|
|
2206
|
-
|
|
2206
|
+
p.status === "dirty" && t.dirty(), c.add(p.value);
|
|
2207
2207
|
}
|
|
2208
|
-
return { status: t.value, value:
|
|
2208
|
+
return { status: t.value, value: c };
|
|
2209
2209
|
}
|
|
2210
|
-
const o = [...n.data.values()].map((u,
|
|
2210
|
+
const o = [...n.data.values()].map((u, c) => a._parse(new Y(n, u, n.path, c)));
|
|
2211
2211
|
return n.common.async ? Promise.all(o).then((u) => i(u)) : i(o);
|
|
2212
2212
|
}
|
|
2213
2213
|
min(e, t) {
|
|
2214
|
-
return new
|
|
2214
|
+
return new pe({
|
|
2215
2215
|
...this._def,
|
|
2216
|
-
minSize: { value: e, message:
|
|
2216
|
+
minSize: { value: e, message: m.toString(t) }
|
|
2217
2217
|
});
|
|
2218
2218
|
}
|
|
2219
2219
|
max(e, t) {
|
|
2220
|
-
return new
|
|
2220
|
+
return new pe({
|
|
2221
2221
|
...this._def,
|
|
2222
|
-
maxSize: { value: e, message:
|
|
2222
|
+
maxSize: { value: e, message: m.toString(t) }
|
|
2223
2223
|
});
|
|
2224
2224
|
}
|
|
2225
2225
|
size(e, t) {
|
|
@@ -2229,77 +2229,77 @@ class le extends _ {
|
|
|
2229
2229
|
return this.min(1, e);
|
|
2230
2230
|
}
|
|
2231
2231
|
}
|
|
2232
|
-
|
|
2232
|
+
pe.create = (r, e) => new pe({
|
|
2233
2233
|
valueType: r,
|
|
2234
2234
|
minSize: null,
|
|
2235
2235
|
maxSize: null,
|
|
2236
2236
|
typeName: y.ZodSet,
|
|
2237
2237
|
...g(e)
|
|
2238
2238
|
});
|
|
2239
|
-
class
|
|
2239
|
+
class ge extends _ {
|
|
2240
2240
|
constructor() {
|
|
2241
2241
|
super(...arguments), this.validate = this.implement;
|
|
2242
2242
|
}
|
|
2243
2243
|
_parse(e) {
|
|
2244
2244
|
const { ctx: t } = this._processInputParams(e);
|
|
2245
|
-
if (t.parsedType !==
|
|
2245
|
+
if (t.parsedType !== h.function)
|
|
2246
2246
|
return l(t, {
|
|
2247
|
-
code:
|
|
2248
|
-
expected:
|
|
2247
|
+
code: d.invalid_type,
|
|
2248
|
+
expected: h.function,
|
|
2249
2249
|
received: t.parsedType
|
|
2250
2250
|
}), v;
|
|
2251
2251
|
function n(o, u) {
|
|
2252
|
-
return
|
|
2252
|
+
return Ye({
|
|
2253
2253
|
data: o,
|
|
2254
2254
|
path: t.path,
|
|
2255
2255
|
errorMaps: [
|
|
2256
2256
|
t.common.contextualErrorMap,
|
|
2257
2257
|
t.schemaErrorMap,
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
].filter((
|
|
2258
|
+
Ke(),
|
|
2259
|
+
_e
|
|
2260
|
+
].filter((c) => !!c),
|
|
2261
2261
|
issueData: {
|
|
2262
|
-
code:
|
|
2262
|
+
code: d.invalid_arguments,
|
|
2263
2263
|
argumentsError: u
|
|
2264
2264
|
}
|
|
2265
2265
|
});
|
|
2266
2266
|
}
|
|
2267
2267
|
function s(o, u) {
|
|
2268
|
-
return
|
|
2268
|
+
return Ye({
|
|
2269
2269
|
data: o,
|
|
2270
2270
|
path: t.path,
|
|
2271
2271
|
errorMaps: [
|
|
2272
2272
|
t.common.contextualErrorMap,
|
|
2273
2273
|
t.schemaErrorMap,
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
].filter((
|
|
2274
|
+
Ke(),
|
|
2275
|
+
_e
|
|
2276
|
+
].filter((c) => !!c),
|
|
2277
2277
|
issueData: {
|
|
2278
|
-
code:
|
|
2278
|
+
code: d.invalid_return_type,
|
|
2279
2279
|
returnTypeError: u
|
|
2280
2280
|
}
|
|
2281
2281
|
});
|
|
2282
2282
|
}
|
|
2283
2283
|
const a = { errorMap: t.common.contextualErrorMap }, i = t.data;
|
|
2284
|
-
if (this._def.returns instanceof
|
|
2284
|
+
if (this._def.returns instanceof be) {
|
|
2285
2285
|
const o = this;
|
|
2286
|
-
return
|
|
2287
|
-
const
|
|
2288
|
-
throw
|
|
2289
|
-
}), b = await Reflect.apply(i, this,
|
|
2290
|
-
return await o._def.returns._def.type.parseAsync(b, a).catch((
|
|
2291
|
-
throw
|
|
2286
|
+
return P(async function(...u) {
|
|
2287
|
+
const c = new M([]), p = await o._def.args.parseAsync(u, a).catch((G) => {
|
|
2288
|
+
throw c.addIssue(n(u, G)), c;
|
|
2289
|
+
}), b = await Reflect.apply(i, this, p);
|
|
2290
|
+
return await o._def.returns._def.type.parseAsync(b, a).catch((G) => {
|
|
2291
|
+
throw c.addIssue(s(b, G)), c;
|
|
2292
2292
|
});
|
|
2293
2293
|
});
|
|
2294
2294
|
} else {
|
|
2295
2295
|
const o = this;
|
|
2296
|
-
return
|
|
2297
|
-
const
|
|
2298
|
-
if (!
|
|
2299
|
-
throw new
|
|
2300
|
-
const
|
|
2296
|
+
return P(function(...u) {
|
|
2297
|
+
const c = o._def.args.safeParse(u, a);
|
|
2298
|
+
if (!c.success)
|
|
2299
|
+
throw new M([n(u, c.error)]);
|
|
2300
|
+
const p = Reflect.apply(i, this, c.data), b = o._def.returns.safeParse(p, a);
|
|
2301
2301
|
if (!b.success)
|
|
2302
|
-
throw new
|
|
2302
|
+
throw new M([s(p, b.error)]);
|
|
2303
2303
|
return b.data;
|
|
2304
2304
|
});
|
|
2305
2305
|
}
|
|
@@ -2311,13 +2311,13 @@ class pe extends _ {
|
|
|
2311
2311
|
return this._def.returns;
|
|
2312
2312
|
}
|
|
2313
2313
|
args(...e) {
|
|
2314
|
-
return new
|
|
2314
|
+
return new ge({
|
|
2315
2315
|
...this._def,
|
|
2316
|
-
args:
|
|
2316
|
+
args: J.create(e).rest(fe.create())
|
|
2317
2317
|
});
|
|
2318
2318
|
}
|
|
2319
2319
|
returns(e) {
|
|
2320
|
-
return new
|
|
2320
|
+
return new ge({
|
|
2321
2321
|
...this._def,
|
|
2322
2322
|
returns: e
|
|
2323
2323
|
});
|
|
@@ -2329,15 +2329,15 @@ class pe extends _ {
|
|
|
2329
2329
|
return this.parse(e);
|
|
2330
2330
|
}
|
|
2331
2331
|
static create(e, t, n) {
|
|
2332
|
-
return new
|
|
2333
|
-
args: e ||
|
|
2334
|
-
returns: t ||
|
|
2332
|
+
return new ge({
|
|
2333
|
+
args: e || J.create([]).rest(fe.create()),
|
|
2334
|
+
returns: t || fe.create(),
|
|
2335
2335
|
typeName: y.ZodFunction,
|
|
2336
2336
|
...g(n)
|
|
2337
2337
|
});
|
|
2338
2338
|
}
|
|
2339
2339
|
}
|
|
2340
|
-
class
|
|
2340
|
+
class De extends _ {
|
|
2341
2341
|
get schema() {
|
|
2342
2342
|
return this._def.getter();
|
|
2343
2343
|
}
|
|
@@ -2346,18 +2346,18 @@ class Pe extends _ {
|
|
|
2346
2346
|
return this._def.getter()._parse({ data: t.data, path: t.path, parent: t });
|
|
2347
2347
|
}
|
|
2348
2348
|
}
|
|
2349
|
-
|
|
2349
|
+
De.create = (r, e) => new De({
|
|
2350
2350
|
getter: r,
|
|
2351
2351
|
typeName: y.ZodLazy,
|
|
2352
2352
|
...g(e)
|
|
2353
2353
|
});
|
|
2354
|
-
class
|
|
2354
|
+
class Le extends _ {
|
|
2355
2355
|
_parse(e) {
|
|
2356
2356
|
if (e.data !== this._def.value) {
|
|
2357
2357
|
const t = this._getOrReturnCtx(e);
|
|
2358
2358
|
return l(t, {
|
|
2359
2359
|
received: t.data,
|
|
2360
|
-
code:
|
|
2360
|
+
code: d.invalid_literal,
|
|
2361
2361
|
expected: this._def.value
|
|
2362
2362
|
}), v;
|
|
2363
2363
|
}
|
|
@@ -2367,21 +2367,21 @@ class je extends _ {
|
|
|
2367
2367
|
return this._def.value;
|
|
2368
2368
|
}
|
|
2369
2369
|
}
|
|
2370
|
-
|
|
2370
|
+
Le.create = (r, e) => new Le({
|
|
2371
2371
|
value: r,
|
|
2372
2372
|
typeName: y.ZodLiteral,
|
|
2373
2373
|
...g(e)
|
|
2374
2374
|
});
|
|
2375
|
-
function
|
|
2376
|
-
return new
|
|
2375
|
+
function Vt(r, e) {
|
|
2376
|
+
return new ue({
|
|
2377
2377
|
values: r,
|
|
2378
2378
|
typeName: y.ZodEnum,
|
|
2379
2379
|
...g(e)
|
|
2380
2380
|
});
|
|
2381
2381
|
}
|
|
2382
|
-
class
|
|
2382
|
+
class ue extends _ {
|
|
2383
2383
|
constructor() {
|
|
2384
|
-
super(...arguments),
|
|
2384
|
+
super(...arguments), Se.set(this, void 0);
|
|
2385
2385
|
}
|
|
2386
2386
|
_parse(e) {
|
|
2387
2387
|
if (typeof e.data != "string") {
|
|
@@ -2389,18 +2389,18 @@ class ae extends _ {
|
|
|
2389
2389
|
return l(t, {
|
|
2390
2390
|
expected: x.joinValues(n),
|
|
2391
2391
|
received: t.parsedType,
|
|
2392
|
-
code:
|
|
2392
|
+
code: d.invalid_type
|
|
2393
2393
|
}), v;
|
|
2394
2394
|
}
|
|
2395
|
-
if (
|
|
2395
|
+
if (Je(this, Se) || Dt(this, Se, new Set(this._def.values)), !Je(this, Se).has(e.data)) {
|
|
2396
2396
|
const t = this._getOrReturnCtx(e), n = this._def.values;
|
|
2397
2397
|
return l(t, {
|
|
2398
2398
|
received: t.data,
|
|
2399
|
-
code:
|
|
2399
|
+
code: d.invalid_enum_value,
|
|
2400
2400
|
options: n
|
|
2401
2401
|
}), v;
|
|
2402
2402
|
}
|
|
2403
|
-
return
|
|
2403
|
+
return P(e.data);
|
|
2404
2404
|
}
|
|
2405
2405
|
get options() {
|
|
2406
2406
|
return this._def.values;
|
|
@@ -2424,79 +2424,79 @@ class ae extends _ {
|
|
|
2424
2424
|
return e;
|
|
2425
2425
|
}
|
|
2426
2426
|
extract(e, t = this._def) {
|
|
2427
|
-
return
|
|
2427
|
+
return ue.create(e, {
|
|
2428
2428
|
...this._def,
|
|
2429
2429
|
...t
|
|
2430
2430
|
});
|
|
2431
2431
|
}
|
|
2432
2432
|
exclude(e, t = this._def) {
|
|
2433
|
-
return
|
|
2433
|
+
return ue.create(this.options.filter((n) => !e.includes(n)), {
|
|
2434
2434
|
...this._def,
|
|
2435
2435
|
...t
|
|
2436
2436
|
});
|
|
2437
2437
|
}
|
|
2438
2438
|
}
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
class
|
|
2439
|
+
Se = /* @__PURE__ */ new WeakMap();
|
|
2440
|
+
ue.create = Vt;
|
|
2441
|
+
class Ue extends _ {
|
|
2442
2442
|
constructor() {
|
|
2443
|
-
super(...arguments),
|
|
2443
|
+
super(...arguments), Ce.set(this, void 0);
|
|
2444
2444
|
}
|
|
2445
2445
|
_parse(e) {
|
|
2446
2446
|
const t = x.getValidEnumValues(this._def.values), n = this._getOrReturnCtx(e);
|
|
2447
|
-
if (n.parsedType !==
|
|
2447
|
+
if (n.parsedType !== h.string && n.parsedType !== h.number) {
|
|
2448
2448
|
const s = x.objectValues(t);
|
|
2449
2449
|
return l(n, {
|
|
2450
2450
|
expected: x.joinValues(s),
|
|
2451
2451
|
received: n.parsedType,
|
|
2452
|
-
code:
|
|
2452
|
+
code: d.invalid_type
|
|
2453
2453
|
}), v;
|
|
2454
2454
|
}
|
|
2455
|
-
if (
|
|
2455
|
+
if (Je(this, Ce) || Dt(this, Ce, new Set(x.getValidEnumValues(this._def.values))), !Je(this, Ce).has(e.data)) {
|
|
2456
2456
|
const s = x.objectValues(t);
|
|
2457
2457
|
return l(n, {
|
|
2458
2458
|
received: n.data,
|
|
2459
|
-
code:
|
|
2459
|
+
code: d.invalid_enum_value,
|
|
2460
2460
|
options: s
|
|
2461
2461
|
}), v;
|
|
2462
2462
|
}
|
|
2463
|
-
return
|
|
2463
|
+
return P(e.data);
|
|
2464
2464
|
}
|
|
2465
2465
|
get enum() {
|
|
2466
2466
|
return this._def.values;
|
|
2467
2467
|
}
|
|
2468
2468
|
}
|
|
2469
|
-
|
|
2470
|
-
|
|
2469
|
+
Ce = /* @__PURE__ */ new WeakMap();
|
|
2470
|
+
Ue.create = (r, e) => new Ue({
|
|
2471
2471
|
values: r,
|
|
2472
2472
|
typeName: y.ZodNativeEnum,
|
|
2473
2473
|
...g(e)
|
|
2474
2474
|
});
|
|
2475
|
-
class
|
|
2475
|
+
class be extends _ {
|
|
2476
2476
|
unwrap() {
|
|
2477
2477
|
return this._def.type;
|
|
2478
2478
|
}
|
|
2479
2479
|
_parse(e) {
|
|
2480
2480
|
const { ctx: t } = this._processInputParams(e);
|
|
2481
|
-
if (t.parsedType !==
|
|
2481
|
+
if (t.parsedType !== h.promise && t.common.async === !1)
|
|
2482
2482
|
return l(t, {
|
|
2483
|
-
code:
|
|
2484
|
-
expected:
|
|
2483
|
+
code: d.invalid_type,
|
|
2484
|
+
expected: h.promise,
|
|
2485
2485
|
received: t.parsedType
|
|
2486
2486
|
}), v;
|
|
2487
|
-
const n = t.parsedType ===
|
|
2488
|
-
return
|
|
2487
|
+
const n = t.parsedType === h.promise ? t.data : Promise.resolve(t.data);
|
|
2488
|
+
return P(n.then((s) => this._def.type.parseAsync(s, {
|
|
2489
2489
|
path: t.path,
|
|
2490
2490
|
errorMap: t.common.contextualErrorMap
|
|
2491
2491
|
})));
|
|
2492
2492
|
}
|
|
2493
2493
|
}
|
|
2494
|
-
|
|
2494
|
+
be.create = (r, e) => new be({
|
|
2495
2495
|
type: r,
|
|
2496
2496
|
typeName: y.ZodPromise,
|
|
2497
2497
|
...g(e)
|
|
2498
2498
|
});
|
|
2499
|
-
class
|
|
2499
|
+
class B extends _ {
|
|
2500
2500
|
innerType() {
|
|
2501
2501
|
return this._def.schema;
|
|
2502
2502
|
}
|
|
@@ -2523,7 +2523,7 @@ class z extends _ {
|
|
|
2523
2523
|
path: n.path,
|
|
2524
2524
|
parent: n
|
|
2525
2525
|
});
|
|
2526
|
-
return u.status === "aborted" ? v : u.status === "dirty" || t.value === "dirty" ?
|
|
2526
|
+
return u.status === "aborted" ? v : u.status === "dirty" || t.value === "dirty" ? ve(u.value) : u;
|
|
2527
2527
|
});
|
|
2528
2528
|
{
|
|
2529
2529
|
if (t.value === "aborted")
|
|
@@ -2533,7 +2533,7 @@ class z extends _ {
|
|
|
2533
2533
|
path: n.path,
|
|
2534
2534
|
parent: n
|
|
2535
2535
|
});
|
|
2536
|
-
return o.status === "aborted" ? v : o.status === "dirty" || t.value === "dirty" ?
|
|
2536
|
+
return o.status === "aborted" ? v : o.status === "dirty" || t.value === "dirty" ? ve(o.value) : o;
|
|
2537
2537
|
}
|
|
2538
2538
|
}
|
|
2539
2539
|
if (s.type === "refinement") {
|
|
@@ -2562,60 +2562,60 @@ class z extends _ {
|
|
|
2562
2562
|
path: n.path,
|
|
2563
2563
|
parent: n
|
|
2564
2564
|
});
|
|
2565
|
-
if (!
|
|
2565
|
+
if (!Re(i))
|
|
2566
2566
|
return i;
|
|
2567
2567
|
const o = s.transform(i.value, a);
|
|
2568
2568
|
if (o instanceof Promise)
|
|
2569
2569
|
throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");
|
|
2570
2570
|
return { status: t.value, value: o };
|
|
2571
2571
|
} else
|
|
2572
|
-
return this._def.schema._parseAsync({ data: n.data, path: n.path, parent: n }).then((i) =>
|
|
2572
|
+
return this._def.schema._parseAsync({ data: n.data, path: n.path, parent: n }).then((i) => Re(i) ? Promise.resolve(s.transform(i.value, a)).then((o) => ({ status: t.value, value: o })) : i);
|
|
2573
2573
|
x.assertNever(s);
|
|
2574
2574
|
}
|
|
2575
2575
|
}
|
|
2576
|
-
|
|
2576
|
+
B.create = (r, e, t) => new B({
|
|
2577
2577
|
schema: r,
|
|
2578
2578
|
typeName: y.ZodEffects,
|
|
2579
2579
|
effect: e,
|
|
2580
2580
|
...g(t)
|
|
2581
2581
|
});
|
|
2582
|
-
|
|
2582
|
+
B.createWithPreprocess = (r, e, t) => new B({
|
|
2583
2583
|
schema: e,
|
|
2584
2584
|
effect: { type: "preprocess", transform: r },
|
|
2585
2585
|
typeName: y.ZodEffects,
|
|
2586
2586
|
...g(t)
|
|
2587
2587
|
});
|
|
2588
|
-
class
|
|
2588
|
+
class K extends _ {
|
|
2589
2589
|
_parse(e) {
|
|
2590
|
-
return this._getType(e) ===
|
|
2590
|
+
return this._getType(e) === h.undefined ? P(void 0) : this._def.innerType._parse(e);
|
|
2591
2591
|
}
|
|
2592
2592
|
unwrap() {
|
|
2593
2593
|
return this._def.innerType;
|
|
2594
2594
|
}
|
|
2595
2595
|
}
|
|
2596
|
-
|
|
2596
|
+
K.create = (r, e) => new K({
|
|
2597
2597
|
innerType: r,
|
|
2598
2598
|
typeName: y.ZodOptional,
|
|
2599
2599
|
...g(e)
|
|
2600
2600
|
});
|
|
2601
|
-
class
|
|
2601
|
+
class le extends _ {
|
|
2602
2602
|
_parse(e) {
|
|
2603
|
-
return this._getType(e) ===
|
|
2603
|
+
return this._getType(e) === h.null ? P(null) : this._def.innerType._parse(e);
|
|
2604
2604
|
}
|
|
2605
2605
|
unwrap() {
|
|
2606
2606
|
return this._def.innerType;
|
|
2607
2607
|
}
|
|
2608
2608
|
}
|
|
2609
|
-
|
|
2609
|
+
le.create = (r, e) => new le({
|
|
2610
2610
|
innerType: r,
|
|
2611
2611
|
typeName: y.ZodNullable,
|
|
2612
2612
|
...g(e)
|
|
2613
2613
|
});
|
|
2614
|
-
class
|
|
2614
|
+
class $e extends _ {
|
|
2615
2615
|
_parse(e) {
|
|
2616
2616
|
const { ctx: t } = this._processInputParams(e);
|
|
2617
2617
|
let n = t.data;
|
|
2618
|
-
return t.parsedType ===
|
|
2618
|
+
return t.parsedType === h.undefined && (n = this._def.defaultValue()), this._def.innerType._parse({
|
|
2619
2619
|
data: n,
|
|
2620
2620
|
path: t.path,
|
|
2621
2621
|
parent: t
|
|
@@ -2625,13 +2625,13 @@ class De extends _ {
|
|
|
2625
2625
|
return this._def.innerType;
|
|
2626
2626
|
}
|
|
2627
2627
|
}
|
|
2628
|
-
|
|
2628
|
+
$e.create = (r, e) => new $e({
|
|
2629
2629
|
innerType: r,
|
|
2630
2630
|
typeName: y.ZodDefault,
|
|
2631
2631
|
defaultValue: typeof e.default == "function" ? e.default : () => e.default,
|
|
2632
2632
|
...g(e)
|
|
2633
2633
|
});
|
|
2634
|
-
class
|
|
2634
|
+
class Ve extends _ {
|
|
2635
2635
|
_parse(e) {
|
|
2636
2636
|
const { ctx: t } = this._processInputParams(e), n = {
|
|
2637
2637
|
...t,
|
|
@@ -2646,11 +2646,11 @@ class Le extends _ {
|
|
|
2646
2646
|
...n
|
|
2647
2647
|
}
|
|
2648
2648
|
});
|
|
2649
|
-
return
|
|
2649
|
+
return Ie(s) ? s.then((a) => ({
|
|
2650
2650
|
status: "valid",
|
|
2651
2651
|
value: a.status === "valid" ? a.value : this._def.catchValue({
|
|
2652
2652
|
get error() {
|
|
2653
|
-
return new
|
|
2653
|
+
return new M(n.common.issues);
|
|
2654
2654
|
},
|
|
2655
2655
|
input: n.data
|
|
2656
2656
|
})
|
|
@@ -2658,7 +2658,7 @@ class Le extends _ {
|
|
|
2658
2658
|
status: "valid",
|
|
2659
2659
|
value: s.status === "valid" ? s.value : this._def.catchValue({
|
|
2660
2660
|
get error() {
|
|
2661
|
-
return new
|
|
2661
|
+
return new M(n.common.issues);
|
|
2662
2662
|
},
|
|
2663
2663
|
input: n.data
|
|
2664
2664
|
})
|
|
@@ -2668,31 +2668,31 @@ class Le extends _ {
|
|
|
2668
2668
|
return this._def.innerType;
|
|
2669
2669
|
}
|
|
2670
2670
|
}
|
|
2671
|
-
|
|
2671
|
+
Ve.create = (r, e) => new Ve({
|
|
2672
2672
|
innerType: r,
|
|
2673
2673
|
typeName: y.ZodCatch,
|
|
2674
2674
|
catchValue: typeof e.catch == "function" ? e.catch : () => e.catch,
|
|
2675
2675
|
...g(e)
|
|
2676
2676
|
});
|
|
2677
|
-
class
|
|
2677
|
+
class et extends _ {
|
|
2678
2678
|
_parse(e) {
|
|
2679
|
-
if (this._getType(e) !==
|
|
2679
|
+
if (this._getType(e) !== h.nan) {
|
|
2680
2680
|
const n = this._getOrReturnCtx(e);
|
|
2681
2681
|
return l(n, {
|
|
2682
|
-
code:
|
|
2683
|
-
expected:
|
|
2682
|
+
code: d.invalid_type,
|
|
2683
|
+
expected: h.nan,
|
|
2684
2684
|
received: n.parsedType
|
|
2685
2685
|
}), v;
|
|
2686
2686
|
}
|
|
2687
2687
|
return { status: "valid", value: e.data };
|
|
2688
2688
|
}
|
|
2689
2689
|
}
|
|
2690
|
-
|
|
2690
|
+
et.create = (r) => new et({
|
|
2691
2691
|
typeName: y.ZodNaN,
|
|
2692
2692
|
...g(r)
|
|
2693
2693
|
});
|
|
2694
|
-
const
|
|
2695
|
-
class
|
|
2694
|
+
const Fr = Symbol("zod_brand");
|
|
2695
|
+
class yt extends _ {
|
|
2696
2696
|
_parse(e) {
|
|
2697
2697
|
const { ctx: t } = this._processInputParams(e), n = t.data;
|
|
2698
2698
|
return this._def.type._parse({
|
|
@@ -2705,7 +2705,7 @@ class pt extends _ {
|
|
|
2705
2705
|
return this._def.type;
|
|
2706
2706
|
}
|
|
2707
2707
|
}
|
|
2708
|
-
class
|
|
2708
|
+
class Fe extends _ {
|
|
2709
2709
|
_parse(e) {
|
|
2710
2710
|
const { status: t, ctx: n } = this._processInputParams(e);
|
|
2711
2711
|
if (n.common.async)
|
|
@@ -2715,7 +2715,7 @@ class $e extends _ {
|
|
|
2715
2715
|
path: n.path,
|
|
2716
2716
|
parent: n
|
|
2717
2717
|
});
|
|
2718
|
-
return a.status === "aborted" ? v : a.status === "dirty" ? (t.dirty(),
|
|
2718
|
+
return a.status === "aborted" ? v : a.status === "dirty" ? (t.dirty(), ve(a.value)) : this._def.out._parseAsync({
|
|
2719
2719
|
data: a.value,
|
|
2720
2720
|
path: n.path,
|
|
2721
2721
|
parent: n
|
|
@@ -2738,195 +2738,195 @@ class $e extends _ {
|
|
|
2738
2738
|
}
|
|
2739
2739
|
}
|
|
2740
2740
|
static create(e, t) {
|
|
2741
|
-
return new
|
|
2741
|
+
return new Fe({
|
|
2742
2742
|
in: e,
|
|
2743
2743
|
out: t,
|
|
2744
2744
|
typeName: y.ZodPipeline
|
|
2745
2745
|
});
|
|
2746
2746
|
}
|
|
2747
2747
|
}
|
|
2748
|
-
class
|
|
2748
|
+
class ze extends _ {
|
|
2749
2749
|
_parse(e) {
|
|
2750
|
-
const t = this._def.innerType._parse(e), n = (s) => (
|
|
2751
|
-
return
|
|
2750
|
+
const t = this._def.innerType._parse(e), n = (s) => (Re(s) && (s.value = Object.freeze(s.value)), s);
|
|
2751
|
+
return Ie(t) ? t.then((s) => n(s)) : n(t);
|
|
2752
2752
|
}
|
|
2753
2753
|
unwrap() {
|
|
2754
2754
|
return this._def.innerType;
|
|
2755
2755
|
}
|
|
2756
2756
|
}
|
|
2757
|
-
|
|
2757
|
+
ze.create = (r, e) => new ze({
|
|
2758
2758
|
innerType: r,
|
|
2759
2759
|
typeName: y.ZodReadonly,
|
|
2760
2760
|
...g(e)
|
|
2761
2761
|
});
|
|
2762
|
-
function
|
|
2763
|
-
return r ?
|
|
2762
|
+
function zt(r, e = {}, t) {
|
|
2763
|
+
return r ? xe.create().superRefine((n, s) => {
|
|
2764
2764
|
var a, i;
|
|
2765
2765
|
if (!r(n)) {
|
|
2766
|
-
const o = typeof e == "function" ? e(n) : typeof e == "string" ? { message: e } : e, u = (i = (a = o.fatal) !== null && a !== void 0 ? a : t) !== null && i !== void 0 ? i : !0,
|
|
2767
|
-
s.addIssue({ code: "custom", ...
|
|
2766
|
+
const o = typeof e == "function" ? e(n) : typeof e == "string" ? { message: e } : e, u = (i = (a = o.fatal) !== null && a !== void 0 ? a : t) !== null && i !== void 0 ? i : !0, c = typeof o == "string" ? { message: o } : o;
|
|
2767
|
+
s.addIssue({ code: "custom", ...c, fatal: u });
|
|
2768
2768
|
}
|
|
2769
|
-
}) :
|
|
2769
|
+
}) : xe.create();
|
|
2770
2770
|
}
|
|
2771
|
-
const
|
|
2772
|
-
object:
|
|
2771
|
+
const Br = {
|
|
2772
|
+
object: E.lazycreate
|
|
2773
2773
|
};
|
|
2774
2774
|
var y;
|
|
2775
2775
|
(function(r) {
|
|
2776
2776
|
r.ZodString = "ZodString", r.ZodNumber = "ZodNumber", r.ZodNaN = "ZodNaN", r.ZodBigInt = "ZodBigInt", r.ZodBoolean = "ZodBoolean", r.ZodDate = "ZodDate", r.ZodSymbol = "ZodSymbol", r.ZodUndefined = "ZodUndefined", r.ZodNull = "ZodNull", r.ZodAny = "ZodAny", r.ZodUnknown = "ZodUnknown", r.ZodNever = "ZodNever", r.ZodVoid = "ZodVoid", r.ZodArray = "ZodArray", r.ZodObject = "ZodObject", r.ZodUnion = "ZodUnion", r.ZodDiscriminatedUnion = "ZodDiscriminatedUnion", r.ZodIntersection = "ZodIntersection", r.ZodTuple = "ZodTuple", r.ZodRecord = "ZodRecord", r.ZodMap = "ZodMap", r.ZodSet = "ZodSet", r.ZodFunction = "ZodFunction", r.ZodLazy = "ZodLazy", r.ZodLiteral = "ZodLiteral", r.ZodEnum = "ZodEnum", r.ZodEffects = "ZodEffects", r.ZodNativeEnum = "ZodNativeEnum", r.ZodOptional = "ZodOptional", r.ZodNullable = "ZodNullable", r.ZodDefault = "ZodDefault", r.ZodCatch = "ZodCatch", r.ZodPromise = "ZodPromise", r.ZodBranded = "ZodBranded", r.ZodPipeline = "ZodPipeline", r.ZodReadonly = "ZodReadonly";
|
|
2777
2777
|
})(y || (y = {}));
|
|
2778
|
-
const
|
|
2778
|
+
const Wr = (r, e = {
|
|
2779
2779
|
message: `Input not instance of ${r.name}`
|
|
2780
|
-
}) =>
|
|
2781
|
-
string: (r) =>
|
|
2782
|
-
number: (r) =>
|
|
2783
|
-
boolean: (r) =>
|
|
2780
|
+
}) => zt((t) => t instanceof r, e), Ft = z.create, Bt = ce.create, qr = et.create, Hr = de.create, Wt = Ne.create, Kr = he.create, Yr = Ge.create, Jr = Ae.create, Gr = Pe.create, Xr = xe.create, Qr = fe.create, en = ne.create, tn = Xe.create, rn = F.create, nn = E.create, sn = E.strictCreate, an = Ze.create, on = tt.create, cn = je.create, dn = J.create, un = Me.create, ln = Qe.create, fn = pe.create, hn = ge.create, pn = De.create, mn = Le.create, yn = ue.create, vn = Ue.create, gn = be.create, Rt = B.create, _n = K.create, xn = le.create, bn = B.createWithPreprocess, kn = Fe.create, wn = () => Ft().optional(), En = () => Bt().optional(), Tn = () => Wt().optional(), Sn = {
|
|
2781
|
+
string: (r) => z.create({ ...r, coerce: !0 }),
|
|
2782
|
+
number: (r) => ce.create({ ...r, coerce: !0 }),
|
|
2783
|
+
boolean: (r) => Ne.create({
|
|
2784
2784
|
...r,
|
|
2785
2785
|
coerce: !0
|
|
2786
2786
|
}),
|
|
2787
|
-
bigint: (r) =>
|
|
2788
|
-
date: (r) =>
|
|
2789
|
-
},
|
|
2790
|
-
var
|
|
2787
|
+
bigint: (r) => de.create({ ...r, coerce: !0 }),
|
|
2788
|
+
date: (r) => he.create({ ...r, coerce: !0 })
|
|
2789
|
+
}, Cn = v;
|
|
2790
|
+
var f = /* @__PURE__ */ Object.freeze({
|
|
2791
2791
|
__proto__: null,
|
|
2792
|
-
defaultErrorMap:
|
|
2793
|
-
setErrorMap:
|
|
2794
|
-
getErrorMap:
|
|
2795
|
-
makeIssue:
|
|
2796
|
-
EMPTY_PATH:
|
|
2792
|
+
defaultErrorMap: _e,
|
|
2793
|
+
setErrorMap: Sr,
|
|
2794
|
+
getErrorMap: Ke,
|
|
2795
|
+
makeIssue: Ye,
|
|
2796
|
+
EMPTY_PATH: Cr,
|
|
2797
2797
|
addIssueToContext: l,
|
|
2798
|
-
ParseStatus:
|
|
2798
|
+
ParseStatus: N,
|
|
2799
2799
|
INVALID: v,
|
|
2800
|
-
DIRTY:
|
|
2801
|
-
OK:
|
|
2802
|
-
isAborted:
|
|
2803
|
-
isDirty:
|
|
2804
|
-
isValid:
|
|
2805
|
-
isAsync:
|
|
2800
|
+
DIRTY: ve,
|
|
2801
|
+
OK: P,
|
|
2802
|
+
isAborted: ft,
|
|
2803
|
+
isDirty: ht,
|
|
2804
|
+
isValid: Re,
|
|
2805
|
+
isAsync: Ie,
|
|
2806
2806
|
get util() {
|
|
2807
2807
|
return x;
|
|
2808
2808
|
},
|
|
2809
2809
|
get objectUtil() {
|
|
2810
|
-
return
|
|
2810
|
+
return lt;
|
|
2811
2811
|
},
|
|
2812
|
-
ZodParsedType:
|
|
2813
|
-
getParsedType:
|
|
2812
|
+
ZodParsedType: h,
|
|
2813
|
+
getParsedType: ie,
|
|
2814
2814
|
ZodType: _,
|
|
2815
|
-
datetimeRegex:
|
|
2816
|
-
ZodString:
|
|
2817
|
-
ZodNumber:
|
|
2818
|
-
ZodBigInt:
|
|
2819
|
-
ZodBoolean:
|
|
2820
|
-
ZodDate:
|
|
2821
|
-
ZodSymbol:
|
|
2822
|
-
ZodUndefined:
|
|
2823
|
-
ZodNull:
|
|
2824
|
-
ZodAny:
|
|
2825
|
-
ZodUnknown:
|
|
2826
|
-
ZodNever:
|
|
2827
|
-
ZodVoid:
|
|
2828
|
-
ZodArray:
|
|
2829
|
-
ZodObject:
|
|
2830
|
-
ZodUnion:
|
|
2831
|
-
ZodDiscriminatedUnion:
|
|
2832
|
-
ZodIntersection:
|
|
2833
|
-
ZodTuple:
|
|
2834
|
-
ZodRecord:
|
|
2835
|
-
ZodMap:
|
|
2836
|
-
ZodSet:
|
|
2837
|
-
ZodFunction:
|
|
2838
|
-
ZodLazy:
|
|
2839
|
-
ZodLiteral:
|
|
2840
|
-
ZodEnum:
|
|
2841
|
-
ZodNativeEnum:
|
|
2842
|
-
ZodPromise:
|
|
2843
|
-
ZodEffects:
|
|
2844
|
-
ZodTransformer:
|
|
2845
|
-
ZodOptional:
|
|
2846
|
-
ZodNullable:
|
|
2847
|
-
ZodDefault:
|
|
2848
|
-
ZodCatch:
|
|
2849
|
-
ZodNaN:
|
|
2850
|
-
BRAND:
|
|
2851
|
-
ZodBranded:
|
|
2852
|
-
ZodPipeline:
|
|
2853
|
-
ZodReadonly:
|
|
2854
|
-
custom:
|
|
2815
|
+
datetimeRegex: $t,
|
|
2816
|
+
ZodString: z,
|
|
2817
|
+
ZodNumber: ce,
|
|
2818
|
+
ZodBigInt: de,
|
|
2819
|
+
ZodBoolean: Ne,
|
|
2820
|
+
ZodDate: he,
|
|
2821
|
+
ZodSymbol: Ge,
|
|
2822
|
+
ZodUndefined: Ae,
|
|
2823
|
+
ZodNull: Pe,
|
|
2824
|
+
ZodAny: xe,
|
|
2825
|
+
ZodUnknown: fe,
|
|
2826
|
+
ZodNever: ne,
|
|
2827
|
+
ZodVoid: Xe,
|
|
2828
|
+
ZodArray: F,
|
|
2829
|
+
ZodObject: E,
|
|
2830
|
+
ZodUnion: Ze,
|
|
2831
|
+
ZodDiscriminatedUnion: tt,
|
|
2832
|
+
ZodIntersection: je,
|
|
2833
|
+
ZodTuple: J,
|
|
2834
|
+
ZodRecord: Me,
|
|
2835
|
+
ZodMap: Qe,
|
|
2836
|
+
ZodSet: pe,
|
|
2837
|
+
ZodFunction: ge,
|
|
2838
|
+
ZodLazy: De,
|
|
2839
|
+
ZodLiteral: Le,
|
|
2840
|
+
ZodEnum: ue,
|
|
2841
|
+
ZodNativeEnum: Ue,
|
|
2842
|
+
ZodPromise: be,
|
|
2843
|
+
ZodEffects: B,
|
|
2844
|
+
ZodTransformer: B,
|
|
2845
|
+
ZodOptional: K,
|
|
2846
|
+
ZodNullable: le,
|
|
2847
|
+
ZodDefault: $e,
|
|
2848
|
+
ZodCatch: Ve,
|
|
2849
|
+
ZodNaN: et,
|
|
2850
|
+
BRAND: Fr,
|
|
2851
|
+
ZodBranded: yt,
|
|
2852
|
+
ZodPipeline: Fe,
|
|
2853
|
+
ZodReadonly: ze,
|
|
2854
|
+
custom: zt,
|
|
2855
2855
|
Schema: _,
|
|
2856
2856
|
ZodSchema: _,
|
|
2857
|
-
late:
|
|
2857
|
+
late: Br,
|
|
2858
2858
|
get ZodFirstPartyTypeKind() {
|
|
2859
2859
|
return y;
|
|
2860
2860
|
},
|
|
2861
|
-
coerce:
|
|
2862
|
-
any:
|
|
2863
|
-
array:
|
|
2864
|
-
bigint:
|
|
2865
|
-
boolean:
|
|
2866
|
-
date:
|
|
2867
|
-
discriminatedUnion:
|
|
2868
|
-
effect:
|
|
2869
|
-
enum:
|
|
2870
|
-
function:
|
|
2871
|
-
instanceof:
|
|
2872
|
-
intersection:
|
|
2873
|
-
lazy:
|
|
2861
|
+
coerce: Sn,
|
|
2862
|
+
any: Xr,
|
|
2863
|
+
array: rn,
|
|
2864
|
+
bigint: Hr,
|
|
2865
|
+
boolean: Wt,
|
|
2866
|
+
date: Kr,
|
|
2867
|
+
discriminatedUnion: on,
|
|
2868
|
+
effect: Rt,
|
|
2869
|
+
enum: yn,
|
|
2870
|
+
function: hn,
|
|
2871
|
+
instanceof: Wr,
|
|
2872
|
+
intersection: cn,
|
|
2873
|
+
lazy: pn,
|
|
2874
2874
|
literal: mn,
|
|
2875
|
-
map:
|
|
2876
|
-
nan:
|
|
2877
|
-
nativeEnum:
|
|
2878
|
-
never:
|
|
2879
|
-
null:
|
|
2880
|
-
nullable:
|
|
2881
|
-
number:
|
|
2882
|
-
object:
|
|
2883
|
-
oboolean:
|
|
2884
|
-
onumber:
|
|
2885
|
-
optional:
|
|
2886
|
-
ostring:
|
|
2887
|
-
pipeline:
|
|
2888
|
-
preprocess:
|
|
2889
|
-
promise:
|
|
2890
|
-
record:
|
|
2891
|
-
set:
|
|
2892
|
-
strictObject:
|
|
2893
|
-
string:
|
|
2894
|
-
symbol:
|
|
2895
|
-
transformer:
|
|
2896
|
-
tuple:
|
|
2897
|
-
undefined:
|
|
2898
|
-
union:
|
|
2899
|
-
unknown:
|
|
2900
|
-
void:
|
|
2901
|
-
NEVER:
|
|
2902
|
-
ZodIssueCode:
|
|
2903
|
-
quotelessJson:
|
|
2904
|
-
ZodError:
|
|
2875
|
+
map: ln,
|
|
2876
|
+
nan: qr,
|
|
2877
|
+
nativeEnum: vn,
|
|
2878
|
+
never: en,
|
|
2879
|
+
null: Gr,
|
|
2880
|
+
nullable: xn,
|
|
2881
|
+
number: Bt,
|
|
2882
|
+
object: nn,
|
|
2883
|
+
oboolean: Tn,
|
|
2884
|
+
onumber: En,
|
|
2885
|
+
optional: _n,
|
|
2886
|
+
ostring: wn,
|
|
2887
|
+
pipeline: kn,
|
|
2888
|
+
preprocess: bn,
|
|
2889
|
+
promise: gn,
|
|
2890
|
+
record: un,
|
|
2891
|
+
set: fn,
|
|
2892
|
+
strictObject: sn,
|
|
2893
|
+
string: Ft,
|
|
2894
|
+
symbol: Yr,
|
|
2895
|
+
transformer: Rt,
|
|
2896
|
+
tuple: dn,
|
|
2897
|
+
undefined: Jr,
|
|
2898
|
+
union: an,
|
|
2899
|
+
unknown: Qr,
|
|
2900
|
+
void: tn,
|
|
2901
|
+
NEVER: Cn,
|
|
2902
|
+
ZodIssueCode: d,
|
|
2903
|
+
quotelessJson: Tr,
|
|
2904
|
+
ZodError: M
|
|
2905
2905
|
});
|
|
2906
|
-
const
|
|
2907
|
-
var
|
|
2908
|
-
const
|
|
2909
|
-
var
|
|
2910
|
-
const
|
|
2911
|
-
provider:
|
|
2912
|
-
processor_name:
|
|
2913
|
-
metadata:
|
|
2906
|
+
const U = f.string().trim().min(1, { message: "Cannot be blank" }), j = f.string().trim().optional(), It = (r) => f.nullable(r.optional());
|
|
2907
|
+
var qt = /* @__PURE__ */ ((r) => (r.FIRST_NAME = "firstName", r.LAST_NAME = "lastName", r.EMAIL = "email", r.ZIP_CODE = "zipCode", r.CITY = "city", r.STATE = "state", r.COUNTRY = "country", r.ADDRESS = "address", r.PHONE = "phone", r.PROMOTION_CODE = "promotionCode", r))(qt || {});
|
|
2908
|
+
const Ht = f.nativeEnum(qt);
|
|
2909
|
+
var Kt = /* @__PURE__ */ ((r) => (r.CARD_NUMBER = "cardNumber", r.CARD_EXPIRY = "cardExpiry", r.CARD_CVC = "cardCvc", r))(Kt || {});
|
|
2910
|
+
const Yt = f.nativeEnum(Kt), On = f.union([Ht, Yt]), Jt = f.object({
|
|
2911
|
+
provider: f.string(),
|
|
2912
|
+
processor_name: It(f.string()),
|
|
2913
|
+
metadata: It(f.record(f.string(), f.any()))
|
|
2914
2914
|
});
|
|
2915
|
-
|
|
2916
|
-
cardNumber:
|
|
2917
|
-
expiry:
|
|
2918
|
-
cvc:
|
|
2915
|
+
f.object({
|
|
2916
|
+
cardNumber: j,
|
|
2917
|
+
expiry: j,
|
|
2918
|
+
cvc: j
|
|
2919
2919
|
});
|
|
2920
|
-
|
|
2921
|
-
backgroundColor:
|
|
2922
|
-
color:
|
|
2923
|
-
fontFamily:
|
|
2924
|
-
fontSize:
|
|
2925
|
-
fontWeight:
|
|
2926
|
-
margin:
|
|
2927
|
-
padding:
|
|
2920
|
+
f.object({
|
|
2921
|
+
backgroundColor: j,
|
|
2922
|
+
color: j,
|
|
2923
|
+
fontFamily: j,
|
|
2924
|
+
fontSize: j,
|
|
2925
|
+
fontWeight: j,
|
|
2926
|
+
margin: j,
|
|
2927
|
+
padding: j
|
|
2928
2928
|
});
|
|
2929
|
-
const k =
|
|
2929
|
+
const k = f.enum([
|
|
2930
2930
|
// Element -> Form
|
|
2931
2931
|
"LOADED",
|
|
2932
2932
|
"BLUR",
|
|
@@ -2945,121 +2945,125 @@ const k = h.enum([
|
|
|
2945
2945
|
"TOKENIZE",
|
|
2946
2946
|
"CHECKOUT",
|
|
2947
2947
|
"START_PAYMENT_FLOW"
|
|
2948
|
-
]),
|
|
2949
|
-
type:
|
|
2950
|
-
elementType:
|
|
2951
|
-
}),
|
|
2952
|
-
type: An,
|
|
2953
|
-
message: D
|
|
2954
|
-
}), Pn = k.extract(["VALIDATION_ERROR"]), jn = h.object({
|
|
2948
|
+
]), Rn = k.extract(["TOKENIZE_STARTED", "CHECKOUT_STARTED"]), In = f.object({ type: Rn }), Nn = k.extract(["BLUR", "FOCUS", "CHANGE"]), An = f.object({
|
|
2949
|
+
type: Nn,
|
|
2950
|
+
elementType: Yt
|
|
2951
|
+
}), Pn = k.extract(["LOAD_ERROR", "TOKENIZE_ERROR", "CHECKOUT_ERROR"]), Zn = f.object({
|
|
2955
2952
|
type: Pn,
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2953
|
+
message: U
|
|
2954
|
+
}), jn = k.extract(["VALIDATION_ERROR"]), Mn = f.object({
|
|
2955
|
+
type: jn,
|
|
2956
|
+
elementType: On,
|
|
2957
|
+
errors: f.array(f.string())
|
|
2958
|
+
}), Dn = f.object({
|
|
2959
|
+
type: f.literal(k.enum.LOADED),
|
|
2960
|
+
sessionId: U,
|
|
2961
|
+
height: U,
|
|
2962
|
+
totalAmountAtoms: f.number(),
|
|
2963
|
+
currency: j,
|
|
2964
|
+
checkoutPaymentMethods: f.array(Jt)
|
|
2965
|
+
}), Ln = f.object({
|
|
2966
|
+
type: f.literal(k.enum.PAYMENT_FLOW_STARTED),
|
|
2967
|
+
nextActionMetadata: f.record(f.string(), f.any()),
|
|
2968
|
+
paymentFlowMetadata: f.any().optional(),
|
|
2969
|
+
startPFMetadata: f.optional(f.record(f.string(), f.any()))
|
|
2970
|
+
}), Un = f.object({
|
|
2971
|
+
firstName: U,
|
|
2972
|
+
lastName: U,
|
|
2973
|
+
email: U,
|
|
2974
|
+
zipCode: U,
|
|
2975
|
+
country: U,
|
|
2976
|
+
promotionCode: j
|
|
2977
|
+
}), $n = k.extract(["TOKENIZE", "CHECKOUT", "START_PAYMENT_FLOW"]), Gt = f.object({
|
|
2978
|
+
type: $n,
|
|
2979
|
+
sessionId: U,
|
|
2980
|
+
checkoutPaymentMethod: Jt,
|
|
2981
|
+
paymentFlowMetadata: f.any().optional(),
|
|
2982
|
+
doNotUseLegacyCCFlow: f.boolean(),
|
|
2983
|
+
existingCCPMId: j
|
|
2984
|
+
}).extend(Un.shape), Vn = f.object({
|
|
2985
|
+
type: f.literal(k.enum.TOKENIZE_SUCCESS),
|
|
2986
|
+
isReadyForCheckout: f.boolean()
|
|
2987
|
+
}), zn = f.object({
|
|
2988
|
+
type: f.literal(k.enum.CHECKOUT_SUCCESS),
|
|
2989
|
+
invoiceUrls: f.array(f.string()),
|
|
2990
|
+
subscriptionIds: f.array(f.string()),
|
|
2991
|
+
customerId: f.string()
|
|
2992
|
+
}), Fn = f.discriminatedUnion("type", [
|
|
2993
|
+
In,
|
|
2994
|
+
An,
|
|
2992
2995
|
Zn,
|
|
2993
|
-
jn,
|
|
2994
2996
|
Mn,
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
+
Dn,
|
|
2998
|
+
Gt,
|
|
2997
2999
|
Vn,
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3000
|
+
zn,
|
|
3001
|
+
Ln
|
|
3002
|
+
]), Bn = f.object({
|
|
3003
|
+
payload: Fn,
|
|
3004
|
+
nonce: U,
|
|
3005
|
+
formId: U,
|
|
3006
|
+
elementId: U
|
|
3004
3007
|
});
|
|
3005
|
-
|
|
3006
|
-
isLoading:
|
|
3007
|
-
isAvailable:
|
|
3008
|
-
startFlow:
|
|
3008
|
+
f.object({
|
|
3009
|
+
isLoading: f.boolean(),
|
|
3010
|
+
isAvailable: f.boolean(),
|
|
3011
|
+
startFlow: f.function(f.tuple([]), f.void())
|
|
3009
3012
|
});
|
|
3010
|
-
const
|
|
3013
|
+
const Wn = (r) => {
|
|
3011
3014
|
const e = {};
|
|
3012
3015
|
return Object.entries(r).forEach(([t, n]) => {
|
|
3013
3016
|
try {
|
|
3014
|
-
const s =
|
|
3017
|
+
const s = Ht.parse(t);
|
|
3015
3018
|
Array.isArray(n) ? e[s] = n : Array.isArray(n._errors) && (e[s] = n._errors);
|
|
3016
3019
|
} catch {
|
|
3017
3020
|
return;
|
|
3018
3021
|
}
|
|
3019
3022
|
}), e;
|
|
3020
|
-
},
|
|
3023
|
+
}, Xt = (r, e) => Array.from(r.querySelectorAll("input[data-opid]") ?? []).reduce((s, a) => {
|
|
3021
3024
|
const i = a.getAttribute("data-opid");
|
|
3022
3025
|
return i ? { ...s, [i]: a.value } : s;
|
|
3023
|
-
}, e),
|
|
3024
|
-
const
|
|
3026
|
+
}, e), qe = (r, e, t, n, s, a, i) => {
|
|
3027
|
+
const o = Xt(t, {
|
|
3025
3028
|
type: r,
|
|
3026
3029
|
sessionId: e,
|
|
3027
3030
|
checkoutPaymentMethod: s,
|
|
3028
|
-
paymentFlowMetadata:
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3031
|
+
paymentFlowMetadata: i,
|
|
3032
|
+
doNotUseLegacyCCFlow: a
|
|
3033
|
+
}), u = Gt.safeParse(o);
|
|
3034
|
+
if (u.success)
|
|
3035
|
+
return u.data;
|
|
3032
3036
|
{
|
|
3033
|
-
const
|
|
3034
|
-
for (const [
|
|
3035
|
-
n(
|
|
3037
|
+
const c = u.error.format(), p = Wn(c);
|
|
3038
|
+
for (const [b, T] of Object.entries(p))
|
|
3039
|
+
n(b, T, b);
|
|
3036
3040
|
return null;
|
|
3037
3041
|
}
|
|
3038
|
-
},
|
|
3042
|
+
}, qn = (r) => {
|
|
3039
3043
|
try {
|
|
3040
|
-
return
|
|
3044
|
+
return Bn.parse(r);
|
|
3041
3045
|
} catch (e) {
|
|
3042
3046
|
throw e;
|
|
3043
3047
|
}
|
|
3044
|
-
},
|
|
3048
|
+
}, Ee = (r, e, t, n, s) => {
|
|
3045
3049
|
const a = {
|
|
3046
3050
|
payload: n,
|
|
3047
|
-
nonce:
|
|
3051
|
+
nonce: jt(),
|
|
3048
3052
|
formId: e,
|
|
3049
3053
|
elementId: t
|
|
3050
3054
|
};
|
|
3051
3055
|
r.postMessage(JSON.stringify(a), s);
|
|
3052
|
-
},
|
|
3056
|
+
}, Hn = "https://cde.getopenpay.com", Kn = {
|
|
3053
3057
|
usd: "usd",
|
|
3054
3058
|
brl: "brl"
|
|
3055
|
-
},
|
|
3059
|
+
}, vt = (r) => {
|
|
3056
3060
|
for (let t = 0; t < 10; t++)
|
|
3057
|
-
|
|
3058
|
-
if (!
|
|
3061
|
+
Nt() || Jn(200);
|
|
3062
|
+
if (!Nt())
|
|
3059
3063
|
throw new Error("Stripe JS not found.");
|
|
3060
3064
|
return new Stripe(r);
|
|
3061
|
-
},
|
|
3062
|
-
const n =
|
|
3065
|
+
}, Yn = async (r, e, t) => {
|
|
3066
|
+
const n = vt(r), s = Kn[t];
|
|
3063
3067
|
return n.paymentRequest({
|
|
3064
3068
|
// TODO: replace this with stripe account country as soon as we support it
|
|
3065
3069
|
country: "US",
|
|
@@ -3071,9 +3075,9 @@ const Bn = (r) => {
|
|
|
3071
3075
|
requestPayerName: !0,
|
|
3072
3076
|
requestPayerEmail: !0
|
|
3073
3077
|
});
|
|
3074
|
-
},
|
|
3078
|
+
}, Jn = (r) => new Promise((e) => {
|
|
3075
3079
|
setTimeout(e, r);
|
|
3076
|
-
}),
|
|
3080
|
+
}), Nt = () => "Stripe" in window, Gn = async (r) => new Promise((e, t) => {
|
|
3077
3081
|
try {
|
|
3078
3082
|
r.on("paymentmethod", async (n) => {
|
|
3079
3083
|
e(n);
|
|
@@ -3083,12 +3087,12 @@ const Bn = (r) => {
|
|
|
3083
3087
|
} catch (n) {
|
|
3084
3088
|
t(n);
|
|
3085
3089
|
}
|
|
3086
|
-
}),
|
|
3090
|
+
}), Xn = (r) => {
|
|
3087
3091
|
const e = r == null ? void 0 : r.stripe_pk;
|
|
3088
3092
|
if (typeof e != "string")
|
|
3089
3093
|
throw new Error("Invalid: stripe_pk not passed in checkout payment method");
|
|
3090
3094
|
return e;
|
|
3091
|
-
},
|
|
3095
|
+
}, Qn = async (r, e) => {
|
|
3092
3096
|
const t = r.nextActionMetadata;
|
|
3093
3097
|
if (!r.paymentFlowMetadata || !r.paymentFlowMetadata.stripePmId)
|
|
3094
3098
|
throw new Error(`Invalid payment flow metadata format: ${JSON.stringify(r.paymentFlowMetadata)}`);
|
|
@@ -3096,14 +3100,22 @@ const Bn = (r) => {
|
|
|
3096
3100
|
throw new Error(`Invalid next action metadata format: ${JSON.stringify(t)}`);
|
|
3097
3101
|
if (e.paymentMethod.id !== r.paymentFlowMetadata.stripePmId)
|
|
3098
3102
|
throw new Error(`PM ID mismatch: ${e.paymentMethod.id} != ${r.paymentFlowMetadata.stripePmId}`);
|
|
3099
|
-
const s = await
|
|
3103
|
+
const s = await vt(t.stripe_pk).confirmCardSetup(t.client_secret, {
|
|
3100
3104
|
payment_method: r.paymentFlowMetadata.stripePmId
|
|
3101
3105
|
});
|
|
3102
3106
|
if (s.error)
|
|
3103
3107
|
throw e.complete("fail"), new Error(`Payment failed: ${s.error.message ?? "unknown"}`);
|
|
3104
3108
|
e.complete("success");
|
|
3105
|
-
},
|
|
3106
|
-
|
|
3109
|
+
}, es = async (r) => {
|
|
3110
|
+
var a, i, o, u;
|
|
3111
|
+
const e = r.nextActionMetadata, n = await vt(e.stripe_pk).confirmCardSetup(e.client_secret, {
|
|
3112
|
+
payment_method: e.stripe_pm_id
|
|
3113
|
+
}), s = (a = n.setupIntent) == null ? void 0 : a.status;
|
|
3114
|
+
if (s !== "succeeded") throw s === "canceled" ? new Error("Payment cancelled, please click Submit again to pay") : new Error(
|
|
3115
|
+
`${((i = n.error) == null ? void 0 : i.message) ?? ((u = (o = n.setupIntent) == null ? void 0 : o.last_setup_error) == null ? void 0 : u.message) ?? "Payment failed, please click submit again to pay."}`
|
|
3116
|
+
);
|
|
3117
|
+
}, ts = (r = {}) => {
|
|
3118
|
+
const [e, t] = I(r), n = Oe(
|
|
3107
3119
|
() => ({
|
|
3108
3120
|
set: (a, i) => {
|
|
3109
3121
|
t((o) => ({
|
|
@@ -3125,18 +3137,18 @@ const Bn = (r) => {
|
|
|
3125
3137
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
3126
3138
|
[t]
|
|
3127
3139
|
), s = {
|
|
3128
|
-
get:
|
|
3140
|
+
get: Te((a) => e[a], [e]),
|
|
3129
3141
|
...n
|
|
3130
3142
|
};
|
|
3131
3143
|
return [e, s];
|
|
3132
3144
|
};
|
|
3133
|
-
function
|
|
3145
|
+
function rs(r) {
|
|
3134
3146
|
return r && r.__esModule && Object.prototype.hasOwnProperty.call(r, "default") ? r.default : r;
|
|
3135
3147
|
}
|
|
3136
|
-
var
|
|
3137
|
-
function
|
|
3148
|
+
var gt = { exports: {} }, ns = vr;
|
|
3149
|
+
function Qt(r, e, t) {
|
|
3138
3150
|
var n = typeof e == "function";
|
|
3139
|
-
|
|
3151
|
+
ns.useEffect(function() {
|
|
3140
3152
|
var s, a = !0, i = r(function() {
|
|
3141
3153
|
return a;
|
|
3142
3154
|
});
|
|
@@ -3147,38 +3159,38 @@ function Xt(r, e, t) {
|
|
|
3147
3159
|
};
|
|
3148
3160
|
}, n ? t : e);
|
|
3149
3161
|
}
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
var
|
|
3153
|
-
const
|
|
3154
|
-
type:
|
|
3155
|
-
loc:
|
|
3156
|
-
msg:
|
|
3157
|
-
url:
|
|
3158
|
-
}),
|
|
3159
|
-
code:
|
|
3160
|
-
message:
|
|
3161
|
-
path:
|
|
3162
|
-
}),
|
|
3162
|
+
gt.exports = Qt;
|
|
3163
|
+
gt.exports.useAsyncEffect = Qt;
|
|
3164
|
+
var ss = gt.exports;
|
|
3165
|
+
const as = /* @__PURE__ */ rs(ss), is = f.object({
|
|
3166
|
+
type: f.string(),
|
|
3167
|
+
loc: f.array(f.string()),
|
|
3168
|
+
msg: f.string(),
|
|
3169
|
+
url: f.string()
|
|
3170
|
+
}), os = f.array(is), cs = f.object({
|
|
3171
|
+
code: f.string(),
|
|
3172
|
+
message: f.string(),
|
|
3173
|
+
path: f.array(f.string())
|
|
3174
|
+
}), ds = f.array(cs), us = {
|
|
3163
3175
|
"failed to fetch": "Connection error: please double check if you are connected to the internet, then try again"
|
|
3164
3176
|
}, mt = (r) => {
|
|
3165
3177
|
const e = r.toLowerCase().trim();
|
|
3166
|
-
return
|
|
3167
|
-
},
|
|
3178
|
+
return us[e] ?? r;
|
|
3179
|
+
}, ls = (r) => {
|
|
3168
3180
|
try {
|
|
3169
3181
|
return typeof JSON.parse(r) == "object";
|
|
3170
3182
|
} catch {
|
|
3171
3183
|
return !1;
|
|
3172
3184
|
}
|
|
3173
|
-
},
|
|
3185
|
+
}, fs = (r) => r.length === 1 ? mt(r[0].msg) : `Please fix the following errors:
|
|
3174
3186
|
${r.map((t) => `• ${mt(t.msg)}`).join(`
|
|
3175
|
-
`)}`,
|
|
3187
|
+
`)}`, hs = (r) => `Encountered the following errors:
|
|
3176
3188
|
${r.map((t) => `- ${t.path.join("/")}: ${t.message}`).join(`
|
|
3177
|
-
`)}`,
|
|
3189
|
+
`)}`, er = (r) => {
|
|
3178
3190
|
if (window.cur_error = r, r instanceof Error)
|
|
3179
|
-
if (
|
|
3191
|
+
if (ls(r.message)) {
|
|
3180
3192
|
const e = JSON.parse(r.message);
|
|
3181
|
-
return
|
|
3193
|
+
return os.safeParse(e).success ? fs(e) : ds.safeParse(e).success ? hs(e) : r.message;
|
|
3182
3194
|
} else
|
|
3183
3195
|
return mt(r.message);
|
|
3184
3196
|
if (typeof r == "object")
|
|
@@ -3189,64 +3201,65 @@ ${r.map((t) => `- ${t.path.join("/")}: ${t.message}`).join(`
|
|
|
3189
3201
|
}
|
|
3190
3202
|
else
|
|
3191
3203
|
return r + "";
|
|
3192
|
-
},
|
|
3204
|
+
}, ps = f.enum(["apple_pay", "google_pay"]), ms = {
|
|
3193
3205
|
apple_pay: "applePay",
|
|
3194
3206
|
google_pay: "googlePay"
|
|
3195
|
-
},
|
|
3207
|
+
}, At = {
|
|
3196
3208
|
isLoading: !0,
|
|
3197
3209
|
isAvailable: !1,
|
|
3198
3210
|
startFlow: () => {
|
|
3199
3211
|
}
|
|
3200
|
-
},
|
|
3212
|
+
}, ys = {
|
|
3201
3213
|
isLoading: !1,
|
|
3202
3214
|
isAvailable: !1,
|
|
3203
3215
|
startFlow: () => {
|
|
3204
3216
|
}
|
|
3205
|
-
},
|
|
3206
|
-
const [o, u] =
|
|
3207
|
-
apple_pay:
|
|
3208
|
-
google_pay:
|
|
3209
|
-
}),
|
|
3210
|
-
return
|
|
3211
|
-
if (!
|
|
3212
|
-
for (const
|
|
3213
|
-
const b =
|
|
3217
|
+
}, vs = (r, e, t, n, s, a, i) => {
|
|
3218
|
+
const [o, u] = ts({
|
|
3219
|
+
apple_pay: At,
|
|
3220
|
+
google_pay: At
|
|
3221
|
+
}), c = r === void 0 || e === void 0 || t === void 0 || !n;
|
|
3222
|
+
return as(async () => {
|
|
3223
|
+
if (!c)
|
|
3224
|
+
for (const p of ps.options) {
|
|
3225
|
+
const b = p.replace("_", "");
|
|
3214
3226
|
try {
|
|
3215
|
-
const T = t.find((
|
|
3227
|
+
const T = t.find((X) => X.provider === p && X.processor_name === "stripe");
|
|
3216
3228
|
if (!T)
|
|
3217
3229
|
throw new Error(`${b} is not available as a checkout method`);
|
|
3218
|
-
const
|
|
3219
|
-
if (!
|
|
3230
|
+
const G = Xn(T.metadata), A = await Yn(G, r, e), W = await A.canMakePayment();
|
|
3231
|
+
if (!W)
|
|
3220
3232
|
throw new Error(`Cannot make payment with ${b} for this session`);
|
|
3221
|
-
const
|
|
3233
|
+
const nt = async () => {
|
|
3222
3234
|
try {
|
|
3223
|
-
if (
|
|
3235
|
+
if (Xt(n, {}), a && !qe(
|
|
3224
3236
|
k.enum.START_PAYMENT_FLOW,
|
|
3225
3237
|
// This is ok since we're just calling this function to use the validation function inside it
|
|
3226
3238
|
"dummy",
|
|
3227
3239
|
n,
|
|
3228
3240
|
a,
|
|
3229
|
-
T
|
|
3241
|
+
T,
|
|
3242
|
+
!1
|
|
3230
3243
|
))
|
|
3231
3244
|
return;
|
|
3232
3245
|
A.show();
|
|
3233
|
-
const
|
|
3234
|
-
s(
|
|
3235
|
-
} catch (
|
|
3236
|
-
i(
|
|
3246
|
+
const X = await Gn(A);
|
|
3247
|
+
s(X, T);
|
|
3248
|
+
} catch (X) {
|
|
3249
|
+
i(er(X));
|
|
3237
3250
|
}
|
|
3238
3251
|
};
|
|
3239
|
-
u.set(
|
|
3252
|
+
u.set(p, {
|
|
3240
3253
|
isLoading: !1,
|
|
3241
|
-
isAvailable:
|
|
3242
|
-
startFlow:
|
|
3254
|
+
isAvailable: W[ms[p]],
|
|
3255
|
+
startFlow: nt
|
|
3243
3256
|
});
|
|
3244
3257
|
} catch {
|
|
3245
|
-
u.set(
|
|
3258
|
+
u.set(p, ys);
|
|
3246
3259
|
}
|
|
3247
3260
|
}
|
|
3248
|
-
}, [
|
|
3249
|
-
},
|
|
3261
|
+
}, [c, t]), o;
|
|
3262
|
+
}, bs = (r) => {
|
|
3250
3263
|
const {
|
|
3251
3264
|
children: e,
|
|
3252
3265
|
checkoutSecureToken: t,
|
|
@@ -3256,180 +3269,223 @@ ${r.map((t) => `- ${t.path.join("/")}: ${t.message}`).join(`
|
|
|
3256
3269
|
onChange: i,
|
|
3257
3270
|
onLoad: o,
|
|
3258
3271
|
onLoadError: u,
|
|
3259
|
-
onValidationError:
|
|
3260
|
-
onCheckoutStarted:
|
|
3272
|
+
onValidationError: c,
|
|
3273
|
+
onCheckoutStarted: p,
|
|
3261
3274
|
onCheckoutSuccess: b,
|
|
3262
3275
|
onCheckoutError: T,
|
|
3263
|
-
baseUrl:
|
|
3264
|
-
} = r, A =
|
|
3265
|
-
(
|
|
3266
|
-
if (
|
|
3267
|
-
const
|
|
3268
|
-
if (S.formId !==
|
|
3276
|
+
baseUrl: G
|
|
3277
|
+
} = r, A = G ?? Hn, [W, nt] = I(void 0), [X, _t] = I([]), [tr, rr] = I("1px"), [xt, nr] = I(!1), [Q, ke] = I(void 0), [bt, we] = I(!1), [me, sr] = I([]), [se, ar] = I({}), [kt, wt] = I(0), [Et, ae] = I(!1), [q, ir] = I(void 0), [st, or] = I(void 0), [Be, cr] = I(void 0), [ee, dr] = I(void 0), [at, ur] = I(void 0), te = Oe(() => `opjs-form-${jt()}`, []), H = Pt(null), it = Te(
|
|
3278
|
+
(O) => {
|
|
3279
|
+
if (O.origin !== A || !O.source) return;
|
|
3280
|
+
const D = O.source, S = qn(JSON.parse(O.data)), $ = S.elementId;
|
|
3281
|
+
if (S.formId !== te || !$ || S.nonce in X)
|
|
3269
3282
|
return;
|
|
3270
|
-
|
|
3271
|
-
const
|
|
3272
|
-
if (
|
|
3283
|
+
_t((Z) => [...Z, S.nonce]);
|
|
3284
|
+
const w = S.payload, L = w.type;
|
|
3285
|
+
if (L === k.enum.FOCUS && s)
|
|
3273
3286
|
s(S.elementId);
|
|
3274
|
-
else if (
|
|
3287
|
+
else if (L === k.enum.BLUR && a)
|
|
3275
3288
|
a(S.elementId);
|
|
3276
|
-
else if (
|
|
3289
|
+
else if (L === k.enum.CHANGE && i)
|
|
3277
3290
|
i(S.elementId);
|
|
3278
|
-
else if (
|
|
3279
|
-
const
|
|
3280
|
-
if (
|
|
3291
|
+
else if (L === k.enum.LOADED) {
|
|
3292
|
+
const Z = me.find((V) => V.contentWindow === D);
|
|
3293
|
+
if (we(!1), !Z)
|
|
3281
3294
|
return;
|
|
3282
|
-
|
|
3283
|
-
const
|
|
3284
|
-
|
|
3285
|
-
} else if (
|
|
3286
|
-
|
|
3287
|
-
else if (
|
|
3288
|
-
if (!
|
|
3289
|
-
throw new Error("Stripe PM not set");
|
|
3290
|
-
if (!G)
|
|
3295
|
+
ar((V) => ({ ...V, [$]: D }));
|
|
3296
|
+
const C = w.height ? `${w.height}px` : "100%";
|
|
3297
|
+
rr(C), cr(w.totalAmountAtoms), or(w.currency), dr(w.checkoutPaymentMethods), q || ir(w.sessionId);
|
|
3298
|
+
} else if (L === k.enum.TOKENIZE_STARTED)
|
|
3299
|
+
we(!0), p && p();
|
|
3300
|
+
else if (L === k.enum.PAYMENT_FLOW_STARTED) {
|
|
3301
|
+
if (!Q)
|
|
3291
3302
|
throw new Error("extraData not populated");
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3303
|
+
(async () => {
|
|
3304
|
+
const C = w.nextActionMetadata.type;
|
|
3305
|
+
if (C !== void 0) if (C === "stripe_3ds")
|
|
3306
|
+
await es(w);
|
|
3307
|
+
else if (C === "stripe_payment_request") {
|
|
3308
|
+
if (!at)
|
|
3309
|
+
throw new Error("Stripe PM not set");
|
|
3310
|
+
await Qn(w, at);
|
|
3311
|
+
} else
|
|
3312
|
+
throw new Error(`Unknown next action type: ${C}`);
|
|
3313
|
+
})().then(() => {
|
|
3314
|
+
var V;
|
|
3315
|
+
let C;
|
|
3316
|
+
if (Q.checkoutPaymentMethod.provider === "credit_card" && (C = (V = w.startPFMetadata) == null ? void 0 : V.cc_pm_id, !C))
|
|
3317
|
+
throw new Error("CC PM ID not found");
|
|
3318
|
+
Ee(
|
|
3319
|
+
D,
|
|
3320
|
+
te,
|
|
3321
|
+
$,
|
|
3322
|
+
{ ...Q, type: "CHECKOUT", doNotUseLegacyCCFlow: !0, existingCCPMId: C },
|
|
3323
|
+
A
|
|
3324
|
+
), ae(!0), ke(void 0), p && p();
|
|
3325
|
+
}).catch((C) => {
|
|
3326
|
+
const V = er(C);
|
|
3327
|
+
we(!1), ae(!1), T && T(V);
|
|
3297
3328
|
});
|
|
3298
|
-
} else if (
|
|
3299
|
-
const
|
|
3300
|
-
!
|
|
3301
|
-
} else if (
|
|
3302
|
-
|
|
3303
|
-
else if (
|
|
3304
|
-
u && u(
|
|
3305
|
-
else if (
|
|
3306
|
-
const
|
|
3307
|
-
(
|
|
3308
|
-
} else (
|
|
3329
|
+
} else if (L === k.enum.TOKENIZE_SUCCESS && Q) {
|
|
3330
|
+
const Z = kt + 1, C = Z === Object.keys(se).length;
|
|
3331
|
+
!Et && (C || w.isReadyForCheckout) ? (Ee(D, te, $, Q, A), ae(!0), ke(void 0)) : wt(Z);
|
|
3332
|
+
} else if (L === k.enum.CHECKOUT_SUCCESS)
|
|
3333
|
+
we(!1), wt(0), ae(!1), b && b(w.invoiceUrls, w.subscriptionIds, w.customerId);
|
|
3334
|
+
else if (L === k.enum.LOAD_ERROR)
|
|
3335
|
+
u && u(w.message);
|
|
3336
|
+
else if (L === k.enum.VALIDATION_ERROR) {
|
|
3337
|
+
const Z = Q == null ? void 0 : Q.checkoutPaymentMethod.provider;
|
|
3338
|
+
(Z === "credit_card" || Z === void 0) && c && c(w.elementType, w.errors, $);
|
|
3339
|
+
} else if (L === k.enum.TOKENIZE_ERROR || L === k.enum.CHECKOUT_ERROR)
|
|
3340
|
+
if (w.message === "3DS_REQUIRED") {
|
|
3341
|
+
const Z = ee == null ? void 0 : ee.find((C) => C.provider === "credit_card");
|
|
3342
|
+
if (!q || !H.current || !c || !Z) return;
|
|
3343
|
+
for (const [C, V] of Object.entries(se)) {
|
|
3344
|
+
if (!V) continue;
|
|
3345
|
+
const ct = qe(
|
|
3346
|
+
k.enum.START_PAYMENT_FLOW,
|
|
3347
|
+
q,
|
|
3348
|
+
H.current,
|
|
3349
|
+
c,
|
|
3350
|
+
// Only stripe supports frontend 3DS right now,
|
|
3351
|
+
// so we pass processor_name: 'stripe' to tell delegator to only use stripe
|
|
3352
|
+
{ ...Z, processor_name: "stripe" },
|
|
3353
|
+
!1
|
|
3354
|
+
);
|
|
3355
|
+
if (ct) {
|
|
3356
|
+
ae(!0), ke(ct), Ee(V, te, C, ct, A);
|
|
3357
|
+
break;
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3360
|
+
} else
|
|
3361
|
+
we(!1), ae(!1), T && T(w.message);
|
|
3309
3362
|
},
|
|
3310
3363
|
[
|
|
3311
|
-
|
|
3364
|
+
te,
|
|
3365
|
+
q,
|
|
3312
3366
|
X,
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
oe,
|
|
3317
|
-
xt,
|
|
3367
|
+
Q,
|
|
3368
|
+
me,
|
|
3369
|
+
se,
|
|
3318
3370
|
kt,
|
|
3371
|
+
Et,
|
|
3319
3372
|
a,
|
|
3320
3373
|
i,
|
|
3321
3374
|
s,
|
|
3322
3375
|
u,
|
|
3323
|
-
|
|
3376
|
+
p,
|
|
3324
3377
|
b,
|
|
3325
3378
|
T,
|
|
3326
|
-
|
|
3379
|
+
c,
|
|
3327
3380
|
A,
|
|
3328
|
-
|
|
3381
|
+
at,
|
|
3382
|
+
ee
|
|
3329
3383
|
]
|
|
3330
|
-
),
|
|
3331
|
-
if (!
|
|
3332
|
-
const
|
|
3333
|
-
if (!
|
|
3384
|
+
), lr = Te(() => {
|
|
3385
|
+
if (!H.current || !c || !q || !ee) return;
|
|
3386
|
+
const O = ee.find((S) => S.provider === "credit_card");
|
|
3387
|
+
if (!O)
|
|
3334
3388
|
throw new Error("Card not available as a payment method in checkout");
|
|
3335
|
-
const
|
|
3389
|
+
const D = qe(
|
|
3336
3390
|
k.enum.TOKENIZE,
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3391
|
+
q,
|
|
3392
|
+
H.current,
|
|
3393
|
+
c,
|
|
3394
|
+
O,
|
|
3395
|
+
!1
|
|
3341
3396
|
);
|
|
3342
|
-
if (
|
|
3343
|
-
for (const [S,
|
|
3344
|
-
|
|
3345
|
-
|
|
3397
|
+
if (D) {
|
|
3398
|
+
for (const [S, $] of Object.entries(se))
|
|
3399
|
+
$ && Ee($, te, S, D, A);
|
|
3400
|
+
D.type = k.enum.CHECKOUT, ke(D);
|
|
3346
3401
|
}
|
|
3347
|
-
}, [
|
|
3348
|
-
(
|
|
3349
|
-
|
|
3402
|
+
}, [H, se, te, c, q, A, ee]), ot = Te(
|
|
3403
|
+
(O) => {
|
|
3404
|
+
bt && O.preventDefault();
|
|
3350
3405
|
},
|
|
3351
|
-
[
|
|
3406
|
+
[bt]
|
|
3352
3407
|
);
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
}, [
|
|
3356
|
-
window.removeEventListener("beforeunload",
|
|
3357
|
-
}), [
|
|
3358
|
-
const
|
|
3359
|
-
(
|
|
3360
|
-
|
|
3408
|
+
He(() => {
|
|
3409
|
+
xt || !H.current || !Be || me.length === Object.keys(se).length && (nr(!0), o && o(Be, st));
|
|
3410
|
+
}, [me, se, xt, o, Be, st]), He(() => (nt(window.location.origin), window.addEventListener("message", it), window.addEventListener("beforeunload", ot), () => {
|
|
3411
|
+
window.removeEventListener("beforeunload", ot), window.removeEventListener("message", it);
|
|
3412
|
+
}), [q, it, ot]);
|
|
3413
|
+
const fr = Te(
|
|
3414
|
+
(O) => {
|
|
3415
|
+
me.find((S) => S.contentWindow === O.contentWindow) || sr((S) => [...S, O]);
|
|
3361
3416
|
},
|
|
3362
|
-
[
|
|
3363
|
-
),
|
|
3364
|
-
if (!(!
|
|
3365
|
-
for (const [S,
|
|
3366
|
-
if (
|
|
3367
|
-
const
|
|
3368
|
-
stripePmId:
|
|
3369
|
-
},
|
|
3417
|
+
[me]
|
|
3418
|
+
), hr = async (O, D) => {
|
|
3419
|
+
if (!(!H.current || !c || !q || !ee))
|
|
3420
|
+
for (const [S, $] of Object.entries(se)) {
|
|
3421
|
+
if (!$) continue;
|
|
3422
|
+
const St = {
|
|
3423
|
+
stripePmId: O.paymentMethod.id
|
|
3424
|
+
}, w = qe(
|
|
3370
3425
|
k.enum.START_PAYMENT_FLOW,
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3426
|
+
q,
|
|
3427
|
+
H.current,
|
|
3428
|
+
c,
|
|
3429
|
+
D,
|
|
3430
|
+
!1,
|
|
3431
|
+
St
|
|
3376
3432
|
);
|
|
3377
|
-
if (
|
|
3378
|
-
|
|
3433
|
+
if (w) {
|
|
3434
|
+
ur(O), ae(!0), ke(w), Ee($, te, S, w, A);
|
|
3379
3435
|
break;
|
|
3380
3436
|
}
|
|
3381
3437
|
}
|
|
3382
|
-
},
|
|
3383
|
-
|
|
3438
|
+
}, pr = (O) => {
|
|
3439
|
+
ae(!1), T && T(O);
|
|
3384
3440
|
}, mr = {
|
|
3385
|
-
formId:
|
|
3386
|
-
formHeight:
|
|
3387
|
-
referer:
|
|
3441
|
+
formId: te,
|
|
3442
|
+
formHeight: tr,
|
|
3443
|
+
referer: W,
|
|
3388
3444
|
checkoutSecureToken: t,
|
|
3389
|
-
registerIframe:
|
|
3445
|
+
registerIframe: fr,
|
|
3390
3446
|
baseUrl: A
|
|
3391
|
-
},
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
),
|
|
3400
|
-
submit:
|
|
3401
|
-
applePay:
|
|
3402
|
-
googlePay:
|
|
3447
|
+
}, Tt = vs(
|
|
3448
|
+
Be,
|
|
3449
|
+
st,
|
|
3450
|
+
ee,
|
|
3451
|
+
H.current,
|
|
3452
|
+
hr,
|
|
3453
|
+
c,
|
|
3454
|
+
pr
|
|
3455
|
+
), yr = {
|
|
3456
|
+
submit: lr,
|
|
3457
|
+
applePay: Tt.apple_pay,
|
|
3458
|
+
googlePay: Tt.google_pay
|
|
3403
3459
|
};
|
|
3404
|
-
return /* @__PURE__ */
|
|
3405
|
-
},
|
|
3406
|
-
const { subPath: e, styles: t } = r, { formId: n, referer: s, formHeight: a, checkoutSecureToken: i, registerIframe: o, baseUrl: u } =
|
|
3460
|
+
return /* @__PURE__ */ oe(Zt.Provider, { value: mr, children: /* @__PURE__ */ oe("div", { className: n, ref: H, children: e(yr) }) });
|
|
3461
|
+
}, gs = (r) => JSON.stringify(r), rt = (r) => {
|
|
3462
|
+
const { subPath: e, styles: t } = r, { formId: n, referer: s, formHeight: a, checkoutSecureToken: i, registerIframe: o, baseUrl: u } = xr(), [c, p] = I(!1), b = Pt(null), T = Oe(() => t ? gs(t) : "", [t]), G = Oe(() => ({
|
|
3407
3463
|
border: "none",
|
|
3408
3464
|
width: "100%",
|
|
3409
3465
|
height: a
|
|
3410
|
-
}), [a]), A =
|
|
3466
|
+
}), [a]), A = Oe(() => {
|
|
3411
3467
|
if (!i || !s) return "";
|
|
3412
|
-
const
|
|
3413
|
-
return
|
|
3468
|
+
const W = new URLSearchParams();
|
|
3469
|
+
return W.append("referer", s), W.append("styles", T), W.append("formId", n), W.append("secureToken", i), W.toString();
|
|
3414
3470
|
}, [T, n, s, i]);
|
|
3415
|
-
return
|
|
3416
|
-
!b.current || !
|
|
3417
|
-
}, [
|
|
3471
|
+
return He(() => p(!0), []), He(() => {
|
|
3472
|
+
!b.current || !c || o(b.current);
|
|
3473
|
+
}, [c]), i ? /* @__PURE__ */ oe(
|
|
3418
3474
|
"iframe",
|
|
3419
3475
|
{
|
|
3420
3476
|
name: `${e}-element`,
|
|
3421
3477
|
src: `${u}/app/v1/${e}-element/?${A}`,
|
|
3422
|
-
style:
|
|
3478
|
+
style: G,
|
|
3423
3479
|
ref: b
|
|
3424
3480
|
}
|
|
3425
|
-
) : /* @__PURE__ */
|
|
3426
|
-
},
|
|
3481
|
+
) : /* @__PURE__ */ oe("div", {});
|
|
3482
|
+
}, ks = ({ styles: r }) => /* @__PURE__ */ oe(rt, { styles: r, subPath: "card-cvc" }), ws = ({ styles: r }) => /* @__PURE__ */ oe(rt, { styles: r, subPath: "card" }), Es = ({ styles: r }) => /* @__PURE__ */ oe(rt, { styles: r, subPath: "card-expiry" }), Ts = ({ styles: r }) => /* @__PURE__ */ oe(rt, { styles: r, subPath: "card-number" });
|
|
3427
3483
|
export {
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3484
|
+
ks as CardCvcElement,
|
|
3485
|
+
ws as CardElement,
|
|
3486
|
+
Es as CardExpiryElement,
|
|
3487
|
+
Ts as CardNumberElement,
|
|
3488
|
+
bs as ElementsForm,
|
|
3489
|
+
qt as FieldName,
|
|
3490
|
+
xr as useOpenPayElements
|
|
3435
3491
|
};
|