@socotra/ec-react-schemas 2.26.0 → 2.26.1-next.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/index.d.ts +430 -241
- package/dist/index.es.js +2850 -2861
- 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
|
@@ -1166,69 +1166,6 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
1166
1166
|
}, z.core.$strip>>;
|
|
1167
1167
|
}, z.core.$strip>;
|
|
1168
1168
|
|
|
1169
|
-
declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
1170
|
-
locator: z.ZodULID;
|
|
1171
|
-
policyLocator: z.ZodULID;
|
|
1172
|
-
transactionCategory: z.ZodEnum<{
|
|
1173
|
-
issuance: "issuance";
|
|
1174
|
-
change: "change";
|
|
1175
|
-
renewal: "renewal";
|
|
1176
|
-
cancellation: "cancellation";
|
|
1177
|
-
reinstatement: "reinstatement";
|
|
1178
|
-
reversal: "reversal";
|
|
1179
|
-
aggregate: "aggregate";
|
|
1180
|
-
}>;
|
|
1181
|
-
transactionState: z.ZodEnum<{
|
|
1182
|
-
draft: "draft";
|
|
1183
|
-
validated: "validated";
|
|
1184
|
-
earlyUnderwritten: "earlyUnderwritten";
|
|
1185
|
-
priced: "priced";
|
|
1186
|
-
underwritten: "underwritten";
|
|
1187
|
-
accepted: "accepted";
|
|
1188
|
-
issued: "issued";
|
|
1189
|
-
underwrittenBlocked: "underwrittenBlocked";
|
|
1190
|
-
declined: "declined";
|
|
1191
|
-
rejected: "rejected";
|
|
1192
|
-
refused: "refused";
|
|
1193
|
-
discarded: "discarded";
|
|
1194
|
-
initialized: "initialized";
|
|
1195
|
-
invalidated: "invalidated";
|
|
1196
|
-
reversed: "reversed";
|
|
1197
|
-
}>;
|
|
1198
|
-
effectiveTime: z.ZodISODateTime;
|
|
1199
|
-
underwritingStatus: z.ZodString;
|
|
1200
|
-
underwritingFlags: z.ZodArray<z.ZodObject<{
|
|
1201
|
-
note: z.ZodString;
|
|
1202
|
-
tag: z.ZodString;
|
|
1203
|
-
taskCreationResponse: z.ZodObject<{
|
|
1204
|
-
taskLocator: z.ZodString;
|
|
1205
|
-
status: z.ZodEnum<{
|
|
1206
|
-
succeeded: "succeeded";
|
|
1207
|
-
failed: "failed";
|
|
1208
|
-
}>;
|
|
1209
|
-
}, z.core.$strip>;
|
|
1210
|
-
locator: z.ZodULID;
|
|
1211
|
-
referenceLocator: z.ZodULID;
|
|
1212
|
-
referenceType: z.ZodEnum<{
|
|
1213
|
-
quote: "quote";
|
|
1214
|
-
transaction: "transaction";
|
|
1215
|
-
}>;
|
|
1216
|
-
level: z.ZodEnum<{
|
|
1217
|
-
none: "none";
|
|
1218
|
-
info: "info";
|
|
1219
|
-
block: "block";
|
|
1220
|
-
decline: "decline";
|
|
1221
|
-
reject: "reject";
|
|
1222
|
-
approve: "approve";
|
|
1223
|
-
}>;
|
|
1224
|
-
createdBy: z.ZodGUID;
|
|
1225
|
-
createdTime: z.ZodISODateTime;
|
|
1226
|
-
clearedBy: z.ZodGUID;
|
|
1227
|
-
clearedTime: z.ZodISODateTime;
|
|
1228
|
-
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
1229
|
-
}, z.core.$strip>>;
|
|
1230
|
-
}, z.core.$strip>;
|
|
1231
|
-
|
|
1232
1169
|
export declare const BasicAndFormerUserBffSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
1233
1170
|
locator: z.ZodGUID;
|
|
1234
1171
|
userName: z.ZodString;
|
|
@@ -1560,6 +1497,34 @@ export declare const ConfigBuilderResultSchema: z.ZodObject<{
|
|
|
1560
1497
|
errors: z.ZodArray<z.ZodString>;
|
|
1561
1498
|
}, z.core.$strip>;
|
|
1562
1499
|
|
|
1500
|
+
export declare type ConsolidatedDocumentRef = z.infer<typeof ConsolidatedDocumentRefSchema>;
|
|
1501
|
+
|
|
1502
|
+
export declare type ConsolidatedDocumentRefRecord = z.infer<typeof ConsolidatedDocumentRefRecordSchema>;
|
|
1503
|
+
|
|
1504
|
+
export declare const ConsolidatedDocumentRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1505
|
+
displayName: z.ZodString;
|
|
1506
|
+
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
1507
|
+
leadingDocumentTemplate: z.ZodString;
|
|
1508
|
+
pageNumbering: z.ZodObject<{
|
|
1509
|
+
enableNumbering: z.ZodBoolean;
|
|
1510
|
+
leadingDocumentPages: z.ZodBoolean;
|
|
1511
|
+
xPosition: z.ZodInt;
|
|
1512
|
+
yPosition: z.ZodInt;
|
|
1513
|
+
}, z.core.$strip>;
|
|
1514
|
+
}, z.core.$strip>>;
|
|
1515
|
+
|
|
1516
|
+
export declare const ConsolidatedDocumentRefSchema: z.ZodObject<{
|
|
1517
|
+
displayName: z.ZodString;
|
|
1518
|
+
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
1519
|
+
leadingDocumentTemplate: z.ZodString;
|
|
1520
|
+
pageNumbering: z.ZodObject<{
|
|
1521
|
+
enableNumbering: z.ZodBoolean;
|
|
1522
|
+
leadingDocumentPages: z.ZodBoolean;
|
|
1523
|
+
xPosition: z.ZodInt;
|
|
1524
|
+
yPosition: z.ZodInt;
|
|
1525
|
+
}, z.core.$strip>;
|
|
1526
|
+
}, z.core.$strip>;
|
|
1527
|
+
|
|
1563
1528
|
export declare type ConstraintConfig = z.infer<typeof constraintConfigSchema>;
|
|
1564
1529
|
|
|
1565
1530
|
export declare const constraintConfigSchema: z.ZodOptional<z.ZodObject<{
|
|
@@ -3531,6 +3496,17 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3531
3496
|
immediate: "immediate";
|
|
3532
3497
|
}>>;
|
|
3533
3498
|
}, z.core.$strip>>>;
|
|
3499
|
+
consolidatedDocuments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3500
|
+
displayName: z.ZodString;
|
|
3501
|
+
consolidatedDocuments: z.ZodArray<z.ZodString>;
|
|
3502
|
+
leadingDocumentTemplate: z.ZodString;
|
|
3503
|
+
pageNumbering: z.ZodObject<{
|
|
3504
|
+
enableNumbering: z.ZodBoolean;
|
|
3505
|
+
leadingDocumentPages: z.ZodBoolean;
|
|
3506
|
+
xPosition: z.ZodInt;
|
|
3507
|
+
yPosition: z.ZodInt;
|
|
3508
|
+
}, z.core.$strip>;
|
|
3509
|
+
}, z.core.$strip>>>;
|
|
3534
3510
|
policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3535
3511
|
displayName: z.ZodOptional<z.ZodString>;
|
|
3536
3512
|
contents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -11199,7 +11175,7 @@ export declare const quoteStateSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
11199
11175
|
discarded: "discarded";
|
|
11200
11176
|
}>, z.ZodString]>;
|
|
11201
11177
|
|
|
11202
|
-
export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof
|
|
11178
|
+
export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof QuoteUnderwritingFlagsResponseSchema>;
|
|
11203
11179
|
|
|
11204
11180
|
export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
11205
11181
|
quoteLocator: z.ZodString;
|
|
@@ -11247,22 +11223,8 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
11247
11223
|
|
|
11248
11224
|
export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
11249
11225
|
quoteLocator: z.ZodULID;
|
|
11250
|
-
flags: z.ZodArray<z.ZodObject<{
|
|
11251
|
-
note: z.ZodString;
|
|
11252
|
-
tag: z.ZodString;
|
|
11253
|
-
taskCreationResponse: z.ZodObject<{
|
|
11254
|
-
taskLocator: z.ZodString;
|
|
11255
|
-
status: z.ZodEnum<{
|
|
11256
|
-
succeeded: "succeeded";
|
|
11257
|
-
failed: "failed";
|
|
11258
|
-
}>;
|
|
11259
|
-
}, z.core.$strip>;
|
|
11226
|
+
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11260
11227
|
locator: z.ZodULID;
|
|
11261
|
-
referenceLocator: z.ZodULID;
|
|
11262
|
-
referenceType: z.ZodEnum<{
|
|
11263
|
-
quote: "quote";
|
|
11264
|
-
transaction: "transaction";
|
|
11265
|
-
}>;
|
|
11266
11228
|
level: z.ZodEnum<{
|
|
11267
11229
|
none: "none";
|
|
11268
11230
|
info: "info";
|
|
@@ -11271,28 +11233,28 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
11271
11233
|
reject: "reject";
|
|
11272
11234
|
approve: "approve";
|
|
11273
11235
|
}>;
|
|
11274
|
-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
|
|
11236
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
11237
|
+
quote: "quote";
|
|
11238
|
+
transaction: "transaction";
|
|
11239
|
+
}>>;
|
|
11240
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
11241
|
+
note: z.ZodOptional<z.ZodString>;
|
|
11242
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
11278
11243
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
taskCreationResponse: z.ZodObject<{
|
|
11244
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
11245
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11246
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
11247
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11248
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
11284
11249
|
taskLocator: z.ZodString;
|
|
11285
11250
|
status: z.ZodEnum<{
|
|
11286
11251
|
succeeded: "succeeded";
|
|
11287
11252
|
failed: "failed";
|
|
11288
11253
|
}>;
|
|
11289
|
-
}, z.core.$strip
|
|
11254
|
+
}, z.core.$strip>>;
|
|
11255
|
+
}, z.core.$strip>>>;
|
|
11256
|
+
clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11290
11257
|
locator: z.ZodULID;
|
|
11291
|
-
referenceLocator: z.ZodULID;
|
|
11292
|
-
referenceType: z.ZodEnum<{
|
|
11293
|
-
quote: "quote";
|
|
11294
|
-
transaction: "transaction";
|
|
11295
|
-
}>;
|
|
11296
11258
|
level: z.ZodEnum<{
|
|
11297
11259
|
none: "none";
|
|
11298
11260
|
info: "info";
|
|
@@ -11301,21 +11263,35 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
11301
11263
|
reject: "reject";
|
|
11302
11264
|
approve: "approve";
|
|
11303
11265
|
}>;
|
|
11304
|
-
|
|
11305
|
-
|
|
11306
|
-
|
|
11307
|
-
|
|
11266
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
11267
|
+
quote: "quote";
|
|
11268
|
+
transaction: "transaction";
|
|
11269
|
+
}>>;
|
|
11270
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
11271
|
+
note: z.ZodOptional<z.ZodString>;
|
|
11272
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
11308
11273
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
11274
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
11275
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11276
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
11277
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11278
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
11279
|
+
taskLocator: z.ZodString;
|
|
11280
|
+
status: z.ZodEnum<{
|
|
11281
|
+
succeeded: "succeeded";
|
|
11282
|
+
failed: "failed";
|
|
11283
|
+
}>;
|
|
11284
|
+
}, z.core.$strip>>;
|
|
11309
11285
|
}, z.core.$strip>>>;
|
|
11310
11286
|
}, z.core.$strip>;
|
|
11311
11287
|
|
|
11312
11288
|
export declare type QuoteUnderwritingResponse = z.infer<typeof QuoteUnderwritingResponseSchema>;
|
|
11313
11289
|
|
|
11314
11290
|
export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
11315
|
-
tenantLocator: z.ZodUUID
|
|
11316
|
-
|
|
11317
|
-
|
|
11318
|
-
quoteState: z.ZodEnum<{
|
|
11291
|
+
tenantLocator: z.ZodOptional<z.ZodOptional<z.ZodUUID>>;
|
|
11292
|
+
quoteLocator: z.ZodOptional<z.ZodULID>;
|
|
11293
|
+
accountLocator: z.ZodOptional<z.ZodOptional<z.ZodULID>>;
|
|
11294
|
+
quoteState: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
11319
11295
|
draft: "draft";
|
|
11320
11296
|
validated: "validated";
|
|
11321
11297
|
earlyUnderwritten: "earlyUnderwritten";
|
|
@@ -11328,11 +11304,11 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11328
11304
|
rejected: "rejected";
|
|
11329
11305
|
refused: "refused";
|
|
11330
11306
|
discarded: "discarded";
|
|
11331
|
-
}
|
|
11332
|
-
startTime: z.ZodISODateTime
|
|
11333
|
-
endTime: z.ZodISODateTime
|
|
11334
|
-
expirationTime: z.ZodISODateTime
|
|
11335
|
-
durationBasis: z.ZodEnum<{
|
|
11307
|
+
}>>>;
|
|
11308
|
+
startTime: z.ZodOptional<z.ZodOptional<z.ZodISODateTime>>;
|
|
11309
|
+
endTime: z.ZodOptional<z.ZodOptional<z.ZodISODateTime>>;
|
|
11310
|
+
expirationTime: z.ZodOptional<z.ZodOptional<z.ZodISODateTime>>;
|
|
11311
|
+
durationBasis: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
|
|
11336
11312
|
none: "none";
|
|
11337
11313
|
years: "years";
|
|
11338
11314
|
months: "months";
|
|
@@ -11340,23 +11316,9 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11340
11316
|
weeks: "weeks";
|
|
11341
11317
|
days: "days";
|
|
11342
11318
|
hours: "hours";
|
|
11343
|
-
}
|
|
11344
|
-
underwritingFlags: z.ZodArray<z.ZodObject<{
|
|
11345
|
-
note: z.ZodString;
|
|
11346
|
-
tag: z.ZodString;
|
|
11347
|
-
taskCreationResponse: z.ZodObject<{
|
|
11348
|
-
taskLocator: z.ZodString;
|
|
11349
|
-
status: z.ZodEnum<{
|
|
11350
|
-
succeeded: "succeeded";
|
|
11351
|
-
failed: "failed";
|
|
11352
|
-
}>;
|
|
11353
|
-
}, z.core.$strip>;
|
|
11319
|
+
}>>>;
|
|
11320
|
+
underwritingFlags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11354
11321
|
locator: z.ZodULID;
|
|
11355
|
-
referenceLocator: z.ZodULID;
|
|
11356
|
-
referenceType: z.ZodEnum<{
|
|
11357
|
-
quote: "quote";
|
|
11358
|
-
transaction: "transaction";
|
|
11359
|
-
}>;
|
|
11360
11322
|
level: z.ZodEnum<{
|
|
11361
11323
|
none: "none";
|
|
11362
11324
|
info: "info";
|
|
@@ -11365,23 +11327,37 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11365
11327
|
reject: "reject";
|
|
11366
11328
|
approve: "approve";
|
|
11367
11329
|
}>;
|
|
11368
|
-
|
|
11369
|
-
|
|
11370
|
-
|
|
11371
|
-
|
|
11330
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
11331
|
+
quote: "quote";
|
|
11332
|
+
transaction: "transaction";
|
|
11333
|
+
}>>;
|
|
11334
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
11335
|
+
note: z.ZodOptional<z.ZodString>;
|
|
11336
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
11372
11337
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
11373
|
-
|
|
11374
|
-
|
|
11338
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
11339
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11340
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
11341
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
11342
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
11343
|
+
taskLocator: z.ZodString;
|
|
11344
|
+
status: z.ZodEnum<{
|
|
11345
|
+
succeeded: "succeeded";
|
|
11346
|
+
failed: "failed";
|
|
11347
|
+
}>;
|
|
11348
|
+
}, z.core.$strip>>;
|
|
11349
|
+
}, z.core.$strip>>>>;
|
|
11350
|
+
validationResult: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
11375
11351
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11376
11352
|
locator: z.ZodOptional<z.ZodULID>;
|
|
11377
11353
|
elementType: z.ZodOptional<z.ZodString>;
|
|
11378
11354
|
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11379
11355
|
}, z.core.$strip>>>;
|
|
11380
11356
|
success: z.ZodOptional<z.ZodBoolean>;
|
|
11381
|
-
}, z.core.$strip
|
|
11382
|
-
productName: z.ZodString
|
|
11383
|
-
duration: z.ZodNumber
|
|
11384
|
-
underwritingStatus: z.ZodString
|
|
11357
|
+
}, z.core.$strip>>>;
|
|
11358
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
11359
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
11360
|
+
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
11385
11361
|
}, z.core.$strip>;
|
|
11386
11362
|
|
|
11387
11363
|
export declare type QuoteUpdateRequest = z.infer<typeof QuoteUpdateRequestSchema>;
|
|
@@ -13410,6 +13386,7 @@ export declare const timezoneEnumSchema: z.ZodEnum<{
|
|
|
13410
13386
|
|
|
13411
13387
|
export declare type TimezoneType = z.infer<typeof timezoneEnumSchema>;
|
|
13412
13388
|
|
|
13389
|
+
/** @deprecated - use TransactionCategoryEnum */
|
|
13413
13390
|
export declare type TransactionCategory = z.infer<typeof transactionCategoryEnumSchema>;
|
|
13414
13391
|
|
|
13415
13392
|
export declare type TransactionCategoryEnum = z.infer<typeof TransactionCategoryEnumSchema>;
|
|
@@ -13424,6 +13401,7 @@ export declare const TransactionCategoryEnumSchema: z.ZodEnum<{
|
|
|
13424
13401
|
aggregate: "aggregate";
|
|
13425
13402
|
}>;
|
|
13426
13403
|
|
|
13404
|
+
/** @deprecated - use TransactionCategoryEnumSchema*/
|
|
13427
13405
|
export declare const transactionCategoryEnumSchema: z.ZodEnum<{
|
|
13428
13406
|
issuance: "issuance";
|
|
13429
13407
|
change: "change";
|
|
@@ -13847,6 +13825,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
13847
13825
|
transactionType: z.ZodString;
|
|
13848
13826
|
}, z.core.$strip>;
|
|
13849
13827
|
|
|
13828
|
+
/** @deprecated - use TransactionStateEnum */
|
|
13850
13829
|
export declare type TransactionState = z.infer<typeof transactionStateEnumSchema>;
|
|
13851
13830
|
|
|
13852
13831
|
export declare type TransactionStateEnum = z.infer<typeof TransactionStateEnumSchema>;
|
|
@@ -13869,6 +13848,7 @@ export declare const TransactionStateEnumSchema: z.ZodEnum<{
|
|
|
13869
13848
|
reversed: "reversed";
|
|
13870
13849
|
}>;
|
|
13871
13850
|
|
|
13851
|
+
/** @deprecated - use TransactionStateEnumSchema */
|
|
13872
13852
|
export declare const transactionStateEnumSchema: z.ZodEnum<{
|
|
13873
13853
|
draft: "draft";
|
|
13874
13854
|
validated: "validated";
|
|
@@ -13929,41 +13909,70 @@ export declare const transactionTypesRecordsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
13929
13909
|
costBearing: z.ZodBoolean;
|
|
13930
13910
|
}, z.core.$strip>>;
|
|
13931
13911
|
|
|
13932
|
-
export declare type TransactionUnderwritingFlagsResponse = z.infer<typeof
|
|
13912
|
+
export declare type TransactionUnderwritingFlagsResponse = z.infer<typeof TransactionUnderwritingFlagsResponseSchema>;
|
|
13933
13913
|
|
|
13914
|
+
/** @deprecated - use TransactionUnderwritingFlagsResponseSchema */
|
|
13934
13915
|
export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
13935
13916
|
transactionLocator: z.ZodString;
|
|
13936
13917
|
clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13937
|
-
locator: z.
|
|
13938
|
-
|
|
13939
|
-
|
|
13940
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
13941
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13942
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
13943
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
13918
|
+
locator: z.ZodULID;
|
|
13919
|
+
level: z.ZodEnum<{
|
|
13920
|
+
none: "none";
|
|
13944
13921
|
info: "info";
|
|
13945
13922
|
block: "block";
|
|
13946
13923
|
decline: "decline";
|
|
13947
13924
|
reject: "reject";
|
|
13948
13925
|
approve: "approve";
|
|
13926
|
+
}>;
|
|
13927
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
13928
|
+
quote: "quote";
|
|
13929
|
+
transaction: "transaction";
|
|
13949
13930
|
}>>;
|
|
13931
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
13950
13932
|
note: z.ZodOptional<z.ZodString>;
|
|
13933
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
13934
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
13935
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
13936
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13937
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
13938
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13939
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
13940
|
+
taskLocator: z.ZodString;
|
|
13941
|
+
status: z.ZodEnum<{
|
|
13942
|
+
succeeded: "succeeded";
|
|
13943
|
+
failed: "failed";
|
|
13944
|
+
}>;
|
|
13945
|
+
}, z.core.$strip>>;
|
|
13951
13946
|
}, z.core.$strip>>>;
|
|
13952
13947
|
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13953
|
-
locator: z.
|
|
13954
|
-
|
|
13955
|
-
|
|
13956
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
13957
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13958
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
13959
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
13948
|
+
locator: z.ZodULID;
|
|
13949
|
+
level: z.ZodEnum<{
|
|
13950
|
+
none: "none";
|
|
13960
13951
|
info: "info";
|
|
13961
13952
|
block: "block";
|
|
13962
13953
|
decline: "decline";
|
|
13963
13954
|
reject: "reject";
|
|
13964
13955
|
approve: "approve";
|
|
13956
|
+
}>;
|
|
13957
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
13958
|
+
quote: "quote";
|
|
13959
|
+
transaction: "transaction";
|
|
13965
13960
|
}>>;
|
|
13961
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
13966
13962
|
note: z.ZodOptional<z.ZodString>;
|
|
13963
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
13964
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
13965
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
13966
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13967
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
13968
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13969
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
13970
|
+
taskLocator: z.ZodString;
|
|
13971
|
+
status: z.ZodEnum<{
|
|
13972
|
+
succeeded: "succeeded";
|
|
13973
|
+
failed: "failed";
|
|
13974
|
+
}>;
|
|
13975
|
+
}, z.core.$strip>>;
|
|
13967
13976
|
}, z.core.$strip>>>;
|
|
13968
13977
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
13969
13978
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -13976,23 +13985,39 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
13976
13985
|
}, z.core.$strip>;
|
|
13977
13986
|
|
|
13978
13987
|
export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
13979
|
-
transactionLocator: z.
|
|
13980
|
-
clearedFlags: z.ZodArray<z.ZodObject<{
|
|
13981
|
-
|
|
13982
|
-
|
|
13983
|
-
|
|
13988
|
+
transactionLocator: z.ZodString;
|
|
13989
|
+
clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13990
|
+
locator: z.ZodULID;
|
|
13991
|
+
level: z.ZodEnum<{
|
|
13992
|
+
none: "none";
|
|
13993
|
+
info: "info";
|
|
13994
|
+
block: "block";
|
|
13995
|
+
decline: "decline";
|
|
13996
|
+
reject: "reject";
|
|
13997
|
+
approve: "approve";
|
|
13998
|
+
}>;
|
|
13999
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14000
|
+
quote: "quote";
|
|
14001
|
+
transaction: "transaction";
|
|
14002
|
+
}>>;
|
|
14003
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14004
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14005
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14006
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14007
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14008
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14009
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14010
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14011
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
13984
14012
|
taskLocator: z.ZodString;
|
|
13985
14013
|
status: z.ZodEnum<{
|
|
13986
14014
|
succeeded: "succeeded";
|
|
13987
14015
|
failed: "failed";
|
|
13988
14016
|
}>;
|
|
13989
|
-
}, z.core.$strip
|
|
14017
|
+
}, z.core.$strip>>;
|
|
14018
|
+
}, z.core.$strip>>>;
|
|
14019
|
+
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13990
14020
|
locator: z.ZodULID;
|
|
13991
|
-
referenceLocator: z.ZodULID;
|
|
13992
|
-
referenceType: z.ZodEnum<{
|
|
13993
|
-
quote: "quote";
|
|
13994
|
-
transaction: "transaction";
|
|
13995
|
-
}>;
|
|
13996
14021
|
level: z.ZodEnum<{
|
|
13997
14022
|
none: "none";
|
|
13998
14023
|
info: "info";
|
|
@@ -14001,28 +14026,71 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
14001
14026
|
reject: "reject";
|
|
14002
14027
|
approve: "approve";
|
|
14003
14028
|
}>;
|
|
14004
|
-
|
|
14005
|
-
|
|
14006
|
-
|
|
14007
|
-
|
|
14029
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14030
|
+
quote: "quote";
|
|
14031
|
+
transaction: "transaction";
|
|
14032
|
+
}>>;
|
|
14033
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14034
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14035
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14008
14036
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14009
|
-
|
|
14010
|
-
|
|
14011
|
-
|
|
14012
|
-
|
|
14013
|
-
taskCreationResponse: z.ZodObject<{
|
|
14037
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14038
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14039
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14040
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14041
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14014
14042
|
taskLocator: z.ZodString;
|
|
14015
14043
|
status: z.ZodEnum<{
|
|
14016
14044
|
succeeded: "succeeded";
|
|
14017
14045
|
failed: "failed";
|
|
14018
14046
|
}>;
|
|
14019
|
-
}, z.core.$strip
|
|
14047
|
+
}, z.core.$strip>>;
|
|
14048
|
+
}, z.core.$strip>>>;
|
|
14049
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14050
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14051
|
+
locator: z.ZodOptional<z.ZodULID>;
|
|
14052
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
14053
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14054
|
+
}, z.core.$strip>>>;
|
|
14055
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
14056
|
+
}, z.core.$strip>>;
|
|
14057
|
+
}, z.core.$strip>;
|
|
14058
|
+
|
|
14059
|
+
export declare type TransactionUnderwritingResponse = z.infer<typeof TransactionUnderwritingResponseSchema>;
|
|
14060
|
+
|
|
14061
|
+
export declare const TransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
14062
|
+
locator: z.ZodString;
|
|
14063
|
+
policyLocator: z.ZodString;
|
|
14064
|
+
transactionState: z.ZodEnum<{
|
|
14065
|
+
draft: "draft";
|
|
14066
|
+
validated: "validated";
|
|
14067
|
+
earlyUnderwritten: "earlyUnderwritten";
|
|
14068
|
+
priced: "priced";
|
|
14069
|
+
underwritten: "underwritten";
|
|
14070
|
+
accepted: "accepted";
|
|
14071
|
+
issued: "issued";
|
|
14072
|
+
underwrittenBlocked: "underwrittenBlocked";
|
|
14073
|
+
declined: "declined";
|
|
14074
|
+
rejected: "rejected";
|
|
14075
|
+
refused: "refused";
|
|
14076
|
+
discarded: "discarded";
|
|
14077
|
+
initialized: "initialized";
|
|
14078
|
+
invalidated: "invalidated";
|
|
14079
|
+
reversed: "reversed";
|
|
14080
|
+
}>;
|
|
14081
|
+
effectiveTime: z.ZodString;
|
|
14082
|
+
transactionCategory: z.ZodEnum<{
|
|
14083
|
+
issuance: "issuance";
|
|
14084
|
+
change: "change";
|
|
14085
|
+
renewal: "renewal";
|
|
14086
|
+
cancellation: "cancellation";
|
|
14087
|
+
reinstatement: "reinstatement";
|
|
14088
|
+
reversal: "reversal";
|
|
14089
|
+
aggregate: "aggregate";
|
|
14090
|
+
}>;
|
|
14091
|
+
underwritingStatus: z.ZodString;
|
|
14092
|
+
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14020
14093
|
locator: z.ZodULID;
|
|
14021
|
-
referenceLocator: z.ZodULID;
|
|
14022
|
-
referenceType: z.ZodEnum<{
|
|
14023
|
-
quote: "quote";
|
|
14024
|
-
transaction: "transaction";
|
|
14025
|
-
}>;
|
|
14026
14094
|
level: z.ZodEnum<{
|
|
14027
14095
|
none: "none";
|
|
14028
14096
|
info: "info";
|
|
@@ -14031,22 +14099,107 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
14031
14099
|
reject: "reject";
|
|
14032
14100
|
approve: "approve";
|
|
14033
14101
|
}>;
|
|
14034
|
-
|
|
14035
|
-
|
|
14036
|
-
|
|
14037
|
-
|
|
14102
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14103
|
+
quote: "quote";
|
|
14104
|
+
transaction: "transaction";
|
|
14105
|
+
}>>;
|
|
14106
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14107
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14108
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14038
14109
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14110
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14111
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14112
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14113
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14114
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14115
|
+
taskLocator: z.ZodString;
|
|
14116
|
+
status: z.ZodEnum<{
|
|
14117
|
+
succeeded: "succeeded";
|
|
14118
|
+
failed: "failed";
|
|
14119
|
+
}>;
|
|
14120
|
+
}, z.core.$strip>>;
|
|
14121
|
+
}, z.core.$strip>>>;
|
|
14122
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14123
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14124
|
+
locator: z.ZodOptional<z.ZodULID>;
|
|
14125
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
14126
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14127
|
+
}, z.core.$strip>>>;
|
|
14128
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
14039
14129
|
}, z.core.$strip>>;
|
|
14130
|
+
aggregatedTransactions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14131
|
+
locator: z.ZodString;
|
|
14132
|
+
policyLocator: z.ZodString;
|
|
14133
|
+
transactionState: z.ZodEnum<{
|
|
14134
|
+
draft: "draft";
|
|
14135
|
+
validated: "validated";
|
|
14136
|
+
earlyUnderwritten: "earlyUnderwritten";
|
|
14137
|
+
priced: "priced";
|
|
14138
|
+
underwritten: "underwritten";
|
|
14139
|
+
accepted: "accepted";
|
|
14140
|
+
issued: "issued";
|
|
14141
|
+
underwrittenBlocked: "underwrittenBlocked";
|
|
14142
|
+
declined: "declined";
|
|
14143
|
+
rejected: "rejected";
|
|
14144
|
+
refused: "refused";
|
|
14145
|
+
discarded: "discarded";
|
|
14146
|
+
initialized: "initialized";
|
|
14147
|
+
invalidated: "invalidated";
|
|
14148
|
+
reversed: "reversed";
|
|
14149
|
+
}>;
|
|
14150
|
+
effectiveTime: z.ZodString;
|
|
14151
|
+
transactionCategory: z.ZodEnum<{
|
|
14152
|
+
issuance: "issuance";
|
|
14153
|
+
change: "change";
|
|
14154
|
+
renewal: "renewal";
|
|
14155
|
+
cancellation: "cancellation";
|
|
14156
|
+
reinstatement: "reinstatement";
|
|
14157
|
+
reversal: "reversal";
|
|
14158
|
+
aggregate: "aggregate";
|
|
14159
|
+
}>;
|
|
14160
|
+
underwritingStatus: z.ZodString;
|
|
14161
|
+
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14162
|
+
locator: z.ZodULID;
|
|
14163
|
+
level: z.ZodEnum<{
|
|
14164
|
+
none: "none";
|
|
14165
|
+
info: "info";
|
|
14166
|
+
block: "block";
|
|
14167
|
+
decline: "decline";
|
|
14168
|
+
reject: "reject";
|
|
14169
|
+
approve: "approve";
|
|
14170
|
+
}>;
|
|
14171
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14172
|
+
quote: "quote";
|
|
14173
|
+
transaction: "transaction";
|
|
14174
|
+
}>>;
|
|
14175
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14176
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14177
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14178
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14179
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14180
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14181
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14182
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14183
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14184
|
+
taskLocator: z.ZodString;
|
|
14185
|
+
status: z.ZodEnum<{
|
|
14186
|
+
succeeded: "succeeded";
|
|
14187
|
+
failed: "failed";
|
|
14188
|
+
}>;
|
|
14189
|
+
}, z.core.$strip>>;
|
|
14190
|
+
}, z.core.$strip>>>;
|
|
14191
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14192
|
+
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14193
|
+
locator: z.ZodOptional<z.ZodULID>;
|
|
14194
|
+
elementType: z.ZodOptional<z.ZodString>;
|
|
14195
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14196
|
+
}, z.core.$strip>>>;
|
|
14197
|
+
success: z.ZodOptional<z.ZodBoolean>;
|
|
14198
|
+
}, z.core.$strip>>;
|
|
14199
|
+
}, z.core.$strip>>>;
|
|
14040
14200
|
}, z.core.$strip>;
|
|
14041
14201
|
|
|
14042
|
-
|
|
14043
|
-
|
|
14044
|
-
declare type TransactionUnderwritingResponse_2 = z.infer<typeof BaseTransactionUnderwritingResponseSchema> & {
|
|
14045
|
-
aggregatedTransactions?: TransactionUnderwritingResponse_2[];
|
|
14046
|
-
};
|
|
14047
|
-
|
|
14048
|
-
export declare const TransactionUnderwritingResponseSchema: z.ZodType<TransactionUnderwritingResponse_2>;
|
|
14049
|
-
|
|
14202
|
+
/** @deprecated - use TransactionUnderwritingResponseSchema */
|
|
14050
14203
|
export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
14051
14204
|
locator: z.ZodString;
|
|
14052
14205
|
policyLocator: z.ZodString;
|
|
@@ -14077,22 +14230,36 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14077
14230
|
reversal: "reversal";
|
|
14078
14231
|
aggregate: "aggregate";
|
|
14079
14232
|
}>;
|
|
14080
|
-
underwritingStatus: z.
|
|
14233
|
+
underwritingStatus: z.ZodString;
|
|
14081
14234
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14082
|
-
locator: z.
|
|
14083
|
-
|
|
14084
|
-
|
|
14085
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
14086
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
14087
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
14088
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
14235
|
+
locator: z.ZodULID;
|
|
14236
|
+
level: z.ZodEnum<{
|
|
14237
|
+
none: "none";
|
|
14089
14238
|
info: "info";
|
|
14090
14239
|
block: "block";
|
|
14091
14240
|
decline: "decline";
|
|
14092
14241
|
reject: "reject";
|
|
14093
14242
|
approve: "approve";
|
|
14243
|
+
}>;
|
|
14244
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14245
|
+
quote: "quote";
|
|
14246
|
+
transaction: "transaction";
|
|
14094
14247
|
}>>;
|
|
14248
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14095
14249
|
note: z.ZodOptional<z.ZodString>;
|
|
14250
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14251
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14252
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14253
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14254
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14255
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14256
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14257
|
+
taskLocator: z.ZodString;
|
|
14258
|
+
status: z.ZodEnum<{
|
|
14259
|
+
succeeded: "succeeded";
|
|
14260
|
+
failed: "failed";
|
|
14261
|
+
}>;
|
|
14262
|
+
}, z.core.$strip>>;
|
|
14096
14263
|
}, z.core.$strip>>>;
|
|
14097
14264
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14098
14265
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14132,22 +14299,36 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14132
14299
|
reversal: "reversal";
|
|
14133
14300
|
aggregate: "aggregate";
|
|
14134
14301
|
}>;
|
|
14135
|
-
underwritingStatus: z.
|
|
14302
|
+
underwritingStatus: z.ZodString;
|
|
14136
14303
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14137
|
-
locator: z.
|
|
14138
|
-
|
|
14139
|
-
|
|
14140
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
14141
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
14142
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
14143
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
14304
|
+
locator: z.ZodULID;
|
|
14305
|
+
level: z.ZodEnum<{
|
|
14306
|
+
none: "none";
|
|
14144
14307
|
info: "info";
|
|
14145
14308
|
block: "block";
|
|
14146
14309
|
decline: "decline";
|
|
14147
14310
|
reject: "reject";
|
|
14148
14311
|
approve: "approve";
|
|
14312
|
+
}>;
|
|
14313
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14314
|
+
quote: "quote";
|
|
14315
|
+
transaction: "transaction";
|
|
14149
14316
|
}>>;
|
|
14317
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14150
14318
|
note: z.ZodOptional<z.ZodString>;
|
|
14319
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14320
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14321
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14322
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14323
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14324
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14325
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14326
|
+
taskLocator: z.ZodString;
|
|
14327
|
+
status: z.ZodEnum<{
|
|
14328
|
+
succeeded: "succeeded";
|
|
14329
|
+
failed: "failed";
|
|
14330
|
+
}>;
|
|
14331
|
+
}, z.core.$strip>>;
|
|
14151
14332
|
}, z.core.$strip>>>;
|
|
14152
14333
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14153
14334
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14162,12 +14343,10 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14162
14343
|
|
|
14163
14344
|
export declare const ULIDZ: z.ZodULID;
|
|
14164
14345
|
|
|
14165
|
-
export declare type UnderwritingFlagCreateRequest = z.infer<typeof
|
|
14346
|
+
export declare type UnderwritingFlagCreateRequest = z.infer<typeof UnderwritingFlagCreateRequestSchema>;
|
|
14166
14347
|
|
|
14167
14348
|
export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
14168
|
-
|
|
14169
|
-
tag: z.ZodString;
|
|
14170
|
-
elementLocator: z.ZodULID;
|
|
14349
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14171
14350
|
level: z.ZodEnum<{
|
|
14172
14351
|
none: "none";
|
|
14173
14352
|
info: "info";
|
|
@@ -14176,8 +14355,10 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14176
14355
|
reject: "reject";
|
|
14177
14356
|
approve: "approve";
|
|
14178
14357
|
}>;
|
|
14358
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14359
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14179
14360
|
taskCreation: z.ZodOptional<z.ZodObject<{
|
|
14180
|
-
|
|
14361
|
+
type: z.ZodString;
|
|
14181
14362
|
references: z.ZodArray<z.ZodObject<{
|
|
14182
14363
|
referenceType: z.ZodEnum<{
|
|
14183
14364
|
account: "account";
|
|
@@ -14191,13 +14372,14 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14191
14372
|
}>;
|
|
14192
14373
|
referenceLocator: z.ZodString;
|
|
14193
14374
|
}, z.core.$strip>>;
|
|
14194
|
-
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
14195
|
-
type: z.ZodString;
|
|
14196
14375
|
underwritingFlagLocators: z.ZodArray<z.ZodString>;
|
|
14376
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14377
|
+
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
14197
14378
|
description: z.ZodOptional<z.ZodString>;
|
|
14198
14379
|
}, z.core.$strip>>;
|
|
14199
14380
|
}, z.core.$strip>;
|
|
14200
14381
|
|
|
14382
|
+
/** @deprecated - use UnderwritingFlagCreateRequestSchema */
|
|
14201
14383
|
export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
14202
14384
|
elementLocator: z.ZodString;
|
|
14203
14385
|
level: z.ZodEnum<{
|
|
@@ -14210,8 +14392,10 @@ export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14210
14392
|
note: z.ZodOptional<z.ZodString>;
|
|
14211
14393
|
}, z.core.$strip>;
|
|
14212
14394
|
|
|
14395
|
+
/** @deprecated - use UnderwritingFlagsLevelEnum */
|
|
14213
14396
|
export declare type UnderwritingFlagEnum = z.infer<typeof underwritingFlagEnumSchema>;
|
|
14214
14397
|
|
|
14398
|
+
/** @deprecated - use UnderwritingFlagsLevelEnumSchema */
|
|
14215
14399
|
export declare const underwritingFlagEnumSchema: z.ZodEnum<{
|
|
14216
14400
|
info: "info";
|
|
14217
14401
|
block: "block";
|
|
@@ -14220,24 +14404,10 @@ export declare const underwritingFlagEnumSchema: z.ZodEnum<{
|
|
|
14220
14404
|
approve: "approve";
|
|
14221
14405
|
}>;
|
|
14222
14406
|
|
|
14223
|
-
export declare type UnderwritingFlagResponse = z.infer<typeof
|
|
14407
|
+
export declare type UnderwritingFlagResponse = z.infer<typeof UnderwritingFlagResponseSchema>;
|
|
14224
14408
|
|
|
14225
14409
|
export declare const UnderwritingFlagResponseSchema: z.ZodObject<{
|
|
14226
|
-
note: z.ZodString;
|
|
14227
|
-
tag: z.ZodString;
|
|
14228
|
-
taskCreationResponse: z.ZodObject<{
|
|
14229
|
-
taskLocator: z.ZodString;
|
|
14230
|
-
status: z.ZodEnum<{
|
|
14231
|
-
succeeded: "succeeded";
|
|
14232
|
-
failed: "failed";
|
|
14233
|
-
}>;
|
|
14234
|
-
}, z.core.$strip>;
|
|
14235
14410
|
locator: z.ZodULID;
|
|
14236
|
-
referenceLocator: z.ZodULID;
|
|
14237
|
-
referenceType: z.ZodEnum<{
|
|
14238
|
-
quote: "quote";
|
|
14239
|
-
transaction: "transaction";
|
|
14240
|
-
}>;
|
|
14241
14411
|
level: z.ZodEnum<{
|
|
14242
14412
|
none: "none";
|
|
14243
14413
|
info: "info";
|
|
@@ -14246,13 +14416,28 @@ export declare const UnderwritingFlagResponseSchema: z.ZodObject<{
|
|
|
14246
14416
|
reject: "reject";
|
|
14247
14417
|
approve: "approve";
|
|
14248
14418
|
}>;
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14419
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14420
|
+
quote: "quote";
|
|
14421
|
+
transaction: "transaction";
|
|
14422
|
+
}>>;
|
|
14423
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14424
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14425
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14253
14426
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14427
|
+
createdBy: z.ZodOptional<z.ZodUUID>;
|
|
14428
|
+
createdTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14429
|
+
clearedBy: z.ZodOptional<z.ZodUUID>;
|
|
14430
|
+
clearedTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14431
|
+
taskCreationResponse: z.ZodOptional<z.ZodObject<{
|
|
14432
|
+
taskLocator: z.ZodString;
|
|
14433
|
+
status: z.ZodEnum<{
|
|
14434
|
+
succeeded: "succeeded";
|
|
14435
|
+
failed: "failed";
|
|
14436
|
+
}>;
|
|
14437
|
+
}, z.core.$strip>>;
|
|
14254
14438
|
}, z.core.$strip>;
|
|
14255
14439
|
|
|
14440
|
+
/** @deprecated - use UnderwritingFlagResponseSchema */
|
|
14256
14441
|
export declare const underwritingFlagResponseSchema: z.ZodObject<{
|
|
14257
14442
|
locator: z.ZodString;
|
|
14258
14443
|
elementLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -14288,13 +14473,11 @@ export declare const UnderwritingFlagsReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
14288
14473
|
transaction: "transaction";
|
|
14289
14474
|
}>;
|
|
14290
14475
|
|
|
14291
|
-
export declare type UnderwritingFlagsUpdateRequest = z.infer<typeof
|
|
14476
|
+
export declare type UnderwritingFlagsUpdateRequest = z.infer<typeof UnderwritingFlagsUpdateRequestSchema>;
|
|
14292
14477
|
|
|
14293
14478
|
export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
14294
|
-
addFlags: z.ZodArray<z.ZodObject<{
|
|
14295
|
-
|
|
14296
|
-
tag: z.ZodString;
|
|
14297
|
-
elementLocator: z.ZodULID;
|
|
14479
|
+
addFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14480
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14298
14481
|
level: z.ZodEnum<{
|
|
14299
14482
|
none: "none";
|
|
14300
14483
|
info: "info";
|
|
@@ -14303,8 +14486,10 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14303
14486
|
reject: "reject";
|
|
14304
14487
|
approve: "approve";
|
|
14305
14488
|
}>;
|
|
14489
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14490
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14306
14491
|
taskCreation: z.ZodOptional<z.ZodObject<{
|
|
14307
|
-
|
|
14492
|
+
type: z.ZodString;
|
|
14308
14493
|
references: z.ZodArray<z.ZodObject<{
|
|
14309
14494
|
referenceType: z.ZodEnum<{
|
|
14310
14495
|
account: "account";
|
|
@@ -14318,15 +14503,16 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14318
14503
|
}>;
|
|
14319
14504
|
referenceLocator: z.ZodString;
|
|
14320
14505
|
}, z.core.$strip>>;
|
|
14321
|
-
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
14322
|
-
type: z.ZodString;
|
|
14323
14506
|
underwritingFlagLocators: z.ZodArray<z.ZodString>;
|
|
14507
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14508
|
+
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
14324
14509
|
description: z.ZodOptional<z.ZodString>;
|
|
14325
14510
|
}, z.core.$strip>>;
|
|
14326
|
-
}, z.core.$strip
|
|
14327
|
-
clearFlags: z.ZodArray<z.ZodULID
|
|
14511
|
+
}, z.core.$strip>>>;
|
|
14512
|
+
clearFlags: z.ZodOptional<z.ZodArray<z.ZodULID>>;
|
|
14328
14513
|
}, z.core.$strip>;
|
|
14329
14514
|
|
|
14515
|
+
/** @deprecated - use UnderwritingFlagsUpdateRequestSchema */
|
|
14330
14516
|
export declare const underwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
14331
14517
|
addFlags: z.ZodArray<z.ZodObject<{
|
|
14332
14518
|
elementLocator: z.ZodString;
|
|
@@ -14639,13 +14825,14 @@ export declare type UserCreateRequest = z.infer<typeof UserCreateRequestSchema>;
|
|
|
14639
14825
|
|
|
14640
14826
|
export declare const UserCreateRequestSchema: z.ZodObject<{
|
|
14641
14827
|
userName: z.ZodEmail;
|
|
14642
|
-
roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14643
|
-
tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14644
14828
|
firstName: z.ZodString;
|
|
14645
14829
|
lastName: z.ZodString;
|
|
14830
|
+
serviceAccount: z.ZodOptional<z.ZodBoolean>;
|
|
14831
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
14832
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14833
|
+
tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14646
14834
|
password: z.ZodString;
|
|
14647
14835
|
temporaryPassword: z.ZodBoolean;
|
|
14648
|
-
email: z.ZodOptional<z.ZodString>;
|
|
14649
14836
|
}, z.core.$strip>;
|
|
14650
14837
|
|
|
14651
14838
|
export declare type UserId = z.infer<typeof UserIdSchema>;
|
|
@@ -14664,6 +14851,7 @@ export declare const UserListResponseSchema: z.ZodObject<{
|
|
|
14664
14851
|
roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14665
14852
|
tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14666
14853
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14854
|
+
serviceAccount: z.ZodOptional<z.ZodBoolean>;
|
|
14667
14855
|
userName: z.ZodString;
|
|
14668
14856
|
}, z.core.$strip>>;
|
|
14669
14857
|
}, z.core.$strip>;
|
|
@@ -14694,6 +14882,7 @@ export declare const UserResponseSchema: z.ZodObject<{
|
|
|
14694
14882
|
roles: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14695
14883
|
tenants: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14696
14884
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
14885
|
+
serviceAccount: z.ZodOptional<z.ZodBoolean>;
|
|
14697
14886
|
userName: z.ZodString;
|
|
14698
14887
|
}, z.core.$strip>;
|
|
14699
14888
|
|