@socotra/ec-react-schemas 2.25.3-next.4 → 2.25.3-next.6
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 +177 -30
- package/dist/index.es.js +5596 -5748
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +7 -7
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
import { z as z_2 } from 'zod';
|
|
3
3
|
|
|
4
|
+
export declare type AbsoluteEnum = z.infer<typeof AbsoluteEnum>;
|
|
5
|
+
|
|
6
|
+
/** @deprecated - use AbsoluteEnumSchema instead */
|
|
4
7
|
export declare const AbsoluteEnum: z.ZodEnum<{
|
|
5
8
|
none: "none";
|
|
6
9
|
excluded: "excluded";
|
|
7
10
|
required: "required";
|
|
8
11
|
}>;
|
|
9
12
|
|
|
13
|
+
export declare const AbsoluteEnumSchema: z.ZodEnum<{
|
|
14
|
+
none: "none";
|
|
15
|
+
excluded: "excluded";
|
|
16
|
+
required: "required";
|
|
17
|
+
}>;
|
|
18
|
+
|
|
10
19
|
export declare type AccountConfig = z.infer<typeof accountConfigSchema>;
|
|
11
20
|
|
|
12
21
|
export declare type AccountConfigRecord = z.infer<typeof accountConfigRecordSchema>;
|
|
@@ -462,6 +471,8 @@ export declare const AddTaskRequestBffSchema: z.ZodObject<{
|
|
|
462
471
|
invoice: "invoice";
|
|
463
472
|
transaction: "transaction";
|
|
464
473
|
quickQuote: "quickQuote";
|
|
474
|
+
underwritingFlag: "underwritingFlag";
|
|
475
|
+
payment: "payment";
|
|
465
476
|
}>;
|
|
466
477
|
referenceLocator: z.ZodString;
|
|
467
478
|
}, z.core.$strip>>;
|
|
@@ -493,6 +504,8 @@ export declare const advanceLapseToSchema: z.ZodEnum<{
|
|
|
493
504
|
|
|
494
505
|
export declare type AnchorMode = z.infer<typeof anchorModeEnumSchema>;
|
|
495
506
|
|
|
507
|
+
export declare type AnchorModeEnum = z.infer<typeof AnchorModeEnumSchema>;
|
|
508
|
+
|
|
496
509
|
export declare const AnchorModeEnumSchema: z.ZodEnum<{
|
|
497
510
|
generateDay: "generateDay";
|
|
498
511
|
termStartDay: "termStartDay";
|
|
@@ -507,6 +520,8 @@ export declare const anchorModeEnumSchema: z.ZodEnum<{
|
|
|
507
520
|
|
|
508
521
|
export declare type AnchorType = z.infer<typeof anchorTypeEnumSchema>;
|
|
509
522
|
|
|
523
|
+
export declare type AnchorTypeEnum = z.infer<typeof AnchorTypeEnumSchema>;
|
|
524
|
+
|
|
510
525
|
export declare const AnchorTypeEnumSchema: z.ZodEnum<{
|
|
511
526
|
none: "none";
|
|
512
527
|
dayOfMonth: "dayOfMonth";
|
|
@@ -1124,6 +1139,8 @@ export declare const BasicUserResponseSchema: z.ZodObject<{
|
|
|
1124
1139
|
|
|
1125
1140
|
export declare type BillingLevel = z.infer<typeof billingLevelEnumSchema>;
|
|
1126
1141
|
|
|
1142
|
+
export declare type BillingLevelEnum = z.infer<typeof BillingLevelEnumSchema>;
|
|
1143
|
+
|
|
1127
1144
|
export declare const BillingLevelEnumSchema: z.ZodEnum<{
|
|
1128
1145
|
account: "account";
|
|
1129
1146
|
inherit: "inherit";
|
|
@@ -1147,6 +1164,8 @@ export declare const BillingPreferencesSchema: z.ZodObject<{
|
|
|
1147
1164
|
}>;
|
|
1148
1165
|
}, z.core.$strip>;
|
|
1149
1166
|
|
|
1167
|
+
export declare type BillingTriggerEnum = z.infer<typeof BillingTriggerEnumSchema>;
|
|
1168
|
+
|
|
1150
1169
|
export declare const BillingTriggerEnumSchema: z.ZodEnum<{
|
|
1151
1170
|
accept: "accept";
|
|
1152
1171
|
issue: "issue";
|
|
@@ -1208,6 +1227,8 @@ export declare const bootstrapSchema: z.ZodObject<{
|
|
|
1208
1227
|
|
|
1209
1228
|
export declare type Cadence = z.infer<typeof cadenceEnumSchema>;
|
|
1210
1229
|
|
|
1230
|
+
export declare type CadenceEnum = z.infer<typeof CadenceEnumSchema>;
|
|
1231
|
+
|
|
1211
1232
|
export declare const CadenceEnumSchema: z.ZodEnum<{
|
|
1212
1233
|
none: "none";
|
|
1213
1234
|
fullPay: "fullPay";
|
|
@@ -1234,6 +1255,8 @@ export declare const cadenceEnumSchema: z.ZodEnum<{
|
|
|
1234
1255
|
everyNDays: "everyNDays";
|
|
1235
1256
|
}>;
|
|
1236
1257
|
|
|
1258
|
+
export declare type ChangeActionEnum = z.infer<typeof ChangeActionEnumSchema>;
|
|
1259
|
+
|
|
1237
1260
|
export declare const ChangeActionEnumSchema: z.ZodEnum<{
|
|
1238
1261
|
delete: "delete";
|
|
1239
1262
|
params: "params";
|
|
@@ -1243,6 +1266,8 @@ export declare const ChangeActionEnumSchema: z.ZodEnum<{
|
|
|
1243
1266
|
|
|
1244
1267
|
export declare type ChargeCategory = z.infer<typeof chargeCategorySchema>;
|
|
1245
1268
|
|
|
1269
|
+
export declare type ChargeCategoryEnum = z.infer<typeof ChargeCategoryEnumSchema>;
|
|
1270
|
+
|
|
1246
1271
|
export declare const ChargeCategoryEnumSchema: z.ZodEnum<{
|
|
1247
1272
|
none: "none";
|
|
1248
1273
|
premium: "premium";
|
|
@@ -1654,6 +1679,8 @@ export declare const ContactsMergeRequestSchema: z.ZodObject<{
|
|
|
1654
1679
|
mergeToContact: z.ZodULID;
|
|
1655
1680
|
}, z.core.$strip>;
|
|
1656
1681
|
|
|
1682
|
+
export declare type ContactStateEnum = z.infer<typeof ContactStateEnumSchema>;
|
|
1683
|
+
|
|
1657
1684
|
export declare const ContactStateEnumSchema: z.ZodEnum<{
|
|
1658
1685
|
draft: "draft";
|
|
1659
1686
|
validated: "validated";
|
|
@@ -2519,6 +2546,8 @@ export declare type CreditItemContainerTypeEnum = z.infer<typeof creditItemConta
|
|
|
2519
2546
|
export declare const CreditItemContainerTypeEnumSchema: z.ZodEnum<{
|
|
2520
2547
|
account: "account";
|
|
2521
2548
|
invoice: "invoice";
|
|
2549
|
+
subpayment: "subpayment";
|
|
2550
|
+
invoiceItem: "invoiceItem";
|
|
2522
2551
|
}>;
|
|
2523
2552
|
|
|
2524
2553
|
export declare const creditItemContainerTypeEnumSchema: z.ZodEnum<{
|
|
@@ -2530,6 +2559,8 @@ export declare const CreditItemSchema: z.ZodObject<{
|
|
|
2530
2559
|
containerType: z.ZodEnum<{
|
|
2531
2560
|
account: "account";
|
|
2532
2561
|
invoice: "invoice";
|
|
2562
|
+
subpayment: "subpayment";
|
|
2563
|
+
invoiceItem: "invoiceItem";
|
|
2533
2564
|
}>;
|
|
2534
2565
|
containerLocator: z.ZodString;
|
|
2535
2566
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3031,9 +3062,9 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3031
3062
|
zip: "zip";
|
|
3032
3063
|
}>>;
|
|
3033
3064
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
3034
|
-
policyStartTime: "policyStartTime";
|
|
3035
|
-
termStartTime: "termStartTime";
|
|
3036
3065
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
3066
|
+
termStartTime: "termStartTime";
|
|
3067
|
+
policyStartTime: "policyStartTime";
|
|
3037
3068
|
currentTime: "currentTime";
|
|
3038
3069
|
}>>;
|
|
3039
3070
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -3119,6 +3150,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
3119
3150
|
invoice: "invoice";
|
|
3120
3151
|
transaction: "transaction";
|
|
3121
3152
|
quickQuote: "quickQuote";
|
|
3153
|
+
underwritingFlag: "underwritingFlag";
|
|
3154
|
+
payment: "payment";
|
|
3122
3155
|
}>>;
|
|
3123
3156
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3124
3157
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3640,6 +3673,8 @@ export declare const DatetimeZ: z.ZodISODateTime;
|
|
|
3640
3673
|
|
|
3641
3674
|
export declare type DayOfWeek = z.infer<typeof dayOfWeekEnumSchema>;
|
|
3642
3675
|
|
|
3676
|
+
export declare type DayOfWeekEnum = z.infer<typeof DayOfWeekEnumSchema>;
|
|
3677
|
+
|
|
3643
3678
|
export declare const DayOfWeekEnumSchema: z.ZodEnum<{
|
|
3644
3679
|
monday: "monday";
|
|
3645
3680
|
tuesday: "tuesday";
|
|
@@ -3873,8 +3908,8 @@ export declare const DiariesListResponseSchema: z.ZodObject<{
|
|
|
3873
3908
|
transaction: "transaction";
|
|
3874
3909
|
underwritingFlag: "underwritingFlag";
|
|
3875
3910
|
payment: "payment";
|
|
3876
|
-
fnol: "fnol";
|
|
3877
3911
|
task: "task";
|
|
3912
|
+
fnol: "fnol";
|
|
3878
3913
|
}>;
|
|
3879
3914
|
diaryState: z.ZodEnum<{
|
|
3880
3915
|
discarded: "discarded";
|
|
@@ -3929,8 +3964,8 @@ export declare const DiaryEntryBffSchema: z.ZodObject<{
|
|
|
3929
3964
|
transaction: "transaction";
|
|
3930
3965
|
underwritingFlag: "underwritingFlag";
|
|
3931
3966
|
payment: "payment";
|
|
3932
|
-
fnol: "fnol";
|
|
3933
3967
|
task: "task";
|
|
3968
|
+
fnol: "fnol";
|
|
3934
3969
|
}>;
|
|
3935
3970
|
diaryState: z.ZodEnum<{
|
|
3936
3971
|
discarded: "discarded";
|
|
@@ -3985,8 +4020,8 @@ export declare const DiaryEntryListResponseBffSchema: z.ZodObject<{
|
|
|
3985
4020
|
transaction: "transaction";
|
|
3986
4021
|
underwritingFlag: "underwritingFlag";
|
|
3987
4022
|
payment: "payment";
|
|
3988
|
-
fnol: "fnol";
|
|
3989
4023
|
task: "task";
|
|
4024
|
+
fnol: "fnol";
|
|
3990
4025
|
}>;
|
|
3991
4026
|
diaryState: z.ZodEnum<{
|
|
3992
4027
|
discarded: "discarded";
|
|
@@ -4013,8 +4048,8 @@ export declare const DiaryEntryListResponseSchema: z.ZodObject<{
|
|
|
4013
4048
|
transaction: "transaction";
|
|
4014
4049
|
underwritingFlag: "underwritingFlag";
|
|
4015
4050
|
payment: "payment";
|
|
4016
|
-
fnol: "fnol";
|
|
4017
4051
|
task: "task";
|
|
4052
|
+
fnol: "fnol";
|
|
4018
4053
|
}>;
|
|
4019
4054
|
diaryState: z.ZodEnum<{
|
|
4020
4055
|
discarded: "discarded";
|
|
@@ -4041,8 +4076,8 @@ export declare const DiaryEntrySchema: z.ZodObject<{
|
|
|
4041
4076
|
transaction: "transaction";
|
|
4042
4077
|
underwritingFlag: "underwritingFlag";
|
|
4043
4078
|
payment: "payment";
|
|
4044
|
-
fnol: "fnol";
|
|
4045
4079
|
task: "task";
|
|
4080
|
+
fnol: "fnol";
|
|
4046
4081
|
}>;
|
|
4047
4082
|
diaryState: z.ZodEnum<{
|
|
4048
4083
|
discarded: "discarded";
|
|
@@ -4084,8 +4119,8 @@ export declare const DiaryReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
4084
4119
|
transaction: "transaction";
|
|
4085
4120
|
underwritingFlag: "underwritingFlag";
|
|
4086
4121
|
payment: "payment";
|
|
4087
|
-
fnol: "fnol";
|
|
4088
4122
|
task: "task";
|
|
4123
|
+
fnol: "fnol";
|
|
4089
4124
|
}>;
|
|
4090
4125
|
|
|
4091
4126
|
export declare type DiaryStateEnum = z.infer<typeof DiaryStateEnumSchema>;
|
|
@@ -4104,6 +4139,8 @@ export declare const DisbursementCreateRequestSchema: z.ZodObject<{
|
|
|
4104
4139
|
containerType: z.ZodEnum<{
|
|
4105
4140
|
account: "account";
|
|
4106
4141
|
invoice: "invoice";
|
|
4142
|
+
subpayment: "subpayment";
|
|
4143
|
+
invoiceItem: "invoiceItem";
|
|
4107
4144
|
}>;
|
|
4108
4145
|
containerLocator: z.ZodString;
|
|
4109
4146
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4150,6 +4187,8 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
4150
4187
|
containerType: z.ZodEnum<{
|
|
4151
4188
|
account: "account";
|
|
4152
4189
|
invoice: "invoice";
|
|
4190
|
+
subpayment: "subpayment";
|
|
4191
|
+
invoiceItem: "invoiceItem";
|
|
4153
4192
|
}>;
|
|
4154
4193
|
containerLocator: z.ZodString;
|
|
4155
4194
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4220,6 +4259,8 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
4220
4259
|
containerType: z.ZodEnum<{
|
|
4221
4260
|
account: "account";
|
|
4222
4261
|
invoice: "invoice";
|
|
4262
|
+
subpayment: "subpayment";
|
|
4263
|
+
invoiceItem: "invoiceItem";
|
|
4223
4264
|
}>;
|
|
4224
4265
|
containerLocator: z.ZodString;
|
|
4225
4266
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4241,6 +4282,8 @@ export declare const DisbursementResponseSchema: z.ZodObject<{
|
|
|
4241
4282
|
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
4242
4283
|
}, z.core.$strip>;
|
|
4243
4284
|
|
|
4285
|
+
export declare type DisbursementStateEnum = z.infer<typeof DisbursementStateEnumSchema>;
|
|
4286
|
+
|
|
4244
4287
|
export declare const DisbursementStateEnumSchema: z.ZodEnum<{
|
|
4245
4288
|
draft: "draft";
|
|
4246
4289
|
validated: "validated";
|
|
@@ -4259,6 +4302,8 @@ export declare const DisbursementUpdateReplaceDataRequestSchema: z.ZodObject<{
|
|
|
4259
4302
|
containerType: z.ZodEnum<{
|
|
4260
4303
|
account: "account";
|
|
4261
4304
|
invoice: "invoice";
|
|
4305
|
+
subpayment: "subpayment";
|
|
4306
|
+
invoiceItem: "invoiceItem";
|
|
4262
4307
|
}>;
|
|
4263
4308
|
containerLocator: z.ZodString;
|
|
4264
4309
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4288,6 +4333,8 @@ export declare const DisbursementUpdateRequestSchema: z.ZodObject<{
|
|
|
4288
4333
|
containerType: z.ZodEnum<{
|
|
4289
4334
|
account: "account";
|
|
4290
4335
|
invoice: "invoice";
|
|
4336
|
+
subpayment: "subpayment";
|
|
4337
|
+
invoiceItem: "invoiceItem";
|
|
4291
4338
|
}>;
|
|
4292
4339
|
containerLocator: z.ZodString;
|
|
4293
4340
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4490,6 +4537,8 @@ export declare const DocumentInstanceSchema: z.ZodObject<{
|
|
|
4490
4537
|
consolidatedTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4491
4538
|
}, z.core.$strip>;
|
|
4492
4539
|
|
|
4540
|
+
export declare type DocumentInstanceStateEnum = z.infer<typeof DocumentInstanceStateEnumSchema>;
|
|
4541
|
+
|
|
4493
4542
|
export declare const DocumentInstanceStateEnumSchema: z.ZodEnum<{
|
|
4494
4543
|
draft: "draft";
|
|
4495
4544
|
dataReady: "dataReady";
|
|
@@ -4608,9 +4657,9 @@ export declare const DocumentRefRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
4608
4657
|
zip: "zip";
|
|
4609
4658
|
}>>;
|
|
4610
4659
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
4611
|
-
policyStartTime: "policyStartTime";
|
|
4612
|
-
termStartTime: "termStartTime";
|
|
4613
4660
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
4661
|
+
termStartTime: "termStartTime";
|
|
4662
|
+
policyStartTime: "policyStartTime";
|
|
4614
4663
|
currentTime: "currentTime";
|
|
4615
4664
|
}>>;
|
|
4616
4665
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4671,9 +4720,9 @@ export declare const DocumentRefSchema: z.ZodObject<{
|
|
|
4671
4720
|
zip: "zip";
|
|
4672
4721
|
}>>;
|
|
4673
4722
|
selectionTimeBasis: z.ZodOptional<z.ZodEnum<{
|
|
4674
|
-
policyStartTime: "policyStartTime";
|
|
4675
|
-
termStartTime: "termStartTime";
|
|
4676
4723
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
4724
|
+
termStartTime: "termStartTime";
|
|
4725
|
+
policyStartTime: "policyStartTime";
|
|
4677
4726
|
currentTime: "currentTime";
|
|
4678
4727
|
}>>;
|
|
4679
4728
|
trigger: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4722,6 +4771,8 @@ export declare const DocumentScopeEnumSchema: z.ZodEnum<{
|
|
|
4722
4771
|
|
|
4723
4772
|
export declare type DocumentState = z.infer<typeof documentStateEnumSchema>;
|
|
4724
4773
|
|
|
4774
|
+
export declare type DocumentStateEnum = z.infer<typeof DocumentStateEnumSchema>;
|
|
4775
|
+
|
|
4725
4776
|
export declare const DocumentStateEnumSchema: z.ZodEnum<{
|
|
4726
4777
|
draft: "draft";
|
|
4727
4778
|
dataReady: "dataReady";
|
|
@@ -4825,6 +4876,8 @@ declare type Element_3 = z.infer<typeof BaseElementSchema> & {
|
|
|
4825
4876
|
elements?: Element_3[];
|
|
4826
4877
|
};
|
|
4827
4878
|
|
|
4879
|
+
export declare type ElementCategoryEnum = z.infer<typeof ElementCategoryEnumSchema>;
|
|
4880
|
+
|
|
4828
4881
|
export declare const ElementCategoryEnumSchema: z.ZodEnum<{
|
|
4829
4882
|
product: "product";
|
|
4830
4883
|
coverage: "coverage";
|
|
@@ -6264,7 +6317,11 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
6264
6317
|
draft: "draft";
|
|
6265
6318
|
validated: "validated";
|
|
6266
6319
|
discarded: "discarded";
|
|
6320
|
+
cancelled: "cancelled";
|
|
6321
|
+
failed: "failed";
|
|
6267
6322
|
reversed: "reversed";
|
|
6323
|
+
requested: "requested";
|
|
6324
|
+
executing: "executing";
|
|
6268
6325
|
posted: "posted";
|
|
6269
6326
|
}>;
|
|
6270
6327
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -6272,6 +6329,8 @@ export declare const ListPaymentResponseSchema: z.ZodObject<{
|
|
|
6272
6329
|
containerType: z.ZodEnum<{
|
|
6273
6330
|
account: "account";
|
|
6274
6331
|
invoice: "invoice";
|
|
6332
|
+
subpayment: "subpayment";
|
|
6333
|
+
invoiceItem: "invoiceItem";
|
|
6275
6334
|
}>;
|
|
6276
6335
|
containerLocator: z.ZodString;
|
|
6277
6336
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6539,12 +6598,21 @@ export declare const MapStringMapZ: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodSt
|
|
|
6539
6598
|
|
|
6540
6599
|
export declare const MapStringStringZ: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6541
6600
|
|
|
6601
|
+
export declare type MatchEnum = z.infer<typeof MatchEnum>;
|
|
6602
|
+
|
|
6603
|
+
/** @deprecated - use MatchEnumSchema instead */
|
|
6542
6604
|
export declare const MatchEnum: z.ZodEnum<{
|
|
6543
6605
|
exact: "exact";
|
|
6544
6606
|
startsWith: "startsWith";
|
|
6545
6607
|
fuzzy: "fuzzy";
|
|
6546
6608
|
}>;
|
|
6547
6609
|
|
|
6610
|
+
export declare const MatchEnumSchema: z.ZodEnum<{
|
|
6611
|
+
exact: "exact";
|
|
6612
|
+
startsWith: "startsWith";
|
|
6613
|
+
fuzzy: "fuzzy";
|
|
6614
|
+
}>;
|
|
6615
|
+
|
|
6548
6616
|
/**
|
|
6549
6617
|
* List of supported mime formats for any uploads in Operational UI.
|
|
6550
6618
|
* Copy of enum in BFF, BFF's instance will be deprecated.
|
|
@@ -6566,6 +6634,8 @@ declare const enum MimeType_2 {
|
|
|
6566
6634
|
}
|
|
6567
6635
|
export { MimeType_2 as MimeType }
|
|
6568
6636
|
|
|
6637
|
+
export declare type MimeTypeEnum = z.infer<typeof MimeTypeEnumSchema>;
|
|
6638
|
+
|
|
6569
6639
|
/**
|
|
6570
6640
|
* List of supported mime formats for any uploads in Operational UI.
|
|
6571
6641
|
*/
|
|
@@ -7253,7 +7323,11 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
7253
7323
|
draft: "draft";
|
|
7254
7324
|
validated: "validated";
|
|
7255
7325
|
discarded: "discarded";
|
|
7326
|
+
cancelled: "cancelled";
|
|
7327
|
+
failed: "failed";
|
|
7256
7328
|
reversed: "reversed";
|
|
7329
|
+
requested: "requested";
|
|
7330
|
+
executing: "executing";
|
|
7257
7331
|
posted: "posted";
|
|
7258
7332
|
}>;
|
|
7259
7333
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -7261,6 +7335,8 @@ export declare const PaymentResponseSchema: z.ZodObject<{
|
|
|
7261
7335
|
containerType: z.ZodEnum<{
|
|
7262
7336
|
account: "account";
|
|
7263
7337
|
invoice: "invoice";
|
|
7338
|
+
subpayment: "subpayment";
|
|
7339
|
+
invoiceItem: "invoiceItem";
|
|
7264
7340
|
}>;
|
|
7265
7341
|
containerLocator: z.ZodString;
|
|
7266
7342
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7320,7 +7396,11 @@ export declare const PaymentStateEnumSchema: z.ZodEnum<{
|
|
|
7320
7396
|
draft: "draft";
|
|
7321
7397
|
validated: "validated";
|
|
7322
7398
|
discarded: "discarded";
|
|
7399
|
+
cancelled: "cancelled";
|
|
7400
|
+
failed: "failed";
|
|
7323
7401
|
reversed: "reversed";
|
|
7402
|
+
requested: "requested";
|
|
7403
|
+
executing: "executing";
|
|
7324
7404
|
posted: "posted";
|
|
7325
7405
|
}>;
|
|
7326
7406
|
|
|
@@ -10112,6 +10192,8 @@ export declare const QuickQuoteResponseSchema: z.ZodObject<{
|
|
|
10112
10192
|
anonymizedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
10113
10193
|
}, z.core.$strip>;
|
|
10114
10194
|
|
|
10195
|
+
export declare type QuickQuoteStateEnum = z.infer<typeof QuickQuoteStateEnumSchema>;
|
|
10196
|
+
|
|
10115
10197
|
export declare const QuickQuoteStateEnumSchema: z.ZodEnum<{
|
|
10116
10198
|
draft: "draft";
|
|
10117
10199
|
validated: "validated";
|
|
@@ -10921,6 +11003,8 @@ export declare type QuoteResponseType = z.infer<typeof QuoteResponseSchema>;
|
|
|
10921
11003
|
|
|
10922
11004
|
export declare type QuoteState = z.infer<typeof quoteStateSchema>;
|
|
10923
11005
|
|
|
11006
|
+
export declare type QuoteStateEnum = z.infer<typeof QuoteStateEnumSchema>;
|
|
11007
|
+
|
|
10924
11008
|
export declare const QuoteStateEnumSchema: z.ZodEnum<{
|
|
10925
11009
|
draft: "draft";
|
|
10926
11010
|
validated: "validated";
|
|
@@ -11401,16 +11485,7 @@ export declare const RecentQuotesListResponseSchema: z.ZodObject<{
|
|
|
11401
11485
|
}, z.core.$strip>>;
|
|
11402
11486
|
}, z.core.$strip>;
|
|
11403
11487
|
|
|
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
|
-
}>;
|
|
11488
|
+
export declare type ResetFlagsActionEnum = z.infer<typeof ResetFlagsActionEnumSchema>;
|
|
11414
11489
|
|
|
11415
11490
|
export declare const ResetFlagsActionEnumSchema: z.ZodEnum<{
|
|
11416
11491
|
clear: "clear";
|
|
@@ -11538,11 +11613,13 @@ export declare const SearchEntityTypeEnum: z.ZodEnum<{
|
|
|
11538
11613
|
quote: "quote";
|
|
11539
11614
|
payment: "payment";
|
|
11540
11615
|
fnol: "fnol";
|
|
11616
|
+
diary: "diary";
|
|
11541
11617
|
unspecified: "unspecified";
|
|
11542
11618
|
contact: "contact";
|
|
11543
|
-
diary: "diary";
|
|
11544
11619
|
}>;
|
|
11545
11620
|
|
|
11621
|
+
export declare type SearchEntityTypeEnum = z.infer<typeof SearchEntityTypeEnum>;
|
|
11622
|
+
|
|
11546
11623
|
export declare const SearchParamSchema: z.ZodObject<{
|
|
11547
11624
|
tenantLocator: z.ZodUUID;
|
|
11548
11625
|
}, z.core.$strip>;
|
|
@@ -11559,9 +11636,9 @@ export declare const SearchRequestSchema: z.ZodObject<{
|
|
|
11559
11636
|
quote: "quote";
|
|
11560
11637
|
payment: "payment";
|
|
11561
11638
|
fnol: "fnol";
|
|
11639
|
+
diary: "diary";
|
|
11562
11640
|
unspecified: "unspecified";
|
|
11563
11641
|
contact: "contact";
|
|
11564
|
-
diary: "diary";
|
|
11565
11642
|
}>>;
|
|
11566
11643
|
searchString: z.ZodOptional<z.ZodString>;
|
|
11567
11644
|
searchTerms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11597,9 +11674,9 @@ export declare const SearchResponseSchema: z.ZodObject<{
|
|
|
11597
11674
|
quote: "quote";
|
|
11598
11675
|
payment: "payment";
|
|
11599
11676
|
fnol: "fnol";
|
|
11677
|
+
diary: "diary";
|
|
11600
11678
|
unspecified: "unspecified";
|
|
11601
11679
|
contact: "contact";
|
|
11602
|
-
diary: "diary";
|
|
11603
11680
|
}>;
|
|
11604
11681
|
highlights: z.ZodArray<z.ZodString>;
|
|
11605
11682
|
searchSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -11617,9 +11694,9 @@ export declare const SearchResultSchema: z.ZodObject<{
|
|
|
11617
11694
|
quote: "quote";
|
|
11618
11695
|
payment: "payment";
|
|
11619
11696
|
fnol: "fnol";
|
|
11697
|
+
diary: "diary";
|
|
11620
11698
|
unspecified: "unspecified";
|
|
11621
11699
|
contact: "contact";
|
|
11622
|
-
diary: "diary";
|
|
11623
11700
|
}>;
|
|
11624
11701
|
highlights: z.ZodArray<z.ZodString>;
|
|
11625
11702
|
searchSummary: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -11762,15 +11839,17 @@ export declare const SegmentSchema: z.ZodObject<{
|
|
|
11762
11839
|
basedOn: z.ZodOptional<z.ZodULID>;
|
|
11763
11840
|
}, z.core.$strip>;
|
|
11764
11841
|
|
|
11842
|
+
export declare type SegmentTypeEnum = z.infer<typeof SegmentTypeEnumSchema>;
|
|
11843
|
+
|
|
11765
11844
|
export declare const SegmentTypeEnumSchema: z.ZodEnum<{
|
|
11766
11845
|
coverage: "coverage";
|
|
11767
11846
|
gap: "gap";
|
|
11768
11847
|
}>;
|
|
11769
11848
|
|
|
11770
11849
|
export declare const SelectionTimeBasisEnum: z.ZodEnum<{
|
|
11771
|
-
policyStartTime: "policyStartTime";
|
|
11772
|
-
termStartTime: "termStartTime";
|
|
11773
11850
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
11851
|
+
termStartTime: "termStartTime";
|
|
11852
|
+
policyStartTime: "policyStartTime";
|
|
11774
11853
|
currentTime: "currentTime";
|
|
11775
11854
|
}>;
|
|
11776
11855
|
|
|
@@ -11850,6 +11929,8 @@ export declare const TaskCreateRequestSchema: z.ZodObject<{
|
|
|
11850
11929
|
invoice: "invoice";
|
|
11851
11930
|
transaction: "transaction";
|
|
11852
11931
|
quickQuote: "quickQuote";
|
|
11932
|
+
underwritingFlag: "underwritingFlag";
|
|
11933
|
+
payment: "payment";
|
|
11853
11934
|
}>;
|
|
11854
11935
|
referenceLocator: z.ZodString;
|
|
11855
11936
|
}, z.core.$strip>>;
|
|
@@ -12055,6 +12136,8 @@ export declare const TaskListResponseBffSchema: z.ZodObject<{
|
|
|
12055
12136
|
invoice: "invoice";
|
|
12056
12137
|
transaction: "transaction";
|
|
12057
12138
|
quickQuote: "quickQuote";
|
|
12139
|
+
underwritingFlag: "underwritingFlag";
|
|
12140
|
+
payment: "payment";
|
|
12058
12141
|
}>;
|
|
12059
12142
|
referenceLocator: z.ZodString;
|
|
12060
12143
|
}, z.core.$strip>>>;
|
|
@@ -12121,6 +12204,8 @@ export declare const TaskListResponseSchema: z.ZodObject<{
|
|
|
12121
12204
|
invoice: "invoice";
|
|
12122
12205
|
transaction: "transaction";
|
|
12123
12206
|
quickQuote: "quickQuote";
|
|
12207
|
+
underwritingFlag: "underwritingFlag";
|
|
12208
|
+
payment: "payment";
|
|
12124
12209
|
}>;
|
|
12125
12210
|
referenceLocator: z.ZodString;
|
|
12126
12211
|
}, z.core.$strip>>>;
|
|
@@ -12160,6 +12245,8 @@ export declare const TaskReferenceBffSchema: z.ZodObject<{
|
|
|
12160
12245
|
invoice: "invoice";
|
|
12161
12246
|
transaction: "transaction";
|
|
12162
12247
|
quickQuote: "quickQuote";
|
|
12248
|
+
underwritingFlag: "underwritingFlag";
|
|
12249
|
+
payment: "payment";
|
|
12163
12250
|
}>;
|
|
12164
12251
|
referenceLocator: z.ZodString;
|
|
12165
12252
|
}, z.core.$strip>;
|
|
@@ -12173,6 +12260,8 @@ export declare const TaskReferenceEnumSchema: z.ZodEnum<{
|
|
|
12173
12260
|
invoice: "invoice";
|
|
12174
12261
|
transaction: "transaction";
|
|
12175
12262
|
quickQuote: "quickQuote";
|
|
12263
|
+
underwritingFlag: "underwritingFlag";
|
|
12264
|
+
payment: "payment";
|
|
12176
12265
|
}>;
|
|
12177
12266
|
|
|
12178
12267
|
export declare const TaskReferenceSchema: z.ZodObject<{
|
|
@@ -12183,6 +12272,8 @@ export declare const TaskReferenceSchema: z.ZodObject<{
|
|
|
12183
12272
|
invoice: "invoice";
|
|
12184
12273
|
transaction: "transaction";
|
|
12185
12274
|
quickQuote: "quickQuote";
|
|
12275
|
+
underwritingFlag: "underwritingFlag";
|
|
12276
|
+
payment: "payment";
|
|
12186
12277
|
}>;
|
|
12187
12278
|
referenceLocator: z.ZodString;
|
|
12188
12279
|
}, z.core.$strip>;
|
|
@@ -12205,6 +12296,8 @@ export declare const TaskResponseBffSchema: z.ZodObject<{
|
|
|
12205
12296
|
invoice: "invoice";
|
|
12206
12297
|
transaction: "transaction";
|
|
12207
12298
|
quickQuote: "quickQuote";
|
|
12299
|
+
underwritingFlag: "underwritingFlag";
|
|
12300
|
+
payment: "payment";
|
|
12208
12301
|
}>;
|
|
12209
12302
|
referenceLocator: z.ZodString;
|
|
12210
12303
|
}, z.core.$strip>>>;
|
|
@@ -12268,6 +12361,8 @@ export declare const TaskResponseSchema: z.ZodObject<{
|
|
|
12268
12361
|
invoice: "invoice";
|
|
12269
12362
|
transaction: "transaction";
|
|
12270
12363
|
quickQuote: "quickQuote";
|
|
12364
|
+
underwritingFlag: "underwritingFlag";
|
|
12365
|
+
payment: "payment";
|
|
12271
12366
|
}>;
|
|
12272
12367
|
referenceLocator: z.ZodString;
|
|
12273
12368
|
}, z.core.$strip>>>;
|
|
@@ -12326,6 +12421,8 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12326
12421
|
invoice: "invoice";
|
|
12327
12422
|
transaction: "transaction";
|
|
12328
12423
|
quickQuote: "quickQuote";
|
|
12424
|
+
underwritingFlag: "underwritingFlag";
|
|
12425
|
+
payment: "payment";
|
|
12329
12426
|
}>;
|
|
12330
12427
|
referenceLocator: z.ZodString;
|
|
12331
12428
|
}, z.core.$strip>>>;
|
|
@@ -12337,6 +12434,8 @@ export declare const TaskUpdateRequestSchema: z.ZodObject<{
|
|
|
12337
12434
|
invoice: "invoice";
|
|
12338
12435
|
transaction: "transaction";
|
|
12339
12436
|
quickQuote: "quickQuote";
|
|
12437
|
+
underwritingFlag: "underwritingFlag";
|
|
12438
|
+
payment: "payment";
|
|
12340
12439
|
}>;
|
|
12341
12440
|
referenceLocator: z.ZodString;
|
|
12342
12441
|
}, z.core.$strip>>>;
|
|
@@ -12360,9 +12459,9 @@ export declare type TemplateSnippetConfig = z.infer<typeof TemplateSnippetConfig
|
|
|
12360
12459
|
|
|
12361
12460
|
export declare const TemplateSnippetConfigSchema: z.ZodObject<{
|
|
12362
12461
|
selectionTimeBasis: z.ZodEnum<{
|
|
12363
|
-
policyStartTime: "policyStartTime";
|
|
12364
|
-
termStartTime: "termStartTime";
|
|
12365
12462
|
transactionEffectiveTime: "transactionEffectiveTime";
|
|
12463
|
+
termStartTime: "termStartTime";
|
|
12464
|
+
policyStartTime: "policyStartTime";
|
|
12366
12465
|
currentTime: "currentTime";
|
|
12367
12466
|
}>;
|
|
12368
12467
|
displayName: z.ZodString;
|
|
@@ -13149,6 +13248,8 @@ export declare type TimezoneType = z.infer<typeof timezoneEnumSchema>;
|
|
|
13149
13248
|
|
|
13150
13249
|
export declare type TransactionCategory = z.infer<typeof transactionCategoryEnumSchema>;
|
|
13151
13250
|
|
|
13251
|
+
export declare type TransactionCategoryEnum = z.infer<typeof TransactionCategoryEnumSchema>;
|
|
13252
|
+
|
|
13152
13253
|
export declare const TransactionCategoryEnumSchema: z.ZodEnum<{
|
|
13153
13254
|
issuance: "issuance";
|
|
13154
13255
|
change: "change";
|
|
@@ -13584,6 +13685,8 @@ export declare const transactionSnapshotResponseSchema: z.ZodObject<{
|
|
|
13584
13685
|
|
|
13585
13686
|
export declare type TransactionState = z.infer<typeof transactionStateEnumSchema>;
|
|
13586
13687
|
|
|
13688
|
+
export declare type TransactionStateEnum = z.infer<typeof TransactionStateEnumSchema>;
|
|
13689
|
+
|
|
13587
13690
|
export declare const TransactionStateEnumSchema: z.ZodEnum<{
|
|
13588
13691
|
draft: "draft";
|
|
13589
13692
|
validated: "validated";
|
|
@@ -13919,6 +14022,8 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
|
13919
14022
|
invoice: "invoice";
|
|
13920
14023
|
transaction: "transaction";
|
|
13921
14024
|
quickQuote: "quickQuote";
|
|
14025
|
+
underwritingFlag: "underwritingFlag";
|
|
14026
|
+
payment: "payment";
|
|
13922
14027
|
}>;
|
|
13923
14028
|
referenceLocator: z.ZodString;
|
|
13924
14029
|
}, z.core.$strip>>;
|
|
@@ -14001,6 +14106,8 @@ export declare const underwritingFlagResponseSchema: z.ZodObject<{
|
|
|
14001
14106
|
note: z.ZodOptional<z.ZodString>;
|
|
14002
14107
|
}, z.core.$strip>;
|
|
14003
14108
|
|
|
14109
|
+
export declare type UnderwritingFlagsLevelEnum = z.infer<typeof UnderwritingFlagsLevelEnumSchema>;
|
|
14110
|
+
|
|
14004
14111
|
export declare const UnderwritingFlagsLevelEnumSchema: z.ZodEnum<{
|
|
14005
14112
|
none: "none";
|
|
14006
14113
|
info: "info";
|
|
@@ -14010,6 +14117,8 @@ export declare const UnderwritingFlagsLevelEnumSchema: z.ZodEnum<{
|
|
|
14010
14117
|
approve: "approve";
|
|
14011
14118
|
}>;
|
|
14012
14119
|
|
|
14120
|
+
export declare type UnderwritingFlagsReferenceTypeEnum = z.infer<typeof UnderwritingFlagsReferenceTypeEnumSchema>;
|
|
14121
|
+
|
|
14013
14122
|
export declare const UnderwritingFlagsReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14014
14123
|
quote: "quote";
|
|
14015
14124
|
transaction: "transaction";
|
|
@@ -14040,6 +14149,8 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<{
|
|
|
14040
14149
|
invoice: "invoice";
|
|
14041
14150
|
transaction: "transaction";
|
|
14042
14151
|
quickQuote: "quickQuote";
|
|
14152
|
+
underwritingFlag: "underwritingFlag";
|
|
14153
|
+
payment: "payment";
|
|
14043
14154
|
}>;
|
|
14044
14155
|
referenceLocator: z.ZodString;
|
|
14045
14156
|
}, z.core.$strip>>;
|
|
@@ -14103,6 +14214,8 @@ export declare const UserAssociationCreateRequestSchema: z.ZodObject<{
|
|
|
14103
14214
|
invoice: "invoice";
|
|
14104
14215
|
transaction: "transaction";
|
|
14105
14216
|
quickQuote: "quickQuote";
|
|
14217
|
+
underwritingFlag: "underwritingFlag";
|
|
14218
|
+
payment: "payment";
|
|
14106
14219
|
}>;
|
|
14107
14220
|
userAssociationRole: z.ZodString;
|
|
14108
14221
|
referenceLocator: z.ZodString;
|
|
@@ -14162,6 +14275,8 @@ export declare const UserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
14162
14275
|
invoice: "invoice";
|
|
14163
14276
|
transaction: "transaction";
|
|
14164
14277
|
quickQuote: "quickQuote";
|
|
14278
|
+
underwritingFlag: "underwritingFlag";
|
|
14279
|
+
payment: "payment";
|
|
14165
14280
|
}>;
|
|
14166
14281
|
userAssociationState: z.ZodEnum<{
|
|
14167
14282
|
discarded: "discarded";
|
|
@@ -14188,6 +14303,8 @@ export declare const UserAssociationListResponseSchema: z.ZodObject<{
|
|
|
14188
14303
|
invoice: "invoice";
|
|
14189
14304
|
transaction: "transaction";
|
|
14190
14305
|
quickQuote: "quickQuote";
|
|
14306
|
+
underwritingFlag: "underwritingFlag";
|
|
14307
|
+
payment: "payment";
|
|
14191
14308
|
}>;
|
|
14192
14309
|
userAssociationState: z.ZodEnum<{
|
|
14193
14310
|
discarded: "discarded";
|
|
@@ -14219,6 +14336,19 @@ export declare const UserAssociationReferenceDetailsSchema: z.ZodObject<{
|
|
|
14219
14336
|
segmentLocator: z.ZodOptional<z.ZodString>;
|
|
14220
14337
|
}, z.core.$strip>;
|
|
14221
14338
|
|
|
14339
|
+
export declare type UserAssociationReferenceTypeEnum = z.infer<typeof UserAssociationReferenceTypeEnumSchema>;
|
|
14340
|
+
|
|
14341
|
+
export declare const UserAssociationReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14342
|
+
account: "account";
|
|
14343
|
+
policy: "policy";
|
|
14344
|
+
quote: "quote";
|
|
14345
|
+
invoice: "invoice";
|
|
14346
|
+
transaction: "transaction";
|
|
14347
|
+
quickQuote: "quickQuote";
|
|
14348
|
+
underwritingFlag: "underwritingFlag";
|
|
14349
|
+
payment: "payment";
|
|
14350
|
+
}>;
|
|
14351
|
+
|
|
14222
14352
|
export declare type UserAssociationResponse = z.infer<typeof UserAssociationResponseSchema>;
|
|
14223
14353
|
|
|
14224
14354
|
export declare type UserAssociationResponseBff = z.infer<typeof UserAssociationResponseBffSchema>;
|
|
@@ -14267,6 +14397,8 @@ export declare const UserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
14267
14397
|
invoice: "invoice";
|
|
14268
14398
|
transaction: "transaction";
|
|
14269
14399
|
quickQuote: "quickQuote";
|
|
14400
|
+
underwritingFlag: "underwritingFlag";
|
|
14401
|
+
payment: "payment";
|
|
14270
14402
|
}>;
|
|
14271
14403
|
userAssociationState: z.ZodEnum<{
|
|
14272
14404
|
discarded: "discarded";
|
|
@@ -14290,6 +14422,8 @@ export declare const UserAssociationResponseSchema: z.ZodObject<{
|
|
|
14290
14422
|
invoice: "invoice";
|
|
14291
14423
|
transaction: "transaction";
|
|
14292
14424
|
quickQuote: "quickQuote";
|
|
14425
|
+
underwritingFlag: "underwritingFlag";
|
|
14426
|
+
payment: "payment";
|
|
14293
14427
|
}>;
|
|
14294
14428
|
userAssociationState: z.ZodEnum<{
|
|
14295
14429
|
discarded: "discarded";
|
|
@@ -14315,6 +14449,8 @@ export declare const UserAssociationRoleRefSchema: z.ZodObject<{
|
|
|
14315
14449
|
invoice: "invoice";
|
|
14316
14450
|
transaction: "transaction";
|
|
14317
14451
|
quickQuote: "quickQuote";
|
|
14452
|
+
underwritingFlag: "underwritingFlag";
|
|
14453
|
+
payment: "payment";
|
|
14318
14454
|
}>>;
|
|
14319
14455
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14320
14456
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14459,6 +14595,8 @@ export declare const UserUserAssociationListResponseBffSchema: z.ZodObject<{
|
|
|
14459
14595
|
invoice: "invoice";
|
|
14460
14596
|
transaction: "transaction";
|
|
14461
14597
|
quickQuote: "quickQuote";
|
|
14598
|
+
underwritingFlag: "underwritingFlag";
|
|
14599
|
+
payment: "payment";
|
|
14462
14600
|
}>;
|
|
14463
14601
|
userAssociationState: z.ZodEnum<{
|
|
14464
14602
|
discarded: "discarded";
|
|
@@ -14494,6 +14632,8 @@ export declare const UserUserAssociationResponseBffSchema: z.ZodObject<{
|
|
|
14494
14632
|
invoice: "invoice";
|
|
14495
14633
|
transaction: "transaction";
|
|
14496
14634
|
quickQuote: "quickQuote";
|
|
14635
|
+
underwritingFlag: "underwritingFlag";
|
|
14636
|
+
payment: "payment";
|
|
14497
14637
|
}>;
|
|
14498
14638
|
userAssociationState: z.ZodEnum<{
|
|
14499
14639
|
discarded: "discarded";
|
|
@@ -14547,6 +14687,8 @@ export declare const validationResultSchema: z.ZodObject<{
|
|
|
14547
14687
|
|
|
14548
14688
|
export declare type WeekOfMonth = z.infer<typeof weekOfMonthEnumSchema>;
|
|
14549
14689
|
|
|
14690
|
+
export declare type WeekOfMonthEnum = z.infer<typeof WeekOfMonthEnumSchema>;
|
|
14691
|
+
|
|
14550
14692
|
export declare const WeekOfMonthEnumSchema: z.ZodEnum<{
|
|
14551
14693
|
none: "none";
|
|
14552
14694
|
first: "first";
|
|
@@ -14569,6 +14711,7 @@ export declare type WorkManagementRef = z.infer<typeof WorkManagementRefSchema>;
|
|
|
14569
14711
|
|
|
14570
14712
|
export declare type WorkManagementReferenceTypeEnum = z.infer<typeof WorkManagementReferenceTypeEnumSchema>;
|
|
14571
14713
|
|
|
14714
|
+
/** @deprecated - use UserAssociationReferenceTypeEnumSchema instead */
|
|
14572
14715
|
export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<{
|
|
14573
14716
|
account: "account";
|
|
14574
14717
|
policy: "policy";
|
|
@@ -14576,6 +14719,8 @@ export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<{
|
|
|
14576
14719
|
invoice: "invoice";
|
|
14577
14720
|
transaction: "transaction";
|
|
14578
14721
|
quickQuote: "quickQuote";
|
|
14722
|
+
underwritingFlag: "underwritingFlag";
|
|
14723
|
+
payment: "payment";
|
|
14579
14724
|
}>;
|
|
14580
14725
|
|
|
14581
14726
|
export declare const WorkManagementRefSchema: z.ZodObject<{
|
|
@@ -14593,6 +14738,8 @@ export declare const WorkManagementRefSchema: z.ZodObject<{
|
|
|
14593
14738
|
invoice: "invoice";
|
|
14594
14739
|
transaction: "transaction";
|
|
14595
14740
|
quickQuote: "quickQuote";
|
|
14741
|
+
underwritingFlag: "underwritingFlag";
|
|
14742
|
+
payment: "payment";
|
|
14596
14743
|
}>>;
|
|
14597
14744
|
qualification: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14598
14745
|
exclusive: z.ZodOptional<z.ZodBoolean>;
|