@socotra/ec-react-schemas 2.26.1-next.3 → 2.26.1-next.4
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 +59 -1
- package/dist/index.es.js +882 -881
- 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
|
@@ -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";
|