@continuous-excellence/ze-great-dashboard-aws 0.30.3 → 0.30.5
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/lambda.mjs +218 -222
- package/package.json +3 -3
package/dist/lambda.mjs
CHANGED
|
@@ -5655,7 +5655,7 @@ var init_getEndpointProperties = __esm({
|
|
|
5655
5655
|
"node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js"() {
|
|
5656
5656
|
init_types2();
|
|
5657
5657
|
init_evaluateTemplate();
|
|
5658
|
-
getEndpointProperties = (
|
|
5658
|
+
getEndpointProperties = (properties, options) => Object.entries(properties).reduce((acc, [propertyKey, propertyVal]) => {
|
|
5659
5659
|
acc[propertyKey] = group2.getEndpointProperty(propertyVal, options);
|
|
5660
5660
|
return acc;
|
|
5661
5661
|
}, {});
|
|
@@ -5742,10 +5742,10 @@ var init_decideEndpoint = __esm({
|
|
|
5742
5742
|
const [, errorExpression] = result;
|
|
5743
5743
|
throw new EndpointError(evaluateExpression(errorExpression, "Error", closure));
|
|
5744
5744
|
}
|
|
5745
|
-
const [url2,
|
|
5745
|
+
const [url2, properties, headers] = result;
|
|
5746
5746
|
return {
|
|
5747
5747
|
url: getEndpointUrl(url2, closure),
|
|
5748
|
-
properties: getEndpointProperties(
|
|
5748
|
+
properties: getEndpointProperties(properties, closure),
|
|
5749
5749
|
headers: getEndpointHeaders(headers ?? {}, closure)
|
|
5750
5750
|
};
|
|
5751
5751
|
}
|
|
@@ -5806,14 +5806,14 @@ var init_evaluateEndpointRule = __esm({
|
|
|
5806
5806
|
...options,
|
|
5807
5807
|
referenceRecord: { ...options.referenceRecord, ...referenceRecord }
|
|
5808
5808
|
} : options;
|
|
5809
|
-
const { url: url2, properties
|
|
5809
|
+
const { url: url2, properties, headers } = endpoint;
|
|
5810
5810
|
options.logger?.debug?.(`${debugId} Resolving endpoint from template: ${toDebugString(endpoint)}`);
|
|
5811
5811
|
const endpointToReturn = { url: getEndpointUrl(url2, endpointRuleOptions) };
|
|
5812
5812
|
if (headers != null) {
|
|
5813
5813
|
endpointToReturn.headers = getEndpointHeaders(headers, endpointRuleOptions);
|
|
5814
5814
|
}
|
|
5815
|
-
if (
|
|
5816
|
-
endpointToReturn.properties = getEndpointProperties(
|
|
5815
|
+
if (properties != null) {
|
|
5816
|
+
endpointToReturn.properties = getEndpointProperties(properties, endpointRuleOptions);
|
|
5817
5817
|
}
|
|
5818
5818
|
return endpointToReturn;
|
|
5819
5819
|
};
|
|
@@ -23336,7 +23336,7 @@ var init_httpAuthSchemeProvider3 = __esm({
|
|
|
23336
23336
|
}
|
|
23337
23337
|
const options = [];
|
|
23338
23338
|
for (const scheme of authSchemes) {
|
|
23339
|
-
const { name: resolvedName, properties
|
|
23339
|
+
const { name: resolvedName, properties = {}, ...rest } = scheme;
|
|
23340
23340
|
const name = resolvedName.toLowerCase();
|
|
23341
23341
|
if (resolvedName !== name) {
|
|
23342
23342
|
console.warn(`HttpAuthScheme has been normalized with lowercasing: '${resolvedName}' to '${name}'`);
|
|
@@ -23362,7 +23362,7 @@ var init_httpAuthSchemeProvider3 = __esm({
|
|
|
23362
23362
|
}
|
|
23363
23363
|
const option = createOption(authParameters);
|
|
23364
23364
|
option.schemeId = schemeId;
|
|
23365
|
-
option.signingProperties = { ...option.signingProperties || {}, ...rest, ...
|
|
23365
|
+
option.signingProperties = { ...option.signingProperties || {}, ...rest, ...properties };
|
|
23366
23366
|
options.push(option);
|
|
23367
23367
|
}
|
|
23368
23368
|
return options;
|
|
@@ -42395,36 +42395,38 @@ var require_Alias = __commonJS({
|
|
|
42395
42395
|
if (node2.anchor === this.source)
|
|
42396
42396
|
found = node2;
|
|
42397
42397
|
}
|
|
42398
|
+
if (found && ctx) {
|
|
42399
|
+
const { anchors: anchors2, doc: doc2, maxAliasCount } = ctx;
|
|
42400
|
+
let data = anchors2.get(found);
|
|
42401
|
+
if (!data) {
|
|
42402
|
+
toJS.toJS(found, null, ctx);
|
|
42403
|
+
data = anchors2.get(found);
|
|
42404
|
+
}
|
|
42405
|
+
if (data?.res === void 0) {
|
|
42406
|
+
const msg = "This should not happen: Alias anchor was not resolved?";
|
|
42407
|
+
throw new ReferenceError(msg);
|
|
42408
|
+
}
|
|
42409
|
+
if (maxAliasCount >= 0) {
|
|
42410
|
+
data.count += 1;
|
|
42411
|
+
if (data.aliasCount === 0)
|
|
42412
|
+
data.aliasCount = getAliasCount(doc2, found, anchors2);
|
|
42413
|
+
if (data.count * data.aliasCount > maxAliasCount) {
|
|
42414
|
+
const msg = "Excessive alias count indicates a resource exhaustion attack";
|
|
42415
|
+
throw new ReferenceError(msg);
|
|
42416
|
+
}
|
|
42417
|
+
}
|
|
42418
|
+
}
|
|
42398
42419
|
return found;
|
|
42399
42420
|
}
|
|
42400
42421
|
toJSON(_arg, ctx) {
|
|
42401
42422
|
if (!ctx)
|
|
42402
42423
|
return { source: this.source };
|
|
42403
|
-
const
|
|
42404
|
-
const source = this.resolve(doc, ctx);
|
|
42424
|
+
const source = this.resolve(ctx.doc, ctx);
|
|
42405
42425
|
if (!source) {
|
|
42406
42426
|
const msg = `Unresolved alias (the anchor must be set before the alias): ${this.source}`;
|
|
42407
42427
|
throw new ReferenceError(msg);
|
|
42408
42428
|
}
|
|
42409
|
-
|
|
42410
|
-
if (!data) {
|
|
42411
|
-
toJS.toJS(source, null, ctx);
|
|
42412
|
-
data = anchors2.get(source);
|
|
42413
|
-
}
|
|
42414
|
-
if (data?.res === void 0) {
|
|
42415
|
-
const msg = "This should not happen: Alias anchor was not resolved?";
|
|
42416
|
-
throw new ReferenceError(msg);
|
|
42417
|
-
}
|
|
42418
|
-
if (maxAliasCount >= 0) {
|
|
42419
|
-
data.count += 1;
|
|
42420
|
-
if (data.aliasCount === 0)
|
|
42421
|
-
data.aliasCount = getAliasCount(doc, source, anchors2);
|
|
42422
|
-
if (data.count * data.aliasCount > maxAliasCount) {
|
|
42423
|
-
const msg = "Excessive alias count indicates a resource exhaustion attack";
|
|
42424
|
-
throw new ReferenceError(msg);
|
|
42425
|
-
}
|
|
42426
|
-
}
|
|
42427
|
-
return data.res;
|
|
42429
|
+
return ctx.anchors.get(source).res;
|
|
42428
42430
|
}
|
|
42429
42431
|
toString(ctx, _onComment, _onChompKeep) {
|
|
42430
42432
|
const src = `*${this.source}`;
|
|
@@ -46426,37 +46428,38 @@ var require_resolve_flow_scalar = __commonJS({
|
|
|
46426
46428
|
}
|
|
46427
46429
|
if (badChar)
|
|
46428
46430
|
onError(0, "BAD_SCALAR_START", `Plain value cannot start with ${badChar}`);
|
|
46429
|
-
return
|
|
46431
|
+
return unfoldLines(source);
|
|
46430
46432
|
}
|
|
46431
46433
|
function singleQuotedValue(source, onError) {
|
|
46432
46434
|
if (source[source.length - 1] !== "'" || source.length === 1)
|
|
46433
46435
|
onError(source.length, "MISSING_CHAR", "Missing closing 'quote");
|
|
46434
|
-
return
|
|
46436
|
+
return unfoldLines(source.slice(1, -1)).replace(/''/g, "'");
|
|
46435
46437
|
}
|
|
46436
|
-
function
|
|
46437
|
-
|
|
46438
|
+
function unfoldLines(source) {
|
|
46439
|
+
const line = /(.*?)\r?\n/sy;
|
|
46440
|
+
let match2 = line.exec(source);
|
|
46441
|
+
if (!match2)
|
|
46442
|
+
return source;
|
|
46443
|
+
let trimEnd, trimBoth;
|
|
46438
46444
|
try {
|
|
46439
|
-
|
|
46440
|
-
|
|
46445
|
+
trimEnd = new RegExp("(?<![ ])[ ]+$");
|
|
46446
|
+
trimBoth = new RegExp("^[ ]+|(?<![ ])[ ]+$", "g");
|
|
46441
46447
|
} catch {
|
|
46442
|
-
|
|
46443
|
-
|
|
46448
|
+
trimEnd = /[ \t]+$/;
|
|
46449
|
+
trimBoth = /^[ \t]+|[ \t]+$/g;
|
|
46444
46450
|
}
|
|
46445
|
-
let
|
|
46446
|
-
if (!match2)
|
|
46447
|
-
return source;
|
|
46448
|
-
let res = match2[1];
|
|
46451
|
+
let res = match2[1].replace(trimEnd, "");
|
|
46449
46452
|
let sep2 = " ";
|
|
46450
|
-
let pos2 =
|
|
46451
|
-
line.lastIndex = pos2;
|
|
46453
|
+
let pos2 = line.lastIndex;
|
|
46452
46454
|
while (match2 = line.exec(source)) {
|
|
46453
|
-
|
|
46455
|
+
const lm = match2[1].replace(trimBoth, "");
|
|
46456
|
+
if (lm === "") {
|
|
46454
46457
|
if (sep2 === "\n")
|
|
46455
46458
|
res += sep2;
|
|
46456
46459
|
else
|
|
46457
46460
|
sep2 = "\n";
|
|
46458
46461
|
} else {
|
|
46459
|
-
res += sep2 +
|
|
46462
|
+
res += sep2 + lm;
|
|
46460
46463
|
sep2 = " ";
|
|
46461
46464
|
}
|
|
46462
46465
|
pos2 = line.lastIndex;
|
|
@@ -49491,7 +49494,6 @@ __export(external_exports, {
|
|
|
49491
49494
|
ZodPrefault: () => ZodPrefault,
|
|
49492
49495
|
ZodPreprocess: () => ZodPreprocess,
|
|
49493
49496
|
ZodPromise: () => ZodPromise,
|
|
49494
|
-
ZodProperties: () => ZodProperties,
|
|
49495
49497
|
ZodReadonly: () => ZodReadonly,
|
|
49496
49498
|
ZodRealError: () => ZodRealError,
|
|
49497
49499
|
ZodRecord: () => ZodRecord,
|
|
@@ -49535,6 +49537,7 @@ __export(external_exports, {
|
|
|
49535
49537
|
creditCard: () => creditCard2,
|
|
49536
49538
|
cuid: () => cuid3,
|
|
49537
49539
|
cuid2: () => cuid22,
|
|
49540
|
+
currencyCode: () => currencyCode2,
|
|
49538
49541
|
custom: () => custom,
|
|
49539
49542
|
date: () => date2,
|
|
49540
49543
|
decode: () => decode2,
|
|
@@ -49628,7 +49631,7 @@ __export(external_exports, {
|
|
|
49628
49631
|
preprocess: () => preprocess,
|
|
49629
49632
|
prettifyError: () => prettifyError,
|
|
49630
49633
|
promise: () => promise,
|
|
49631
|
-
properties: () =>
|
|
49634
|
+
properties: () => _properties,
|
|
49632
49635
|
property: () => _property,
|
|
49633
49636
|
readonly: () => readonly,
|
|
49634
49637
|
record: () => record,
|
|
@@ -49716,6 +49719,7 @@ __export(core_exports2, {
|
|
|
49716
49719
|
$ZodCheckMultipleOf: () => $ZodCheckMultipleOf,
|
|
49717
49720
|
$ZodCheckNumberFormat: () => $ZodCheckNumberFormat,
|
|
49718
49721
|
$ZodCheckOverwrite: () => $ZodCheckOverwrite,
|
|
49722
|
+
$ZodCheckProperties: () => $ZodCheckProperties,
|
|
49719
49723
|
$ZodCheckProperty: () => $ZodCheckProperty,
|
|
49720
49724
|
$ZodCheckRegex: () => $ZodCheckRegex,
|
|
49721
49725
|
$ZodCheckSizeEquals: () => $ZodCheckSizeEquals,
|
|
@@ -49769,7 +49773,6 @@ __export(core_exports2, {
|
|
|
49769
49773
|
$ZodPrefault: () => $ZodPrefault,
|
|
49770
49774
|
$ZodPreprocess: () => $ZodPreprocess,
|
|
49771
49775
|
$ZodPromise: () => $ZodPromise,
|
|
49772
|
-
$ZodProperties: () => $ZodProperties,
|
|
49773
49776
|
$ZodReadonly: () => $ZodReadonly,
|
|
49774
49777
|
$ZodRealError: () => $ZodRealError,
|
|
49775
49778
|
$ZodRecord: () => $ZodRecord,
|
|
@@ -49937,6 +49940,7 @@ __export(core_exports2, {
|
|
|
49937
49940
|
_xor: () => _xor,
|
|
49938
49941
|
base64Charset: () => base64Charset,
|
|
49939
49942
|
base64urlCharset: () => base64urlCharset,
|
|
49943
|
+
canParseURL: () => canParseURL,
|
|
49940
49944
|
clone: () => clone,
|
|
49941
49945
|
compile: () => compile,
|
|
49942
49946
|
compileFn: () => compileFn,
|
|
@@ -49959,7 +49963,6 @@ __export(core_exports2, {
|
|
|
49959
49963
|
initializeContext: () => initializeContext,
|
|
49960
49964
|
isBackEdge: () => isBackEdge,
|
|
49961
49965
|
isRecursiveSchema: () => isRecursiveSchema,
|
|
49962
|
-
isTransforming: () => isTransforming,
|
|
49963
49966
|
isValidBase64: () => isValidBase64,
|
|
49964
49967
|
isValidBase64URL: () => isValidBase64URL,
|
|
49965
49968
|
isValidCIDRv6: () => isValidCIDRv6,
|
|
@@ -49996,6 +49999,7 @@ __export(core_exports2, {
|
|
|
49996
49999
|
util: () => util_exports,
|
|
49997
50000
|
validate: () => validate,
|
|
49998
50001
|
validateAsync: () => validateAsync,
|
|
50002
|
+
validateURL: () => validateURL,
|
|
49999
50003
|
version: () => version,
|
|
50000
50004
|
withParser: () => withParser
|
|
50001
50005
|
});
|
|
@@ -50737,9 +50741,6 @@ function members(proto, table2) {
|
|
|
50737
50741
|
else
|
|
50738
50742
|
defineBound(proto, key, desc.value);
|
|
50739
50743
|
}
|
|
50740
|
-
for (const sym of Object.getOwnPropertySymbols(table2)) {
|
|
50741
|
-
defineBound(proto, sym, table2[sym]);
|
|
50742
|
-
}
|
|
50743
50744
|
}
|
|
50744
50745
|
function own(inst, key, value, enumerable = true) {
|
|
50745
50746
|
Object.defineProperty(inst, key, { configurable: true, writable: true, enumerable, value });
|
|
@@ -50892,8 +50893,7 @@ function $constructor(name, initializer3, proto, params) {
|
|
|
50892
50893
|
} finally {
|
|
50893
50894
|
_zodDesc.value = void 0;
|
|
50894
50895
|
}
|
|
50895
|
-
}
|
|
50896
|
-
if (inst._zod.traits.has(name)) {
|
|
50896
|
+
} else if (inst._zod.traits.has(name)) {
|
|
50897
50897
|
return;
|
|
50898
50898
|
}
|
|
50899
50899
|
inst._zod.traits.add(name);
|
|
@@ -51335,6 +51335,7 @@ __export(regexes_exports, {
|
|
|
51335
51335
|
creditCard: () => creditCard,
|
|
51336
51336
|
cuid: () => cuid,
|
|
51337
51337
|
cuid2: () => cuid2,
|
|
51338
|
+
currencyCode: () => currencyCode,
|
|
51338
51339
|
date: () => date,
|
|
51339
51340
|
datetime: () => datetime,
|
|
51340
51341
|
domain: () => domain,
|
|
@@ -51433,6 +51434,7 @@ var domain = /^(?=.{1,253}$)([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a
|
|
|
51433
51434
|
var httpProtocol = /^https?$/;
|
|
51434
51435
|
var e164 = /^\+[1-9]\d{6,14}$/;
|
|
51435
51436
|
var creditCard = /^\d(?:[ -]?\d){11,18}$/;
|
|
51437
|
+
var currencyCode = /^(?:AED|AFN|ALL|AMD|AOA|ARS|AUD|AWG|AZN|BAM|BBD|BDT|BHD|BIF|BMD|BND|BOB|BOV|BRL|BSD|BTN|BWP|BYN|BZD|CAD|CDF|CHE|CHF|CHW|CLF|CLP|CNY|COP|COU|CRC|CUP|CVE|CZK|DJF|DKK|DOP|DZD|EGP|ERN|ETB|EUR|FJD|FKP|GBP|GEL|GHS|GIP|GMD|GNF|GTQ|GYD|HKD|HNL|HTG|HUF|IDR|ILS|INR|IQD|IRR|ISK|JMD|JOD|JPY|KES|KGS|KHR|KMF|KPW|KRW|KWD|KYD|KZT|LAK|LBP|LKR|LRD|LSL|LYD|MAD|MDL|MGA|MKD|MMK|MNT|MOP|MRU|MUR|MVR|MWK|MXN|MXV|MYR|MZN|NAD|NGN|NIO|NOK|NPR|NZD|OMR|PAB|PEN|PGK|PHP|PKR|PLN|PYG|QAR|RON|RSD|RUB|RWF|SAR|SBD|SCR|SDG|SEK|SGD|SHP|SLE|SOS|SRD|SSP|STN|SVC|SYP|SZL|THB|TJS|TMT|TND|TOP|TRY|TTD|TWD|TZS|UAH|UGX|USD|USN|UYI|UYU|UYW|UZS|VED|VES|VND|VUV|WST|XAD|XAF|XAG|XAU|XBA|XBB|XBC|XBD|XCD|XCG|XDR|XOF|XPD|XPF|XPT|XSU|XTS|XUA|XXX|YER|ZAR|ZMW|ZWG)$/;
|
|
51436
51438
|
var iban = /^[A-Z]{2}(?!00|01|99)\d{2}[A-Z0-9]{11,30}$/;
|
|
51437
51439
|
var dateSource = `(?:(?:\\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])))`;
|
|
51438
51440
|
function anchor(source) {
|
|
@@ -51917,6 +51919,34 @@ var $ZodCheckProperty = /* @__PURE__ */ $constructor("$ZodCheckProperty", (inst,
|
|
|
51917
51919
|
return;
|
|
51918
51920
|
};
|
|
51919
51921
|
});
|
|
51922
|
+
var $ZodCheckProperties = /* @__PURE__ */ $constructor("$ZodCheckProperties", (inst, def) => {
|
|
51923
|
+
$ZodCheck.init(inst, def);
|
|
51924
|
+
hide(inst, Symbol.iterator, function* () {
|
|
51925
|
+
yield inst;
|
|
51926
|
+
});
|
|
51927
|
+
let entries;
|
|
51928
|
+
inst._zod.check = (payload2) => {
|
|
51929
|
+
if (payload2.value == null) {
|
|
51930
|
+
payload2.issues.push({ expected: "object", code: "invalid_type", input: payload2.value, inst });
|
|
51931
|
+
return void 0;
|
|
51932
|
+
}
|
|
51933
|
+
entries ?? (entries = Reflect.ownKeys(def.shape).map((key) => [key, def.shape[key]]));
|
|
51934
|
+
const input2 = payload2.value;
|
|
51935
|
+
let proms;
|
|
51936
|
+
for (const [key, schema] of entries) {
|
|
51937
|
+
const result = schema._zod.run({ value: input2[key], issues: [] }, {});
|
|
51938
|
+
if (result instanceof Promise) {
|
|
51939
|
+
proms ?? (proms = []);
|
|
51940
|
+
proms.push(result.then((result2) => handleCheckPropertyResult(result2, payload2, key)));
|
|
51941
|
+
} else {
|
|
51942
|
+
handleCheckPropertyResult(result, payload2, key);
|
|
51943
|
+
}
|
|
51944
|
+
}
|
|
51945
|
+
if (proms)
|
|
51946
|
+
return Promise.all(proms).then(() => void 0);
|
|
51947
|
+
return void 0;
|
|
51948
|
+
};
|
|
51949
|
+
});
|
|
51920
51950
|
var $ZodCheckMimeType = /* @__PURE__ */ $constructor("$ZodCheckMimeType", (inst, def) => {
|
|
51921
51951
|
$ZodCheck.init(inst, def);
|
|
51922
51952
|
const mimeSet = new Set(def.mime);
|
|
@@ -51984,7 +52014,7 @@ ${content.join("\n")}
|
|
|
51984
52014
|
var version = {
|
|
51985
52015
|
major: 4,
|
|
51986
52016
|
minor: 6,
|
|
51987
|
-
patch:
|
|
52017
|
+
patch: 4
|
|
51988
52018
|
};
|
|
51989
52019
|
|
|
51990
52020
|
// node_modules/zod/v4/core/schemas.js
|
|
@@ -52172,11 +52202,32 @@ var $ZodEmail = /* @__PURE__ */ $constructor("$ZodEmail", (inst, def) => {
|
|
|
52172
52202
|
});
|
|
52173
52203
|
var URL_BAD_FORMAT = 1;
|
|
52174
52204
|
var URL_UNPARSEABLE = 2;
|
|
52205
|
+
function canParseURL(input2) {
|
|
52206
|
+
try {
|
|
52207
|
+
if (typeof URL !== "undefined" && typeof URL.canParse === "function")
|
|
52208
|
+
return URL.canParse(input2);
|
|
52209
|
+
new URL(input2);
|
|
52210
|
+
return true;
|
|
52211
|
+
} catch {
|
|
52212
|
+
return false;
|
|
52213
|
+
}
|
|
52214
|
+
}
|
|
52215
|
+
function validateURL(trimmed, def) {
|
|
52216
|
+
if (!("normalize" in def) && !("hostname" in def) && !("protocol" in def)) {
|
|
52217
|
+
return canParseURL(trimmed) || URL_UNPARSEABLE;
|
|
52218
|
+
}
|
|
52219
|
+
return parseURLObject(trimmed, def);
|
|
52220
|
+
}
|
|
52175
52221
|
function parseURLObject(trimmed, def) {
|
|
52176
52222
|
if (!def.normalize && def.protocol?.source === httpProtocol.source && !/^https?:\/\//i.test(trimmed)) {
|
|
52177
52223
|
return URL_BAD_FORMAT;
|
|
52178
52224
|
}
|
|
52179
52225
|
try {
|
|
52226
|
+
if (typeof URL !== "undefined") {
|
|
52227
|
+
const URLStatic = URL;
|
|
52228
|
+
if (typeof URLStatic.parse === "function")
|
|
52229
|
+
return URLStatic.parse(trimmed) ?? URL_UNPARSEABLE;
|
|
52230
|
+
}
|
|
52180
52231
|
return new URL(trimmed);
|
|
52181
52232
|
} catch {
|
|
52182
52233
|
return URL_UNPARSEABLE;
|
|
@@ -52199,7 +52250,7 @@ var $ZodURL = /* @__PURE__ */ $constructor("$ZodURL", (inst, def) => {
|
|
|
52199
52250
|
inst._zod.check = (payload2) => {
|
|
52200
52251
|
try {
|
|
52201
52252
|
const trimmed = payload2.value.trim();
|
|
52202
|
-
const url2 =
|
|
52253
|
+
const url2 = validateURL(trimmed, def);
|
|
52203
52254
|
if (url2 === URL_BAD_FORMAT) {
|
|
52204
52255
|
payload2.issues.push({
|
|
52205
52256
|
code: "invalid_format",
|
|
@@ -52221,6 +52272,10 @@ var $ZodURL = /* @__PURE__ */ $constructor("$ZodURL", (inst, def) => {
|
|
|
52221
52272
|
});
|
|
52222
52273
|
return;
|
|
52223
52274
|
}
|
|
52275
|
+
if (url2 === true) {
|
|
52276
|
+
payload2.value = stripTabAndNewline(trimmed);
|
|
52277
|
+
return;
|
|
52278
|
+
}
|
|
52224
52279
|
if (def.hostname && !urlHostnameOk(url2, def.hostname)) {
|
|
52225
52280
|
payload2.issues.push({
|
|
52226
52281
|
code: "invalid_format",
|
|
@@ -52310,12 +52365,7 @@ var ipv6Alphabet = /^[0-9a-fA-F:.]+$/;
|
|
|
52310
52365
|
function isValidIPv6(value) {
|
|
52311
52366
|
if (!ipv6Alphabet.test(value))
|
|
52312
52367
|
return false;
|
|
52313
|
-
|
|
52314
|
-
new URL(`http://[${value}]`);
|
|
52315
|
-
return true;
|
|
52316
|
-
} catch {
|
|
52317
|
-
return false;
|
|
52318
|
-
}
|
|
52368
|
+
return canParseURL(`http://[${value}]`);
|
|
52319
52369
|
}
|
|
52320
52370
|
var $ZodIPv6 = /* @__PURE__ */ $constructor("$ZodIPv6", (inst, def) => {
|
|
52321
52371
|
def.pattern ?? (def.pattern = ipv6);
|
|
@@ -54380,59 +54430,6 @@ function handleRefineResult(result, payload2, input2, inst) {
|
|
|
54380
54430
|
payload2.issues.push(issue(_iss));
|
|
54381
54431
|
}
|
|
54382
54432
|
}
|
|
54383
|
-
function handlePropertiesResult(result, payload2, key) {
|
|
54384
|
-
if (result.issues.length) {
|
|
54385
|
-
payload2.issues.push(...prefixIssues(key, result.issues));
|
|
54386
|
-
}
|
|
54387
|
-
}
|
|
54388
|
-
var $ZodProperties = /* @__PURE__ */ $constructor("$ZodProperties", (inst, def) => {
|
|
54389
|
-
$ZodType.init(inst, def);
|
|
54390
|
-
$ZodCheck.init(inst, def);
|
|
54391
|
-
const memo2 = globalConfig.memoizer;
|
|
54392
|
-
memo2?.attach(inst);
|
|
54393
|
-
let entries;
|
|
54394
|
-
const runShape = (payload2, ctx) => {
|
|
54395
|
-
entries ?? (entries = Reflect.ownKeys(def.shape).map((key) => [key, def.shape[key]]));
|
|
54396
|
-
const input2 = payload2.value;
|
|
54397
|
-
let proms;
|
|
54398
|
-
for (const [key, schema] of entries) {
|
|
54399
|
-
const result = schema._zod.run({ value: input2[key], issues: [] }, ctx);
|
|
54400
|
-
if (result instanceof Promise) {
|
|
54401
|
-
proms ?? (proms = []);
|
|
54402
|
-
proms.push(result.then((result2) => handlePropertiesResult(result2, payload2, key)));
|
|
54403
|
-
} else {
|
|
54404
|
-
handlePropertiesResult(result, payload2, key);
|
|
54405
|
-
}
|
|
54406
|
-
}
|
|
54407
|
-
if (proms)
|
|
54408
|
-
return Promise.all(proms).then(() => void 0);
|
|
54409
|
-
return void 0;
|
|
54410
|
-
};
|
|
54411
|
-
inst._zod.parse = (payload2, ctx) => {
|
|
54412
|
-
const input2 = payload2.value;
|
|
54413
|
-
if (input2 === null || typeof input2 !== "object" && typeof input2 !== "function") {
|
|
54414
|
-
payload2.issues.push({ expected: "object", code: "invalid_type", input: input2, inst });
|
|
54415
|
-
return payload2;
|
|
54416
|
-
}
|
|
54417
|
-
if (ctx.direction === "backward")
|
|
54418
|
-
ctx = { ...ctx, direction: "forward" };
|
|
54419
|
-
if (memo2)
|
|
54420
|
-
memo2.alloc(inst, payload2, input2, ctx);
|
|
54421
|
-
const result = runShape(payload2, ctx);
|
|
54422
|
-
return result instanceof Promise ? result.then(() => payload2) : payload2;
|
|
54423
|
-
};
|
|
54424
|
-
inst._zod.check = (payload2) => {
|
|
54425
|
-
if (payload2.value == null) {
|
|
54426
|
-
payload2.issues.push({ expected: "object", code: "invalid_type", input: payload2.value, inst });
|
|
54427
|
-
return void 0;
|
|
54428
|
-
}
|
|
54429
|
-
return runShape(payload2, {});
|
|
54430
|
-
};
|
|
54431
|
-
}, {
|
|
54432
|
-
*[Symbol.iterator]() {
|
|
54433
|
-
yield this;
|
|
54434
|
-
}
|
|
54435
|
-
});
|
|
54436
54433
|
|
|
54437
54434
|
// node_modules/zod/v4/core/memoizer.js
|
|
54438
54435
|
var $ZodCyclicError = class extends Error {
|
|
@@ -54444,7 +54441,7 @@ var $ZodCyclicError = class extends Error {
|
|
|
54444
54441
|
var STATE = "~memo";
|
|
54445
54442
|
var NO_ISSUES = [];
|
|
54446
54443
|
function isRef(value) {
|
|
54447
|
-
return value !== null &&
|
|
54444
|
+
return value !== null && typeof value === "object";
|
|
54448
54445
|
}
|
|
54449
54446
|
function cloneIssues(issues) {
|
|
54450
54447
|
return issues.map((iss) => iss.path ? { ...iss, path: iss.path.slice() } : { ...iss });
|
|
@@ -54493,9 +54490,6 @@ function isRecursive(inst, stack, resolve) {
|
|
|
54493
54490
|
check2(def.catchall);
|
|
54494
54491
|
break;
|
|
54495
54492
|
}
|
|
54496
|
-
case "properties":
|
|
54497
|
-
merge3(shape(def.shape, false));
|
|
54498
|
-
break;
|
|
54499
54493
|
case "array":
|
|
54500
54494
|
check2(def.element);
|
|
54501
54495
|
break;
|
|
@@ -54823,6 +54817,7 @@ var error = () => {
|
|
|
54823
54817
|
json_string: "\u0646\u064E\u0635 \u0639\u0644\u0649 \u0647\u064A\u0626\u0629 JSON",
|
|
54824
54818
|
e164: "\u0631\u0642\u0645 \u0647\u0627\u062A\u0641 \u0628\u0645\u0639\u064A\u0627\u0631 E.164",
|
|
54825
54819
|
credit_card: "\u0631\u0642\u0645 \u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0627\u0626\u062A\u0645\u0627\u0646",
|
|
54820
|
+
currency_code: "\u0631\u0645\u0632 \u0627\u0644\u0639\u0645\u0644\u0629",
|
|
54826
54821
|
iban: "IBAN",
|
|
54827
54822
|
jwt: "JWT",
|
|
54828
54823
|
template_literal: "\u0645\u062F\u062E\u0644"
|
|
@@ -54934,6 +54929,7 @@ var error2 = () => {
|
|
|
54934
54929
|
json_string: "JSON string",
|
|
54935
54930
|
e164: "E.164 number",
|
|
54936
54931
|
credit_card: "kredit kart\u0131 n\xF6mr\u0259si",
|
|
54932
|
+
currency_code: "valyuta kodu",
|
|
54937
54933
|
iban: "IBAN",
|
|
54938
54934
|
jwt: "JWT",
|
|
54939
54935
|
template_literal: "input"
|
|
@@ -55094,6 +55090,7 @@ var error3 = () => {
|
|
|
55094
55090
|
json_string: "JSON \u0440\u0430\u0434\u043E\u043A",
|
|
55095
55091
|
e164: "\u043D\u0443\u043C\u0430\u0440 E.164",
|
|
55096
55092
|
credit_card: "\u043D\u0443\u043C\u0430\u0440 \u043A\u0440\u044D\u0434\u044B\u0442\u043D\u0430\u0439 \u043A\u0430\u0440\u0442\u044B",
|
|
55093
|
+
currency_code: "\u043A\u043E\u0434 \u0432\u0430\u043B\u044E\u0442\u044B",
|
|
55097
55094
|
iban: "IBAN",
|
|
55098
55095
|
jwt: "JWT",
|
|
55099
55096
|
template_literal: "\u0443\u0432\u043E\u0434"
|
|
@@ -55212,6 +55209,7 @@ var error4 = () => {
|
|
|
55212
55209
|
json_string: "JSON \u043D\u0438\u0437",
|
|
55213
55210
|
e164: "E.164 \u043D\u043E\u043C\u0435\u0440",
|
|
55214
55211
|
credit_card: "\u043D\u043E\u043C\u0435\u0440 \u043D\u0430 \u043A\u0440\u0435\u0434\u0438\u0442\u043D\u0430 \u043A\u0430\u0440\u0442\u0430",
|
|
55212
|
+
currency_code: "\u043A\u043E\u0434 \u043D\u0430 \u0432\u0430\u043B\u0443\u0442\u0430",
|
|
55215
55213
|
iban: "IBAN",
|
|
55216
55214
|
jwt: "JWT",
|
|
55217
55215
|
template_literal: "\u0432\u0445\u043E\u0434"
|
|
@@ -55337,6 +55335,7 @@ var error5 = () => {
|
|
|
55337
55335
|
json_string: "JSON \u09B8\u09CD\u099F\u09CD\u09B0\u09BF\u0982",
|
|
55338
55336
|
e164: "E.164 \u09A8\u09AE\u09CD\u09AC\u09B0",
|
|
55339
55337
|
credit_card: "\u0995\u09CD\u09B0\u09C7\u09A1\u09BF\u099F \u0995\u09BE\u09B0\u09CD\u09A1 \u09A8\u09AE\u09CD\u09AC\u09B0",
|
|
55338
|
+
currency_code: "\u09AE\u09C1\u09A6\u09CD\u09B0\u09BE \u0995\u09CB\u09A1",
|
|
55340
55339
|
iban: "IBAN",
|
|
55341
55340
|
jwt: "JWT",
|
|
55342
55341
|
template_literal: "\u0987\u09A8\u09AA\u09C1\u099F"
|
|
@@ -55450,6 +55449,7 @@ var error6 = () => {
|
|
|
55450
55449
|
json_string: "cadena JSON",
|
|
55451
55450
|
e164: "n\xFAmero E.164",
|
|
55452
55451
|
credit_card: "n\xFAmero de targeta de cr\xE8dit",
|
|
55452
|
+
currency_code: "codi de moneda",
|
|
55453
55453
|
iban: "IBAN",
|
|
55454
55454
|
jwt: "JWT",
|
|
55455
55455
|
template_literal: "entrada"
|
|
@@ -55563,6 +55563,7 @@ var error7 = () => {
|
|
|
55563
55563
|
json_string: "\u062F\u06D5\u0642\u06CC JSON",
|
|
55564
55564
|
e164: "\u0698\u0645\u0627\u0631\u06D5\u06CC E.164",
|
|
55565
55565
|
credit_card: "\u0698\u0645\u0627\u0631\u06D5\u06CC \u06A9\u0627\u0631\u062A\u06CC \u06A9\u0631\u06CE\u062F\u06CC\u062A",
|
|
55566
|
+
currency_code: "\u06A9\u06C6\u062F\u06CC \u062F\u0631\u0627\u0648",
|
|
55566
55567
|
iban: "IBAN",
|
|
55567
55568
|
jwt: "JWT",
|
|
55568
55569
|
template_literal: "\u062A\u06CE\u06A9\u0631\u062F\u06D5"
|
|
@@ -55695,6 +55696,7 @@ var error8 = () => {
|
|
|
55695
55696
|
json_string: "\u0159et\u011Bzec ve form\xE1tu JSON",
|
|
55696
55697
|
e164: "\u010D\xEDslo E.164",
|
|
55697
55698
|
credit_card: "\u010D\xEDslo kreditn\xED karty",
|
|
55699
|
+
currency_code: "k\xF3d m\u011Bny",
|
|
55698
55700
|
iban: "IBAN",
|
|
55699
55701
|
jwt: "JWT",
|
|
55700
55702
|
template_literal: "vstup"
|
|
@@ -55811,6 +55813,7 @@ var error9 = () => {
|
|
|
55811
55813
|
json_string: "JSON-streng",
|
|
55812
55814
|
e164: "E.164-nummer",
|
|
55813
55815
|
credit_card: "kreditkortnummer",
|
|
55816
|
+
currency_code: "valutakode",
|
|
55814
55817
|
iban: "IBAN",
|
|
55815
55818
|
jwt: "JWT",
|
|
55816
55819
|
template_literal: "input"
|
|
@@ -55931,6 +55934,7 @@ var error10 = () => {
|
|
|
55931
55934
|
json_string: "JSON-String",
|
|
55932
55935
|
e164: "E.164-Nummer",
|
|
55933
55936
|
credit_card: "Kreditkartennummer",
|
|
55937
|
+
currency_code: "W\xE4hrungscode",
|
|
55934
55938
|
iban: "IBAN",
|
|
55935
55939
|
jwt: "JWT",
|
|
55936
55940
|
template_literal: "Eingabe"
|
|
@@ -56044,6 +56048,7 @@ var error11 = () => {
|
|
|
56044
56048
|
json_string: "\u03C3\u03C5\u03BC\u03B2\u03BF\u03BB\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC JSON",
|
|
56045
56049
|
e164: "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 E.164",
|
|
56046
56050
|
credit_card: "\u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C0\u03B9\u03C3\u03C4\u03C9\u03C4\u03B9\u03BA\u03AE\u03C2 \u03BA\u03AC\u03C1\u03C4\u03B1\u03C2",
|
|
56051
|
+
currency_code: "\u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03BD\u03BF\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2",
|
|
56047
56052
|
iban: "IBAN",
|
|
56048
56053
|
jwt: "JWT",
|
|
56049
56054
|
template_literal: "\u03B5\u03AF\u03C3\u03BF\u03B4\u03BF\u03C2"
|
|
@@ -56155,6 +56160,7 @@ var error12 = () => {
|
|
|
56155
56160
|
base64url: "base64url-encoded string",
|
|
56156
56161
|
json_string: "JSON string",
|
|
56157
56162
|
e164: "E.164 number",
|
|
56163
|
+
currency_code: "currency code",
|
|
56158
56164
|
credit_card: "credit card number",
|
|
56159
56165
|
iban: "IBAN",
|
|
56160
56166
|
jwt: "JWT",
|
|
@@ -56280,6 +56286,7 @@ var error13 = () => {
|
|
|
56280
56286
|
json_string: "JSON-karaktraro",
|
|
56281
56287
|
e164: "E.164-nombro",
|
|
56282
56288
|
credit_card: "kreditkarta numero",
|
|
56289
|
+
currency_code: "valuta kodo",
|
|
56283
56290
|
iban: "IBAN",
|
|
56284
56291
|
jwt: "JWT",
|
|
56285
56292
|
template_literal: "enigo"
|
|
@@ -56393,6 +56400,7 @@ var error14 = () => {
|
|
|
56393
56400
|
json_string: "cadena JSON",
|
|
56394
56401
|
e164: "n\xFAmero E.164",
|
|
56395
56402
|
credit_card: "n\xFAmero de tarjeta de cr\xE9dito",
|
|
56403
|
+
currency_code: "c\xF3digo de moneda",
|
|
56396
56404
|
iban: "IBAN",
|
|
56397
56405
|
jwt: "JWT",
|
|
56398
56406
|
template_literal: "entrada"
|
|
@@ -56530,6 +56538,7 @@ var error15 = () => {
|
|
|
56530
56538
|
json_string: "JSON \u0631\u0634\u062A\u0647",
|
|
56531
56539
|
e164: "E.164 \u0639\u062F\u062F",
|
|
56532
56540
|
credit_card: "\u0634\u0645\u0627\u0631\u0647 \u06A9\u0627\u0631\u062A \u0627\u0639\u062A\u0628\u0627\u0631\u06CC",
|
|
56541
|
+
currency_code: "\u06A9\u062F \u0627\u0631\u0632",
|
|
56533
56542
|
iban: "IBAN",
|
|
56534
56543
|
jwt: "JWT",
|
|
56535
56544
|
template_literal: "\u0648\u0631\u0648\u062F\u06CC"
|
|
@@ -56653,6 +56662,7 @@ var error16 = () => {
|
|
|
56653
56662
|
json_string: "JSON-merkkijono",
|
|
56654
56663
|
e164: "E.164-luku",
|
|
56655
56664
|
credit_card: "luottokortin numero",
|
|
56665
|
+
currency_code: "valuuttakoodi",
|
|
56656
56666
|
iban: "IBAN",
|
|
56657
56667
|
jwt: "JWT",
|
|
56658
56668
|
template_literal: "templaattimerkkijono"
|
|
@@ -56765,6 +56775,7 @@ var error17 = () => {
|
|
|
56765
56775
|
json_string: "cha\xEEne de caract\xE8res JSON",
|
|
56766
56776
|
e164: "num\xE9ro au format E.164",
|
|
56767
56777
|
credit_card: "num\xE9ro de carte de cr\xE9dit",
|
|
56778
|
+
currency_code: "code de devise",
|
|
56768
56779
|
iban: "IBAN",
|
|
56769
56780
|
jwt: "JWT",
|
|
56770
56781
|
template_literal: "entr\xE9e"
|
|
@@ -56895,6 +56906,7 @@ var error18 = () => {
|
|
|
56895
56906
|
json_string: "cha\xEEne JSON",
|
|
56896
56907
|
e164: "num\xE9ro E.164",
|
|
56897
56908
|
credit_card: "num\xE9ro de carte de cr\xE9dit",
|
|
56909
|
+
currency_code: "code de devise",
|
|
56898
56910
|
iban: "IBAN",
|
|
56899
56911
|
jwt: "JWT",
|
|
56900
56912
|
template_literal: "entr\xE9e"
|
|
@@ -57007,6 +57019,7 @@ var error19 = () => {
|
|
|
57007
57019
|
json_string: "JSON \u0AB8\u0ACD\u0A9F\u0ACD\u0AB0\u0ABF\u0A82\u0A97",
|
|
57008
57020
|
e164: "E.164 \u0AA8\u0A82\u0AAC\u0AB0",
|
|
57009
57021
|
credit_card: "\u0A95\u0ACD\u0AB0\u0AC7\u0AA1\u0ABF\u0A9F \u0A95\u0ABE\u0AB0\u0ACD\u0AA1 \u0AA8\u0A82\u0AAC\u0AB0",
|
|
57022
|
+
currency_code: "\u0A9A\u0AB2\u0AA3 \u0A95\u0ACB\u0AA1",
|
|
57010
57023
|
iban: "IBAN",
|
|
57011
57024
|
jwt: "JWT",
|
|
57012
57025
|
template_literal: "\u0A87\u0AA8\u0AAA\u0AC1\u0A9F"
|
|
@@ -57156,6 +57169,7 @@ var error20 = () => {
|
|
|
57156
57169
|
json_string: { label: "\u05DE\u05D7\u05E8\u05D5\u05D6\u05EA JSON", gender: "f" },
|
|
57157
57170
|
e164: { label: "\u05DE\u05E1\u05E4\u05E8 E.164", gender: "m" },
|
|
57158
57171
|
credit_card: { label: "\u05DE\u05E1\u05E4\u05E8 \u05DB\u05E8\u05D8\u05D9\u05E1 \u05D0\u05E9\u05E8\u05D0\u05D9", gender: "m" },
|
|
57172
|
+
currency_code: { label: "\u05E7\u05D5\u05D3 \u05DE\u05D8\u05D1\u05E2", gender: "m" },
|
|
57159
57173
|
iban: { label: "IBAN", gender: "m" },
|
|
57160
57174
|
jwt: { label: "JWT", gender: "m" },
|
|
57161
57175
|
template_literal: { label: "\u05E7\u05DC\u05D8", gender: "m" },
|
|
@@ -57321,6 +57335,7 @@ var error21 = () => {
|
|
|
57321
57335
|
json_string: "JSON \u0938\u094D\u091F\u094D\u0930\u093F\u0902\u0917",
|
|
57322
57336
|
e164: "E.164 \u0938\u0902\u0916\u094D\u092F\u093E",
|
|
57323
57337
|
credit_card: "\u0915\u094D\u0930\u0947\u0921\u093F\u091F \u0915\u093E\u0930\u094D\u0921 \u0938\u0902\u0916\u094D\u092F\u093E",
|
|
57338
|
+
currency_code: "\u092E\u0941\u0926\u094D\u0930\u093E \u0915\u094B\u0921",
|
|
57324
57339
|
iban: "IBAN",
|
|
57325
57340
|
jwt: "JWT",
|
|
57326
57341
|
template_literal: "\u0907\u0928\u092A\u0941\u091F"
|
|
@@ -57431,6 +57446,7 @@ var error22 = () => {
|
|
|
57431
57446
|
json_string: "JSON tekst",
|
|
57432
57447
|
e164: "E.164 broj",
|
|
57433
57448
|
credit_card: "broj kreditne kartice",
|
|
57449
|
+
currency_code: "kod valute",
|
|
57434
57450
|
iban: "IBAN",
|
|
57435
57451
|
jwt: "JWT",
|
|
57436
57452
|
template_literal: "unos"
|
|
@@ -57558,6 +57574,7 @@ var error23 = () => {
|
|
|
57558
57574
|
json_string: "JSON string",
|
|
57559
57575
|
e164: "E.164 sz\xE1m",
|
|
57560
57576
|
credit_card: "hitelk\xE1rtyasz\xE1m",
|
|
57577
|
+
currency_code: "p\xE9nznemk\xF3d",
|
|
57561
57578
|
iban: "IBAN",
|
|
57562
57579
|
jwt: "JWT",
|
|
57563
57580
|
template_literal: "bemenet"
|
|
@@ -57711,6 +57728,7 @@ var error24 = () => {
|
|
|
57711
57728
|
json_string: "JSON \u057F\u0578\u0572",
|
|
57712
57729
|
e164: "E.164 \u0570\u0561\u0574\u0561\u0580",
|
|
57713
57730
|
credit_card: "\u056F\u0580\u0565\u0564\u056B\u057F \u0584\u0561\u0580\u057F\u056B \u0570\u0561\u0574\u0561\u0580",
|
|
57731
|
+
currency_code: "\u0561\u0580\u056A\u0578\u0582\u0575\u0569\u056B \u056F\u0578\u0564",
|
|
57714
57732
|
iban: "IBAN",
|
|
57715
57733
|
jwt: "JWT",
|
|
57716
57734
|
template_literal: "\u0574\u0578\u0582\u057F\u0584"
|
|
@@ -57829,6 +57847,7 @@ var error25 = () => {
|
|
|
57829
57847
|
json_string: "string JSON",
|
|
57830
57848
|
e164: "angka E.164",
|
|
57831
57849
|
credit_card: "nomor kartu kredit",
|
|
57850
|
+
currency_code: "kode mata uang",
|
|
57832
57851
|
iban: "IBAN",
|
|
57833
57852
|
jwt: "JWT",
|
|
57834
57853
|
template_literal: "input"
|
|
@@ -57940,6 +57959,7 @@ var error26 = () => {
|
|
|
57940
57959
|
json_string: "JSON strengur",
|
|
57941
57960
|
e164: "E.164 t\xF6lugildi",
|
|
57942
57961
|
credit_card: "kreditkortan\xFAmer",
|
|
57962
|
+
currency_code: "gjaldmi\xF0ilsk\xF3\xF0i",
|
|
57943
57963
|
iban: "IBAN",
|
|
57944
57964
|
jwt: "JWT",
|
|
57945
57965
|
template_literal: "gildi"
|
|
@@ -58054,6 +58074,7 @@ var error27 = () => {
|
|
|
58054
58074
|
json_string: "stringa JSON",
|
|
58055
58075
|
e164: "numero E.164",
|
|
58056
58076
|
credit_card: "numero di carta di credito",
|
|
58077
|
+
currency_code: "codice valuta",
|
|
58057
58078
|
iban: "IBAN",
|
|
58058
58079
|
jwt: "JWT",
|
|
58059
58080
|
template_literal: "input"
|
|
@@ -58167,6 +58188,7 @@ var error28 = () => {
|
|
|
58167
58188
|
json_string: "JSON\u6587\u5B57\u5217",
|
|
58168
58189
|
e164: "E.164\u756A\u53F7",
|
|
58169
58190
|
credit_card: "\u30AF\u30EC\u30B8\u30C3\u30C8\u30AB\u30FC\u30C9\u756A\u53F7",
|
|
58191
|
+
currency_code: "\u901A\u8CA8\u30B3\u30FC\u30C9",
|
|
58170
58192
|
iban: "IBAN",
|
|
58171
58193
|
jwt: "JWT",
|
|
58172
58194
|
template_literal: "\u5165\u529B\u5024"
|
|
@@ -58279,6 +58301,7 @@ var error29 = () => {
|
|
|
58279
58301
|
json_string: "JSON \u10D5\u10D4\u10DA\u10D8",
|
|
58280
58302
|
e164: "E.164 \u10DC\u10DD\u10DB\u10D4\u10E0\u10D8",
|
|
58281
58303
|
credit_card: "\u10E1\u10D0\u10D9\u10E0\u10D4\u10D3\u10D8\u10E2\u10DD \u10D1\u10D0\u10E0\u10D0\u10D7\u10D8\u10E1 \u10DC\u10DD\u10DB\u10D4\u10E0\u10D8",
|
|
58304
|
+
currency_code: "\u10D5\u10D0\u10DA\u10E3\u10E2\u10D8\u10E1 \u10D9\u10DD\u10D3\u10D8",
|
|
58282
58305
|
iban: "IBAN",
|
|
58283
58306
|
jwt: "JWT",
|
|
58284
58307
|
template_literal: "\u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D0"
|
|
@@ -58396,6 +58419,7 @@ var error30 = () => {
|
|
|
58396
58419
|
json_string: "\u1781\u17D2\u179F\u17C2\u17A2\u1780\u17D2\u179F\u179A JSON",
|
|
58397
58420
|
e164: "\u179B\u17C1\u1781 E.164",
|
|
58398
58421
|
credit_card: "\u179B\u17C1\u1781\u1794\u17D0\u178E\u17D2\u178E\u17A5\u178E\u1791\u17B6\u1793",
|
|
58422
|
+
currency_code: "\u1780\u17BC\u178A\u179A\u17BC\u1794\u17B7\u1799\u1794\u17D0\u178E\u17D2\u178E",
|
|
58399
58423
|
iban: "IBAN",
|
|
58400
58424
|
jwt: "JWT",
|
|
58401
58425
|
template_literal: "\u1791\u17B7\u1793\u17D2\u1793\u1793\u17D0\u1799\u1794\u1789\u17D2\u1785\u17BC\u179B"
|
|
@@ -58516,6 +58540,7 @@ var error31 = () => {
|
|
|
58516
58540
|
json_string: "JSON\u0CB8\u0CCD\u0C9F\u0CCD\u0CB0\u0CBF\u0C82\u0C97\u0CCD",
|
|
58517
58541
|
e164: "E.164 \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6",
|
|
58518
58542
|
credit_card: "\u0C95\u0CCD\u0CB0\u0CC6\u0CA1\u0CBF\u0C9F\u0CCD \u0C95\u0CBE\u0CB0\u0CCD\u0CA1\u0CCD \u0CB8\u0C82\u0C96\u0CCD\u0CAF\u0CC6",
|
|
58543
|
+
currency_code: "\u0C95\u0CB0\u0CC6\u0CA8\u0CCD\u0CB8\u0CBF \u0C95\u0CCB\u0CA1\u0CCD",
|
|
58519
58544
|
iban: "IBAN",
|
|
58520
58545
|
jwt: "JWT",
|
|
58521
58546
|
template_literal: "\u0C87\u0CA8\u0CCD\u0CAA\u0CC1\u0C9F\u0CCD"
|
|
@@ -58631,6 +58656,7 @@ var error32 = () => {
|
|
|
58631
58656
|
json_string: "JSON \uBB38\uC790\uC5F4",
|
|
58632
58657
|
e164: "E.164 \uBC88\uD638",
|
|
58633
58658
|
credit_card: "\uC2E0\uC6A9\uCE74\uB4DC \uBC88\uD638",
|
|
58659
|
+
currency_code: "\uD1B5\uD654 \uCF54\uB4DC",
|
|
58634
58660
|
iban: "IBAN",
|
|
58635
58661
|
jwt: "JWT",
|
|
58636
58662
|
template_literal: "\uC785\uB825"
|
|
@@ -58829,6 +58855,7 @@ var error33 = () => {
|
|
|
58829
58855
|
json_string: "JSON eilut\u0117",
|
|
58830
58856
|
e164: "E.164 numeris",
|
|
58831
58857
|
credit_card: "kredito kortel\u0117s numeris",
|
|
58858
|
+
currency_code: "valiutos kodas",
|
|
58832
58859
|
iban: "IBAN",
|
|
58833
58860
|
jwt: "JWT",
|
|
58834
58861
|
template_literal: "\u012Fvestis"
|
|
@@ -58954,6 +58981,7 @@ var error34 = () => {
|
|
|
58954
58981
|
json_string: "JSON \u043D\u0438\u0437\u0430",
|
|
58955
58982
|
e164: "E.164 \u0431\u0440\u043E\u0458",
|
|
58956
58983
|
credit_card: "\u0431\u0440\u043E\u0458 \u043D\u0430 \u043A\u0440\u0435\u0434\u0438\u0442\u043D\u0430 \u043A\u0430\u0440\u0442\u0438\u0447\u043A\u0430",
|
|
58984
|
+
currency_code: "\u043A\u043E\u0434 \u043D\u0430 \u0432\u0430\u043B\u0443\u0442\u0430",
|
|
58957
58985
|
iban: "IBAN",
|
|
58958
58986
|
jwt: "JWT",
|
|
58959
58987
|
template_literal: "\u0432\u043D\u0435\u0441"
|
|
@@ -59068,6 +59096,7 @@ var error35 = () => {
|
|
|
59068
59096
|
json_string: "string JSON",
|
|
59069
59097
|
e164: "nombor E.164",
|
|
59070
59098
|
credit_card: "nombor kad kredit",
|
|
59099
|
+
currency_code: "kod mata wang",
|
|
59071
59100
|
iban: "IBAN",
|
|
59072
59101
|
jwt: "JWT",
|
|
59073
59102
|
template_literal: "input"
|
|
@@ -59180,6 +59209,7 @@ var error36 = () => {
|
|
|
59180
59209
|
json_string: "JSON \u0938\u094D\u091F\u094D\u0930\u093F\u0919",
|
|
59181
59210
|
e164: "E.164 \u0928\u092E\u094D\u092C\u0930",
|
|
59182
59211
|
credit_card: "\u0915\u094D\u0930\u0947\u0921\u093F\u091F \u0915\u093E\u0930\u094D\u0921 \u0928\u092E\u094D\u092C\u0930",
|
|
59212
|
+
currency_code: "\u092E\u0941\u0926\u094D\u0930\u093E \u0915\u094B\u0921",
|
|
59183
59213
|
iban: "IBAN",
|
|
59184
59214
|
jwt: "JWT",
|
|
59185
59215
|
template_literal: "\u0907\u0928\u092A\u0941\u091F"
|
|
@@ -59291,6 +59321,7 @@ var error37 = () => {
|
|
|
59291
59321
|
json_string: "JSON string",
|
|
59292
59322
|
e164: "E.164-nummer",
|
|
59293
59323
|
credit_card: "creditcardnummer",
|
|
59324
|
+
currency_code: "valutacode",
|
|
59294
59325
|
iban: "IBAN",
|
|
59295
59326
|
jwt: "JWT",
|
|
59296
59327
|
template_literal: "invoer"
|
|
@@ -59406,6 +59437,7 @@ var error38 = () => {
|
|
|
59406
59437
|
json_string: "JSON-streng",
|
|
59407
59438
|
e164: "E.164-nummer",
|
|
59408
59439
|
credit_card: "kredittkortnummer",
|
|
59440
|
+
currency_code: "valutakode",
|
|
59409
59441
|
iban: "IBAN",
|
|
59410
59442
|
jwt: "JWT",
|
|
59411
59443
|
template_literal: "input"
|
|
@@ -59519,6 +59551,7 @@ var error39 = () => {
|
|
|
59519
59551
|
json_string: "JSON-streng",
|
|
59520
59552
|
e164: "E.164-nummer",
|
|
59521
59553
|
credit_card: "kredittkortnummer",
|
|
59554
|
+
currency_code: "valutakode",
|
|
59522
59555
|
iban: "IBAN",
|
|
59523
59556
|
jwt: "JWT",
|
|
59524
59557
|
template_literal: "input"
|
|
@@ -59632,6 +59665,7 @@ var error40 = () => {
|
|
|
59632
59665
|
json_string: "JSON metin",
|
|
59633
59666
|
e164: "E.164 say\u0131s\u0131",
|
|
59634
59667
|
credit_card: "i'tib\xE2r kart\u0131 numaras\u0131",
|
|
59668
|
+
currency_code: "para birimi kodu",
|
|
59635
59669
|
iban: "IBAN",
|
|
59636
59670
|
jwt: "JWT",
|
|
59637
59671
|
template_literal: "giren"
|
|
@@ -59746,6 +59780,7 @@ var error41 = () => {
|
|
|
59746
59780
|
json_string: "JSON \u0645\u062A\u0646",
|
|
59747
59781
|
e164: "\u062F E.164 \u0634\u0645\u06D0\u0631\u0647",
|
|
59748
59782
|
credit_card: "\u062F \u06A9\u0631\u06CC\u0689\u06CC\u067C \u06A9\u0627\u0631\u062A \u0634\u0645\u06CC\u0631\u0647",
|
|
59783
|
+
currency_code: "\u062F \u0627\u0633\u0639\u0627\u0631\u0648 \u06A9\u0648\u0689",
|
|
59749
59784
|
iban: "IBAN",
|
|
59750
59785
|
jwt: "JWT",
|
|
59751
59786
|
template_literal: "\u0648\u0631\u0648\u062F\u064A"
|
|
@@ -59865,6 +59900,7 @@ var error42 = () => {
|
|
|
59865
59900
|
json_string: "ci\u0105g znak\xF3w w formacie JSON",
|
|
59866
59901
|
e164: "liczba E.164",
|
|
59867
59902
|
credit_card: "numer karty kredytowej",
|
|
59903
|
+
currency_code: "kod waluty",
|
|
59868
59904
|
iban: "IBAN",
|
|
59869
59905
|
jwt: "JWT",
|
|
59870
59906
|
template_literal: "wej\u015Bcie"
|
|
@@ -59979,6 +60015,7 @@ var error43 = () => {
|
|
|
59979
60015
|
json_string: "o texto JSON",
|
|
59980
60016
|
e164: "o n\xFAmero E.164",
|
|
59981
60017
|
credit_card: "o n\xFAmero de cart\xE3o de cr\xE9dito",
|
|
60018
|
+
currency_code: "o c\xF3digo de moeda",
|
|
59982
60019
|
iban: "o IBAN",
|
|
59983
60020
|
jwt: "o JWT",
|
|
59984
60021
|
template_literal: "a entrada"
|
|
@@ -60122,6 +60159,7 @@ var error44 = () => {
|
|
|
60122
60159
|
json_string: "o texto JSON",
|
|
60123
60160
|
e164: "o n\xFAmero E.164",
|
|
60124
60161
|
credit_card: "o n\xFAmero de cart\xE3o de cr\xE9dito",
|
|
60162
|
+
currency_code: "o c\xF3digo de moeda",
|
|
60125
60163
|
iban: "o IBAN",
|
|
60126
60164
|
jwt: "o JWT",
|
|
60127
60165
|
template_literal: "a entrada"
|
|
@@ -60266,6 +60304,7 @@ var error45 = () => {
|
|
|
60266
60304
|
json_string: "\u0219ir JSON",
|
|
60267
60305
|
e164: "num\u0103r E.164",
|
|
60268
60306
|
credit_card: "num\u0103r de card de credit",
|
|
60307
|
+
currency_code: "cod valutar",
|
|
60269
60308
|
iban: "IBAN",
|
|
60270
60309
|
jwt: "JWT",
|
|
60271
60310
|
template_literal: "intrare"
|
|
@@ -60438,6 +60477,7 @@ var error46 = () => {
|
|
|
60438
60477
|
json_string: "JSON \u0441\u0442\u0440\u043E\u043A\u0430",
|
|
60439
60478
|
e164: "\u043D\u043E\u043C\u0435\u0440 E.164",
|
|
60440
60479
|
credit_card: "\u043D\u043E\u043C\u0435\u0440 \u043A\u0440\u0435\u0434\u0438\u0442\u043D\u043E\u0439 \u043A\u0430\u0440\u0442\u044B",
|
|
60480
|
+
currency_code: "\u043A\u043E\u0434 \u0432\u0430\u043B\u044E\u0442\u044B",
|
|
60441
60481
|
iban: "IBAN",
|
|
60442
60482
|
jwt: "JWT",
|
|
60443
60483
|
template_literal: "\u0432\u0432\u043E\u0434"
|
|
@@ -60556,6 +60596,7 @@ var error47 = () => {
|
|
|
60556
60596
|
json_string: "re\u0165azec vo form\xE1te JSON",
|
|
60557
60597
|
e164: "\u010D\xEDslo E.164",
|
|
60558
60598
|
credit_card: "\u010D\xEDslo kreditnej karty",
|
|
60599
|
+
currency_code: "k\xF3d meny",
|
|
60559
60600
|
iban: "IBAN",
|
|
60560
60601
|
jwt: "JWT",
|
|
60561
60602
|
template_literal: "vstup"
|
|
@@ -60672,6 +60713,7 @@ var error48 = () => {
|
|
|
60672
60713
|
json_string: "JSON niz",
|
|
60673
60714
|
e164: "E.164 \u0161tevilka",
|
|
60674
60715
|
credit_card: "\u0161tevilka kreditne kartice",
|
|
60716
|
+
currency_code: "koda valute",
|
|
60675
60717
|
iban: "IBAN",
|
|
60676
60718
|
jwt: "JWT",
|
|
60677
60719
|
template_literal: "vnos"
|
|
@@ -60786,6 +60828,7 @@ var error49 = () => {
|
|
|
60786
60828
|
json_string: "JSON-str\xE4ng",
|
|
60787
60829
|
e164: "E.164-nummer",
|
|
60788
60830
|
credit_card: "kreditkortsnummer",
|
|
60831
|
+
currency_code: "valutakod",
|
|
60789
60832
|
iban: "IBAN",
|
|
60790
60833
|
jwt: "JWT",
|
|
60791
60834
|
template_literal: "mall-literal"
|
|
@@ -60901,6 +60944,7 @@ var error50 = () => {
|
|
|
60901
60944
|
json_string: "JSON \u0B9A\u0BB0\u0BAE\u0BCD",
|
|
60902
60945
|
e164: "E.164 \u0B8E\u0BA3\u0BCD",
|
|
60903
60946
|
credit_card: "\u0B95\u0B9F\u0BA9\u0BCD \u0B85\u0B9F\u0BCD\u0B9F\u0BC8 \u0B8E\u0BA3\u0BCD",
|
|
60947
|
+
currency_code: "\u0BA8\u0BBE\u0BA3\u0BAF\u0B95\u0BCD \u0B95\u0BC1\u0BB1\u0BBF\u0BAF\u0BC0\u0B9F\u0BC1",
|
|
60904
60948
|
iban: "IBAN",
|
|
60905
60949
|
jwt: "JWT",
|
|
60906
60950
|
template_literal: "input"
|
|
@@ -61016,6 +61060,7 @@ var error51 = () => {
|
|
|
61016
61060
|
json_string: "\u0441\u0430\u0442\u0440\u0438 JSON",
|
|
61017
61061
|
e164: "\u0440\u0430\u049B\u0430\u043C\u0438 E.164",
|
|
61018
61062
|
credit_card: "\u0440\u0430\u049B\u0430\u043C\u0438 \u043A\u043E\u0440\u0442\u0438 \u043A\u0440\u0435\u0434\u0438\u0442\u04E3",
|
|
61063
|
+
currency_code: "\u0440\u0430\u043C\u0437\u0438 \u0430\u0441\u044A\u043E\u0440",
|
|
61019
61064
|
iban: "IBAN",
|
|
61020
61065
|
jwt: "JWT",
|
|
61021
61066
|
template_literal: "\u0432\u0443\u0440\u0443\u0434"
|
|
@@ -61132,6 +61177,7 @@ var error52 = () => {
|
|
|
61132
61177
|
json_string: "\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E41\u0E1A\u0E1A JSON",
|
|
61133
61178
|
e164: "\u0E40\u0E1A\u0E2D\u0E23\u0E4C\u0E42\u0E17\u0E23\u0E28\u0E31\u0E1E\u0E17\u0E4C\u0E23\u0E30\u0E2B\u0E27\u0E48\u0E32\u0E07\u0E1B\u0E23\u0E30\u0E40\u0E17\u0E28 (E.164)",
|
|
61134
61179
|
credit_card: "\u0E2B\u0E21\u0E32\u0E22\u0E40\u0E25\u0E02\u0E1A\u0E31\u0E15\u0E23\u0E40\u0E04\u0E23\u0E14\u0E34\u0E15",
|
|
61180
|
+
currency_code: "\u0E23\u0E2B\u0E31\u0E2A\u0E2A\u0E01\u0E38\u0E25\u0E40\u0E07\u0E34\u0E19",
|
|
61135
61181
|
iban: "IBAN",
|
|
61136
61182
|
jwt: "\u0E42\u0E17\u0E40\u0E04\u0E19 JWT",
|
|
61137
61183
|
template_literal: "\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E1B\u0E49\u0E2D\u0E19"
|
|
@@ -61247,6 +61293,7 @@ var error53 = () => {
|
|
|
61247
61293
|
json_string: "JSON setiri",
|
|
61248
61294
|
e164: "E.164 nomeri",
|
|
61249
61295
|
credit_card: "kredit kartyny\u0148 nomeri",
|
|
61296
|
+
currency_code: "wal\xFDuta kody",
|
|
61250
61297
|
iban: "IBAN",
|
|
61251
61298
|
jwt: "JWT",
|
|
61252
61299
|
template_literal: "\u015Fablon"
|
|
@@ -61354,6 +61401,7 @@ var error54 = () => {
|
|
|
61354
61401
|
json_string: "JSON dizesi",
|
|
61355
61402
|
e164: "E.164 say\u0131s\u0131",
|
|
61356
61403
|
credit_card: "kredi kart\u0131 numaras\u0131",
|
|
61404
|
+
currency_code: "para birimi kodu",
|
|
61357
61405
|
iban: "IBAN",
|
|
61358
61406
|
jwt: "JWT",
|
|
61359
61407
|
template_literal: "\u015Eablon dizesi"
|
|
@@ -61464,6 +61512,7 @@ var error55 = () => {
|
|
|
61464
61512
|
json_string: "\u0440\u044F\u0434\u043E\u043A JSON",
|
|
61465
61513
|
e164: "\u043D\u043E\u043C\u0435\u0440 E.164",
|
|
61466
61514
|
credit_card: "\u043D\u043E\u043C\u0435\u0440 \u043A\u0440\u0435\u0434\u0438\u0442\u043D\u043E\u0457 \u043A\u0430\u0440\u0442\u043A\u0438",
|
|
61515
|
+
currency_code: "\u043A\u043E\u0434 \u0432\u0430\u043B\u044E\u0442\u0438",
|
|
61467
61516
|
iban: "IBAN",
|
|
61468
61517
|
jwt: "JWT",
|
|
61469
61518
|
template_literal: "\u0432\u0445\u0456\u0434\u043D\u0456 \u0434\u0430\u043D\u0456"
|
|
@@ -61582,6 +61631,7 @@ var error56 = () => {
|
|
|
61582
61631
|
json_string: "\u062C\u06D2 \u0627\u06CC\u0633 \u0627\u0648 \u0627\u06CC\u0646 \u0633\u0679\u0631\u0646\u06AF",
|
|
61583
61632
|
e164: "\u0627\u06CC 164 \u0646\u0645\u0628\u0631",
|
|
61584
61633
|
credit_card: "\u06A9\u0631\u06CC\u0688\u0679 \u06A9\u0627\u0631\u0688 \u0646\u0645\u0628\u0631",
|
|
61634
|
+
currency_code: "\u06A9\u0631\u0646\u0633\u06CC \u06A9\u0648\u0688",
|
|
61585
61635
|
iban: "IBAN",
|
|
61586
61636
|
jwt: "\u062C\u06D2 \u0688\u0628\u0644\u06CC\u0648 \u0679\u06CC",
|
|
61587
61637
|
template_literal: "\u0627\u0646 \u067E\u0679"
|
|
@@ -61697,6 +61747,7 @@ var error57 = () => {
|
|
|
61697
61747
|
json_string: "JSON satr",
|
|
61698
61748
|
e164: "E.164 raqam",
|
|
61699
61749
|
credit_card: "kredit karta raqami",
|
|
61750
|
+
currency_code: "valyuta kodi",
|
|
61700
61751
|
iban: "IBAN",
|
|
61701
61752
|
jwt: "JWT",
|
|
61702
61753
|
template_literal: "kirish"
|
|
@@ -61810,6 +61861,7 @@ var error58 = () => {
|
|
|
61810
61861
|
json_string: "chu\u1ED7i JSON",
|
|
61811
61862
|
e164: "s\u1ED1 E.164",
|
|
61812
61863
|
credit_card: "s\u1ED1 th\u1EBB t\xEDn d\u1EE5ng",
|
|
61864
|
+
currency_code: "m\xE3 ti\u1EC1n t\u1EC7",
|
|
61813
61865
|
iban: "IBAN",
|
|
61814
61866
|
jwt: "JWT",
|
|
61815
61867
|
template_literal: "\u0111\u1EA7u v\xE0o"
|
|
@@ -61923,6 +61975,7 @@ var error59 = () => {
|
|
|
61923
61975
|
json_string: "JSON\u5B57\u7B26\u4E32",
|
|
61924
61976
|
e164: "E.164\u53F7\u7801",
|
|
61925
61977
|
credit_card: "\u4FE1\u7528\u5361\u53F7",
|
|
61978
|
+
currency_code: "\u8D27\u5E01\u4EE3\u7801",
|
|
61926
61979
|
iban: "IBAN",
|
|
61927
61980
|
jwt: "JWT",
|
|
61928
61981
|
template_literal: "\u8F93\u5165"
|
|
@@ -62037,6 +62090,7 @@ var error60 = () => {
|
|
|
62037
62090
|
json_string: "JSON \u5B57\u4E32",
|
|
62038
62091
|
e164: "E.164 \u6578\u503C",
|
|
62039
62092
|
credit_card: "\u4FE1\u7528\u5361\u865F",
|
|
62093
|
+
currency_code: "\u8CA8\u5E63\u4EE3\u78BC",
|
|
62040
62094
|
iban: "IBAN",
|
|
62041
62095
|
jwt: "JWT",
|
|
62042
62096
|
template_literal: "\u8F38\u5165"
|
|
@@ -62149,6 +62203,7 @@ var error61 = () => {
|
|
|
62149
62203
|
json_string: "\u1ECD\u0300r\u1ECD\u0300 JSON",
|
|
62150
62204
|
e164: "n\u1ECD\u0301mb\xE0 E.164",
|
|
62151
62205
|
credit_card: "n\u1ECDmba kaadi gbese",
|
|
62206
|
+
currency_code: "koodu ow\xF3",
|
|
62152
62207
|
iban: "IBAN",
|
|
62153
62208
|
jwt: "JWT",
|
|
62154
62209
|
template_literal: "\u1EB9\u0300r\u1ECD \xECb\xE1w\u1ECDl\xE9"
|
|
@@ -62527,7 +62582,7 @@ function generateChecks(doc, ctx, schema, accessor) {
|
|
|
62527
62582
|
generatePropertyCheck(doc, ctx, def, currentAccessor);
|
|
62528
62583
|
break;
|
|
62529
62584
|
case "properties":
|
|
62530
|
-
generatePropertiesChecks(doc, ctx, def, currentAccessor
|
|
62585
|
+
generatePropertiesChecks(doc, ctx, def, currentAccessor);
|
|
62531
62586
|
break;
|
|
62532
62587
|
case "overwrite": {
|
|
62533
62588
|
const newAccessor = newVar(ctx);
|
|
@@ -62637,11 +62692,11 @@ function generateMimeTypeCheck(doc, ctx, def, accessor) {
|
|
|
62637
62692
|
doc.write(`if (!${mimeSet}.has(${accessor}.type)) return INVALID;`);
|
|
62638
62693
|
}
|
|
62639
62694
|
}
|
|
62640
|
-
function generatePropertiesChecks(doc, ctx, def, accessor
|
|
62695
|
+
function generatePropertiesChecks(doc, ctx, def, accessor) {
|
|
62641
62696
|
if (def.when) {
|
|
62642
62697
|
throw new ZodCompileUnsupportedError(`check with a custom "when" condition`);
|
|
62643
62698
|
}
|
|
62644
|
-
doc.write(
|
|
62699
|
+
doc.write(`if (${accessor} == null) return INVALID;`);
|
|
62645
62700
|
const shape = def.shape;
|
|
62646
62701
|
for (const key of Reflect.ownKeys(shape)) {
|
|
62647
62702
|
const keyExpr = typeof key === "symbol" ? addConstant(ctx, key) : esc(key);
|
|
@@ -62731,7 +62786,7 @@ var PATTERN_IS_COMPLETE = /* @__PURE__ */ new Set([
|
|
|
62731
62786
|
"uuid",
|
|
62732
62787
|
"xid"
|
|
62733
62788
|
]);
|
|
62734
|
-
function generateStringFormatCheck(doc, ctx, def, accessor) {
|
|
62789
|
+
function generateStringFormatCheck(doc, ctx, def, accessor, needsValue = true) {
|
|
62735
62790
|
const fmt = def.format;
|
|
62736
62791
|
if (fmt === "base64") {
|
|
62737
62792
|
const validator = addConstant(ctx, isValidBase64);
|
|
@@ -62771,7 +62826,7 @@ function generateStringFormatCheck(doc, ctx, def, accessor) {
|
|
|
62771
62826
|
}
|
|
62772
62827
|
const formatDef = def;
|
|
62773
62828
|
if (fmt === "url" || fmt === "httpurl" || formatDef.normalize || formatDef.hostname !== void 0 || formatDef.protocol !== void 0) {
|
|
62774
|
-
const parseConst = addConstant(ctx,
|
|
62829
|
+
const parseConst = addConstant(ctx, validateURL);
|
|
62775
62830
|
const defConst = addConstant(ctx, def);
|
|
62776
62831
|
const trimVar = newVar(ctx);
|
|
62777
62832
|
const urlVar = newVar(ctx);
|
|
@@ -62786,6 +62841,8 @@ function generateStringFormatCheck(doc, ctx, def, accessor) {
|
|
|
62786
62841
|
const protocolConst = addConstant(ctx, urlProtocolOk);
|
|
62787
62842
|
doc.write(`if (!${protocolConst}(${urlVar}, ${defConst}.protocol)) return INVALID;`);
|
|
62788
62843
|
}
|
|
62844
|
+
if (!needsValue)
|
|
62845
|
+
return null;
|
|
62789
62846
|
const outputVar = newVar(ctx);
|
|
62790
62847
|
const outputExpr = formatDef.normalize ? `${urlVar}.href` : `${addConstant(ctx, stripTabAndNewline)}(${trimVar})`;
|
|
62791
62848
|
doc.write(`const ${outputVar} = ${outputExpr};`);
|
|
@@ -62845,7 +62902,7 @@ function generateCheck(doc, ctx, schema, accessor, needsValue = true) {
|
|
|
62845
62902
|
let typeAccessor;
|
|
62846
62903
|
switch (type) {
|
|
62847
62904
|
case "string":
|
|
62848
|
-
typeAccessor = generateStringCheck(doc, ctx, schema, accessor);
|
|
62905
|
+
typeAccessor = generateStringCheck(doc, ctx, schema, accessor, buildsValue);
|
|
62849
62906
|
break;
|
|
62850
62907
|
case "number":
|
|
62851
62908
|
typeAccessor = generateNumberCheck(doc, schema, accessor);
|
|
@@ -62951,10 +63008,6 @@ function generateCheck(doc, ctx, schema, accessor, needsValue = true) {
|
|
|
62951
63008
|
case "custom":
|
|
62952
63009
|
typeAccessor = generateCustomCheck(doc, ctx, schema, accessor);
|
|
62953
63010
|
break;
|
|
62954
|
-
case "properties":
|
|
62955
|
-
generatePropertiesChecks(doc, ctx, schema._zod.def, accessor, true);
|
|
62956
|
-
typeAccessor = accessor;
|
|
62957
|
-
break;
|
|
62958
63011
|
case "transform":
|
|
62959
63012
|
typeAccessor = generateTransformCheck(doc, ctx, schema, accessor);
|
|
62960
63013
|
break;
|
|
@@ -62970,12 +63023,12 @@ function generateCheck(doc, ctx, schema, accessor, needsValue = true) {
|
|
|
62970
63023
|
return null;
|
|
62971
63024
|
return generateChecks(doc, ctx, schema, typeAccessor);
|
|
62972
63025
|
}
|
|
62973
|
-
function generateStringCheck(doc, ctx, schema, accessor) {
|
|
63026
|
+
function generateStringCheck(doc, ctx, schema, accessor, needsValue = true) {
|
|
62974
63027
|
doc.write(`if (typeof ${accessor} !== "string") return INVALID;`);
|
|
62975
63028
|
const def = schema._zod.def;
|
|
62976
63029
|
if (def.format === void 0)
|
|
62977
63030
|
return accessor;
|
|
62978
|
-
return generateStringFormatCheck(doc, ctx, def, accessor);
|
|
63031
|
+
return generateStringFormatCheck(doc, ctx, def, accessor, needsValue);
|
|
62979
63032
|
}
|
|
62980
63033
|
function generateNumberCheck(doc, schema, accessor) {
|
|
62981
63034
|
doc.write(`if (typeof ${accessor} !== "number" || !Number.isFinite(${accessor})) return INVALID;`);
|
|
@@ -63875,20 +63928,18 @@ function generateTransformCheck(doc, ctx, schema, accessor) {
|
|
|
63875
63928
|
}
|
|
63876
63929
|
|
|
63877
63930
|
// node_modules/zod/v4/core/api.js
|
|
63931
|
+
function snapshotChecks(def) {
|
|
63932
|
+
if (def.checks)
|
|
63933
|
+
def.checks = [...def.checks];
|
|
63934
|
+
return def;
|
|
63935
|
+
}
|
|
63878
63936
|
// @__NO_SIDE_EFFECTS__
|
|
63879
63937
|
function _string(Class2, params) {
|
|
63880
|
-
return new Class2({
|
|
63881
|
-
type: "string",
|
|
63882
|
-
...normalizeParams(params)
|
|
63883
|
-
});
|
|
63938
|
+
return new Class2(snapshotChecks({ type: "string", ...normalizeParams(params) }));
|
|
63884
63939
|
}
|
|
63885
63940
|
// @__NO_SIDE_EFFECTS__
|
|
63886
63941
|
function _coercedString(Class2, params) {
|
|
63887
|
-
return new Class2({
|
|
63888
|
-
type: "string",
|
|
63889
|
-
coerce: true,
|
|
63890
|
-
...normalizeParams(params)
|
|
63891
|
-
});
|
|
63942
|
+
return new Class2(snapshotChecks({ type: "string", coerce: true, ...normalizeParams(params) }));
|
|
63892
63943
|
}
|
|
63893
63944
|
// @__NO_SIDE_EFFECTS__
|
|
63894
63945
|
function _email(Class2, params) {
|
|
@@ -64192,20 +64243,11 @@ function _isoDuration(Class2, params) {
|
|
|
64192
64243
|
}
|
|
64193
64244
|
// @__NO_SIDE_EFFECTS__
|
|
64194
64245
|
function _number(Class2, params) {
|
|
64195
|
-
return new Class2({
|
|
64196
|
-
type: "number",
|
|
64197
|
-
checks: [],
|
|
64198
|
-
...normalizeParams(params)
|
|
64199
|
-
});
|
|
64246
|
+
return new Class2(snapshotChecks({ type: "number", checks: [], ...normalizeParams(params) }));
|
|
64200
64247
|
}
|
|
64201
64248
|
// @__NO_SIDE_EFFECTS__
|
|
64202
64249
|
function _coercedNumber(Class2, params) {
|
|
64203
|
-
return new Class2({
|
|
64204
|
-
type: "number",
|
|
64205
|
-
coerce: true,
|
|
64206
|
-
checks: [],
|
|
64207
|
-
...normalizeParams(params)
|
|
64208
|
-
});
|
|
64250
|
+
return new Class2(snapshotChecks({ type: "number", coerce: true, checks: [], ...normalizeParams(params) }));
|
|
64209
64251
|
}
|
|
64210
64252
|
// @__NO_SIDE_EFFECTS__
|
|
64211
64253
|
function _int(Class2, params) {
|
|
@@ -64547,9 +64589,8 @@ function _property(property, schema, params) {
|
|
|
64547
64589
|
});
|
|
64548
64590
|
}
|
|
64549
64591
|
// @__NO_SIDE_EFFECTS__
|
|
64550
|
-
function _properties(
|
|
64551
|
-
return new
|
|
64552
|
-
type: "properties",
|
|
64592
|
+
function _properties(shape, params) {
|
|
64593
|
+
return new $ZodCheckProperties({
|
|
64553
64594
|
check: "properties",
|
|
64554
64595
|
shape,
|
|
64555
64596
|
...normalizeParams(params)
|
|
@@ -65184,11 +65225,11 @@ function foldObjects(members2) {
|
|
|
65184
65225
|
}
|
|
65185
65226
|
objects.push(member2);
|
|
65186
65227
|
}
|
|
65187
|
-
const
|
|
65228
|
+
const properties = {};
|
|
65188
65229
|
const required2 = /* @__PURE__ */ new Set();
|
|
65189
65230
|
for (const object2 of objects) {
|
|
65190
65231
|
for (const key in object2.properties) {
|
|
65191
|
-
if (Object.prototype.hasOwnProperty.call(
|
|
65232
|
+
if (Object.prototype.hasOwnProperty.call(properties, key))
|
|
65192
65233
|
continue;
|
|
65193
65234
|
const parts = [];
|
|
65194
65235
|
for (const other of objects) {
|
|
@@ -65199,12 +65240,12 @@ function foldObjects(members2) {
|
|
|
65199
65240
|
parts.push(part);
|
|
65200
65241
|
}
|
|
65201
65242
|
const merged = parts.length === 1 ? parts[0] : foldObjects(parts) ?? { allOf: parts };
|
|
65202
|
-
assignProp(
|
|
65243
|
+
assignProp(properties, key, merged);
|
|
65203
65244
|
}
|
|
65204
65245
|
for (const key of object2.required ?? [])
|
|
65205
65246
|
required2.add(key);
|
|
65206
65247
|
}
|
|
65207
|
-
const folded = { type: "object", properties
|
|
65248
|
+
const folded = { type: "object", properties };
|
|
65208
65249
|
if (required2.size)
|
|
65209
65250
|
folded.required = [...required2];
|
|
65210
65251
|
if (objects.every((object2) => object2.additionalProperties === false)) {
|
|
@@ -65826,17 +65867,15 @@ var objectProcessor = (schema, ctx, _json2, params) => {
|
|
|
65826
65867
|
path: [...params.path, "properties", key]
|
|
65827
65868
|
}));
|
|
65828
65869
|
}
|
|
65829
|
-
const
|
|
65830
|
-
const
|
|
65870
|
+
const requiredKeys = [];
|
|
65871
|
+
for (const key of Object.keys(shape)) {
|
|
65831
65872
|
const field = def.shape[key];
|
|
65832
|
-
if (ctx.io === "input") {
|
|
65833
|
-
|
|
65834
|
-
} else {
|
|
65835
|
-
return field._zod.optout === void 0;
|
|
65873
|
+
if (ctx.io === "input" ? inputOptin(field) === void 0 : field._zod.optout === void 0) {
|
|
65874
|
+
requiredKeys.push(key);
|
|
65836
65875
|
}
|
|
65837
|
-
}
|
|
65838
|
-
if (requiredKeys.
|
|
65839
|
-
json2.required =
|
|
65876
|
+
}
|
|
65877
|
+
if (requiredKeys.length > 0) {
|
|
65878
|
+
json2.required = requiredKeys;
|
|
65840
65879
|
}
|
|
65841
65880
|
if (def.catchall?._zod.def.type === "never") {
|
|
65842
65881
|
json2.additionalProperties = false;
|
|
@@ -65850,31 +65889,6 @@ var objectProcessor = (schema, ctx, _json2, params) => {
|
|
|
65850
65889
|
});
|
|
65851
65890
|
}
|
|
65852
65891
|
};
|
|
65853
|
-
var propertiesProcessor = (schema, ctx, _json2, params) => {
|
|
65854
|
-
const json2 = _json2;
|
|
65855
|
-
const def = schema._zod.def;
|
|
65856
|
-
if (Object.getOwnPropertySymbols(def.shape).length && handleUnrepresentable(schema, ctx, json2, params, "Symbol keys cannot be represented in JSON Schema")) {
|
|
65857
|
-
return;
|
|
65858
|
-
}
|
|
65859
|
-
if (ctx.io === "output") {
|
|
65860
|
-
for (const key in def.shape) {
|
|
65861
|
-
if (isTransforming(def.shape[key]) && handleUnrepresentable(schema, ctx, json2, params, `z.properties() returns its input, so the output of a transforming schema at key "${key}" cannot be represented in JSON Schema`)) {
|
|
65862
|
-
return;
|
|
65863
|
-
}
|
|
65864
|
-
}
|
|
65865
|
-
}
|
|
65866
|
-
json2.type = "object";
|
|
65867
|
-
json2.properties = {};
|
|
65868
|
-
for (const key in def.shape) {
|
|
65869
|
-
assignProp(json2.properties, key, processSchema(def.shape[key], ctx, {
|
|
65870
|
-
...params,
|
|
65871
|
-
path: [...params.path, "properties", key]
|
|
65872
|
-
}));
|
|
65873
|
-
}
|
|
65874
|
-
const required2 = Object.keys(def.shape).filter((key) => inputOptin(def.shape[key]) === void 0);
|
|
65875
|
-
if (required2.length > 0)
|
|
65876
|
-
json2.required = required2;
|
|
65877
|
-
};
|
|
65878
65892
|
var unionProcessor = (schema, ctx, json2, params) => {
|
|
65879
65893
|
const def = schema._zod.def;
|
|
65880
65894
|
const isExclusive = def.inclusive === false;
|
|
@@ -66194,7 +66208,6 @@ var allProcessors = {
|
|
|
66194
66208
|
file: fileProcessor,
|
|
66195
66209
|
success: successProcessor,
|
|
66196
66210
|
custom: customProcessor,
|
|
66197
|
-
properties: propertiesProcessor,
|
|
66198
66211
|
function: functionProcessor,
|
|
66199
66212
|
transform: transformProcessor,
|
|
66200
66213
|
map: mapProcessor,
|
|
@@ -66391,7 +66404,6 @@ __export(schemas_exports2, {
|
|
|
66391
66404
|
ZodPrefault: () => ZodPrefault,
|
|
66392
66405
|
ZodPreprocess: () => ZodPreprocess,
|
|
66393
66406
|
ZodPromise: () => ZodPromise,
|
|
66394
|
-
ZodProperties: () => ZodProperties,
|
|
66395
66407
|
ZodReadonly: () => ZodReadonly,
|
|
66396
66408
|
ZodRecord: () => ZodRecord,
|
|
66397
66409
|
ZodSet: () => ZodSet,
|
|
@@ -66429,6 +66441,7 @@ __export(schemas_exports2, {
|
|
|
66429
66441
|
creditCard: () => creditCard2,
|
|
66430
66442
|
cuid: () => cuid3,
|
|
66431
66443
|
cuid2: () => cuid22,
|
|
66444
|
+
currencyCode: () => currencyCode2,
|
|
66432
66445
|
custom: () => custom,
|
|
66433
66446
|
date: () => date2,
|
|
66434
66447
|
describe: () => describe2,
|
|
@@ -66483,7 +66496,6 @@ __export(schemas_exports2, {
|
|
|
66483
66496
|
prefault: () => prefault,
|
|
66484
66497
|
preprocess: () => preprocess,
|
|
66485
66498
|
promise: () => promise,
|
|
66486
|
-
properties: () => properties,
|
|
66487
66499
|
readonly: () => readonly,
|
|
66488
66500
|
record: () => record,
|
|
66489
66501
|
refine: () => refine,
|
|
@@ -66537,6 +66549,7 @@ __export(checks_exports2, {
|
|
|
66537
66549
|
normalize: () => _normalize,
|
|
66538
66550
|
overwrite: () => _overwrite,
|
|
66539
66551
|
positive: () => _positive,
|
|
66552
|
+
properties: () => _properties,
|
|
66540
66553
|
property: () => _property,
|
|
66541
66554
|
regex: () => _regex,
|
|
66542
66555
|
size: () => _size,
|
|
@@ -66996,8 +67009,8 @@ function url(params) {
|
|
|
66996
67009
|
}
|
|
66997
67010
|
function httpUrl(params) {
|
|
66998
67011
|
return _url(ZodURL, {
|
|
66999
|
-
protocol:
|
|
67000
|
-
hostname:
|
|
67012
|
+
protocol: httpProtocol,
|
|
67013
|
+
hostname: domain,
|
|
67001
67014
|
...util_exports.normalizeParams(params)
|
|
67002
67015
|
});
|
|
67003
67016
|
}
|
|
@@ -67135,10 +67148,13 @@ function stringFormat(format2, fnOrRegex, _params = {}) {
|
|
|
67135
67148
|
return _stringFormat(ZodCustomStringFormat, format2, fnOrRegex, _params);
|
|
67136
67149
|
}
|
|
67137
67150
|
function hostname2(_params) {
|
|
67138
|
-
return _stringFormat(ZodCustomStringFormat, "hostname",
|
|
67151
|
+
return _stringFormat(ZodCustomStringFormat, "hostname", hostname, _params);
|
|
67139
67152
|
}
|
|
67140
67153
|
function hex2(_params) {
|
|
67141
|
-
return _stringFormat(ZodCustomStringFormat, "hex",
|
|
67154
|
+
return _stringFormat(ZodCustomStringFormat, "hex", hex, _params);
|
|
67155
|
+
}
|
|
67156
|
+
function currencyCode2(_params) {
|
|
67157
|
+
return _stringFormat(ZodCustomStringFormat, "currency_code", currencyCode, _params);
|
|
67142
67158
|
}
|
|
67143
67159
|
function hash(alg, params) {
|
|
67144
67160
|
const enc = params?.enc ?? "hex";
|
|
@@ -68003,14 +68019,6 @@ var ZodCustom = /* @__PURE__ */ $constructor("ZodCustom", (inst, def) => {
|
|
|
68003
68019
|
ZodType.init(inst, def);
|
|
68004
68020
|
inst._zod.processJSONSchema = (ctx, json2, params) => customProcessor(inst, ctx, json2, params);
|
|
68005
68021
|
});
|
|
68006
|
-
var ZodProperties = /* @__PURE__ */ $constructor("ZodProperties", (inst, def) => {
|
|
68007
|
-
_ensureDefaultMemoizer();
|
|
68008
|
-
$ZodProperties.init(inst, def);
|
|
68009
|
-
ZodType.init(inst, def);
|
|
68010
|
-
});
|
|
68011
|
-
function properties(shape, params) {
|
|
68012
|
-
return _properties(ZodProperties, shape, params);
|
|
68013
|
-
}
|
|
68014
68022
|
function check(fn) {
|
|
68015
68023
|
const ch = new $ZodCheck({
|
|
68016
68024
|
check: "custom"
|
|
@@ -68034,7 +68042,7 @@ var ZodInstanceOf = /* @__PURE__ */ $constructor("ZodInstanceOf", (inst, def) =>
|
|
|
68034
68042
|
ZodCustom.init(inst, def);
|
|
68035
68043
|
}, {
|
|
68036
68044
|
properties(shape, params) {
|
|
68037
|
-
return this.check(
|
|
68045
|
+
return this.check(_properties(shape, params));
|
|
68038
68046
|
}
|
|
68039
68047
|
});
|
|
68040
68048
|
function _instanceof(cls, params = {}) {
|
|
@@ -68621,10 +68629,10 @@ function convertBaseSchema(schema, ctx) {
|
|
|
68621
68629
|
}
|
|
68622
68630
|
case "object": {
|
|
68623
68631
|
const shape = {};
|
|
68624
|
-
const
|
|
68632
|
+
const properties = schema.properties || {};
|
|
68625
68633
|
const requiredSet = new Set(schema.required || []);
|
|
68626
68634
|
const additionalSchema = typeof schema.additionalProperties === "object" ? convertSchema(schema.additionalProperties, ctx) : void 0;
|
|
68627
|
-
for (const [key, propSchema] of Object.entries(
|
|
68635
|
+
for (const [key, propSchema] of Object.entries(properties)) {
|
|
68628
68636
|
const propZodSchema = convertSchema(propSchema, ctx);
|
|
68629
68637
|
assignProp(shape, key, requiredSet.has(key) ? propZodSchema : propZodSchema.optional());
|
|
68630
68638
|
}
|
|
@@ -68985,18 +68993,6 @@ function visit(schema, fnOrHandlers) {
|
|
|
68985
68993
|
const { _cachedInner, ...rest } = def;
|
|
68986
68994
|
return clone(s2, { ...rest, getter: () => run(original()) });
|
|
68987
68995
|
}
|
|
68988
|
-
case "properties": {
|
|
68989
|
-
const oldShape = def.shape;
|
|
68990
|
-
let changed = false;
|
|
68991
|
-
const newShape = {};
|
|
68992
|
-
for (const k5 of Reflect.ownKeys(oldShape)) {
|
|
68993
|
-
const mapped = run(oldShape[k5]);
|
|
68994
|
-
if (mapped !== oldShape[k5])
|
|
68995
|
-
changed = true;
|
|
68996
|
-
newShape[k5] = mapped;
|
|
68997
|
-
}
|
|
68998
|
-
return changed ? clone(s2, { ...def, shape: newShape }) : s2;
|
|
68999
|
-
}
|
|
69000
68996
|
// A leaf by choice: `parts` are regex fragments, not data positions.
|
|
69001
68997
|
case "template_literal":
|
|
69002
68998
|
// Leaves.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@continuous-excellence/ze-great-dashboard-aws",
|
|
3
|
-
"version": "0.30.
|
|
3
|
+
"version": "0.30.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AWS server runtime and CloudFormation deployment tooling for Ze Great Dashboard.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"fflate": "^0.8.3",
|
|
38
|
-
"yaml": "^2.9.
|
|
39
|
-
"zod": "^4.6.
|
|
38
|
+
"yaml": "^2.9.1",
|
|
39
|
+
"zod": "^4.6.4"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"esbuild": "^0.28.2",
|