@socotra/ec-react-schemas 2.31.0-next.1 → 2.32.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 +67 -0
- package/dist/index.es.js +2545 -2523
- 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
|
@@ -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>;
|
|
@@ -13017,6 +13058,20 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
13017
13058
|
}, z.core.$strip>>;
|
|
13018
13059
|
}, z.core.$strip>;
|
|
13019
13060
|
|
|
13061
|
+
export declare const TaskListSortByEnumSchema: z.ZodEnum<{
|
|
13062
|
+
referenceType: "referenceType";
|
|
13063
|
+
assignedTo: "assignedTo";
|
|
13064
|
+
taskState: "taskState";
|
|
13065
|
+
taskNumber: "taskNumber";
|
|
13066
|
+
taskType: "taskType";
|
|
13067
|
+
dueDate: "dueDate";
|
|
13068
|
+
}>;
|
|
13069
|
+
|
|
13070
|
+
export declare const TaskListSortOrderEnumSchema: z.ZodEnum<{
|
|
13071
|
+
asc: "asc";
|
|
13072
|
+
desc: "desc";
|
|
13073
|
+
}>;
|
|
13074
|
+
|
|
13020
13075
|
export declare const TaskParamsSchema: z.ZodObject<{
|
|
13021
13076
|
tenantLocator: z.ZodUUID;
|
|
13022
13077
|
taskLocator: z.ZodULID;
|
|
@@ -15437,6 +15492,18 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
15437
15492
|
}, z.core.$strip>>;
|
|
15438
15493
|
}, z.core.$strip>;
|
|
15439
15494
|
|
|
15495
|
+
export declare type UserAssociationListSortByEnum = z.infer<typeof UserAssociationListSortByEnumSchema>;
|
|
15496
|
+
|
|
15497
|
+
export declare const UserAssociationListSortByEnumSchema: z.ZodEnum<{
|
|
15498
|
+
locator: "locator";
|
|
15499
|
+
referenceType: "referenceType";
|
|
15500
|
+
referenceLocator: "referenceLocator";
|
|
15501
|
+
userLocator: "userLocator";
|
|
15502
|
+
userAssociationRole: "userAssociationRole";
|
|
15503
|
+
userAssociationState: "userAssociationState";
|
|
15504
|
+
userAssociationNumber: "userAssociationNumber";
|
|
15505
|
+
}>;
|
|
15506
|
+
|
|
15440
15507
|
export declare const UserAssociationParamsSchema: z.ZodObject<{
|
|
15441
15508
|
tenantLocator: z.ZodUUID;
|
|
15442
15509
|
userAssociationLocator: z.ZodULID;
|