twenty-sdk 2.9.1 → 2.10.1
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/billing/index.cjs.map +1 -1
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{catalog-sync-BCebNxby.js → catalog-sync-BjFX6eQu.js} +1 -1
- package/dist/{catalog-sync-Zp1B_jdA.mjs → catalog-sync-hdRK4nlg.mjs} +1 -1
- package/dist/cli/commands/dev/dev-once.d.ts +1 -0
- package/dist/cli/operations/dev-once.d.ts +1 -0
- package/dist/cli/utilities/api/api-response-type.d.ts +5 -5
- package/dist/cli/utilities/api/api-service.d.ts +8 -2
- package/dist/cli/utilities/api/application-api.d.ts +7 -1
- package/dist/cli/utilities/api/file-api.d.ts +2 -1
- package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +2 -0
- package/dist/cli/utilities/dev/orchestrator/steps/format-sync-actions-summary.d.ts +3 -0
- package/dist/cli/utilities/dev/ui/components/dev-ui-application-panel.d.ts +2 -1
- package/dist/cli/utilities/dev/ui/components/dev-ui-entity-section.d.ts +3 -0
- package/dist/cli/utilities/dev/ui/components/dev-ui.d.ts +1 -1
- package/dist/cli/utilities/dev/ui/dev-ui-constants.d.ts +6 -0
- package/dist/cli/utilities/entity/entity-view-field-template.d.ts +3 -0
- package/dist/cli/utilities/error/format-manifest-validation-errors.d.ts +2 -1
- package/dist/cli/utilities/error/get-sync-error-recovery-hint.d.ts +1 -0
- package/dist/cli.cjs +117 -100
- package/dist/cli.mjs +2383 -2286
- package/dist/define/index.cjs +7 -7
- package/dist/define/index.cjs.map +1 -1
- package/dist/define/index.d.ts +181 -47
- package/dist/define/index.mjs +367 -247
- package/dist/define/index.mjs.map +1 -1
- package/dist/front-component/index.cjs.map +1 -1
- package/dist/front-component/index.mjs.map +1 -1
- package/dist/{get-function-input-schema-DTlcRJz3-Dv2yR3dh.mjs → get-function-input-schema-DTlcRJz3-CYRpYtm8.mjs} +1 -1
- package/dist/{get-function-input-schema-DTlcRJz3-dBL33k9U.js → get-function-input-schema-DTlcRJz3-Cpo6yw4B.js} +1 -1
- package/dist/logic-function/index.cjs +37 -1
- package/dist/logic-function/index.cjs.map +1 -1
- package/dist/logic-function/index.d.ts +33 -2
- package/dist/logic-function/index.mjs +97 -28
- package/dist/logic-function/index.mjs.map +1 -1
- package/dist/{login-oauth-CR6NzLmb.js → login-oauth-CU95X9A-.js} +55 -52
- package/dist/{login-oauth-rznAUORX.mjs → login-oauth-wSHikxei.mjs} +3608 -3414
- package/dist/operations.cjs +1 -1
- package/dist/operations.mjs +2 -2
- package/dist/ui/index.cjs +28 -28
- package/dist/ui/index.d.ts +12 -12
- package/dist/ui/index.mjs +7582 -7474
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +5 -8
package/dist/define/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { v4 as xg, v5 as Eg } from "uuid";
|
|
2
|
-
import { isNonEmptyString as Cn, isUndefined as Mg, isNull as Og, isNumber as Xg, isNonEmptyArray as La, isString as
|
|
3
|
-
const
|
|
2
|
+
import { isNonEmptyString as Cn, isUndefined as Mg, isNull as Og, isNumber as Xg, isNonEmptyArray as La, isString as Fg, isObject as Hg } from "@sniptt/guards";
|
|
3
|
+
const ee = ({
|
|
4
4
|
config: e,
|
|
5
5
|
errors: n = [],
|
|
6
6
|
warnings: a = []
|
|
@@ -10,13 +10,15 @@ const ne = ({
|
|
|
10
10
|
errors: n,
|
|
11
11
|
warnings: a
|
|
12
12
|
}), zb = (e) => {
|
|
13
|
-
const n = [];
|
|
14
|
-
return e.universalIdentifier || n.push("Agent must have a universalIdentifier"), e.name || n.push("Agent must have a name"), e.label || n.push("Agent must have a label"), e.prompt || n.push("Agent must have a prompt"),
|
|
13
|
+
const n = [], a = [];
|
|
14
|
+
return e.universalIdentifier || n.push("Agent must have a universalIdentifier"), e.name || n.push("Agent must have a name"), e.label || n.push("Agent must have a label"), e.prompt || n.push("Agent must have a prompt"), e.responseFormat || a.push(
|
|
15
|
+
`Agent '${e.name}' has no responseFormat, it will default to { type: 'text' }. Set it explicitly to control the agent's output shape.`
|
|
16
|
+
), ee({ config: e, errors: n, warnings: a });
|
|
15
17
|
}, Gb = (e) => {
|
|
16
18
|
const n = [], a = [];
|
|
17
19
|
return e.universalIdentifier || n.push("Application must have a universalIdentifier"), (!e.displayName || e.displayName.length === 0) && n.push("Application must have a non empty display name"), e.defaultRoleUniversalIdentifier && a.push(
|
|
18
20
|
"`defaultRoleUniversalIdentifier` on defineApplication() is deprecated. Use defineApplicationRole() in your role file instead."
|
|
19
|
-
),
|
|
21
|
+
), ee({
|
|
20
22
|
config: e,
|
|
21
23
|
errors: n,
|
|
22
24
|
warnings: a
|
|
@@ -727,16 +729,16 @@ const Nn = (e) => (n, a, t, i) => {
|
|
|
727
729
|
function Du() {
|
|
728
730
|
return new RegExp(_h, "u");
|
|
729
731
|
}
|
|
730
|
-
const Nu = /^(?:(?: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])$/, Pu = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$/, Ju = /^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/, Au = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, xu = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,
|
|
731
|
-
function
|
|
732
|
+
const Nu = /^(?:(?: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])$/, Pu = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$/, Ju = /^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/, Au = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, xu = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/, Fa = /^[A-Za-z0-9_-]*$/, Ha = /^(?=.{1,253}\.?$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[-0-9a-zA-Z]{0,61}[0-9a-zA-Z])?)*\.?$/, Eu = /^([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}$/, Mu = /^\+(?:[0-9]){6,14}[0-9]$/, Ou = "(?:(?:\\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])))", Xu = /* @__PURE__ */ new RegExp(`^${Ou}$`);
|
|
733
|
+
function Fu(e) {
|
|
732
734
|
const n = "(?:[01]\\d|2[0-3]):[0-5]\\d";
|
|
733
735
|
return typeof e.precision == "number" ? e.precision === -1 ? `${n}` : e.precision === 0 ? `${n}:[0-5]\\d` : `${n}:[0-5]\\d\\.\\d{${e.precision}}` : `${n}(?::[0-5]\\d(?:\\.\\d+)?)?`;
|
|
734
736
|
}
|
|
735
|
-
function
|
|
736
|
-
return new RegExp(`^${
|
|
737
|
+
function Hu(e) {
|
|
738
|
+
return new RegExp(`^${Fu(e)}$`);
|
|
737
739
|
}
|
|
738
740
|
function Ru(e) {
|
|
739
|
-
const n =
|
|
741
|
+
const n = Fu({ precision: e.precision }), a = ["Z"];
|
|
740
742
|
e.local && a.push(""), e.offset && a.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");
|
|
741
743
|
const t = `${n}(?:${a.join("|")})`;
|
|
742
744
|
return new RegExp(`^${Ou}T(?:${t})$`);
|
|
@@ -754,7 +756,7 @@ function En(e) {
|
|
|
754
756
|
const Ch = /^[0-9a-fA-F]{32}$/, Lh = /* @__PURE__ */ xn(22, "=="), Yh = /* @__PURE__ */ En(22), Th = /^[0-9a-fA-F]{40}$/, Zh = /* @__PURE__ */ xn(27, "="), Dh = /* @__PURE__ */ En(27), Nh = /^[0-9a-fA-F]{64}$/, Ph = /* @__PURE__ */ xn(43, "="), Jh = /* @__PURE__ */ En(43), Ah = /^[0-9a-fA-F]{96}$/, xh = /* @__PURE__ */ xn(64, ""), Eh = /* @__PURE__ */ En(64), Mh = /^[0-9a-fA-F]{128}$/, Oh = /* @__PURE__ */ xn(86, "=="), Xh = /* @__PURE__ */ En(86), Ra = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
755
757
|
__proto__: null,
|
|
756
758
|
base64: xu,
|
|
757
|
-
base64url:
|
|
759
|
+
base64url: Fa,
|
|
758
760
|
bigint: zu,
|
|
759
761
|
boolean: Uu,
|
|
760
762
|
browserEmail: Ih,
|
|
@@ -772,7 +774,7 @@ const Ch = /^[0-9a-fA-F]{32}$/, Lh = /* @__PURE__ */ xn(22, "=="), Yh = /* @__PU
|
|
|
772
774
|
extendedDuration: mh,
|
|
773
775
|
guid: Yu,
|
|
774
776
|
hex: es,
|
|
775
|
-
hostname:
|
|
777
|
+
hostname: Ha,
|
|
776
778
|
html5Email: jh,
|
|
777
779
|
idnEmail: kh,
|
|
778
780
|
integer: Gu,
|
|
@@ -800,7 +802,7 @@ const Ch = /^[0-9a-fA-F]{32}$/, Lh = /* @__PURE__ */ xn(22, "=="), Yh = /* @__PU
|
|
|
800
802
|
sha512_base64url: Xh,
|
|
801
803
|
sha512_hex: Mh,
|
|
802
804
|
string: Bu,
|
|
803
|
-
time:
|
|
805
|
+
time: Hu,
|
|
804
806
|
ulid: ku,
|
|
805
807
|
undefined: Ku,
|
|
806
808
|
unicodeEmail: Zu,
|
|
@@ -1344,7 +1346,7 @@ const $s = {
|
|
|
1344
1346
|
code: "invalid_format",
|
|
1345
1347
|
format: "url",
|
|
1346
1348
|
note: "Invalid hostname",
|
|
1347
|
-
pattern:
|
|
1349
|
+
pattern: Ha.source,
|
|
1348
1350
|
input: a.value,
|
|
1349
1351
|
inst: e,
|
|
1350
1352
|
continue: !n.abort
|
|
@@ -1387,7 +1389,7 @@ const $s = {
|
|
|
1387
1389
|
}), Ps = /* @__PURE__ */ j("$ZodISODate", (e, n) => {
|
|
1388
1390
|
n.pattern ?? (n.pattern = Xu), B.init(e, n);
|
|
1389
1391
|
}), Js = /* @__PURE__ */ j("$ZodISOTime", (e, n) => {
|
|
1390
|
-
n.pattern ?? (n.pattern =
|
|
1392
|
+
n.pattern ?? (n.pattern = Hu(n)), B.init(e, n);
|
|
1391
1393
|
}), As = /* @__PURE__ */ j("$ZodISODuration", (e, n) => {
|
|
1392
1394
|
n.pattern ?? (n.pattern = Lu), B.init(e, n);
|
|
1393
1395
|
}), xs = /* @__PURE__ */ j("$ZodIPv4", (e, n) => {
|
|
@@ -1464,17 +1466,17 @@ const Xs = /* @__PURE__ */ j("$ZodBase64", (e, n) => {
|
|
|
1464
1466
|
});
|
|
1465
1467
|
};
|
|
1466
1468
|
});
|
|
1467
|
-
function
|
|
1468
|
-
if (!
|
|
1469
|
+
function Fs(e) {
|
|
1470
|
+
if (!Fa.test(e))
|
|
1469
1471
|
return !1;
|
|
1470
1472
|
const n = e.replace(/[-_]/g, (t) => t === "-" ? "+" : "/"), a = n.padEnd(Math.ceil(n.length / 4) * 4, "=");
|
|
1471
1473
|
return Ga(a);
|
|
1472
1474
|
}
|
|
1473
|
-
const
|
|
1474
|
-
n.pattern ?? (n.pattern =
|
|
1475
|
+
const Hs = /* @__PURE__ */ j("$ZodBase64URL", (e, n) => {
|
|
1476
|
+
n.pattern ?? (n.pattern = Fa), B.init(e, n), e._zod.onattach.push((a) => {
|
|
1475
1477
|
a._zod.bag.contentEncoding = "base64url";
|
|
1476
1478
|
}), e._zod.check = (a) => {
|
|
1477
|
-
|
|
1479
|
+
Fs(a.value) || a.issues.push({
|
|
1478
1480
|
code: "invalid_format",
|
|
1479
1481
|
format: "base64url",
|
|
1480
1482
|
input: a.value,
|
|
@@ -2382,7 +2384,7 @@ function Or(e, n, a, t) {
|
|
|
2382
2384
|
t._zod.def.params && (i.params = t._zod.def.params), n.issues.push(rn(i));
|
|
2383
2385
|
}
|
|
2384
2386
|
}
|
|
2385
|
-
const
|
|
2387
|
+
const Fh = () => {
|
|
2386
2388
|
const e = {
|
|
2387
2389
|
string: { unit: "حرف", verb: "أن يحوي" },
|
|
2388
2390
|
file: { unit: "بايت", verb: "أن يحوي" },
|
|
@@ -2470,9 +2472,9 @@ const Hh = () => {
|
|
|
2470
2472
|
}
|
|
2471
2473
|
};
|
|
2472
2474
|
};
|
|
2473
|
-
function
|
|
2475
|
+
function Hh() {
|
|
2474
2476
|
return {
|
|
2475
|
-
localeError:
|
|
2477
|
+
localeError: Fh()
|
|
2476
2478
|
};
|
|
2477
2479
|
}
|
|
2478
2480
|
const Rh = () => {
|
|
@@ -4645,7 +4647,7 @@ const x0 = (e) => In(typeof e, e), In = (e, n = void 0) => {
|
|
|
4645
4647
|
}
|
|
4646
4648
|
return e;
|
|
4647
4649
|
}, wn = (e) => e.charAt(0).toUpperCase() + e.slice(1);
|
|
4648
|
-
function
|
|
4650
|
+
function Fr(e) {
|
|
4649
4651
|
const n = Math.abs(e), a = n % 10, t = n % 100;
|
|
4650
4652
|
return t >= 11 && t <= 19 || a === 0 ? "many" : a === 1 ? "one" : "few";
|
|
4651
4653
|
}
|
|
@@ -4764,14 +4766,14 @@ const E0 = () => {
|
|
|
4764
4766
|
case "invalid_value":
|
|
4765
4767
|
return t.values.length === 1 ? `Privalo būti ${A(t.values[0])}` : `Privalo būti vienas iš ${C(t.values, "|")} pasirinkimų`;
|
|
4766
4768
|
case "too_big": {
|
|
4767
|
-
const i = In(t.origin), r = n(t.origin,
|
|
4769
|
+
const i = In(t.origin), r = n(t.origin, Fr(Number(t.maximum)), t.inclusive ?? !1, "smaller");
|
|
4768
4770
|
if (r?.verb)
|
|
4769
4771
|
return `${wn(i ?? t.origin ?? "reikšmė")} ${r.verb} ${t.maximum.toString()} ${r.unit ?? "elementų"}`;
|
|
4770
4772
|
const o = t.inclusive ? "ne didesnis kaip" : "mažesnis kaip";
|
|
4771
4773
|
return `${wn(i ?? t.origin ?? "reikšmė")} turi būti ${o} ${t.maximum.toString()} ${r?.unit}`;
|
|
4772
4774
|
}
|
|
4773
4775
|
case "too_small": {
|
|
4774
|
-
const i = In(t.origin), r = n(t.origin,
|
|
4776
|
+
const i = In(t.origin), r = n(t.origin, Fr(Number(t.minimum)), t.inclusive ?? !1, "bigger");
|
|
4775
4777
|
if (r?.verb)
|
|
4776
4778
|
return `${wn(i ?? t.origin ?? "reikšmė")} ${r.verb} ${t.minimum.toString()} ${r.unit ?? "elementų"}`;
|
|
4777
4779
|
const o = t.inclusive ? "ne mažesnis kaip" : "didesnis kaip";
|
|
@@ -4897,7 +4899,7 @@ function X0() {
|
|
|
4897
4899
|
localeError: O0()
|
|
4898
4900
|
};
|
|
4899
4901
|
}
|
|
4900
|
-
const
|
|
4902
|
+
const F0 = () => {
|
|
4901
4903
|
const e = {
|
|
4902
4904
|
string: { unit: "aksara", verb: "mempunyai" },
|
|
4903
4905
|
file: { unit: "bait", verb: "mempunyai" },
|
|
@@ -4985,9 +4987,9 @@ const H0 = () => {
|
|
|
4985
4987
|
}
|
|
4986
4988
|
};
|
|
4987
4989
|
};
|
|
4988
|
-
function
|
|
4990
|
+
function H0() {
|
|
4989
4991
|
return {
|
|
4990
|
-
localeError:
|
|
4992
|
+
localeError: F0()
|
|
4991
4993
|
};
|
|
4992
4994
|
}
|
|
4993
4995
|
const R0 = () => {
|
|
@@ -5549,7 +5551,7 @@ function n2() {
|
|
|
5549
5551
|
localeError: e2()
|
|
5550
5552
|
};
|
|
5551
5553
|
}
|
|
5552
|
-
function
|
|
5554
|
+
function Hr(e, n, a, t) {
|
|
5553
5555
|
const i = Math.abs(e), r = i % 10, o = i % 100;
|
|
5554
5556
|
return o >= 11 && o <= 19 ? t : r === 1 ? n : r >= 2 && r <= 4 ? a : t;
|
|
5555
5557
|
}
|
|
@@ -5645,7 +5647,7 @@ const i2 = () => {
|
|
|
5645
5647
|
case "too_big": {
|
|
5646
5648
|
const r = i.inclusive ? "<=" : "<", o = n(i.origin);
|
|
5647
5649
|
if (o) {
|
|
5648
|
-
const l = Number(i.maximum), g =
|
|
5650
|
+
const l = Number(i.maximum), g = Hr(l, o.unit.one, o.unit.few, o.unit.many);
|
|
5649
5651
|
return `Слишком большое значение: ожидалось, что ${i.origin ?? "значение"} будет иметь ${r}${i.maximum.toString()} ${g}`;
|
|
5650
5652
|
}
|
|
5651
5653
|
return `Слишком большое значение: ожидалось, что ${i.origin ?? "значение"} будет ${r}${i.maximum.toString()}`;
|
|
@@ -5653,7 +5655,7 @@ const i2 = () => {
|
|
|
5653
5655
|
case "too_small": {
|
|
5654
5656
|
const r = i.inclusive ? ">=" : ">", o = n(i.origin);
|
|
5655
5657
|
if (o) {
|
|
5656
|
-
const l = Number(i.minimum), g =
|
|
5658
|
+
const l = Number(i.minimum), g = Hr(l, o.unit.one, o.unit.few, o.unit.many);
|
|
5657
5659
|
return `Слишком маленькое значение: ожидалось, что ${i.origin} будет иметь ${r}${i.minimum.toString()} ${g}`;
|
|
5658
5660
|
}
|
|
5659
5661
|
return `Слишком маленькое значение: ожидалось, что ${i.origin} будет ${r}${i.minimum.toString()}`;
|
|
@@ -6711,7 +6713,7 @@ function _2() {
|
|
|
6711
6713
|
}
|
|
6712
6714
|
const Ad = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6713
6715
|
__proto__: null,
|
|
6714
|
-
ar:
|
|
6716
|
+
ar: Hh,
|
|
6715
6717
|
az: Bh,
|
|
6716
6718
|
be: Gh,
|
|
6717
6719
|
ca: Uh,
|
|
@@ -6737,7 +6739,7 @@ const Ad = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6737
6739
|
ko: A0,
|
|
6738
6740
|
lt: M0,
|
|
6739
6741
|
mk: X0,
|
|
6740
|
-
ms:
|
|
6742
|
+
ms: H0,
|
|
6741
6743
|
nl: B0,
|
|
6742
6744
|
no: G0,
|
|
6743
6745
|
ota: U0,
|
|
@@ -7017,7 +7019,7 @@ const Xd = {
|
|
|
7017
7019
|
Millisecond: 3,
|
|
7018
7020
|
Microsecond: 6
|
|
7019
7021
|
};
|
|
7020
|
-
function
|
|
7022
|
+
function Fd(e, n) {
|
|
7021
7023
|
return new e({
|
|
7022
7024
|
type: "string",
|
|
7023
7025
|
format: "datetime",
|
|
@@ -7028,7 +7030,7 @@ function Hd(e, n) {
|
|
|
7028
7030
|
..._(n)
|
|
7029
7031
|
});
|
|
7030
7032
|
}
|
|
7031
|
-
function
|
|
7033
|
+
function Hd(e, n) {
|
|
7032
7034
|
return new e({
|
|
7033
7035
|
type: "string",
|
|
7034
7036
|
format: "date",
|
|
@@ -7232,7 +7234,7 @@ function we(e, n) {
|
|
|
7232
7234
|
inclusive: !0
|
|
7233
7235
|
});
|
|
7234
7236
|
}
|
|
7235
|
-
function
|
|
7237
|
+
function Fe(e, n) {
|
|
7236
7238
|
return new za({
|
|
7237
7239
|
check: "greater_than",
|
|
7238
7240
|
..._(n),
|
|
@@ -7249,7 +7251,7 @@ function ce(e, n) {
|
|
|
7249
7251
|
});
|
|
7250
7252
|
}
|
|
7251
7253
|
function pl(e) {
|
|
7252
|
-
return
|
|
7254
|
+
return Fe(0, e);
|
|
7253
7255
|
}
|
|
7254
7256
|
function bl(e) {
|
|
7255
7257
|
return Xe(0, e);
|
|
@@ -7302,7 +7304,7 @@ function un(e, n) {
|
|
|
7302
7304
|
minimum: e
|
|
7303
7305
|
});
|
|
7304
7306
|
}
|
|
7305
|
-
function
|
|
7307
|
+
function Fi(e, n) {
|
|
7306
7308
|
return new ls({
|
|
7307
7309
|
check: "length_equals",
|
|
7308
7310
|
..._(n),
|
|
@@ -7514,13 +7516,13 @@ function X2(e, n, a) {
|
|
|
7514
7516
|
..._(a)
|
|
7515
7517
|
});
|
|
7516
7518
|
}
|
|
7517
|
-
function
|
|
7519
|
+
function F2(e, n) {
|
|
7518
7520
|
return new e({
|
|
7519
7521
|
type: "success",
|
|
7520
7522
|
innerType: n
|
|
7521
7523
|
});
|
|
7522
7524
|
}
|
|
7523
|
-
function
|
|
7525
|
+
function H2(e, n, a) {
|
|
7524
7526
|
return new e({
|
|
7525
7527
|
type: "catch",
|
|
7526
7528
|
innerType: n,
|
|
@@ -8155,7 +8157,7 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8155
8157
|
$ZodArray: td,
|
|
8156
8158
|
$ZodAsyncError: Me,
|
|
8157
8159
|
$ZodBase64: Xs,
|
|
8158
|
-
$ZodBase64URL:
|
|
8160
|
+
$ZodBase64URL: Hs,
|
|
8159
8161
|
$ZodBigInt: Wa,
|
|
8160
8162
|
$ZodBigIntFormat: Us,
|
|
8161
8163
|
$ZodBoolean: Ua,
|
|
@@ -8263,7 +8265,7 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8263
8265
|
_base64url: vt,
|
|
8264
8266
|
_bigint: nl,
|
|
8265
8267
|
_boolean: qd,
|
|
8266
|
-
_catch:
|
|
8268
|
+
_catch: H2,
|
|
8267
8269
|
_check: Il,
|
|
8268
8270
|
_cidrv4: bt,
|
|
8269
8271
|
_cidrv6: yt,
|
|
@@ -8290,7 +8292,7 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8290
8292
|
_file: $l,
|
|
8291
8293
|
_float32: Ud,
|
|
8292
8294
|
_float64: Wd,
|
|
8293
|
-
_gt:
|
|
8295
|
+
_gt: Fe,
|
|
8294
8296
|
_gte: ce,
|
|
8295
8297
|
_guid: Ci,
|
|
8296
8298
|
_includes: _t,
|
|
@@ -8300,14 +8302,14 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8300
8302
|
_intersection: Y2,
|
|
8301
8303
|
_ipv4: ft,
|
|
8302
8304
|
_ipv6: pt,
|
|
8303
|
-
_isoDate:
|
|
8304
|
-
_isoDateTime:
|
|
8305
|
+
_isoDate: Hd,
|
|
8306
|
+
_isoDateTime: Fd,
|
|
8305
8307
|
_isoDuration: Bd,
|
|
8306
8308
|
_isoTime: Rd,
|
|
8307
8309
|
_jwt: $t,
|
|
8308
8310
|
_ksuid: ht,
|
|
8309
8311
|
_lazy: G2,
|
|
8310
|
-
_length:
|
|
8312
|
+
_length: Fi,
|
|
8311
8313
|
_literal: A2,
|
|
8312
8314
|
_lowercase: kt,
|
|
8313
8315
|
_lt: Xe,
|
|
@@ -8357,7 +8359,7 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8357
8359
|
_string: Md,
|
|
8358
8360
|
_stringFormat: Xn,
|
|
8359
8361
|
_stringbool: _l,
|
|
8360
|
-
_success:
|
|
8362
|
+
_success: F2,
|
|
8361
8363
|
_superRefine: kl,
|
|
8362
8364
|
_symbol: rl,
|
|
8363
8365
|
_templateLiteral: z2,
|
|
@@ -8391,7 +8393,7 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8391
8393
|
globalConfig: Si,
|
|
8392
8394
|
globalRegistry: Ee,
|
|
8393
8395
|
isValidBase64: Ga,
|
|
8394
|
-
isValidBase64URL:
|
|
8396
|
+
isValidBase64URL: Fs,
|
|
8395
8397
|
isValidJWT: Bs,
|
|
8396
8398
|
locales: Ad,
|
|
8397
8399
|
parse: ya,
|
|
@@ -8414,13 +8416,13 @@ const U2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8414
8416
|
Ns.init(e, n), G.init(e, n);
|
|
8415
8417
|
});
|
|
8416
8418
|
function Ll(e) {
|
|
8417
|
-
return
|
|
8419
|
+
return Fd(Pt, e);
|
|
8418
8420
|
}
|
|
8419
8421
|
const Jt = /* @__PURE__ */ j("ZodISODate", (e, n) => {
|
|
8420
8422
|
Ps.init(e, n), G.init(e, n);
|
|
8421
8423
|
});
|
|
8422
8424
|
function Yl(e) {
|
|
8423
|
-
return
|
|
8425
|
+
return Hd(Jt, e);
|
|
8424
8426
|
}
|
|
8425
8427
|
const At = /* @__PURE__ */ j("ZodISOTime", (e, n) => {
|
|
8426
8428
|
Js.init(e, n), G.init(e, n);
|
|
@@ -8475,12 +8477,12 @@ const K2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8475
8477
|
});
|
|
8476
8478
|
}, V2 = j("ZodError", Dl), he = j("ZodError", Dl, {
|
|
8477
8479
|
Parent: Error
|
|
8478
|
-
}), Nl = /* @__PURE__ */ Nn(he), Pl = /* @__PURE__ */ Pn(he), Jl = /* @__PURE__ */ Jn(he), Al = /* @__PURE__ */ An(he), xl = /* @__PURE__ */ Pa(he), El = /* @__PURE__ */ Ja(he), Ml = /* @__PURE__ */ Aa(he), Ol = /* @__PURE__ */ xa(he), Xl = /* @__PURE__ */ Ea(he),
|
|
8480
|
+
}), Nl = /* @__PURE__ */ Nn(he), Pl = /* @__PURE__ */ Pn(he), Jl = /* @__PURE__ */ Jn(he), Al = /* @__PURE__ */ An(he), xl = /* @__PURE__ */ Pa(he), El = /* @__PURE__ */ Ja(he), Ml = /* @__PURE__ */ Aa(he), Ol = /* @__PURE__ */ xa(he), Xl = /* @__PURE__ */ Ea(he), Fl = /* @__PURE__ */ Ma(he), Hl = /* @__PURE__ */ Oa(he), Rl = /* @__PURE__ */ Xa(he), E = /* @__PURE__ */ j("ZodType", (e, n) => (x.init(e, n), e.def = n, e.type = n.type, Object.defineProperty(e, "_def", { value: n }), e.check = (...a) => e.clone(Ze(n, {
|
|
8479
8481
|
checks: [
|
|
8480
8482
|
...n.checks ?? [],
|
|
8481
8483
|
...a.map((t) => typeof t == "function" ? { _zod: { check: t, def: { check: "custom" }, onattach: [] } } : t)
|
|
8482
8484
|
]
|
|
8483
|
-
})), e.clone = (a, t) => be(e, a, t), e.brand = () => e, e.register = ((a, t) => (a.add(e, t), e)), e.parse = (a, t) => Nl(e, a, t, { callee: e.parse }), e.safeParse = (a, t) => Jl(e, a, t), e.parseAsync = async (a, t) => Pl(e, a, t, { callee: e.parseAsync }), e.safeParseAsync = async (a, t) => Al(e, a, t), e.spa = e.safeParseAsync, e.encode = (a, t) => xl(e, a, t), e.decode = (a, t) => El(e, a, t), e.encodeAsync = async (a, t) => Ml(e, a, t), e.decodeAsync = async (a, t) => Ol(e, a, t), e.safeEncode = (a, t) => Xl(e, a, t), e.safeDecode = (a, t) =>
|
|
8485
|
+
})), e.clone = (a, t) => be(e, a, t), e.brand = () => e, e.register = ((a, t) => (a.add(e, t), e)), e.parse = (a, t) => Nl(e, a, t, { callee: e.parse }), e.safeParse = (a, t) => Jl(e, a, t), e.parseAsync = async (a, t) => Pl(e, a, t, { callee: e.parseAsync }), e.safeParseAsync = async (a, t) => Al(e, a, t), e.spa = e.safeParseAsync, e.encode = (a, t) => xl(e, a, t), e.decode = (a, t) => El(e, a, t), e.encodeAsync = async (a, t) => Ml(e, a, t), e.decodeAsync = async (a, t) => Ol(e, a, t), e.safeEncode = (a, t) => Xl(e, a, t), e.safeDecode = (a, t) => Fl(e, a, t), e.safeEncodeAsync = async (a, t) => Hl(e, a, t), e.safeDecodeAsync = async (a, t) => Rl(e, a, t), e.refine = (a, t) => e.check(Yc(a, t)), e.superRefine = (a) => e.check(Tc(a)), e.overwrite = (a) => e.check(Be(a)), e.optional = () => Ti(e), e.nullable = () => Zi(e), e.nullish = () => Ti(Zi(e)), e.nonoptional = (a) => yc(e, a), e.array = () => hn(e), e.or = (a) => or([e, a]), e.and = (a) => ac(e, a), e.transform = (a) => Di(e, dr(a)), e.default = (a) => fc(e, a), e.prefault = (a) => bc(e, a), e.catch = (a) => wc(e, a), e.pipe = (a) => Di(e, a), e.readonly = () => Sc(e), e.describe = (a) => {
|
|
8484
8486
|
const t = e.clone();
|
|
8485
8487
|
return Ee.add(t, { description: a }), t;
|
|
8486
8488
|
}, Object.defineProperty(e, "description", {
|
|
@@ -8496,12 +8498,12 @@ const K2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
8496
8498
|
}, e.isOptional = () => e.safeParse(void 0).success, e.isNullable = () => e.safeParse(null).success, e)), Et = /* @__PURE__ */ j("_ZodString", (e, n) => {
|
|
8497
8499
|
On.init(e, n), E.init(e, n);
|
|
8498
8500
|
const a = e._zod.bag;
|
|
8499
|
-
e.format = a.format ?? null, e.minLength = a.minimum ?? null, e.maxLength = a.maximum ?? null, e.regex = (...t) => e.check(St(...t)), e.includes = (...t) => e.check(_t(...t)), e.startsWith = (...t) => e.check(Ct(...t)), e.endsWith = (...t) => e.check(Lt(...t)), e.min = (...t) => e.check(un(...t)), e.max = (...t) => e.check(Xi(...t)), e.length = (...t) => e.check(
|
|
8500
|
-
}),
|
|
8501
|
-
On.init(e, n), Et.init(e, n), e.email = (a) => e.check(it(Mt, a)), e.url = (a) => e.check(Mi(Ri, a)), e.jwt = (a) => e.check($t(er, a)), e.emoji = (a) => e.check(ut(Ot, a)), e.guid = (a) => e.check(Ci(Li, a)), e.uuid = (a) => e.check(at(Le, a)), e.uuidv4 = (a) => e.check(tt(Le, a)), e.uuidv6 = (a) => e.check(rt(Le, a)), e.uuidv7 = (a) => e.check(ot(Le, a)), e.nanoid = (a) => e.check(st(Xt, a)), e.guid = (a) => e.check(Ci(Li, a)), e.cuid = (a) => e.check(dt(
|
|
8501
|
+
e.format = a.format ?? null, e.minLength = a.minimum ?? null, e.maxLength = a.maximum ?? null, e.regex = (...t) => e.check(St(...t)), e.includes = (...t) => e.check(_t(...t)), e.startsWith = (...t) => e.check(Ct(...t)), e.endsWith = (...t) => e.check(Lt(...t)), e.min = (...t) => e.check(un(...t)), e.max = (...t) => e.check(Xi(...t)), e.length = (...t) => e.check(Fi(...t)), e.nonempty = (...t) => e.check(un(1, ...t)), e.lowercase = (t) => e.check(kt(t)), e.uppercase = (t) => e.check(It(t)), e.trim = () => e.check(Zt()), e.normalize = (...t) => e.check(Tt(...t)), e.toLowerCase = () => e.check(Dt()), e.toUpperCase = () => e.check(Nt());
|
|
8502
|
+
}), Hi = /* @__PURE__ */ j("ZodString", (e, n) => {
|
|
8503
|
+
On.init(e, n), Et.init(e, n), e.email = (a) => e.check(it(Mt, a)), e.url = (a) => e.check(Mi(Ri, a)), e.jwt = (a) => e.check($t(er, a)), e.emoji = (a) => e.check(ut(Ot, a)), e.guid = (a) => e.check(Ci(Li, a)), e.uuid = (a) => e.check(at(Le, a)), e.uuidv4 = (a) => e.check(tt(Le, a)), e.uuidv6 = (a) => e.check(rt(Le, a)), e.uuidv7 = (a) => e.check(ot(Le, a)), e.nanoid = (a) => e.check(st(Xt, a)), e.guid = (a) => e.check(Ci(Li, a)), e.cuid = (a) => e.check(dt(Ft, a)), e.cuid2 = (a) => e.check(lt(Ht, a)), e.ulid = (a) => e.check(ct(Rt, a)), e.base64 = (a) => e.check(mt(Kt, a)), e.base64url = (a) => e.check(vt(Vt, a)), e.xid = (a) => e.check(gt(Bt, a)), e.ksuid = (a) => e.check(ht(zt, a)), e.ipv4 = (a) => e.check(ft(Gt, a)), e.ipv6 = (a) => e.check(pt(Qt, a)), e.cidrv4 = (a) => e.check(bt(Ut, a)), e.cidrv6 = (a) => e.check(yt(Wt, a)), e.e164 = (a) => e.check(wt(qt, a)), e.datetime = (a) => e.check(Ll(a)), e.date = (a) => e.check(Yl(a)), e.time = (a) => e.check(Tl(a)), e.duration = (a) => e.check(Zl(a));
|
|
8502
8504
|
});
|
|
8503
8505
|
function ke(e) {
|
|
8504
|
-
return Md(
|
|
8506
|
+
return Md(Hi, e);
|
|
8505
8507
|
}
|
|
8506
8508
|
const G = /* @__PURE__ */ j("ZodStringFormat", (e, n) => {
|
|
8507
8509
|
B.init(e, n), Et.init(e, n);
|
|
@@ -8557,17 +8559,17 @@ const Xt = /* @__PURE__ */ j("ZodNanoID", (e, n) => {
|
|
|
8557
8559
|
function df(e) {
|
|
8558
8560
|
return st(Xt, e);
|
|
8559
8561
|
}
|
|
8560
|
-
const
|
|
8562
|
+
const Ft = /* @__PURE__ */ j("ZodCUID", (e, n) => {
|
|
8561
8563
|
Ls.init(e, n), G.init(e, n);
|
|
8562
8564
|
});
|
|
8563
8565
|
function lf(e) {
|
|
8564
|
-
return dt(
|
|
8566
|
+
return dt(Ft, e);
|
|
8565
8567
|
}
|
|
8566
|
-
const
|
|
8568
|
+
const Ht = /* @__PURE__ */ j("ZodCUID2", (e, n) => {
|
|
8567
8569
|
Ys.init(e, n), G.init(e, n);
|
|
8568
8570
|
});
|
|
8569
8571
|
function cf(e) {
|
|
8570
|
-
return lt(
|
|
8572
|
+
return lt(Ht, e);
|
|
8571
8573
|
}
|
|
8572
8574
|
const Rt = /* @__PURE__ */ j("ZodULID", (e, n) => {
|
|
8573
8575
|
Ts.init(e, n), G.init(e, n);
|
|
@@ -8618,7 +8620,7 @@ function vf(e) {
|
|
|
8618
8620
|
return mt(Kt, e);
|
|
8619
8621
|
}
|
|
8620
8622
|
const Vt = /* @__PURE__ */ j("ZodBase64URL", (e, n) => {
|
|
8621
|
-
|
|
8623
|
+
Hs.init(e, n), G.init(e, n);
|
|
8622
8624
|
});
|
|
8623
8625
|
function wf(e) {
|
|
8624
8626
|
return vt(Vt, e);
|
|
@@ -8635,26 +8637,26 @@ const er = /* @__PURE__ */ j("ZodJWT", (e, n) => {
|
|
|
8635
8637
|
function jf(e) {
|
|
8636
8638
|
return $t(er, e);
|
|
8637
8639
|
}
|
|
8638
|
-
const
|
|
8640
|
+
const Fn = /* @__PURE__ */ j("ZodCustomStringFormat", (e, n) => {
|
|
8639
8641
|
Gs.init(e, n), G.init(e, n);
|
|
8640
8642
|
});
|
|
8641
8643
|
function Sf(e, n, a = {}) {
|
|
8642
|
-
return Xn(
|
|
8644
|
+
return Xn(Fn, e, n, a);
|
|
8643
8645
|
}
|
|
8644
8646
|
function kf(e) {
|
|
8645
|
-
return Xn(
|
|
8647
|
+
return Xn(Fn, "hostname", Ha, e);
|
|
8646
8648
|
}
|
|
8647
8649
|
function If(e) {
|
|
8648
|
-
return Xn(
|
|
8650
|
+
return Xn(Fn, "hex", es, e);
|
|
8649
8651
|
}
|
|
8650
8652
|
function _f(e, n) {
|
|
8651
8653
|
const a = n?.enc ?? "hex", t = `${e}_${a}`, i = Ra[t];
|
|
8652
8654
|
if (!i)
|
|
8653
8655
|
throw new Error(`Unrecognized hash format: ${t}`);
|
|
8654
|
-
return Xn(
|
|
8656
|
+
return Xn(Fn, t, i, n);
|
|
8655
8657
|
}
|
|
8656
8658
|
const Bi = /* @__PURE__ */ j("ZodNumber", (e, n) => {
|
|
8657
|
-
Qa.init(e, n), E.init(e, n), e.gt = (t, i) => e.check(
|
|
8659
|
+
Qa.init(e, n), E.init(e, n), e.gt = (t, i) => e.check(Fe(t, i)), e.gte = (t, i) => e.check(ce(t, i)), e.min = (t, i) => e.check(ce(t, i)), e.lt = (t, i) => e.check(Xe(t, i)), e.lte = (t, i) => e.check(we(t, i)), e.max = (t, i) => e.check(we(t, i)), e.int = (t) => e.check($a(t)), e.safe = (t) => e.check($a(t)), e.positive = (t) => e.check(Fe(0, t)), e.nonnegative = (t) => e.check(ce(0, t)), e.negative = (t) => e.check(Xe(0, t)), e.nonpositive = (t) => e.check(we(0, t)), e.multipleOf = (t, i) => e.check(Ln(t, i)), e.step = (t, i) => e.check(Ln(t, i)), e.finite = () => e;
|
|
8658
8660
|
const a = e._zod.bag;
|
|
8659
8661
|
e.minValue = Math.max(a.minimum ?? Number.NEGATIVE_INFINITY, a.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null, e.maxValue = Math.min(a.maximum ?? Number.POSITIVE_INFINITY, a.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null, e.isInt = (a.format ?? "").includes("int") || Number.isSafeInteger(a.multipleOf ?? 0.5), e.isFinite = !0, e.format = a.format ?? null;
|
|
8660
8662
|
});
|
|
@@ -8686,7 +8688,7 @@ function Yi(e) {
|
|
|
8686
8688
|
return qd(zi, e);
|
|
8687
8689
|
}
|
|
8688
8690
|
const Gi = /* @__PURE__ */ j("ZodBigInt", (e, n) => {
|
|
8689
|
-
Wa.init(e, n), E.init(e, n), e.gte = (t, i) => e.check(ce(t, i)), e.min = (t, i) => e.check(ce(t, i)), e.gt = (t, i) => e.check(
|
|
8691
|
+
Wa.init(e, n), E.init(e, n), e.gte = (t, i) => e.check(ce(t, i)), e.min = (t, i) => e.check(ce(t, i)), e.gt = (t, i) => e.check(Fe(t, i)), e.gte = (t, i) => e.check(ce(t, i)), e.min = (t, i) => e.check(ce(t, i)), e.lt = (t, i) => e.check(Xe(t, i)), e.lte = (t, i) => e.check(we(t, i)), e.max = (t, i) => e.check(we(t, i)), e.positive = (t) => e.check(Fe(BigInt(0), t)), e.negative = (t) => e.check(Xe(BigInt(0), t)), e.nonpositive = (t) => e.check(we(BigInt(0), t)), e.nonnegative = (t) => e.check(ce(BigInt(0), t)), e.multipleOf = (t, i) => e.check(Ln(t, i));
|
|
8690
8692
|
const a = e._zod.bag;
|
|
8691
8693
|
e.minValue = a.minimum ?? null, e.maxValue = a.maximum ?? null, e.format = a.format ?? null;
|
|
8692
8694
|
});
|
|
@@ -8753,7 +8755,7 @@ function Ef(e) {
|
|
|
8753
8755
|
return gl(ar, e);
|
|
8754
8756
|
}
|
|
8755
8757
|
const ec = /* @__PURE__ */ j("ZodArray", (e, n) => {
|
|
8756
|
-
td.init(e, n), E.init(e, n), e.element = n.element, e.min = (a, t) => e.check(un(a, t)), e.nonempty = (a) => e.check(un(1, a)), e.max = (a, t) => e.check(Xi(a, t)), e.length = (a, t) => e.check(
|
|
8758
|
+
td.init(e, n), E.init(e, n), e.element = n.element, e.min = (a, t) => e.check(un(a, t)), e.nonempty = (a) => e.check(un(1, a)), e.max = (a, t) => e.check(Xi(a, t)), e.length = (a, t) => e.check(Fi(a, t)), e.unwrap = () => e.element;
|
|
8757
8759
|
});
|
|
8758
8760
|
function hn(e, n) {
|
|
8759
8761
|
return wl(ec, e, n);
|
|
@@ -8802,7 +8804,7 @@ function or(e, n) {
|
|
|
8802
8804
|
const nc = /* @__PURE__ */ j("ZodDiscriminatedUnion", (e, n) => {
|
|
8803
8805
|
rr.init(e, n), dd.init(e, n);
|
|
8804
8806
|
});
|
|
8805
|
-
function
|
|
8807
|
+
function Ff(e, n, a) {
|
|
8806
8808
|
return new nc({
|
|
8807
8809
|
type: "union",
|
|
8808
8810
|
options: n,
|
|
@@ -8846,7 +8848,7 @@ function oc(e, n, a) {
|
|
|
8846
8848
|
..._(a)
|
|
8847
8849
|
});
|
|
8848
8850
|
}
|
|
8849
|
-
function
|
|
8851
|
+
function Hf(e, n, a) {
|
|
8850
8852
|
const t = be(e);
|
|
8851
8853
|
return t._zod.values = void 0, new ur({
|
|
8852
8854
|
type: "record",
|
|
@@ -9150,7 +9152,7 @@ function a1(e, n = {
|
|
|
9150
9152
|
const t1 = (...e) => _l({
|
|
9151
9153
|
Codec: hr,
|
|
9152
9154
|
Boolean: zi,
|
|
9153
|
-
String:
|
|
9155
|
+
String: Hi
|
|
9154
9156
|
}, ...e);
|
|
9155
9157
|
function r1(e) {
|
|
9156
9158
|
const n = _c(() => or([ke(e), Bl(), Yi(), Ul(), hn(n), oc(ke(), n)]));
|
|
@@ -9183,7 +9185,7 @@ function s1() {
|
|
|
9183
9185
|
var ja;
|
|
9184
9186
|
ja || (ja = {});
|
|
9185
9187
|
function d1(e) {
|
|
9186
|
-
return Od(
|
|
9188
|
+
return Od(Hi, e);
|
|
9187
9189
|
}
|
|
9188
9190
|
function l1(e) {
|
|
9189
9191
|
return Gd(Bi, e);
|
|
@@ -9222,12 +9224,12 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9222
9224
|
ZodBoolean: zi,
|
|
9223
9225
|
ZodCIDRv4: Ut,
|
|
9224
9226
|
ZodCIDRv6: Wt,
|
|
9225
|
-
ZodCUID:
|
|
9226
|
-
ZodCUID2:
|
|
9227
|
+
ZodCUID: Ft,
|
|
9228
|
+
ZodCUID2: Ht,
|
|
9227
9229
|
ZodCatch: vc,
|
|
9228
9230
|
ZodCodec: hr,
|
|
9229
9231
|
ZodCustom: Ui,
|
|
9230
|
-
ZodCustomStringFormat:
|
|
9232
|
+
ZodCustomStringFormat: Fn,
|
|
9231
9233
|
ZodDate: ar,
|
|
9232
9234
|
ZodDefault: hc,
|
|
9233
9235
|
ZodDiscriminatedUnion: nc,
|
|
@@ -9272,7 +9274,7 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9272
9274
|
ZodRealError: he,
|
|
9273
9275
|
ZodRecord: ur,
|
|
9274
9276
|
ZodSet: sc,
|
|
9275
|
-
ZodString:
|
|
9277
|
+
ZodString: Hi,
|
|
9276
9278
|
ZodStringFormat: G,
|
|
9277
9279
|
ZodSuccess: mc,
|
|
9278
9280
|
ZodSymbol: zl,
|
|
@@ -9312,7 +9314,7 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9312
9314
|
date: Ef,
|
|
9313
9315
|
decode: El,
|
|
9314
9316
|
decodeAsync: Ol,
|
|
9315
|
-
discriminatedUnion:
|
|
9317
|
+
discriminatedUnion: Ff,
|
|
9316
9318
|
e164: $f,
|
|
9317
9319
|
email: q2,
|
|
9318
9320
|
emoji: sf,
|
|
@@ -9328,7 +9330,7 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9328
9330
|
function: Rr,
|
|
9329
9331
|
getErrorMap: s1,
|
|
9330
9332
|
globalRegistry: Ee,
|
|
9331
|
-
gt:
|
|
9333
|
+
gt: Fe,
|
|
9332
9334
|
gte: ce,
|
|
9333
9335
|
guid: ef,
|
|
9334
9336
|
hash: _f,
|
|
@@ -9349,7 +9351,7 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9349
9351
|
keyof: Mf,
|
|
9350
9352
|
ksuid: ff,
|
|
9351
9353
|
lazy: _c,
|
|
9352
|
-
length:
|
|
9354
|
+
length: Fi,
|
|
9353
9355
|
literal: Gf,
|
|
9354
9356
|
locales: Ad,
|
|
9355
9357
|
looseObject: Xf,
|
|
@@ -9381,7 +9383,7 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9381
9383
|
overwrite: Be,
|
|
9382
9384
|
parse: Nl,
|
|
9383
9385
|
parseAsync: Pl,
|
|
9384
|
-
partialRecord:
|
|
9386
|
+
partialRecord: Hf,
|
|
9385
9387
|
pipe: Di,
|
|
9386
9388
|
positive: pl,
|
|
9387
9389
|
prefault: bc,
|
|
@@ -9395,10 +9397,10 @@ const Se = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
9395
9397
|
regex: St,
|
|
9396
9398
|
regexes: Ra,
|
|
9397
9399
|
registry: nt,
|
|
9398
|
-
safeDecode:
|
|
9400
|
+
safeDecode: Fl,
|
|
9399
9401
|
safeDecodeAsync: Rl,
|
|
9400
9402
|
safeEncode: Xl,
|
|
9401
|
-
safeEncodeAsync:
|
|
9403
|
+
safeEncodeAsync: Hl,
|
|
9402
9404
|
safeParse: Jl,
|
|
9403
9405
|
safeParseAsync: Al,
|
|
9404
9406
|
set: Bf,
|
|
@@ -9632,7 +9634,7 @@ const Dc = (e) => {
|
|
|
9632
9634
|
const n = [];
|
|
9633
9635
|
e.objectUniversalIdentifier || n.push("Field must have an objectUniversalIdentifier");
|
|
9634
9636
|
const a = Dc([e]);
|
|
9635
|
-
return n.push(...a),
|
|
9637
|
+
return n.push(...a), ee({
|
|
9636
9638
|
config: e,
|
|
9637
9639
|
errors: n
|
|
9638
9640
|
});
|
|
@@ -9642,8 +9644,8 @@ const Dc = (e) => {
|
|
|
9642
9644
|
"CommandMenuItem must have a frontComponentUniversalIdentifier (the universalIdentifier of the front component this command opens)"
|
|
9643
9645
|
), e.icon && a.push(
|
|
9644
9646
|
"CommandMenuItem icon will be ignored in favor of application icon, you should remove it"
|
|
9645
|
-
),
|
|
9646
|
-
}, x1 = (e) => e === "then", E1 = (e) => typeof e == "symbol",
|
|
9647
|
+
), ee({ config: e, errors: n, warnings: a });
|
|
9648
|
+
}, x1 = (e) => e === "then", E1 = (e) => typeof e == "symbol", H = (e) => {
|
|
9647
9649
|
const n = () => {
|
|
9648
9650
|
throw new Error(
|
|
9649
9651
|
`"${e}" from twenty-sdk can only be used inside a command's conditionalAvailabilityExpression, not at runtime.`
|
|
@@ -9659,65 +9661,65 @@ const Dc = (e) => {
|
|
|
9659
9661
|
};
|
|
9660
9662
|
return new Proxy(function() {
|
|
9661
9663
|
}, a);
|
|
9662
|
-
}, Wb =
|
|
9664
|
+
}, Wb = H(
|
|
9663
9665
|
"pageType"
|
|
9664
|
-
), Kb =
|
|
9666
|
+
), Kb = H(
|
|
9665
9667
|
"isInSidePanel"
|
|
9666
|
-
), Vb =
|
|
9668
|
+
), Vb = H(
|
|
9667
9669
|
"isDashboardPageLayoutInEditMode"
|
|
9668
|
-
), qb =
|
|
9670
|
+
), qb = H(
|
|
9669
9671
|
"isLayoutCustomizationModeEnabled"
|
|
9670
|
-
), ey =
|
|
9672
|
+
), ey = H(
|
|
9671
9673
|
"favoriteRecordIds"
|
|
9672
|
-
), ny =
|
|
9674
|
+
), ny = H(
|
|
9673
9675
|
"isSelectAll"
|
|
9674
|
-
), iy =
|
|
9676
|
+
), iy = H(
|
|
9675
9677
|
"hasAnySoftDeleteFilterOnView"
|
|
9676
|
-
), ay =
|
|
9678
|
+
), ay = H(
|
|
9677
9679
|
"numberOfSelectedRecords"
|
|
9678
|
-
), ty =
|
|
9680
|
+
), ty = H(
|
|
9679
9681
|
"objectPermissions"
|
|
9680
|
-
), ry =
|
|
9682
|
+
), ry = H(
|
|
9681
9683
|
"selectedRecords"
|
|
9682
|
-
), oy =
|
|
9684
|
+
), oy = H(
|
|
9683
9685
|
"featureFlags"
|
|
9684
|
-
), uy =
|
|
9686
|
+
), uy = H(
|
|
9685
9687
|
"targetObjectReadPermissions"
|
|
9686
|
-
), sy =
|
|
9688
|
+
), sy = H(
|
|
9687
9689
|
"targetObjectWritePermissions"
|
|
9688
|
-
), dy =
|
|
9690
|
+
), dy = H(
|
|
9689
9691
|
"canImpersonate"
|
|
9690
|
-
), ly =
|
|
9692
|
+
), ly = H(
|
|
9691
9693
|
"canAccessFullAdminPanel"
|
|
9692
|
-
), cy =
|
|
9694
|
+
), cy = H(
|
|
9693
9695
|
"objectMetadataItem"
|
|
9694
|
-
), gy =
|
|
9696
|
+
), gy = H(
|
|
9695
9697
|
"objectMetadataLabel"
|
|
9696
|
-
), hy =
|
|
9698
|
+
), hy = H("isDefined"), fy = H(
|
|
9697
9699
|
"isNonEmptyString"
|
|
9698
|
-
), py =
|
|
9700
|
+
), py = H("includes"), by = H("every"), yy = H("everyDefined"), my = H("everyEquals"), vy = H("some"), wy = H("someDefined"), $y = H("someEquals"), jy = H("none"), Sy = H("noneDefined"), ky = H("noneEquals"), Iy = H(
|
|
9699
9701
|
"someNonEmptyString"
|
|
9700
|
-
), _y =
|
|
9702
|
+
), _y = H(
|
|
9701
9703
|
"includesEvery"
|
|
9702
9704
|
), Cy = (e) => {
|
|
9703
9705
|
const n = [];
|
|
9704
|
-
return e.universalIdentifier || n.push("Front component must have a universalIdentifier"), e.component || n.push("Front component must have a component"), typeof e.component != "function" && n.push("Front component component must be a React component"),
|
|
9706
|
+
return e.universalIdentifier || n.push("Front component must have a universalIdentifier"), e.component || n.push("Front component must have a component"), typeof e.component != "function" && n.push("Front component component must be a React component"), ee({
|
|
9705
9707
|
config: e,
|
|
9706
9708
|
errors: n
|
|
9707
9709
|
});
|
|
9708
9710
|
}, fn = (e) => !Mg(e) && !Og(e);
|
|
9709
|
-
var pe = "INUMBER", pn = "IOP1", bn = "IOP2", yn = "IOP3", Ye = "IVAR",
|
|
9710
|
-
function
|
|
9711
|
+
var pe = "INUMBER", pn = "IOP1", bn = "IOP2", yn = "IOP3", Ye = "IVAR", He = "IVARNAME", dn = "IFUNCALL", Wi = "IFUNDEF", se = "IEXPR", fr = "IEXPREVAL", ze = "IMEMBER", Ki = "IENDSTATEMENT", ln = "IARRAY";
|
|
9712
|
+
function F(e, n) {
|
|
9711
9713
|
this.type = e, this.value = n ?? 0;
|
|
9712
9714
|
}
|
|
9713
|
-
|
|
9715
|
+
F.prototype.toString = function() {
|
|
9714
9716
|
switch (this.type) {
|
|
9715
9717
|
case pe:
|
|
9716
9718
|
case pn:
|
|
9717
9719
|
case bn:
|
|
9718
9720
|
case yn:
|
|
9719
9721
|
case Ye:
|
|
9720
|
-
case
|
|
9722
|
+
case He:
|
|
9721
9723
|
case Ki:
|
|
9722
9724
|
return this.value;
|
|
9723
9725
|
case dn:
|
|
@@ -9733,35 +9735,35 @@ H.prototype.toString = function() {
|
|
|
9733
9735
|
}
|
|
9734
9736
|
};
|
|
9735
9737
|
function Vi(e) {
|
|
9736
|
-
return new
|
|
9738
|
+
return new F(pn, e);
|
|
9737
9739
|
}
|
|
9738
9740
|
function De(e) {
|
|
9739
|
-
return new
|
|
9741
|
+
return new F(bn, e);
|
|
9740
9742
|
}
|
|
9741
9743
|
function Nc(e) {
|
|
9742
|
-
return new
|
|
9744
|
+
return new F(yn, e);
|
|
9743
9745
|
}
|
|
9744
9746
|
function Sa(e, n, a, t, i) {
|
|
9745
9747
|
for (var r = [], o = [], l, g, h, c, p = 0; p < e.length; p++) {
|
|
9746
9748
|
var d = e[p], s = d.type;
|
|
9747
|
-
if (s === pe || s ===
|
|
9749
|
+
if (s === pe || s === He)
|
|
9748
9750
|
Array.isArray(d.value) ? r.push.apply(r, Sa(d.value.map(function(u) {
|
|
9749
|
-
return new
|
|
9750
|
-
}).concat(new
|
|
9751
|
+
return new F(pe, u);
|
|
9752
|
+
}).concat(new F(ln, d.value.length)), n, a, t, i)) : r.push(d);
|
|
9751
9753
|
else if (s === Ye && Object.hasOwn(i, d.value))
|
|
9752
|
-
d = new
|
|
9754
|
+
d = new F(pe, i[d.value]), r.push(d);
|
|
9753
9755
|
else if (s === bn && r.length > 1)
|
|
9754
|
-
g = r.pop(), l = r.pop(), c = a[d.value], d = new
|
|
9756
|
+
g = r.pop(), l = r.pop(), c = a[d.value], d = new F(pe, c(l.value, g.value)), r.push(d);
|
|
9755
9757
|
else if (s === yn && r.length > 2)
|
|
9756
|
-
h = r.pop(), g = r.pop(), l = r.pop(), d.value === "?" ? r.push(l.value ? g.value : h.value) : (c = t[d.value], d = new
|
|
9758
|
+
h = r.pop(), g = r.pop(), l = r.pop(), d.value === "?" ? r.push(l.value ? g.value : h.value) : (c = t[d.value], d = new F(pe, c(l.value, g.value, h.value)), r.push(d));
|
|
9757
9759
|
else if (s === pn && r.length > 0)
|
|
9758
|
-
l = r.pop(), c = n[d.value], d = new
|
|
9760
|
+
l = r.pop(), c = n[d.value], d = new F(pe, c(l.value)), r.push(d);
|
|
9759
9761
|
else if (s === se) {
|
|
9760
9762
|
for (; r.length > 0; )
|
|
9761
9763
|
o.push(r.shift());
|
|
9762
|
-
o.push(new
|
|
9764
|
+
o.push(new F(se, Sa(d.value, n, a, t, i)));
|
|
9763
9765
|
} else if (s === ze && r.length > 0)
|
|
9764
|
-
l = r.pop(), r.push(new
|
|
9766
|
+
l = r.pop(), r.push(new F(pe, l.value[d.value]));
|
|
9765
9767
|
else {
|
|
9766
9768
|
for (; r.length > 0; )
|
|
9767
9769
|
o.push(r.shift());
|
|
@@ -9778,9 +9780,9 @@ function Pc(e, n, a) {
|
|
|
9778
9780
|
if (o === Ye && r.value === n)
|
|
9779
9781
|
for (var l = 0; l < a.tokens.length; l++) {
|
|
9780
9782
|
var g = a.tokens[l], h;
|
|
9781
|
-
g.type === pn ? h = Vi(g.value) : g.type === bn ? h = De(g.value) : g.type === yn ? h = Nc(g.value) : h = new
|
|
9783
|
+
g.type === pn ? h = Vi(g.value) : g.type === bn ? h = De(g.value) : g.type === yn ? h = Nc(g.value) : h = new F(g.type, g.value), t.push(h);
|
|
9782
9784
|
}
|
|
9783
|
-
else o === se ? t.push(new
|
|
9785
|
+
else o === se ? t.push(new F(se, Pc(r.value, n, a))) : t.push(r);
|
|
9784
9786
|
}
|
|
9785
9787
|
return t;
|
|
9786
9788
|
}
|
|
@@ -9841,7 +9843,7 @@ function Ae(e, n, a) {
|
|
|
9841
9843
|
return _e(e, a);
|
|
9842
9844
|
for (var c = e.length, p = 0; p < c; p++) {
|
|
9843
9845
|
var d = e[p], s = d.type;
|
|
9844
|
-
if (s === pe || s ===
|
|
9846
|
+
if (s === pe || s === He)
|
|
9845
9847
|
t.push(d.value);
|
|
9846
9848
|
else if (s === bn)
|
|
9847
9849
|
r = t.pop(), i = t.pop(), d.value === "and" ? t.push(i ? !!Ae(r, n, a) : !1) : d.value === "or" ? t.push(i ? !0 : !!Ae(r, n, a)) : d.value === "=" ? (l = n.binaryOps[d.value], t.push(l(i, Ae(r, n, a), a))) : (l = n.binaryOps[d.value], t.push(l(_e(i, a), _e(r, a))));
|
|
@@ -9934,7 +9936,7 @@ function br(e, n) {
|
|
|
9934
9936
|
a.push("(" + t + " ? " + i + " : " + r + ")");
|
|
9935
9937
|
else
|
|
9936
9938
|
throw new Error("invalid Expression");
|
|
9937
|
-
else if (p === Ye || p ===
|
|
9939
|
+
else if (p === Ye || p === He)
|
|
9938
9940
|
a.push(c.value);
|
|
9939
9941
|
else if (p === pn)
|
|
9940
9942
|
t = a.pop(), o = c.value, o === "-" || o === "+" ? a.push("(" + o + t + ")") : n ? o === "not" ? a.push("(!" + t + ")") : o === "!" ? a.push("fac(" + t + ")") : a.push(o + "(" + t + ")") : o === "!" ? a.push("(" + t + "!)") : a.push("(" + o + " " + t + ")");
|
|
@@ -9971,7 +9973,7 @@ function yr(e, n, a) {
|
|
|
9971
9973
|
a = a || {};
|
|
9972
9974
|
for (var t = !!a.withMembers, i = null, r = 0; r < e.length; r++) {
|
|
9973
9975
|
var o = e[r];
|
|
9974
|
-
o.type === Ye || o.type ===
|
|
9976
|
+
o.type === Ye || o.type === He ? !t && !qe(n, o.value) ? n.push(o.value) : (i !== null && (qe(n, i) || n.push(i)), i = o.value) : o.type === ze && t && i !== null ? i += "." + o.value : o.type === se ? yr(o.value, n, a) : i !== null && (qe(n, i) || n.push(i), i = null);
|
|
9975
9977
|
}
|
|
9976
9978
|
i !== null && !qe(n, i) && n.push(i);
|
|
9977
9979
|
}
|
|
@@ -10280,19 +10282,19 @@ Q.prototype.parseAtom = function(e) {
|
|
|
10280
10282
|
return i.value in n;
|
|
10281
10283
|
}
|
|
10282
10284
|
if (this.accept(mr) || this.accept(R, a))
|
|
10283
|
-
e.push(new
|
|
10285
|
+
e.push(new F(Ye, this.current.value));
|
|
10284
10286
|
else if (this.accept(qi))
|
|
10285
|
-
e.push(new
|
|
10287
|
+
e.push(new F(pe, this.current.value));
|
|
10286
10288
|
else if (this.accept(Jc))
|
|
10287
|
-
e.push(new
|
|
10289
|
+
e.push(new F(pe, this.current.value));
|
|
10288
10290
|
else if (this.accept(Te, "("))
|
|
10289
10291
|
this.parseExpression(e), this.expect(Te, ")");
|
|
10290
10292
|
else if (this.accept(cn, "["))
|
|
10291
10293
|
if (this.accept(cn, "]"))
|
|
10292
|
-
e.push(new
|
|
10294
|
+
e.push(new F(ln, 0));
|
|
10293
10295
|
else {
|
|
10294
10296
|
var t = this.parseArrayList(e);
|
|
10295
|
-
e.push(new
|
|
10297
|
+
e.push(new F(ln, t));
|
|
10296
10298
|
}
|
|
10297
10299
|
else
|
|
10298
10300
|
throw new Error("unexpected " + this.nextToken);
|
|
@@ -10306,7 +10308,7 @@ Q.prototype.pushExpression = function(e, n) {
|
|
|
10306
10308
|
e.push(n[a]);
|
|
10307
10309
|
};
|
|
10308
10310
|
Q.prototype.parseUntilEndStatement = function(e, n) {
|
|
10309
|
-
return this.accept(vr) ? (this.nextToken && this.nextToken.type !== Zn && !(this.nextToken.type === Te && this.nextToken.value === ")") && n.push(new
|
|
10311
|
+
return this.accept(vr) ? (this.nextToken && this.nextToken.type !== Zn && !(this.nextToken.type === Te && this.nextToken.value === ")") && n.push(new F(Ki)), this.nextToken.type !== Zn && this.parseExpression(n), e.push(new F(se, n)), !0) : !1;
|
|
10310
10312
|
};
|
|
10311
10313
|
Q.prototype.parseArrayList = function(e) {
|
|
10312
10314
|
for (var n = 0; !this.accept(cn, "]"); )
|
|
@@ -10322,32 +10324,32 @@ Q.prototype.parseVariableAssignmentExpression = function(e) {
|
|
|
10322
10324
|
throw new Error("function definition is not permitted");
|
|
10323
10325
|
for (var i = 0, r = n.value + 1; i < r; i++) {
|
|
10324
10326
|
var o = t - i;
|
|
10325
|
-
e[o].type === Ye && (e[o] = new
|
|
10327
|
+
e[o].type === Ye && (e[o] = new F(He, e[o].value));
|
|
10326
10328
|
}
|
|
10327
|
-
this.parseVariableAssignmentExpression(a), e.push(new
|
|
10329
|
+
this.parseVariableAssignmentExpression(a), e.push(new F(se, a)), e.push(new F(Wi, n.value));
|
|
10328
10330
|
continue;
|
|
10329
10331
|
}
|
|
10330
10332
|
if (n.type !== Ye && n.type !== ze)
|
|
10331
10333
|
throw new Error("expected variable for assignment");
|
|
10332
|
-
this.parseVariableAssignmentExpression(a), e.push(new
|
|
10334
|
+
this.parseVariableAssignmentExpression(a), e.push(new F(He, n.value)), e.push(new F(se, a)), e.push(De("="));
|
|
10333
10335
|
}
|
|
10334
10336
|
};
|
|
10335
10337
|
Q.prototype.parseConditionalExpression = function(e) {
|
|
10336
10338
|
for (this.parseOrExpression(e); this.accept(R, "?"); ) {
|
|
10337
10339
|
var n = [], a = [];
|
|
10338
|
-
this.parseConditionalExpression(n), this.expect(R, ":"), this.parseConditionalExpression(a), e.push(new
|
|
10340
|
+
this.parseConditionalExpression(n), this.expect(R, ":"), this.parseConditionalExpression(a), e.push(new F(se, n)), e.push(new F(se, a)), e.push(Nc("?"));
|
|
10339
10341
|
}
|
|
10340
10342
|
};
|
|
10341
10343
|
Q.prototype.parseOrExpression = function(e) {
|
|
10342
10344
|
for (this.parseAndExpression(e); this.accept(R, "or"); ) {
|
|
10343
10345
|
var n = [];
|
|
10344
|
-
this.parseAndExpression(n), e.push(new
|
|
10346
|
+
this.parseAndExpression(n), e.push(new F(se, n)), e.push(De("or"));
|
|
10345
10347
|
}
|
|
10346
10348
|
};
|
|
10347
10349
|
Q.prototype.parseAndExpression = function(e) {
|
|
10348
10350
|
for (this.parseComparison(e); this.accept(R, "and"); ) {
|
|
10349
10351
|
var n = [];
|
|
10350
|
-
this.parseComparison(n), e.push(new
|
|
10352
|
+
this.parseComparison(n), e.push(new F(se, n)), e.push(De("and"));
|
|
10351
10353
|
}
|
|
10352
10354
|
};
|
|
10353
10355
|
var X1 = ["==", "!=", "<", "<=", ">=", ">", "in"];
|
|
@@ -10357,16 +10359,16 @@ Q.prototype.parseComparison = function(e) {
|
|
|
10357
10359
|
this.parseAddSub(e), e.push(De(n.value));
|
|
10358
10360
|
}
|
|
10359
10361
|
};
|
|
10360
|
-
var
|
|
10362
|
+
var F1 = ["+", "-", "||"];
|
|
10361
10363
|
Q.prototype.parseAddSub = function(e) {
|
|
10362
|
-
for (this.parseTerm(e); this.accept(R,
|
|
10364
|
+
for (this.parseTerm(e); this.accept(R, F1); ) {
|
|
10363
10365
|
var n = this.current;
|
|
10364
10366
|
this.parseTerm(e), e.push(De(n.value));
|
|
10365
10367
|
}
|
|
10366
10368
|
};
|
|
10367
|
-
var
|
|
10369
|
+
var H1 = ["*", "/", "%"];
|
|
10368
10370
|
Q.prototype.parseTerm = function(e) {
|
|
10369
|
-
for (this.parseFactor(e); this.accept(R,
|
|
10371
|
+
for (this.parseFactor(e); this.accept(R, H1); ) {
|
|
10370
10372
|
var n = this.current;
|
|
10371
10373
|
this.parseFactor(e), e.push(De(n.value));
|
|
10372
10374
|
}
|
|
@@ -10410,10 +10412,10 @@ Q.prototype.parseFunctionCall = function(e) {
|
|
|
10410
10412
|
} else
|
|
10411
10413
|
for (this.parseMemberExpression(e); this.accept(Te, "("); )
|
|
10412
10414
|
if (this.accept(Te, ")"))
|
|
10413
|
-
e.push(new
|
|
10415
|
+
e.push(new F(dn, 0));
|
|
10414
10416
|
else {
|
|
10415
10417
|
var i = this.parseArgumentList(e);
|
|
10416
|
-
e.push(new
|
|
10418
|
+
e.push(new F(dn, i));
|
|
10417
10419
|
}
|
|
10418
10420
|
};
|
|
10419
10421
|
Q.prototype.parseArgumentList = function(e) {
|
|
@@ -10428,7 +10430,7 @@ Q.prototype.parseMemberExpression = function(e) {
|
|
|
10428
10430
|
if (n.value === ".") {
|
|
10429
10431
|
if (!this.allowMemberAccess)
|
|
10430
10432
|
throw new Error('unexpected ".", member access is not permitted');
|
|
10431
|
-
this.expect(mr), e.push(new
|
|
10433
|
+
this.expect(mr), e.push(new F(ze, this.current.value));
|
|
10432
10434
|
} else if (n.value === "[") {
|
|
10433
10435
|
if (!this.tokens.isOperatorEnabled("["))
|
|
10434
10436
|
throw new Error('unexpected "[]", arrays are disabled');
|
|
@@ -11044,7 +11046,7 @@ function Ec() {
|
|
|
11044
11046
|
return $n;
|
|
11045
11047
|
}
|
|
11046
11048
|
var oi = {}, ui = { exports: {} }, so;
|
|
11047
|
-
function
|
|
11049
|
+
function Fp() {
|
|
11048
11050
|
return so || (so = 1, (function(e, n) {
|
|
11049
11051
|
n.__esModule = !0;
|
|
11050
11052
|
var a = de();
|
|
@@ -11062,13 +11064,13 @@ function Hp() {
|
|
|
11062
11064
|
})(ui, ui.exports)), ui.exports;
|
|
11063
11065
|
}
|
|
11064
11066
|
var lo;
|
|
11065
|
-
function
|
|
11067
|
+
function Hp() {
|
|
11066
11068
|
if (lo) return oi;
|
|
11067
11069
|
lo = 1, oi.__esModule = !0, oi.registerDefaultDecorators = t;
|
|
11068
11070
|
function e(i) {
|
|
11069
11071
|
return i && i.__esModule ? i : { default: i };
|
|
11070
11072
|
}
|
|
11071
|
-
var n =
|
|
11073
|
+
var n = Fp(), a = e(n);
|
|
11072
11074
|
function t(i) {
|
|
11073
11075
|
a.default(i);
|
|
11074
11076
|
}
|
|
@@ -11151,7 +11153,7 @@ function $r() {
|
|
|
11151
11153
|
function e(b) {
|
|
11152
11154
|
return b && b.__esModule ? b : { default: b };
|
|
11153
11155
|
}
|
|
11154
|
-
var n = de(), a = ye(), t = e(a), i = Ec(), r =
|
|
11156
|
+
var n = de(), a = ye(), t = e(a), i = Ec(), r = Hp(), o = Mc(), l = e(o), g = Oc(), h = "4.7.9";
|
|
11155
11157
|
me.VERSION = h;
|
|
11156
11158
|
var c = 8;
|
|
11157
11159
|
me.COMPILER_REVISION = c;
|
|
@@ -11473,7 +11475,7 @@ function Gp() {
|
|
|
11473
11475
|
})(Kn, Kn.exports)), Kn.exports;
|
|
11474
11476
|
}
|
|
11475
11477
|
var gi = { exports: {} }, vo;
|
|
11476
|
-
function
|
|
11478
|
+
function Fc() {
|
|
11477
11479
|
return vo || (vo = 1, (function(e, n) {
|
|
11478
11480
|
n.__esModule = !0;
|
|
11479
11481
|
var a = {
|
|
@@ -11992,7 +11994,7 @@ Expecting ` + Z.join(", ") + ", got '" + (this.terminals_[$] || $) + "'" : L = "
|
|
|
11992
11994
|
})(hi, hi.exports)), hi.exports;
|
|
11993
11995
|
}
|
|
11994
11996
|
var fi = { exports: {} }, pi = { exports: {} }, $o;
|
|
11995
|
-
function
|
|
11997
|
+
function Hc() {
|
|
11996
11998
|
return $o || ($o = 1, (function(e, n) {
|
|
11997
11999
|
n.__esModule = !0;
|
|
11998
12000
|
function a(h) {
|
|
@@ -12092,7 +12094,7 @@ function Up() {
|
|
|
12092
12094
|
function a(c) {
|
|
12093
12095
|
return c && c.__esModule ? c : { default: c };
|
|
12094
12096
|
}
|
|
12095
|
-
var t =
|
|
12097
|
+
var t = Hc(), i = a(t);
|
|
12096
12098
|
function r() {
|
|
12097
12099
|
var c = arguments.length <= 0 || arguments[0] === void 0 ? {} : arguments[0];
|
|
12098
12100
|
this.options = c;
|
|
@@ -12390,7 +12392,7 @@ function Vp() {
|
|
|
12390
12392
|
function e(d) {
|
|
12391
12393
|
return d && d.__esModule ? d : { default: d };
|
|
12392
12394
|
}
|
|
12393
|
-
var n = ye(), a = e(n), t = de(), i =
|
|
12395
|
+
var n = ye(), a = e(n), t = de(), i = Fc(), r = e(i), o = [].slice;
|
|
12394
12396
|
function l() {
|
|
12395
12397
|
}
|
|
12396
12398
|
l.prototype = {
|
|
@@ -12675,7 +12677,7 @@ function Rc() {
|
|
|
12675
12677
|
}, mi;
|
|
12676
12678
|
}
|
|
12677
12679
|
var oa = {}, Lo;
|
|
12678
|
-
function
|
|
12680
|
+
function Hn() {
|
|
12679
12681
|
return Lo || (Lo = 1, (function(e) {
|
|
12680
12682
|
function n(w, v, k) {
|
|
12681
12683
|
if (v in w)
|
|
@@ -12808,7 +12810,7 @@ var ua = {}, Yo;
|
|
|
12808
12810
|
function Bc() {
|
|
12809
12811
|
if (Yo) return ua;
|
|
12810
12812
|
Yo = 1;
|
|
12811
|
-
var e =
|
|
12813
|
+
var e = Hn(), n = Object.prototype.hasOwnProperty, a = typeof Map < "u";
|
|
12812
12814
|
function t() {
|
|
12813
12815
|
this._array = [], this._set = a ? /* @__PURE__ */ new Map() : /* @__PURE__ */ Object.create(null);
|
|
12814
12816
|
}
|
|
@@ -12849,7 +12851,7 @@ var sa = {}, To;
|
|
|
12849
12851
|
function eb() {
|
|
12850
12852
|
if (To) return sa;
|
|
12851
12853
|
To = 1;
|
|
12852
|
-
var e =
|
|
12854
|
+
var e = Hn();
|
|
12853
12855
|
function n(t, i) {
|
|
12854
12856
|
var r = t.generatedLine, o = i.generatedLine, l = t.generatedColumn, g = i.generatedColumn;
|
|
12855
12857
|
return o > r || o == r && g >= l || e.compareByGeneratedPositionsInflated(t, i) <= 0;
|
|
@@ -12869,7 +12871,7 @@ var Zo;
|
|
|
12869
12871
|
function zc() {
|
|
12870
12872
|
if (Zo) return ra;
|
|
12871
12873
|
Zo = 1;
|
|
12872
|
-
var e = Rc(), n =
|
|
12874
|
+
var e = Rc(), n = Hn(), a = Bc().ArraySet, t = eb().MappingList;
|
|
12873
12875
|
function i(r) {
|
|
12874
12876
|
r || (r = {}), this._file = n.getArg(r, "file", null), this._sourceRoot = n.getArg(r, "sourceRoot", null), this._skipValidation = n.getArg(r, "skipValidation", !1), this._sources = new a(), this._names = new a(), this._mappings = new t(), this._sourcesContents = null;
|
|
12875
12877
|
}
|
|
@@ -13041,7 +13043,7 @@ var Po;
|
|
|
13041
13043
|
function ab() {
|
|
13042
13044
|
if (Po) return Sn;
|
|
13043
13045
|
Po = 1;
|
|
13044
|
-
var e =
|
|
13046
|
+
var e = Hn(), n = nb(), a = Bc().ArraySet, t = Rc(), i = ib().quickSort;
|
|
13045
13047
|
function r(h, c) {
|
|
13046
13048
|
var p = h;
|
|
13047
13049
|
return typeof h == "string" && (p = e.parseSourceMapInput(h)), p.sections != null ? new g(p, c) : new o(p, c);
|
|
@@ -13410,7 +13412,7 @@ var ca = {}, Jo;
|
|
|
13410
13412
|
function tb() {
|
|
13411
13413
|
if (Jo) return ca;
|
|
13412
13414
|
Jo = 1;
|
|
13413
|
-
var e = zc().SourceMapGenerator, n =
|
|
13415
|
+
var e = zc().SourceMapGenerator, n = Hn(), a = /(\r?\n)/, t = 10, i = "$$$isSourceNode$$$";
|
|
13414
13416
|
function r(o, l, g, h, c) {
|
|
13415
13417
|
this.children = [], this.sourceContents = {}, this.line = o ?? null, this.column = l ?? null, this.source = g ?? null, this.name = c ?? null, this[i] = !0, h != null && this.add(h);
|
|
13416
13418
|
}
|
|
@@ -14173,7 +14175,7 @@ function sb() {
|
|
|
14173
14175
|
function a(m) {
|
|
14174
14176
|
return m && m.__esModule ? m : { default: m };
|
|
14175
14177
|
}
|
|
14176
|
-
var t = Gp(), i = a(t), r =
|
|
14178
|
+
var t = Gp(), i = a(t), r = Fc(), o = a(r), l = Kp(), g = Vp(), h = ub(), c = a(h), p = Hc(), d = a(p), s = Xc(), u = a(s), f = i.default.create;
|
|
14177
14179
|
function b() {
|
|
14178
14180
|
var m = f();
|
|
14179
14181
|
return m.compile = function($, w) {
|
|
@@ -14705,7 +14707,7 @@ function Qc(e, n) {
|
|
|
14705
14707
|
var a = Array.prototype.slice.call(n);
|
|
14706
14708
|
return a.push(fb), e.apply(this, a);
|
|
14707
14709
|
}
|
|
14708
|
-
function
|
|
14710
|
+
function Fo(e, n) {
|
|
14709
14711
|
e = e.split("-"), n = n.split("-");
|
|
14710
14712
|
for (var a = e[0].split("."), t = n[0].split("."), i = 0; i < 3; i++) {
|
|
14711
14713
|
var r = Number(a[i]), o = Number(t[i]);
|
|
@@ -14741,7 +14743,7 @@ function bb(e, n) {
|
|
|
14741
14743
|
function ia(e, n, a) {
|
|
14742
14744
|
return n && bb(e.prototype, n), Object.defineProperty(e, "prototype", { writable: !1 }), e;
|
|
14743
14745
|
}
|
|
14744
|
-
var yb = "1.2.0", mb = "1.7.35",
|
|
14746
|
+
var yb = "1.2.0", mb = "1.7.35", Ho = " ext. ", vb = /^\d+$/, Uc = /* @__PURE__ */ (function() {
|
|
14745
14747
|
function e(n) {
|
|
14746
14748
|
na(this, e), Sb(n), this.metadata = n, Wc.call(this, n);
|
|
14747
14749
|
}
|
|
@@ -15060,7 +15062,7 @@ var yb = "1.2.0", mb = "1.7.35", Fo = " ext. ", vb = /^\d+$/, Uc = /* @__PURE__
|
|
|
15060
15062
|
}, {
|
|
15061
15063
|
key: "ext",
|
|
15062
15064
|
value: function() {
|
|
15063
|
-
return this.v1 || this.v2 ?
|
|
15065
|
+
return this.v1 || this.v2 ? Ho : this.metadata[13] || Ho;
|
|
15064
15066
|
}
|
|
15065
15067
|
}]), e;
|
|
15066
15068
|
})(), wb = /* @__PURE__ */ (function() {
|
|
@@ -15167,7 +15169,7 @@ function Ib(e, n) {
|
|
|
15167
15169
|
}
|
|
15168
15170
|
function Wc(e) {
|
|
15169
15171
|
var n = e.version;
|
|
15170
|
-
typeof n == "number" ? (this.v1 = n === 1, this.v2 = n === 2, this.v3 = n === 3, this.v4 = n === 4) : n ?
|
|
15172
|
+
typeof n == "number" ? (this.v1 = n === 1, this.v2 = n === 2, this.v3 = n === 3, this.v4 = n === 4) : n ? Fo(n, yb) === -1 ? this.v2 = !0 : Fo(n, mb) === -1 ? this.v3 = !0 : this.v4 = !0 : this.v1 = !0;
|
|
15171
15173
|
}
|
|
15172
15174
|
function _b(e) {
|
|
15173
15175
|
return new Uc(e).getCountries();
|
|
@@ -15188,12 +15190,12 @@ const Lb = (e) => !!(Array.isArray(e) && Xg(e.length) && e.length > 0), Yb = /*
|
|
|
15188
15190
|
"constructor",
|
|
15189
15191
|
"prototype"
|
|
15190
15192
|
]), Vc = (e, n) => {
|
|
15191
|
-
if (!
|
|
15193
|
+
if (!Fg(n))
|
|
15192
15194
|
return;
|
|
15193
15195
|
const a = n.split(".");
|
|
15194
15196
|
let t = e;
|
|
15195
15197
|
for (const i of a) {
|
|
15196
|
-
if (!fn(t) || !
|
|
15198
|
+
if (!fn(t) || !Hg(t) || Yb.has(i) || !Object.prototype.hasOwnProperty.call(t, i))
|
|
15197
15199
|
return;
|
|
15198
15200
|
t = t[i];
|
|
15199
15201
|
}
|
|
@@ -15279,7 +15281,7 @@ const zo = [
|
|
|
15279
15281
|
I.IS_NOT,
|
|
15280
15282
|
...zo
|
|
15281
15283
|
];
|
|
15282
|
-
const
|
|
15284
|
+
const ne = [
|
|
15283
15285
|
I.IS_EMPTY,
|
|
15284
15286
|
I.IS_NOT_EMPTY
|
|
15285
15287
|
];
|
|
@@ -15287,45 +15289,45 @@ I.IS, I.IS_NOT;
|
|
|
15287
15289
|
[
|
|
15288
15290
|
I.CONTAINS,
|
|
15289
15291
|
I.DOES_NOT_CONTAIN,
|
|
15290
|
-
...
|
|
15292
|
+
...ne
|
|
15291
15293
|
], [
|
|
15292
15294
|
I.CONTAINS,
|
|
15293
15295
|
I.DOES_NOT_CONTAIN,
|
|
15294
|
-
...
|
|
15296
|
+
...ne
|
|
15295
15297
|
], [
|
|
15296
15298
|
I.CONTAINS,
|
|
15297
15299
|
I.DOES_NOT_CONTAIN,
|
|
15298
|
-
...
|
|
15300
|
+
...ne
|
|
15299
15301
|
], [
|
|
15300
15302
|
I.CONTAINS,
|
|
15301
15303
|
I.DOES_NOT_CONTAIN,
|
|
15302
|
-
...
|
|
15304
|
+
...ne
|
|
15303
15305
|
], [
|
|
15304
15306
|
I.CONTAINS,
|
|
15305
15307
|
I.DOES_NOT_CONTAIN,
|
|
15306
|
-
...
|
|
15308
|
+
...ne
|
|
15307
15309
|
], [
|
|
15308
15310
|
I.CONTAINS,
|
|
15309
15311
|
I.DOES_NOT_CONTAIN,
|
|
15310
|
-
...
|
|
15312
|
+
...ne
|
|
15311
15313
|
], [
|
|
15312
15314
|
I.GREATER_THAN_OR_EQUAL,
|
|
15313
15315
|
I.LESS_THAN_OR_EQUAL,
|
|
15314
|
-
...
|
|
15316
|
+
...ne
|
|
15315
15317
|
], [
|
|
15316
15318
|
I.IS,
|
|
15317
15319
|
I.IS_NOT,
|
|
15318
15320
|
I.GREATER_THAN_OR_EQUAL,
|
|
15319
15321
|
I.LESS_THAN_OR_EQUAL,
|
|
15320
|
-
...
|
|
15322
|
+
...ne
|
|
15321
15323
|
], [
|
|
15322
15324
|
I.CONTAINS,
|
|
15323
15325
|
I.DOES_NOT_CONTAIN,
|
|
15324
|
-
...
|
|
15326
|
+
...ne
|
|
15325
15327
|
], [
|
|
15326
15328
|
I.CONTAINS,
|
|
15327
15329
|
I.DOES_NOT_CONTAIN,
|
|
15328
|
-
...
|
|
15330
|
+
...ne
|
|
15329
15331
|
], [
|
|
15330
15332
|
I.IS,
|
|
15331
15333
|
I.IS_RELATIVE,
|
|
@@ -15334,7 +15336,7 @@ I.IS, I.IS_NOT;
|
|
|
15334
15336
|
I.IS_TODAY,
|
|
15335
15337
|
I.IS_BEFORE,
|
|
15336
15338
|
I.IS_AFTER,
|
|
15337
|
-
...
|
|
15339
|
+
...ne
|
|
15338
15340
|
], [
|
|
15339
15341
|
I.IS,
|
|
15340
15342
|
I.IS_RELATIVE,
|
|
@@ -15343,26 +15345,26 @@ I.IS, I.IS_NOT;
|
|
|
15343
15345
|
I.IS_TODAY,
|
|
15344
15346
|
I.IS_BEFORE,
|
|
15345
15347
|
I.IS_AFTER,
|
|
15346
|
-
...
|
|
15348
|
+
...ne
|
|
15347
15349
|
], [
|
|
15348
15350
|
I.IS,
|
|
15349
15351
|
I.IS_NOT,
|
|
15350
15352
|
I.GREATER_THAN_OR_EQUAL,
|
|
15351
15353
|
I.LESS_THAN_OR_EQUAL,
|
|
15352
|
-
...
|
|
15354
|
+
...ne
|
|
15353
15355
|
], [
|
|
15354
15356
|
I.CONTAINS,
|
|
15355
15357
|
I.DOES_NOT_CONTAIN,
|
|
15356
|
-
...
|
|
15357
|
-
], [I.IS, I.IS_NOT, ...
|
|
15358
|
+
...ne
|
|
15359
|
+
], [I.IS, I.IS_NOT, ...ne], [
|
|
15358
15360
|
I.CONTAINS,
|
|
15359
15361
|
I.DOES_NOT_CONTAIN,
|
|
15360
|
-
...
|
|
15362
|
+
...ne
|
|
15361
15363
|
], [
|
|
15362
15364
|
I.CONTAINS,
|
|
15363
15365
|
I.DOES_NOT_CONTAIN,
|
|
15364
|
-
...
|
|
15365
|
-
], I.IS, I.VECTOR_SEARCH, [I.IS, I.IS_NOT, ...
|
|
15366
|
+
...ne
|
|
15367
|
+
], I.IS, I.VECTOR_SEARCH, [I.IS, I.IS_NOT, ...ne];
|
|
15366
15368
|
I.IS, I.IS_NOT, I.IS_EMPTY, I.IS_NOT_EMPTY;
|
|
15367
15369
|
ke().transform((e) => e === "" ? [] : Ia(e) ? [e] : JSON.parse(e)).refine(
|
|
15368
15370
|
(e) => Array.isArray(e) && e.every((n) => typeof n == "string"),
|
|
@@ -15496,22 +15498,22 @@ const wi = (e) => typeof e == "string" && e.trim().length > 0, Ly = (e) => {
|
|
|
15496
15498
|
);
|
|
15497
15499
|
new Set(a).size !== a.length && n.push("Index lists the same column twice");
|
|
15498
15500
|
}
|
|
15499
|
-
return
|
|
15501
|
+
return ee({ config: e, errors: n });
|
|
15500
15502
|
}, Yy = (e) => {
|
|
15501
15503
|
const n = [];
|
|
15502
|
-
return e.universalIdentifier || n.push("Logic function must have a universalIdentifier"), e.handler || n.push("Logic function must have a handler"), typeof e.handler != "function" && n.push("Logic function handler must be a function"), e.httpRouteTriggerSettings && (e.httpRouteTriggerSettings.path || n.push("Route trigger must have a path"), e.httpRouteTriggerSettings.httpMethod || n.push("Route trigger must have an httpMethod")), e.cronTriggerSettings && (e.cronTriggerSettings.pattern || n.push("Cron trigger must have a pattern")), e.databaseEventTriggerSettings && (e.databaseEventTriggerSettings.eventName || n.push("Database event trigger must have an eventName")),
|
|
15504
|
+
return e.universalIdentifier || n.push("Logic function must have a universalIdentifier"), e.handler || n.push("Logic function must have a handler"), typeof e.handler != "function" && n.push("Logic function handler must be a function"), e.httpRouteTriggerSettings && (e.httpRouteTriggerSettings.path || n.push("Route trigger must have a path"), e.httpRouteTriggerSettings.httpMethod || n.push("Route trigger must have an httpMethod")), e.cronTriggerSettings && (e.cronTriggerSettings.pattern || n.push("Cron trigger must have a pattern")), e.databaseEventTriggerSettings && (e.databaseEventTriggerSettings.eventName || n.push("Database event trigger must have an eventName")), ee({
|
|
15503
15505
|
config: e,
|
|
15504
15506
|
errors: n
|
|
15505
15507
|
});
|
|
15506
15508
|
}, Ty = (e) => {
|
|
15507
15509
|
const n = [];
|
|
15508
|
-
return e.universalIdentifier || n.push("Post install logic function must have a universalIdentifier"), e.handler || n.push("Post install logic function must have a handler"), typeof e.handler != "function" && n.push("Post install logic function handler must be a function"),
|
|
15510
|
+
return e.universalIdentifier || n.push("Post install logic function must have a universalIdentifier"), e.handler || n.push("Post install logic function must have a handler"), typeof e.handler != "function" && n.push("Post install logic function handler must be a function"), ee({
|
|
15509
15511
|
config: e,
|
|
15510
15512
|
errors: n
|
|
15511
15513
|
});
|
|
15512
15514
|
}, Zy = (e) => {
|
|
15513
15515
|
const n = [];
|
|
15514
|
-
return e.universalIdentifier || n.push("Pre install logic function must have a universalIdentifier"), e.handler || n.push("Pre install logic function must have a handler"), typeof e.handler != "function" && n.push("Pre install logic function handler must be a function"),
|
|
15516
|
+
return e.universalIdentifier || n.push("Pre install logic function must have a universalIdentifier"), e.handler || n.push("Pre install logic function must have a handler"), typeof e.handler != "function" && n.push("Pre install logic function handler must be a function"), ee({
|
|
15515
15517
|
config: e,
|
|
15516
15518
|
errors: n
|
|
15517
15519
|
});
|
|
@@ -15535,10 +15537,10 @@ const wi = (e) => typeof e == "string" && e.trim().length > 0, Ly = (e) => {
|
|
|
15535
15537
|
"Connection provider with type 'oauth' must declare an `oauth` config block"
|
|
15536
15538
|
);
|
|
15537
15539
|
}
|
|
15538
|
-
return
|
|
15540
|
+
return ee({ config: e, errors: n });
|
|
15539
15541
|
}, Ny = (e) => {
|
|
15540
15542
|
const n = [];
|
|
15541
|
-
return e.universalIdentifier || n.push("NavigationMenuItem must have a universalIdentifier"), typeof e.position != "number" && n.push("NavigationMenuItem must have a position"),
|
|
15543
|
+
return e.universalIdentifier || n.push("NavigationMenuItem must have a universalIdentifier"), typeof e.position != "number" && n.push("NavigationMenuItem must have a position"), ee({ config: e, errors: n });
|
|
15542
15544
|
}, Py = (e) => {
|
|
15543
15545
|
const n = [];
|
|
15544
15546
|
e.universalIdentifier || n.push("Object must have a universalIdentifier"), e.nameSingular || n.push("Object must have a nameSingular"), e.namePlural || n.push("Object must have a namePlural"), e.labelSingular || n.push("Object must have a labelSingular"), e.labelPlural || n.push("Object must have a labelPlural");
|
|
@@ -15547,7 +15549,7 @@ const wi = (e) => typeof e == "string" && e.trim().length > 0, Ly = (e) => {
|
|
|
15547
15549
|
(t) => t.universalIdentifier === e.labelIdentifierFieldMetadataUniversalIdentifier
|
|
15548
15550
|
) && n.push(
|
|
15549
15551
|
"labelIdentifierFieldMetadataUniversalIdentifier must reference a field defined in the fields array"
|
|
15550
|
-
),
|
|
15552
|
+
), ee({
|
|
15551
15553
|
config: e,
|
|
15552
15554
|
errors: n
|
|
15553
15555
|
});
|
|
@@ -15724,11 +15726,11 @@ let eg = class {
|
|
|
15724
15726
|
return l.length && (i = this.replaceString(i, l)), i;
|
|
15725
15727
|
}
|
|
15726
15728
|
};
|
|
15727
|
-
const
|
|
15729
|
+
const Fb = Object.assign(Object.assign({}, ue(Ca)), { allowedChars: "a-zA-Z0-9-_.~", lowercase: !0, separator: "-", uppercase: !1, fixChineseSpacing: !0 }), en = new eg(), Ko = en.transliterate.bind(en);
|
|
15728
15730
|
Ko.config = en.config.bind(en), Ko.setData = en.setData.bind(en);
|
|
15729
15731
|
const nn = new class extends eg {
|
|
15730
15732
|
get options() {
|
|
15731
|
-
return ue(Object.assign(Object.assign({},
|
|
15733
|
+
return ue(Object.assign(Object.assign({}, Fb), this.confOptions));
|
|
15732
15734
|
}
|
|
15733
15735
|
config(e, n = !1) {
|
|
15734
15736
|
return n && (this.confOptions = {}), e && typeof e == "object" && (this.confOptions = ue(e)), this.confOptions;
|
|
@@ -16217,6 +16219,12 @@ const xy = {
|
|
|
16217
16219
|
calendarEventParticipants: {
|
|
16218
16220
|
universalIdentifier: "20202020-e07e-4ccb-88f5-6f3d00458eec"
|
|
16219
16221
|
},
|
|
16222
|
+
recordingPreference: {
|
|
16223
|
+
universalIdentifier: "1d231e7e-9bbe-410b-8007-ea7678a83e58"
|
|
16224
|
+
},
|
|
16225
|
+
callRecordings: {
|
|
16226
|
+
universalIdentifier: "48d6d151-18e2-4111-b405-d85fb9d860d8"
|
|
16227
|
+
},
|
|
16220
16228
|
createdBy: {
|
|
16221
16229
|
universalIdentifier: "664a9500-2641-4caa-8d95-069807bb2eb4"
|
|
16222
16230
|
},
|
|
@@ -16263,6 +16271,126 @@ const xy = {
|
|
|
16263
16271
|
}
|
|
16264
16272
|
}
|
|
16265
16273
|
},
|
|
16274
|
+
callRecording: {
|
|
16275
|
+
universalIdentifier: "ce19efb9-710f-45b2-b141-473abbeea60b",
|
|
16276
|
+
fields: {
|
|
16277
|
+
id: {
|
|
16278
|
+
universalIdentifier: "9767180b-76c2-47d5-b7b9-5dc60f14391d"
|
|
16279
|
+
},
|
|
16280
|
+
createdAt: {
|
|
16281
|
+
universalIdentifier: "d1adb2a9-9da3-4656-93b7-db79780b77eb"
|
|
16282
|
+
},
|
|
16283
|
+
updatedAt: {
|
|
16284
|
+
universalIdentifier: "5db0a477-5715-4ffd-bdbe-854dfaccfe22"
|
|
16285
|
+
},
|
|
16286
|
+
deletedAt: {
|
|
16287
|
+
universalIdentifier: "cf22a652-390a-4f55-b3a0-615c8fd8c7ed"
|
|
16288
|
+
},
|
|
16289
|
+
title: {
|
|
16290
|
+
universalIdentifier: "4cff8863-a1d1-45fd-a370-4eb6aa1f2a5b"
|
|
16291
|
+
},
|
|
16292
|
+
status: {
|
|
16293
|
+
universalIdentifier: "3e617680-d93e-4309-a54f-90f69528bfd7"
|
|
16294
|
+
},
|
|
16295
|
+
applicationId: {
|
|
16296
|
+
universalIdentifier: "24ec1239-1240-42cb-8a2d-302632378e09"
|
|
16297
|
+
},
|
|
16298
|
+
externalBotId: {
|
|
16299
|
+
universalIdentifier: "0a2da128-9bcc-488b-bc31-65318c41bdf9"
|
|
16300
|
+
},
|
|
16301
|
+
externalRecordingId: {
|
|
16302
|
+
universalIdentifier: "6d17fb71-324b-4625-a5be-b3580607e2c7"
|
|
16303
|
+
},
|
|
16304
|
+
startedAt: {
|
|
16305
|
+
universalIdentifier: "6c56c23f-1987-410a-860a-df3b2b3f9a33"
|
|
16306
|
+
},
|
|
16307
|
+
endedAt: {
|
|
16308
|
+
universalIdentifier: "7a38a9cf-8424-4d6e-b80a-6883d3c662ef"
|
|
16309
|
+
},
|
|
16310
|
+
video: {
|
|
16311
|
+
universalIdentifier: "bb9523d3-457e-4f4b-8c79-27a77afb87da"
|
|
16312
|
+
},
|
|
16313
|
+
audio: {
|
|
16314
|
+
universalIdentifier: "2eafc2d0-8fec-430c-a939-65ca5fbc0f08"
|
|
16315
|
+
},
|
|
16316
|
+
transcript: {
|
|
16317
|
+
universalIdentifier: "27b86d68-57d1-4607-aca0-191896b1ad43"
|
|
16318
|
+
},
|
|
16319
|
+
summary: {
|
|
16320
|
+
universalIdentifier: "adb0f472-756b-4d3f-b21e-ea32bf73a5e4"
|
|
16321
|
+
},
|
|
16322
|
+
calendarEvent: {
|
|
16323
|
+
universalIdentifier: "49e64b28-bd98-4775-80ea-4781bdd45e35"
|
|
16324
|
+
},
|
|
16325
|
+
createdBy: {
|
|
16326
|
+
universalIdentifier: "cb84ce87-ccd4-4901-9b9e-25e3cbfce3ba"
|
|
16327
|
+
},
|
|
16328
|
+
updatedBy: {
|
|
16329
|
+
universalIdentifier: "02309262-b6dc-4cbd-936b-d851a7deec79"
|
|
16330
|
+
},
|
|
16331
|
+
position: {
|
|
16332
|
+
universalIdentifier: "eeae3145-3696-41ae-b0ed-1370ad35b33c"
|
|
16333
|
+
},
|
|
16334
|
+
searchVector: {
|
|
16335
|
+
universalIdentifier: "d6fd4ad0-4aec-4969-bdb5-945fda0fcf45"
|
|
16336
|
+
}
|
|
16337
|
+
},
|
|
16338
|
+
indexes: {
|
|
16339
|
+
calendarEventIdIndex: {
|
|
16340
|
+
universalIdentifier: "8be3cc47-9352-4a1b-ad19-bb186bc0865d"
|
|
16341
|
+
}
|
|
16342
|
+
},
|
|
16343
|
+
views: {
|
|
16344
|
+
allCallRecordings: {
|
|
16345
|
+
universalIdentifier: "c395b55e-88f0-4d5b-a1fb-0d38b50e0b19",
|
|
16346
|
+
viewFields: {
|
|
16347
|
+
status: {
|
|
16348
|
+
universalIdentifier: "6c4a81a2-d9c1-4f82-984c-f97e083ca710"
|
|
16349
|
+
},
|
|
16350
|
+
title: {
|
|
16351
|
+
universalIdentifier: "b1d5051b-071d-4514-93cf-704724cdc8f6"
|
|
16352
|
+
},
|
|
16353
|
+
startedAt: {
|
|
16354
|
+
universalIdentifier: "3b96351f-66ed-4fa6-acb6-698647573af7"
|
|
16355
|
+
}
|
|
16356
|
+
}
|
|
16357
|
+
},
|
|
16358
|
+
callRecordingRecordPageFields: {
|
|
16359
|
+
universalIdentifier: "99fa8b47-3b11-4f9b-8fbc-e67a9e1da682",
|
|
16360
|
+
viewFieldGroups: {
|
|
16361
|
+
general: {
|
|
16362
|
+
universalIdentifier: "068426eb-dd20-49b0-ae9c-68727f3be2fb"
|
|
16363
|
+
}
|
|
16364
|
+
},
|
|
16365
|
+
viewFields: {
|
|
16366
|
+
title: {
|
|
16367
|
+
universalIdentifier: "6308d574-8579-4cf2-a020-c208df97cf3e"
|
|
16368
|
+
},
|
|
16369
|
+
status: {
|
|
16370
|
+
universalIdentifier: "93483569-fcd2-46cf-b576-9f0318ad2b3b"
|
|
16371
|
+
},
|
|
16372
|
+
startedAt: {
|
|
16373
|
+
universalIdentifier: "3fd00fbb-c153-45e3-b6e6-43d18d34052a"
|
|
16374
|
+
},
|
|
16375
|
+
endedAt: {
|
|
16376
|
+
universalIdentifier: "ba8c8d41-c112-4173-b927-5b5c5a5c047b"
|
|
16377
|
+
},
|
|
16378
|
+
video: {
|
|
16379
|
+
universalIdentifier: "acc54ade-cd26-4be2-9391-a42715ad1523"
|
|
16380
|
+
},
|
|
16381
|
+
audio: {
|
|
16382
|
+
universalIdentifier: "9445a547-1d1e-4da3-916b-2c2269c951c9"
|
|
16383
|
+
},
|
|
16384
|
+
transcript: {
|
|
16385
|
+
universalIdentifier: "782c97f6-e6b1-472b-8992-bbb60d25791b"
|
|
16386
|
+
},
|
|
16387
|
+
summary: {
|
|
16388
|
+
universalIdentifier: "a0ace064-cc72-4631-ade3-07cdded86b0e"
|
|
16389
|
+
}
|
|
16390
|
+
}
|
|
16391
|
+
}
|
|
16392
|
+
}
|
|
16393
|
+
},
|
|
16266
16394
|
company: {
|
|
16267
16395
|
universalIdentifier: "20202020-b374-4779-a561-80086cb2e17f",
|
|
16268
16396
|
fields: {
|
|
@@ -16281,18 +16409,11 @@ const xy = {
|
|
|
16281
16409
|
universalIdentifier: "20202020-0c28-43d8-8ba5-3659924d3489"
|
|
16282
16410
|
},
|
|
16283
16411
|
address: { universalIdentifier: "20202020-c5ce-4adc-b7b6-9c0979fc55e7" },
|
|
16284
|
-
employees: {
|
|
16285
|
-
universalIdentifier: "20202020-8965-464a-8a75-74bafc152a0b"
|
|
16286
|
-
},
|
|
16287
16412
|
linkedinLink: {
|
|
16288
16413
|
universalIdentifier: "20202020-ebeb-4beb-b9ad-6848036fb451"
|
|
16289
16414
|
},
|
|
16290
|
-
|
|
16291
|
-
|
|
16292
|
-
universalIdentifier: "20202020-602a-495c-9776-f5d5b11d227b"
|
|
16293
|
-
},
|
|
16294
|
-
idealCustomerProfile: {
|
|
16295
|
-
universalIdentifier: "20202020-ba6b-438a-8213-2c5ba28d76a2"
|
|
16415
|
+
annualRevenue: {
|
|
16416
|
+
universalIdentifier: "60f533b7-2166-4071-a767-ceb0286822fd"
|
|
16296
16417
|
},
|
|
16297
16418
|
position: { universalIdentifier: "20202020-9b4e-462b-991d-a0ee33326454" },
|
|
16298
16419
|
createdBy: {
|
|
@@ -16354,9 +16475,6 @@ const xy = {
|
|
|
16354
16475
|
createdAt: {
|
|
16355
16476
|
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf005"
|
|
16356
16477
|
},
|
|
16357
|
-
employees: {
|
|
16358
|
-
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf006"
|
|
16359
|
-
},
|
|
16360
16478
|
linkedinLink: {
|
|
16361
16479
|
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11cf007"
|
|
16362
16480
|
},
|
|
@@ -16388,21 +16506,12 @@ const xy = {
|
|
|
16388
16506
|
accountOwner: {
|
|
16389
16507
|
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1202"
|
|
16390
16508
|
},
|
|
16391
|
-
|
|
16392
|
-
universalIdentifier: "
|
|
16393
|
-
},
|
|
16394
|
-
idealCustomerProfile: {
|
|
16395
|
-
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1204"
|
|
16396
|
-
},
|
|
16397
|
-
employees: {
|
|
16398
|
-
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1205"
|
|
16509
|
+
annualRevenue: {
|
|
16510
|
+
universalIdentifier: "2a35f734-dea2-4de9-8395-acbce8df0f97"
|
|
16399
16511
|
},
|
|
16400
16512
|
linkedinLink: {
|
|
16401
16513
|
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1206"
|
|
16402
16514
|
},
|
|
16403
|
-
xLink: {
|
|
16404
|
-
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1207"
|
|
16405
|
-
},
|
|
16406
16515
|
address: {
|
|
16407
16516
|
universalIdentifier: "20202020-af01-4a01-8a01-c0aba11c1208"
|
|
16408
16517
|
},
|
|
@@ -17332,10 +17441,8 @@ const xy = {
|
|
|
17332
17441
|
linkedinLink: {
|
|
17333
17442
|
universalIdentifier: "20202020-f1af-48f7-893b-2007a73dd508"
|
|
17334
17443
|
},
|
|
17335
|
-
xLink: { universalIdentifier: "20202020-8fc2-487c-b84a-55a99b145cfd" },
|
|
17336
17444
|
jobTitle: { universalIdentifier: "20202020-b0d0-415a-bef9-640a26dacd9b" },
|
|
17337
17445
|
phones: { universalIdentifier: "20202020-0638-448e-8825-439134618022" },
|
|
17338
|
-
city: { universalIdentifier: "20202020-5243-4ffb-afc5-2c675da41346" },
|
|
17339
17446
|
avatarUrl: {
|
|
17340
17447
|
universalIdentifier: "20202020-b8a6-40df-961c-373dc5d2ec21"
|
|
17341
17448
|
},
|
|
@@ -17408,17 +17515,11 @@ const xy = {
|
|
|
17408
17515
|
createdAt: {
|
|
17409
17516
|
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af5"
|
|
17410
17517
|
},
|
|
17411
|
-
city: {
|
|
17412
|
-
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af6"
|
|
17413
|
-
},
|
|
17414
17518
|
jobTitle: {
|
|
17415
17519
|
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af7"
|
|
17416
17520
|
},
|
|
17417
17521
|
linkedinLink: {
|
|
17418
17522
|
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af8"
|
|
17419
|
-
},
|
|
17420
|
-
xLink: {
|
|
17421
|
-
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea11af9"
|
|
17422
17523
|
}
|
|
17423
17524
|
}
|
|
17424
17525
|
},
|
|
@@ -17454,12 +17555,6 @@ const xy = {
|
|
|
17454
17555
|
linkedinLink: {
|
|
17455
17556
|
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12205"
|
|
17456
17557
|
},
|
|
17457
|
-
xLink: {
|
|
17458
|
-
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12206"
|
|
17459
|
-
},
|
|
17460
|
-
city: {
|
|
17461
|
-
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12207"
|
|
17462
|
-
},
|
|
17463
17558
|
avatarUrl: {
|
|
17464
17559
|
universalIdentifier: "20202020-af02-4a02-8a02-ae0a1ea12208"
|
|
17465
17560
|
},
|
|
@@ -18910,6 +19005,27 @@ const xy = {
|
|
|
18910
19005
|
}
|
|
18911
19006
|
}
|
|
18912
19007
|
},
|
|
19008
|
+
callRecordingRecordPage: {
|
|
19009
|
+
universalIdentifier: "fa475fb3-3fe4-4ab8-8320-495eba5b2e58",
|
|
19010
|
+
tabs: {
|
|
19011
|
+
home: {
|
|
19012
|
+
universalIdentifier: "f61be659-f6f1-4f1f-b3f9-113370740f1b",
|
|
19013
|
+
widgets: {
|
|
19014
|
+
fields: {
|
|
19015
|
+
universalIdentifier: "e490d2dd-5b69-4518-b867-9dde815f9cb6"
|
|
19016
|
+
}
|
|
19017
|
+
}
|
|
19018
|
+
},
|
|
19019
|
+
timeline: {
|
|
19020
|
+
universalIdentifier: "9fb360fa-bc10-430c-8425-25d4e9da4386",
|
|
19021
|
+
widgets: {
|
|
19022
|
+
timeline: {
|
|
19023
|
+
universalIdentifier: "9347305a-73de-4651-a116-c67b2706beda"
|
|
19024
|
+
}
|
|
19025
|
+
}
|
|
19026
|
+
}
|
|
19027
|
+
}
|
|
19028
|
+
},
|
|
18913
19029
|
messageChannelMessageAssociationRecordPage: {
|
|
18914
19030
|
universalIdentifier: "20202020-a111-4011-8011-a5c4a5110001",
|
|
18915
19031
|
tabs: {
|
|
@@ -19015,7 +19131,7 @@ const xy = {
|
|
|
19015
19131
|
for (const t of a.widgets)
|
|
19016
19132
|
t.universalIdentifier || n.push("PageLayoutWidget must have a universalIdentifier"), t.title || n.push("PageLayoutWidget must have a title"), t.type || n.push("PageLayoutWidget must have a type");
|
|
19017
19133
|
}
|
|
19018
|
-
return
|
|
19134
|
+
return ee({ config: e, errors: n });
|
|
19019
19135
|
}, Oy = (e) => {
|
|
19020
19136
|
const n = [];
|
|
19021
19137
|
if (e.universalIdentifier || n.push("PageLayoutTab must have a universalIdentifier"), e.title || n.push("PageLayoutTab must have a title"), e.pageLayoutUniversalIdentifier || n.push(
|
|
@@ -19023,11 +19139,11 @@ const xy = {
|
|
|
19023
19139
|
), e.widgets)
|
|
19024
19140
|
for (const a of e.widgets)
|
|
19025
19141
|
a.universalIdentifier || n.push("PageLayoutWidget must have a universalIdentifier"), a.title || n.push("PageLayoutWidget must have a title"), a.type || n.push("PageLayoutWidget must have a type");
|
|
19026
|
-
return
|
|
19142
|
+
return ee({ config: e, errors: n });
|
|
19027
19143
|
}, Xy = (e) => {
|
|
19028
19144
|
const n = [];
|
|
19029
|
-
return e.universalIdentifier || n.push("Permission flag must have a universalIdentifier"), e.key || n.push("Permission flag must have a key"), e.label || n.push("Permission flag must have a label"),
|
|
19030
|
-
},
|
|
19145
|
+
return e.universalIdentifier || n.push("Permission flag must have a universalIdentifier"), e.key || n.push("Permission flag must have a key"), e.label || n.push("Permission flag must have a label"), ee({ config: e, errors: n });
|
|
19146
|
+
}, Hb = (e) => {
|
|
19031
19147
|
const n = [];
|
|
19032
19148
|
if (e.universalIdentifier || n.push("Role must have a universalIdentifier"), e.label || n.push("Role must have a label"), e.objectPermissions)
|
|
19033
19149
|
for (const a of e.objectPermissions)
|
|
@@ -19035,11 +19151,11 @@ const xy = {
|
|
|
19035
19151
|
if (e.fieldPermissions)
|
|
19036
19152
|
for (const a of e.fieldPermissions)
|
|
19037
19153
|
a.objectUniversalIdentifier || n.push("Field permission must have an objectUniversalIdentifier"), a.fieldUniversalIdentifier || n.push("Field permission must have a fieldUniversalIdentifier");
|
|
19038
|
-
return
|
|
19039
|
-
},
|
|
19154
|
+
return ee({ config: e, errors: n });
|
|
19155
|
+
}, Fy = (e) => Hb(e);
|
|
19040
19156
|
Y.TS_VECTOR, Y.ARRAY, Y.MULTI_SELECT, Y.RAW_JSON;
|
|
19041
19157
|
Ve.DAY, Ve.WEEK, Ve.MONTH, Ve.QUARTER, Ve.YEAR;
|
|
19042
|
-
const
|
|
19158
|
+
const Hy = {
|
|
19043
19159
|
API_KEYS_AND_WEBHOOKS: "beb99803-9a0e-588d-9c4b-3dd14d9cdf21",
|
|
19044
19160
|
WORKSPACE: "86a58859-a539-5fa8-ba18-a6aaddc811b6",
|
|
19045
19161
|
WORKSPACE_MEMBERS: "ec342166-2df7-53e7-aa9b-64992d6cb35f",
|
|
@@ -19067,7 +19183,7 @@ const Fy = {
|
|
|
19067
19183
|
PROFILE_INFORMATION: "7c13f23f-78d8-5e7d-8963-a7c8772fb4e8"
|
|
19068
19184
|
}, Ry = (e) => {
|
|
19069
19185
|
const n = [];
|
|
19070
|
-
return e.universalIdentifier || n.push("Skill must have a universalIdentifier"), e.name || n.push("Skill must have a name"), e.label || n.push("Skill must have a label"), e.content || n.push("Skill must have content"),
|
|
19186
|
+
return e.universalIdentifier || n.push("Skill must have a universalIdentifier"), e.name || n.push("Skill must have a name"), e.label || n.push("Skill must have a label"), e.content || n.push("Skill must have content"), ee({ config: e, errors: n });
|
|
19071
19187
|
}, By = (e) => {
|
|
19072
19188
|
const n = [];
|
|
19073
19189
|
if (e.universalIdentifier || n.push("View must have a universalIdentifier"), e.name || n.push("View must have a name"), e.objectUniversalIdentifier || n.push("View must have an objectUniversalIdentifier"), e.fields)
|
|
@@ -19090,7 +19206,10 @@ const Fy = {
|
|
|
19090
19206
|
a.universalIdentifier || n.push("ViewSort must have a universalIdentifier"), a.fieldMetadataUniversalIdentifier || n.push("ViewSort must have a fieldMetadataUniversalIdentifier"), a.direction !== _n.ASC && a.direction !== _n.DESC && n.push(
|
|
19091
19207
|
`ViewSort direction must be '${_n.ASC}' or '${_n.DESC}'`
|
|
19092
19208
|
);
|
|
19093
|
-
return
|
|
19209
|
+
return ee({ config: e, errors: n });
|
|
19210
|
+
}, zy = (e) => {
|
|
19211
|
+
const n = [];
|
|
19212
|
+
return e.universalIdentifier || n.push("View field must have a universalIdentifier"), e.viewUniversalIdentifier || n.push("View field must have a viewUniversalIdentifier"), e.fieldMetadataUniversalIdentifier || n.push("View field must have a fieldMetadataUniversalIdentifier"), ee({ config: e, errors: n });
|
|
19094
19213
|
};
|
|
19095
19214
|
export {
|
|
19096
19215
|
p1 as AggregateOperations,
|
|
@@ -19108,7 +19227,7 @@ export {
|
|
|
19108
19227
|
xy as STANDARD_OBJECT_UNIVERSAL_IDENTIFIERS,
|
|
19109
19228
|
Ey as STANDARD_PAGE_LAYOUT,
|
|
19110
19229
|
Ey as STANDARD_PAGE_LAYOUT_UNIVERSAL_IDENTIFIERS,
|
|
19111
|
-
|
|
19230
|
+
Hy as SystemPermissionFlag,
|
|
19112
19231
|
Z1 as ViewCalendarLayout,
|
|
19113
19232
|
D1 as ViewFilterGroupLogicalOperator,
|
|
19114
19233
|
I as ViewFilterOperand,
|
|
@@ -19119,10 +19238,10 @@ export {
|
|
|
19119
19238
|
A1 as ViewVisibility,
|
|
19120
19239
|
ly as canAccessFullAdminPanel,
|
|
19121
19240
|
dy as canImpersonate,
|
|
19122
|
-
|
|
19241
|
+
ee as createValidationResult,
|
|
19123
19242
|
zb as defineAgent,
|
|
19124
19243
|
Gb as defineApplication,
|
|
19125
|
-
|
|
19244
|
+
Fy as defineApplicationRole,
|
|
19126
19245
|
Ub as defineCommandMenuItem,
|
|
19127
19246
|
Dy as defineConnectionProvider,
|
|
19128
19247
|
Qb as defineField,
|
|
@@ -19136,9 +19255,10 @@ export {
|
|
|
19136
19255
|
Xy as definePermissionFlag,
|
|
19137
19256
|
Ty as definePostInstallLogicFunction,
|
|
19138
19257
|
Zy as definePreInstallLogicFunction,
|
|
19139
|
-
|
|
19258
|
+
Hb as defineRole,
|
|
19140
19259
|
Ry as defineSkill,
|
|
19141
19260
|
By as defineView,
|
|
19261
|
+
zy as defineViewField,
|
|
19142
19262
|
by as every,
|
|
19143
19263
|
yy as everyDefined,
|
|
19144
19264
|
my as everyEquals,
|