@socotra/ec-react-schemas 2.26.1-next.12 → 2.26.1-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +41 -41
- package/dist/index.es.js +90 -88
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -214,7 +214,7 @@ const qp = (n) => {
|
|
|
214
214
|
throw new Error(`Unknown data type: ${r}`);
|
|
215
215
|
}
|
|
216
216
|
}, Sn = /* @__PURE__ */ new Set(["string", "number", "symbol"]), Ti = /* @__PURE__ */ new Set(["string", "number", "bigint", "boolean", "symbol", "undefined"]);
|
|
217
|
-
function
|
|
217
|
+
function Me(n) {
|
|
218
218
|
return n.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
219
219
|
}
|
|
220
220
|
function Se(n, r, c) {
|
|
@@ -502,7 +502,7 @@ const Ui = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
502
502
|
createTransparentProxy: zp,
|
|
503
503
|
defineLazy: G,
|
|
504
504
|
esc: yo,
|
|
505
|
-
escapeRegex:
|
|
505
|
+
escapeRegex: Me,
|
|
506
506
|
extend: zi,
|
|
507
507
|
finalizeIssue: Te,
|
|
508
508
|
floatSafeRemainder: _i,
|
|
@@ -1059,7 +1059,7 @@ const tf = /^[0-9a-fA-F]{32}$/, nf = /* @__PURE__ */ Bt(22, "=="), of = /* @__PU
|
|
|
1059
1059
|
r.pattern ?? (r.pattern = Sc), Ft.init(n, r);
|
|
1060
1060
|
}), Ec = /* @__PURE__ */ S("$ZodCheckIncludes", (n, r) => {
|
|
1061
1061
|
Y.init(n, r);
|
|
1062
|
-
const c =
|
|
1062
|
+
const c = Me(r.includes), s = new RegExp(typeof r.position == "number" ? `^.{${r.position}}${c}` : c);
|
|
1063
1063
|
r.pattern = s, n._zod.onattach.push((o) => {
|
|
1064
1064
|
const i = o._zod.bag;
|
|
1065
1065
|
i.patterns ?? (i.patterns = /* @__PURE__ */ new Set()), i.patterns.add(s);
|
|
@@ -1076,7 +1076,7 @@ const tf = /^[0-9a-fA-F]{32}$/, nf = /* @__PURE__ */ Bt(22, "=="), of = /* @__PU
|
|
|
1076
1076
|
};
|
|
1077
1077
|
}), Pc = /* @__PURE__ */ S("$ZodCheckStartsWith", (n, r) => {
|
|
1078
1078
|
Y.init(n, r);
|
|
1079
|
-
const c = new RegExp(`^${
|
|
1079
|
+
const c = new RegExp(`^${Me(r.prefix)}.*`);
|
|
1080
1080
|
r.pattern ?? (r.pattern = c), n._zod.onattach.push((s) => {
|
|
1081
1081
|
const o = s._zod.bag;
|
|
1082
1082
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(c);
|
|
@@ -1093,7 +1093,7 @@ const tf = /^[0-9a-fA-F]{32}$/, nf = /* @__PURE__ */ Bt(22, "=="), of = /* @__PU
|
|
|
1093
1093
|
};
|
|
1094
1094
|
}), Uc = /* @__PURE__ */ S("$ZodCheckEndsWith", (n, r) => {
|
|
1095
1095
|
Y.init(n, r);
|
|
1096
|
-
const c = new RegExp(`.*${
|
|
1096
|
+
const c = new RegExp(`.*${Me(r.suffix)}$`);
|
|
1097
1097
|
r.pattern ?? (r.pattern = c), n._zod.onattach.push((s) => {
|
|
1098
1098
|
const o = s._zod.bag;
|
|
1099
1099
|
o.patterns ?? (o.patterns = /* @__PURE__ */ new Set()), o.patterns.add(c);
|
|
@@ -2046,7 +2046,7 @@ function Qr(n, r) {
|
|
|
2046
2046
|
const Es = /* @__PURE__ */ S("$ZodEnum", (n, r) => {
|
|
2047
2047
|
O.init(n, r);
|
|
2048
2048
|
const c = Lo(r.entries), s = new Set(c);
|
|
2049
|
-
n._zod.values = s, n._zod.pattern = new RegExp(`^(${c.filter((o) => Sn.has(typeof o)).map((o) => typeof o == "string" ?
|
|
2049
|
+
n._zod.values = s, n._zod.pattern = new RegExp(`^(${c.filter((o) => Sn.has(typeof o)).map((o) => typeof o == "string" ? Me(o) : o.toString()).join("|")})$`), n._zod.parse = (o, i) => {
|
|
2050
2050
|
const d = o.value;
|
|
2051
2051
|
return s.has(d) || o.issues.push({
|
|
2052
2052
|
code: "invalid_value",
|
|
@@ -2058,7 +2058,7 @@ const Es = /* @__PURE__ */ S("$ZodEnum", (n, r) => {
|
|
|
2058
2058
|
}), Ps = /* @__PURE__ */ S("$ZodLiteral", (n, r) => {
|
|
2059
2059
|
if (O.init(n, r), r.values.length === 0)
|
|
2060
2060
|
throw new Error("Cannot create literal schema with no valid values");
|
|
2061
|
-
n._zod.values = new Set(r.values), n._zod.pattern = new RegExp(`^(${r.values.map((c) => typeof c == "string" ?
|
|
2061
|
+
n._zod.values = new Set(r.values), n._zod.pattern = new RegExp(`^(${r.values.map((c) => typeof c == "string" ? Me(c) : c ? Me(c.toString()) : String(c)).join("|")})$`), n._zod.parse = (c, s) => {
|
|
2062
2062
|
const o = c.value;
|
|
2063
2063
|
return n._zod.values.has(o) || c.issues.push({
|
|
2064
2064
|
code: "invalid_value",
|
|
@@ -2235,7 +2235,7 @@ const Vs = /* @__PURE__ */ S("$ZodTemplateLiteral", (n, r) => {
|
|
|
2235
2235
|
const i = o.startsWith("^") ? 1 : 0, d = o.endsWith("$") ? o.length - 1 : o.length;
|
|
2236
2236
|
c.push(o.slice(i, d));
|
|
2237
2237
|
} else if (s === null || Ti.has(typeof s))
|
|
2238
|
-
c.push(
|
|
2238
|
+
c.push(Me(`${s}`));
|
|
2239
2239
|
else
|
|
2240
2240
|
throw new Error(`Invalid template literal part: ${s}`);
|
|
2241
2241
|
n._zod.pattern = new RegExp(`^${c.join("")}$`), n._zod.parse = (s, o) => typeof s.value != "string" ? (s.issues.push({
|
|
@@ -10971,10 +10971,10 @@ a({
|
|
|
10971
10971
|
invoicingPlanName: t(e()),
|
|
10972
10972
|
paymentExecutionRetryPlanName: t(e())
|
|
10973
10973
|
});
|
|
10974
|
-
const
|
|
10974
|
+
const Ee = a({
|
|
10975
10975
|
action: e()
|
|
10976
10976
|
});
|
|
10977
|
-
|
|
10977
|
+
Ee.and(a({
|
|
10978
10978
|
action: ae("AddChangeInstructionResponse")
|
|
10979
10979
|
})).and(a({
|
|
10980
10980
|
locator: e(),
|
|
@@ -10989,7 +10989,7 @@ Ne.and(a({
|
|
|
10989
10989
|
a({
|
|
10990
10990
|
action: e()
|
|
10991
10991
|
});
|
|
10992
|
-
|
|
10992
|
+
Ee.and(a({
|
|
10993
10993
|
action: ae("DeleteChangeInstructionResponse")
|
|
10994
10994
|
})).and(a({
|
|
10995
10995
|
locator: e(),
|
|
@@ -11018,7 +11018,7 @@ a({
|
|
|
11018
11018
|
"policyLine"
|
|
11019
11019
|
]))
|
|
11020
11020
|
});
|
|
11021
|
-
|
|
11021
|
+
Ee.and(a({
|
|
11022
11022
|
action: ae("ModifyChangeInstructionResponse")
|
|
11023
11023
|
})).and(a({
|
|
11024
11024
|
locator: e(),
|
|
@@ -11034,7 +11034,7 @@ Ne.and(a({
|
|
|
11034
11034
|
setCoverageTerms: p(e(), p(e(), _())),
|
|
11035
11035
|
removeCoverageTerms: p(e(), p(e(), _()))
|
|
11036
11036
|
}));
|
|
11037
|
-
|
|
11037
|
+
Ee.and(a({
|
|
11038
11038
|
action: ae("ParamsChangeInstructionResponse")
|
|
11039
11039
|
})).and(a({
|
|
11040
11040
|
locator: e(),
|
|
@@ -11108,7 +11108,7 @@ const Xn = a({
|
|
|
11108
11108
|
contacts: t(m(ee)),
|
|
11109
11109
|
invoicingPlanName: t(e()),
|
|
11110
11110
|
paymentExecutionRetryPlanName: t(e())
|
|
11111
|
-
}),
|
|
11111
|
+
}), Pe = Ee.and(a({
|
|
11112
11112
|
action: ae("AddChangeInstructionCreateRequest")
|
|
11113
11113
|
})).and(a({
|
|
11114
11114
|
locator: e(),
|
|
@@ -11162,7 +11162,7 @@ const av = a({
|
|
|
11162
11162
|
renewalTransactionAcceptTime: t(h()),
|
|
11163
11163
|
renewalTransactionIssueTime: t(h()),
|
|
11164
11164
|
renewalTransactionLocator: t(e())
|
|
11165
|
-
}),
|
|
11165
|
+
}), Ue = Ee.and(a({
|
|
11166
11166
|
action: ae("DeleteChangeInstructionCreateRequest")
|
|
11167
11167
|
})).and(a({
|
|
11168
11168
|
locator: e(),
|
|
@@ -11173,7 +11173,7 @@ const av = a({
|
|
|
11173
11173
|
"delete"
|
|
11174
11174
|
]),
|
|
11175
11175
|
staticElementLocators: m(e())
|
|
11176
|
-
})),
|
|
11176
|
+
})), Oe = Ee.and(a({
|
|
11177
11177
|
action: ae("ModifyChangeInstructionCreateRequest")
|
|
11178
11178
|
})).and(a({
|
|
11179
11179
|
locator: e(),
|
|
@@ -11188,7 +11188,7 @@ const av = a({
|
|
|
11188
11188
|
removeData: p(e(), p(e(), _())),
|
|
11189
11189
|
setCoverageTerms: p(e(), p(e(), _())),
|
|
11190
11190
|
removeCoverageTerms: p(e(), p(e(), _()))
|
|
11191
|
-
})), Ae =
|
|
11191
|
+
})), Ae = Ee.and(a({
|
|
11192
11192
|
action: ae("ParamsChangeInstructionCreateRequest")
|
|
11193
11193
|
})).and(a({
|
|
11194
11194
|
locator: e(),
|
|
@@ -11476,9 +11476,9 @@ a({
|
|
|
11476
11476
|
m(at);
|
|
11477
11477
|
a({
|
|
11478
11478
|
body: W([
|
|
11479
|
-
Ee,
|
|
11480
11479
|
Pe,
|
|
11481
11480
|
Ue,
|
|
11481
|
+
Oe,
|
|
11482
11482
|
Ae
|
|
11483
11483
|
]),
|
|
11484
11484
|
path: a({
|
|
@@ -12176,9 +12176,9 @@ a({
|
|
|
12176
12176
|
});
|
|
12177
12177
|
a({
|
|
12178
12178
|
body: W([
|
|
12179
|
-
Ee,
|
|
12180
12179
|
Pe,
|
|
12181
12180
|
Ue,
|
|
12181
|
+
Oe,
|
|
12182
12182
|
Ae
|
|
12183
12183
|
]),
|
|
12184
12184
|
path: a({
|
|
@@ -12474,9 +12474,9 @@ a({
|
|
|
12474
12474
|
});
|
|
12475
12475
|
a({
|
|
12476
12476
|
body: m(W([
|
|
12477
|
-
Ee,
|
|
12478
12477
|
Pe,
|
|
12479
12478
|
Ue,
|
|
12479
|
+
Oe,
|
|
12480
12480
|
Ae
|
|
12481
12481
|
])),
|
|
12482
12482
|
path: a({
|
|
@@ -12490,9 +12490,9 @@ a({
|
|
|
12490
12490
|
});
|
|
12491
12491
|
a({
|
|
12492
12492
|
body: m(W([
|
|
12493
|
-
Ee,
|
|
12494
12493
|
Pe,
|
|
12495
12494
|
Ue,
|
|
12495
|
+
Oe,
|
|
12496
12496
|
Ae
|
|
12497
12497
|
])),
|
|
12498
12498
|
path: a({
|
|
@@ -12506,9 +12506,9 @@ a({
|
|
|
12506
12506
|
});
|
|
12507
12507
|
a({
|
|
12508
12508
|
body: m(W([
|
|
12509
|
-
Ee,
|
|
12510
12509
|
Pe,
|
|
12511
12510
|
Ue,
|
|
12511
|
+
Oe,
|
|
12512
12512
|
Ae
|
|
12513
12513
|
])),
|
|
12514
12514
|
path: a({
|
|
@@ -12522,9 +12522,9 @@ a({
|
|
|
12522
12522
|
});
|
|
12523
12523
|
a({
|
|
12524
12524
|
body: m(W([
|
|
12525
|
-
Ee,
|
|
12526
12525
|
Pe,
|
|
12527
12526
|
Ue,
|
|
12527
|
+
Oe,
|
|
12528
12528
|
Ae
|
|
12529
12529
|
])),
|
|
12530
12530
|
path: a({
|
|
@@ -12546,9 +12546,9 @@ a({
|
|
|
12546
12546
|
});
|
|
12547
12547
|
a({
|
|
12548
12548
|
body: m(W([
|
|
12549
|
-
Ee,
|
|
12550
12549
|
Pe,
|
|
12551
12550
|
Ue,
|
|
12551
|
+
Oe,
|
|
12552
12552
|
Ae
|
|
12553
12553
|
])),
|
|
12554
12554
|
path: a({
|
|
@@ -12561,9 +12561,9 @@ a({
|
|
|
12561
12561
|
});
|
|
12562
12562
|
a({
|
|
12563
12563
|
body: t(m(W([
|
|
12564
|
-
Ee,
|
|
12565
12564
|
Pe,
|
|
12566
12565
|
Ue,
|
|
12566
|
+
Oe,
|
|
12567
12567
|
Ae
|
|
12568
12568
|
]))),
|
|
12569
12569
|
path: a({
|
|
@@ -12592,9 +12592,9 @@ a({
|
|
|
12592
12592
|
});
|
|
12593
12593
|
a({
|
|
12594
12594
|
body: m(W([
|
|
12595
|
-
Ee,
|
|
12596
12595
|
Pe,
|
|
12597
12596
|
Ue,
|
|
12597
|
+
Oe,
|
|
12598
12598
|
Ae
|
|
12599
12599
|
])),
|
|
12600
12600
|
path: a({
|
|
@@ -13304,7 +13304,7 @@ const ft = l(), E = We(), lv = sl(), A = h(), BT = h({
|
|
|
13304
13304
|
}), Ie = p(e(), e()), F = p(e(), C()), MT = p(
|
|
13305
13305
|
e(),
|
|
13306
13306
|
p(e(), _())
|
|
13307
|
-
), Ke = ft, Z = lv, le = E,
|
|
13307
|
+
), Ke = ft, Z = lv, le = E, Fe = E, qe = E, ut = E, gn = E, FT = E, yt = E, pr = E, Re = E, dv = E, fr = E, $d = E, _d = E, _o = E, Ld = E, mv = E;
|
|
13308
13308
|
function H(n) {
|
|
13309
13309
|
return a({
|
|
13310
13310
|
listCompleted: y(),
|
|
@@ -13316,7 +13316,7 @@ function pv(n) {
|
|
|
13316
13316
|
}
|
|
13317
13317
|
const fv = a({
|
|
13318
13318
|
...Kl.shape,
|
|
13319
|
-
locator:
|
|
13319
|
+
locator: Fe.optional(),
|
|
13320
13320
|
elementType: e().optional(),
|
|
13321
13321
|
errors: m(e()).optional()
|
|
13322
13322
|
}), X = a({
|
|
@@ -16536,20 +16536,20 @@ a({
|
|
|
16536
16536
|
listCompleted: y(),
|
|
16537
16537
|
items: m(Sr)
|
|
16538
16538
|
});
|
|
16539
|
-
const
|
|
16539
|
+
const Ze = a({
|
|
16540
16540
|
locator: e()
|
|
16541
16541
|
}), Ub = a({
|
|
16542
16542
|
fnolLocator: e(),
|
|
16543
16543
|
claimLocator: e()
|
|
16544
16544
|
}), am = a({
|
|
16545
|
-
"claim.fnol.update": t(
|
|
16546
|
-
"claim.fnol.complete": t(
|
|
16547
|
-
"claim.fnol.validate": t(
|
|
16548
|
-
"claim.fnol.create": t(
|
|
16549
|
-
"claim.fnol.anonymize": t(
|
|
16550
|
-
"fnol.numberAssignmentFailed": t(
|
|
16551
|
-
"claim.fnol.reject": t(
|
|
16552
|
-
"claim.fnol.discard": t(
|
|
16545
|
+
"claim.fnol.update": t(Ze),
|
|
16546
|
+
"claim.fnol.complete": t(Ze),
|
|
16547
|
+
"claim.fnol.validate": t(Ze),
|
|
16548
|
+
"claim.fnol.create": t(Ze),
|
|
16549
|
+
"claim.fnol.anonymize": t(Ze),
|
|
16550
|
+
"fnol.numberAssignmentFailed": t(Ze),
|
|
16551
|
+
"claim.fnol.reject": t(Ze),
|
|
16552
|
+
"claim.fnol.discard": t(Ze),
|
|
16553
16553
|
"claim.fnol.onclaim": t(Ub)
|
|
16554
16554
|
});
|
|
16555
16555
|
a({
|
|
@@ -17396,7 +17396,7 @@ const Mb = a({
|
|
|
17396
17396
|
}), wS = a({
|
|
17397
17397
|
attempts: g(),
|
|
17398
17398
|
hoursBetweenAttempts: m(b())
|
|
17399
|
-
}),
|
|
17399
|
+
}), je = a({
|
|
17400
17400
|
defaultTimeZone: e(),
|
|
17401
17401
|
defaultCurrency: e(),
|
|
17402
17402
|
defaultTermDuration: b(),
|
|
@@ -17578,7 +17578,7 @@ a({
|
|
|
17578
17578
|
plugins: p(e(), p(e(), e()))
|
|
17579
17579
|
});
|
|
17580
17580
|
a({
|
|
17581
|
-
body: t(
|
|
17581
|
+
body: t(je),
|
|
17582
17582
|
path: t(u()),
|
|
17583
17583
|
query: t(u())
|
|
17584
17584
|
});
|
|
@@ -17591,33 +17591,33 @@ a({
|
|
|
17591
17591
|
});
|
|
17592
17592
|
p(e(), dm);
|
|
17593
17593
|
a({
|
|
17594
|
-
body: t(
|
|
17594
|
+
body: t(je),
|
|
17595
17595
|
path: a({
|
|
17596
17596
|
tenantLocator: l()
|
|
17597
17597
|
}),
|
|
17598
17598
|
query: t(u())
|
|
17599
17599
|
});
|
|
17600
17600
|
a({
|
|
17601
|
-
body: t(
|
|
17601
|
+
body: t(je),
|
|
17602
17602
|
path: t(u()),
|
|
17603
17603
|
query: t(u())
|
|
17604
17604
|
});
|
|
17605
17605
|
a({
|
|
17606
|
-
body: t(
|
|
17606
|
+
body: t(je),
|
|
17607
17607
|
path: a({
|
|
17608
17608
|
tenantLocator: l()
|
|
17609
17609
|
}),
|
|
17610
17610
|
query: t(u())
|
|
17611
17611
|
});
|
|
17612
17612
|
a({
|
|
17613
|
-
body: t(
|
|
17613
|
+
body: t(je),
|
|
17614
17614
|
path: a({
|
|
17615
17615
|
tenantLocator: l()
|
|
17616
17616
|
}),
|
|
17617
17617
|
query: t(u())
|
|
17618
17618
|
});
|
|
17619
17619
|
a({
|
|
17620
|
-
body: t(
|
|
17620
|
+
body: t(je),
|
|
17621
17621
|
path: a({
|
|
17622
17622
|
tenantLocator: l()
|
|
17623
17623
|
}),
|
|
@@ -17646,7 +17646,7 @@ a({
|
|
|
17646
17646
|
}))
|
|
17647
17647
|
});
|
|
17648
17648
|
a({
|
|
17649
|
-
body: t(
|
|
17649
|
+
body: t(je),
|
|
17650
17650
|
path: t(u()),
|
|
17651
17651
|
query: t(a({
|
|
17652
17652
|
name: t(e()),
|
|
@@ -17654,7 +17654,7 @@ a({
|
|
|
17654
17654
|
}))
|
|
17655
17655
|
});
|
|
17656
17656
|
a({
|
|
17657
|
-
body: t(
|
|
17657
|
+
body: t(je),
|
|
17658
17658
|
path: t(u()),
|
|
17659
17659
|
query: t(u())
|
|
17660
17660
|
});
|
|
@@ -17698,7 +17698,7 @@ a({
|
|
|
17698
17698
|
tenantLocator: l()
|
|
17699
17699
|
}),
|
|
17700
17700
|
query: a({
|
|
17701
|
-
config:
|
|
17701
|
+
config: je
|
|
17702
17702
|
})
|
|
17703
17703
|
});
|
|
17704
17704
|
p(e(), xS);
|
|
@@ -18547,17 +18547,17 @@ a({
|
|
|
18547
18547
|
listCompleted: y(),
|
|
18548
18548
|
items: m(a$)
|
|
18549
18549
|
});
|
|
18550
|
-
const
|
|
18550
|
+
const Be = a({
|
|
18551
18551
|
migrationLocator: e()
|
|
18552
18552
|
}), wm = a({
|
|
18553
|
-
"migration.start": t(
|
|
18554
|
-
"migration.error": t(
|
|
18555
|
-
"migration.resume": t(
|
|
18556
|
-
"migration.recover": t(
|
|
18557
|
-
"migration.patch": t(
|
|
18558
|
-
"migration.finish": t(
|
|
18559
|
-
"migration.pause": t(
|
|
18560
|
-
"migration.fail": t(
|
|
18553
|
+
"migration.start": t(Be),
|
|
18554
|
+
"migration.error": t(Be),
|
|
18555
|
+
"migration.resume": t(Be),
|
|
18556
|
+
"migration.recover": t(Be),
|
|
18557
|
+
"migration.patch": t(Be),
|
|
18558
|
+
"migration.finish": t(Be),
|
|
18559
|
+
"migration.pause": t(Be),
|
|
18560
|
+
"migration.fail": t(Be)
|
|
18561
18561
|
});
|
|
18562
18562
|
a({
|
|
18563
18563
|
migrationEvents: wm
|
|
@@ -19488,7 +19488,7 @@ const B$ = [
|
|
|
19488
19488
|
createdTime: e().optional(),
|
|
19489
19489
|
level: Gm.optional(),
|
|
19490
19490
|
note: e().optional()
|
|
19491
|
-
}),
|
|
19491
|
+
}), Ne = a({
|
|
19492
19492
|
...De.shape,
|
|
19493
19493
|
locator: E,
|
|
19494
19494
|
level: Om,
|
|
@@ -19496,7 +19496,7 @@ const B$ = [
|
|
|
19496
19496
|
referenceLocator: E.optional(),
|
|
19497
19497
|
note: e().optional(),
|
|
19498
19498
|
tag: e().optional(),
|
|
19499
|
-
elementLocator:
|
|
19499
|
+
elementLocator: Fe.optional(),
|
|
19500
19500
|
createdBy: ft.optional(),
|
|
19501
19501
|
createdTime: A.optional(),
|
|
19502
19502
|
clearedBy: ft.optional(),
|
|
@@ -19511,7 +19511,7 @@ const B$ = [
|
|
|
19511
19511
|
clearFlags: e().array()
|
|
19512
19512
|
}), K$ = a({
|
|
19513
19513
|
...$e.shape,
|
|
19514
|
-
elementLocator:
|
|
19514
|
+
elementLocator: Fe.optional(),
|
|
19515
19515
|
level: Om,
|
|
19516
19516
|
note: e().optional(),
|
|
19517
19517
|
tag: e().optional(),
|
|
@@ -19930,9 +19930,9 @@ const B$ = [
|
|
|
19930
19930
|
data: p(e(), Ge).optional()
|
|
19931
19931
|
}), ik = p(e(), H_), X_ = W([an, e()]), ck = f(["accept", "issue"]), sk = rr, Y_ = a({
|
|
19932
19932
|
type: e(),
|
|
19933
|
-
locator:
|
|
19933
|
+
locator: Fe,
|
|
19934
19934
|
staticLocator: E,
|
|
19935
|
-
parentLocator:
|
|
19935
|
+
parentLocator: Fe,
|
|
19936
19936
|
originalEffectiveTime: A.optional(),
|
|
19937
19937
|
category: v$.optional(),
|
|
19938
19938
|
data: F.optional(),
|
|
@@ -19943,14 +19943,14 @@ const B$ = [
|
|
|
19943
19943
|
}), eL = a({
|
|
19944
19944
|
type: e(),
|
|
19945
19945
|
staticLocator: E.optional(),
|
|
19946
|
-
parentLocator:
|
|
19946
|
+
parentLocator: Fe,
|
|
19947
19947
|
data: F,
|
|
19948
19948
|
coverageTerms: Ie
|
|
19949
19949
|
}), Pr = eL.extend({
|
|
19950
19950
|
elements: se(() => Pr.array().optional())
|
|
19951
19951
|
}), tL = Xn.extend(
|
|
19952
19952
|
a({
|
|
19953
|
-
locator:
|
|
19953
|
+
locator: Fe,
|
|
19954
19954
|
setData: F,
|
|
19955
19955
|
removeData: F,
|
|
19956
19956
|
setCoverageTerms: Ie,
|
|
@@ -20182,8 +20182,8 @@ const B$ = [
|
|
|
20182
20182
|
}), Tk = jg.extend(
|
|
20183
20183
|
a({
|
|
20184
20184
|
quoteLocator: Re,
|
|
20185
|
-
flags: m(
|
|
20186
|
-
clearedFlags: m(
|
|
20185
|
+
flags: m(Ne).optional(),
|
|
20186
|
+
clearedFlags: m(Ne).optional()
|
|
20187
20187
|
}).shape
|
|
20188
20188
|
), kk = a({
|
|
20189
20189
|
...Gg.shape,
|
|
@@ -20195,7 +20195,7 @@ const B$ = [
|
|
|
20195
20195
|
endTime: A.optional(),
|
|
20196
20196
|
expirationTime: A.optional(),
|
|
20197
20197
|
durationBasis: ve.optional(),
|
|
20198
|
-
underwritingFlags: m(
|
|
20198
|
+
underwritingFlags: m(Ne).optional(),
|
|
20199
20199
|
validationResult: X.optional()
|
|
20200
20200
|
}).partial(), sL = f(["clear", "delete"]), wk = a({
|
|
20201
20201
|
deleteAllAutomaticDocuments: y(),
|
|
@@ -20500,7 +20500,7 @@ const B$ = [
|
|
|
20500
20500
|
effectiveTime: e(),
|
|
20501
20501
|
transactionCategory: xr,
|
|
20502
20502
|
underwritingStatus: St.optional(),
|
|
20503
|
-
underwritingFlags:
|
|
20503
|
+
underwritingFlags: Ne.array().optional(),
|
|
20504
20504
|
validationResult: X.optional()
|
|
20505
20505
|
}), Vk = yi.extend({
|
|
20506
20506
|
aggregatedTransactions: m(yi).optional()
|
|
@@ -20509,10 +20509,12 @@ const B$ = [
|
|
|
20509
20509
|
}).omit({
|
|
20510
20510
|
aggregatedTransactions: !0,
|
|
20511
20511
|
validationResult: !0,
|
|
20512
|
-
underwritingStatus: !0
|
|
20512
|
+
underwritingStatus: !0,
|
|
20513
|
+
underwritingFlags: !0
|
|
20513
20514
|
}).extend({
|
|
20514
20515
|
validationResult: X.optional(),
|
|
20515
|
-
underwritingStatus: St.optional()
|
|
20516
|
+
underwritingStatus: St.optional(),
|
|
20517
|
+
underwritingFlags: Ne.array().optional()
|
|
20516
20518
|
}), Qk = gi.extend({
|
|
20517
20519
|
underwritingStatus: St.optional(),
|
|
20518
20520
|
aggregatedTransactions: m(gi).optional(),
|
|
@@ -20525,13 +20527,13 @@ const B$ = [
|
|
|
20525
20527
|
resetFlags: m(e()).optional()
|
|
20526
20528
|
}), Xk = a({
|
|
20527
20529
|
transactionLocator: e(),
|
|
20528
|
-
clearedFlags:
|
|
20529
|
-
flags:
|
|
20530
|
+
clearedFlags: Ne.array().optional(),
|
|
20531
|
+
flags: Ne.array().optional(),
|
|
20530
20532
|
validationResult: X.optional()
|
|
20531
20533
|
}), Yk = a({
|
|
20532
20534
|
transactionLocator: e(),
|
|
20533
|
-
clearedFlags:
|
|
20534
|
-
flags:
|
|
20535
|
+
clearedFlags: Ne.array().optional(),
|
|
20536
|
+
flags: Ne.array().optional(),
|
|
20535
20537
|
validationResult: X.optional()
|
|
20536
20538
|
}), _L = f([
|
|
20537
20539
|
"draft",
|
|
@@ -21459,11 +21461,11 @@ const dw = a({
|
|
|
21459
21461
|
a({
|
|
21460
21462
|
locator: E,
|
|
21461
21463
|
reversalOfLocator: E.optional(),
|
|
21462
|
-
elementLocator:
|
|
21464
|
+
elementLocator: Fe,
|
|
21463
21465
|
elementStaticLocator: E,
|
|
21464
21466
|
chargeCategory: h$
|
|
21465
21467
|
}).shape
|
|
21466
|
-
), co =
|
|
21468
|
+
), co = Ee.extend(
|
|
21467
21469
|
a({ locator: E, action: f$ }).shape
|
|
21468
21470
|
), lT = co.extend(
|
|
21469
21471
|
a({ elements: m(Pr) }).shape
|
|
@@ -21749,13 +21751,13 @@ const dw = a({
|
|
|
21749
21751
|
}), be = W([
|
|
21750
21752
|
up,
|
|
21751
21753
|
IT
|
|
21752
|
-
]),
|
|
21754
|
+
]), Ce = a({
|
|
21753
21755
|
tenantLocator: Ke
|
|
21754
|
-
}), rI =
|
|
21756
|
+
}), rI = Ce.extend(
|
|
21755
21757
|
a({
|
|
21756
21758
|
userLocator: Z
|
|
21757
21759
|
}).shape
|
|
21758
|
-
), AT =
|
|
21760
|
+
), AT = Ce.extend(
|
|
21759
21761
|
a({
|
|
21760
21762
|
userAssociationLocator: $d
|
|
21761
21763
|
}).shape
|
|
@@ -21763,16 +21765,16 @@ const dw = a({
|
|
|
21763
21765
|
a({
|
|
21764
21766
|
userLocator: Z
|
|
21765
21767
|
}).shape
|
|
21766
|
-
), cI =
|
|
21768
|
+
), cI = Ce.extend(
|
|
21767
21769
|
a({
|
|
21768
21770
|
userLocator: Z
|
|
21769
21771
|
}).shape
|
|
21770
|
-
), sI =
|
|
21772
|
+
), sI = Ce.extend(
|
|
21771
21773
|
a({
|
|
21772
21774
|
referenceType: e(),
|
|
21773
21775
|
referenceLocator: E
|
|
21774
21776
|
}).shape
|
|
21775
|
-
), qT =
|
|
21777
|
+
), qT = Ce.extend(
|
|
21776
21778
|
a({
|
|
21777
21779
|
taskLocator: fr
|
|
21778
21780
|
}).shape
|
|
@@ -21780,21 +21782,21 @@ const dw = a({
|
|
|
21780
21782
|
a({
|
|
21781
21783
|
userLocator: Z
|
|
21782
21784
|
}).shape
|
|
21783
|
-
), lI =
|
|
21785
|
+
), lI = Ce.extend(
|
|
21784
21786
|
a({
|
|
21785
21787
|
userLocator: Z
|
|
21786
21788
|
}).shape
|
|
21787
|
-
), dI =
|
|
21789
|
+
), dI = Ce.extend(
|
|
21788
21790
|
a({
|
|
21789
21791
|
referenceType: e(),
|
|
21790
21792
|
referenceLocator: E
|
|
21791
21793
|
}).shape
|
|
21792
|
-
), mI =
|
|
21794
|
+
), mI = Ce.extend(
|
|
21793
21795
|
a({
|
|
21794
21796
|
referenceType: e(),
|
|
21795
21797
|
referenceLocator: E
|
|
21796
21798
|
}).shape
|
|
21797
|
-
), pI =
|
|
21799
|
+
), pI = Ce.extend(
|
|
21798
21800
|
a({
|
|
21799
21801
|
diaryLocator: _d
|
|
21800
21802
|
}).shape
|
|
@@ -22073,7 +22075,7 @@ export {
|
|
|
22073
22075
|
ve as DurationBasisEnumSchema,
|
|
22074
22076
|
v$ as ElementCategoryEnumSchema,
|
|
22075
22077
|
Pr as ElementCreateRequestSchema,
|
|
22076
|
-
|
|
22078
|
+
Fe as ElementIdSchema,
|
|
22077
22079
|
rn as ElementResponseSchema,
|
|
22078
22080
|
tL as ElementUpdateRequestSchema,
|
|
22079
22081
|
VT as EventsEnumSchema,
|
|
@@ -22211,7 +22213,7 @@ export {
|
|
|
22211
22213
|
bw as TenantDeploymentResultSchema,
|
|
22212
22214
|
Ke as TenantIdSchema,
|
|
22213
22215
|
iT as TenantLocatorSchema,
|
|
22214
|
-
|
|
22216
|
+
Ce as TenantQualificationsParamsSchema,
|
|
22215
22217
|
kI as TenantQualificationsResponseSchema,
|
|
22216
22218
|
HL as TenantResponseSchema,
|
|
22217
22219
|
Sw as TenantUpdateRequestSchema,
|
|
@@ -22226,7 +22228,7 @@ export {
|
|
|
22226
22228
|
E as ULIDZ,
|
|
22227
22229
|
ft as UUIDZ,
|
|
22228
22230
|
K$ as UnderwritingFlagCreateRequestSchema,
|
|
22229
|
-
|
|
22231
|
+
Ne as UnderwritingFlagResponseSchema,
|
|
22230
22232
|
Om as UnderwritingFlagsLevelEnumSchema,
|
|
22231
22233
|
_$ as UnderwritingFlagsReferenceTypeEnumSchema,
|
|
22232
22234
|
HT as UnderwritingFlagsUpdateRequestSchema,
|