@socotra/ec-react-schemas 2.31.0-next.2 → 2.32.1-next.0
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 +559 -0
- package/dist/index.es.js +6353 -6281
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +10 -10
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -12322,6 +12322,7 @@ export declare const SearchEntityTypeEnum: z.ZodEnum<{
|
|
|
12322
12322
|
quote: "quote";
|
|
12323
12323
|
payment: "payment";
|
|
12324
12324
|
task: "task";
|
|
12325
|
+
userAssociation: "userAssociation";
|
|
12325
12326
|
fnol: "fnol";
|
|
12326
12327
|
diary: "diary";
|
|
12327
12328
|
unspecified: "unspecified";
|
|
@@ -12336,6 +12337,7 @@ export declare const SearchEntityTypeEnumSchema: z.ZodEnum<{
|
|
|
12336
12337
|
quote: "quote";
|
|
12337
12338
|
payment: "payment";
|
|
12338
12339
|
task: "task";
|
|
12340
|
+
userAssociation: "userAssociation";
|
|
12339
12341
|
fnol: "fnol";
|
|
12340
12342
|
diary: "diary";
|
|
12341
12343
|
unspecified: "unspecified";
|
|
@@ -12360,6 +12362,7 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
12360
12362
|
quote: "quote";
|
|
12361
12363
|
payment: "payment";
|
|
12362
12364
|
task: "task";
|
|
12365
|
+
userAssociation: "userAssociation";
|
|
12363
12366
|
fnol: "fnol";
|
|
12364
12367
|
diary: "diary";
|
|
12365
12368
|
unspecified: "unspecified";
|
|
@@ -12380,6 +12383,7 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
12380
12383
|
required: "required";
|
|
12381
12384
|
}>>;
|
|
12382
12385
|
}, z.core.$strip>>>;
|
|
12386
|
+
sortField: z.ZodOptional<z.ZodString>;
|
|
12383
12387
|
}, z.core.$strip>;
|
|
12384
12388
|
|
|
12385
12389
|
/** @deprecated - use SearchRequest instead */
|
|
@@ -12395,6 +12399,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
|
|
|
12395
12399
|
quote: "quote";
|
|
12396
12400
|
payment: "payment";
|
|
12397
12401
|
task: "task";
|
|
12402
|
+
userAssociation: "userAssociation";
|
|
12398
12403
|
fnol: "fnol";
|
|
12399
12404
|
diary: "diary";
|
|
12400
12405
|
unspecified: "unspecified";
|
|
@@ -12421,6 +12426,7 @@ export declare const SearchResultSchema: z.ZodObject<{
|
|
|
12421
12426
|
quote: "quote";
|
|
12422
12427
|
payment: "payment";
|
|
12423
12428
|
task: "task";
|
|
12429
|
+
userAssociation: "userAssociation";
|
|
12424
12430
|
fnol: "fnol";
|
|
12425
12431
|
diary: "diary";
|
|
12426
12432
|
unspecified: "unspecified";
|
|
@@ -12437,6 +12443,13 @@ export declare const SearchResultSchema: z.ZodObject<{
|
|
|
12437
12443
|
/** @deprecated - use SearchResult instead */
|
|
12438
12444
|
export declare type SearchResultType = z.infer<typeof SearchResultSchema>;
|
|
12439
12445
|
|
|
12446
|
+
export declare type SearchSortOrderEnum = z.infer<typeof SearchSortOrderEnumSchema>;
|
|
12447
|
+
|
|
12448
|
+
export declare const SearchSortOrderEnumSchema: z.ZodEnum<{
|
|
12449
|
+
asc: "asc";
|
|
12450
|
+
desc: "desc";
|
|
12451
|
+
}>;
|
|
12452
|
+
|
|
12440
12453
|
export declare type SearchStatsResponse = z.infer<typeof SearchStatsResponseSchema>;
|
|
12441
12454
|
|
|
12442
12455
|
export declare const SearchStatsResponseSchema: z.ZodObject<{
|
|
@@ -12448,6 +12461,7 @@ export declare const SearchStatsResponseSchema: z.ZodObject<{
|
|
|
12448
12461
|
quote: "quote";
|
|
12449
12462
|
payment: "payment";
|
|
12450
12463
|
task: "task";
|
|
12464
|
+
userAssociation: "userAssociation";
|
|
12451
12465
|
fnol: "fnol";
|
|
12452
12466
|
diary: "diary";
|
|
12453
12467
|
unspecified: "unspecified";
|
|
@@ -12466,6 +12480,7 @@ export declare const SearchStatsResultSchema: z.ZodObject<{
|
|
|
12466
12480
|
quote: "quote";
|
|
12467
12481
|
payment: "payment";
|
|
12468
12482
|
task: "task";
|
|
12483
|
+
userAssociation: "userAssociation";
|
|
12469
12484
|
fnol: "fnol";
|
|
12470
12485
|
diary: "diary";
|
|
12471
12486
|
unspecified: "unspecified";
|
|
@@ -12503,6 +12518,32 @@ export declare const SearchTermRequestSchema: z.ZodObject<{
|
|
|
12503
12518
|
}>>;
|
|
12504
12519
|
}, z.core.$strip>;
|
|
12505
12520
|
|
|
12521
|
+
export declare type SearchUserAssociationsRequestBff = z.infer<typeof SearchUserAssociationsRequestBffSchema>;
|
|
12522
|
+
|
|
12523
|
+
export declare const SearchUserAssociationsRequestBffSchema: z.ZodObject<{
|
|
12524
|
+
userAssociationNumber: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12525
|
+
locator: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12526
|
+
referenceType: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
12527
|
+
account: "account";
|
|
12528
|
+
policy: "policy";
|
|
12529
|
+
quote: "quote";
|
|
12530
|
+
invoice: "invoice";
|
|
12531
|
+
transaction: "transaction";
|
|
12532
|
+
quickQuote: "quickQuote";
|
|
12533
|
+
underwritingFlag: "underwritingFlag";
|
|
12534
|
+
payment: "payment";
|
|
12535
|
+
}>>>;
|
|
12536
|
+
referenceLocator: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12537
|
+
userLocator: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12538
|
+
userAssociationRole: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12539
|
+
userAssociationState: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
12540
|
+
discarded: "discarded";
|
|
12541
|
+
active: "active";
|
|
12542
|
+
completed: "completed";
|
|
12543
|
+
disassociated: "disassociated";
|
|
12544
|
+
}>>>;
|
|
12545
|
+
}, z.core.$strip>;
|
|
12546
|
+
|
|
12506
12547
|
export declare type Segment = z.infer<typeof SegmentSchema>;
|
|
12507
12548
|
|
|
12508
12549
|
export declare type SegmentId = z.infer<typeof SegmentIdSchema>;
|
|
@@ -12975,6 +13016,7 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
|
|
|
12975
13016
|
}, z.core.$strip>>;
|
|
12976
13017
|
}, z.core.$strip>;
|
|
12977
13018
|
|
|
13019
|
+
/** @deprecated Use TaskListSearchResultWithStats or TaskListSearchResultBffWithStatsExtended instead */
|
|
12978
13020
|
export declare type TaskListResponseBffWithStats = TaskListResponseBff & {
|
|
12979
13021
|
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
12980
13022
|
};
|
|
@@ -13017,6 +13059,142 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
13017
13059
|
}, z.core.$strip>>;
|
|
13018
13060
|
}, z.core.$strip>;
|
|
13019
13061
|
|
|
13062
|
+
export declare type TaskListSearchResult = z.infer<typeof TaskListSearchResultSchema>;
|
|
13063
|
+
|
|
13064
|
+
export declare type TaskListSearchResultBffExtended = z.infer<typeof TaskListSearchResultBffExtendedSchema>;
|
|
13065
|
+
|
|
13066
|
+
export declare const TaskListSearchResultBffExtendedSchema: z.ZodObject<{
|
|
13067
|
+
listCompleted: z.ZodBoolean;
|
|
13068
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13069
|
+
references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13070
|
+
entityNumber: z.ZodOptional<z.ZodString>;
|
|
13071
|
+
policyLocator: z.ZodOptional<z.ZodULID>;
|
|
13072
|
+
termLocator: z.ZodOptional<z.ZodULID>;
|
|
13073
|
+
transactionLocator: z.ZodOptional<z.ZodULID>;
|
|
13074
|
+
segmentLocator: z.ZodOptional<z.ZodULID>;
|
|
13075
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
13076
|
+
referenceType: z.ZodEnum<{
|
|
13077
|
+
account: "account";
|
|
13078
|
+
policy: "policy";
|
|
13079
|
+
quote: "quote";
|
|
13080
|
+
invoice: "invoice";
|
|
13081
|
+
transaction: "transaction";
|
|
13082
|
+
quickQuote: "quickQuote";
|
|
13083
|
+
underwritingFlag: "underwritingFlag";
|
|
13084
|
+
payment: "payment";
|
|
13085
|
+
inquiry: "inquiry";
|
|
13086
|
+
}>;
|
|
13087
|
+
referenceLocator: z.ZodString;
|
|
13088
|
+
}, z.core.$strip>>>;
|
|
13089
|
+
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13090
|
+
locator: z.ZodGUID;
|
|
13091
|
+
userName: z.ZodString;
|
|
13092
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13093
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13094
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13095
|
+
locator: z.ZodGUID;
|
|
13096
|
+
isDeleted: z.ZodBoolean;
|
|
13097
|
+
}, z.core.$strip>]>>;
|
|
13098
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13099
|
+
locator: z.ZodGUID;
|
|
13100
|
+
userName: z.ZodString;
|
|
13101
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13102
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13104
|
+
locator: z.ZodGUID;
|
|
13105
|
+
isDeleted: z.ZodBoolean;
|
|
13106
|
+
}, z.core.$strip>]>>>;
|
|
13107
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13108
|
+
locator: z.ZodGUID;
|
|
13109
|
+
userName: z.ZodString;
|
|
13110
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13111
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13112
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13113
|
+
locator: z.ZodGUID;
|
|
13114
|
+
isDeleted: z.ZodBoolean;
|
|
13115
|
+
}, z.core.$strip>]>>>;
|
|
13116
|
+
locator: z.ZodULID;
|
|
13117
|
+
taskState: z.ZodEnum<{
|
|
13118
|
+
cancelled: "cancelled";
|
|
13119
|
+
active: "active";
|
|
13120
|
+
completed: "completed";
|
|
13121
|
+
pastDeadline: "pastDeadline";
|
|
13122
|
+
}>;
|
|
13123
|
+
underwritingFlagLocators: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13124
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13125
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13126
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13127
|
+
category: z.ZodOptional<z.ZodString>;
|
|
13128
|
+
type: z.ZodString;
|
|
13129
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13130
|
+
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13131
|
+
}, z.core.$strip>>;
|
|
13132
|
+
}, z.core.$strip>;
|
|
13133
|
+
|
|
13134
|
+
export declare type TaskListSearchResultBffWithStatsExtended = TaskListSearchResultBffExtended & {
|
|
13135
|
+
totalCount?: number;
|
|
13136
|
+
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
13137
|
+
};
|
|
13138
|
+
|
|
13139
|
+
export declare const TaskListSearchResultSchema: z.ZodObject<{
|
|
13140
|
+
listCompleted: z.ZodBoolean;
|
|
13141
|
+
items: z.ZodArray<z.ZodObject<{
|
|
13142
|
+
locator: z.ZodULID;
|
|
13143
|
+
taskState: z.ZodEnum<{
|
|
13144
|
+
cancelled: "cancelled";
|
|
13145
|
+
active: "active";
|
|
13146
|
+
completed: "completed";
|
|
13147
|
+
pastDeadline: "pastDeadline";
|
|
13148
|
+
}>;
|
|
13149
|
+
references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13150
|
+
referenceType: z.ZodEnum<{
|
|
13151
|
+
account: "account";
|
|
13152
|
+
policy: "policy";
|
|
13153
|
+
quote: "quote";
|
|
13154
|
+
invoice: "invoice";
|
|
13155
|
+
transaction: "transaction";
|
|
13156
|
+
quickQuote: "quickQuote";
|
|
13157
|
+
underwritingFlag: "underwritingFlag";
|
|
13158
|
+
payment: "payment";
|
|
13159
|
+
inquiry: "inquiry";
|
|
13160
|
+
}>;
|
|
13161
|
+
referenceLocator: z.ZodString;
|
|
13162
|
+
}, z.core.$strip>>>;
|
|
13163
|
+
underwritingFlagLocators: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13164
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13165
|
+
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
13166
|
+
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13167
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodGUID>>;
|
|
13168
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13169
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13170
|
+
category: z.ZodOptional<z.ZodString>;
|
|
13171
|
+
type: z.ZodString;
|
|
13172
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13173
|
+
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13174
|
+
}, z.core.$strip>>;
|
|
13175
|
+
}, z.core.$strip>;
|
|
13176
|
+
|
|
13177
|
+
export declare type TaskListSearchResultWithStats = TaskListSearchResult & {
|
|
13178
|
+
totalCount?: number;
|
|
13179
|
+
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
13180
|
+
};
|
|
13181
|
+
|
|
13182
|
+
export declare type TaskListSortByEnum = z.infer<typeof TaskListSortByEnumSchema>;
|
|
13183
|
+
|
|
13184
|
+
export declare const TaskListSortByEnumSchema: z.ZodEnum<{
|
|
13185
|
+
referenceType: "referenceType";
|
|
13186
|
+
assignedTo: "assignedTo";
|
|
13187
|
+
taskState: "taskState";
|
|
13188
|
+
taskNumber: "taskNumber";
|
|
13189
|
+
taskType: "taskType";
|
|
13190
|
+
dueDate: "dueDate";
|
|
13191
|
+
}>;
|
|
13192
|
+
|
|
13193
|
+
export declare const TaskListSortOrderEnumSchema: z.ZodEnum<{
|
|
13194
|
+
asc: "asc";
|
|
13195
|
+
desc: "desc";
|
|
13196
|
+
}>;
|
|
13197
|
+
|
|
13020
13198
|
export declare const TaskParamsSchema: z.ZodObject<{
|
|
13021
13199
|
tenantLocator: z.ZodUUID;
|
|
13022
13200
|
taskLocator: z.ZodULID;
|
|
@@ -13180,12 +13358,146 @@ export declare const TaskResponseSchema: z.ZodObject<{
|
|
|
13180
13358
|
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13181
13359
|
}, z.core.$strip>;
|
|
13182
13360
|
|
|
13361
|
+
export declare type TaskResponseSearchResult = z.infer<typeof TaskResponseSearchResultSchema>;
|
|
13362
|
+
|
|
13363
|
+
export declare type TaskResponseSearchResultBffExtended = z.infer<typeof TaskResponseSearchResultBffExtendedSchema>;
|
|
13364
|
+
|
|
13365
|
+
export declare const TaskResponseSearchResultBffExtendedSchema: z.ZodObject<{
|
|
13366
|
+
references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13367
|
+
entityNumber: z.ZodOptional<z.ZodString>;
|
|
13368
|
+
policyLocator: z.ZodOptional<z.ZodULID>;
|
|
13369
|
+
termLocator: z.ZodOptional<z.ZodULID>;
|
|
13370
|
+
transactionLocator: z.ZodOptional<z.ZodULID>;
|
|
13371
|
+
segmentLocator: z.ZodOptional<z.ZodULID>;
|
|
13372
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
13373
|
+
referenceType: z.ZodEnum<{
|
|
13374
|
+
account: "account";
|
|
13375
|
+
policy: "policy";
|
|
13376
|
+
quote: "quote";
|
|
13377
|
+
invoice: "invoice";
|
|
13378
|
+
transaction: "transaction";
|
|
13379
|
+
quickQuote: "quickQuote";
|
|
13380
|
+
underwritingFlag: "underwritingFlag";
|
|
13381
|
+
payment: "payment";
|
|
13382
|
+
inquiry: "inquiry";
|
|
13383
|
+
}>;
|
|
13384
|
+
referenceLocator: z.ZodString;
|
|
13385
|
+
}, z.core.$strip>>>;
|
|
13386
|
+
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13387
|
+
locator: z.ZodGUID;
|
|
13388
|
+
userName: z.ZodString;
|
|
13389
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13390
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13391
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13392
|
+
locator: z.ZodGUID;
|
|
13393
|
+
isDeleted: z.ZodBoolean;
|
|
13394
|
+
}, z.core.$strip>]>>;
|
|
13395
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13396
|
+
locator: z.ZodGUID;
|
|
13397
|
+
userName: z.ZodString;
|
|
13398
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13399
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13400
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13401
|
+
locator: z.ZodGUID;
|
|
13402
|
+
isDeleted: z.ZodBoolean;
|
|
13403
|
+
}, z.core.$strip>]>>>;
|
|
13404
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13405
|
+
locator: z.ZodGUID;
|
|
13406
|
+
userName: z.ZodString;
|
|
13407
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
13408
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
13409
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13410
|
+
locator: z.ZodGUID;
|
|
13411
|
+
isDeleted: z.ZodBoolean;
|
|
13412
|
+
}, z.core.$strip>]>>>;
|
|
13413
|
+
locator: z.ZodULID;
|
|
13414
|
+
taskState: z.ZodEnum<{
|
|
13415
|
+
cancelled: "cancelled";
|
|
13416
|
+
active: "active";
|
|
13417
|
+
completed: "completed";
|
|
13418
|
+
pastDeadline: "pastDeadline";
|
|
13419
|
+
}>;
|
|
13420
|
+
underwritingFlagLocators: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13421
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13422
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13423
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13424
|
+
category: z.ZodOptional<z.ZodString>;
|
|
13425
|
+
type: z.ZodString;
|
|
13426
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13427
|
+
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13428
|
+
}, z.core.$strip>;
|
|
13429
|
+
|
|
13430
|
+
export declare const TaskResponseSearchResultSchema: z.ZodObject<{
|
|
13431
|
+
locator: z.ZodULID;
|
|
13432
|
+
taskState: z.ZodEnum<{
|
|
13433
|
+
cancelled: "cancelled";
|
|
13434
|
+
active: "active";
|
|
13435
|
+
completed: "completed";
|
|
13436
|
+
pastDeadline: "pastDeadline";
|
|
13437
|
+
}>;
|
|
13438
|
+
references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13439
|
+
referenceType: z.ZodEnum<{
|
|
13440
|
+
account: "account";
|
|
13441
|
+
policy: "policy";
|
|
13442
|
+
quote: "quote";
|
|
13443
|
+
invoice: "invoice";
|
|
13444
|
+
transaction: "transaction";
|
|
13445
|
+
quickQuote: "quickQuote";
|
|
13446
|
+
underwritingFlag: "underwritingFlag";
|
|
13447
|
+
payment: "payment";
|
|
13448
|
+
inquiry: "inquiry";
|
|
13449
|
+
}>;
|
|
13450
|
+
referenceLocator: z.ZodString;
|
|
13451
|
+
}, z.core.$strip>>>;
|
|
13452
|
+
underwritingFlagLocators: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13453
|
+
deadlineTime: z.ZodOptional<z.ZodISODateTime>;
|
|
13454
|
+
assignedTo: z.ZodOptional<z.ZodGUID>;
|
|
13455
|
+
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
13456
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodGUID>>;
|
|
13457
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13458
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
13459
|
+
category: z.ZodOptional<z.ZodString>;
|
|
13460
|
+
type: z.ZodString;
|
|
13461
|
+
description: z.ZodOptional<z.ZodString>;
|
|
13462
|
+
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13463
|
+
}, z.core.$strip>;
|
|
13464
|
+
|
|
13183
13465
|
export declare const TasksByRefParamsSchema: z.ZodObject<{
|
|
13184
13466
|
tenantLocator: z.ZodUUID;
|
|
13185
13467
|
referenceType: z.ZodString;
|
|
13186
13468
|
referenceLocator: z.ZodULID;
|
|
13187
13469
|
}, z.core.$strip>;
|
|
13188
13470
|
|
|
13471
|
+
export declare type TaskSearchResultSummary = z.infer<typeof TaskSearchResultSummarySchema>;
|
|
13472
|
+
|
|
13473
|
+
export declare const TaskSearchResultSummarySchema: z.ZodObject<{
|
|
13474
|
+
assigned_to: z.ZodOptional<z.ZodString>;
|
|
13475
|
+
deadline_time: z.ZodOptional<z.ZodString>;
|
|
13476
|
+
references: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13477
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
13478
|
+
reference_type: z.ZodOptional<z.ZodEnum<{
|
|
13479
|
+
account: "account";
|
|
13480
|
+
policy: "policy";
|
|
13481
|
+
quote: "quote";
|
|
13482
|
+
invoice: "invoice";
|
|
13483
|
+
transaction: "transaction";
|
|
13484
|
+
quickQuote: "quickQuote";
|
|
13485
|
+
underwritingFlag: "underwritingFlag";
|
|
13486
|
+
payment: "payment";
|
|
13487
|
+
inquiry: "inquiry";
|
|
13488
|
+
}>>;
|
|
13489
|
+
reference_locator: z.ZodOptional<z.ZodString>;
|
|
13490
|
+
}, z.core.$strip>>>;
|
|
13491
|
+
task_number: z.ZodOptional<z.ZodString>;
|
|
13492
|
+
task_state: z.ZodEnum<{
|
|
13493
|
+
cancelled: "cancelled";
|
|
13494
|
+
active: "active";
|
|
13495
|
+
completed: "completed";
|
|
13496
|
+
pastDeadline: "pastDeadline";
|
|
13497
|
+
}>;
|
|
13498
|
+
task_type: z.ZodString;
|
|
13499
|
+
}, z.core.$strip>;
|
|
13500
|
+
|
|
13189
13501
|
export declare type TaskStateEnum = z.infer<typeof TaskStateEnumSchema>;
|
|
13190
13502
|
|
|
13191
13503
|
export declare const TaskStateEnumSchema: z.ZodEnum<{
|
|
@@ -15354,6 +15666,8 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
15354
15666
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15355
15667
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15356
15668
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15669
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15670
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15357
15671
|
}, z.core.$strip>>;
|
|
15358
15672
|
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15359
15673
|
locator: z.ZodGUID;
|
|
@@ -15437,6 +15751,126 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
15437
15751
|
}, z.core.$strip>>;
|
|
15438
15752
|
}, z.core.$strip>;
|
|
15439
15753
|
|
|
15754
|
+
export declare type UserAssociationListSearchResult = z.infer<typeof UserAssociationListSearchResultSchema>;
|
|
15755
|
+
|
|
15756
|
+
export declare type UserAssociationListSearchResultBffExtended = z.infer<typeof UserAssociationListSearchResultBffExtendedSchema>;
|
|
15757
|
+
|
|
15758
|
+
export declare const UserAssociationListSearchResultBffExtendedSchema: z.ZodObject<{
|
|
15759
|
+
listCompleted: z.ZodBoolean;
|
|
15760
|
+
items: z.ZodArray<z.ZodObject<{
|
|
15761
|
+
referenceDetails: z.ZodOptional<z.ZodObject<{
|
|
15762
|
+
entityNumber: z.ZodOptional<z.ZodString>;
|
|
15763
|
+
policyLocator: z.ZodOptional<z.ZodString>;
|
|
15764
|
+
termLocator: z.ZodOptional<z.ZodString>;
|
|
15765
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15766
|
+
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15767
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15768
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15769
|
+
}, z.core.$strip>>;
|
|
15770
|
+
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15771
|
+
locator: z.ZodGUID;
|
|
15772
|
+
userName: z.ZodString;
|
|
15773
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
15774
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
15775
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15776
|
+
locator: z.ZodGUID;
|
|
15777
|
+
isDeleted: z.ZodBoolean;
|
|
15778
|
+
}, z.core.$strip>]>>;
|
|
15779
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15780
|
+
locator: z.ZodGUID;
|
|
15781
|
+
userName: z.ZodString;
|
|
15782
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
15783
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
15784
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15785
|
+
locator: z.ZodGUID;
|
|
15786
|
+
isDeleted: z.ZodBoolean;
|
|
15787
|
+
}, z.core.$strip>]>>>;
|
|
15788
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15789
|
+
locator: z.ZodGUID;
|
|
15790
|
+
userName: z.ZodString;
|
|
15791
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
15792
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
15793
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15794
|
+
locator: z.ZodGUID;
|
|
15795
|
+
isDeleted: z.ZodBoolean;
|
|
15796
|
+
}, z.core.$strip>]>>>;
|
|
15797
|
+
locator: z.ZodULID;
|
|
15798
|
+
userLocator: z.ZodGUID;
|
|
15799
|
+
referenceType: z.ZodEnum<{
|
|
15800
|
+
account: "account";
|
|
15801
|
+
policy: "policy";
|
|
15802
|
+
quote: "quote";
|
|
15803
|
+
invoice: "invoice";
|
|
15804
|
+
transaction: "transaction";
|
|
15805
|
+
quickQuote: "quickQuote";
|
|
15806
|
+
underwritingFlag: "underwritingFlag";
|
|
15807
|
+
payment: "payment";
|
|
15808
|
+
}>;
|
|
15809
|
+
userAssociationState: z.ZodEnum<{
|
|
15810
|
+
discarded: "discarded";
|
|
15811
|
+
active: "active";
|
|
15812
|
+
completed: "completed";
|
|
15813
|
+
disassociated: "disassociated";
|
|
15814
|
+
}>;
|
|
15815
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
15816
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
15817
|
+
userAssociationRole: z.ZodString;
|
|
15818
|
+
referenceLocator: z.ZodString;
|
|
15819
|
+
}, z.core.$strip>>;
|
|
15820
|
+
}, z.core.$strip>;
|
|
15821
|
+
|
|
15822
|
+
export declare type UserAssociationListSearchResultBffWithStatsExtended = UserAssociationListSearchResultBffExtended & {
|
|
15823
|
+
totalCount?: number;
|
|
15824
|
+
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
15825
|
+
};
|
|
15826
|
+
|
|
15827
|
+
export declare const UserAssociationListSearchResultSchema: z.ZodObject<{
|
|
15828
|
+
listCompleted: z.ZodBoolean;
|
|
15829
|
+
items: z.ZodArray<z.ZodObject<{
|
|
15830
|
+
locator: z.ZodULID;
|
|
15831
|
+
userLocator: z.ZodGUID;
|
|
15832
|
+
referenceType: z.ZodEnum<{
|
|
15833
|
+
account: "account";
|
|
15834
|
+
policy: "policy";
|
|
15835
|
+
quote: "quote";
|
|
15836
|
+
invoice: "invoice";
|
|
15837
|
+
transaction: "transaction";
|
|
15838
|
+
quickQuote: "quickQuote";
|
|
15839
|
+
underwritingFlag: "underwritingFlag";
|
|
15840
|
+
payment: "payment";
|
|
15841
|
+
}>;
|
|
15842
|
+
userAssociationState: z.ZodEnum<{
|
|
15843
|
+
discarded: "discarded";
|
|
15844
|
+
active: "active";
|
|
15845
|
+
completed: "completed";
|
|
15846
|
+
disassociated: "disassociated";
|
|
15847
|
+
}>;
|
|
15848
|
+
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
15849
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
15850
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodGUID>>;
|
|
15851
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
15852
|
+
userAssociationRole: z.ZodString;
|
|
15853
|
+
referenceLocator: z.ZodString;
|
|
15854
|
+
}, z.core.$strip>>;
|
|
15855
|
+
}, z.core.$strip>;
|
|
15856
|
+
|
|
15857
|
+
export declare type UserAssociationListSearchResultWithStats = UserAssociationListSearchResult & {
|
|
15858
|
+
totalCount?: number;
|
|
15859
|
+
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
15860
|
+
};
|
|
15861
|
+
|
|
15862
|
+
export declare type UserAssociationListSortByEnum = z.infer<typeof UserAssociationListSortByEnumSchema>;
|
|
15863
|
+
|
|
15864
|
+
export declare const UserAssociationListSortByEnumSchema: z.ZodEnum<{
|
|
15865
|
+
locator: "locator";
|
|
15866
|
+
referenceType: "referenceType";
|
|
15867
|
+
referenceLocator: "referenceLocator";
|
|
15868
|
+
userLocator: "userLocator";
|
|
15869
|
+
userAssociationRole: "userAssociationRole";
|
|
15870
|
+
userAssociationState: "userAssociationState";
|
|
15871
|
+
userAssociationNumber: "userAssociationNumber";
|
|
15872
|
+
}>;
|
|
15873
|
+
|
|
15440
15874
|
export declare const UserAssociationParamsSchema: z.ZodObject<{
|
|
15441
15875
|
tenantLocator: z.ZodUUID;
|
|
15442
15876
|
userAssociationLocator: z.ZodULID;
|
|
@@ -15450,6 +15884,8 @@ export declare const UserAssociationReferenceDetailsSchema: z.ZodObject<{
|
|
|
15450
15884
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15451
15885
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15452
15886
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15887
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15888
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15453
15889
|
}, z.core.$strip>;
|
|
15454
15890
|
|
|
15455
15891
|
export declare type UserAssociationReferenceTypeEnum = z.infer<typeof UserAssociationReferenceTypeEnumSchema>;
|
|
@@ -15476,6 +15912,8 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
15476
15912
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15477
15913
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15478
15914
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15915
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15916
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15479
15917
|
}, z.core.$strip>>;
|
|
15480
15918
|
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15481
15919
|
locator: z.ZodGUID;
|
|
@@ -15555,6 +15993,98 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
15555
15993
|
referenceLocator: z.ZodString;
|
|
15556
15994
|
}, z.core.$strip>;
|
|
15557
15995
|
|
|
15996
|
+
export declare type UserAssociationResponseSearchResult = z.infer<typeof UserAssociationResponseSearchResultSchema>;
|
|
15997
|
+
|
|
15998
|
+
export declare type UserAssociationResponseSearchResultBffExtended = z.infer<typeof UserAssociationResponseSearchResultBffExtendedSchema>;
|
|
15999
|
+
|
|
16000
|
+
export declare const UserAssociationResponseSearchResultBffExtendedSchema: z.ZodObject<{
|
|
16001
|
+
referenceDetails: z.ZodOptional<z.ZodObject<{
|
|
16002
|
+
entityNumber: z.ZodOptional<z.ZodString>;
|
|
16003
|
+
policyLocator: z.ZodOptional<z.ZodString>;
|
|
16004
|
+
termLocator: z.ZodOptional<z.ZodString>;
|
|
16005
|
+
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
16006
|
+
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
16007
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16008
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
16009
|
+
}, z.core.$strip>>;
|
|
16010
|
+
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
16011
|
+
locator: z.ZodGUID;
|
|
16012
|
+
userName: z.ZodString;
|
|
16013
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
16014
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
16015
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16016
|
+
locator: z.ZodGUID;
|
|
16017
|
+
isDeleted: z.ZodBoolean;
|
|
16018
|
+
}, z.core.$strip>]>>;
|
|
16019
|
+
createdBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
16020
|
+
locator: z.ZodGUID;
|
|
16021
|
+
userName: z.ZodString;
|
|
16022
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
16023
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
16024
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16025
|
+
locator: z.ZodGUID;
|
|
16026
|
+
isDeleted: z.ZodBoolean;
|
|
16027
|
+
}, z.core.$strip>]>>>;
|
|
16028
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
16029
|
+
locator: z.ZodGUID;
|
|
16030
|
+
userName: z.ZodString;
|
|
16031
|
+
firstName: z.ZodOptional<z.ZodString>;
|
|
16032
|
+
lastName: z.ZodOptional<z.ZodString>;
|
|
16033
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16034
|
+
locator: z.ZodGUID;
|
|
16035
|
+
isDeleted: z.ZodBoolean;
|
|
16036
|
+
}, z.core.$strip>]>>>;
|
|
16037
|
+
locator: z.ZodULID;
|
|
16038
|
+
userLocator: z.ZodGUID;
|
|
16039
|
+
referenceType: z.ZodEnum<{
|
|
16040
|
+
account: "account";
|
|
16041
|
+
policy: "policy";
|
|
16042
|
+
quote: "quote";
|
|
16043
|
+
invoice: "invoice";
|
|
16044
|
+
transaction: "transaction";
|
|
16045
|
+
quickQuote: "quickQuote";
|
|
16046
|
+
underwritingFlag: "underwritingFlag";
|
|
16047
|
+
payment: "payment";
|
|
16048
|
+
}>;
|
|
16049
|
+
userAssociationState: z.ZodEnum<{
|
|
16050
|
+
discarded: "discarded";
|
|
16051
|
+
active: "active";
|
|
16052
|
+
completed: "completed";
|
|
16053
|
+
disassociated: "disassociated";
|
|
16054
|
+
}>;
|
|
16055
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16056
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16057
|
+
userAssociationRole: z.ZodString;
|
|
16058
|
+
referenceLocator: z.ZodString;
|
|
16059
|
+
}, z.core.$strip>;
|
|
16060
|
+
|
|
16061
|
+
export declare const UserAssociationResponseSearchResultSchema: z.ZodObject<{
|
|
16062
|
+
locator: z.ZodULID;
|
|
16063
|
+
userLocator: z.ZodGUID;
|
|
16064
|
+
referenceType: z.ZodEnum<{
|
|
16065
|
+
account: "account";
|
|
16066
|
+
policy: "policy";
|
|
16067
|
+
quote: "quote";
|
|
16068
|
+
invoice: "invoice";
|
|
16069
|
+
transaction: "transaction";
|
|
16070
|
+
quickQuote: "quickQuote";
|
|
16071
|
+
underwritingFlag: "underwritingFlag";
|
|
16072
|
+
payment: "payment";
|
|
16073
|
+
}>;
|
|
16074
|
+
userAssociationState: z.ZodEnum<{
|
|
16075
|
+
discarded: "discarded";
|
|
16076
|
+
active: "active";
|
|
16077
|
+
completed: "completed";
|
|
16078
|
+
disassociated: "disassociated";
|
|
16079
|
+
}>;
|
|
16080
|
+
createdBy: z.ZodOptional<z.ZodGUID>;
|
|
16081
|
+
createdAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16082
|
+
updatedBy: z.ZodOptional<z.ZodOptional<z.ZodGUID>>;
|
|
16083
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16084
|
+
userAssociationRole: z.ZodString;
|
|
16085
|
+
referenceLocator: z.ZodString;
|
|
16086
|
+
}, z.core.$strip>;
|
|
16087
|
+
|
|
15558
16088
|
export declare type UserAssociationRoleRef = z.infer<typeof UserAssociationRoleRefSchema>;
|
|
15559
16089
|
|
|
15560
16090
|
export declare const UserAssociationRoleRefSchema: z.ZodObject<{
|
|
@@ -15578,6 +16108,31 @@ export declare const UserAssociationsByRefParamsSchema: z.ZodObject<{
|
|
|
15578
16108
|
referenceLocator: z.ZodULID;
|
|
15579
16109
|
}, z.core.$strip>;
|
|
15580
16110
|
|
|
16111
|
+
export declare type UserAssociationSearchResultSummary = z.infer<typeof UserAssociationSearchResultSummarySchema>;
|
|
16112
|
+
|
|
16113
|
+
export declare const UserAssociationSearchResultSummarySchema: z.ZodObject<{
|
|
16114
|
+
user_locator: z.ZodString;
|
|
16115
|
+
reference_type: z.ZodEnum<{
|
|
16116
|
+
account: "account";
|
|
16117
|
+
policy: "policy";
|
|
16118
|
+
quote: "quote";
|
|
16119
|
+
invoice: "invoice";
|
|
16120
|
+
transaction: "transaction";
|
|
16121
|
+
quickQuote: "quickQuote";
|
|
16122
|
+
underwritingFlag: "underwritingFlag";
|
|
16123
|
+
payment: "payment";
|
|
16124
|
+
}>;
|
|
16125
|
+
user_association_state: z.ZodEnum<{
|
|
16126
|
+
discarded: "discarded";
|
|
16127
|
+
active: "active";
|
|
16128
|
+
completed: "completed";
|
|
16129
|
+
disassociated: "disassociated";
|
|
16130
|
+
}>;
|
|
16131
|
+
user_association_role: z.ZodString;
|
|
16132
|
+
reference_locator: z.ZodString;
|
|
16133
|
+
entity_number: z.ZodOptional<z.ZodString>;
|
|
16134
|
+
}, z.core.$strip>;
|
|
16135
|
+
|
|
15581
16136
|
export declare type UserAssociationStateEnum = z.infer<typeof UserAssociationStateEnumSchema>;
|
|
15582
16137
|
|
|
15583
16138
|
export declare const UserAssociationStateEnumSchema: z.ZodEnum<{
|
|
@@ -15704,6 +16259,8 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
15704
16259
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15705
16260
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15706
16261
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
16262
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16263
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15707
16264
|
}, z.core.$strip>>;
|
|
15708
16265
|
locator: z.ZodULID;
|
|
15709
16266
|
userLocator: z.ZodGUID;
|
|
@@ -15741,6 +16298,8 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
15741
16298
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15742
16299
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15743
16300
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
16301
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16302
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15744
16303
|
}, z.core.$strip>>;
|
|
15745
16304
|
locator: z.ZodULID;
|
|
15746
16305
|
userLocator: z.ZodGUID;
|