@socotra/ec-react-schemas 2.26.1-next.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 +385 -238
- package/dist/index.es.js +2852 -2885
- 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;
|
|
@@ -11238,7 +11175,7 @@ export declare const quoteStateSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
11238
11175
|
discarded: "discarded";
|
|
11239
11176
|
}>, z.ZodString]>;
|
|
11240
11177
|
|
|
11241
|
-
export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof
|
|
11178
|
+
export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof QuoteUnderwritingFlagsResponseSchema>;
|
|
11242
11179
|
|
|
11243
11180
|
export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
11244
11181
|
quoteLocator: z.ZodString;
|
|
@@ -11286,22 +11223,8 @@ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
11286
11223
|
|
|
11287
11224
|
export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
11288
11225
|
quoteLocator: z.ZodULID;
|
|
11289
|
-
flags: z.ZodArray<z.ZodObject<{
|
|
11290
|
-
note: z.ZodString;
|
|
11291
|
-
tag: z.ZodString;
|
|
11292
|
-
taskCreationResponse: z.ZodObject<{
|
|
11293
|
-
taskLocator: z.ZodString;
|
|
11294
|
-
status: z.ZodEnum<{
|
|
11295
|
-
succeeded: "succeeded";
|
|
11296
|
-
failed: "failed";
|
|
11297
|
-
}>;
|
|
11298
|
-
}, z.core.$strip>;
|
|
11226
|
+
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11299
11227
|
locator: z.ZodULID;
|
|
11300
|
-
referenceLocator: z.ZodULID;
|
|
11301
|
-
referenceType: z.ZodEnum<{
|
|
11302
|
-
quote: "quote";
|
|
11303
|
-
transaction: "transaction";
|
|
11304
|
-
}>;
|
|
11305
11228
|
level: z.ZodEnum<{
|
|
11306
11229
|
none: "none";
|
|
11307
11230
|
info: "info";
|
|
@@ -11310,28 +11233,28 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
11310
11233
|
reject: "reject";
|
|
11311
11234
|
approve: "approve";
|
|
11312
11235
|
}>;
|
|
11313
|
-
|
|
11314
|
-
|
|
11315
|
-
|
|
11316
|
-
|
|
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>;
|
|
11317
11243
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
11318
|
-
|
|
11319
|
-
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
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<{
|
|
11323
11249
|
taskLocator: z.ZodString;
|
|
11324
11250
|
status: z.ZodEnum<{
|
|
11325
11251
|
succeeded: "succeeded";
|
|
11326
11252
|
failed: "failed";
|
|
11327
11253
|
}>;
|
|
11328
|
-
}, z.core.$strip
|
|
11254
|
+
}, z.core.$strip>>;
|
|
11255
|
+
}, z.core.$strip>>>;
|
|
11256
|
+
clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11329
11257
|
locator: z.ZodULID;
|
|
11330
|
-
referenceLocator: z.ZodULID;
|
|
11331
|
-
referenceType: z.ZodEnum<{
|
|
11332
|
-
quote: "quote";
|
|
11333
|
-
transaction: "transaction";
|
|
11334
|
-
}>;
|
|
11335
11258
|
level: z.ZodEnum<{
|
|
11336
11259
|
none: "none";
|
|
11337
11260
|
info: "info";
|
|
@@ -11340,21 +11263,35 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
11340
11263
|
reject: "reject";
|
|
11341
11264
|
approve: "approve";
|
|
11342
11265
|
}>;
|
|
11343
|
-
|
|
11344
|
-
|
|
11345
|
-
|
|
11346
|
-
|
|
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>;
|
|
11347
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>>;
|
|
11348
11285
|
}, z.core.$strip>>>;
|
|
11349
11286
|
}, z.core.$strip>;
|
|
11350
11287
|
|
|
11351
11288
|
export declare type QuoteUnderwritingResponse = z.infer<typeof QuoteUnderwritingResponseSchema>;
|
|
11352
11289
|
|
|
11353
11290
|
export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
11354
|
-
tenantLocator: z.ZodUUID
|
|
11355
|
-
|
|
11356
|
-
|
|
11357
|
-
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<{
|
|
11358
11295
|
draft: "draft";
|
|
11359
11296
|
validated: "validated";
|
|
11360
11297
|
earlyUnderwritten: "earlyUnderwritten";
|
|
@@ -11367,11 +11304,11 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11367
11304
|
rejected: "rejected";
|
|
11368
11305
|
refused: "refused";
|
|
11369
11306
|
discarded: "discarded";
|
|
11370
|
-
}
|
|
11371
|
-
startTime: z.ZodISODateTime
|
|
11372
|
-
endTime: z.ZodISODateTime
|
|
11373
|
-
expirationTime: z.ZodISODateTime
|
|
11374
|
-
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<{
|
|
11375
11312
|
none: "none";
|
|
11376
11313
|
years: "years";
|
|
11377
11314
|
months: "months";
|
|
@@ -11379,23 +11316,9 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11379
11316
|
weeks: "weeks";
|
|
11380
11317
|
days: "days";
|
|
11381
11318
|
hours: "hours";
|
|
11382
|
-
}
|
|
11383
|
-
underwritingFlags: z.ZodArray<z.ZodObject<{
|
|
11384
|
-
note: z.ZodString;
|
|
11385
|
-
tag: z.ZodString;
|
|
11386
|
-
taskCreationResponse: z.ZodObject<{
|
|
11387
|
-
taskLocator: z.ZodString;
|
|
11388
|
-
status: z.ZodEnum<{
|
|
11389
|
-
succeeded: "succeeded";
|
|
11390
|
-
failed: "failed";
|
|
11391
|
-
}>;
|
|
11392
|
-
}, z.core.$strip>;
|
|
11319
|
+
}>>>;
|
|
11320
|
+
underwritingFlags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11393
11321
|
locator: z.ZodULID;
|
|
11394
|
-
referenceLocator: z.ZodULID;
|
|
11395
|
-
referenceType: z.ZodEnum<{
|
|
11396
|
-
quote: "quote";
|
|
11397
|
-
transaction: "transaction";
|
|
11398
|
-
}>;
|
|
11399
11322
|
level: z.ZodEnum<{
|
|
11400
11323
|
none: "none";
|
|
11401
11324
|
info: "info";
|
|
@@ -11404,23 +11327,37 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<{
|
|
|
11404
11327
|
reject: "reject";
|
|
11405
11328
|
approve: "approve";
|
|
11406
11329
|
}>;
|
|
11407
|
-
|
|
11408
|
-
|
|
11409
|
-
|
|
11410
|
-
|
|
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>;
|
|
11411
11337
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
11412
|
-
|
|
11413
|
-
|
|
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<{
|
|
11414
11351
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11415
11352
|
locator: z.ZodOptional<z.ZodULID>;
|
|
11416
11353
|
elementType: z.ZodOptional<z.ZodString>;
|
|
11417
11354
|
errors: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
11418
11355
|
}, z.core.$strip>>>;
|
|
11419
11356
|
success: z.ZodOptional<z.ZodBoolean>;
|
|
11420
|
-
}, z.core.$strip
|
|
11421
|
-
productName: z.ZodString
|
|
11422
|
-
duration: z.ZodNumber
|
|
11423
|
-
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>;
|
|
11424
11361
|
}, z.core.$strip>;
|
|
11425
11362
|
|
|
11426
11363
|
export declare type QuoteUpdateRequest = z.infer<typeof QuoteUpdateRequestSchema>;
|
|
@@ -13449,6 +13386,7 @@ export declare const timezoneEnumSchema: z.ZodEnum<{
|
|
|
13449
13386
|
|
|
13450
13387
|
export declare type TimezoneType = z.infer<typeof timezoneEnumSchema>;
|
|
13451
13388
|
|
|
13389
|
+
/** @deprecated - use TransactionCategoryEnum */
|
|
13452
13390
|
export declare type TransactionCategory = z.infer<typeof transactionCategoryEnumSchema>;
|
|
13453
13391
|
|
|
13454
13392
|
export declare type TransactionCategoryEnum = z.infer<typeof TransactionCategoryEnumSchema>;
|
|
@@ -13463,6 +13401,7 @@ export declare const TransactionCategoryEnumSchema: z.ZodEnum<{
|
|
|
13463
13401
|
aggregate: "aggregate";
|
|
13464
13402
|
}>;
|
|
13465
13403
|
|
|
13404
|
+
/** @deprecated - use TransactionCategoryEnumSchema*/
|
|
13466
13405
|
export declare const transactionCategoryEnumSchema: z.ZodEnum<{
|
|
13467
13406
|
issuance: "issuance";
|
|
13468
13407
|
change: "change";
|
|
@@ -13886,6 +13825,7 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
13886
13825
|
transactionType: z.ZodString;
|
|
13887
13826
|
}, z.core.$strip>;
|
|
13888
13827
|
|
|
13828
|
+
/** @deprecated - use TransactionStateEnum */
|
|
13889
13829
|
export declare type TransactionState = z.infer<typeof transactionStateEnumSchema>;
|
|
13890
13830
|
|
|
13891
13831
|
export declare type TransactionStateEnum = z.infer<typeof TransactionStateEnumSchema>;
|
|
@@ -13908,6 +13848,7 @@ export declare const TransactionStateEnumSchema: z.ZodEnum<{
|
|
|
13908
13848
|
reversed: "reversed";
|
|
13909
13849
|
}>;
|
|
13910
13850
|
|
|
13851
|
+
/** @deprecated - use TransactionStateEnumSchema */
|
|
13911
13852
|
export declare const transactionStateEnumSchema: z.ZodEnum<{
|
|
13912
13853
|
draft: "draft";
|
|
13913
13854
|
validated: "validated";
|
|
@@ -13968,41 +13909,70 @@ export declare const transactionTypesRecordsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
13968
13909
|
costBearing: z.ZodBoolean;
|
|
13969
13910
|
}, z.core.$strip>>;
|
|
13970
13911
|
|
|
13971
|
-
export declare type TransactionUnderwritingFlagsResponse = z.infer<typeof
|
|
13912
|
+
export declare type TransactionUnderwritingFlagsResponse = z.infer<typeof TransactionUnderwritingFlagsResponseSchema>;
|
|
13972
13913
|
|
|
13914
|
+
/** @deprecated - use TransactionUnderwritingFlagsResponseSchema */
|
|
13973
13915
|
export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
13974
13916
|
transactionLocator: z.ZodString;
|
|
13975
13917
|
clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13976
|
-
locator: z.
|
|
13977
|
-
|
|
13978
|
-
|
|
13979
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
13980
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13981
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
13982
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
13918
|
+
locator: z.ZodULID;
|
|
13919
|
+
level: z.ZodEnum<{
|
|
13920
|
+
none: "none";
|
|
13983
13921
|
info: "info";
|
|
13984
13922
|
block: "block";
|
|
13985
13923
|
decline: "decline";
|
|
13986
13924
|
reject: "reject";
|
|
13987
13925
|
approve: "approve";
|
|
13926
|
+
}>;
|
|
13927
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
13928
|
+
quote: "quote";
|
|
13929
|
+
transaction: "transaction";
|
|
13988
13930
|
}>>;
|
|
13931
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
13989
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>>;
|
|
13990
13946
|
}, z.core.$strip>>>;
|
|
13991
13947
|
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13992
|
-
locator: z.
|
|
13993
|
-
|
|
13994
|
-
|
|
13995
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
13996
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13997
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
13998
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
13948
|
+
locator: z.ZodULID;
|
|
13949
|
+
level: z.ZodEnum<{
|
|
13950
|
+
none: "none";
|
|
13999
13951
|
info: "info";
|
|
14000
13952
|
block: "block";
|
|
14001
13953
|
decline: "decline";
|
|
14002
13954
|
reject: "reject";
|
|
14003
13955
|
approve: "approve";
|
|
13956
|
+
}>;
|
|
13957
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
13958
|
+
quote: "quote";
|
|
13959
|
+
transaction: "transaction";
|
|
14004
13960
|
}>>;
|
|
13961
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14005
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>>;
|
|
14006
13976
|
}, z.core.$strip>>>;
|
|
14007
13977
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14008
13978
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14015,23 +13985,39 @@ export declare const transactionUnderwritingFlagsResponse: z.ZodObject<{
|
|
|
14015
13985
|
}, z.core.$strip>;
|
|
14016
13986
|
|
|
14017
13987
|
export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
14018
|
-
transactionLocator: z.
|
|
14019
|
-
clearedFlags: z.ZodArray<z.ZodObject<{
|
|
14020
|
-
|
|
14021
|
-
|
|
14022
|
-
|
|
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<{
|
|
14023
14012
|
taskLocator: z.ZodString;
|
|
14024
14013
|
status: z.ZodEnum<{
|
|
14025
14014
|
succeeded: "succeeded";
|
|
14026
14015
|
failed: "failed";
|
|
14027
14016
|
}>;
|
|
14028
|
-
}, z.core.$strip
|
|
14017
|
+
}, z.core.$strip>>;
|
|
14018
|
+
}, z.core.$strip>>>;
|
|
14019
|
+
flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14029
14020
|
locator: z.ZodULID;
|
|
14030
|
-
referenceLocator: z.ZodULID;
|
|
14031
|
-
referenceType: z.ZodEnum<{
|
|
14032
|
-
quote: "quote";
|
|
14033
|
-
transaction: "transaction";
|
|
14034
|
-
}>;
|
|
14035
14021
|
level: z.ZodEnum<{
|
|
14036
14022
|
none: "none";
|
|
14037
14023
|
info: "info";
|
|
@@ -14040,28 +14026,71 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
14040
14026
|
reject: "reject";
|
|
14041
14027
|
approve: "approve";
|
|
14042
14028
|
}>;
|
|
14043
|
-
|
|
14044
|
-
|
|
14045
|
-
|
|
14046
|
-
|
|
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>;
|
|
14047
14036
|
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14048
|
-
|
|
14049
|
-
|
|
14050
|
-
|
|
14051
|
-
|
|
14052
|
-
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<{
|
|
14053
14042
|
taskLocator: z.ZodString;
|
|
14054
14043
|
status: z.ZodEnum<{
|
|
14055
14044
|
succeeded: "succeeded";
|
|
14056
14045
|
failed: "failed";
|
|
14057
14046
|
}>;
|
|
14058
|
-
}, 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<{
|
|
14059
14093
|
locator: z.ZodULID;
|
|
14060
|
-
referenceLocator: z.ZodULID;
|
|
14061
|
-
referenceType: z.ZodEnum<{
|
|
14062
|
-
quote: "quote";
|
|
14063
|
-
transaction: "transaction";
|
|
14064
|
-
}>;
|
|
14065
14094
|
level: z.ZodEnum<{
|
|
14066
14095
|
none: "none";
|
|
14067
14096
|
info: "info";
|
|
@@ -14070,22 +14099,107 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<{
|
|
|
14070
14099
|
reject: "reject";
|
|
14071
14100
|
approve: "approve";
|
|
14072
14101
|
}>;
|
|
14073
|
-
|
|
14074
|
-
|
|
14075
|
-
|
|
14076
|
-
|
|
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>;
|
|
14077
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>;
|
|
14078
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>>>;
|
|
14079
14200
|
}, z.core.$strip>;
|
|
14080
14201
|
|
|
14081
|
-
|
|
14082
|
-
|
|
14083
|
-
declare type TransactionUnderwritingResponse_2 = z.infer<typeof BaseTransactionUnderwritingResponseSchema> & {
|
|
14084
|
-
aggregatedTransactions?: TransactionUnderwritingResponse_2[];
|
|
14085
|
-
};
|
|
14086
|
-
|
|
14087
|
-
export declare const TransactionUnderwritingResponseSchema: z.ZodType<TransactionUnderwritingResponse_2>;
|
|
14088
|
-
|
|
14202
|
+
/** @deprecated - use TransactionUnderwritingResponseSchema */
|
|
14089
14203
|
export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
14090
14204
|
locator: z.ZodString;
|
|
14091
14205
|
policyLocator: z.ZodString;
|
|
@@ -14116,22 +14230,36 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14116
14230
|
reversal: "reversal";
|
|
14117
14231
|
aggregate: "aggregate";
|
|
14118
14232
|
}>;
|
|
14119
|
-
underwritingStatus: z.
|
|
14233
|
+
underwritingStatus: z.ZodString;
|
|
14120
14234
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14121
|
-
locator: z.
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
14125
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
14126
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
14127
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
14235
|
+
locator: z.ZodULID;
|
|
14236
|
+
level: z.ZodEnum<{
|
|
14237
|
+
none: "none";
|
|
14128
14238
|
info: "info";
|
|
14129
14239
|
block: "block";
|
|
14130
14240
|
decline: "decline";
|
|
14131
14241
|
reject: "reject";
|
|
14132
14242
|
approve: "approve";
|
|
14243
|
+
}>;
|
|
14244
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14245
|
+
quote: "quote";
|
|
14246
|
+
transaction: "transaction";
|
|
14133
14247
|
}>>;
|
|
14248
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14134
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>>;
|
|
14135
14263
|
}, z.core.$strip>>>;
|
|
14136
14264
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14137
14265
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14171,22 +14299,36 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14171
14299
|
reversal: "reversal";
|
|
14172
14300
|
aggregate: "aggregate";
|
|
14173
14301
|
}>;
|
|
14174
|
-
underwritingStatus: z.
|
|
14302
|
+
underwritingStatus: z.ZodString;
|
|
14175
14303
|
underwritingFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14176
|
-
locator: z.
|
|
14177
|
-
|
|
14178
|
-
|
|
14179
|
-
clearedTime: z.ZodOptional<z.ZodString>;
|
|
14180
|
-
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
14181
|
-
createdTime: z.ZodOptional<z.ZodString>;
|
|
14182
|
-
level: z.ZodOptional<z.ZodEnum<{
|
|
14304
|
+
locator: z.ZodULID;
|
|
14305
|
+
level: z.ZodEnum<{
|
|
14306
|
+
none: "none";
|
|
14183
14307
|
info: "info";
|
|
14184
14308
|
block: "block";
|
|
14185
14309
|
decline: "decline";
|
|
14186
14310
|
reject: "reject";
|
|
14187
14311
|
approve: "approve";
|
|
14312
|
+
}>;
|
|
14313
|
+
referenceType: z.ZodOptional<z.ZodEnum<{
|
|
14314
|
+
quote: "quote";
|
|
14315
|
+
transaction: "transaction";
|
|
14188
14316
|
}>>;
|
|
14317
|
+
referenceLocator: z.ZodOptional<z.ZodULID>;
|
|
14189
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>>;
|
|
14190
14332
|
}, z.core.$strip>>>;
|
|
14191
14333
|
validationResult: z.ZodOptional<z.ZodObject<{
|
|
14192
14334
|
validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14201,12 +14343,10 @@ export declare const transactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
14201
14343
|
|
|
14202
14344
|
export declare const ULIDZ: z.ZodULID;
|
|
14203
14345
|
|
|
14204
|
-
export declare type UnderwritingFlagCreateRequest = z.infer<typeof
|
|
14346
|
+
export declare type UnderwritingFlagCreateRequest = z.infer<typeof UnderwritingFlagCreateRequestSchema>;
|
|
14205
14347
|
|
|
14206
14348
|
export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
14207
|
-
|
|
14208
|
-
tag: z.ZodString;
|
|
14209
|
-
elementLocator: z.ZodULID;
|
|
14349
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14210
14350
|
level: z.ZodEnum<{
|
|
14211
14351
|
none: "none";
|
|
14212
14352
|
info: "info";
|
|
@@ -14215,8 +14355,10 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14215
14355
|
reject: "reject";
|
|
14216
14356
|
approve: "approve";
|
|
14217
14357
|
}>;
|
|
14358
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14359
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14218
14360
|
taskCreation: z.ZodOptional<z.ZodObject<{
|
|
14219
|
-
|
|
14361
|
+
type: z.ZodString;
|
|
14220
14362
|
references: z.ZodArray<z.ZodObject<{
|
|
14221
14363
|
referenceType: z.ZodEnum<{
|
|
14222
14364
|
account: "account";
|
|
@@ -14230,13 +14372,14 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14230
14372
|
}>;
|
|
14231
14373
|
referenceLocator: z.ZodString;
|
|
14232
14374
|
}, z.core.$strip>>;
|
|
14233
|
-
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
14234
|
-
type: z.ZodString;
|
|
14235
14375
|
underwritingFlagLocators: z.ZodArray<z.ZodString>;
|
|
14376
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14377
|
+
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
14236
14378
|
description: z.ZodOptional<z.ZodString>;
|
|
14237
14379
|
}, z.core.$strip>>;
|
|
14238
14380
|
}, z.core.$strip>;
|
|
14239
14381
|
|
|
14382
|
+
/** @deprecated - use UnderwritingFlagCreateRequestSchema */
|
|
14240
14383
|
export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
14241
14384
|
elementLocator: z.ZodString;
|
|
14242
14385
|
level: z.ZodEnum<{
|
|
@@ -14249,8 +14392,10 @@ export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
14249
14392
|
note: z.ZodOptional<z.ZodString>;
|
|
14250
14393
|
}, z.core.$strip>;
|
|
14251
14394
|
|
|
14395
|
+
/** @deprecated - use UnderwritingFlagsLevelEnum */
|
|
14252
14396
|
export declare type UnderwritingFlagEnum = z.infer<typeof underwritingFlagEnumSchema>;
|
|
14253
14397
|
|
|
14398
|
+
/** @deprecated - use UnderwritingFlagsLevelEnumSchema */
|
|
14254
14399
|
export declare const underwritingFlagEnumSchema: z.ZodEnum<{
|
|
14255
14400
|
info: "info";
|
|
14256
14401
|
block: "block";
|
|
@@ -14259,24 +14404,10 @@ export declare const underwritingFlagEnumSchema: z.ZodEnum<{
|
|
|
14259
14404
|
approve: "approve";
|
|
14260
14405
|
}>;
|
|
14261
14406
|
|
|
14262
|
-
export declare type UnderwritingFlagResponse = z.infer<typeof
|
|
14407
|
+
export declare type UnderwritingFlagResponse = z.infer<typeof UnderwritingFlagResponseSchema>;
|
|
14263
14408
|
|
|
14264
14409
|
export declare const UnderwritingFlagResponseSchema: z.ZodObject<{
|
|
14265
|
-
note: z.ZodString;
|
|
14266
|
-
tag: z.ZodString;
|
|
14267
|
-
taskCreationResponse: z.ZodObject<{
|
|
14268
|
-
taskLocator: z.ZodString;
|
|
14269
|
-
status: z.ZodEnum<{
|
|
14270
|
-
succeeded: "succeeded";
|
|
14271
|
-
failed: "failed";
|
|
14272
|
-
}>;
|
|
14273
|
-
}, z.core.$strip>;
|
|
14274
14410
|
locator: z.ZodULID;
|
|
14275
|
-
referenceLocator: z.ZodULID;
|
|
14276
|
-
referenceType: z.ZodEnum<{
|
|
14277
|
-
quote: "quote";
|
|
14278
|
-
transaction: "transaction";
|
|
14279
|
-
}>;
|
|
14280
14411
|
level: z.ZodEnum<{
|
|
14281
14412
|
none: "none";
|
|
14282
14413
|
info: "info";
|
|
@@ -14285,13 +14416,28 @@ export declare const UnderwritingFlagResponseSchema: z.ZodObject<{
|
|
|
14285
14416
|
reject: "reject";
|
|
14286
14417
|
approve: "approve";
|
|
14287
14418
|
}>;
|
|
14288
|
-
|
|
14289
|
-
|
|
14290
|
-
|
|
14291
|
-
|
|
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>;
|
|
14292
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>>;
|
|
14293
14438
|
}, z.core.$strip>;
|
|
14294
14439
|
|
|
14440
|
+
/** @deprecated - use UnderwritingFlagResponseSchema */
|
|
14295
14441
|
export declare const underwritingFlagResponseSchema: z.ZodObject<{
|
|
14296
14442
|
locator: z.ZodString;
|
|
14297
14443
|
elementLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -14327,13 +14473,11 @@ export declare const UnderwritingFlagsReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
14327
14473
|
transaction: "transaction";
|
|
14328
14474
|
}>;
|
|
14329
14475
|
|
|
14330
|
-
export declare type UnderwritingFlagsUpdateRequest = z.infer<typeof
|
|
14476
|
+
export declare type UnderwritingFlagsUpdateRequest = z.infer<typeof UnderwritingFlagsUpdateRequestSchema>;
|
|
14331
14477
|
|
|
14332
14478
|
export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
14333
|
-
addFlags: z.ZodArray<z.ZodObject<{
|
|
14334
|
-
|
|
14335
|
-
tag: z.ZodString;
|
|
14336
|
-
elementLocator: z.ZodULID;
|
|
14479
|
+
addFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14480
|
+
elementLocator: z.ZodOptional<z.ZodULID>;
|
|
14337
14481
|
level: z.ZodEnum<{
|
|
14338
14482
|
none: "none";
|
|
14339
14483
|
info: "info";
|
|
@@ -14342,8 +14486,10 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14342
14486
|
reject: "reject";
|
|
14343
14487
|
approve: "approve";
|
|
14344
14488
|
}>;
|
|
14489
|
+
note: z.ZodOptional<z.ZodString>;
|
|
14490
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
14345
14491
|
taskCreation: z.ZodOptional<z.ZodObject<{
|
|
14346
|
-
|
|
14492
|
+
type: z.ZodString;
|
|
14347
14493
|
references: z.ZodArray<z.ZodObject<{
|
|
14348
14494
|
referenceType: z.ZodEnum<{
|
|
14349
14495
|
account: "account";
|
|
@@ -14357,15 +14503,16 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14357
14503
|
}>;
|
|
14358
14504
|
referenceLocator: z.ZodString;
|
|
14359
14505
|
}, z.core.$strip>>;
|
|
14360
|
-
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
14361
|
-
type: z.ZodString;
|
|
14362
14506
|
underwritingFlagLocators: z.ZodArray<z.ZodString>;
|
|
14507
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
14508
|
+
assignedTo: z.ZodOptional<z.ZodUUID>;
|
|
14363
14509
|
description: z.ZodOptional<z.ZodString>;
|
|
14364
14510
|
}, z.core.$strip>>;
|
|
14365
|
-
}, z.core.$strip
|
|
14366
|
-
clearFlags: z.ZodArray<z.ZodULID
|
|
14511
|
+
}, z.core.$strip>>>;
|
|
14512
|
+
clearFlags: z.ZodOptional<z.ZodArray<z.ZodULID>>;
|
|
14367
14513
|
}, z.core.$strip>;
|
|
14368
14514
|
|
|
14515
|
+
/** @deprecated - use UnderwritingFlagsUpdateRequestSchema */
|
|
14369
14516
|
export declare const underwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
14370
14517
|
addFlags: z.ZodArray<z.ZodObject<{
|
|
14371
14518
|
elementLocator: z.ZodString;
|