@socotra/ec-react-schemas 2.13.0 → 2.13.2-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 +261 -109
- package/dist/index.es.js +2140 -2010
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -923,6 +923,18 @@ export declare const accountUpdateSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
923
923
|
autoValidate?: boolean | undefined;
|
|
924
924
|
}>;
|
|
925
925
|
|
|
926
|
+
export declare type ActivityId = z.infer<typeof ActivityIdSchema>;
|
|
927
|
+
|
|
928
|
+
export declare const ActivityIdSchema: z.ZodString;
|
|
929
|
+
|
|
930
|
+
export declare type ActivityReferenceEnum = z.infer<typeof ActivityReferenceEnumSchema>;
|
|
931
|
+
|
|
932
|
+
export declare const ActivityReferenceEnumSchema: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
933
|
+
|
|
934
|
+
export declare type ActivityStateEnum = z.infer<typeof ActivityStateEnumSchema>;
|
|
935
|
+
|
|
936
|
+
export declare const ActivityStateEnumSchema: z.ZodEnum<["active", "pastDeadline", "completed", "cancelled"]>;
|
|
937
|
+
|
|
926
938
|
export declare type AddChangeInstructionCreateRequest = z.infer<typeof addChangeInstructionCreateRequestSchema>;
|
|
927
939
|
|
|
928
940
|
export declare const addChangeInstructionCreateRequestSchema: z.ZodObject<{
|
|
@@ -1103,6 +1115,14 @@ export declare const AnchorTypeEnumSchema: z.ZodEnum<["none", "dayOfMonth", "anc
|
|
|
1103
1115
|
|
|
1104
1116
|
export declare const anchorTypeEnumSchema: z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>;
|
|
1105
1117
|
|
|
1118
|
+
export declare type AssignmentId = z.infer<typeof AssignmentIdSchema>;
|
|
1119
|
+
|
|
1120
|
+
export declare const AssignmentIdSchema: z.ZodString;
|
|
1121
|
+
|
|
1122
|
+
export declare type AssignmentStateEnum = z.infer<typeof AssignmentStateEnumSchema>;
|
|
1123
|
+
|
|
1124
|
+
export declare const AssignmentStateEnumSchema: z.ZodEnum<["active", "completed", "unassigned", "discarded"]>;
|
|
1125
|
+
|
|
1106
1126
|
export declare type AttachDocumentParams = z.infer<typeof AttachDocumentParamsSchema>;
|
|
1107
1127
|
|
|
1108
1128
|
export declare const AttachDocumentParamsSchema: z.ZodObject<{
|
|
@@ -2180,6 +2200,8 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
2180
2200
|
rateDifference: z.ZodOptional<z.ZodNumber>;
|
|
2181
2201
|
elementStaticLocator: z.ZodString;
|
|
2182
2202
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
2203
|
+
handling: z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"flat">]>;
|
|
2204
|
+
invoicing: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"next">, z.ZodLiteral<"immediate">]>;
|
|
2183
2205
|
}, {
|
|
2184
2206
|
locator: z.ZodString;
|
|
2185
2207
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -2189,6 +2211,8 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
2189
2211
|
}>, "strip", z.ZodTypeAny, {
|
|
2190
2212
|
locator: string;
|
|
2191
2213
|
elementLocator: string;
|
|
2214
|
+
handling: "flat" | "normal";
|
|
2215
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2192
2216
|
chargeType: string;
|
|
2193
2217
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2194
2218
|
amount: number;
|
|
@@ -2201,6 +2225,8 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
2201
2225
|
}, {
|
|
2202
2226
|
locator: string;
|
|
2203
2227
|
elementLocator: string;
|
|
2228
|
+
handling: "flat" | "normal";
|
|
2229
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2204
2230
|
chargeType: string;
|
|
2205
2231
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2206
2232
|
amount: number;
|
|
@@ -2216,6 +2242,8 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
2216
2242
|
charges: {
|
|
2217
2243
|
locator: string;
|
|
2218
2244
|
elementLocator: string;
|
|
2245
|
+
handling: "flat" | "normal";
|
|
2246
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2219
2247
|
chargeType: string;
|
|
2220
2248
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2221
2249
|
amount: number;
|
|
@@ -2234,6 +2262,8 @@ declare const BaseTransactionPriceSchema: z.ZodObject<{
|
|
|
2234
2262
|
charges: {
|
|
2235
2263
|
locator: string;
|
|
2236
2264
|
elementLocator: string;
|
|
2265
|
+
handling: "flat" | "normal";
|
|
2266
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2237
2267
|
chargeType: string;
|
|
2238
2268
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2239
2269
|
amount: number;
|
|
@@ -2262,6 +2292,7 @@ declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
2262
2292
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
2263
2293
|
referenceLocator: z.ZodString;
|
|
2264
2294
|
note: z.ZodString;
|
|
2295
|
+
tag: z.ZodString;
|
|
2265
2296
|
elementLocator: z.ZodString;
|
|
2266
2297
|
createdBy: z.ZodString;
|
|
2267
2298
|
createdTime: z.ZodString;
|
|
@@ -2285,6 +2316,7 @@ declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
2285
2316
|
createdTime: string;
|
|
2286
2317
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
2287
2318
|
note: string;
|
|
2319
|
+
tag: string;
|
|
2288
2320
|
referenceType: "quote" | "transaction";
|
|
2289
2321
|
referenceLocator: string;
|
|
2290
2322
|
elementLocator?: string | undefined;
|
|
@@ -2296,6 +2328,7 @@ declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
2296
2328
|
createdTime: string;
|
|
2297
2329
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
2298
2330
|
note: string;
|
|
2331
|
+
tag: string;
|
|
2299
2332
|
referenceType: "quote" | "transaction";
|
|
2300
2333
|
referenceLocator: string;
|
|
2301
2334
|
elementLocator?: string | undefined;
|
|
@@ -2312,6 +2345,7 @@ declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
2312
2345
|
createdTime: string;
|
|
2313
2346
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
2314
2347
|
note: string;
|
|
2348
|
+
tag: string;
|
|
2315
2349
|
referenceType: "quote" | "transaction";
|
|
2316
2350
|
referenceLocator: string;
|
|
2317
2351
|
elementLocator?: string | undefined;
|
|
@@ -2331,6 +2365,7 @@ declare const BaseTransactionUnderwritingResponseSchema: z.ZodObject<{
|
|
|
2331
2365
|
createdTime: string;
|
|
2332
2366
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
2333
2367
|
note: string;
|
|
2368
|
+
tag: string;
|
|
2334
2369
|
referenceType: "quote" | "transaction";
|
|
2335
2370
|
referenceLocator: string;
|
|
2336
2371
|
elementLocator?: string | undefined;
|
|
@@ -2550,6 +2585,8 @@ export declare const ChargeResponseSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2550
2585
|
rateDifference: z.ZodOptional<z.ZodNumber>;
|
|
2551
2586
|
elementStaticLocator: z.ZodString;
|
|
2552
2587
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
2588
|
+
handling: z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"flat">]>;
|
|
2589
|
+
invoicing: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"next">, z.ZodLiteral<"immediate">]>;
|
|
2553
2590
|
}, {
|
|
2554
2591
|
locator: z.ZodString;
|
|
2555
2592
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -2559,6 +2596,8 @@ export declare const ChargeResponseSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2559
2596
|
}>, "strip", z.ZodTypeAny, {
|
|
2560
2597
|
locator: string;
|
|
2561
2598
|
elementLocator: string;
|
|
2599
|
+
handling: "flat" | "normal";
|
|
2600
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2562
2601
|
chargeType: string;
|
|
2563
2602
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2564
2603
|
amount: number;
|
|
@@ -2571,6 +2610,8 @@ export declare const ChargeResponseSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
2571
2610
|
}, {
|
|
2572
2611
|
locator: string;
|
|
2573
2612
|
elementLocator: string;
|
|
2613
|
+
handling: "flat" | "normal";
|
|
2614
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
2574
2615
|
chargeType: string;
|
|
2575
2616
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
2576
2617
|
amount: number;
|
|
@@ -4225,7 +4266,7 @@ export declare const creditItemContainerTypeEnumSchema: z.ZodEnum<["invoice", "a
|
|
|
4225
4266
|
|
|
4226
4267
|
export declare const CreditItemSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
4227
4268
|
containerLocator: z.ZodString;
|
|
4228
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
4269
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
4229
4270
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
4230
4271
|
}, {
|
|
4231
4272
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -7467,6 +7508,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
7467
7508
|
}> | undefined;
|
|
7468
7509
|
}>>;
|
|
7469
7510
|
|
|
7511
|
+
export declare const DatetimeWithOffsetZ: z.ZodString;
|
|
7512
|
+
|
|
7470
7513
|
export declare const DatetimeZ: z.ZodString;
|
|
7471
7514
|
|
|
7472
7515
|
export declare type DayOfWeek = z.infer<typeof dayOfWeekEnumSchema>;
|
|
@@ -7647,6 +7690,7 @@ export declare const delinquencyResponseSchema: z.ZodObject<{
|
|
|
7647
7690
|
locator: string;
|
|
7648
7691
|
timezone: string;
|
|
7649
7692
|
accountLocator: string;
|
|
7693
|
+
updatedAt: string;
|
|
7650
7694
|
createdAt: string;
|
|
7651
7695
|
delinquencyState: "settled" | "preGrace" | "inGrace" | "lapseTriggered";
|
|
7652
7696
|
settings: {
|
|
@@ -7655,7 +7699,6 @@ export declare const delinquencyResponseSchema: z.ZodObject<{
|
|
|
7655
7699
|
advanceLapseTo: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued";
|
|
7656
7700
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
7657
7701
|
};
|
|
7658
|
-
updatedAt: string;
|
|
7659
7702
|
graceEndAt?: string | undefined;
|
|
7660
7703
|
graceStartedAt?: string | undefined;
|
|
7661
7704
|
lapseTransactionEffectiveDate?: string | undefined;
|
|
@@ -7664,6 +7707,7 @@ export declare const delinquencyResponseSchema: z.ZodObject<{
|
|
|
7664
7707
|
locator: string;
|
|
7665
7708
|
timezone: string;
|
|
7666
7709
|
accountLocator: string;
|
|
7710
|
+
updatedAt: string;
|
|
7667
7711
|
createdAt: string;
|
|
7668
7712
|
delinquencyState: "settled" | "preGrace" | "inGrace" | "lapseTriggered";
|
|
7669
7713
|
settings: {
|
|
@@ -7672,7 +7716,6 @@ export declare const delinquencyResponseSchema: z.ZodObject<{
|
|
|
7672
7716
|
advanceLapseTo: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued";
|
|
7673
7717
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
7674
7718
|
};
|
|
7675
|
-
updatedAt: string;
|
|
7676
7719
|
graceEndAt?: string | undefined;
|
|
7677
7720
|
graceStartedAt?: string | undefined;
|
|
7678
7721
|
lapseTransactionEffectiveDate?: string | undefined;
|
|
@@ -7726,6 +7769,18 @@ export declare const DeploymentMetadataSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
7726
7769
|
latestVersion: string;
|
|
7727
7770
|
}>;
|
|
7728
7771
|
|
|
7772
|
+
export declare type DiaryId = z.infer<typeof DiaryIdSchema>;
|
|
7773
|
+
|
|
7774
|
+
export declare const DiaryIdSchema: z.ZodString;
|
|
7775
|
+
|
|
7776
|
+
export declare type DiaryReferenceTypeEnum = z.infer<typeof DiaryReferenceTypeEnumSchema>;
|
|
7777
|
+
|
|
7778
|
+
export declare const DiaryReferenceTypeEnumSchema: z.ZodEnum<["quote", "policy", "transaction", "activity", "fnol"]>;
|
|
7779
|
+
|
|
7780
|
+
export declare type DiaryStateEnum = z.infer<typeof DiaryStateEnumSchema>;
|
|
7781
|
+
|
|
7782
|
+
export declare const DiaryStateEnumSchema: z.ZodEnum<["active", "discarded", "locked"]>;
|
|
7783
|
+
|
|
7729
7784
|
export declare type DisbursementCreateRequest = z.infer<typeof DisbursementCreateRequestSchema>;
|
|
7730
7785
|
|
|
7731
7786
|
export declare const DisbursementCreateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -7735,15 +7790,15 @@ export declare const DisbursementCreateRequestSchema: z.ZodObject<z.objectUtil.e
|
|
|
7735
7790
|
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7736
7791
|
sources: z.ZodArray<z.ZodObject<{
|
|
7737
7792
|
containerLocator: z.ZodString;
|
|
7738
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7793
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
7739
7794
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
7740
7795
|
}, "strip", z.ZodTypeAny, {
|
|
7741
7796
|
containerLocator: string;
|
|
7742
|
-
containerType: "account" | "invoice";
|
|
7797
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
7743
7798
|
amount?: number | undefined;
|
|
7744
7799
|
}, {
|
|
7745
7800
|
containerLocator: string;
|
|
7746
|
-
containerType: "account" | "invoice";
|
|
7801
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
7747
7802
|
amount?: number | undefined;
|
|
7748
7803
|
}>, "many">;
|
|
7749
7804
|
useDefaultFinancialInstrument: z.ZodBoolean;
|
|
@@ -7755,7 +7810,7 @@ export declare const DisbursementCreateRequestSchema: z.ZodObject<z.objectUtil.e
|
|
|
7755
7810
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
7756
7811
|
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7757
7812
|
containerLocator: z.ZodString;
|
|
7758
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7813
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
7759
7814
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
7760
7815
|
}, {
|
|
7761
7816
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -7822,15 +7877,15 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
7822
7877
|
accountLocator: z.ZodOptional<z.ZodString>;
|
|
7823
7878
|
sources: z.ZodArray<z.ZodObject<{
|
|
7824
7879
|
containerLocator: z.ZodString;
|
|
7825
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7880
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
7826
7881
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
7827
7882
|
}, "strip", z.ZodTypeAny, {
|
|
7828
7883
|
containerLocator: string;
|
|
7829
|
-
containerType: "account" | "invoice";
|
|
7884
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
7830
7885
|
amount?: number | undefined;
|
|
7831
7886
|
}, {
|
|
7832
7887
|
containerLocator: string;
|
|
7833
|
-
containerType: "account" | "invoice";
|
|
7888
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
7834
7889
|
amount?: number | undefined;
|
|
7835
7890
|
}>, "many">;
|
|
7836
7891
|
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -7873,7 +7928,7 @@ export declare const DisbursementListResponseSchema: z.ZodObject<{
|
|
|
7873
7928
|
createdBy: z.ZodString;
|
|
7874
7929
|
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
7875
7930
|
containerLocator: z.ZodString;
|
|
7876
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
7931
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
7877
7932
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
7878
7933
|
}, {
|
|
7879
7934
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -8374,15 +8429,15 @@ export declare const DisbursementResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8374
8429
|
accountLocator: z.ZodOptional<z.ZodString>;
|
|
8375
8430
|
sources: z.ZodArray<z.ZodObject<{
|
|
8376
8431
|
containerLocator: z.ZodString;
|
|
8377
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8432
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8378
8433
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8379
8434
|
}, "strip", z.ZodTypeAny, {
|
|
8380
8435
|
containerLocator: string;
|
|
8381
|
-
containerType: "account" | "invoice";
|
|
8436
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8382
8437
|
amount?: number | undefined;
|
|
8383
8438
|
}, {
|
|
8384
8439
|
containerLocator: string;
|
|
8385
|
-
containerType: "account" | "invoice";
|
|
8440
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8386
8441
|
amount?: number | undefined;
|
|
8387
8442
|
}>, "many">;
|
|
8388
8443
|
externalCashTransactionLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -8425,7 +8480,7 @@ export declare const DisbursementResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
|
8425
8480
|
createdBy: z.ZodString;
|
|
8426
8481
|
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
8427
8482
|
containerLocator: z.ZodString;
|
|
8428
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8483
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8429
8484
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8430
8485
|
}, {
|
|
8431
8486
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -8548,15 +8603,15 @@ export declare const DisbursementUpdateReplaceDataRequestSchema: z.ZodObject<z.o
|
|
|
8548
8603
|
data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8549
8604
|
sources: z.ZodArray<z.ZodObject<{
|
|
8550
8605
|
containerLocator: z.ZodString;
|
|
8551
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8606
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8552
8607
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8553
8608
|
}, "strip", z.ZodTypeAny, {
|
|
8554
8609
|
containerLocator: string;
|
|
8555
|
-
containerType: "account" | "invoice";
|
|
8610
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8556
8611
|
amount?: number | undefined;
|
|
8557
8612
|
}, {
|
|
8558
8613
|
containerLocator: string;
|
|
8559
|
-
containerType: "account" | "invoice";
|
|
8614
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8560
8615
|
amount?: number | undefined;
|
|
8561
8616
|
}>, "many">;
|
|
8562
8617
|
useDefaultFinancialInstrument: z.ZodBoolean;
|
|
@@ -8568,7 +8623,7 @@ export declare const DisbursementUpdateReplaceDataRequestSchema: z.ZodObject<z.o
|
|
|
8568
8623
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8569
8624
|
sources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
8570
8625
|
containerLocator: z.ZodString;
|
|
8571
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8626
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8572
8627
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8573
8628
|
}, {
|
|
8574
8629
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -8624,15 +8679,15 @@ export declare const DisbursementUpdateRequestSchema: z.ZodObject<z.objectUtil.e
|
|
|
8624
8679
|
removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8625
8680
|
addSources: z.ZodArray<z.ZodObject<{
|
|
8626
8681
|
containerLocator: z.ZodString;
|
|
8627
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8682
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8628
8683
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8629
8684
|
}, "strip", z.ZodTypeAny, {
|
|
8630
8685
|
containerLocator: string;
|
|
8631
|
-
containerType: "account" | "invoice";
|
|
8686
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8632
8687
|
amount?: number | undefined;
|
|
8633
8688
|
}, {
|
|
8634
8689
|
containerLocator: string;
|
|
8635
|
-
containerType: "account" | "invoice";
|
|
8690
|
+
containerType: "account" | "invoice" | "subpayment";
|
|
8636
8691
|
amount?: number | undefined;
|
|
8637
8692
|
}>, "many">;
|
|
8638
8693
|
removeSources: z.ZodArray<z.ZodString, "many">;
|
|
@@ -8646,7 +8701,7 @@ export declare const DisbursementUpdateRequestSchema: z.ZodObject<z.objectUtil.e
|
|
|
8646
8701
|
removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
8647
8702
|
addSources: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
8648
8703
|
containerLocator: z.ZodString;
|
|
8649
|
-
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">]>;
|
|
8704
|
+
containerType: z.ZodUnion<[z.ZodLiteral<"invoice">, z.ZodLiteral<"account">, z.ZodLiteral<"subpayment">]>;
|
|
8650
8705
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
8651
8706
|
}, {
|
|
8652
8707
|
containerType: z.ZodEnum<["invoice", "account"]>;
|
|
@@ -9999,6 +10054,7 @@ export declare const IdentityProviderResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
9999
10054
|
displayName: z.ZodString;
|
|
10000
10055
|
type: z.ZodString;
|
|
10001
10056
|
acsUrl: z.ZodString;
|
|
10057
|
+
callbackUrl: z.ZodString;
|
|
10002
10058
|
entityId: z.ZodString;
|
|
10003
10059
|
singleSignOnServiceUrl: z.ZodString;
|
|
10004
10060
|
}, {}>, "strip", z.ZodTypeAny, {
|
|
@@ -10007,6 +10063,7 @@ export declare const IdentityProviderResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
10007
10063
|
id: string;
|
|
10008
10064
|
singleSignOnServiceUrl: string;
|
|
10009
10065
|
acsUrl: string;
|
|
10066
|
+
callbackUrl: string;
|
|
10010
10067
|
entityId: string;
|
|
10011
10068
|
}, {
|
|
10012
10069
|
type: string;
|
|
@@ -10014,6 +10071,7 @@ export declare const IdentityProviderResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
10014
10071
|
id: string;
|
|
10015
10072
|
singleSignOnServiceUrl: string;
|
|
10016
10073
|
acsUrl: string;
|
|
10074
|
+
callbackUrl: string;
|
|
10017
10075
|
entityId: string;
|
|
10018
10076
|
}>;
|
|
10019
10077
|
|
|
@@ -10570,16 +10628,16 @@ export declare const ListTenantResponseSchema: z.ZodObject<{
|
|
|
10570
10628
|
type: "test" | "production" | "retired" | "deleted";
|
|
10571
10629
|
createdBy: string;
|
|
10572
10630
|
name: string;
|
|
10573
|
-
createdAt: string;
|
|
10574
10631
|
updatedAt: string;
|
|
10632
|
+
createdAt: string;
|
|
10575
10633
|
description?: string | undefined;
|
|
10576
10634
|
}, {
|
|
10577
10635
|
locator: string;
|
|
10578
10636
|
type: "test" | "production" | "retired" | "deleted";
|
|
10579
10637
|
createdBy: string;
|
|
10580
10638
|
name: string;
|
|
10581
|
-
createdAt: string;
|
|
10582
10639
|
updatedAt: string;
|
|
10640
|
+
createdAt: string;
|
|
10583
10641
|
description?: string | undefined;
|
|
10584
10642
|
}>, "many">;
|
|
10585
10643
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10588,8 +10646,8 @@ export declare const ListTenantResponseSchema: z.ZodObject<{
|
|
|
10588
10646
|
type: "test" | "production" | "retired" | "deleted";
|
|
10589
10647
|
createdBy: string;
|
|
10590
10648
|
name: string;
|
|
10591
|
-
createdAt: string;
|
|
10592
10649
|
updatedAt: string;
|
|
10650
|
+
createdAt: string;
|
|
10593
10651
|
description?: string | undefined;
|
|
10594
10652
|
}[];
|
|
10595
10653
|
listCompleted: boolean;
|
|
@@ -10599,8 +10657,8 @@ export declare const ListTenantResponseSchema: z.ZodObject<{
|
|
|
10599
10657
|
type: "test" | "production" | "retired" | "deleted";
|
|
10600
10658
|
createdBy: string;
|
|
10601
10659
|
name: string;
|
|
10602
|
-
createdAt: string;
|
|
10603
10660
|
updatedAt: string;
|
|
10661
|
+
createdAt: string;
|
|
10604
10662
|
description?: string | undefined;
|
|
10605
10663
|
}[];
|
|
10606
10664
|
listCompleted: boolean;
|
|
@@ -11213,6 +11271,17 @@ export declare const paramsChangeInstructionResponseSchema: z.ZodObject<{
|
|
|
11213
11271
|
inheritSettings?: boolean | undefined;
|
|
11214
11272
|
}>;
|
|
11215
11273
|
|
|
11274
|
+
export declare const ParamsPolicyIdSchema: z.ZodObject<{
|
|
11275
|
+
tenantLocator: z.ZodString;
|
|
11276
|
+
policyLocator: z.ZodString;
|
|
11277
|
+
}, "strip", z.ZodTypeAny, {
|
|
11278
|
+
tenantLocator: string;
|
|
11279
|
+
policyLocator: string;
|
|
11280
|
+
}, {
|
|
11281
|
+
tenantLocator: string;
|
|
11282
|
+
policyLocator: string;
|
|
11283
|
+
}>;
|
|
11284
|
+
|
|
11216
11285
|
export declare type PaymentConfig = z.infer<typeof paymentConfigSchema>;
|
|
11217
11286
|
|
|
11218
11287
|
export declare type PaymentConfigRecord = z.infer<typeof paymentConfigRecordSchema>;
|
|
@@ -19762,41 +19831,6 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
19762
19831
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
19763
19832
|
expirationTime: z.ZodOptional<z.ZodString>;
|
|
19764
19833
|
element: z.ZodType<Element_3, z.ZodTypeDef, Element_3>;
|
|
19765
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
19766
|
-
durationBasis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>>;
|
|
19767
|
-
acceptedTime: z.ZodOptional<z.ZodString>;
|
|
19768
|
-
issuedTime: z.ZodOptional<z.ZodString>;
|
|
19769
|
-
policyLocator: z.ZodOptional<z.ZodString>;
|
|
19770
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
19771
|
-
validationItems: z.ZodArray<z.ZodObject<{
|
|
19772
|
-
elementType: z.ZodString;
|
|
19773
|
-
locator: z.ZodOptional<z.ZodString>;
|
|
19774
|
-
errors: z.ZodArray<z.ZodString, "many">;
|
|
19775
|
-
}, "strip", z.ZodTypeAny, {
|
|
19776
|
-
elementType: string;
|
|
19777
|
-
errors: string[];
|
|
19778
|
-
locator?: string | undefined;
|
|
19779
|
-
}, {
|
|
19780
|
-
elementType: string;
|
|
19781
|
-
errors: string[];
|
|
19782
|
-
locator?: string | undefined;
|
|
19783
|
-
}>, "many">;
|
|
19784
|
-
success: z.ZodBoolean;
|
|
19785
|
-
}, "strip", z.ZodTypeAny, {
|
|
19786
|
-
validationItems: {
|
|
19787
|
-
elementType: string;
|
|
19788
|
-
errors: string[];
|
|
19789
|
-
locator?: string | undefined;
|
|
19790
|
-
}[];
|
|
19791
|
-
success: boolean;
|
|
19792
|
-
}, {
|
|
19793
|
-
validationItems: {
|
|
19794
|
-
elementType: string;
|
|
19795
|
-
errors: string[];
|
|
19796
|
-
locator?: string | undefined;
|
|
19797
|
-
}[];
|
|
19798
|
-
success: boolean;
|
|
19799
|
-
}>>;
|
|
19800
19834
|
preferences: z.ZodOptional<z.ZodObject<{
|
|
19801
19835
|
installmentPreferences: z.ZodOptional<z.ZodObject<{
|
|
19802
19836
|
cadence: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"fullPay">, z.ZodLiteral<"weekly">, z.ZodLiteral<"everyOtherWeek">, z.ZodLiteral<"monthly">, z.ZodLiteral<"quarterly">, z.ZodLiteral<"semiannually">, z.ZodLiteral<"annually">, z.ZodLiteral<"thirtyDays">, z.ZodLiteral<"everyNDays">]>>;
|
|
@@ -19887,14 +19921,49 @@ export declare const QuoteListResponseSchema: z.ZodObject<{
|
|
|
19887
19921
|
maxInstallmentsPerTerm?: number | undefined;
|
|
19888
19922
|
} | undefined;
|
|
19889
19923
|
}>>;
|
|
19924
|
+
policyLocator: z.ZodOptional<z.ZodString>;
|
|
19890
19925
|
delinquencyPlanName: z.ZodOptional<z.ZodString>;
|
|
19926
|
+
durationBasis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>>;
|
|
19891
19927
|
billingTrigger: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>>;
|
|
19892
19928
|
groupLocator: z.ZodString;
|
|
19893
19929
|
autoRenewalPlanName: z.ZodOptional<z.ZodString>;
|
|
19894
19930
|
billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
|
|
19895
|
-
quickQuoteLocator: z.ZodOptional<z.ZodString>;
|
|
19896
19931
|
region: z.ZodOptional<z.ZodString>;
|
|
19897
19932
|
quoteNumber: z.ZodOptional<z.ZodString>;
|
|
19933
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
19934
|
+
acceptedTime: z.ZodOptional<z.ZodString>;
|
|
19935
|
+
issuedTime: z.ZodOptional<z.ZodString>;
|
|
19936
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
19937
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
19938
|
+
elementType: z.ZodString;
|
|
19939
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
19940
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
19941
|
+
}, "strip", z.ZodTypeAny, {
|
|
19942
|
+
elementType: string;
|
|
19943
|
+
errors: string[];
|
|
19944
|
+
locator?: string | undefined;
|
|
19945
|
+
}, {
|
|
19946
|
+
elementType: string;
|
|
19947
|
+
errors: string[];
|
|
19948
|
+
locator?: string | undefined;
|
|
19949
|
+
}>, "many">;
|
|
19950
|
+
success: z.ZodBoolean;
|
|
19951
|
+
}, "strip", z.ZodTypeAny, {
|
|
19952
|
+
validationItems: {
|
|
19953
|
+
elementType: string;
|
|
19954
|
+
errors: string[];
|
|
19955
|
+
locator?: string | undefined;
|
|
19956
|
+
}[];
|
|
19957
|
+
success: boolean;
|
|
19958
|
+
}, {
|
|
19959
|
+
validationItems: {
|
|
19960
|
+
elementType: string;
|
|
19961
|
+
errors: string[];
|
|
19962
|
+
locator?: string | undefined;
|
|
19963
|
+
}[];
|
|
19964
|
+
success: boolean;
|
|
19965
|
+
}>>;
|
|
19966
|
+
quickQuoteLocator: z.ZodOptional<z.ZodString>;
|
|
19898
19967
|
policyNumber: z.ZodString;
|
|
19899
19968
|
static: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19900
19969
|
}, {
|
|
@@ -20404,9 +20473,13 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20404
20473
|
rateDifference: z.ZodOptional<z.ZodNumber>;
|
|
20405
20474
|
elementStaticLocator: z.ZodString;
|
|
20406
20475
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
20476
|
+
handling: z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"flat">]>;
|
|
20477
|
+
invoicing: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"next">, z.ZodLiteral<"immediate">]>;
|
|
20407
20478
|
}, "strip", z.ZodTypeAny, {
|
|
20408
20479
|
locator: string;
|
|
20409
20480
|
elementLocator: string;
|
|
20481
|
+
handling: "flat" | "normal";
|
|
20482
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20410
20483
|
chargeType: string;
|
|
20411
20484
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20412
20485
|
amount: number;
|
|
@@ -20419,6 +20492,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20419
20492
|
}, {
|
|
20420
20493
|
locator: string;
|
|
20421
20494
|
elementLocator: string;
|
|
20495
|
+
handling: "flat" | "normal";
|
|
20496
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20422
20497
|
chargeType: string;
|
|
20423
20498
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20424
20499
|
amount: number;
|
|
@@ -20451,6 +20526,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20451
20526
|
rateDifference: z.ZodOptional<z.ZodNumber>;
|
|
20452
20527
|
elementStaticLocator: z.ZodString;
|
|
20453
20528
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
20529
|
+
handling: z.ZodUnion<[z.ZodLiteral<"normal">, z.ZodLiteral<"flat">]>;
|
|
20530
|
+
invoicing: z.ZodUnion<[z.ZodLiteral<"scheduled">, z.ZodLiteral<"next">, z.ZodLiteral<"immediate">]>;
|
|
20454
20531
|
}, {
|
|
20455
20532
|
locator: z.ZodString;
|
|
20456
20533
|
reversalOfLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -20460,6 +20537,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20460
20537
|
}>, "strip", z.ZodTypeAny, {
|
|
20461
20538
|
locator: string;
|
|
20462
20539
|
elementLocator: string;
|
|
20540
|
+
handling: "flat" | "normal";
|
|
20541
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20463
20542
|
chargeType: string;
|
|
20464
20543
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20465
20544
|
amount: number;
|
|
@@ -20472,6 +20551,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20472
20551
|
}, {
|
|
20473
20552
|
locator: string;
|
|
20474
20553
|
elementLocator: string;
|
|
20554
|
+
handling: "flat" | "normal";
|
|
20555
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20475
20556
|
chargeType: string;
|
|
20476
20557
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20477
20558
|
amount: number;
|
|
@@ -20486,6 +20567,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20486
20567
|
items: {
|
|
20487
20568
|
locator: string;
|
|
20488
20569
|
elementLocator: string;
|
|
20570
|
+
handling: "flat" | "normal";
|
|
20571
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20489
20572
|
chargeType: string;
|
|
20490
20573
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20491
20574
|
amount: number;
|
|
@@ -20511,6 +20594,8 @@ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
20511
20594
|
items: {
|
|
20512
20595
|
locator: string;
|
|
20513
20596
|
elementLocator: string;
|
|
20597
|
+
handling: "flat" | "normal";
|
|
20598
|
+
invoicing: "scheduled" | "next" | "immediate";
|
|
20514
20599
|
chargeType: string;
|
|
20515
20600
|
chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "cededPremium" | "flatCededPremium" | "nonFinancial" | "surcharge";
|
|
20516
20601
|
amount: number;
|
|
@@ -20855,41 +20940,6 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20855
20940
|
underwritingStatus: z.ZodOptional<z.ZodString>;
|
|
20856
20941
|
expirationTime: z.ZodOptional<z.ZodString>;
|
|
20857
20942
|
element: z.ZodType<Element_3, z.ZodTypeDef, Element_3>;
|
|
20858
|
-
duration: z.ZodOptional<z.ZodNumber>;
|
|
20859
|
-
durationBasis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>>;
|
|
20860
|
-
acceptedTime: z.ZodOptional<z.ZodString>;
|
|
20861
|
-
issuedTime: z.ZodOptional<z.ZodString>;
|
|
20862
|
-
policyLocator: z.ZodOptional<z.ZodString>;
|
|
20863
|
-
validationResult: z.ZodOptional<z.ZodObject<{
|
|
20864
|
-
validationItems: z.ZodArray<z.ZodObject<{
|
|
20865
|
-
elementType: z.ZodString;
|
|
20866
|
-
locator: z.ZodOptional<z.ZodString>;
|
|
20867
|
-
errors: z.ZodArray<z.ZodString, "many">;
|
|
20868
|
-
}, "strip", z.ZodTypeAny, {
|
|
20869
|
-
elementType: string;
|
|
20870
|
-
errors: string[];
|
|
20871
|
-
locator?: string | undefined;
|
|
20872
|
-
}, {
|
|
20873
|
-
elementType: string;
|
|
20874
|
-
errors: string[];
|
|
20875
|
-
locator?: string | undefined;
|
|
20876
|
-
}>, "many">;
|
|
20877
|
-
success: z.ZodBoolean;
|
|
20878
|
-
}, "strip", z.ZodTypeAny, {
|
|
20879
|
-
validationItems: {
|
|
20880
|
-
elementType: string;
|
|
20881
|
-
errors: string[];
|
|
20882
|
-
locator?: string | undefined;
|
|
20883
|
-
}[];
|
|
20884
|
-
success: boolean;
|
|
20885
|
-
}, {
|
|
20886
|
-
validationItems: {
|
|
20887
|
-
elementType: string;
|
|
20888
|
-
errors: string[];
|
|
20889
|
-
locator?: string | undefined;
|
|
20890
|
-
}[];
|
|
20891
|
-
success: boolean;
|
|
20892
|
-
}>>;
|
|
20893
20943
|
preferences: z.ZodOptional<z.ZodObject<{
|
|
20894
20944
|
installmentPreferences: z.ZodOptional<z.ZodObject<{
|
|
20895
20945
|
cadence: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"fullPay">, z.ZodLiteral<"weekly">, z.ZodLiteral<"everyOtherWeek">, z.ZodLiteral<"monthly">, z.ZodLiteral<"quarterly">, z.ZodLiteral<"semiannually">, z.ZodLiteral<"annually">, z.ZodLiteral<"thirtyDays">, z.ZodLiteral<"everyNDays">]>>;
|
|
@@ -20980,14 +21030,49 @@ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20980
21030
|
maxInstallmentsPerTerm?: number | undefined;
|
|
20981
21031
|
} | undefined;
|
|
20982
21032
|
}>>;
|
|
21033
|
+
policyLocator: z.ZodOptional<z.ZodString>;
|
|
20983
21034
|
delinquencyPlanName: z.ZodOptional<z.ZodString>;
|
|
21035
|
+
durationBasis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>>;
|
|
20984
21036
|
billingTrigger: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>>;
|
|
20985
21037
|
groupLocator: z.ZodString;
|
|
20986
21038
|
autoRenewalPlanName: z.ZodOptional<z.ZodString>;
|
|
20987
21039
|
billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
|
|
20988
|
-
quickQuoteLocator: z.ZodOptional<z.ZodString>;
|
|
20989
21040
|
region: z.ZodOptional<z.ZodString>;
|
|
20990
21041
|
quoteNumber: z.ZodOptional<z.ZodString>;
|
|
21042
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
21043
|
+
acceptedTime: z.ZodOptional<z.ZodString>;
|
|
21044
|
+
issuedTime: z.ZodOptional<z.ZodString>;
|
|
21045
|
+
validationResult: z.ZodOptional<z.ZodObject<{
|
|
21046
|
+
validationItems: z.ZodArray<z.ZodObject<{
|
|
21047
|
+
elementType: z.ZodString;
|
|
21048
|
+
locator: z.ZodOptional<z.ZodString>;
|
|
21049
|
+
errors: z.ZodArray<z.ZodString, "many">;
|
|
21050
|
+
}, "strip", z.ZodTypeAny, {
|
|
21051
|
+
elementType: string;
|
|
21052
|
+
errors: string[];
|
|
21053
|
+
locator?: string | undefined;
|
|
21054
|
+
}, {
|
|
21055
|
+
elementType: string;
|
|
21056
|
+
errors: string[];
|
|
21057
|
+
locator?: string | undefined;
|
|
21058
|
+
}>, "many">;
|
|
21059
|
+
success: z.ZodBoolean;
|
|
21060
|
+
}, "strip", z.ZodTypeAny, {
|
|
21061
|
+
validationItems: {
|
|
21062
|
+
elementType: string;
|
|
21063
|
+
errors: string[];
|
|
21064
|
+
locator?: string | undefined;
|
|
21065
|
+
}[];
|
|
21066
|
+
success: boolean;
|
|
21067
|
+
}, {
|
|
21068
|
+
validationItems: {
|
|
21069
|
+
elementType: string;
|
|
21070
|
+
errors: string[];
|
|
21071
|
+
locator?: string | undefined;
|
|
21072
|
+
}[];
|
|
21073
|
+
success: boolean;
|
|
21074
|
+
}>>;
|
|
21075
|
+
quickQuoteLocator: z.ZodOptional<z.ZodString>;
|
|
20991
21076
|
policyNumber: z.ZodString;
|
|
20992
21077
|
static: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
20993
21078
|
}, {
|
|
@@ -21645,6 +21730,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21645
21730
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21646
21731
|
referenceLocator: z.ZodString;
|
|
21647
21732
|
note: z.ZodString;
|
|
21733
|
+
tag: z.ZodString;
|
|
21648
21734
|
elementLocator: z.ZodString;
|
|
21649
21735
|
createdBy: z.ZodString;
|
|
21650
21736
|
createdTime: z.ZodString;
|
|
@@ -21659,6 +21745,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21659
21745
|
createdTime: string;
|
|
21660
21746
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21661
21747
|
note: string;
|
|
21748
|
+
tag: string;
|
|
21662
21749
|
referenceType: "quote" | "transaction";
|
|
21663
21750
|
referenceLocator: string;
|
|
21664
21751
|
}, {
|
|
@@ -21670,6 +21757,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21670
21757
|
createdTime: string;
|
|
21671
21758
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21672
21759
|
note: string;
|
|
21760
|
+
tag: string;
|
|
21673
21761
|
referenceType: "quote" | "transaction";
|
|
21674
21762
|
referenceLocator: string;
|
|
21675
21763
|
}>, "many">;
|
|
@@ -21679,6 +21767,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21679
21767
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21680
21768
|
referenceLocator: z.ZodString;
|
|
21681
21769
|
note: z.ZodString;
|
|
21770
|
+
tag: z.ZodString;
|
|
21682
21771
|
elementLocator: z.ZodString;
|
|
21683
21772
|
createdBy: z.ZodString;
|
|
21684
21773
|
createdTime: z.ZodString;
|
|
@@ -21693,6 +21782,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21693
21782
|
createdTime: string;
|
|
21694
21783
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21695
21784
|
note: string;
|
|
21785
|
+
tag: string;
|
|
21696
21786
|
referenceType: "quote" | "transaction";
|
|
21697
21787
|
referenceLocator: string;
|
|
21698
21788
|
}, {
|
|
@@ -21704,6 +21794,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21704
21794
|
createdTime: string;
|
|
21705
21795
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21706
21796
|
note: string;
|
|
21797
|
+
tag: string;
|
|
21707
21798
|
referenceType: "quote" | "transaction";
|
|
21708
21799
|
referenceLocator: string;
|
|
21709
21800
|
}>, "many">;
|
|
@@ -21715,6 +21806,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21715
21806
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21716
21807
|
referenceLocator: z.ZodString;
|
|
21717
21808
|
note: z.ZodString;
|
|
21809
|
+
tag: z.ZodString;
|
|
21718
21810
|
elementLocator: z.ZodString;
|
|
21719
21811
|
createdBy: z.ZodString;
|
|
21720
21812
|
createdTime: z.ZodString;
|
|
@@ -21738,6 +21830,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21738
21830
|
createdTime: string;
|
|
21739
21831
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21740
21832
|
note: string;
|
|
21833
|
+
tag: string;
|
|
21741
21834
|
referenceType: "quote" | "transaction";
|
|
21742
21835
|
referenceLocator: string;
|
|
21743
21836
|
elementLocator?: string | undefined;
|
|
@@ -21749,6 +21842,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21749
21842
|
createdTime: string;
|
|
21750
21843
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21751
21844
|
note: string;
|
|
21845
|
+
tag: string;
|
|
21752
21846
|
referenceType: "quote" | "transaction";
|
|
21753
21847
|
referenceLocator: string;
|
|
21754
21848
|
elementLocator?: string | undefined;
|
|
@@ -21759,6 +21853,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21759
21853
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21760
21854
|
referenceLocator: z.ZodString;
|
|
21761
21855
|
note: z.ZodString;
|
|
21856
|
+
tag: z.ZodString;
|
|
21762
21857
|
elementLocator: z.ZodString;
|
|
21763
21858
|
createdBy: z.ZodString;
|
|
21764
21859
|
createdTime: z.ZodString;
|
|
@@ -21782,6 +21877,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21782
21877
|
createdTime: string;
|
|
21783
21878
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21784
21879
|
note: string;
|
|
21880
|
+
tag: string;
|
|
21785
21881
|
referenceType: "quote" | "transaction";
|
|
21786
21882
|
referenceLocator: string;
|
|
21787
21883
|
elementLocator?: string | undefined;
|
|
@@ -21793,6 +21889,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21793
21889
|
createdTime: string;
|
|
21794
21890
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21795
21891
|
note: string;
|
|
21892
|
+
tag: string;
|
|
21796
21893
|
referenceType: "quote" | "transaction";
|
|
21797
21894
|
referenceLocator: string;
|
|
21798
21895
|
elementLocator?: string | undefined;
|
|
@@ -21807,6 +21904,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21807
21904
|
createdTime: string;
|
|
21808
21905
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21809
21906
|
note: string;
|
|
21907
|
+
tag: string;
|
|
21810
21908
|
referenceType: "quote" | "transaction";
|
|
21811
21909
|
referenceLocator: string;
|
|
21812
21910
|
elementLocator?: string | undefined;
|
|
@@ -21819,6 +21917,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21819
21917
|
createdTime: string;
|
|
21820
21918
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21821
21919
|
note: string;
|
|
21920
|
+
tag: string;
|
|
21822
21921
|
referenceType: "quote" | "transaction";
|
|
21823
21922
|
referenceLocator: string;
|
|
21824
21923
|
elementLocator?: string | undefined;
|
|
@@ -21833,6 +21932,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21833
21932
|
createdTime: string;
|
|
21834
21933
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21835
21934
|
note: string;
|
|
21935
|
+
tag: string;
|
|
21836
21936
|
referenceType: "quote" | "transaction";
|
|
21837
21937
|
referenceLocator: string;
|
|
21838
21938
|
elementLocator?: string | undefined;
|
|
@@ -21845,6 +21945,7 @@ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectU
|
|
|
21845
21945
|
createdTime: string;
|
|
21846
21946
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21847
21947
|
note: string;
|
|
21948
|
+
tag: string;
|
|
21848
21949
|
referenceType: "quote" | "transaction";
|
|
21849
21950
|
referenceLocator: string;
|
|
21850
21951
|
elementLocator?: string | undefined;
|
|
@@ -21870,6 +21971,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21870
21971
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21871
21972
|
referenceLocator: z.ZodString;
|
|
21872
21973
|
note: z.ZodString;
|
|
21974
|
+
tag: z.ZodString;
|
|
21873
21975
|
elementLocator: z.ZodString;
|
|
21874
21976
|
createdBy: z.ZodString;
|
|
21875
21977
|
createdTime: z.ZodString;
|
|
@@ -21884,6 +21986,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21884
21986
|
createdTime: string;
|
|
21885
21987
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21886
21988
|
note: string;
|
|
21989
|
+
tag: string;
|
|
21887
21990
|
referenceType: "quote" | "transaction";
|
|
21888
21991
|
referenceLocator: string;
|
|
21889
21992
|
}, {
|
|
@@ -21895,6 +21998,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21895
21998
|
createdTime: string;
|
|
21896
21999
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21897
22000
|
note: string;
|
|
22001
|
+
tag: string;
|
|
21898
22002
|
referenceType: "quote" | "transaction";
|
|
21899
22003
|
referenceLocator: string;
|
|
21900
22004
|
}>, "many">;
|
|
@@ -21913,6 +22017,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21913
22017
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
21914
22018
|
referenceLocator: z.ZodString;
|
|
21915
22019
|
note: z.ZodString;
|
|
22020
|
+
tag: z.ZodString;
|
|
21916
22021
|
elementLocator: z.ZodString;
|
|
21917
22022
|
createdBy: z.ZodString;
|
|
21918
22023
|
createdTime: z.ZodString;
|
|
@@ -21936,6 +22041,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21936
22041
|
createdTime: string;
|
|
21937
22042
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21938
22043
|
note: string;
|
|
22044
|
+
tag: string;
|
|
21939
22045
|
referenceType: "quote" | "transaction";
|
|
21940
22046
|
referenceLocator: string;
|
|
21941
22047
|
elementLocator?: string | undefined;
|
|
@@ -21947,6 +22053,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21947
22053
|
createdTime: string;
|
|
21948
22054
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21949
22055
|
note: string;
|
|
22056
|
+
tag: string;
|
|
21950
22057
|
referenceType: "quote" | "transaction";
|
|
21951
22058
|
referenceLocator: string;
|
|
21952
22059
|
elementLocator?: string | undefined;
|
|
@@ -21971,6 +22078,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21971
22078
|
createdTime: string;
|
|
21972
22079
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21973
22080
|
note: string;
|
|
22081
|
+
tag: string;
|
|
21974
22082
|
referenceType: "quote" | "transaction";
|
|
21975
22083
|
referenceLocator: string;
|
|
21976
22084
|
elementLocator?: string | undefined;
|
|
@@ -21995,6 +22103,7 @@ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.e
|
|
|
21995
22103
|
createdTime: string;
|
|
21996
22104
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
21997
22105
|
note: string;
|
|
22106
|
+
tag: string;
|
|
21998
22107
|
referenceType: "quote" | "transaction";
|
|
21999
22108
|
referenceLocator: string;
|
|
22000
22109
|
elementLocator?: string | undefined;
|
|
@@ -22009,6 +22118,7 @@ export declare const QuoteUpdateRequestSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
22009
22118
|
setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
22010
22119
|
removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
22011
22120
|
currency: z.ZodString;
|
|
22121
|
+
timezone: z.ZodString;
|
|
22012
22122
|
startTime: z.ZodString;
|
|
22013
22123
|
endTime: z.ZodString;
|
|
22014
22124
|
expirationTime: z.ZodString;
|
|
@@ -22329,6 +22439,7 @@ export declare const QuoteUpdateRequestSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
22329
22439
|
endTime: string;
|
|
22330
22440
|
currency: string;
|
|
22331
22441
|
expirationTime: string;
|
|
22442
|
+
timezone: string;
|
|
22332
22443
|
preferences: {
|
|
22333
22444
|
billingPreferences?: {
|
|
22334
22445
|
billingLevel: "account" | "inherit" | "policy";
|
|
@@ -22369,6 +22480,7 @@ export declare const QuoteUpdateRequestSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
22369
22480
|
endTime: string;
|
|
22370
22481
|
currency: string;
|
|
22371
22482
|
expirationTime: string;
|
|
22483
|
+
timezone: string;
|
|
22372
22484
|
preferences: {
|
|
22373
22485
|
billingPreferences?: {
|
|
22374
22486
|
billingLevel: "account" | "inherit" | "policy";
|
|
@@ -22658,7 +22770,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
|
|
|
22658
22770
|
searchToken: z.ZodOptional<z.ZodString>;
|
|
22659
22771
|
results: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
22660
22772
|
score: z.ZodNumber;
|
|
22661
|
-
searchEntityType: z.ZodUnion<[z.ZodLiteral<"unspecified">, z.ZodLiteral<"account">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"fnol">]>;
|
|
22773
|
+
searchEntityType: z.ZodUnion<[z.ZodLiteral<"unspecified">, z.ZodLiteral<"account">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"fnol">, z.ZodLiteral<"contact">]>;
|
|
22662
22774
|
searchEntityLocator: z.ZodString;
|
|
22663
22775
|
productName: z.ZodString;
|
|
22664
22776
|
accountLocator: z.ZodString;
|
|
@@ -22719,7 +22831,7 @@ export declare const SearchResponseSchema: z.ZodObject<{
|
|
|
22719
22831
|
|
|
22720
22832
|
export declare const SearchResultSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
22721
22833
|
score: z.ZodNumber;
|
|
22722
|
-
searchEntityType: z.ZodUnion<[z.ZodLiteral<"unspecified">, z.ZodLiteral<"account">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"fnol">]>;
|
|
22834
|
+
searchEntityType: z.ZodUnion<[z.ZodLiteral<"unspecified">, z.ZodLiteral<"account">, z.ZodLiteral<"quote">, z.ZodLiteral<"policy">, z.ZodLiteral<"fnol">, z.ZodLiteral<"contact">]>;
|
|
22723
22835
|
searchEntityLocator: z.ZodString;
|
|
22724
22836
|
productName: z.ZodString;
|
|
22725
22837
|
accountLocator: z.ZodString;
|
|
@@ -23363,16 +23475,16 @@ export declare const TenantResponseSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
23363
23475
|
type: "test" | "production" | "retired" | "deleted";
|
|
23364
23476
|
createdBy: string;
|
|
23365
23477
|
name: string;
|
|
23366
|
-
createdAt: string;
|
|
23367
23478
|
updatedAt: string;
|
|
23479
|
+
createdAt: string;
|
|
23368
23480
|
description?: string | undefined;
|
|
23369
23481
|
}, {
|
|
23370
23482
|
locator: string;
|
|
23371
23483
|
type: "test" | "production" | "retired" | "deleted";
|
|
23372
23484
|
createdBy: string;
|
|
23373
23485
|
name: string;
|
|
23374
|
-
createdAt: string;
|
|
23375
23486
|
updatedAt: string;
|
|
23487
|
+
createdAt: string;
|
|
23376
23488
|
description?: string | undefined;
|
|
23377
23489
|
}>;
|
|
23378
23490
|
|
|
@@ -24809,6 +24921,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24809
24921
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
24810
24922
|
referenceLocator: z.ZodString;
|
|
24811
24923
|
note: z.ZodString;
|
|
24924
|
+
tag: z.ZodString;
|
|
24812
24925
|
elementLocator: z.ZodString;
|
|
24813
24926
|
createdBy: z.ZodString;
|
|
24814
24927
|
createdTime: z.ZodString;
|
|
@@ -24823,6 +24936,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24823
24936
|
createdTime: string;
|
|
24824
24937
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24825
24938
|
note: string;
|
|
24939
|
+
tag: string;
|
|
24826
24940
|
referenceType: "quote" | "transaction";
|
|
24827
24941
|
referenceLocator: string;
|
|
24828
24942
|
}, {
|
|
@@ -24834,6 +24948,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24834
24948
|
createdTime: string;
|
|
24835
24949
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24836
24950
|
note: string;
|
|
24951
|
+
tag: string;
|
|
24837
24952
|
referenceType: "quote" | "transaction";
|
|
24838
24953
|
referenceLocator: string;
|
|
24839
24954
|
}>, "many">;
|
|
@@ -24843,6 +24958,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24843
24958
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
24844
24959
|
referenceLocator: z.ZodString;
|
|
24845
24960
|
note: z.ZodString;
|
|
24961
|
+
tag: z.ZodString;
|
|
24846
24962
|
elementLocator: z.ZodString;
|
|
24847
24963
|
createdBy: z.ZodString;
|
|
24848
24964
|
createdTime: z.ZodString;
|
|
@@ -24857,6 +24973,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24857
24973
|
createdTime: string;
|
|
24858
24974
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24859
24975
|
note: string;
|
|
24976
|
+
tag: string;
|
|
24860
24977
|
referenceType: "quote" | "transaction";
|
|
24861
24978
|
referenceLocator: string;
|
|
24862
24979
|
}, {
|
|
@@ -24868,6 +24985,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24868
24985
|
createdTime: string;
|
|
24869
24986
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24870
24987
|
note: string;
|
|
24988
|
+
tag: string;
|
|
24871
24989
|
referenceType: "quote" | "transaction";
|
|
24872
24990
|
referenceLocator: string;
|
|
24873
24991
|
}>, "many">;
|
|
@@ -24879,6 +24997,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24879
24997
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
24880
24998
|
referenceLocator: z.ZodString;
|
|
24881
24999
|
note: z.ZodString;
|
|
25000
|
+
tag: z.ZodString;
|
|
24882
25001
|
elementLocator: z.ZodString;
|
|
24883
25002
|
createdBy: z.ZodString;
|
|
24884
25003
|
createdTime: z.ZodString;
|
|
@@ -24902,6 +25021,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24902
25021
|
createdTime: string;
|
|
24903
25022
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24904
25023
|
note: string;
|
|
25024
|
+
tag: string;
|
|
24905
25025
|
referenceType: "quote" | "transaction";
|
|
24906
25026
|
referenceLocator: string;
|
|
24907
25027
|
elementLocator?: string | undefined;
|
|
@@ -24913,6 +25033,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24913
25033
|
createdTime: string;
|
|
24914
25034
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24915
25035
|
note: string;
|
|
25036
|
+
tag: string;
|
|
24916
25037
|
referenceType: "quote" | "transaction";
|
|
24917
25038
|
referenceLocator: string;
|
|
24918
25039
|
elementLocator?: string | undefined;
|
|
@@ -24923,6 +25044,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24923
25044
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
24924
25045
|
referenceLocator: z.ZodString;
|
|
24925
25046
|
note: z.ZodString;
|
|
25047
|
+
tag: z.ZodString;
|
|
24926
25048
|
elementLocator: z.ZodString;
|
|
24927
25049
|
createdBy: z.ZodString;
|
|
24928
25050
|
createdTime: z.ZodString;
|
|
@@ -24946,6 +25068,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24946
25068
|
createdTime: string;
|
|
24947
25069
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24948
25070
|
note: string;
|
|
25071
|
+
tag: string;
|
|
24949
25072
|
referenceType: "quote" | "transaction";
|
|
24950
25073
|
referenceLocator: string;
|
|
24951
25074
|
elementLocator?: string | undefined;
|
|
@@ -24957,6 +25080,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24957
25080
|
createdTime: string;
|
|
24958
25081
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24959
25082
|
note: string;
|
|
25083
|
+
tag: string;
|
|
24960
25084
|
referenceType: "quote" | "transaction";
|
|
24961
25085
|
referenceLocator: string;
|
|
24962
25086
|
elementLocator?: string | undefined;
|
|
@@ -24970,6 +25094,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24970
25094
|
createdTime: string;
|
|
24971
25095
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24972
25096
|
note: string;
|
|
25097
|
+
tag: string;
|
|
24973
25098
|
referenceType: "quote" | "transaction";
|
|
24974
25099
|
referenceLocator: string;
|
|
24975
25100
|
elementLocator?: string | undefined;
|
|
@@ -24982,6 +25107,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24982
25107
|
createdTime: string;
|
|
24983
25108
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24984
25109
|
note: string;
|
|
25110
|
+
tag: string;
|
|
24985
25111
|
referenceType: "quote" | "transaction";
|
|
24986
25112
|
referenceLocator: string;
|
|
24987
25113
|
elementLocator?: string | undefined;
|
|
@@ -24996,6 +25122,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
24996
25122
|
createdTime: string;
|
|
24997
25123
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
24998
25124
|
note: string;
|
|
25125
|
+
tag: string;
|
|
24999
25126
|
referenceType: "quote" | "transaction";
|
|
25000
25127
|
referenceLocator: string;
|
|
25001
25128
|
elementLocator?: string | undefined;
|
|
@@ -25008,6 +25135,7 @@ export declare const TransactionUnderwritingFlagsResponseSchema: z.ZodObject<z.o
|
|
|
25008
25135
|
createdTime: string;
|
|
25009
25136
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25010
25137
|
note: string;
|
|
25138
|
+
tag: string;
|
|
25011
25139
|
referenceType: "quote" | "transaction";
|
|
25012
25140
|
referenceLocator: string;
|
|
25013
25141
|
elementLocator?: string | undefined;
|
|
@@ -25208,6 +25336,7 @@ export declare type UnderwritingFlagCreateRequest = z.infer<typeof underwritingF
|
|
|
25208
25336
|
export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
25209
25337
|
level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
|
|
25210
25338
|
note: z.ZodString;
|
|
25339
|
+
tag: z.ZodString;
|
|
25211
25340
|
elementLocator: z.ZodString;
|
|
25212
25341
|
}, {
|
|
25213
25342
|
elementLocator: z.ZodString;
|
|
@@ -25216,10 +25345,12 @@ export declare const UnderwritingFlagCreateRequestSchema: z.ZodObject<z.objectUt
|
|
|
25216
25345
|
elementLocator: string;
|
|
25217
25346
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25218
25347
|
note: string;
|
|
25348
|
+
tag: string;
|
|
25219
25349
|
}, {
|
|
25220
25350
|
elementLocator: string;
|
|
25221
25351
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25222
25352
|
note: string;
|
|
25353
|
+
tag: string;
|
|
25223
25354
|
}>;
|
|
25224
25355
|
|
|
25225
25356
|
export declare const underwritingFlagCreateRequestSchema: z.ZodObject<{
|
|
@@ -25248,6 +25379,7 @@ export declare const UnderwritingFlagResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
25248
25379
|
referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
|
|
25249
25380
|
referenceLocator: z.ZodString;
|
|
25250
25381
|
note: z.ZodString;
|
|
25382
|
+
tag: z.ZodString;
|
|
25251
25383
|
elementLocator: z.ZodString;
|
|
25252
25384
|
createdBy: z.ZodString;
|
|
25253
25385
|
createdTime: z.ZodString;
|
|
@@ -25271,6 +25403,7 @@ export declare const UnderwritingFlagResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
25271
25403
|
createdTime: string;
|
|
25272
25404
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25273
25405
|
note: string;
|
|
25406
|
+
tag: string;
|
|
25274
25407
|
referenceType: "quote" | "transaction";
|
|
25275
25408
|
referenceLocator: string;
|
|
25276
25409
|
elementLocator?: string | undefined;
|
|
@@ -25282,6 +25415,7 @@ export declare const UnderwritingFlagResponseSchema: z.ZodObject<z.objectUtil.ex
|
|
|
25282
25415
|
createdTime: string;
|
|
25283
25416
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25284
25417
|
note: string;
|
|
25418
|
+
tag: string;
|
|
25285
25419
|
referenceType: "quote" | "transaction";
|
|
25286
25420
|
referenceLocator: string;
|
|
25287
25421
|
elementLocator?: string | undefined;
|
|
@@ -25326,21 +25460,25 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<z.objectU
|
|
|
25326
25460
|
addFlags: z.ZodArray<z.ZodObject<{
|
|
25327
25461
|
level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
|
|
25328
25462
|
note: z.ZodString;
|
|
25463
|
+
tag: z.ZodString;
|
|
25329
25464
|
elementLocator: z.ZodString;
|
|
25330
25465
|
}, "strip", z.ZodTypeAny, {
|
|
25331
25466
|
elementLocator: string;
|
|
25332
25467
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25333
25468
|
note: string;
|
|
25469
|
+
tag: string;
|
|
25334
25470
|
}, {
|
|
25335
25471
|
elementLocator: string;
|
|
25336
25472
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25337
25473
|
note: string;
|
|
25474
|
+
tag: string;
|
|
25338
25475
|
}>, "many">;
|
|
25339
25476
|
clearFlags: z.ZodArray<z.ZodString, "many">;
|
|
25340
25477
|
}, {
|
|
25341
25478
|
addFlags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
25342
25479
|
level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
|
|
25343
25480
|
note: z.ZodString;
|
|
25481
|
+
tag: z.ZodString;
|
|
25344
25482
|
elementLocator: z.ZodString;
|
|
25345
25483
|
}, {
|
|
25346
25484
|
elementLocator: z.ZodString;
|
|
@@ -25349,10 +25487,12 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<z.objectU
|
|
|
25349
25487
|
elementLocator: string;
|
|
25350
25488
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25351
25489
|
note: string;
|
|
25490
|
+
tag: string;
|
|
25352
25491
|
}, {
|
|
25353
25492
|
elementLocator: string;
|
|
25354
25493
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25355
25494
|
note: string;
|
|
25495
|
+
tag: string;
|
|
25356
25496
|
}>, "many">;
|
|
25357
25497
|
clearFlags: z.ZodArray<z.ZodString, "many">;
|
|
25358
25498
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -25360,6 +25500,7 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<z.objectU
|
|
|
25360
25500
|
elementLocator: string;
|
|
25361
25501
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25362
25502
|
note: string;
|
|
25503
|
+
tag: string;
|
|
25363
25504
|
}[];
|
|
25364
25505
|
clearFlags: string[];
|
|
25365
25506
|
}, {
|
|
@@ -25367,6 +25508,7 @@ export declare const UnderwritingFlagsUpdateRequestSchema: z.ZodObject<z.objectU
|
|
|
25367
25508
|
elementLocator: string;
|
|
25368
25509
|
level: "none" | "info" | "block" | "decline" | "reject" | "approve";
|
|
25369
25510
|
note: string;
|
|
25511
|
+
tag: string;
|
|
25370
25512
|
}[];
|
|
25371
25513
|
clearFlags: string[];
|
|
25372
25514
|
}>;
|
|
@@ -25428,6 +25570,7 @@ export declare const UserCreateRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
25428
25570
|
lastName: z.ZodString;
|
|
25429
25571
|
password: z.ZodString;
|
|
25430
25572
|
temporaryPassword: z.ZodBoolean;
|
|
25573
|
+
email: z.ZodString;
|
|
25431
25574
|
tenants: z.ZodArray<z.ZodString, "many">;
|
|
25432
25575
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
25433
25576
|
}, {
|
|
@@ -25435,21 +25578,23 @@ export declare const UserCreateRequestSchema: z.ZodObject<z.objectUtil.extendSha
|
|
|
25435
25578
|
roles: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25436
25579
|
tenants: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25437
25580
|
}>, "strip", z.ZodTypeAny, {
|
|
25581
|
+
email: string;
|
|
25438
25582
|
userName: string;
|
|
25439
25583
|
firstName: string;
|
|
25440
25584
|
lastName: string;
|
|
25441
25585
|
password: string;
|
|
25442
25586
|
temporaryPassword: boolean;
|
|
25443
|
-
tenants?: string[] | undefined;
|
|
25444
25587
|
roles?: string[] | undefined;
|
|
25588
|
+
tenants?: string[] | undefined;
|
|
25445
25589
|
}, {
|
|
25590
|
+
email: string;
|
|
25446
25591
|
userName: string;
|
|
25447
25592
|
firstName: string;
|
|
25448
25593
|
lastName: string;
|
|
25449
25594
|
password: string;
|
|
25450
25595
|
temporaryPassword: boolean;
|
|
25451
|
-
tenants?: string[] | undefined;
|
|
25452
25596
|
roles?: string[] | undefined;
|
|
25597
|
+
tenants?: string[] | undefined;
|
|
25453
25598
|
}>;
|
|
25454
25599
|
|
|
25455
25600
|
export declare type UserId = z.infer<typeof UserIdSchema>;
|
|
@@ -25463,6 +25608,7 @@ export declare const UserResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
25463
25608
|
userName: z.ZodString;
|
|
25464
25609
|
firstName: z.ZodString;
|
|
25465
25610
|
lastName: z.ZodString;
|
|
25611
|
+
email: z.ZodString;
|
|
25466
25612
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
25467
25613
|
tenants: z.ZodArray<z.ZodString, "many">;
|
|
25468
25614
|
permissions: z.ZodArray<z.ZodString, "many">;
|
|
@@ -25472,18 +25618,20 @@ export declare const UserResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
25472
25618
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25473
25619
|
}>, "strip", z.ZodTypeAny, {
|
|
25474
25620
|
locator: string;
|
|
25621
|
+
roles: string[];
|
|
25622
|
+
email: string;
|
|
25475
25623
|
userName: string;
|
|
25476
25624
|
firstName: string;
|
|
25477
25625
|
lastName: string;
|
|
25478
|
-
roles: string[];
|
|
25479
25626
|
tenants?: string[] | undefined;
|
|
25480
25627
|
permissions?: string[] | undefined;
|
|
25481
25628
|
}, {
|
|
25482
25629
|
locator: string;
|
|
25630
|
+
roles: string[];
|
|
25631
|
+
email: string;
|
|
25483
25632
|
userName: string;
|
|
25484
25633
|
firstName: string;
|
|
25485
25634
|
lastName: string;
|
|
25486
|
-
roles: string[];
|
|
25487
25635
|
tenants?: string[] | undefined;
|
|
25488
25636
|
permissions?: string[] | undefined;
|
|
25489
25637
|
}>;
|
|
@@ -25523,17 +25671,17 @@ export declare const UserUpdateRequestSchema: z.ZodObject<{
|
|
|
25523
25671
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
25524
25672
|
tenants: z.ZodArray<z.ZodString, "many">;
|
|
25525
25673
|
}, "strip", z.ZodTypeAny, {
|
|
25674
|
+
roles: string[];
|
|
25526
25675
|
tenants: string[];
|
|
25527
25676
|
permissions: string[];
|
|
25528
25677
|
firstName: string;
|
|
25529
25678
|
lastName: string;
|
|
25530
|
-
roles: string[];
|
|
25531
25679
|
}, {
|
|
25680
|
+
roles: string[];
|
|
25532
25681
|
tenants: string[];
|
|
25533
25682
|
permissions: string[];
|
|
25534
25683
|
firstName: string;
|
|
25535
25684
|
lastName: string;
|
|
25536
|
-
roles: string[];
|
|
25537
25685
|
}>;
|
|
25538
25686
|
|
|
25539
25687
|
export declare const UUIDZ: z.ZodString;
|
|
@@ -25656,6 +25804,10 @@ export declare const WeekOfMonthEnumSchema: z.ZodEnum<["none", "first", "second"
|
|
|
25656
25804
|
|
|
25657
25805
|
export declare const weekOfMonthEnumSchema: z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>;
|
|
25658
25806
|
|
|
25807
|
+
export declare type WorkManagementReferenceTypeEnum = z.infer<typeof WorkManagementReferenceTypeEnumSchema>;
|
|
25808
|
+
|
|
25809
|
+
export declare const WorkManagementReferenceTypeEnumSchema: z.ZodEnum<["account", "quickQuote", "quote", "policy", "transaction", "invoice"]>;
|
|
25810
|
+
|
|
25659
25811
|
export declare const ZIP_ACCEPTED_FILE_TYPES: readonly ["application/zip", "application/x-zip-compressed"];
|
|
25660
25812
|
|
|
25661
25813
|
export { }
|