@socotra/ec-react-schemas 2.32.0 → 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 +492 -0
- package/dist/index.es.js +6235 -6185
- 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
|
@@ -13016,6 +13016,7 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
|
|
|
13016
13016
|
}, z.core.$strip>>;
|
|
13017
13017
|
}, z.core.$strip>;
|
|
13018
13018
|
|
|
13019
|
+
/** @deprecated Use TaskListSearchResultWithStats or TaskListSearchResultBffWithStatsExtended instead */
|
|
13019
13020
|
export declare type TaskListResponseBffWithStats = TaskListResponseBff & {
|
|
13020
13021
|
searchStats?: NonNullable<SearchStatsResponse['results']>;
|
|
13021
13022
|
};
|
|
@@ -13058,6 +13059,128 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
13058
13059
|
}, z.core.$strip>>;
|
|
13059
13060
|
}, z.core.$strip>;
|
|
13060
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
|
+
|
|
13061
13184
|
export declare const TaskListSortByEnumSchema: z.ZodEnum<{
|
|
13062
13185
|
referenceType: "referenceType";
|
|
13063
13186
|
assignedTo: "assignedTo";
|
|
@@ -13235,12 +13358,146 @@ export declare const TaskResponseSchema: z.ZodObject<{
|
|
|
13235
13358
|
taskNumber: z.ZodOptional<z.ZodString>;
|
|
13236
13359
|
}, z.core.$strip>;
|
|
13237
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
|
+
|
|
13238
13465
|
export declare const TasksByRefParamsSchema: z.ZodObject<{
|
|
13239
13466
|
tenantLocator: z.ZodUUID;
|
|
13240
13467
|
referenceType: z.ZodString;
|
|
13241
13468
|
referenceLocator: z.ZodULID;
|
|
13242
13469
|
}, z.core.$strip>;
|
|
13243
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
|
+
|
|
13244
13501
|
export declare type TaskStateEnum = z.infer<typeof TaskStateEnumSchema>;
|
|
13245
13502
|
|
|
13246
13503
|
export declare const TaskStateEnumSchema: z.ZodEnum<{
|
|
@@ -15409,6 +15666,8 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
15409
15666
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15410
15667
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15411
15668
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15669
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15670
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15412
15671
|
}, z.core.$strip>>;
|
|
15413
15672
|
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15414
15673
|
locator: z.ZodGUID;
|
|
@@ -15492,6 +15751,114 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
15492
15751
|
}, z.core.$strip>>;
|
|
15493
15752
|
}, z.core.$strip>;
|
|
15494
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
|
+
|
|
15495
15862
|
export declare type UserAssociationListSortByEnum = z.infer<typeof UserAssociationListSortByEnumSchema>;
|
|
15496
15863
|
|
|
15497
15864
|
export declare const UserAssociationListSortByEnumSchema: z.ZodEnum<{
|
|
@@ -15517,6 +15884,8 @@ export declare const UserAssociationReferenceDetailsSchema: z.ZodObject<{
|
|
|
15517
15884
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15518
15885
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15519
15886
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15887
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15888
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15520
15889
|
}, z.core.$strip>;
|
|
15521
15890
|
|
|
15522
15891
|
export declare type UserAssociationReferenceTypeEnum = z.infer<typeof UserAssociationReferenceTypeEnumSchema>;
|
|
@@ -15543,6 +15912,8 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
15543
15912
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15544
15913
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15545
15914
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
15915
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
15916
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15546
15917
|
}, z.core.$strip>>;
|
|
15547
15918
|
assignedTo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15548
15919
|
locator: z.ZodGUID;
|
|
@@ -15622,6 +15993,98 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
15622
15993
|
referenceLocator: z.ZodString;
|
|
15623
15994
|
}, z.core.$strip>;
|
|
15624
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
|
+
|
|
15625
16088
|
export declare type UserAssociationRoleRef = z.infer<typeof UserAssociationRoleRefSchema>;
|
|
15626
16089
|
|
|
15627
16090
|
export declare const UserAssociationRoleRefSchema: z.ZodObject<{
|
|
@@ -15645,6 +16108,31 @@ export declare const UserAssociationsByRefParamsSchema: z.ZodObject<{
|
|
|
15645
16108
|
referenceLocator: z.ZodULID;
|
|
15646
16109
|
}, z.core.$strip>;
|
|
15647
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
|
+
|
|
15648
16136
|
export declare type UserAssociationStateEnum = z.infer<typeof UserAssociationStateEnumSchema>;
|
|
15649
16137
|
|
|
15650
16138
|
export declare const UserAssociationStateEnumSchema: z.ZodEnum<{
|
|
@@ -15771,6 +16259,8 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
15771
16259
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15772
16260
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15773
16261
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
16262
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16263
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15774
16264
|
}, z.core.$strip>>;
|
|
15775
16265
|
locator: z.ZodULID;
|
|
15776
16266
|
userLocator: z.ZodGUID;
|
|
@@ -15808,6 +16298,8 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
15808
16298
|
termLocator: z.ZodOptional<z.ZodString>;
|
|
15809
16299
|
transactionLocator: z.ZodOptional<z.ZodString>;
|
|
15810
16300
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
16301
|
+
accountLocator: z.ZodOptional<z.ZodString>;
|
|
16302
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
15811
16303
|
}, z.core.$strip>>;
|
|
15812
16304
|
locator: z.ZodULID;
|
|
15813
16305
|
userLocator: z.ZodGUID;
|