@socotra/ec-react-schemas 2.25.3-next.5 → 2.25.3-next.7
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 +341 -30
- package/dist/index.es.js +17906 -11483
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +14 -11
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
|
+
import { default as default_2 } from 'zod/v4';
|
|
1
2
|
import { z } from 'zod/v4';
|
|
2
3
|
import { z as z_2 } from 'zod';
|
|
3
4
|
|
|
5
|
+
export declare type AbsoluteEnum = z.infer<typeof AbsoluteEnum>;
|
|
6
|
+
|
|
7
|
+
/** @deprecated - use AbsoluteEnumSchema instead */
|
|
4
8
|
export declare const AbsoluteEnum: z.ZodEnum<{
|
|
5
9
|
none: "none";
|
|
6
10
|
excluded: "excluded";
|
|
7
11
|
required: "required";
|
|
8
12
|
}>;
|
|
9
13
|
|
|
14
|
+
export declare const AbsoluteEnumSchema: z.ZodEnum<{
|
|
15
|
+
none: "none";
|
|
16
|
+
excluded: "excluded";
|
|
17
|
+
required: "required";
|
|
18
|
+
}>;
|
|
19
|
+
|
|
10
20
|
export declare type AccountConfig = z.infer<typeof accountConfigSchema>;
|
|
11
21
|
|
|
12
22
|
export declare type AccountConfigRecord = z.infer<typeof accountConfigRecordSchema>;
|
|
@@ -462,6 +472,8 @@ export declare const AddTaskRequestBffSchema: z.ZodObject<{
|
|
|
462
472
|
invoice: "invoice";
|
|
463
473
|
transaction: "transaction";
|
|
464
474
|
quickQuote: "quickQuote";
|
|
475
|
+
underwritingFlag: "underwritingFlag";
|
|
476
|
+
payment: "payment";
|
|
465
477
|
}>;
|
|
466
478
|
referenceLocator: z.ZodString;
|
|
467
479
|
}, z.core.$strip>>;
|
|
@@ -493,6 +505,8 @@ export declare const advanceLapseToSchema: z.ZodEnum<{
|
|
|
493
505
|
|
|
494
506
|
export declare type AnchorMode = z.infer<typeof anchorModeEnumSchema>;
|
|
495
507
|
|
|
508
|
+
export declare type AnchorModeEnum = z.infer<typeof AnchorModeEnumSchema>;
|
|
509
|
+
|
|
496
510
|
export declare const AnchorModeEnumSchema: z.ZodEnum<{
|
|
497
511
|
generateDay: "generateDay";
|
|
498
512
|
termStartDay: "termStartDay";
|
|
@@ -507,6 +521,8 @@ export declare const anchorModeEnumSchema: z.ZodEnum<{
|
|
|
507
521
|
|
|
508
522
|
export declare type AnchorType = z.infer<typeof anchorTypeEnumSchema>;
|
|
509
523
|
|
|
524
|
+
export declare type AnchorTypeEnum = z.infer<typeof AnchorTypeEnumSchema>;
|
|
525
|
+
|
|
510
526
|
export declare const AnchorTypeEnumSchema: z.ZodEnum<{
|
|
511
527
|
none: "none";
|
|
512
528
|
dayOfMonth: "dayOfMonth";
|
|
@@ -672,6 +688,116 @@ export declare const autoRenewalPlanSchema: z.ZodObject<{
|
|
|
672
688
|
renewalTransactionType: z.ZodOptional<z.ZodString>;
|
|
673
689
|
}, z.core.$strip>;
|
|
674
690
|
|
|
691
|
+
export declare type AuxDataKeySetResponse = default_2.infer<typeof auxDataKeySetResponseSchema>;
|
|
692
|
+
|
|
693
|
+
export declare const AuxDataKeySetResponseSchema: default_2.ZodObject<{
|
|
694
|
+
keys: default_2.ZodOptional<default_2.ZodArray<default_2.ZodObject<{
|
|
695
|
+
key: default_2.ZodString;
|
|
696
|
+
uiType: default_2.ZodEnum<{
|
|
697
|
+
readonly: "readonly";
|
|
698
|
+
normal: "normal";
|
|
699
|
+
hidden: "hidden";
|
|
700
|
+
}>;
|
|
701
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
702
|
+
}, default_2.core.$strip>>>;
|
|
703
|
+
offset: default_2.ZodInt;
|
|
704
|
+
count: default_2.ZodInt;
|
|
705
|
+
}, default_2.core.$strip>;
|
|
706
|
+
|
|
707
|
+
declare const auxDataKeySetResponseSchema: z_2.ZodObject<{
|
|
708
|
+
offset: z_2.ZodInt;
|
|
709
|
+
count: z_2.ZodInt;
|
|
710
|
+
keys: z_2.ZodArray<z_2.ZodObject<{
|
|
711
|
+
key: z_2.ZodString;
|
|
712
|
+
uiType: z_2.ZodEnum<{
|
|
713
|
+
readonly: "readonly";
|
|
714
|
+
normal: "normal";
|
|
715
|
+
hidden: "hidden";
|
|
716
|
+
}>;
|
|
717
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
718
|
+
}, z_2.core.$strip>>;
|
|
719
|
+
}, z_2.core.$strip>;
|
|
720
|
+
|
|
721
|
+
export declare type AuxDataResponse = default_2.infer<typeof auxDataResponseSchema>;
|
|
722
|
+
|
|
723
|
+
export declare const AuxDataResponseSchema: default_2.ZodObject<{
|
|
724
|
+
locator: default_2.ZodString;
|
|
725
|
+
key: default_2.ZodString;
|
|
726
|
+
uiType: default_2.ZodEnum<{
|
|
727
|
+
readonly: "readonly";
|
|
728
|
+
normal: "normal";
|
|
729
|
+
hidden: "hidden";
|
|
730
|
+
}>;
|
|
731
|
+
value: default_2.ZodString;
|
|
732
|
+
modificationTimestamp: default_2.ZodISODateTime;
|
|
733
|
+
expirationTimestamp: default_2.ZodOptional<default_2.ZodISODateTime>;
|
|
734
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
735
|
+
}, default_2.core.$strip>;
|
|
736
|
+
|
|
737
|
+
declare const auxDataResponseSchema: z_2.ZodObject<{
|
|
738
|
+
locator: z_2.ZodString;
|
|
739
|
+
key: z_2.ZodString;
|
|
740
|
+
uiType: z_2.ZodEnum<{
|
|
741
|
+
readonly: "readonly";
|
|
742
|
+
normal: "normal";
|
|
743
|
+
hidden: "hidden";
|
|
744
|
+
}>;
|
|
745
|
+
value: z_2.ZodString;
|
|
746
|
+
modificationTimestamp: z_2.ZodISODateTime;
|
|
747
|
+
expirationTimestamp: z_2.ZodOptional<z_2.ZodISODateTime>;
|
|
748
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
749
|
+
}, z_2.core.$strip>;
|
|
750
|
+
|
|
751
|
+
export declare type AuxDataSet = default_2.infer<typeof auxDataSetSchema>;
|
|
752
|
+
|
|
753
|
+
export declare type AuxDataSetCreateRequest = default_2.infer<typeof auxDataSetCreateRequestSchema>;
|
|
754
|
+
|
|
755
|
+
export declare const AuxDataSetCreateRequestSchema: default_2.ZodObject<{
|
|
756
|
+
auxDataSettingsName: default_2.ZodOptional<default_2.ZodString>;
|
|
757
|
+
auxData: default_2.ZodArray<default_2.ZodObject<{
|
|
758
|
+
uiType: default_2.ZodEnum<{
|
|
759
|
+
readonly: "readonly";
|
|
760
|
+
normal: "normal";
|
|
761
|
+
hidden: "hidden";
|
|
762
|
+
}>;
|
|
763
|
+
key: default_2.ZodString;
|
|
764
|
+
value: default_2.ZodString;
|
|
765
|
+
}, default_2.core.$strip>>;
|
|
766
|
+
}, default_2.core.$strip>;
|
|
767
|
+
|
|
768
|
+
declare const auxDataSetCreateRequestSchema: z_2.ZodObject<{
|
|
769
|
+
auxDataSettingsName: z_2.ZodOptional<z_2.ZodString>;
|
|
770
|
+
auxData: z_2.ZodArray<z_2.ZodObject<{
|
|
771
|
+
uiType: z_2.ZodEnum<{
|
|
772
|
+
readonly: "readonly";
|
|
773
|
+
normal: "normal";
|
|
774
|
+
hidden: "hidden";
|
|
775
|
+
}>;
|
|
776
|
+
key: z_2.ZodString;
|
|
777
|
+
value: z_2.ZodString;
|
|
778
|
+
}, z_2.core.$strip>>;
|
|
779
|
+
}, z_2.core.$strip>;
|
|
780
|
+
|
|
781
|
+
export declare const AuxDataSetSchema: default_2.ZodObject<{
|
|
782
|
+
uiType: default_2.ZodEnum<{
|
|
783
|
+
readonly: "readonly";
|
|
784
|
+
normal: "normal";
|
|
785
|
+
hidden: "hidden";
|
|
786
|
+
}>;
|
|
787
|
+
key: default_2.ZodString;
|
|
788
|
+
value: default_2.ZodString;
|
|
789
|
+
}, default_2.core.$strip>;
|
|
790
|
+
|
|
791
|
+
declare const auxDataSetSchema: z_2.ZodObject<{
|
|
792
|
+
uiType: z_2.ZodEnum<{
|
|
793
|
+
readonly: "readonly";
|
|
794
|
+
normal: "normal";
|
|
795
|
+
hidden: "hidden";
|
|
796
|
+
}>;
|
|
797
|
+
key: z_2.ZodString;
|
|
798
|
+
value: z_2.ZodString;
|
|
799
|
+
}, z_2.core.$strip>;
|
|
800
|
+
|
|
675
801
|
declare type BaseElementCreateRequest = z.infer<typeof BaseElementCreateRequestSchema> & {
|
|
676
802
|
elements?: BaseElementCreateRequest[];
|
|
677
803
|
};
|
|
@@ -1124,6 +1250,8 @@ export declare const BasicUserResponseSchema: z.ZodObject<{
|
|
|
1124
1250
|
|
|
1125
1251
|
export declare type BillingLevel = z.infer<typeof billingLevelEnumSchema>;
|
|
1126
1252
|
|
|
1253
|
+
export declare type BillingLevelEnum = z.infer<typeof BillingLevelEnumSchema>;
|
|
1254
|
+
|
|
1127
1255
|
export declare const BillingLevelEnumSchema: z.ZodEnum<{
|
|
1128
1256
|
account: "account";
|
|
1129
1257
|
inherit: "inherit";
|
|
@@ -1147,6 +1275,8 @@ export declare const BillingPreferencesSchema: z.ZodObject<{
|
|
|
1147
1275
|
}>;
|
|
1148
1276
|
}, z.core.$strip>;
|
|
1149
1277
|
|
|
1278
|
+
export declare type BillingTriggerEnum = z.infer<typeof BillingTriggerEnumSchema>;
|
|
1279
|
+
|
|
1150
1280
|
export declare const BillingTriggerEnumSchema: z.ZodEnum<{
|
|
1151
1281
|
accept: "accept";
|
|
1152
1282
|
issue: "issue";
|
|
@@ -1208,6 +1338,8 @@ export declare const bootstrapSchema: z.ZodObject<{
|
|
|
1208
1338
|
|
|
1209
1339
|
export declare type Cadence = z.infer<typeof cadenceEnumSchema>;
|
|
1210
1340
|
|
|
1341
|
+
export declare type CadenceEnum = z.infer<typeof CadenceEnumSchema>;
|
|
1342
|
+
|
|
1211
1343
|
export declare const CadenceEnumSchema: z.ZodEnum<{
|
|
1212
1344
|
none: "none";
|
|
1213
1345
|
fullPay: "fullPay";
|
|
@@ -1234,6 +1366,8 @@ export declare const cadenceEnumSchema: z.ZodEnum<{
|
|
|
1234
1366
|
everyNDays: "everyNDays";
|
|
1235
1367
|
}>;
|
|
1236
1368
|
|
|
1369
|
+
export declare type ChangeActionEnum = z.infer<typeof ChangeActionEnumSchema>;
|
|
1370
|
+
|
|
1237
1371
|
export declare const ChangeActionEnumSchema: z.ZodEnum<{
|
|
1238
1372
|
delete: "delete";
|
|
1239
1373
|
params: "params";
|
|
@@ -1243,6 +1377,8 @@ export declare const ChangeActionEnumSchema: z.ZodEnum<{
|
|
|
1243
1377
|
|
|
1244
1378
|
export declare type ChargeCategory = z.infer<typeof chargeCategorySchema>;
|
|
1245
1379
|
|
|
1380
|
+
export declare type ChargeCategoryEnum = z.infer<typeof ChargeCategoryEnumSchema>;
|
|
1381
|
+
|
|
1246
1382
|
export declare const ChargeCategoryEnumSchema: z.ZodEnum<{
|
|
1247
1383
|
none: "none";
|
|
1248
1384
|
premium: "premium";
|
|
@@ -1654,6 +1790,8 @@ export declare const ContactsMergeRequestSchema: z.ZodObject<{
|
|
|
1654
1790
|
mergeToContact: z.ZodULID;
|
|
1655
1791
|
}, z.core.$strip>;
|
|
1656
1792
|
|
|
1793
|
+
export declare type ContactStateEnum = z.infer<typeof ContactStateEnumSchema>;
|
|
1794
|
+
|
|
1657
1795
|
export declare const ContactStateEnumSchema: z.ZodEnum<{
|
|
1658
1796
|
draft: "draft";
|
|
1659
1797
|
validated: "validated";
|
|
@@ -2519,6 +2657,8 @@ export declare type CreditItemContainerTypeEnum = z.infer<typeof creditItemConta
|
|
|
2519
2657
|
export declare const CreditItemContainerTypeEnumSchema: z.ZodEnum<{
|
|
2520
2658
|
account: "account";
|
|
2521
2659
|
invoice: "invoice";
|
|
2660
|
+
subpayment: "subpayment";
|
|
2661
|
+
invoiceItem: "invoiceItem";
|
|
2522
2662
|
}>;
|
|
2523
2663
|
|
|
2524
2664
|
export declare const creditItemContainerTypeEnumSchema: z.ZodEnum<{
|
|
@@ -2530,6 +2670,8 @@ export declare const CreditItemSchema: z.ZodObject<{
|
|
|
2530
2670
|
containerType: z.ZodEnum<{
|
|
2531
2671
|
account: "account";
|
|
2532
2672
|
invoice: "invoice";
|
|
2673
|
+
subpayment: "subpayment";
|
|
2674
|
+
invoiceItem: "invoiceItem";
|
|
2533
2675
|
}>;
|
|
2534
2676
|
containerLocator: z.ZodString;
|
|
2535
2677
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3031,9 +3173,9 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3031
3173
|
zip: "zip";
|
|
3032
3174
|
}>>;
|
|
3033
3175
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
3034
|
-
policyStartTime: "policyStartTime";
|
|
3035
|
-
termStartTime: "termStartTime";
|
|
3036
3176
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
3177
|
+
termStartTime: "termStartTime";
|
|
3178
|
+
policyStartTime: "policyStartTime";
|
|
3037
3179
|
currentTime: "currentTime";
|
|
3038
3180
|
}>>;
|
|
3039
3181
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3119,6 +3261,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3119
3261
|
invoice: "invoice";
|
|
3120
3262
|
transaction: "transaction";
|
|
3121
3263
|
quickQuote: "quickQuote";
|
|
3264
|
+
underwritingFlag: "underwritingFlag";
|
|
3265
|
+
payment: "payment";
|
|
3122
3266
|
}>>;
|
|
3123
3267
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3124
3268
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3640,6 +3784,8 @@ export declare const DatetimeZ: z.ZodISODateTime;
|
|
|
3640
3784
|
|
|
3641
3785
|
export declare type DayOfWeek = z.infer<typeof dayOfWeekEnumSchema>;
|
|
3642
3786
|
|
|
3787
|
+
export declare type DayOfWeekEnum = z.infer<typeof DayOfWeekEnumSchema>;
|
|
3788
|
+
|
|
3643
3789
|
export declare const DayOfWeekEnumSchema: z.ZodEnum<{
|
|
3644
3790
|
monday: "monday";
|
|
3645
3791
|
tuesday: "tuesday";
|
|
@@ -3660,6 +3806,28 @@ export declare const dayOfWeekEnumSchema: z.ZodEnum<{
|
|
|
3660
3806
|
sunday: "sunday";
|
|
3661
3807
|
}>;
|
|
3662
3808
|
|
|
3809
|
+
export declare type DeleteAuxDataData = default_2.infer<typeof deleteAuxDataDataSchema>;
|
|
3810
|
+
|
|
3811
|
+
export declare const DeleteAuxDataDataSchema: default_2.ZodObject<{
|
|
3812
|
+
body: default_2.ZodOptional<default_2.ZodNever>;
|
|
3813
|
+
path: default_2.ZodObject<{
|
|
3814
|
+
tenantLocator: default_2.ZodUUID;
|
|
3815
|
+
locator: default_2.ZodString;
|
|
3816
|
+
key: default_2.ZodString;
|
|
3817
|
+
}, default_2.core.$strip>;
|
|
3818
|
+
query: default_2.ZodOptional<default_2.ZodNever>;
|
|
3819
|
+
}, default_2.core.$strip>;
|
|
3820
|
+
|
|
3821
|
+
declare const deleteAuxDataDataSchema: z_2.ZodObject<{
|
|
3822
|
+
body: z_2.ZodOptional<z_2.ZodNever>;
|
|
3823
|
+
path: z_2.ZodObject<{
|
|
3824
|
+
tenantLocator: z_2.ZodUUID;
|
|
3825
|
+
locator: z_2.ZodString;
|
|
3826
|
+
key: z_2.ZodString;
|
|
3827
|
+
}, z_2.core.$strip>;
|
|
3828
|
+
query: z_2.ZodOptional<z_2.ZodNever>;
|
|
3829
|
+
}, z_2.core.$strip>;
|
|
3830
|
+
|
|
3663
3831
|
export declare type DeleteChangeInstructionCreateRequest = z.infer<typeof deleteChangeInstructionCreateRequestSchema>;
|
|
3664
3832
|
|
|
3665
3833
|
export declare const deleteChangeInstructionCreateRequestSchema: z.ZodObject<{
|
|
@@ -3873,8 +4041,8 @@ export declare const DiariesListResponseSchema: z.ZodObject<{
|
|
|
3873
4041
|
transaction: "transaction";
|
|
3874
4042
|
underwritingFlag: "underwritingFlag";
|
|
3875
4043
|
payment: "payment";
|
|
3876
|
-
fnol: "fnol";
|
|
3877
4044
|
task: "task";
|
|
4045
|
+
fnol: "fnol";
|
|
3878
4046
|
}>;
|
|
3879
4047
|
diaryState: z.ZodEnum<{
|
|
3880
4048
|
discarded: "discarded";
|
|
@@ -3929,8 +4097,8 @@ export declare const DiaryEntryBffSchema: z.ZodObject<{
|
|
|
3929
4097
|
transaction: "transaction";
|
|
3930
4098
|
underwritingFlag: "underwritingFlag";
|
|
3931
4099
|
payment: "payment";
|
|
3932
|
-
fnol: "fnol";
|
|
3933
4100
|
task: "task";
|
|
4101
|
+
fnol: "fnol";
|
|
3934
4102
|
}>;
|
|
3935
4103
|
diaryState: z.ZodEnum<{
|
|
3936
4104
|
discarded: "discarded";
|
|
@@ -3985,8 +4153,8 @@ export declare const DiaryEntryListResponseBffSchema: z.ZodObject<{
|
|
|
3985
4153
|
transaction: "transaction";
|
|
3986
4154
|
underwritingFlag: "underwritingFlag";
|
|
3987
4155
|
payment: "payment";
|
|
3988
|
-
fnol: "fnol";
|
|
3989
4156
|
task: "task";
|
|
4157
|
+
fnol: "fnol";
|
|
3990
4158
|
}>;
|
|
3991
4159
|
diaryState: z.ZodEnum<{
|
|
3992
4160
|
discarded: "discarded";
|
|
@@ -4013,8 +4181,8 @@ export declare const DiaryEntryListResponseSchema: z.ZodObject<{
|
|
|
4013
4181
|
transaction: "transaction";
|
|
4014
4182
|
underwritingFlag: "underwritingFlag";
|
|
4015
4183
|
payment: "payment";
|
|
4016
|
-
fnol: "fnol";
|
|
4017
4184
|
task: "task";
|
|
4185
|
+
fnol: "fnol";
|
|
4018
4186
|
}>;
|
|
4019
4187
|
diaryState: z.ZodEnum<{
|
|
4020
4188
|
discarded: "discarded";
|
|
@@ -4041,8 +4209,8 @@ export declare const DiaryEntrySchema: z.ZodObject<{
|
|
|
4041
4209
|
transaction: "transaction";
|
|
4042
4210
|
underwritingFlag: "underwritingFlag";
|
|
4043
4211
|
payment: "payment";
|
|
4044
|
-
fnol: "fnol";
|
|
4045
4212
|
task: "task";
|
|
4213
|
+
fnol: "fnol";
|
|
4046
4214
|
}>;
|
|
4047
4215
|
diaryState: z.ZodEnum<{
|
|
4048
4216
|
discarded: "discarded";
|
|
@@ -4084,8 +4252,8 @@ export declare const DiaryReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
4084
4252
|
transaction: "transaction";
|
|
4085
4253
|
underwritingFlag: "underwritingFlag";
|
|
4086
4254
|
payment: "payment";
|
|
4087
|
-
fnol: "fnol";
|
|
4088
4255
|
task: "task";
|
|
4256
|
+
fnol: "fnol";
|
|
4089
4257
|
}>;
|
|
4090
4258
|
|
|
4091
4259
|
export declare type DiaryStateEnum = z.infer<typeof DiaryStateEnumSchema>;
|
|
@@ -4104,6 +4272,8 @@ export declare const DisbursementCreateRequestSchema: z.ZodObject<{
|
|
|
4104
4272
|
containerType: z.ZodEnum<{
|
|
4105
4273
|
account: "account";
|
|
4106
4274
|
invoice: "invoice";
|
|
4275
|
+
subpayment: "subpayment";
|
|
4276
|
+
invoiceItem: "invoiceItem";
|
|
4107
4277
|
}>;
|
|
4108
4278
|
containerLocator: z.ZodString;
|
|
4109
4279
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4150,6 +4320,8 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
4150
4320
|
containerType: z.ZodEnum<{
|
|
4151
4321
|
account: "account";
|
|
4152
4322
|
invoice: "invoice";
|
|
4323
|
+
subpayment: "subpayment";
|
|
4324
|
+
invoiceItem: "invoiceItem";
|
|
4153
4325
|
}>;
|
|
4154
4326
|
containerLocator: z.ZodString;
|
|
4155
4327
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4220,6 +4392,8 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
4220
4392
|
containerType: z.ZodEnum<{
|
|
4221
4393
|
account: "account";
|
|
4222
4394
|
invoice: "invoice";
|
|
4395
|
+
subpayment: "subpayment";
|
|
4396
|
+
invoiceItem: "invoiceItem";
|
|
4223
4397
|
}>;
|
|
4224
4398
|
containerLocator: z.ZodString;
|
|
4225
4399
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4241,6 +4415,8 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
4241
4415
|
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
4242
4416
|
}, z.core.$strip>;
|
|
4243
4417
|
|
|
4418
|
+
export declare type DisbursementStateEnum = z.infer<typeof DisbursementStateEnumSchema>;
|
|
4419
|
+
|
|
4244
4420
|
export declare const DisbursementStateEnumSchema: z.ZodEnum<{
|
|
4245
4421
|
draft: "draft";
|
|
4246
4422
|
validated: "validated";
|
|
@@ -4259,6 +4435,8 @@ export declare const DisbursementUpdateReplaceDataRequestSchema: z.ZodObject<{
|
|
|
4259
4435
|
containerType: z.ZodEnum<{
|
|
4260
4436
|
account: "account";
|
|
4261
4437
|
invoice: "invoice";
|
|
4438
|
+
subpayment: "subpayment";
|
|
4439
|
+
invoiceItem: "invoiceItem";
|
|
4262
4440
|
}>;
|
|
4263
4441
|
containerLocator: z.ZodString;
|
|
4264
4442
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4288,6 +4466,8 @@ export declare const DisbursementUpdateRequestSchema: z.ZodObject<{
|
|
|
4288
4466
|
containerType: z.ZodEnum<{
|
|
4289
4467
|
account: "account";
|
|
4290
4468
|
invoice: "invoice";
|
|
4469
|
+
subpayment: "subpayment";
|
|
4470
|
+
invoiceItem: "invoiceItem";
|
|
4291
4471
|
}>;
|
|
4292
4472
|
containerLocator: z.ZodString;
|
|
4293
4473
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4490,6 +4670,8 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
4490
4670
|
consolidatedTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4491
4671
|
}, z.core.$strip>;
|
|
4492
4672
|
|
|
4673
|
+
export declare type DocumentInstanceStateEnum = z.infer<typeof DocumentInstanceStateEnumSchema>;
|
|
4674
|
+
|
|
4493
4675
|
export declare const DocumentInstanceStateEnumSchema: z.ZodEnum<{
|
|
4494
4676
|
draft: "draft";
|
|
4495
4677
|
dataReady: "dataReady";
|
|
@@ -4608,9 +4790,9 @@ export declare const DocumentRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
4608
4790
|
zip: "zip";
|
|
4609
4791
|
}>>;
|
|
4610
4792
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
4611
|
-
policyStartTime: "policyStartTime";
|
|
4612
|
-
termStartTime: "termStartTime";
|
|
4613
4793
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
4794
|
+
termStartTime: "termStartTime";
|
|
4795
|
+
policyStartTime: "policyStartTime";
|
|
4614
4796
|
currentTime: "currentTime";
|
|
4615
4797
|
}>>;
|
|
4616
4798
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4671,9 +4853,9 @@ export declare const DocumentRefSchema: z.ZodObject<{
|
|
|
4671
4853
|
zip: "zip";
|
|
4672
4854
|
}>>;
|
|
4673
4855
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
4674
|
-
policyStartTime: "policyStartTime";
|
|
4675
|
-
termStartTime: "termStartTime";
|
|
4676
4856
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
4857
|
+
termStartTime: "termStartTime";
|
|
4858
|
+
policyStartTime: "policyStartTime";
|
|
4677
4859
|
currentTime: "currentTime";
|
|
4678
4860
|
}>>;
|
|
4679
4861
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4722,6 +4904,8 @@ export declare const DocumentScopeEnumSchema: z.ZodEnum<{
|
|
|
4722
4904
|
|
|
4723
4905
|
export declare type DocumentState = z.infer<typeof documentStateEnumSchema>;
|
|
4724
4906
|
|
|
4907
|
+
export declare type DocumentStateEnum = z.infer<typeof DocumentStateEnumSchema>;
|
|
4908
|
+
|
|
4725
4909
|
export declare const DocumentStateEnumSchema: z.ZodEnum<{
|
|
4726
4910
|
draft: "draft";
|
|
4727
4911
|
dataReady: "dataReady";
|
|
@@ -4825,6 +5009,8 @@ declare type Element_3 = z.infer<typeof BaseElementSchema> & {
|
|
|
4825
5009
|
elements?: Element_3[];
|
|
4826
5010
|
};
|
|
4827
5011
|
|
|
5012
|
+
export declare type ElementCategoryEnum = z.infer<typeof ElementCategoryEnumSchema>;
|
|
5013
|
+
|
|
4828
5014
|
export declare const ElementCategoryEnumSchema: z.ZodEnum<{
|
|
4829
5015
|
product: "product";
|
|
4830
5016
|
coverage: "coverage";
|
|
@@ -5375,6 +5561,37 @@ export declare function genericListResponseSchema<ItemType extends z.ZodTypeAny>
|
|
|
5375
5561
|
items: z.ZodArray<ItemType>;
|
|
5376
5562
|
}, z.core.$strip>;
|
|
5377
5563
|
|
|
5564
|
+
export declare type GetAuxDataSizeData = default_2.infer<typeof getAuxDataSizeDataSchema>;
|
|
5565
|
+
|
|
5566
|
+
export declare const GetAuxDataSizeDataSchema: default_2.ZodObject<{
|
|
5567
|
+
body: default_2.ZodOptional<default_2.ZodNever>;
|
|
5568
|
+
path: default_2.ZodObject<{
|
|
5569
|
+
tenantLocator: default_2.ZodUUID;
|
|
5570
|
+
}, default_2.core.$strip>;
|
|
5571
|
+
query: default_2.ZodOptional<default_2.ZodNever>;
|
|
5572
|
+
}, default_2.core.$strip>;
|
|
5573
|
+
|
|
5574
|
+
declare const getAuxDataSizeDataSchema: z_2.ZodObject<{
|
|
5575
|
+
body: z_2.ZodOptional<z_2.ZodNever>;
|
|
5576
|
+
path: z_2.ZodObject<{
|
|
5577
|
+
tenantLocator: z_2.ZodUUID;
|
|
5578
|
+
}, z_2.core.$strip>;
|
|
5579
|
+
query: z_2.ZodOptional<z_2.ZodNever>;
|
|
5580
|
+
}, z_2.core.$strip>;
|
|
5581
|
+
|
|
5582
|
+
export declare type GetAuxDataSizeResponse = default_2.infer<typeof getAuxDataSizeResponseSchema>;
|
|
5583
|
+
|
|
5584
|
+
export declare const GetAuxDataSizeResponseSchema: default_2.ZodObject<{
|
|
5585
|
+
dataSizeKb: default_2.ZodInt;
|
|
5586
|
+
}, default_2.core.$strip>;
|
|
5587
|
+
|
|
5588
|
+
/**
|
|
5589
|
+
* OK
|
|
5590
|
+
*/
|
|
5591
|
+
declare const getAuxDataSizeResponseSchema: z_2.ZodObject<{
|
|
5592
|
+
dataSizeKb: z_2.ZodInt;
|
|
5593
|
+
}, z_2.core.$strip>;
|
|
5594
|
+
|
|
5378
5595
|
export declare const GUIDZ: z.ZodGUID;
|
|
5379
5596
|
|
|
5380
5597
|
export declare type IdentityProviderCreateRequest = z.infer<typeof IdentityProviderCreateRequestSchema>;
|
|
@@ -6264,7 +6481,11 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
6264
6481
|
draft: "draft";
|
|
6265
6482
|
validated: "validated";
|
|
6266
6483
|
discarded: "discarded";
|
|
6484
|
+
cancelled: "cancelled";
|
|
6485
|
+
failed: "failed";
|
|
6267
6486
|
reversed: "reversed";
|
|
6487
|
+
requested: "requested";
|
|
6488
|
+
executing: "executing";
|
|
6268
6489
|
posted: "posted";
|
|
6269
6490
|
}>;
|
|
6270
6491
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -6272,6 +6493,8 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
6272
6493
|
containerType: z.ZodEnum<{
|
|
6273
6494
|
account: "account";
|
|
6274
6495
|
invoice: "invoice";
|
|
6496
|
+
subpayment: "subpayment";
|
|
6497
|
+
invoiceItem: "invoiceItem";
|
|
6275
6498
|
}>;
|
|
6276
6499
|
containerLocator: z.ZodString;
|
|
6277
6500
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6539,12 +6762,21 @@ export declare const MapStringMapZ: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodSt
|
|
|
6539
6762
|
|
|
6540
6763
|
export declare const MapStringStringZ: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6541
6764
|
|
|
6765
|
+
export declare type MatchEnum = z.infer<typeof MatchEnum>;
|
|
6766
|
+
|
|
6767
|
+
/** @deprecated - use MatchEnumSchema instead */
|
|
6542
6768
|
export declare const MatchEnum: z.ZodEnum<{
|
|
6543
6769
|
exact: "exact";
|
|
6544
6770
|
startsWith: "startsWith";
|
|
6545
6771
|
fuzzy: "fuzzy";
|
|
6546
6772
|
}>;
|
|
6547
6773
|
|
|
6774
|
+
export declare const MatchEnumSchema: z.ZodEnum<{
|
|
6775
|
+
exact: "exact";
|
|
6776
|
+
startsWith: "startsWith";
|
|
6777
|
+
fuzzy: "fuzzy";
|
|
6778
|
+
}>;
|
|
6779
|
+
|
|
6548
6780
|
/**
|
|
6549
6781
|
* List of supported mime formats for any uploads in Operational UI.
|
|
6550
6782
|
* Copy of enum in BFF, BFF's instance will be deprecated.
|
|
@@ -6566,6 +6798,8 @@ declare const enum MimeType_2 {
|
|
|
6566
6798
|
}
|
|
6567
6799
|
export { MimeType_2 as MimeType }
|
|
6568
6800
|
|
|
6801
|
+
export declare type MimeTypeEnum = z.infer<typeof MimeTypeEnumSchema>;
|
|
6802
|
+
|
|
6569
6803
|
/**
|
|
6570
6804
|
* List of supported mime formats for any uploads in Operational UI.
|
|
6571
6805
|
*/
|
|
@@ -7253,7 +7487,11 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
7253
7487
|
draft: "draft";
|
|
7254
7488
|
validated: "validated";
|
|
7255
7489
|
discarded: "discarded";
|
|
7490
|
+
cancelled: "cancelled";
|
|
7491
|
+
failed: "failed";
|
|
7256
7492
|
reversed: "reversed";
|
|
7493
|
+
requested: "requested";
|
|
7494
|
+
executing: "executing";
|
|
7257
7495
|
posted: "posted";
|
|
7258
7496
|
}>;
|
|
7259
7497
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -7261,6 +7499,8 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
7261
7499
|
containerType: z.ZodEnum<{
|
|
7262
7500
|
account: "account";
|
|
7263
7501
|
invoice: "invoice";
|
|
7502
|
+
subpayment: "subpayment";
|
|
7503
|
+
invoiceItem: "invoiceItem";
|
|
7264
7504
|
}>;
|
|
7265
7505
|
containerLocator: z.ZodString;
|
|
7266
7506
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7320,7 +7560,11 @@ export declare const PaymentStateEnumSchema: z.ZodEnum<{
|
|
|
7320
7560
|
draft: "draft";
|
|
7321
7561
|
validated: "validated";
|
|
7322
7562
|
discarded: "discarded";
|
|
7563
|
+
cancelled: "cancelled";
|
|
7564
|
+
failed: "failed";
|
|
7323
7565
|
reversed: "reversed";
|
|
7566
|
+
requested: "requested";
|
|
7567
|
+
executing: "executing";
|
|
7324
7568
|
posted: "posted";
|
|
7325
7569
|
}>;
|
|
7326
7570
|
|
|
@@ -10112,6 +10356,8 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
10112
10356
|
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
10113
10357
|
}, z.core.$strip>;
|
|
10114
10358
|
|
|
10359
|
+
export declare type QuickQuoteStateEnum = z.infer<typeof QuickQuoteStateEnumSchema>;
|
|
10360
|
+
|
|
10115
10361
|
export declare const QuickQuoteStateEnumSchema: z.ZodEnum<{
|
|
10116
10362
|
draft: "draft";
|
|
10117
10363
|
validated: "validated";
|
|
@@ -10921,6 +11167,8 @@ export declare type QuoteResponseType = z.infer<typeof QuoteResponseSchema>;
|
|
|
10921
11167
|
|
|
10922
11168
|
export declare type QuoteState = z.infer<typeof quoteStateSchema>;
|
|
10923
11169
|
|
|
11170
|
+
export declare type QuoteStateEnum = z.infer<typeof QuoteStateEnumSchema>;
|
|
11171
|
+
|
|
10924
11172
|
export declare const QuoteStateEnumSchema: z.ZodEnum<{
|
|
10925
11173
|
draft: "draft";
|
|
10926
11174
|
validated: "validated";
|
|
@@ -11401,16 +11649,7 @@ export declare const RecentQuotesListResponseSchema: z.ZodObject<{
|
|
|
11401
11649
|
}, z.core.$strip>>;
|
|
11402
11650
|
}, z.core.$strip>;
|
|
11403
11651
|
|
|
11404
|
-
export declare type
|
|
11405
|
-
|
|
11406
|
-
export declare const ReferenceTypeEnumSchema: z.ZodEnum<{
|
|
11407
|
-
policy: "policy";
|
|
11408
|
-
quote: "quote";
|
|
11409
|
-
invoice: "invoice";
|
|
11410
|
-
transaction: "transaction";
|
|
11411
|
-
segment: "segment";
|
|
11412
|
-
term: "term";
|
|
11413
|
-
}>;
|
|
11652
|
+
export declare type ResetFlagsActionEnum = z.infer<typeof ResetFlagsActionEnumSchema>;
|
|
11414
11653
|
|
|
11415
11654
|
export declare const ResetFlagsActionEnumSchema: z.ZodEnum<{
|
|
11416
11655
|
clear: "clear";
|
|
@@ -11538,11 +11777,13 @@ export declare const SearchEntityTypeEnum: z.ZodEnum<{
|
|
|
11538
11777
|
quote: "quote";
|
|
11539
11778
|
payment: "payment";
|
|
11540
11779
|
fnol: "fnol";
|
|
11780
|
+
diary: "diary";
|
|
11541
11781
|
unspecified: "unspecified";
|
|
11542
11782
|
contact: "contact";
|
|
11543
|
-
diary: "diary";
|
|
11544
11783
|
}>;
|
|
11545
11784
|
|
|
11785
|
+
export declare type SearchEntityTypeEnum = z.infer<typeof SearchEntityTypeEnum>;
|
|
11786
|
+
|
|
11546
11787
|
export declare const SearchParamSchema: z.ZodObject<{
|
|
11547
11788
|
tenantLocator: z.ZodUUID;
|
|
11548
11789
|
}, z.core.$strip>;
|
|
@@ -11559,9 +11800,9 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
11559
11800
|
quote: "quote";
|
|
11560
11801
|
payment: "payment";
|
|
11561
11802
|
fnol: "fnol";
|
|
11803
|
+
diary: "diary";
|
|
11562
11804
|
unspecified: "unspecified";
|
|
11563
11805
|
contact: "contact";
|
|
11564
|
-
diary: "diary";
|
|
11565
11806
|
}>>;
|
|
11566
11807
|
searchString: z.ZodOptional<z.ZodString>;
|
|
11567
11808
|
searchTerms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11597,9 +11838,9 @@ export declare const SearchResponseSchema: z.ZodObject<{
|
|
|
11597
11838
|
quote: "quote";
|
|
11598
11839
|
payment: "payment";
|
|
11599
11840
|
fnol: "fnol";
|
|
11841
|
+
diary: "diary";
|
|
11600
11842
|
unspecified: "unspecified";
|
|
11601
11843
|
contact: "contact";
|
|
11602
|
-
diary: "diary";
|
|
11603
11844
|
}>;
|
|
11604
11845
|
highlights: z.ZodArray<z.ZodString>;
|
|
11605
11846
|
searchSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -11617,9 +11858,9 @@ export declare const SearchResultSchema: z.ZodObject<{
|
|
|
11617
11858
|
quote: "quote";
|
|
11618
11859
|
payment: "payment";
|
|
11619
11860
|
fnol: "fnol";
|
|
11861
|
+
diary: "diary";
|
|
11620
11862
|
unspecified: "unspecified";
|
|
11621
11863
|
contact: "contact";
|
|
11622
|
-
diary: "diary";
|
|
11623
11864
|
}>;
|
|
11624
11865
|
highlights: z.ZodArray<z.ZodString>;
|
|
11625
11866
|
searchSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -11762,15 +12003,17 @@ export declare const SegmentSchema: z.ZodObject<{
|
|
|
11762
12003
|
basedOn: z.ZodOptional<z.ZodULID>;
|
|
11763
12004
|
}, z.core.$strip>;
|
|
11764
12005
|
|
|
12006
|
+
export declare type SegmentTypeEnum = z.infer<typeof SegmentTypeEnumSchema>;
|
|
12007
|
+
|
|
11765
12008
|
export declare const SegmentTypeEnumSchema: z.ZodEnum<{
|
|
11766
12009
|
coverage: "coverage";
|
|
11767
12010
|
gap: "gap";
|
|
11768
12011
|
}>;
|
|
11769
12012
|
|
|
11770
12013
|
export declare const SelectionTimeBasisEnum: z.ZodEnum<{
|
|
11771
|
-
policyStartTime: "policyStartTime";
|
|
11772
|
-
termStartTime: "termStartTime";
|
|
11773
12014
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
12015
|
+
termStartTime: "termStartTime";
|
|
12016
|
+
policyStartTime: "policyStartTime";
|
|
11774
12017
|
currentTime: "currentTime";
|
|
11775
12018
|
}>;
|
|
11776
12019
|
|
|
@@ -11850,6 +12093,8 @@ export declare const TaskCreateRequestSchema: z.ZodObject<{
|
|
|
11850
12093
|
invoice: "invoice";
|
|
11851
12094
|
transaction: "transaction";
|
|
11852
12095
|
quickQuote: "quickQuote";
|
|
12096
|
+
underwritingFlag: "underwritingFlag";
|
|
12097
|
+
payment: "payment";
|
|
11853
12098
|
}>;
|
|
11854
12099
|
referenceLocator: z.ZodString;
|
|
11855
12100
|
}, z.core.$strip>>;
|
|
@@ -12055,6 +12300,8 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
|
|
|
12055
12300
|
invoice: "invoice";
|
|
12056
12301
|
transaction: "transaction";
|
|
12057
12302
|
quickQuote: "quickQuote";
|
|
12303
|
+
underwritingFlag: "underwritingFlag";
|
|
12304
|
+
payment: "payment";
|
|
12058
12305
|
}>;
|
|
12059
12306
|
referenceLocator: z.ZodString;
|
|
12060
12307
|
}, z.core.$strip>>>;
|
|
@@ -12121,6 +12368,8 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
12121
12368
|
invoice: "invoice";
|
|
12122
12369
|
transaction: "transaction";
|
|
12123
12370
|
quickQuote: "quickQuote";
|
|
12371
|
+
underwritingFlag: "underwritingFlag";
|
|
12372
|
+
payment: "payment";
|
|
12124
12373
|
}>;
|
|
12125
12374
|
referenceLocator: z.ZodString;
|
|
12126
12375
|
}, z.core.$strip>>>;
|
|
@@ -12160,6 +12409,8 @@ export declare const TaskReferenceBffSchema: z.ZodObject<{
|
|
|
12160
12409
|
invoice: "invoice";
|
|
12161
12410
|
transaction: "transaction";
|
|
12162
12411
|
quickQuote: "quickQuote";
|
|
12412
|
+
underwritingFlag: "underwritingFlag";
|
|
12413
|
+
payment: "payment";
|
|
12163
12414
|
}>;
|
|
12164
12415
|
referenceLocator: z.ZodString;
|
|
12165
12416
|
}, z.core.$strip>;
|
|
@@ -12173,6 +12424,8 @@ export declare const TaskReferenceEnumSchema: z.ZodEnum<{
|
|
|
12173
12424
|
invoice: "invoice";
|
|
12174
12425
|
transaction: "transaction";
|
|
12175
12426
|
quickQuote: "quickQuote";
|
|
12427
|
+
underwritingFlag: "underwritingFlag";
|
|
12428
|
+
payment: "payment";
|
|
12176
12429
|
}>;
|
|
12177
12430
|
|
|
12178
12431
|
export declare const TaskReferenceSchema: z.ZodObject<{
|
|
@@ -12183,6 +12436,8 @@ export declare const TaskReferenceSchema: z.ZodObject<{
|
|
|
12183
12436
|
invoice: "invoice";
|
|
12184
12437
|
transaction: "transaction";
|
|
12185
12438
|
quickQuote: "quickQuote";
|
|
12439
|
+
underwritingFlag: "underwritingFlag";
|
|
12440
|
+
payment: "payment";
|
|
12186
12441
|
}>;
|
|
12187
12442
|
referenceLocator: z.ZodString;
|
|
12188
12443
|
}, z.core.$strip>;
|
|
@@ -12205,6 +12460,8 @@ export declare const TaskResponseBffSchema: z.ZodObject<{
|
|
|
12205
12460
|
invoice: "invoice";
|
|
12206
12461
|
transaction: "transaction";
|
|
12207
12462
|
quickQuote: "quickQuote";
|
|
12463
|
+
underwritingFlag: "underwritingFlag";
|
|
12464
|
+
payment: "payment";
|
|
12208
12465
|
}>;
|
|
12209
12466
|
referenceLocator: z.ZodString;
|
|
12210
12467
|
}, z.core.$strip>>>;
|
|
@@ -12268,6 +12525,8 @@ export declare const TaskResponseSchema: z.ZodObject<{
|
|
|
12268
12525
|
invoice: "invoice";
|
|
12269
12526
|
transaction: "transaction";
|
|
12270
12527
|
quickQuote: "quickQuote";
|
|
12528
|
+
underwritingFlag: "underwritingFlag";
|
|
12529
|
+
payment: "payment";
|
|
12271
12530
|
}>;
|
|
12272
12531
|
referenceLocator: z.ZodString;
|
|
12273
12532
|
}, z.core.$strip>>>;
|
|
@@ -12326,6 +12585,8 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12326
12585
|
invoice: "invoice";
|
|
12327
12586
|
transaction: "transaction";
|
|
12328
12587
|
quickQuote: "quickQuote";
|
|
12588
|
+
underwritingFlag: "underwritingFlag";
|
|
12589
|
+
payment: "payment";
|
|
12329
12590
|
}>;
|
|
12330
12591
|
referenceLocator: z.ZodString;
|
|
12331
12592
|
}, z.core.$strip>>>;
|
|
@@ -12337,6 +12598,8 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12337
12598
|
invoice: "invoice";
|
|
12338
12599
|
transaction: "transaction";
|
|
12339
12600
|
quickQuote: "quickQuote";
|
|
12601
|
+
underwritingFlag: "underwritingFlag";
|
|
12602
|
+
payment: "payment";
|
|
12340
12603
|
}>;
|
|
12341
12604
|
referenceLocator: z.ZodString;
|
|
12342
12605
|
}, z.core.$strip>>>;
|
|
@@ -12360,9 +12623,9 @@ export declare type TemplateSnippetConfig = z.infer<typeof TemplateSnippetConfig
|
|
|
12360
12623
|
|
|
12361
12624
|
export declare const TemplateSnippetConfigSchema: z.ZodObject<{
|
|
12362
12625
|
selectionTimeBasis: z.ZodEnum<{
|
|
12363
|
-
policyStartTime: "policyStartTime";
|
|
12364
|
-
termStartTime: "termStartTime";
|
|
12365
12626
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
12627
|
+
termStartTime: "termStartTime";
|
|
12628
|
+
policyStartTime: "policyStartTime";
|
|
12366
12629
|
currentTime: "currentTime";
|
|
12367
12630
|
}>;
|
|
12368
12631
|
displayName: z.ZodString;
|
|
@@ -13149,6 +13412,8 @@ export declare type TimezoneType = z.infer<typeof timezoneEnumSchema>;
|
|
|
13149
13412
|
|
|
13150
13413
|
export declare type TransactionCategory = z.infer<typeof transactionCategoryEnumSchema>;
|
|
13151
13414
|
|
|
13415
|
+
export declare type TransactionCategoryEnum = z.infer<typeof TransactionCategoryEnumSchema>;
|
|
13416
|
+
|
|
13152
13417
|
export declare const TransactionCategoryEnumSchema: z.ZodEnum<{
|
|
13153
13418
|
issuance: "issuance";
|
|
13154
13419
|
change: "change";
|
|
@@ -13584,6 +13849,8 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
13584
13849
|
|
|
13585
13850
|
export declare type TransactionState = z.infer<typeof transactionStateEnumSchema>;
|
|
13586
13851
|
|
|
13852
|
+
export declare type TransactionStateEnum = z.infer<typeof TransactionStateEnumSchema>;
|
|
13853
|
+
|
|
13587
13854
|
export declare const TransactionStateEnumSchema: z.ZodEnum<{
|
|
13588
13855
|
draft: "draft";
|
|
13589
13856
|
validated: "validated";
|
|
@@ -13919,6 +14186,8 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
13919
14186
|
invoice: "invoice";
|
|
13920
14187
|
transaction: "transaction";
|
|
13921
14188
|
quickQuote: "quickQuote";
|
|
14189
|
+
underwritingFlag: "underwritingFlag";
|
|
14190
|
+
payment: "payment";
|
|
13922
14191
|
}>;
|
|
13923
14192
|
referenceLocator: z.ZodString;
|
|
13924
14193
|
}, z.core.$strip>>;
|
|
@@ -14001,6 +14270,8 @@ export declare const underwritingFlagResponseSchema: z.ZodObject<{
|
|
|
14001
14270
|
note: z.ZodOptional<z.ZodString>;
|
|
14002
14271
|
}, z.core.$strip>;
|
|
14003
14272
|
|
|
14273
|
+
export declare type UnderwritingFlagsLevelEnum = z.infer<typeof UnderwritingFlagsLevelEnumSchema>;
|
|
14274
|
+
|
|
14004
14275
|
export declare const UnderwritingFlagsLevelEnumSchema: z.ZodEnum<{
|
|
14005
14276
|
none: "none";
|
|
14006
14277
|
info: "info";
|
|
@@ -14010,6 +14281,8 @@ export declare const UnderwritingFlagsLevelEnumSchema: z.ZodEnum<{
|
|
|
14010
14281
|
approve: "approve";
|
|
14011
14282
|
}>;
|
|
14012
14283
|
|
|
14284
|
+
export declare type UnderwritingFlagsReferenceTypeEnum = z.infer<typeof UnderwritingFlagsReferenceTypeEnumSchema>;
|
|
14285
|
+
|
|
14013
14286
|
export declare const UnderwritingFlagsReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14014
14287
|
quote: "quote";
|
|
14015
14288
|
transaction: "transaction";
|
|
@@ -14040,6 +14313,8 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14040
14313
|
invoice: "invoice";
|
|
14041
14314
|
transaction: "transaction";
|
|
14042
14315
|
quickQuote: "quickQuote";
|
|
14316
|
+
underwritingFlag: "underwritingFlag";
|
|
14317
|
+
payment: "payment";
|
|
14043
14318
|
}>;
|
|
14044
14319
|
referenceLocator: z.ZodString;
|
|
14045
14320
|
}, z.core.$strip>>;
|
|
@@ -14103,6 +14378,8 @@ export declare const UserAssociationCreateRequestSchema: z.ZodObject<{
|
|
|
14103
14378
|
invoice: "invoice";
|
|
14104
14379
|
transaction: "transaction";
|
|
14105
14380
|
quickQuote: "quickQuote";
|
|
14381
|
+
underwritingFlag: "underwritingFlag";
|
|
14382
|
+
payment: "payment";
|
|
14106
14383
|
}>;
|
|
14107
14384
|
userAssociationRole: z.ZodString;
|
|
14108
14385
|
referenceLocator: z.ZodString;
|
|
@@ -14162,6 +14439,8 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
14162
14439
|
invoice: "invoice";
|
|
14163
14440
|
transaction: "transaction";
|
|
14164
14441
|
quickQuote: "quickQuote";
|
|
14442
|
+
underwritingFlag: "underwritingFlag";
|
|
14443
|
+
payment: "payment";
|
|
14165
14444
|
}>;
|
|
14166
14445
|
userAssociationState: z.ZodEnum<{
|
|
14167
14446
|
discarded: "discarded";
|
|
@@ -14188,6 +14467,8 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
14188
14467
|
invoice: "invoice";
|
|
14189
14468
|
transaction: "transaction";
|
|
14190
14469
|
quickQuote: "quickQuote";
|
|
14470
|
+
underwritingFlag: "underwritingFlag";
|
|
14471
|
+
payment: "payment";
|
|
14191
14472
|
}>;
|
|
14192
14473
|
userAssociationState: z.ZodEnum<{
|
|
14193
14474
|
discarded: "discarded";
|
|
@@ -14219,6 +14500,19 @@ export declare const UserAssociationReferenceDetailsSchema: z.ZodObject<{
|
|
|
14219
14500
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
14220
14501
|
}, z.core.$strip>;
|
|
14221
14502
|
|
|
14503
|
+
export declare type UserAssociationReferenceTypeEnum = z.infer<typeof UserAssociationReferenceTypeEnumSchema>;
|
|
14504
|
+
|
|
14505
|
+
export declare const UserAssociationReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14506
|
+
account: "account";
|
|
14507
|
+
policy: "policy";
|
|
14508
|
+
quote: "quote";
|
|
14509
|
+
invoice: "invoice";
|
|
14510
|
+
transaction: "transaction";
|
|
14511
|
+
quickQuote: "quickQuote";
|
|
14512
|
+
underwritingFlag: "underwritingFlag";
|
|
14513
|
+
payment: "payment";
|
|
14514
|
+
}>;
|
|
14515
|
+
|
|
14222
14516
|
export declare type UserAssociationResponse = z.infer<typeof UserAssociationResponseSchema>;
|
|
14223
14517
|
|
|
14224
14518
|
export declare type UserAssociationResponseBff = z.infer<typeof UserAssociationResponseBffSchema>;
|
|
@@ -14267,6 +14561,8 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
14267
14561
|
invoice: "invoice";
|
|
14268
14562
|
transaction: "transaction";
|
|
14269
14563
|
quickQuote: "quickQuote";
|
|
14564
|
+
underwritingFlag: "underwritingFlag";
|
|
14565
|
+
payment: "payment";
|
|
14270
14566
|
}>;
|
|
14271
14567
|
userAssociationState: z.ZodEnum<{
|
|
14272
14568
|
discarded: "discarded";
|
|
@@ -14290,6 +14586,8 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
14290
14586
|
invoice: "invoice";
|
|
14291
14587
|
transaction: "transaction";
|
|
14292
14588
|
quickQuote: "quickQuote";
|
|
14589
|
+
underwritingFlag: "underwritingFlag";
|
|
14590
|
+
payment: "payment";
|
|
14293
14591
|
}>;
|
|
14294
14592
|
userAssociationState: z.ZodEnum<{
|
|
14295
14593
|
discarded: "discarded";
|
|
@@ -14315,6 +14613,8 @@ export declare const UserAssociationRoleRefSchema: z.ZodObject<{
|
|
|
14315
14613
|
invoice: "invoice";
|
|
14316
14614
|
transaction: "transaction";
|
|
14317
14615
|
quickQuote: "quickQuote";
|
|
14616
|
+
underwritingFlag: "underwritingFlag";
|
|
14617
|
+
payment: "payment";
|
|
14318
14618
|
}>>;
|
|
14319
14619
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14320
14620
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14459,6 +14759,8 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
14459
14759
|
invoice: "invoice";
|
|
14460
14760
|
transaction: "transaction";
|
|
14461
14761
|
quickQuote: "quickQuote";
|
|
14762
|
+
underwritingFlag: "underwritingFlag";
|
|
14763
|
+
payment: "payment";
|
|
14462
14764
|
}>;
|
|
14463
14765
|
userAssociationState: z.ZodEnum<{
|
|
14464
14766
|
discarded: "discarded";
|
|
@@ -14494,6 +14796,8 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
14494
14796
|
invoice: "invoice";
|
|
14495
14797
|
transaction: "transaction";
|
|
14496
14798
|
quickQuote: "quickQuote";
|
|
14799
|
+
underwritingFlag: "underwritingFlag";
|
|
14800
|
+
payment: "payment";
|
|
14497
14801
|
}>;
|
|
14498
14802
|
userAssociationState: z.ZodEnum<{
|
|
14499
14803
|
discarded: "discarded";
|
|
@@ -14547,6 +14851,8 @@ export declare const validationResultSchema: z.ZodObject<{
|
|
|
14547
14851
|
|
|
14548
14852
|
export declare type WeekOfMonth = z.infer<typeof weekOfMonthEnumSchema>;
|
|
14549
14853
|
|
|
14854
|
+
export declare type WeekOfMonthEnum = z.infer<typeof WeekOfMonthEnumSchema>;
|
|
14855
|
+
|
|
14550
14856
|
export declare const WeekOfMonthEnumSchema: z.ZodEnum<{
|
|
14551
14857
|
none: "none";
|
|
14552
14858
|
first: "first";
|
|
@@ -14569,6 +14875,7 @@ export declare type WorkManagementRef = z.infer<typeof WorkManagementRefSchema>;
|
|
|
14569
14875
|
|
|
14570
14876
|
export declare type WorkManagementReferenceTypeEnum = z.infer<typeof WorkManagementReferenceTypeEnumSchema>;
|
|
14571
14877
|
|
|
14878
|
+
/** @deprecated - use UserAssociationReferenceTypeEnumSchema instead */
|
|
14572
14879
|
export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14573
14880
|
account: "account";
|
|
14574
14881
|
policy: "policy";
|
|
@@ -14576,6 +14883,8 @@ export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
14576
14883
|
invoice: "invoice";
|
|
14577
14884
|
transaction: "transaction";
|
|
14578
14885
|
quickQuote: "quickQuote";
|
|
14886
|
+
underwritingFlag: "underwritingFlag";
|
|
14887
|
+
payment: "payment";
|
|
14579
14888
|
}>;
|
|
14580
14889
|
|
|
14581
14890
|
export declare const WorkManagementRefSchema: z.ZodObject<{
|
|
@@ -14593,6 +14902,8 @@ export declare const WorkManagementRefSchema: z.ZodObject<{
|
|
|
14593
14902
|
invoice: "invoice";
|
|
14594
14903
|
transaction: "transaction";
|
|
14595
14904
|
quickQuote: "quickQuote";
|
|
14905
|
+
underwritingFlag: "underwritingFlag";
|
|
14906
|
+
payment: "payment";
|
|
14596
14907
|
}>>;
|
|
14597
14908
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14598
14909
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|