@socotra/ec-react-schemas 2.26.1-next.3 → 2.26.1-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +72 -11
- package/dist/index.es.js +3639 -3440
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -5
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -460,8 +460,8 @@ export declare const AddTaskRequestBffSchema: z.ZodObject<{
|
|
|
460
460
|
contents: z.ZodString;
|
|
461
461
|
}, z.core.$strip>>;
|
|
462
462
|
userAssignment: z.ZodOptional<z.ZodObject<{
|
|
463
|
-
userLocator: z.ZodGUID;
|
|
464
463
|
userAssociationRole: z.ZodString;
|
|
464
|
+
userLocator: z.ZodGUID;
|
|
465
465
|
}, z.core.$strip>>;
|
|
466
466
|
deadlineTime: z.ZodISODateTime;
|
|
467
467
|
references: z.ZodArray<z.ZodObject<{
|
|
@@ -1143,7 +1143,6 @@ declare const basePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1143
1143
|
effectiveTime: z.ZodISODateTime;
|
|
1144
1144
|
aggregatedTransactions: z.ZodOptional;
|
|
1145
1145
|
termLocator: z.ZodString;
|
|
1146
|
-
preferences: z.ZodOptional;
|
|
1147
1146
|
transactionType: z.ZodString;
|
|
1148
1147
|
issuedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
1149
1148
|
billingTrigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1159,6 +1158,65 @@ declare const basePolicyTransactionResponseSchema: z.ZodObject<{
|
|
|
1159
1158
|
}>>;
|
|
1160
1159
|
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
1161
1160
|
changeInstructions: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
1161
|
+
preferences: z.ZodOptional<z.ZodObject<{
|
|
1162
|
+
billingPreferences: z.ZodOptional<z.ZodObject<{
|
|
1163
|
+
billingPlanName: z.ZodOptional<z.ZodString>;
|
|
1164
|
+
billingLevel: z.ZodOptional<z.ZodEnum<{
|
|
1165
|
+
account: "account";
|
|
1166
|
+
inherit: "inherit";
|
|
1167
|
+
policy: "policy";
|
|
1168
|
+
}>>;
|
|
1169
|
+
}, z.core.$strip>>;
|
|
1170
|
+
installmentPreferences: z.ZodOptional<z.ZodObject<{
|
|
1171
|
+
installmentPlanName: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
anchorMode: z.ZodOptional<z.ZodEnum<{
|
|
1173
|
+
generateDay: "generateDay";
|
|
1174
|
+
termStartDay: "termStartDay";
|
|
1175
|
+
dueDay: "dueDay";
|
|
1176
|
+
}>>;
|
|
1177
|
+
anchorTime: z.ZodOptional<z.ZodString>;
|
|
1178
|
+
anchorType: z.ZodOptional<z.ZodEnum<{
|
|
1179
|
+
none: "none";
|
|
1180
|
+
dayOfMonth: "dayOfMonth";
|
|
1181
|
+
anchorTime: "anchorTime";
|
|
1182
|
+
dayOfWeek: "dayOfWeek";
|
|
1183
|
+
weekOfMonth: "weekOfMonth";
|
|
1184
|
+
}>>;
|
|
1185
|
+
cadence: z.ZodOptional<z.ZodEnum<{
|
|
1186
|
+
none: "none";
|
|
1187
|
+
fullPay: "fullPay";
|
|
1188
|
+
weekly: "weekly";
|
|
1189
|
+
everyOtherWeek: "everyOtherWeek";
|
|
1190
|
+
monthly: "monthly";
|
|
1191
|
+
quarterly: "quarterly";
|
|
1192
|
+
semiannually: "semiannually";
|
|
1193
|
+
annually: "annually";
|
|
1194
|
+
thirtyDays: "thirtyDays";
|
|
1195
|
+
everyNDays: "everyNDays";
|
|
1196
|
+
}>>;
|
|
1197
|
+
dayOfMonth: z.ZodOptional<z.ZodNumber>;
|
|
1198
|
+
dayOfWeek: z.ZodOptional<z.ZodEnum<{
|
|
1199
|
+
monday: "monday";
|
|
1200
|
+
tuesday: "tuesday";
|
|
1201
|
+
wednesday: "wednesday";
|
|
1202
|
+
thursday: "thursday";
|
|
1203
|
+
friday: "friday";
|
|
1204
|
+
saturday: "saturday";
|
|
1205
|
+
sunday: "sunday";
|
|
1206
|
+
}>>;
|
|
1207
|
+
dueLeadDays: z.ZodOptional<z.ZodNumber>;
|
|
1208
|
+
generateLeadDays: z.ZodOptional<z.ZodNumber>;
|
|
1209
|
+
maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
|
|
1210
|
+
weekOfMonth: z.ZodOptional<z.ZodEnum<{
|
|
1211
|
+
none: "none";
|
|
1212
|
+
first: "first";
|
|
1213
|
+
second: "second";
|
|
1214
|
+
third: "third";
|
|
1215
|
+
fourth: "fourth";
|
|
1216
|
+
fifth: "fifth";
|
|
1217
|
+
}>>;
|
|
1218
|
+
}, z.core.$strip>>;
|
|
1219
|
+
}, z.core.$strip>>;
|
|
1162
1220
|
underwritingStatus: z.ZodOptional<z.ZodEnum<{
|
|
1163
1221
|
none: "none";
|
|
1164
1222
|
declined: "declined";
|
|
@@ -1576,25 +1634,25 @@ export declare type ConsolidatedDocumentRefRecord = z.infer<typeof ConsolidatedD
|
|
|
1576
1634
|
export declare const ConsolidatedDocumentRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1577
1635
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1578
1636
|
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
1579
|
-
leadingDocumentTemplate: z.ZodString
|
|
1580
|
-
pageNumbering: z.ZodObject<{
|
|
1637
|
+
leadingDocumentTemplate: z.ZodOptional<z.ZodString>;
|
|
1638
|
+
pageNumbering: z.ZodOptional<z.ZodObject<{
|
|
1581
1639
|
enableNumbering: z.ZodBoolean;
|
|
1582
1640
|
leadingDocumentPages: z.ZodBoolean;
|
|
1583
1641
|
xPosition: z.ZodInt;
|
|
1584
1642
|
yPosition: z.ZodInt;
|
|
1585
|
-
}, z.core.$strip
|
|
1643
|
+
}, z.core.$strip>>;
|
|
1586
1644
|
}, z.core.$strip>>;
|
|
1587
1645
|
|
|
1588
1646
|
export declare const ConsolidatedDocumentRefSchema: z.ZodObject<{
|
|
1589
1647
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1590
1648
|
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
1591
|
-
leadingDocumentTemplate: z.ZodString
|
|
1592
|
-
pageNumbering: z.ZodObject<{
|
|
1649
|
+
leadingDocumentTemplate: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
pageNumbering: z.ZodOptional<z.ZodObject<{
|
|
1593
1651
|
enableNumbering: z.ZodBoolean;
|
|
1594
1652
|
leadingDocumentPages: z.ZodBoolean;
|
|
1595
1653
|
xPosition: z.ZodInt;
|
|
1596
1654
|
yPosition: z.ZodInt;
|
|
1597
|
-
}, z.core.$strip
|
|
1655
|
+
}, z.core.$strip>>;
|
|
1598
1656
|
}, z.core.$strip>;
|
|
1599
1657
|
|
|
1600
1658
|
export declare type ConstraintConfig = z.infer<typeof constraintConfigSchema>;
|
|
@@ -3571,13 +3629,13 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3571
3629
|
consolidatedDocuments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3572
3630
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3573
3631
|
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
3574
|
-
leadingDocumentTemplate: z.ZodString
|
|
3575
|
-
pageNumbering: z.ZodObject<{
|
|
3632
|
+
leadingDocumentTemplate: z.ZodOptional<z.ZodString>;
|
|
3633
|
+
pageNumbering: z.ZodOptional<z.ZodObject<{
|
|
3576
3634
|
enableNumbering: z.ZodBoolean;
|
|
3577
3635
|
leadingDocumentPages: z.ZodBoolean;
|
|
3578
3636
|
xPosition: z.ZodInt;
|
|
3579
3637
|
yPosition: z.ZodInt;
|
|
3580
|
-
}, z.core.$strip
|
|
3638
|
+
}, z.core.$strip>>;
|
|
3581
3639
|
}, z.core.$strip>>>;
|
|
3582
3640
|
policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3583
3641
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -4581,6 +4639,7 @@ export declare const DocumentInstanceResponseSchema: z.ZodObject<{
|
|
|
4581
4639
|
processingErrors: z.ZodOptional<z.ZodString>;
|
|
4582
4640
|
external: z.ZodBoolean;
|
|
4583
4641
|
category: z.ZodOptional<z.ZodString>;
|
|
4642
|
+
copyOnIssuance: z.ZodOptional<z.ZodBoolean>;
|
|
4584
4643
|
locator: z.ZodULID;
|
|
4585
4644
|
referenceLocator: z.ZodULID;
|
|
4586
4645
|
referenceType: z.ZodEnum<{
|
|
@@ -4672,6 +4731,7 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
4672
4731
|
processingErrors: z.ZodOptional<z.ZodString>;
|
|
4673
4732
|
external: z.ZodBoolean;
|
|
4674
4733
|
category: z.ZodOptional<z.ZodString>;
|
|
4734
|
+
copyOnIssuance: z.ZodOptional<z.ZodBoolean>;
|
|
4675
4735
|
locator: z.ZodULID;
|
|
4676
4736
|
referenceLocator: z.ZodULID;
|
|
4677
4737
|
referenceType: z.ZodEnum<{
|
|
@@ -4739,6 +4799,7 @@ export declare const DocumentListResponseSchema: z.ZodObject<{
|
|
|
4739
4799
|
processingErrors: z.ZodOptional<z.ZodString>;
|
|
4740
4800
|
external: z.ZodBoolean;
|
|
4741
4801
|
category: z.ZodOptional<z.ZodString>;
|
|
4802
|
+
copyOnIssuance: z.ZodOptional<z.ZodBoolean>;
|
|
4742
4803
|
locator: z.ZodULID;
|
|
4743
4804
|
referenceLocator: z.ZodULID;
|
|
4744
4805
|
referenceType: z.ZodEnum<{
|