@socotra/ec-react-schemas 2.9.0 → 2.10.0-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 CHANGED
@@ -342,6 +342,10 @@ export declare const accountConfigSchema: z.ZodObject<{
342
342
  defaultSearchable?: boolean | undefined;
343
343
  }>;
344
344
 
345
+ export declare type AccountId = z.infer<typeof AccountIdSchema>;
346
+
347
+ export declare const AccountIdSchema: z.ZodString;
348
+
345
349
  export declare type AccountRequest = z.infer<typeof accountRequestSchema>;
346
350
 
347
351
  export declare const accountRequestSchema: z.ZodObject<{
@@ -940,6 +944,20 @@ declare const BaseElementSchema: z.ZodObject<{
940
944
  originalEffectiveTime?: string | undefined;
941
945
  }>;
942
946
 
947
+ /**
948
+ * Query string parameters validation for kernel API - offset and count
949
+ */
950
+ export declare const BaseListPaginationSchema: z.ZodObject<{
951
+ offset: z.ZodOptional<z.ZodNumber>;
952
+ count: z.ZodOptional<z.ZodNumber>;
953
+ }, "strip", z.ZodTypeAny, {
954
+ count?: number | undefined;
955
+ offset?: number | undefined;
956
+ }, {
957
+ count?: number | undefined;
958
+ offset?: number | undefined;
959
+ }>;
960
+
943
961
  export declare type BasePolicyTransactionResponse = z.infer<typeof BasePolicyTransactionResponseSchema>;
944
962
 
945
963
  export declare const BasePolicyTransactionResponseSchema: z.ZodObject<{
@@ -7741,6 +7759,34 @@ export declare const elementSummarySchema: z.ZodObject<{
7741
7759
  chargeSummaries?: Record<string, number> | undefined;
7742
7760
  }>;
7743
7761
 
7762
+ export declare type ElementUpdateRequest = z.infer<typeof ElementUpdateRequestSchema>;
7763
+
7764
+ export declare const ElementUpdateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
7765
+ locator: z.ZodString;
7766
+ setData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7767
+ removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7768
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
7769
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7770
+ }, {
7771
+ locator: z.ZodString;
7772
+ setData: z.ZodRecord<z.ZodString, z.ZodAny>;
7773
+ removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
7774
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
7775
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
7776
+ }>, "strip", z.ZodTypeAny, {
7777
+ locator: string;
7778
+ removeCoverageTerms: Record<string, any>;
7779
+ removeData: Record<string, any>;
7780
+ setCoverageTerms: Record<string, string>;
7781
+ setData: Record<string, any>;
7782
+ }, {
7783
+ locator: string;
7784
+ removeCoverageTerms: Record<string, any>;
7785
+ removeData: Record<string, any>;
7786
+ setCoverageTerms: Record<string, string>;
7787
+ setData: Record<string, any>;
7788
+ }>;
7789
+
7744
7790
  export declare type EvaluateConstraintsRequest = z.infer<typeof evaluateConstraintsRequestSchema>;
7745
7791
 
7746
7792
  export declare const evaluateConstraintsRequestSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>>>>;
@@ -17017,248 +17063,144 @@ export declare type QuoteBillingTrigger = z.infer<typeof quoteBillingTriggerEnum
17017
17063
 
17018
17064
  export declare const quoteBillingTriggerEnumSchema: z.ZodEnum<["accept", "issue"]>;
17019
17065
 
17020
- export declare type QuoteDependencyMapResponse = z.infer<typeof quoteDependencyMapResponseSchema>;
17021
-
17022
- export declare const quoteDependencyMapResponseSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
17023
- column: z.ZodString;
17024
- table: z.ZodString;
17025
- where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
17026
- staticLocator: z.ZodString;
17027
- fieldName: z.ZodString;
17028
- values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17029
- }, "strip", z.ZodTypeAny, {
17030
- staticLocator: string;
17031
- fieldName: string;
17032
- values?: string[] | undefined;
17033
- }, {
17034
- staticLocator: string;
17035
- fieldName: string;
17036
- values?: string[] | undefined;
17037
- }>>>;
17038
- }, "strip", z.ZodTypeAny, {
17039
- column: string;
17040
- table: string;
17041
- where?: Record<string, {
17042
- staticLocator: string;
17043
- fieldName: string;
17044
- values?: string[] | undefined;
17045
- }> | undefined;
17046
- }, {
17047
- column: string;
17048
- table: string;
17049
- where?: Record<string, {
17050
- staticLocator: string;
17051
- fieldName: string;
17052
- values?: string[] | undefined;
17053
- }> | undefined;
17054
- }>>>;
17055
-
17056
- export declare type QuoteDurationBasis = z.infer<typeof quoteDurationBasisEnumSchema>;
17057
-
17058
- export declare const quoteDurationBasisEnumSchema: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
17059
-
17060
- export declare type QuotePriceChargeCategory = z.infer<typeof quotePriceChargeCategoryEnum>;
17061
-
17062
- export declare const quotePriceChargeCategoryEnum: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
17063
-
17064
- export declare type QuotePriceChargeResponse = z.infer<typeof quotePriceChargeResponseSchema>;
17065
-
17066
- export declare const quotePriceChargeResponseSchema: z.ZodObject<{
17067
- locator: z.ZodString;
17068
- elementLocator: z.ZodString;
17069
- chargeType: z.ZodString;
17070
- chargeCategory: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
17071
- amount: z.ZodNumber;
17072
- rate: z.ZodNumber;
17073
- referenceRate: z.ZodNumber;
17074
- elementStaticLocator: z.ZodString;
17075
- tag: z.ZodOptional<z.ZodString>;
17076
- rateDifference: z.ZodOptional<z.ZodNumber>;
17077
- reversalOfLocator: z.ZodOptional<z.ZodString>;
17078
- }, "strip", z.ZodTypeAny, {
17079
- locator: string;
17080
- elementLocator: string;
17081
- chargeType: string;
17082
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17083
- amount: number;
17084
- rate: number;
17085
- referenceRate: number;
17086
- elementStaticLocator: string;
17087
- tag?: string | undefined;
17088
- rateDifference?: number | undefined;
17089
- reversalOfLocator?: string | undefined;
17090
- }, {
17091
- locator: string;
17092
- elementLocator: string;
17093
- chargeType: string;
17094
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17095
- amount: number;
17096
- rate: number;
17097
- referenceRate: number;
17098
- elementStaticLocator: string;
17099
- tag?: string | undefined;
17100
- rateDifference?: number | undefined;
17101
- reversalOfLocator?: string | undefined;
17102
- }>;
17103
-
17104
- export declare type QuotePriceResponse = z.infer<typeof quotePriceResponseSchema>;
17066
+ export declare type QuoteCreateRequest = z.infer<typeof QuoteCreateRequestSchema>;
17105
17067
 
17106
- export declare const quotePriceResponseSchema: z.ZodObject<{
17107
- quoteLocator: z.ZodString;
17108
- accountLocator: z.ZodString;
17109
- quoteState: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
17068
+ export declare const QuoteCreateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
17110
17069
  productName: z.ZodString;
17070
+ accountLocator: z.ZodString;
17111
17071
  startTime: z.ZodString;
17112
17072
  endTime: z.ZodString;
17113
- duration: z.ZodOptional<z.ZodNumber>;
17114
- durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
17115
- items: z.ZodOptional<z.ZodArray<z.ZodObject<{
17116
- locator: z.ZodString;
17117
- elementLocator: z.ZodString;
17118
- chargeType: z.ZodString;
17119
- chargeCategory: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
17120
- amount: z.ZodNumber;
17121
- rate: z.ZodNumber;
17122
- referenceRate: z.ZodNumber;
17123
- elementStaticLocator: z.ZodString;
17124
- tag: z.ZodOptional<z.ZodString>;
17125
- rateDifference: z.ZodOptional<z.ZodNumber>;
17126
- reversalOfLocator: z.ZodOptional<z.ZodString>;
17073
+ expirationTime: z.ZodString;
17074
+ currency: z.ZodString;
17075
+ timezone: z.ZodString;
17076
+ coverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
17077
+ data: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17078
+ elements: z.ZodArray<z.ZodType<Element_3, z.ZodTypeDef, Element_3>, "many">;
17079
+ durationBasis: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>;
17080
+ preferences: z.ZodObject<{
17081
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
17082
+ 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">]>>;
17083
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17084
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
17085
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17086
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17087
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17088
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17089
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17090
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17091
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17092
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17093
+ anchorTime: z.ZodOptional<z.ZodString>;
17094
+ }, "strip", z.ZodTypeAny, {
17095
+ installmentWeights: number[];
17096
+ dayOfMonth?: number | undefined;
17097
+ anchorTime?: string | undefined;
17098
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17099
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17100
+ installmentPlanName?: string | undefined;
17101
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17102
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17103
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17104
+ dueLeadDays?: number | undefined;
17105
+ generateLeadDays?: number | undefined;
17106
+ maxInstallmentsPerTerm?: number | undefined;
17107
+ }, {
17108
+ installmentWeights: number[];
17109
+ dayOfMonth?: number | undefined;
17110
+ anchorTime?: string | undefined;
17111
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17112
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17113
+ installmentPlanName?: string | undefined;
17114
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17115
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17116
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17117
+ dueLeadDays?: number | undefined;
17118
+ generateLeadDays?: number | undefined;
17119
+ maxInstallmentsPerTerm?: number | undefined;
17120
+ }>>;
17121
+ billingPreferences: z.ZodOptional<z.ZodObject<{
17122
+ billingPlanName: z.ZodOptional<z.ZodString>;
17123
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17124
+ }, "strip", z.ZodTypeAny, {
17125
+ billingPlanName?: string | undefined;
17126
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17127
+ }, {
17128
+ billingPlanName?: string | undefined;
17129
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17130
+ }>>;
17127
17131
  }, "strip", z.ZodTypeAny, {
17128
- locator: string;
17129
- elementLocator: string;
17130
- chargeType: string;
17131
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17132
- amount: number;
17133
- rate: number;
17134
- referenceRate: number;
17135
- elementStaticLocator: string;
17136
- tag?: string | undefined;
17137
- rateDifference?: number | undefined;
17138
- reversalOfLocator?: string | undefined;
17132
+ billingPreferences?: {
17133
+ billingPlanName?: string | undefined;
17134
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17135
+ } | undefined;
17136
+ installmentPreferences?: {
17137
+ installmentWeights: number[];
17138
+ dayOfMonth?: number | undefined;
17139
+ anchorTime?: string | undefined;
17140
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17141
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17142
+ installmentPlanName?: string | undefined;
17143
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17144
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17145
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17146
+ dueLeadDays?: number | undefined;
17147
+ generateLeadDays?: number | undefined;
17148
+ maxInstallmentsPerTerm?: number | undefined;
17149
+ } | undefined;
17139
17150
  }, {
17140
- locator: string;
17141
- elementLocator: string;
17142
- chargeType: string;
17143
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17144
- amount: number;
17145
- rate: number;
17146
- referenceRate: number;
17147
- elementStaticLocator: string;
17148
- tag?: string | undefined;
17149
- rateDifference?: number | undefined;
17150
- reversalOfLocator?: string | undefined;
17151
- }>, "many">>;
17152
- }, "strip", z.ZodTypeAny, {
17153
- productName: string;
17154
- startTime: string;
17155
- endTime: string;
17156
- quoteState: string;
17157
- accountLocator: string;
17158
- quoteLocator: string;
17159
- durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
17160
- duration?: number | undefined;
17161
- items?: {
17162
- locator: string;
17163
- elementLocator: string;
17164
- chargeType: string;
17165
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17166
- amount: number;
17167
- rate: number;
17168
- referenceRate: number;
17169
- elementStaticLocator: string;
17170
- tag?: string | undefined;
17171
- rateDifference?: number | undefined;
17172
- reversalOfLocator?: string | undefined;
17173
- }[] | undefined;
17174
- }, {
17175
- productName: string;
17176
- startTime: string;
17177
- endTime: string;
17178
- quoteState: string;
17179
- accountLocator: string;
17180
- quoteLocator: string;
17181
- durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
17182
- duration?: number | undefined;
17183
- items?: {
17184
- locator: string;
17185
- elementLocator: string;
17186
- chargeType: string;
17187
- chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
17188
- amount: number;
17189
- rate: number;
17190
- referenceRate: number;
17191
- elementStaticLocator: string;
17192
- tag?: string | undefined;
17193
- rateDifference?: number | undefined;
17194
- reversalOfLocator?: string | undefined;
17195
- }[] | undefined;
17196
- }>;
17197
-
17198
- export declare type QuoteRequest = z.infer<typeof quoteRequestSchema>;
17199
-
17200
- export declare const quoteRequestSchema: z.ZodObject<{
17201
- productName: z.ZodOptional<z.ZodString>;
17202
- delinquencyPlanName: z.ZodOptional<z.ZodString>;
17151
+ billingPreferences?: {
17152
+ billingPlanName?: string | undefined;
17153
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17154
+ } | undefined;
17155
+ installmentPreferences?: {
17156
+ installmentWeights: number[];
17157
+ dayOfMonth?: number | undefined;
17158
+ anchorTime?: string | undefined;
17159
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17160
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17161
+ installmentPlanName?: string | undefined;
17162
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17163
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17164
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17165
+ dueLeadDays?: number | undefined;
17166
+ generateLeadDays?: number | undefined;
17167
+ maxInstallmentsPerTerm?: number | undefined;
17168
+ } | undefined;
17169
+ }>;
17170
+ delinquencyPlanName: z.ZodString;
17171
+ autoRenewalPlanName: z.ZodString;
17172
+ billingTrigger: z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>;
17173
+ billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
17174
+ region: z.ZodString;
17175
+ static: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17176
+ }, {
17177
+ accountLocator: z.ZodString;
17178
+ data: z.ZodRecord<z.ZodString, z.ZodAny>;
17203
17179
  startTime: z.ZodOptional<z.ZodString>;
17204
17180
  endTime: z.ZodOptional<z.ZodString>;
17205
- currency: z.ZodOptional<z.ZodString>;
17206
17181
  expirationTime: z.ZodOptional<z.ZodString>;
17207
- setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17208
- elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
17209
- locator: z.ZodString;
17210
- removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17211
- removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17212
- setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17213
- setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17214
- }, "strip", z.ZodTypeAny, {
17215
- locator: string;
17216
- removeCoverageTerms?: Record<string, unknown> | undefined;
17217
- removeData?: Record<string, unknown> | undefined;
17218
- setCoverageTerms?: Record<string, unknown> | undefined;
17219
- setData?: Record<string, unknown> | undefined;
17220
- }, {
17221
- locator: string;
17222
- removeCoverageTerms?: Record<string, unknown> | undefined;
17223
- removeData?: Record<string, unknown> | undefined;
17224
- setCoverageTerms?: Record<string, unknown> | undefined;
17225
- setData?: Record<string, unknown> | undefined;
17226
- }>, "many">>;
17227
- timezone: z.ZodOptional<z.ZodString>;
17228
- billingPlan: z.ZodOptional<z.ZodString>;
17229
- defaultTermDuration: z.ZodOptional<z.ZodString>;
17230
- installmentPlan: z.ZodOptional<z.ZodString>;
17231
- durationBasis: z.ZodOptional<z.ZodString>;
17232
- setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17233
- preferences: z.ZodOptional<z.ZodObject<{
17234
- billingPreferences: z.ZodOptional<z.ZodObject<{
17235
- billingPlanName: z.ZodOptional<z.ZodString>;
17236
- billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
17237
- }, "strip", z.ZodTypeAny, {
17238
- billingPlanName?: string | undefined;
17239
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17240
- }, {
17241
- billingPlanName?: string | undefined;
17242
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17243
- }>>;
17182
+ durationBasis: z.ZodOptional<z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>>;
17183
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
17184
+ preferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17244
17185
  installmentPreferences: z.ZodOptional<z.ZodObject<{
17245
- installmentPlanName: z.ZodOptional<z.ZodString>;
17246
- anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
17247
- anchorTime: z.ZodOptional<z.ZodString>;
17248
- anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
17249
- cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
17250
- dayOfMonth: z.ZodOptional<z.ZodNumber>;
17251
- dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
17252
- dueLeadDays: z.ZodOptional<z.ZodNumber>;
17186
+ 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">]>>;
17187
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17253
17188
  generateLeadDays: z.ZodOptional<z.ZodNumber>;
17189
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17190
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17254
17191
  maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17255
- weekOfMonth: z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>;
17256
- installmentPlanWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
17192
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17193
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17194
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17195
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17196
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17197
+ anchorTime: z.ZodOptional<z.ZodString>;
17257
17198
  }, "strip", z.ZodTypeAny, {
17258
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17199
+ installmentWeights: number[];
17259
17200
  dayOfMonth?: number | undefined;
17260
17201
  anchorTime?: string | undefined;
17261
17202
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17203
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17262
17204
  installmentPlanName?: string | undefined;
17263
17205
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17264
17206
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17266,12 +17208,12 @@ export declare const quoteRequestSchema: z.ZodObject<{
17266
17208
  dueLeadDays?: number | undefined;
17267
17209
  generateLeadDays?: number | undefined;
17268
17210
  maxInstallmentsPerTerm?: number | undefined;
17269
- installmentPlanWeights?: number[] | undefined;
17270
17211
  }, {
17271
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17212
+ installmentWeights: number[];
17272
17213
  dayOfMonth?: number | undefined;
17273
17214
  anchorTime?: string | undefined;
17274
17215
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17216
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17275
17217
  installmentPlanName?: string | undefined;
17276
17218
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17277
17219
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17279,18 +17221,43 @@ export declare const quoteRequestSchema: z.ZodObject<{
17279
17221
  dueLeadDays?: number | undefined;
17280
17222
  generateLeadDays?: number | undefined;
17281
17223
  maxInstallmentsPerTerm?: number | undefined;
17282
- installmentPlanWeights?: number[] | undefined;
17283
17224
  }>>;
17284
- }, "strip", z.ZodTypeAny, {
17285
- billingPreferences?: {
17225
+ billingPreferences: z.ZodOptional<z.ZodObject<{
17226
+ billingPlanName: z.ZodOptional<z.ZodString>;
17227
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17228
+ }, "strip", z.ZodTypeAny, {
17286
17229
  billingPlanName?: string | undefined;
17287
17230
  billingLevel?: "account" | "inherit" | "policy" | undefined;
17288
- } | undefined;
17289
- installmentPreferences?: {
17290
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17231
+ }, {
17232
+ billingPlanName?: string | undefined;
17233
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17234
+ }>>;
17235
+ }, {
17236
+ installmentPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17237
+ 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">]>>;
17238
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17239
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
17240
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17241
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17242
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17243
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17244
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17245
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17246
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17247
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17248
+ anchorTime: z.ZodOptional<z.ZodString>;
17249
+ }, {
17250
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
17251
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
17252
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
17253
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
17254
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
17255
+ }>, "strip", z.ZodTypeAny, {
17256
+ installmentWeights: number[];
17291
17257
  dayOfMonth?: number | undefined;
17292
17258
  anchorTime?: string | undefined;
17293
17259
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17260
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17294
17261
  installmentPlanName?: string | undefined;
17295
17262
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17296
17263
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17298,18 +17265,12 @@ export declare const quoteRequestSchema: z.ZodObject<{
17298
17265
  dueLeadDays?: number | undefined;
17299
17266
  generateLeadDays?: number | undefined;
17300
17267
  maxInstallmentsPerTerm?: number | undefined;
17301
- installmentPlanWeights?: number[] | undefined;
17302
- } | undefined;
17303
- }, {
17304
- billingPreferences?: {
17305
- billingPlanName?: string | undefined;
17306
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17307
- } | undefined;
17308
- installmentPreferences?: {
17309
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17268
+ }, {
17269
+ installmentWeights: number[];
17310
17270
  dayOfMonth?: number | undefined;
17311
17271
  anchorTime?: string | undefined;
17312
17272
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17273
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17313
17274
  installmentPlanName?: string | undefined;
17314
17275
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17315
17276
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17317,40 +17278,30 @@ export declare const quoteRequestSchema: z.ZodObject<{
17317
17278
  dueLeadDays?: number | undefined;
17318
17279
  generateLeadDays?: number | undefined;
17319
17280
  maxInstallmentsPerTerm?: number | undefined;
17320
- installmentPlanWeights?: number[] | undefined;
17321
- } | undefined;
17322
- }>>;
17323
- }, "strip", z.ZodTypeAny, {
17324
- defaultTermDuration?: string | undefined;
17325
- elements?: {
17326
- locator: string;
17327
- removeCoverageTerms?: Record<string, unknown> | undefined;
17328
- removeData?: Record<string, unknown> | undefined;
17329
- setCoverageTerms?: Record<string, unknown> | undefined;
17330
- setData?: Record<string, unknown> | undefined;
17331
- }[] | undefined;
17332
- setCoverageTerms?: Record<string, unknown> | undefined;
17333
- setData?: Record<string, unknown> | undefined;
17334
- productName?: string | undefined;
17335
- delinquencyPlanName?: string | undefined;
17336
- startTime?: string | undefined;
17337
- endTime?: string | undefined;
17338
- currency?: string | undefined;
17339
- expirationTime?: string | undefined;
17340
- timezone?: string | undefined;
17341
- billingPlan?: string | undefined;
17342
- installmentPlan?: string | undefined;
17343
- durationBasis?: string | undefined;
17344
- preferences?: {
17281
+ }>>;
17282
+ billingPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17283
+ billingPlanName: z.ZodOptional<z.ZodString>;
17284
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17285
+ }, {
17286
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
17287
+ }>, "strip", z.ZodTypeAny, {
17288
+ billingLevel: "account" | "inherit" | "policy";
17289
+ billingPlanName?: string | undefined;
17290
+ }, {
17291
+ billingLevel: "account" | "inherit" | "policy";
17292
+ billingPlanName?: string | undefined;
17293
+ }>>;
17294
+ }>, "strip", z.ZodTypeAny, {
17345
17295
  billingPreferences?: {
17296
+ billingLevel: "account" | "inherit" | "policy";
17346
17297
  billingPlanName?: string | undefined;
17347
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17348
17298
  } | undefined;
17349
17299
  installmentPreferences?: {
17350
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17300
+ installmentWeights: number[];
17351
17301
  dayOfMonth?: number | undefined;
17352
17302
  anchorTime?: string | undefined;
17353
17303
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17304
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17354
17305
  installmentPlanName?: string | undefined;
17355
17306
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17356
17307
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17358,40 +17309,18 @@ export declare const quoteRequestSchema: z.ZodObject<{
17358
17309
  dueLeadDays?: number | undefined;
17359
17310
  generateLeadDays?: number | undefined;
17360
17311
  maxInstallmentsPerTerm?: number | undefined;
17361
- installmentPlanWeights?: number[] | undefined;
17362
17312
  } | undefined;
17363
- } | undefined;
17364
- }, {
17365
- defaultTermDuration?: string | undefined;
17366
- elements?: {
17367
- locator: string;
17368
- removeCoverageTerms?: Record<string, unknown> | undefined;
17369
- removeData?: Record<string, unknown> | undefined;
17370
- setCoverageTerms?: Record<string, unknown> | undefined;
17371
- setData?: Record<string, unknown> | undefined;
17372
- }[] | undefined;
17373
- setCoverageTerms?: Record<string, unknown> | undefined;
17374
- setData?: Record<string, unknown> | undefined;
17375
- productName?: string | undefined;
17376
- delinquencyPlanName?: string | undefined;
17377
- startTime?: string | undefined;
17378
- endTime?: string | undefined;
17379
- currency?: string | undefined;
17380
- expirationTime?: string | undefined;
17381
- timezone?: string | undefined;
17382
- billingPlan?: string | undefined;
17383
- installmentPlan?: string | undefined;
17384
- durationBasis?: string | undefined;
17385
- preferences?: {
17313
+ }, {
17386
17314
  billingPreferences?: {
17315
+ billingLevel: "account" | "inherit" | "policy";
17387
17316
  billingPlanName?: string | undefined;
17388
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17389
17317
  } | undefined;
17390
17318
  installmentPreferences?: {
17391
- weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
17319
+ installmentWeights: number[];
17392
17320
  dayOfMonth?: number | undefined;
17393
17321
  anchorTime?: string | undefined;
17394
17322
  dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17323
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17395
17324
  installmentPlanName?: string | undefined;
17396
17325
  anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17397
17326
  anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
@@ -17399,340 +17328,2839 @@ export declare const quoteRequestSchema: z.ZodObject<{
17399
17328
  dueLeadDays?: number | undefined;
17400
17329
  generateLeadDays?: number | undefined;
17401
17330
  maxInstallmentsPerTerm?: number | undefined;
17402
- installmentPlanWeights?: number[] | undefined;
17403
17331
  } | undefined;
17404
- } | undefined;
17405
- }>;
17406
-
17407
- export declare type QuoteResponse = z.infer<typeof quoteResponseSchema>;
17408
-
17409
- export declare const quoteResponseSchema: z.ZodObject<{
17410
- locator: z.ZodString;
17411
- quoteState: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
17412
- productName: z.ZodString;
17413
- accountLocator: z.ZodString;
17414
- startTime: z.ZodOptional<z.ZodString>;
17415
- endTime: z.ZodOptional<z.ZodString>;
17416
- timezone: z.ZodOptional<z.ZodString>;
17417
- currency: z.ZodOptional<z.ZodString>;
17418
- underwritingStatus: z.ZodOptional<z.ZodEnum<["none", "blocked", "declined", "rejected", "approved"]>>;
17419
- expirationTime: z.ZodOptional<z.ZodString>;
17420
- element: z.ZodOptional<z.ZodType<{
17421
- locator: string;
17332
+ }>>;
17333
+ static: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
17334
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17335
+ billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
17336
+ elements: z.ZodArray<z.ZodType<{
17422
17337
  type: string;
17423
- staticLocator: string;
17424
- data?: Record<string, any> | undefined;
17425
- coverageTerms?: Record<string, string> | undefined;
17426
- parentLocator?: string | undefined;
17427
- rootLocator?: string | undefined;
17428
- tenantLocator?: string | undefined;
17429
- originalEffectiveTime?: string | undefined;
17338
+ data: Record<string, any>;
17339
+ coverageTerms: Record<string, string>;
17340
+ parentLocator: string;
17341
+ staticLocator?: string | undefined;
17430
17342
  } & {
17431
17343
  elements?: ({
17432
- locator: string;
17433
17344
  type: string;
17434
- staticLocator: string;
17435
- data?: Record<string, any> | undefined;
17436
- coverageTerms?: Record<string, string> | undefined;
17437
- parentLocator?: string | undefined;
17438
- rootLocator?: string | undefined;
17439
- tenantLocator?: string | undefined;
17440
- originalEffectiveTime?: string | undefined;
17345
+ data: Record<string, any>;
17346
+ coverageTerms: Record<string, string>;
17347
+ parentLocator: string;
17348
+ staticLocator?: string | undefined;
17441
17349
  } & any)[];
17442
17350
  }, z.ZodTypeDef, {
17443
- locator: string;
17444
17351
  type: string;
17445
- staticLocator: string;
17446
- data?: Record<string, any> | undefined;
17447
- coverageTerms?: Record<string, string> | undefined;
17448
- parentLocator?: string | undefined;
17449
- rootLocator?: string | undefined;
17450
- tenantLocator?: string | undefined;
17451
- originalEffectiveTime?: string | undefined;
17352
+ data: Record<string, any>;
17353
+ coverageTerms: Record<string, string>;
17354
+ parentLocator: string;
17355
+ staticLocator?: string | undefined;
17452
17356
  } & {
17453
17357
  elements?: ({
17454
- locator: string;
17455
17358
  type: string;
17456
- staticLocator: string;
17457
- data?: Record<string, any> | undefined;
17458
- coverageTerms?: Record<string, string> | undefined;
17459
- parentLocator?: string | undefined;
17460
- rootLocator?: string | undefined;
17461
- tenantLocator?: string | undefined;
17462
- originalEffectiveTime?: string | undefined;
17359
+ data: Record<string, any>;
17360
+ coverageTerms: Record<string, string>;
17361
+ parentLocator: string;
17362
+ staticLocator?: string | undefined;
17463
17363
  } & any)[];
17464
- }>>;
17465
- type: z.ZodOptional<z.ZodString>;
17466
- duration: z.ZodOptional<z.ZodNumber>;
17467
- durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
17468
- boundTime: z.ZodOptional<z.ZodString>;
17469
- issuedTime: z.ZodOptional<z.ZodString>;
17470
- policyLocator: z.ZodOptional<z.ZodString>;
17471
- validationResult: z.ZodOptional<z.ZodObject<{
17472
- validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
17473
- elementType: z.ZodOptional<z.ZodString>;
17474
- locator: z.ZodOptional<z.ZodString>;
17475
- errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17476
- }, "strip", z.ZodTypeAny, {
17477
- elementType?: string | undefined;
17478
- locator?: string | undefined;
17479
- errors?: string[] | undefined;
17480
- }, {
17481
- elementType?: string | undefined;
17482
- locator?: string | undefined;
17483
- errors?: string[] | undefined;
17484
- }>, "many">>;
17485
- success: z.ZodOptional<z.ZodBoolean>;
17486
- }, "strip", z.ZodTypeAny, {
17487
- validationItems?: {
17488
- elementType?: string | undefined;
17489
- locator?: string | undefined;
17490
- errors?: string[] | undefined;
17491
- }[] | undefined;
17492
- success?: boolean | undefined;
17493
- }, {
17494
- validationItems?: {
17495
- elementType?: string | undefined;
17496
- locator?: string | undefined;
17497
- errors?: string[] | undefined;
17498
- }[] | undefined;
17499
- success?: boolean | undefined;
17500
- }>>;
17501
- preferences: z.ZodOptional<z.ZodAny>;
17502
- delinquencyPlanName: z.ZodOptional<z.ZodString>;
17503
- autoRenewalPlanName: z.ZodOptional<z.ZodString>;
17504
- billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
17505
- billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
17506
- coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
17507
- groupLocator: z.ZodOptional<z.ZodString>;
17508
- }, "strip", z.ZodTypeAny, {
17509
- locator: string;
17510
- productName: string;
17511
- quoteState: string;
17512
- accountLocator: string;
17513
- type?: string | undefined;
17514
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17515
- coverageTerms?: Record<string, string> | undefined;
17516
- element?: ({
17517
- locator: string;
17364
+ }>, "many">;
17365
+ }>, "strip", z.ZodTypeAny, {
17366
+ data: Record<string, any>;
17367
+ elements: ({
17518
17368
  type: string;
17519
- staticLocator: string;
17520
- data?: Record<string, any> | undefined;
17521
- coverageTerms?: Record<string, string> | undefined;
17522
- parentLocator?: string | undefined;
17523
- rootLocator?: string | undefined;
17524
- tenantLocator?: string | undefined;
17525
- originalEffectiveTime?: string | undefined;
17369
+ data: Record<string, any>;
17370
+ coverageTerms: Record<string, string>;
17371
+ parentLocator: string;
17372
+ staticLocator?: string | undefined;
17526
17373
  } & {
17527
17374
  elements?: ({
17528
- locator: string;
17529
17375
  type: string;
17530
- staticLocator: string;
17531
- data?: Record<string, any> | undefined;
17532
- coverageTerms?: Record<string, string> | undefined;
17533
- parentLocator?: string | undefined;
17534
- rootLocator?: string | undefined;
17535
- tenantLocator?: string | undefined;
17536
- originalEffectiveTime?: string | undefined;
17376
+ data: Record<string, any>;
17377
+ coverageTerms: Record<string, string>;
17378
+ parentLocator: string;
17379
+ staticLocator?: string | undefined;
17537
17380
  } & any)[];
17538
- }) | undefined;
17539
- delinquencyPlanName?: string | undefined;
17381
+ })[];
17382
+ productName: string;
17383
+ delinquencyPlanName: string;
17384
+ currency: string;
17385
+ timezone: string;
17386
+ accountLocator: string;
17387
+ autoRenewalPlanName: string;
17388
+ region: string;
17389
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17390
+ coverageTerms?: Record<string, string> | undefined;
17540
17391
  startTime?: string | undefined;
17541
17392
  endTime?: string | undefined;
17542
- currency?: string | undefined;
17543
17393
  expirationTime?: string | undefined;
17544
- timezone?: string | undefined;
17545
- durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
17546
- preferences?: any;
17547
- underwritingStatus?: "none" | "blocked" | "declined" | "rejected" | "approved" | undefined;
17548
- duration?: number | undefined;
17549
- boundTime?: string | undefined;
17550
- issuedTime?: string | undefined;
17551
- policyLocator?: string | undefined;
17552
- validationResult?: {
17553
- validationItems?: {
17554
- elementType?: string | undefined;
17555
- locator?: string | undefined;
17556
- errors?: string[] | undefined;
17557
- }[] | undefined;
17558
- success?: boolean | undefined;
17394
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
17395
+ preferences?: {
17396
+ billingPreferences?: {
17397
+ billingLevel: "account" | "inherit" | "policy";
17398
+ billingPlanName?: string | undefined;
17399
+ } | undefined;
17400
+ installmentPreferences?: {
17401
+ installmentWeights: number[];
17402
+ dayOfMonth?: number | undefined;
17403
+ anchorTime?: string | undefined;
17404
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17405
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17406
+ installmentPlanName?: string | undefined;
17407
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17408
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17409
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17410
+ dueLeadDays?: number | undefined;
17411
+ generateLeadDays?: number | undefined;
17412
+ maxInstallmentsPerTerm?: number | undefined;
17413
+ } | undefined;
17559
17414
  } | undefined;
17560
- autoRenewalPlanName?: string | undefined;
17561
17415
  billingTrigger?: "accept" | "issue" | undefined;
17562
- groupLocator?: string | undefined;
17416
+ static?: Record<string, any> | undefined;
17563
17417
  }, {
17564
- locator: string;
17565
- productName: string;
17566
- quoteState: string;
17567
- accountLocator: string;
17568
- type?: string | undefined;
17569
- billingLevel?: "account" | "inherit" | "policy" | undefined;
17570
- coverageTerms?: Record<string, string> | undefined;
17571
- element?: ({
17572
- locator: string;
17418
+ data: Record<string, any>;
17419
+ elements: ({
17573
17420
  type: string;
17574
- staticLocator: string;
17575
- data?: Record<string, any> | undefined;
17576
- coverageTerms?: Record<string, string> | undefined;
17577
- parentLocator?: string | undefined;
17578
- rootLocator?: string | undefined;
17579
- tenantLocator?: string | undefined;
17580
- originalEffectiveTime?: string | undefined;
17421
+ data: Record<string, any>;
17422
+ coverageTerms: Record<string, string>;
17423
+ parentLocator: string;
17424
+ staticLocator?: string | undefined;
17581
17425
  } & {
17582
17426
  elements?: ({
17583
- locator: string;
17584
17427
  type: string;
17585
- staticLocator: string;
17586
- data?: Record<string, any> | undefined;
17587
- coverageTerms?: Record<string, string> | undefined;
17588
- parentLocator?: string | undefined;
17589
- rootLocator?: string | undefined;
17590
- tenantLocator?: string | undefined;
17591
- originalEffectiveTime?: string | undefined;
17428
+ data: Record<string, any>;
17429
+ coverageTerms: Record<string, string>;
17430
+ parentLocator: string;
17431
+ staticLocator?: string | undefined;
17592
17432
  } & any)[];
17593
- }) | undefined;
17594
- delinquencyPlanName?: string | undefined;
17433
+ })[];
17434
+ productName: string;
17435
+ delinquencyPlanName: string;
17436
+ currency: string;
17437
+ timezone: string;
17438
+ accountLocator: string;
17439
+ autoRenewalPlanName: string;
17440
+ region: string;
17441
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17442
+ coverageTerms?: Record<string, string> | undefined;
17595
17443
  startTime?: string | undefined;
17596
17444
  endTime?: string | undefined;
17597
- currency?: string | undefined;
17598
17445
  expirationTime?: string | undefined;
17599
- timezone?: string | undefined;
17600
- durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
17601
- preferences?: any;
17602
- underwritingStatus?: "none" | "blocked" | "declined" | "rejected" | "approved" | undefined;
17603
- duration?: number | undefined;
17604
- boundTime?: string | undefined;
17605
- issuedTime?: string | undefined;
17606
- policyLocator?: string | undefined;
17607
- validationResult?: {
17608
- validationItems?: {
17609
- elementType?: string | undefined;
17610
- locator?: string | undefined;
17611
- errors?: string[] | undefined;
17612
- }[] | undefined;
17613
- success?: boolean | undefined;
17614
- } | undefined;
17615
- autoRenewalPlanName?: string | undefined;
17616
- billingTrigger?: "accept" | "issue" | undefined;
17617
- groupLocator?: string | undefined;
17618
- }>;
17446
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
17447
+ preferences?: {
17448
+ billingPreferences?: {
17449
+ billingLevel: "account" | "inherit" | "policy";
17450
+ billingPlanName?: string | undefined;
17451
+ } | undefined;
17452
+ installmentPreferences?: {
17453
+ installmentWeights: number[];
17454
+ dayOfMonth?: number | undefined;
17455
+ anchorTime?: string | undefined;
17456
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17457
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17458
+ installmentPlanName?: string | undefined;
17459
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17460
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17461
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17462
+ dueLeadDays?: number | undefined;
17463
+ generateLeadDays?: number | undefined;
17464
+ maxInstallmentsPerTerm?: number | undefined;
17465
+ } | undefined;
17466
+ } | undefined;
17467
+ billingTrigger?: "accept" | "issue" | undefined;
17468
+ static?: Record<string, any> | undefined;
17469
+ }>;
17619
17470
 
17620
- export declare type QuoteState = z.infer<typeof quoteStateSchema>;
17471
+ export declare type QuoteDependencyMapResponse = z.infer<typeof quoteDependencyMapResponseSchema>;
17621
17472
 
17622
- export declare const quoteStateEnumSchema: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
17473
+ export declare const quoteDependencyMapResponseSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
17474
+ column: z.ZodString;
17475
+ table: z.ZodString;
17476
+ where: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
17477
+ staticLocator: z.ZodString;
17478
+ fieldName: z.ZodString;
17479
+ values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17480
+ }, "strip", z.ZodTypeAny, {
17481
+ staticLocator: string;
17482
+ fieldName: string;
17483
+ values?: string[] | undefined;
17484
+ }, {
17485
+ staticLocator: string;
17486
+ fieldName: string;
17487
+ values?: string[] | undefined;
17488
+ }>>>;
17489
+ }, "strip", z.ZodTypeAny, {
17490
+ column: string;
17491
+ table: string;
17492
+ where?: Record<string, {
17493
+ staticLocator: string;
17494
+ fieldName: string;
17495
+ values?: string[] | undefined;
17496
+ }> | undefined;
17497
+ }, {
17498
+ column: string;
17499
+ table: string;
17500
+ where?: Record<string, {
17501
+ staticLocator: string;
17502
+ fieldName: string;
17503
+ values?: string[] | undefined;
17504
+ }> | undefined;
17505
+ }>>>;
17623
17506
 
17624
- export declare const quoteStateSchema: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
17507
+ export declare type QuoteDurationBasis = z.infer<typeof quoteDurationBasisEnumSchema>;
17625
17508
 
17626
- export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof quoteUnderwritingFlagsResponse>;
17509
+ export declare const quoteDurationBasisEnumSchema: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
17627
17510
 
17628
- export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
17629
- quoteLocator: z.ZodString;
17630
- clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
17511
+ export declare type QuoteGroupAssignmentRequest = z.infer<typeof QuoteGroupAssignmentRequestSchema>;
17512
+
17513
+ export declare const QuoteGroupAssignmentRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
17514
+ groupLocator: z.ZodString;
17515
+ }, {
17516
+ groupLocator: z.ZodString;
17517
+ }>, "strip", z.ZodTypeAny, {
17518
+ groupLocator: string;
17519
+ }, {
17520
+ groupLocator: string;
17521
+ }>;
17522
+
17523
+ export declare type QuoteId = z.infer<typeof QuoteIdSchema>;
17524
+
17525
+ export declare const QuoteIdSchema: z.ZodString;
17526
+
17527
+ export declare type QuoteListResponse = z.infer<typeof QuoteListResponseSchema>;
17528
+
17529
+ export declare const QuoteListResponseSchema: z.ZodObject<{
17530
+ listCompleted: z.ZodBoolean;
17531
+ items: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
17532
+ locator: z.ZodString;
17533
+ quoteState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"earlyUnderwritten">, z.ZodLiteral<"priced">, z.ZodLiteral<"underwritten">, z.ZodLiteral<"accepted">, z.ZodLiteral<"issued">, z.ZodLiteral<"underwrittenBlocked">, z.ZodLiteral<"declined">, z.ZodLiteral<"rejected">, z.ZodLiteral<"refused">, z.ZodLiteral<"discarded">]>;
17534
+ productName: z.ZodString;
17535
+ accountLocator: z.ZodString;
17536
+ startTime: z.ZodOptional<z.ZodString>;
17537
+ endTime: z.ZodOptional<z.ZodString>;
17538
+ timezone: z.ZodOptional<z.ZodString>;
17539
+ currency: z.ZodOptional<z.ZodString>;
17540
+ underwritingStatus: z.ZodOptional<z.ZodString>;
17541
+ expirationTime: z.ZodOptional<z.ZodString>;
17542
+ element: z.ZodType<Element_3, z.ZodTypeDef, Element_3>;
17543
+ duration: z.ZodOptional<z.ZodNumber>;
17544
+ 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">]>>;
17545
+ acceptedTime: z.ZodOptional<z.ZodString>;
17546
+ issuedTime: z.ZodOptional<z.ZodString>;
17547
+ policyLocator: z.ZodOptional<z.ZodString>;
17548
+ validationResult: z.ZodOptional<z.ZodObject<{
17549
+ validationItems: z.ZodArray<z.ZodObject<{
17550
+ elementType: z.ZodString;
17551
+ locator: z.ZodOptional<z.ZodString>;
17552
+ errors: z.ZodArray<z.ZodString, "many">;
17553
+ }, "strip", z.ZodTypeAny, {
17554
+ elementType: string;
17555
+ errors: string[];
17556
+ locator?: string | undefined;
17557
+ }, {
17558
+ elementType: string;
17559
+ errors: string[];
17560
+ locator?: string | undefined;
17561
+ }>, "many">;
17562
+ success: z.ZodBoolean;
17563
+ }, "strip", z.ZodTypeAny, {
17564
+ validationItems: {
17565
+ elementType: string;
17566
+ errors: string[];
17567
+ locator?: string | undefined;
17568
+ }[];
17569
+ success: boolean;
17570
+ }, {
17571
+ validationItems: {
17572
+ elementType: string;
17573
+ errors: string[];
17574
+ locator?: string | undefined;
17575
+ }[];
17576
+ success: boolean;
17577
+ }>>;
17578
+ preferences: z.ZodOptional<z.ZodObject<{
17579
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
17580
+ 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">]>>;
17581
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17582
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
17583
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17584
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17585
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17586
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17587
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17588
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17589
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17590
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17591
+ anchorTime: z.ZodOptional<z.ZodString>;
17592
+ }, "strip", z.ZodTypeAny, {
17593
+ installmentWeights: number[];
17594
+ dayOfMonth?: number | undefined;
17595
+ anchorTime?: string | undefined;
17596
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17597
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17598
+ installmentPlanName?: string | undefined;
17599
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17600
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17601
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17602
+ dueLeadDays?: number | undefined;
17603
+ generateLeadDays?: number | undefined;
17604
+ maxInstallmentsPerTerm?: number | undefined;
17605
+ }, {
17606
+ installmentWeights: number[];
17607
+ dayOfMonth?: number | undefined;
17608
+ anchorTime?: string | undefined;
17609
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17610
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17611
+ installmentPlanName?: string | undefined;
17612
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17613
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17614
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17615
+ dueLeadDays?: number | undefined;
17616
+ generateLeadDays?: number | undefined;
17617
+ maxInstallmentsPerTerm?: number | undefined;
17618
+ }>>;
17619
+ billingPreferences: z.ZodOptional<z.ZodObject<{
17620
+ billingPlanName: z.ZodOptional<z.ZodString>;
17621
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17622
+ }, "strip", z.ZodTypeAny, {
17623
+ billingPlanName?: string | undefined;
17624
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17625
+ }, {
17626
+ billingPlanName?: string | undefined;
17627
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17628
+ }>>;
17629
+ }, "strip", z.ZodTypeAny, {
17630
+ billingPreferences?: {
17631
+ billingPlanName?: string | undefined;
17632
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17633
+ } | undefined;
17634
+ installmentPreferences?: {
17635
+ installmentWeights: number[];
17636
+ dayOfMonth?: number | undefined;
17637
+ anchorTime?: string | undefined;
17638
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17639
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17640
+ installmentPlanName?: string | undefined;
17641
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17642
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17643
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17644
+ dueLeadDays?: number | undefined;
17645
+ generateLeadDays?: number | undefined;
17646
+ maxInstallmentsPerTerm?: number | undefined;
17647
+ } | undefined;
17648
+ }, {
17649
+ billingPreferences?: {
17650
+ billingPlanName?: string | undefined;
17651
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17652
+ } | undefined;
17653
+ installmentPreferences?: {
17654
+ installmentWeights: number[];
17655
+ dayOfMonth?: number | undefined;
17656
+ anchorTime?: string | undefined;
17657
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17658
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17659
+ installmentPlanName?: string | undefined;
17660
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17661
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17662
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17663
+ dueLeadDays?: number | undefined;
17664
+ generateLeadDays?: number | undefined;
17665
+ maxInstallmentsPerTerm?: number | undefined;
17666
+ } | undefined;
17667
+ }>>;
17668
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
17669
+ billingTrigger: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>>;
17670
+ groupLocator: z.ZodString;
17671
+ autoRenewalPlanName: z.ZodOptional<z.ZodString>;
17672
+ billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
17673
+ quickQuoteLocator: z.ZodOptional<z.ZodString>;
17674
+ region: z.ZodOptional<z.ZodString>;
17675
+ quoteNumber: z.ZodOptional<z.ZodString>;
17676
+ policyNumber: z.ZodString;
17677
+ static: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17678
+ }, {
17679
+ locator: z.ZodString;
17680
+ quickQuoteLocator: z.ZodString;
17681
+ quoteState: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
17682
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
17683
+ billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
17684
+ durationBasis: z.ZodOptional<z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>>;
17685
+ policyLocator: z.ZodString;
17686
+ preferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17687
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
17688
+ 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">]>>;
17689
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17690
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
17691
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17692
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17693
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17694
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17695
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17696
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17697
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17698
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17699
+ anchorTime: z.ZodOptional<z.ZodString>;
17700
+ }, "strip", z.ZodTypeAny, {
17701
+ installmentWeights: number[];
17702
+ dayOfMonth?: number | undefined;
17703
+ anchorTime?: string | undefined;
17704
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17705
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17706
+ installmentPlanName?: string | undefined;
17707
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17708
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17709
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17710
+ dueLeadDays?: number | undefined;
17711
+ generateLeadDays?: number | undefined;
17712
+ maxInstallmentsPerTerm?: number | undefined;
17713
+ }, {
17714
+ installmentWeights: number[];
17715
+ dayOfMonth?: number | undefined;
17716
+ anchorTime?: string | undefined;
17717
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17718
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17719
+ installmentPlanName?: string | undefined;
17720
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17721
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17722
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17723
+ dueLeadDays?: number | undefined;
17724
+ generateLeadDays?: number | undefined;
17725
+ maxInstallmentsPerTerm?: number | undefined;
17726
+ }>>;
17727
+ billingPreferences: z.ZodOptional<z.ZodObject<{
17728
+ billingPlanName: z.ZodOptional<z.ZodString>;
17729
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17730
+ }, "strip", z.ZodTypeAny, {
17731
+ billingPlanName?: string | undefined;
17732
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17733
+ }, {
17734
+ billingPlanName?: string | undefined;
17735
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
17736
+ }>>;
17737
+ }, {
17738
+ installmentPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17739
+ 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">]>>;
17740
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
17741
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
17742
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
17743
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
17744
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
17745
+ installmentPlanName: z.ZodOptional<z.ZodString>;
17746
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
17747
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
17748
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
17749
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
17750
+ anchorTime: z.ZodOptional<z.ZodString>;
17751
+ }, {
17752
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
17753
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
17754
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
17755
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
17756
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
17757
+ }>, "strip", z.ZodTypeAny, {
17758
+ installmentWeights: number[];
17759
+ dayOfMonth?: number | undefined;
17760
+ anchorTime?: string | undefined;
17761
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17762
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17763
+ installmentPlanName?: string | undefined;
17764
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17765
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17766
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17767
+ dueLeadDays?: number | undefined;
17768
+ generateLeadDays?: number | undefined;
17769
+ maxInstallmentsPerTerm?: number | undefined;
17770
+ }, {
17771
+ installmentWeights: number[];
17772
+ dayOfMonth?: number | undefined;
17773
+ anchorTime?: string | undefined;
17774
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17775
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17776
+ installmentPlanName?: string | undefined;
17777
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17778
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17779
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17780
+ dueLeadDays?: number | undefined;
17781
+ generateLeadDays?: number | undefined;
17782
+ maxInstallmentsPerTerm?: number | undefined;
17783
+ }>>;
17784
+ billingPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
17785
+ billingPlanName: z.ZodOptional<z.ZodString>;
17786
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
17787
+ }, {
17788
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
17789
+ }>, "strip", z.ZodTypeAny, {
17790
+ billingLevel: "account" | "inherit" | "policy";
17791
+ billingPlanName?: string | undefined;
17792
+ }, {
17793
+ billingLevel: "account" | "inherit" | "policy";
17794
+ billingPlanName?: string | undefined;
17795
+ }>>;
17796
+ }>, "strip", z.ZodTypeAny, {
17797
+ billingPreferences?: {
17798
+ billingLevel: "account" | "inherit" | "policy";
17799
+ billingPlanName?: string | undefined;
17800
+ } | undefined;
17801
+ installmentPreferences?: {
17802
+ installmentWeights: number[];
17803
+ dayOfMonth?: number | undefined;
17804
+ anchorTime?: string | undefined;
17805
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17806
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17807
+ installmentPlanName?: string | undefined;
17808
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17809
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17810
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17811
+ dueLeadDays?: number | undefined;
17812
+ generateLeadDays?: number | undefined;
17813
+ maxInstallmentsPerTerm?: number | undefined;
17814
+ } | undefined;
17815
+ }, {
17816
+ billingPreferences?: {
17817
+ billingLevel: "account" | "inherit" | "policy";
17818
+ billingPlanName?: string | undefined;
17819
+ } | undefined;
17820
+ installmentPreferences?: {
17821
+ installmentWeights: number[];
17822
+ dayOfMonth?: number | undefined;
17823
+ anchorTime?: string | undefined;
17824
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17825
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17826
+ installmentPlanName?: string | undefined;
17827
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17828
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17829
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17830
+ dueLeadDays?: number | undefined;
17831
+ generateLeadDays?: number | undefined;
17832
+ maxInstallmentsPerTerm?: number | undefined;
17833
+ } | undefined;
17834
+ }>>;
17835
+ validationResult: z.ZodOptional<z.ZodObject<{
17836
+ validationItems: z.ZodArray<z.ZodObject<{
17837
+ elementType: z.ZodString;
17838
+ locator: z.ZodOptional<z.ZodString>;
17839
+ errors: z.ZodArray<z.ZodString, "many">;
17840
+ }, "strip", z.ZodTypeAny, {
17841
+ elementType: string;
17842
+ errors: string[];
17843
+ locator?: string | undefined;
17844
+ }, {
17845
+ elementType: string;
17846
+ errors: string[];
17847
+ locator?: string | undefined;
17848
+ }>, "many">;
17849
+ success: z.ZodBoolean;
17850
+ }, "strip", z.ZodTypeAny, {
17851
+ validationItems: {
17852
+ elementType: string;
17853
+ errors: string[];
17854
+ locator?: string | undefined;
17855
+ }[];
17856
+ success: boolean;
17857
+ }, {
17858
+ validationItems: {
17859
+ elementType: string;
17860
+ errors: string[];
17861
+ locator?: string | undefined;
17862
+ }[];
17863
+ success: boolean;
17864
+ }>>;
17865
+ static: z.ZodRecord<z.ZodString, z.ZodAny>;
17866
+ issuedTime: z.ZodOptional<z.ZodString>;
17867
+ startTime: z.ZodOptional<z.ZodString>;
17868
+ endTime: z.ZodOptional<z.ZodString>;
17869
+ acceptedTime: z.ZodOptional<z.ZodString>;
17870
+ expirationTime: z.ZodOptional<z.ZodString>;
17871
+ }>, "strip", z.ZodTypeAny, {
17872
+ locator: string;
17873
+ billingLevel: "account" | "inherit" | "policy";
17874
+ element: Element_3;
17875
+ productName: string;
17876
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
17877
+ accountLocator: string;
17878
+ policyLocator: string;
17879
+ groupLocator: string;
17880
+ static: Record<string, any>;
17881
+ quickQuoteLocator: string;
17882
+ policyNumber: string;
17883
+ delinquencyPlanName?: string | undefined;
17884
+ startTime?: string | undefined;
17885
+ endTime?: string | undefined;
17886
+ currency?: string | undefined;
17887
+ expirationTime?: string | undefined;
17888
+ timezone?: string | undefined;
17889
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
17890
+ preferences?: {
17891
+ billingPreferences?: {
17892
+ billingLevel: "account" | "inherit" | "policy";
17893
+ billingPlanName?: string | undefined;
17894
+ } | undefined;
17895
+ installmentPreferences?: {
17896
+ installmentWeights: number[];
17897
+ dayOfMonth?: number | undefined;
17898
+ anchorTime?: string | undefined;
17899
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17900
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17901
+ installmentPlanName?: string | undefined;
17902
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17903
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17904
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17905
+ dueLeadDays?: number | undefined;
17906
+ generateLeadDays?: number | undefined;
17907
+ maxInstallmentsPerTerm?: number | undefined;
17908
+ } | undefined;
17909
+ } | undefined;
17910
+ underwritingStatus?: string | undefined;
17911
+ duration?: number | undefined;
17912
+ issuedTime?: string | undefined;
17913
+ validationResult?: {
17914
+ validationItems: {
17915
+ elementType: string;
17916
+ errors: string[];
17917
+ locator?: string | undefined;
17918
+ }[];
17919
+ success: boolean;
17920
+ } | undefined;
17921
+ autoRenewalPlanName?: string | undefined;
17922
+ billingTrigger?: "accept" | "issue" | undefined;
17923
+ region?: string | undefined;
17924
+ quoteNumber?: string | undefined;
17925
+ acceptedTime?: string | undefined;
17926
+ }, {
17927
+ locator: string;
17928
+ billingLevel: "account" | "inherit" | "policy";
17929
+ element: Element_3;
17930
+ productName: string;
17931
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
17932
+ accountLocator: string;
17933
+ policyLocator: string;
17934
+ groupLocator: string;
17935
+ static: Record<string, any>;
17936
+ quickQuoteLocator: string;
17937
+ policyNumber: string;
17938
+ delinquencyPlanName?: string | undefined;
17939
+ startTime?: string | undefined;
17940
+ endTime?: string | undefined;
17941
+ currency?: string | undefined;
17942
+ expirationTime?: string | undefined;
17943
+ timezone?: string | undefined;
17944
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
17945
+ preferences?: {
17946
+ billingPreferences?: {
17947
+ billingLevel: "account" | "inherit" | "policy";
17948
+ billingPlanName?: string | undefined;
17949
+ } | undefined;
17950
+ installmentPreferences?: {
17951
+ installmentWeights: number[];
17952
+ dayOfMonth?: number | undefined;
17953
+ anchorTime?: string | undefined;
17954
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
17955
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
17956
+ installmentPlanName?: string | undefined;
17957
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
17958
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
17959
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
17960
+ dueLeadDays?: number | undefined;
17961
+ generateLeadDays?: number | undefined;
17962
+ maxInstallmentsPerTerm?: number | undefined;
17963
+ } | undefined;
17964
+ } | undefined;
17965
+ underwritingStatus?: string | undefined;
17966
+ duration?: number | undefined;
17967
+ issuedTime?: string | undefined;
17968
+ validationResult?: {
17969
+ validationItems: {
17970
+ elementType: string;
17971
+ errors: string[];
17972
+ locator?: string | undefined;
17973
+ }[];
17974
+ success: boolean;
17975
+ } | undefined;
17976
+ autoRenewalPlanName?: string | undefined;
17977
+ billingTrigger?: "accept" | "issue" | undefined;
17978
+ region?: string | undefined;
17979
+ quoteNumber?: string | undefined;
17980
+ acceptedTime?: string | undefined;
17981
+ }>, "many">;
17982
+ }, "strip", z.ZodTypeAny, {
17983
+ items: {
17984
+ locator: string;
17985
+ billingLevel: "account" | "inherit" | "policy";
17986
+ element: Element_3;
17987
+ productName: string;
17988
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
17989
+ accountLocator: string;
17990
+ policyLocator: string;
17991
+ groupLocator: string;
17992
+ static: Record<string, any>;
17993
+ quickQuoteLocator: string;
17994
+ policyNumber: string;
17995
+ delinquencyPlanName?: string | undefined;
17996
+ startTime?: string | undefined;
17997
+ endTime?: string | undefined;
17998
+ currency?: string | undefined;
17999
+ expirationTime?: string | undefined;
18000
+ timezone?: string | undefined;
18001
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
18002
+ preferences?: {
18003
+ billingPreferences?: {
18004
+ billingLevel: "account" | "inherit" | "policy";
18005
+ billingPlanName?: string | undefined;
18006
+ } | undefined;
18007
+ installmentPreferences?: {
18008
+ installmentWeights: number[];
18009
+ dayOfMonth?: number | undefined;
18010
+ anchorTime?: string | undefined;
18011
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18012
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18013
+ installmentPlanName?: string | undefined;
18014
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18015
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18016
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18017
+ dueLeadDays?: number | undefined;
18018
+ generateLeadDays?: number | undefined;
18019
+ maxInstallmentsPerTerm?: number | undefined;
18020
+ } | undefined;
18021
+ } | undefined;
18022
+ underwritingStatus?: string | undefined;
18023
+ duration?: number | undefined;
18024
+ issuedTime?: string | undefined;
18025
+ validationResult?: {
18026
+ validationItems: {
18027
+ elementType: string;
18028
+ errors: string[];
18029
+ locator?: string | undefined;
18030
+ }[];
18031
+ success: boolean;
18032
+ } | undefined;
18033
+ autoRenewalPlanName?: string | undefined;
18034
+ billingTrigger?: "accept" | "issue" | undefined;
18035
+ region?: string | undefined;
18036
+ quoteNumber?: string | undefined;
18037
+ acceptedTime?: string | undefined;
18038
+ }[];
18039
+ listCompleted: boolean;
18040
+ }, {
18041
+ items: {
18042
+ locator: string;
18043
+ billingLevel: "account" | "inherit" | "policy";
18044
+ element: Element_3;
18045
+ productName: string;
18046
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
18047
+ accountLocator: string;
18048
+ policyLocator: string;
18049
+ groupLocator: string;
18050
+ static: Record<string, any>;
18051
+ quickQuoteLocator: string;
18052
+ policyNumber: string;
18053
+ delinquencyPlanName?: string | undefined;
18054
+ startTime?: string | undefined;
18055
+ endTime?: string | undefined;
18056
+ currency?: string | undefined;
18057
+ expirationTime?: string | undefined;
18058
+ timezone?: string | undefined;
18059
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
18060
+ preferences?: {
18061
+ billingPreferences?: {
18062
+ billingLevel: "account" | "inherit" | "policy";
18063
+ billingPlanName?: string | undefined;
18064
+ } | undefined;
18065
+ installmentPreferences?: {
18066
+ installmentWeights: number[];
18067
+ dayOfMonth?: number | undefined;
18068
+ anchorTime?: string | undefined;
18069
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18070
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18071
+ installmentPlanName?: string | undefined;
18072
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18073
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18074
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18075
+ dueLeadDays?: number | undefined;
18076
+ generateLeadDays?: number | undefined;
18077
+ maxInstallmentsPerTerm?: number | undefined;
18078
+ } | undefined;
18079
+ } | undefined;
18080
+ underwritingStatus?: string | undefined;
18081
+ duration?: number | undefined;
18082
+ issuedTime?: string | undefined;
18083
+ validationResult?: {
18084
+ validationItems: {
18085
+ elementType: string;
18086
+ errors: string[];
18087
+ locator?: string | undefined;
18088
+ }[];
18089
+ success: boolean;
18090
+ } | undefined;
18091
+ autoRenewalPlanName?: string | undefined;
18092
+ billingTrigger?: "accept" | "issue" | undefined;
18093
+ region?: string | undefined;
18094
+ quoteNumber?: string | undefined;
18095
+ acceptedTime?: string | undefined;
18096
+ }[];
18097
+ listCompleted: boolean;
18098
+ }>;
18099
+
18100
+ export declare type QuotePriceChargeCategory = z.infer<typeof quotePriceChargeCategoryEnum>;
18101
+
18102
+ export declare const quotePriceChargeCategoryEnum: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
18103
+
18104
+ export declare type QuotePriceChargeResponse = z.infer<typeof quotePriceChargeResponseSchema>;
18105
+
18106
+ export declare const quotePriceChargeResponseSchema: z.ZodObject<{
18107
+ locator: z.ZodString;
18108
+ elementLocator: z.ZodString;
18109
+ chargeType: z.ZodString;
18110
+ chargeCategory: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
18111
+ amount: z.ZodNumber;
18112
+ rate: z.ZodNumber;
18113
+ referenceRate: z.ZodNumber;
18114
+ elementStaticLocator: z.ZodString;
18115
+ tag: z.ZodOptional<z.ZodString>;
18116
+ rateDifference: z.ZodOptional<z.ZodNumber>;
18117
+ reversalOfLocator: z.ZodOptional<z.ZodString>;
18118
+ }, "strip", z.ZodTypeAny, {
18119
+ locator: string;
18120
+ elementLocator: string;
18121
+ chargeType: string;
18122
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18123
+ amount: number;
18124
+ rate: number;
18125
+ referenceRate: number;
18126
+ elementStaticLocator: string;
18127
+ tag?: string | undefined;
18128
+ rateDifference?: number | undefined;
18129
+ reversalOfLocator?: string | undefined;
18130
+ }, {
18131
+ locator: string;
18132
+ elementLocator: string;
18133
+ chargeType: string;
18134
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18135
+ amount: number;
18136
+ rate: number;
18137
+ referenceRate: number;
18138
+ elementStaticLocator: string;
18139
+ tag?: string | undefined;
18140
+ rateDifference?: number | undefined;
18141
+ reversalOfLocator?: string | undefined;
18142
+ }>;
18143
+
18144
+ export declare type QuotePriceResponse = z.infer<typeof quotePriceResponseSchema>;
18145
+
18146
+ export declare const QuotePriceResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
18147
+ tenantLocator: z.ZodString;
18148
+ quoteLocator: z.ZodString;
18149
+ accountLocator: z.ZodString;
18150
+ quoteState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"earlyUnderwritten">, z.ZodLiteral<"priced">, z.ZodLiteral<"underwritten">, z.ZodLiteral<"accepted">, z.ZodLiteral<"issued">, z.ZodLiteral<"underwrittenBlocked">, z.ZodLiteral<"declined">, z.ZodLiteral<"rejected">, z.ZodLiteral<"refused">, z.ZodLiteral<"discarded">]>;
18151
+ productName: z.ZodString;
18152
+ startTime: z.ZodString;
18153
+ endTime: z.ZodString;
18154
+ duration: z.ZodNumber;
18155
+ durationBasis: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>;
18156
+ items: z.ZodArray<z.ZodObject<{
18157
+ locator: z.ZodString;
18158
+ elementLocator: z.ZodString;
18159
+ chargeType: z.ZodString;
18160
+ chargeCategory: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"premium">, z.ZodLiteral<"tax">, z.ZodLiteral<"fee">, z.ZodLiteral<"credit">, z.ZodLiteral<"commission">, z.ZodLiteral<"flatPremium">, z.ZodLiteral<"flatTax">, z.ZodLiteral<"flatFee">, z.ZodLiteral<"flatCommission">, z.ZodLiteral<"cededPremium">, z.ZodLiteral<"flatCededPremium">, z.ZodLiteral<"nonFinancial">, z.ZodLiteral<"surcharge">]>;
18161
+ amount: z.ZodNumber;
18162
+ rate: z.ZodNumber;
18163
+ referenceRate: z.ZodNumber;
18164
+ tag: z.ZodOptional<z.ZodString>;
18165
+ rateDifference: z.ZodOptional<z.ZodNumber>;
18166
+ elementStaticLocator: z.ZodString;
18167
+ reversalOfLocator: z.ZodOptional<z.ZodString>;
18168
+ }, "strip", z.ZodTypeAny, {
18169
+ locator: string;
18170
+ elementLocator: string;
18171
+ chargeType: string;
18172
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18173
+ amount: number;
18174
+ rate: number;
18175
+ referenceRate: number;
18176
+ elementStaticLocator: string;
18177
+ tag?: string | undefined;
18178
+ rateDifference?: number | undefined;
18179
+ reversalOfLocator?: string | undefined;
18180
+ }, {
18181
+ locator: string;
18182
+ elementLocator: string;
18183
+ chargeType: string;
18184
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18185
+ amount: number;
18186
+ rate: number;
18187
+ referenceRate: number;
18188
+ elementStaticLocator: string;
18189
+ tag?: string | undefined;
18190
+ rateDifference?: number | undefined;
18191
+ reversalOfLocator?: string | undefined;
18192
+ }>, "many">;
18193
+ quoteNumber: z.ZodString;
18194
+ }, {
18195
+ tenantLocator: z.ZodString;
18196
+ accountLocator: z.ZodString;
18197
+ quoteLocator: z.ZodString;
18198
+ quoteState: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
18199
+ startTime: z.ZodString;
18200
+ endTime: z.ZodString;
18201
+ expirationTime: z.ZodString;
18202
+ durationBasis: z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>;
18203
+ items: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
18204
+ locator: z.ZodString;
18205
+ elementLocator: z.ZodString;
18206
+ chargeType: z.ZodString;
18207
+ chargeCategory: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"premium">, z.ZodLiteral<"tax">, z.ZodLiteral<"fee">, z.ZodLiteral<"credit">, z.ZodLiteral<"commission">, z.ZodLiteral<"flatPremium">, z.ZodLiteral<"flatTax">, z.ZodLiteral<"flatFee">, z.ZodLiteral<"flatCommission">, z.ZodLiteral<"cededPremium">, z.ZodLiteral<"flatCededPremium">, z.ZodLiteral<"nonFinancial">, z.ZodLiteral<"surcharge">]>;
18208
+ amount: z.ZodNumber;
18209
+ rate: z.ZodNumber;
18210
+ referenceRate: z.ZodNumber;
18211
+ tag: z.ZodOptional<z.ZodString>;
18212
+ rateDifference: z.ZodOptional<z.ZodNumber>;
18213
+ elementStaticLocator: z.ZodString;
18214
+ reversalOfLocator: z.ZodOptional<z.ZodString>;
18215
+ }, {
18216
+ locator: z.ZodString;
18217
+ reversalOfLocator: z.ZodOptional<z.ZodString>;
18218
+ elementLocator: z.ZodString;
18219
+ elementStaticLocator: z.ZodString;
18220
+ chargeCategory: z.ZodEnum<["none", "premium", "tax", "fee", "credit", "commission", "flatPremium", "flatTax", "flatFee", "flatCommission", "cededPremium", "flatCededPremium", "nonFinancial", "surcharge"]>;
18221
+ }>, "strip", z.ZodTypeAny, {
18222
+ locator: string;
18223
+ elementLocator: string;
18224
+ chargeType: string;
18225
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18226
+ amount: number;
18227
+ rate: number;
18228
+ referenceRate: number;
18229
+ elementStaticLocator: string;
18230
+ tag?: string | undefined;
18231
+ rateDifference?: number | undefined;
18232
+ reversalOfLocator?: string | undefined;
18233
+ }, {
18234
+ locator: string;
18235
+ elementLocator: string;
18236
+ chargeType: string;
18237
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18238
+ amount: number;
18239
+ rate: number;
18240
+ referenceRate: number;
18241
+ elementStaticLocator: string;
18242
+ tag?: string | undefined;
18243
+ rateDifference?: number | undefined;
18244
+ reversalOfLocator?: string | undefined;
18245
+ }>, "many">;
18246
+ }>, "strip", z.ZodTypeAny, {
18247
+ productName: string;
18248
+ startTime: string;
18249
+ endTime: string;
18250
+ expirationTime: string;
18251
+ durationBasis: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360";
18252
+ tenantLocator: string;
18253
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
18254
+ accountLocator: string;
18255
+ duration: number;
18256
+ quoteLocator: string;
18257
+ items: {
18258
+ locator: string;
18259
+ elementLocator: string;
18260
+ chargeType: string;
18261
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18262
+ amount: number;
18263
+ rate: number;
18264
+ referenceRate: number;
18265
+ elementStaticLocator: string;
18266
+ tag?: string | undefined;
18267
+ rateDifference?: number | undefined;
18268
+ reversalOfLocator?: string | undefined;
18269
+ }[];
18270
+ quoteNumber: string;
18271
+ }, {
18272
+ productName: string;
18273
+ startTime: string;
18274
+ endTime: string;
18275
+ expirationTime: string;
18276
+ durationBasis: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360";
18277
+ tenantLocator: string;
18278
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
18279
+ accountLocator: string;
18280
+ duration: number;
18281
+ quoteLocator: string;
18282
+ items: {
18283
+ locator: string;
18284
+ elementLocator: string;
18285
+ chargeType: string;
18286
+ chargeCategory: "none" | "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge" | "commission" | "flatPremium" | "flatTax" | "flatFee" | "flatCommission" | "flatCededPremium";
18287
+ amount: number;
18288
+ rate: number;
18289
+ referenceRate: number;
18290
+ elementStaticLocator: string;
18291
+ tag?: string | undefined;
18292
+ rateDifference?: number | undefined;
18293
+ reversalOfLocator?: string | undefined;
18294
+ }[];
18295
+ quoteNumber: string;
18296
+ }>;
18297
+
18298
+ export declare const quotePriceResponseSchema: z.ZodObject<{
18299
+ quoteLocator: z.ZodString;
18300
+ accountLocator: z.ZodString;
18301
+ quoteState: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
18302
+ productName: z.ZodString;
18303
+ startTime: z.ZodString;
18304
+ endTime: z.ZodString;
18305
+ duration: z.ZodOptional<z.ZodNumber>;
18306
+ durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
18307
+ items: z.ZodOptional<z.ZodArray<z.ZodObject<{
18308
+ locator: z.ZodString;
18309
+ elementLocator: z.ZodString;
18310
+ chargeType: z.ZodString;
18311
+ chargeCategory: z.ZodEnum<["premium", "tax", "fee", "credit", "cededPremium", "nonFinancial", "surcharge"]>;
18312
+ amount: z.ZodNumber;
18313
+ rate: z.ZodNumber;
18314
+ referenceRate: z.ZodNumber;
18315
+ elementStaticLocator: z.ZodString;
18316
+ tag: z.ZodOptional<z.ZodString>;
18317
+ rateDifference: z.ZodOptional<z.ZodNumber>;
18318
+ reversalOfLocator: z.ZodOptional<z.ZodString>;
18319
+ }, "strip", z.ZodTypeAny, {
18320
+ locator: string;
18321
+ elementLocator: string;
18322
+ chargeType: string;
18323
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18324
+ amount: number;
18325
+ rate: number;
18326
+ referenceRate: number;
18327
+ elementStaticLocator: string;
18328
+ tag?: string | undefined;
18329
+ rateDifference?: number | undefined;
18330
+ reversalOfLocator?: string | undefined;
18331
+ }, {
18332
+ locator: string;
18333
+ elementLocator: string;
18334
+ chargeType: string;
18335
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18336
+ amount: number;
18337
+ rate: number;
18338
+ referenceRate: number;
18339
+ elementStaticLocator: string;
18340
+ tag?: string | undefined;
18341
+ rateDifference?: number | undefined;
18342
+ reversalOfLocator?: string | undefined;
18343
+ }>, "many">>;
18344
+ }, "strip", z.ZodTypeAny, {
18345
+ productName: string;
18346
+ startTime: string;
18347
+ endTime: string;
18348
+ quoteState: string;
18349
+ accountLocator: string;
18350
+ quoteLocator: string;
18351
+ durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
18352
+ duration?: number | undefined;
18353
+ items?: {
18354
+ locator: string;
18355
+ elementLocator: string;
18356
+ chargeType: string;
18357
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18358
+ amount: number;
18359
+ rate: number;
18360
+ referenceRate: number;
18361
+ elementStaticLocator: string;
18362
+ tag?: string | undefined;
18363
+ rateDifference?: number | undefined;
18364
+ reversalOfLocator?: string | undefined;
18365
+ }[] | undefined;
18366
+ }, {
18367
+ productName: string;
18368
+ startTime: string;
18369
+ endTime: string;
18370
+ quoteState: string;
18371
+ accountLocator: string;
18372
+ quoteLocator: string;
18373
+ durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
18374
+ duration?: number | undefined;
18375
+ items?: {
18376
+ locator: string;
18377
+ elementLocator: string;
18378
+ chargeType: string;
18379
+ chargeCategory: "premium" | "tax" | "fee" | "credit" | "cededPremium" | "nonFinancial" | "surcharge";
18380
+ amount: number;
18381
+ rate: number;
18382
+ referenceRate: number;
18383
+ elementStaticLocator: string;
18384
+ tag?: string | undefined;
18385
+ rateDifference?: number | undefined;
18386
+ reversalOfLocator?: string | undefined;
18387
+ }[] | undefined;
18388
+ }>;
18389
+
18390
+ export declare type QuoteRequest = z.infer<typeof quoteRequestSchema>;
18391
+
18392
+ export declare const quoteRequestSchema: z.ZodObject<{
18393
+ productName: z.ZodOptional<z.ZodString>;
18394
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
18395
+ startTime: z.ZodOptional<z.ZodString>;
18396
+ endTime: z.ZodOptional<z.ZodString>;
18397
+ currency: z.ZodOptional<z.ZodString>;
18398
+ expirationTime: z.ZodOptional<z.ZodString>;
18399
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18400
+ elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
18401
+ locator: z.ZodString;
18402
+ removeCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18403
+ removeData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18404
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18405
+ setData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18406
+ }, "strip", z.ZodTypeAny, {
18407
+ locator: string;
18408
+ removeCoverageTerms?: Record<string, unknown> | undefined;
18409
+ removeData?: Record<string, unknown> | undefined;
18410
+ setCoverageTerms?: Record<string, unknown> | undefined;
18411
+ setData?: Record<string, unknown> | undefined;
18412
+ }, {
18413
+ locator: string;
18414
+ removeCoverageTerms?: Record<string, unknown> | undefined;
18415
+ removeData?: Record<string, unknown> | undefined;
18416
+ setCoverageTerms?: Record<string, unknown> | undefined;
18417
+ setData?: Record<string, unknown> | undefined;
18418
+ }>, "many">>;
18419
+ timezone: z.ZodOptional<z.ZodString>;
18420
+ billingPlan: z.ZodOptional<z.ZodString>;
18421
+ defaultTermDuration: z.ZodOptional<z.ZodString>;
18422
+ installmentPlan: z.ZodOptional<z.ZodString>;
18423
+ durationBasis: z.ZodOptional<z.ZodString>;
18424
+ setCoverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18425
+ preferences: z.ZodOptional<z.ZodObject<{
18426
+ billingPreferences: z.ZodOptional<z.ZodObject<{
18427
+ billingPlanName: z.ZodOptional<z.ZodString>;
18428
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
18429
+ }, "strip", z.ZodTypeAny, {
18430
+ billingPlanName?: string | undefined;
18431
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18432
+ }, {
18433
+ billingPlanName?: string | undefined;
18434
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18435
+ }>>;
18436
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
18437
+ installmentPlanName: z.ZodOptional<z.ZodString>;
18438
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
18439
+ anchorTime: z.ZodOptional<z.ZodString>;
18440
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
18441
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
18442
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
18443
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
18444
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
18445
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
18446
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
18447
+ weekOfMonth: z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>;
18448
+ installmentPlanWeights: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
18449
+ }, "strip", z.ZodTypeAny, {
18450
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18451
+ dayOfMonth?: number | undefined;
18452
+ anchorTime?: string | undefined;
18453
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18454
+ installmentPlanName?: string | undefined;
18455
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18456
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18457
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18458
+ dueLeadDays?: number | undefined;
18459
+ generateLeadDays?: number | undefined;
18460
+ maxInstallmentsPerTerm?: number | undefined;
18461
+ installmentPlanWeights?: number[] | undefined;
18462
+ }, {
18463
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18464
+ dayOfMonth?: number | undefined;
18465
+ anchorTime?: string | undefined;
18466
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18467
+ installmentPlanName?: string | undefined;
18468
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18469
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18470
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18471
+ dueLeadDays?: number | undefined;
18472
+ generateLeadDays?: number | undefined;
18473
+ maxInstallmentsPerTerm?: number | undefined;
18474
+ installmentPlanWeights?: number[] | undefined;
18475
+ }>>;
18476
+ }, "strip", z.ZodTypeAny, {
18477
+ billingPreferences?: {
18478
+ billingPlanName?: string | undefined;
18479
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18480
+ } | undefined;
18481
+ installmentPreferences?: {
18482
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18483
+ dayOfMonth?: number | undefined;
18484
+ anchorTime?: string | undefined;
18485
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18486
+ installmentPlanName?: string | undefined;
18487
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18488
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18489
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18490
+ dueLeadDays?: number | undefined;
18491
+ generateLeadDays?: number | undefined;
18492
+ maxInstallmentsPerTerm?: number | undefined;
18493
+ installmentPlanWeights?: number[] | undefined;
18494
+ } | undefined;
18495
+ }, {
18496
+ billingPreferences?: {
18497
+ billingPlanName?: string | undefined;
18498
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18499
+ } | undefined;
18500
+ installmentPreferences?: {
18501
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18502
+ dayOfMonth?: number | undefined;
18503
+ anchorTime?: string | undefined;
18504
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18505
+ installmentPlanName?: string | undefined;
18506
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18507
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18508
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18509
+ dueLeadDays?: number | undefined;
18510
+ generateLeadDays?: number | undefined;
18511
+ maxInstallmentsPerTerm?: number | undefined;
18512
+ installmentPlanWeights?: number[] | undefined;
18513
+ } | undefined;
18514
+ }>>;
18515
+ }, "strip", z.ZodTypeAny, {
18516
+ defaultTermDuration?: string | undefined;
18517
+ elements?: {
18518
+ locator: string;
18519
+ removeCoverageTerms?: Record<string, unknown> | undefined;
18520
+ removeData?: Record<string, unknown> | undefined;
18521
+ setCoverageTerms?: Record<string, unknown> | undefined;
18522
+ setData?: Record<string, unknown> | undefined;
18523
+ }[] | undefined;
18524
+ setCoverageTerms?: Record<string, unknown> | undefined;
18525
+ setData?: Record<string, unknown> | undefined;
18526
+ productName?: string | undefined;
18527
+ delinquencyPlanName?: string | undefined;
18528
+ startTime?: string | undefined;
18529
+ endTime?: string | undefined;
18530
+ currency?: string | undefined;
18531
+ expirationTime?: string | undefined;
18532
+ timezone?: string | undefined;
18533
+ billingPlan?: string | undefined;
18534
+ installmentPlan?: string | undefined;
18535
+ durationBasis?: string | undefined;
18536
+ preferences?: {
18537
+ billingPreferences?: {
18538
+ billingPlanName?: string | undefined;
18539
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18540
+ } | undefined;
18541
+ installmentPreferences?: {
18542
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18543
+ dayOfMonth?: number | undefined;
18544
+ anchorTime?: string | undefined;
18545
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18546
+ installmentPlanName?: string | undefined;
18547
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18548
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18549
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18550
+ dueLeadDays?: number | undefined;
18551
+ generateLeadDays?: number | undefined;
18552
+ maxInstallmentsPerTerm?: number | undefined;
18553
+ installmentPlanWeights?: number[] | undefined;
18554
+ } | undefined;
18555
+ } | undefined;
18556
+ }, {
18557
+ defaultTermDuration?: string | undefined;
18558
+ elements?: {
18559
+ locator: string;
18560
+ removeCoverageTerms?: Record<string, unknown> | undefined;
18561
+ removeData?: Record<string, unknown> | undefined;
18562
+ setCoverageTerms?: Record<string, unknown> | undefined;
18563
+ setData?: Record<string, unknown> | undefined;
18564
+ }[] | undefined;
18565
+ setCoverageTerms?: Record<string, unknown> | undefined;
18566
+ setData?: Record<string, unknown> | undefined;
18567
+ productName?: string | undefined;
18568
+ delinquencyPlanName?: string | undefined;
18569
+ startTime?: string | undefined;
18570
+ endTime?: string | undefined;
18571
+ currency?: string | undefined;
18572
+ expirationTime?: string | undefined;
18573
+ timezone?: string | undefined;
18574
+ billingPlan?: string | undefined;
18575
+ installmentPlan?: string | undefined;
18576
+ durationBasis?: string | undefined;
18577
+ preferences?: {
18578
+ billingPreferences?: {
18579
+ billingPlanName?: string | undefined;
18580
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18581
+ } | undefined;
18582
+ installmentPreferences?: {
18583
+ weekOfMonth: "none" | "first" | "second" | "third" | "fourth" | "fifth";
18584
+ dayOfMonth?: number | undefined;
18585
+ anchorTime?: string | undefined;
18586
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18587
+ installmentPlanName?: string | undefined;
18588
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18589
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18590
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18591
+ dueLeadDays?: number | undefined;
18592
+ generateLeadDays?: number | undefined;
18593
+ maxInstallmentsPerTerm?: number | undefined;
18594
+ installmentPlanWeights?: number[] | undefined;
18595
+ } | undefined;
18596
+ } | undefined;
18597
+ }>;
18598
+
18599
+ export declare type QuoteResponse = z.infer<typeof quoteResponseSchema>;
18600
+
18601
+ export declare const QuoteResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
18602
+ locator: z.ZodString;
18603
+ quoteState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"earlyUnderwritten">, z.ZodLiteral<"priced">, z.ZodLiteral<"underwritten">, z.ZodLiteral<"accepted">, z.ZodLiteral<"issued">, z.ZodLiteral<"underwrittenBlocked">, z.ZodLiteral<"declined">, z.ZodLiteral<"rejected">, z.ZodLiteral<"refused">, z.ZodLiteral<"discarded">]>;
18604
+ productName: z.ZodString;
18605
+ accountLocator: z.ZodString;
18606
+ startTime: z.ZodOptional<z.ZodString>;
18607
+ endTime: z.ZodOptional<z.ZodString>;
18608
+ timezone: z.ZodOptional<z.ZodString>;
18609
+ currency: z.ZodOptional<z.ZodString>;
18610
+ underwritingStatus: z.ZodOptional<z.ZodString>;
18611
+ expirationTime: z.ZodOptional<z.ZodString>;
18612
+ element: z.ZodType<Element_3, z.ZodTypeDef, Element_3>;
18613
+ duration: z.ZodOptional<z.ZodNumber>;
18614
+ 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">]>>;
18615
+ acceptedTime: z.ZodOptional<z.ZodString>;
18616
+ issuedTime: z.ZodOptional<z.ZodString>;
18617
+ policyLocator: z.ZodOptional<z.ZodString>;
18618
+ validationResult: z.ZodOptional<z.ZodObject<{
18619
+ validationItems: z.ZodArray<z.ZodObject<{
18620
+ elementType: z.ZodString;
18621
+ locator: z.ZodOptional<z.ZodString>;
18622
+ errors: z.ZodArray<z.ZodString, "many">;
18623
+ }, "strip", z.ZodTypeAny, {
18624
+ elementType: string;
18625
+ errors: string[];
18626
+ locator?: string | undefined;
18627
+ }, {
18628
+ elementType: string;
18629
+ errors: string[];
18630
+ locator?: string | undefined;
18631
+ }>, "many">;
18632
+ success: z.ZodBoolean;
18633
+ }, "strip", z.ZodTypeAny, {
18634
+ validationItems: {
18635
+ elementType: string;
18636
+ errors: string[];
18637
+ locator?: string | undefined;
18638
+ }[];
18639
+ success: boolean;
18640
+ }, {
18641
+ validationItems: {
18642
+ elementType: string;
18643
+ errors: string[];
18644
+ locator?: string | undefined;
18645
+ }[];
18646
+ success: boolean;
18647
+ }>>;
18648
+ preferences: z.ZodOptional<z.ZodObject<{
18649
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
18650
+ 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">]>>;
18651
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
18652
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
18653
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
18654
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
18655
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
18656
+ installmentPlanName: z.ZodOptional<z.ZodString>;
18657
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
18658
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
18659
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
18660
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
18661
+ anchorTime: z.ZodOptional<z.ZodString>;
18662
+ }, "strip", z.ZodTypeAny, {
18663
+ installmentWeights: number[];
18664
+ dayOfMonth?: number | undefined;
18665
+ anchorTime?: string | undefined;
18666
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18667
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18668
+ installmentPlanName?: string | undefined;
18669
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18670
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18671
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18672
+ dueLeadDays?: number | undefined;
18673
+ generateLeadDays?: number | undefined;
18674
+ maxInstallmentsPerTerm?: number | undefined;
18675
+ }, {
18676
+ installmentWeights: number[];
18677
+ dayOfMonth?: number | undefined;
18678
+ anchorTime?: string | undefined;
18679
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18680
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18681
+ installmentPlanName?: string | undefined;
18682
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18683
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18684
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18685
+ dueLeadDays?: number | undefined;
18686
+ generateLeadDays?: number | undefined;
18687
+ maxInstallmentsPerTerm?: number | undefined;
18688
+ }>>;
18689
+ billingPreferences: z.ZodOptional<z.ZodObject<{
18690
+ billingPlanName: z.ZodOptional<z.ZodString>;
18691
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
18692
+ }, "strip", z.ZodTypeAny, {
18693
+ billingPlanName?: string | undefined;
18694
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18695
+ }, {
18696
+ billingPlanName?: string | undefined;
18697
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18698
+ }>>;
18699
+ }, "strip", z.ZodTypeAny, {
18700
+ billingPreferences?: {
18701
+ billingPlanName?: string | undefined;
18702
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18703
+ } | undefined;
18704
+ installmentPreferences?: {
18705
+ installmentWeights: number[];
18706
+ dayOfMonth?: number | undefined;
18707
+ anchorTime?: string | undefined;
18708
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18709
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18710
+ installmentPlanName?: string | undefined;
18711
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18712
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18713
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18714
+ dueLeadDays?: number | undefined;
18715
+ generateLeadDays?: number | undefined;
18716
+ maxInstallmentsPerTerm?: number | undefined;
18717
+ } | undefined;
18718
+ }, {
18719
+ billingPreferences?: {
18720
+ billingPlanName?: string | undefined;
18721
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18722
+ } | undefined;
18723
+ installmentPreferences?: {
18724
+ installmentWeights: number[];
18725
+ dayOfMonth?: number | undefined;
18726
+ anchorTime?: string | undefined;
18727
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18728
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18729
+ installmentPlanName?: string | undefined;
18730
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18731
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18732
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18733
+ dueLeadDays?: number | undefined;
18734
+ generateLeadDays?: number | undefined;
18735
+ maxInstallmentsPerTerm?: number | undefined;
18736
+ } | undefined;
18737
+ }>>;
18738
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
18739
+ billingTrigger: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>>;
18740
+ groupLocator: z.ZodString;
18741
+ autoRenewalPlanName: z.ZodOptional<z.ZodString>;
18742
+ billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
18743
+ quickQuoteLocator: z.ZodOptional<z.ZodString>;
18744
+ region: z.ZodOptional<z.ZodString>;
18745
+ quoteNumber: z.ZodOptional<z.ZodString>;
18746
+ policyNumber: z.ZodString;
18747
+ static: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18748
+ }, {
18749
+ locator: z.ZodString;
18750
+ quickQuoteLocator: z.ZodString;
18751
+ quoteState: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
18752
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
18753
+ billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
18754
+ durationBasis: z.ZodOptional<z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>>;
18755
+ policyLocator: z.ZodString;
18756
+ preferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
18757
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
18758
+ 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">]>>;
18759
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
18760
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
18761
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
18762
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
18763
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
18764
+ installmentPlanName: z.ZodOptional<z.ZodString>;
18765
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
18766
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
18767
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
18768
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
18769
+ anchorTime: z.ZodOptional<z.ZodString>;
18770
+ }, "strip", z.ZodTypeAny, {
18771
+ installmentWeights: number[];
18772
+ dayOfMonth?: number | undefined;
18773
+ anchorTime?: string | undefined;
18774
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18775
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18776
+ installmentPlanName?: string | undefined;
18777
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18778
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18779
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18780
+ dueLeadDays?: number | undefined;
18781
+ generateLeadDays?: number | undefined;
18782
+ maxInstallmentsPerTerm?: number | undefined;
18783
+ }, {
18784
+ installmentWeights: number[];
18785
+ dayOfMonth?: number | undefined;
18786
+ anchorTime?: string | undefined;
18787
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18788
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18789
+ installmentPlanName?: string | undefined;
18790
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18791
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18792
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18793
+ dueLeadDays?: number | undefined;
18794
+ generateLeadDays?: number | undefined;
18795
+ maxInstallmentsPerTerm?: number | undefined;
18796
+ }>>;
18797
+ billingPreferences: z.ZodOptional<z.ZodObject<{
18798
+ billingPlanName: z.ZodOptional<z.ZodString>;
18799
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
18800
+ }, "strip", z.ZodTypeAny, {
18801
+ billingPlanName?: string | undefined;
18802
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18803
+ }, {
18804
+ billingPlanName?: string | undefined;
18805
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
18806
+ }>>;
18807
+ }, {
18808
+ installmentPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
18809
+ 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">]>>;
18810
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
18811
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
18812
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
18813
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
18814
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
18815
+ installmentPlanName: z.ZodOptional<z.ZodString>;
18816
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
18817
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
18818
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
18819
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
18820
+ anchorTime: z.ZodOptional<z.ZodString>;
18821
+ }, {
18822
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
18823
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
18824
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
18825
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
18826
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
18827
+ }>, "strip", z.ZodTypeAny, {
18828
+ installmentWeights: number[];
18829
+ dayOfMonth?: number | undefined;
18830
+ anchorTime?: string | undefined;
18831
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18832
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18833
+ installmentPlanName?: string | undefined;
18834
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18835
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18836
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18837
+ dueLeadDays?: number | undefined;
18838
+ generateLeadDays?: number | undefined;
18839
+ maxInstallmentsPerTerm?: number | undefined;
18840
+ }, {
18841
+ installmentWeights: number[];
18842
+ dayOfMonth?: number | undefined;
18843
+ anchorTime?: string | undefined;
18844
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18845
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18846
+ installmentPlanName?: string | undefined;
18847
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18848
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18849
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18850
+ dueLeadDays?: number | undefined;
18851
+ generateLeadDays?: number | undefined;
18852
+ maxInstallmentsPerTerm?: number | undefined;
18853
+ }>>;
18854
+ billingPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
18855
+ billingPlanName: z.ZodOptional<z.ZodString>;
18856
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
18857
+ }, {
18858
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
18859
+ }>, "strip", z.ZodTypeAny, {
18860
+ billingLevel: "account" | "inherit" | "policy";
18861
+ billingPlanName?: string | undefined;
18862
+ }, {
18863
+ billingLevel: "account" | "inherit" | "policy";
18864
+ billingPlanName?: string | undefined;
18865
+ }>>;
18866
+ }>, "strip", z.ZodTypeAny, {
18867
+ billingPreferences?: {
18868
+ billingLevel: "account" | "inherit" | "policy";
18869
+ billingPlanName?: string | undefined;
18870
+ } | undefined;
18871
+ installmentPreferences?: {
18872
+ installmentWeights: number[];
18873
+ dayOfMonth?: number | undefined;
18874
+ anchorTime?: string | undefined;
18875
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18876
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18877
+ installmentPlanName?: string | undefined;
18878
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18879
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18880
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18881
+ dueLeadDays?: number | undefined;
18882
+ generateLeadDays?: number | undefined;
18883
+ maxInstallmentsPerTerm?: number | undefined;
18884
+ } | undefined;
18885
+ }, {
18886
+ billingPreferences?: {
18887
+ billingLevel: "account" | "inherit" | "policy";
18888
+ billingPlanName?: string | undefined;
18889
+ } | undefined;
18890
+ installmentPreferences?: {
18891
+ installmentWeights: number[];
18892
+ dayOfMonth?: number | undefined;
18893
+ anchorTime?: string | undefined;
18894
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18895
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18896
+ installmentPlanName?: string | undefined;
18897
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18898
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18899
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18900
+ dueLeadDays?: number | undefined;
18901
+ generateLeadDays?: number | undefined;
18902
+ maxInstallmentsPerTerm?: number | undefined;
18903
+ } | undefined;
18904
+ }>>;
18905
+ validationResult: z.ZodOptional<z.ZodObject<{
18906
+ validationItems: z.ZodArray<z.ZodObject<{
18907
+ elementType: z.ZodString;
18908
+ locator: z.ZodOptional<z.ZodString>;
18909
+ errors: z.ZodArray<z.ZodString, "many">;
18910
+ }, "strip", z.ZodTypeAny, {
18911
+ elementType: string;
18912
+ errors: string[];
18913
+ locator?: string | undefined;
18914
+ }, {
18915
+ elementType: string;
18916
+ errors: string[];
18917
+ locator?: string | undefined;
18918
+ }>, "many">;
18919
+ success: z.ZodBoolean;
18920
+ }, "strip", z.ZodTypeAny, {
18921
+ validationItems: {
18922
+ elementType: string;
18923
+ errors: string[];
18924
+ locator?: string | undefined;
18925
+ }[];
18926
+ success: boolean;
18927
+ }, {
18928
+ validationItems: {
18929
+ elementType: string;
18930
+ errors: string[];
18931
+ locator?: string | undefined;
18932
+ }[];
18933
+ success: boolean;
18934
+ }>>;
18935
+ static: z.ZodRecord<z.ZodString, z.ZodAny>;
18936
+ issuedTime: z.ZodOptional<z.ZodString>;
18937
+ startTime: z.ZodOptional<z.ZodString>;
18938
+ endTime: z.ZodOptional<z.ZodString>;
18939
+ acceptedTime: z.ZodOptional<z.ZodString>;
18940
+ expirationTime: z.ZodOptional<z.ZodString>;
18941
+ }>, "strip", z.ZodTypeAny, {
18942
+ locator: string;
18943
+ billingLevel: "account" | "inherit" | "policy";
18944
+ element: Element_3;
18945
+ productName: string;
18946
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
18947
+ accountLocator: string;
18948
+ policyLocator: string;
18949
+ groupLocator: string;
18950
+ static: Record<string, any>;
18951
+ quickQuoteLocator: string;
18952
+ policyNumber: string;
18953
+ delinquencyPlanName?: string | undefined;
18954
+ startTime?: string | undefined;
18955
+ endTime?: string | undefined;
18956
+ currency?: string | undefined;
18957
+ expirationTime?: string | undefined;
18958
+ timezone?: string | undefined;
18959
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
18960
+ preferences?: {
18961
+ billingPreferences?: {
18962
+ billingLevel: "account" | "inherit" | "policy";
18963
+ billingPlanName?: string | undefined;
18964
+ } | undefined;
18965
+ installmentPreferences?: {
18966
+ installmentWeights: number[];
18967
+ dayOfMonth?: number | undefined;
18968
+ anchorTime?: string | undefined;
18969
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
18970
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
18971
+ installmentPlanName?: string | undefined;
18972
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
18973
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
18974
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
18975
+ dueLeadDays?: number | undefined;
18976
+ generateLeadDays?: number | undefined;
18977
+ maxInstallmentsPerTerm?: number | undefined;
18978
+ } | undefined;
18979
+ } | undefined;
18980
+ underwritingStatus?: string | undefined;
18981
+ duration?: number | undefined;
18982
+ issuedTime?: string | undefined;
18983
+ validationResult?: {
18984
+ validationItems: {
18985
+ elementType: string;
18986
+ errors: string[];
18987
+ locator?: string | undefined;
18988
+ }[];
18989
+ success: boolean;
18990
+ } | undefined;
18991
+ autoRenewalPlanName?: string | undefined;
18992
+ billingTrigger?: "accept" | "issue" | undefined;
18993
+ region?: string | undefined;
18994
+ quoteNumber?: string | undefined;
18995
+ acceptedTime?: string | undefined;
18996
+ }, {
18997
+ locator: string;
18998
+ billingLevel: "account" | "inherit" | "policy";
18999
+ element: Element_3;
19000
+ productName: string;
19001
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
19002
+ accountLocator: string;
19003
+ policyLocator: string;
19004
+ groupLocator: string;
19005
+ static: Record<string, any>;
19006
+ quickQuoteLocator: string;
19007
+ policyNumber: string;
19008
+ delinquencyPlanName?: string | undefined;
19009
+ startTime?: string | undefined;
19010
+ endTime?: string | undefined;
19011
+ currency?: string | undefined;
19012
+ expirationTime?: string | undefined;
19013
+ timezone?: string | undefined;
19014
+ durationBasis?: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360" | undefined;
19015
+ preferences?: {
19016
+ billingPreferences?: {
19017
+ billingLevel: "account" | "inherit" | "policy";
19018
+ billingPlanName?: string | undefined;
19019
+ } | undefined;
19020
+ installmentPreferences?: {
19021
+ installmentWeights: number[];
19022
+ dayOfMonth?: number | undefined;
19023
+ anchorTime?: string | undefined;
19024
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19025
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19026
+ installmentPlanName?: string | undefined;
19027
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19028
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19029
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19030
+ dueLeadDays?: number | undefined;
19031
+ generateLeadDays?: number | undefined;
19032
+ maxInstallmentsPerTerm?: number | undefined;
19033
+ } | undefined;
19034
+ } | undefined;
19035
+ underwritingStatus?: string | undefined;
19036
+ duration?: number | undefined;
19037
+ issuedTime?: string | undefined;
19038
+ validationResult?: {
19039
+ validationItems: {
19040
+ elementType: string;
19041
+ errors: string[];
19042
+ locator?: string | undefined;
19043
+ }[];
19044
+ success: boolean;
19045
+ } | undefined;
19046
+ autoRenewalPlanName?: string | undefined;
19047
+ billingTrigger?: "accept" | "issue" | undefined;
19048
+ region?: string | undefined;
19049
+ quoteNumber?: string | undefined;
19050
+ acceptedTime?: string | undefined;
19051
+ }>;
19052
+
19053
+ export declare const quoteResponseSchema: z.ZodObject<{
19054
+ locator: z.ZodString;
19055
+ quoteState: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
19056
+ productName: z.ZodString;
19057
+ accountLocator: z.ZodString;
19058
+ startTime: z.ZodOptional<z.ZodString>;
19059
+ endTime: z.ZodOptional<z.ZodString>;
19060
+ timezone: z.ZodOptional<z.ZodString>;
19061
+ currency: z.ZodOptional<z.ZodString>;
19062
+ underwritingStatus: z.ZodOptional<z.ZodEnum<["none", "blocked", "declined", "rejected", "approved"]>>;
19063
+ expirationTime: z.ZodOptional<z.ZodString>;
19064
+ element: z.ZodOptional<z.ZodType<{
19065
+ locator: string;
19066
+ type: string;
19067
+ staticLocator: string;
19068
+ data?: Record<string, any> | undefined;
19069
+ coverageTerms?: Record<string, string> | undefined;
19070
+ parentLocator?: string | undefined;
19071
+ rootLocator?: string | undefined;
19072
+ tenantLocator?: string | undefined;
19073
+ originalEffectiveTime?: string | undefined;
19074
+ } & {
19075
+ elements?: ({
19076
+ locator: string;
19077
+ type: string;
19078
+ staticLocator: string;
19079
+ data?: Record<string, any> | undefined;
19080
+ coverageTerms?: Record<string, string> | undefined;
19081
+ parentLocator?: string | undefined;
19082
+ rootLocator?: string | undefined;
19083
+ tenantLocator?: string | undefined;
19084
+ originalEffectiveTime?: string | undefined;
19085
+ } & any)[];
19086
+ }, z.ZodTypeDef, {
19087
+ locator: string;
19088
+ type: string;
19089
+ staticLocator: string;
19090
+ data?: Record<string, any> | undefined;
19091
+ coverageTerms?: Record<string, string> | undefined;
19092
+ parentLocator?: string | undefined;
19093
+ rootLocator?: string | undefined;
19094
+ tenantLocator?: string | undefined;
19095
+ originalEffectiveTime?: string | undefined;
19096
+ } & {
19097
+ elements?: ({
19098
+ locator: string;
19099
+ type: string;
19100
+ staticLocator: string;
19101
+ data?: Record<string, any> | undefined;
19102
+ coverageTerms?: Record<string, string> | undefined;
19103
+ parentLocator?: string | undefined;
19104
+ rootLocator?: string | undefined;
19105
+ tenantLocator?: string | undefined;
19106
+ originalEffectiveTime?: string | undefined;
19107
+ } & any)[];
19108
+ }>>;
19109
+ type: z.ZodOptional<z.ZodString>;
19110
+ duration: z.ZodOptional<z.ZodNumber>;
19111
+ durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
19112
+ boundTime: z.ZodOptional<z.ZodString>;
19113
+ issuedTime: z.ZodOptional<z.ZodString>;
19114
+ policyLocator: z.ZodOptional<z.ZodString>;
19115
+ validationResult: z.ZodOptional<z.ZodObject<{
19116
+ validationItems: z.ZodOptional<z.ZodArray<z.ZodObject<{
19117
+ elementType: z.ZodOptional<z.ZodString>;
19118
+ locator: z.ZodOptional<z.ZodString>;
19119
+ errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19120
+ }, "strip", z.ZodTypeAny, {
19121
+ elementType?: string | undefined;
19122
+ locator?: string | undefined;
19123
+ errors?: string[] | undefined;
19124
+ }, {
19125
+ elementType?: string | undefined;
19126
+ locator?: string | undefined;
19127
+ errors?: string[] | undefined;
19128
+ }>, "many">>;
19129
+ success: z.ZodOptional<z.ZodBoolean>;
19130
+ }, "strip", z.ZodTypeAny, {
19131
+ validationItems?: {
19132
+ elementType?: string | undefined;
19133
+ locator?: string | undefined;
19134
+ errors?: string[] | undefined;
19135
+ }[] | undefined;
19136
+ success?: boolean | undefined;
19137
+ }, {
19138
+ validationItems?: {
19139
+ elementType?: string | undefined;
19140
+ locator?: string | undefined;
19141
+ errors?: string[] | undefined;
19142
+ }[] | undefined;
19143
+ success?: boolean | undefined;
19144
+ }>>;
19145
+ preferences: z.ZodOptional<z.ZodAny>;
19146
+ delinquencyPlanName: z.ZodOptional<z.ZodString>;
19147
+ autoRenewalPlanName: z.ZodOptional<z.ZodString>;
19148
+ billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
19149
+ billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
19150
+ coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
19151
+ groupLocator: z.ZodOptional<z.ZodString>;
19152
+ }, "strip", z.ZodTypeAny, {
19153
+ locator: string;
19154
+ productName: string;
19155
+ quoteState: string;
19156
+ accountLocator: string;
19157
+ type?: string | undefined;
19158
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19159
+ coverageTerms?: Record<string, string> | undefined;
19160
+ element?: ({
19161
+ locator: string;
19162
+ type: string;
19163
+ staticLocator: string;
19164
+ data?: Record<string, any> | undefined;
19165
+ coverageTerms?: Record<string, string> | undefined;
19166
+ parentLocator?: string | undefined;
19167
+ rootLocator?: string | undefined;
19168
+ tenantLocator?: string | undefined;
19169
+ originalEffectiveTime?: string | undefined;
19170
+ } & {
19171
+ elements?: ({
19172
+ locator: string;
19173
+ type: string;
19174
+ staticLocator: string;
19175
+ data?: Record<string, any> | undefined;
19176
+ coverageTerms?: Record<string, string> | undefined;
19177
+ parentLocator?: string | undefined;
19178
+ rootLocator?: string | undefined;
19179
+ tenantLocator?: string | undefined;
19180
+ originalEffectiveTime?: string | undefined;
19181
+ } & any)[];
19182
+ }) | undefined;
19183
+ delinquencyPlanName?: string | undefined;
19184
+ startTime?: string | undefined;
19185
+ endTime?: string | undefined;
19186
+ currency?: string | undefined;
19187
+ expirationTime?: string | undefined;
19188
+ timezone?: string | undefined;
19189
+ durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
19190
+ preferences?: any;
19191
+ underwritingStatus?: "none" | "blocked" | "declined" | "rejected" | "approved" | undefined;
19192
+ duration?: number | undefined;
19193
+ boundTime?: string | undefined;
19194
+ issuedTime?: string | undefined;
19195
+ policyLocator?: string | undefined;
19196
+ validationResult?: {
19197
+ validationItems?: {
19198
+ elementType?: string | undefined;
19199
+ locator?: string | undefined;
19200
+ errors?: string[] | undefined;
19201
+ }[] | undefined;
19202
+ success?: boolean | undefined;
19203
+ } | undefined;
19204
+ autoRenewalPlanName?: string | undefined;
19205
+ billingTrigger?: "accept" | "issue" | undefined;
19206
+ groupLocator?: string | undefined;
19207
+ }, {
19208
+ locator: string;
19209
+ productName: string;
19210
+ quoteState: string;
19211
+ accountLocator: string;
19212
+ type?: string | undefined;
19213
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19214
+ coverageTerms?: Record<string, string> | undefined;
19215
+ element?: ({
19216
+ locator: string;
19217
+ type: string;
19218
+ staticLocator: string;
19219
+ data?: Record<string, any> | undefined;
19220
+ coverageTerms?: Record<string, string> | undefined;
19221
+ parentLocator?: string | undefined;
19222
+ rootLocator?: string | undefined;
19223
+ tenantLocator?: string | undefined;
19224
+ originalEffectiveTime?: string | undefined;
19225
+ } & {
19226
+ elements?: ({
19227
+ locator: string;
19228
+ type: string;
19229
+ staticLocator: string;
19230
+ data?: Record<string, any> | undefined;
19231
+ coverageTerms?: Record<string, string> | undefined;
19232
+ parentLocator?: string | undefined;
19233
+ rootLocator?: string | undefined;
19234
+ tenantLocator?: string | undefined;
19235
+ originalEffectiveTime?: string | undefined;
19236
+ } & any)[];
19237
+ }) | undefined;
19238
+ delinquencyPlanName?: string | undefined;
19239
+ startTime?: string | undefined;
19240
+ endTime?: string | undefined;
19241
+ currency?: string | undefined;
19242
+ expirationTime?: string | undefined;
19243
+ timezone?: string | undefined;
19244
+ durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
19245
+ preferences?: any;
19246
+ underwritingStatus?: "none" | "blocked" | "declined" | "rejected" | "approved" | undefined;
19247
+ duration?: number | undefined;
19248
+ boundTime?: string | undefined;
19249
+ issuedTime?: string | undefined;
19250
+ policyLocator?: string | undefined;
19251
+ validationResult?: {
19252
+ validationItems?: {
19253
+ elementType?: string | undefined;
19254
+ locator?: string | undefined;
19255
+ errors?: string[] | undefined;
19256
+ }[] | undefined;
19257
+ success?: boolean | undefined;
19258
+ } | undefined;
19259
+ autoRenewalPlanName?: string | undefined;
19260
+ billingTrigger?: "accept" | "issue" | undefined;
19261
+ groupLocator?: string | undefined;
19262
+ }>;
19263
+
19264
+ export declare type QuoteState = z.infer<typeof quoteStateSchema>;
19265
+
19266
+ export declare const QuoteStateEnumSchema: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
19267
+
19268
+ export declare const quoteStateEnumSchema: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
19269
+
19270
+ export declare const quoteStateSchema: z.ZodUnion<[z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>, z.ZodString]>;
19271
+
19272
+ export declare type QuoteUnderwritingFlagsResponse = z.infer<typeof quoteUnderwritingFlagsResponse>;
19273
+
19274
+ export declare const quoteUnderwritingFlagsResponse: z.ZodObject<{
19275
+ quoteLocator: z.ZodString;
19276
+ clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<{
19277
+ locator: z.ZodString;
19278
+ elementLocator: z.ZodOptional<z.ZodString>;
19279
+ clearedBy: z.ZodOptional<z.ZodString>;
19280
+ clearedTime: z.ZodOptional<z.ZodString>;
19281
+ createdBy: z.ZodOptional<z.ZodString>;
19282
+ createdTime: z.ZodOptional<z.ZodString>;
19283
+ level: z.ZodOptional<z.ZodEnum<["info", "block", "decline", "reject", "approve"]>>;
19284
+ note: z.ZodOptional<z.ZodString>;
19285
+ }, "strip", z.ZodTypeAny, {
19286
+ locator: string;
19287
+ elementLocator?: string | undefined;
19288
+ clearedBy?: string | undefined;
19289
+ clearedTime?: string | undefined;
19290
+ createdBy?: string | undefined;
19291
+ createdTime?: string | undefined;
19292
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19293
+ note?: string | undefined;
19294
+ }, {
19295
+ locator: string;
19296
+ elementLocator?: string | undefined;
19297
+ clearedBy?: string | undefined;
19298
+ clearedTime?: string | undefined;
19299
+ createdBy?: string | undefined;
19300
+ createdTime?: string | undefined;
19301
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19302
+ note?: string | undefined;
19303
+ }>, "many">>;
19304
+ flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
19305
+ locator: z.ZodString;
19306
+ elementLocator: z.ZodOptional<z.ZodString>;
19307
+ clearedBy: z.ZodOptional<z.ZodString>;
19308
+ clearedTime: z.ZodOptional<z.ZodString>;
19309
+ createdBy: z.ZodOptional<z.ZodString>;
19310
+ createdTime: z.ZodOptional<z.ZodString>;
19311
+ level: z.ZodOptional<z.ZodEnum<["info", "block", "decline", "reject", "approve"]>>;
19312
+ note: z.ZodOptional<z.ZodString>;
19313
+ }, "strip", z.ZodTypeAny, {
19314
+ locator: string;
19315
+ elementLocator?: string | undefined;
19316
+ clearedBy?: string | undefined;
19317
+ clearedTime?: string | undefined;
19318
+ createdBy?: string | undefined;
19319
+ createdTime?: string | undefined;
19320
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19321
+ note?: string | undefined;
19322
+ }, {
19323
+ locator: string;
19324
+ elementLocator?: string | undefined;
19325
+ clearedBy?: string | undefined;
19326
+ clearedTime?: string | undefined;
19327
+ createdBy?: string | undefined;
19328
+ createdTime?: string | undefined;
19329
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19330
+ note?: string | undefined;
19331
+ }>, "many">>;
19332
+ }, "strip", z.ZodTypeAny, {
19333
+ quoteLocator: string;
19334
+ clearedFlags?: {
19335
+ locator: string;
19336
+ elementLocator?: string | undefined;
19337
+ clearedBy?: string | undefined;
19338
+ clearedTime?: string | undefined;
19339
+ createdBy?: string | undefined;
19340
+ createdTime?: string | undefined;
19341
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19342
+ note?: string | undefined;
19343
+ }[] | undefined;
19344
+ flags?: {
19345
+ locator: string;
19346
+ elementLocator?: string | undefined;
19347
+ clearedBy?: string | undefined;
19348
+ clearedTime?: string | undefined;
19349
+ createdBy?: string | undefined;
19350
+ createdTime?: string | undefined;
19351
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19352
+ note?: string | undefined;
19353
+ }[] | undefined;
19354
+ }, {
19355
+ quoteLocator: string;
19356
+ clearedFlags?: {
19357
+ locator: string;
19358
+ elementLocator?: string | undefined;
19359
+ clearedBy?: string | undefined;
19360
+ clearedTime?: string | undefined;
19361
+ createdBy?: string | undefined;
19362
+ createdTime?: string | undefined;
19363
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19364
+ note?: string | undefined;
19365
+ }[] | undefined;
19366
+ flags?: {
19367
+ locator: string;
19368
+ elementLocator?: string | undefined;
19369
+ clearedBy?: string | undefined;
19370
+ clearedTime?: string | undefined;
19371
+ createdBy?: string | undefined;
19372
+ createdTime?: string | undefined;
19373
+ level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
19374
+ note?: string | undefined;
19375
+ }[] | undefined;
19376
+ }>;
19377
+
19378
+ export declare const QuoteUnderwritingFlagsResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
19379
+ quoteLocator: z.ZodString;
19380
+ flags: z.ZodArray<z.ZodObject<{
19381
+ locator: z.ZodString;
19382
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19383
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19384
+ referenceLocator: z.ZodString;
19385
+ note: z.ZodString;
19386
+ elementLocator: z.ZodString;
19387
+ createdBy: z.ZodString;
19388
+ createdTime: z.ZodString;
19389
+ clearedBy: z.ZodString;
19390
+ clearedTime: z.ZodString;
19391
+ }, "strip", z.ZodTypeAny, {
19392
+ locator: string;
19393
+ elementLocator: string;
19394
+ clearedBy: string;
19395
+ clearedTime: string;
19396
+ createdBy: string;
19397
+ createdTime: string;
19398
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19399
+ note: string;
19400
+ referenceType: "quote" | "transaction";
19401
+ referenceLocator: string;
19402
+ }, {
19403
+ locator: string;
19404
+ elementLocator: string;
19405
+ clearedBy: string;
19406
+ clearedTime: string;
19407
+ createdBy: string;
19408
+ createdTime: string;
19409
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19410
+ note: string;
19411
+ referenceType: "quote" | "transaction";
19412
+ referenceLocator: string;
19413
+ }>, "many">;
19414
+ clearedFlags: z.ZodArray<z.ZodObject<{
19415
+ locator: z.ZodString;
19416
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19417
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19418
+ referenceLocator: z.ZodString;
19419
+ note: z.ZodString;
19420
+ elementLocator: z.ZodString;
19421
+ createdBy: z.ZodString;
19422
+ createdTime: z.ZodString;
19423
+ clearedBy: z.ZodString;
19424
+ clearedTime: z.ZodString;
19425
+ }, "strip", z.ZodTypeAny, {
19426
+ locator: string;
19427
+ elementLocator: string;
19428
+ clearedBy: string;
19429
+ clearedTime: string;
19430
+ createdBy: string;
19431
+ createdTime: string;
19432
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19433
+ note: string;
19434
+ referenceType: "quote" | "transaction";
19435
+ referenceLocator: string;
19436
+ }, {
19437
+ locator: string;
19438
+ elementLocator: string;
19439
+ clearedBy: string;
19440
+ clearedTime: string;
19441
+ createdBy: string;
19442
+ createdTime: string;
19443
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19444
+ note: string;
19445
+ referenceType: "quote" | "transaction";
19446
+ referenceLocator: string;
19447
+ }>, "many">;
19448
+ }, {
19449
+ quoteLocator: z.ZodString;
19450
+ flags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
19451
+ locator: z.ZodString;
19452
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19453
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19454
+ referenceLocator: z.ZodString;
19455
+ note: z.ZodString;
19456
+ elementLocator: z.ZodString;
19457
+ createdBy: z.ZodString;
19458
+ createdTime: z.ZodString;
19459
+ clearedBy: z.ZodString;
19460
+ clearedTime: z.ZodString;
19461
+ }, {
19462
+ locator: z.ZodString;
19463
+ referenceLocator: z.ZodString;
19464
+ referenceType: z.ZodEnum<["quote", "transaction"]>;
19465
+ level: z.ZodEnum<["none", "info", "block", "decline", "reject", "approve"]>;
19466
+ createdBy: z.ZodString;
19467
+ createdTime: z.ZodString;
19468
+ clearedBy: z.ZodString;
19469
+ clearedTime: z.ZodString;
19470
+ elementLocator: z.ZodOptional<z.ZodString>;
19471
+ }>, "strip", z.ZodTypeAny, {
19472
+ locator: string;
19473
+ clearedBy: string;
19474
+ clearedTime: string;
19475
+ createdBy: string;
19476
+ createdTime: string;
19477
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19478
+ note: string;
19479
+ referenceType: "quote" | "transaction";
19480
+ referenceLocator: string;
19481
+ elementLocator?: string | undefined;
19482
+ }, {
19483
+ locator: string;
19484
+ clearedBy: string;
19485
+ clearedTime: string;
19486
+ createdBy: string;
19487
+ createdTime: string;
19488
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19489
+ note: string;
19490
+ referenceType: "quote" | "transaction";
19491
+ referenceLocator: string;
19492
+ elementLocator?: string | undefined;
19493
+ }>, "many">;
19494
+ clearedFlags: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
19495
+ locator: z.ZodString;
19496
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19497
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19498
+ referenceLocator: z.ZodString;
19499
+ note: z.ZodString;
19500
+ elementLocator: z.ZodString;
19501
+ createdBy: z.ZodString;
19502
+ createdTime: z.ZodString;
19503
+ clearedBy: z.ZodString;
19504
+ clearedTime: z.ZodString;
19505
+ }, {
19506
+ locator: z.ZodString;
19507
+ referenceLocator: z.ZodString;
19508
+ referenceType: z.ZodEnum<["quote", "transaction"]>;
19509
+ level: z.ZodEnum<["none", "info", "block", "decline", "reject", "approve"]>;
19510
+ createdBy: z.ZodString;
19511
+ createdTime: z.ZodString;
19512
+ clearedBy: z.ZodString;
19513
+ clearedTime: z.ZodString;
19514
+ elementLocator: z.ZodOptional<z.ZodString>;
19515
+ }>, "strip", z.ZodTypeAny, {
19516
+ locator: string;
19517
+ clearedBy: string;
19518
+ clearedTime: string;
19519
+ createdBy: string;
19520
+ createdTime: string;
19521
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19522
+ note: string;
19523
+ referenceType: "quote" | "transaction";
19524
+ referenceLocator: string;
19525
+ elementLocator?: string | undefined;
19526
+ }, {
19527
+ locator: string;
19528
+ clearedBy: string;
19529
+ clearedTime: string;
19530
+ createdBy: string;
19531
+ createdTime: string;
19532
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19533
+ note: string;
19534
+ referenceType: "quote" | "transaction";
19535
+ referenceLocator: string;
19536
+ elementLocator?: string | undefined;
19537
+ }>, "many">>;
19538
+ }>, "strip", z.ZodTypeAny, {
19539
+ quoteLocator: string;
19540
+ flags: {
19541
+ locator: string;
19542
+ clearedBy: string;
19543
+ clearedTime: string;
19544
+ createdBy: string;
19545
+ createdTime: string;
19546
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19547
+ note: string;
19548
+ referenceType: "quote" | "transaction";
19549
+ referenceLocator: string;
19550
+ elementLocator?: string | undefined;
19551
+ }[];
19552
+ clearedFlags?: {
19553
+ locator: string;
19554
+ clearedBy: string;
19555
+ clearedTime: string;
19556
+ createdBy: string;
19557
+ createdTime: string;
19558
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19559
+ note: string;
19560
+ referenceType: "quote" | "transaction";
19561
+ referenceLocator: string;
19562
+ elementLocator?: string | undefined;
19563
+ }[] | undefined;
19564
+ }, {
19565
+ quoteLocator: string;
19566
+ flags: {
19567
+ locator: string;
19568
+ clearedBy: string;
19569
+ clearedTime: string;
19570
+ createdBy: string;
19571
+ createdTime: string;
19572
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19573
+ note: string;
19574
+ referenceType: "quote" | "transaction";
19575
+ referenceLocator: string;
19576
+ elementLocator?: string | undefined;
19577
+ }[];
19578
+ clearedFlags?: {
19579
+ locator: string;
19580
+ clearedBy: string;
19581
+ clearedTime: string;
19582
+ createdBy: string;
19583
+ createdTime: string;
19584
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19585
+ note: string;
19586
+ referenceType: "quote" | "transaction";
19587
+ referenceLocator: string;
19588
+ elementLocator?: string | undefined;
19589
+ }[] | undefined;
19590
+ }>;
19591
+
19592
+ export declare type QuoteUnderwritingResponse = z.infer<typeof QuoteUnderwritingResponseSchema>;
19593
+
19594
+ export declare const QuoteUnderwritingResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
19595
+ tenantLocator: z.ZodString;
19596
+ quoteLocator: z.ZodString;
19597
+ accountLocator: z.ZodString;
19598
+ quoteState: z.ZodUnion<[z.ZodLiteral<"draft">, z.ZodLiteral<"validated">, z.ZodLiteral<"earlyUnderwritten">, z.ZodLiteral<"priced">, z.ZodLiteral<"underwritten">, z.ZodLiteral<"accepted">, z.ZodLiteral<"issued">, z.ZodLiteral<"underwrittenBlocked">, z.ZodLiteral<"declined">, z.ZodLiteral<"rejected">, z.ZodLiteral<"refused">, z.ZodLiteral<"discarded">]>;
19599
+ productName: z.ZodString;
19600
+ startTime: z.ZodString;
19601
+ endTime: z.ZodString;
19602
+ duration: z.ZodNumber;
19603
+ durationBasis: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"years">, z.ZodLiteral<"months">, z.ZodLiteral<"monthsE360">, z.ZodLiteral<"weeks">, z.ZodLiteral<"days">, z.ZodLiteral<"hours">]>;
19604
+ underwritingStatus: z.ZodString;
19605
+ underwritingFlags: z.ZodArray<z.ZodObject<{
19606
+ locator: z.ZodString;
19607
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19608
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19609
+ referenceLocator: z.ZodString;
19610
+ note: z.ZodString;
19611
+ elementLocator: z.ZodString;
19612
+ createdBy: z.ZodString;
19613
+ createdTime: z.ZodString;
19614
+ clearedBy: z.ZodString;
19615
+ clearedTime: z.ZodString;
19616
+ }, "strip", z.ZodTypeAny, {
19617
+ locator: string;
19618
+ elementLocator: string;
19619
+ clearedBy: string;
19620
+ clearedTime: string;
19621
+ createdBy: string;
19622
+ createdTime: string;
19623
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19624
+ note: string;
19625
+ referenceType: "quote" | "transaction";
19626
+ referenceLocator: string;
19627
+ }, {
19628
+ locator: string;
19629
+ elementLocator: string;
19630
+ clearedBy: string;
19631
+ clearedTime: string;
19632
+ createdBy: string;
19633
+ createdTime: string;
19634
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19635
+ note: string;
19636
+ referenceType: "quote" | "transaction";
19637
+ referenceLocator: string;
19638
+ }>, "many">;
19639
+ }, {
19640
+ tenantLocator: z.ZodString;
19641
+ accountLocator: z.ZodString;
19642
+ quoteLocator: z.ZodString;
19643
+ quoteState: z.ZodEnum<["draft", "validated", "earlyUnderwritten", "priced", "underwritten", "accepted", "issued", "underwrittenBlocked", "declined", "rejected", "refused", "discarded"]>;
19644
+ startTime: z.ZodString;
19645
+ endTime: z.ZodString;
19646
+ expirationTime: z.ZodString;
19647
+ durationBasis: z.ZodEnum<["none", "years", "months", "monthsE360", "weeks", "days", "hours"]>;
19648
+ underwritingFlags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
19649
+ locator: z.ZodString;
19650
+ level: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"info">, z.ZodLiteral<"block">, z.ZodLiteral<"decline">, z.ZodLiteral<"reject">, z.ZodLiteral<"approve">]>;
19651
+ referenceType: z.ZodUnion<[z.ZodLiteral<"quote">, z.ZodLiteral<"transaction">]>;
19652
+ referenceLocator: z.ZodString;
19653
+ note: z.ZodString;
19654
+ elementLocator: z.ZodString;
19655
+ createdBy: z.ZodString;
19656
+ createdTime: z.ZodString;
19657
+ clearedBy: z.ZodString;
19658
+ clearedTime: z.ZodString;
19659
+ }, {
19660
+ locator: z.ZodString;
19661
+ referenceLocator: z.ZodString;
19662
+ referenceType: z.ZodEnum<["quote", "transaction"]>;
19663
+ level: z.ZodEnum<["none", "info", "block", "decline", "reject", "approve"]>;
19664
+ createdBy: z.ZodString;
19665
+ createdTime: z.ZodString;
19666
+ clearedBy: z.ZodString;
19667
+ clearedTime: z.ZodString;
19668
+ elementLocator: z.ZodOptional<z.ZodString>;
19669
+ }>, "strip", z.ZodTypeAny, {
19670
+ locator: string;
19671
+ clearedBy: string;
19672
+ clearedTime: string;
19673
+ createdBy: string;
19674
+ createdTime: string;
19675
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19676
+ note: string;
19677
+ referenceType: "quote" | "transaction";
19678
+ referenceLocator: string;
19679
+ elementLocator?: string | undefined;
19680
+ }, {
19681
+ locator: string;
19682
+ clearedBy: string;
19683
+ clearedTime: string;
19684
+ createdBy: string;
19685
+ createdTime: string;
19686
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19687
+ note: string;
19688
+ referenceType: "quote" | "transaction";
19689
+ referenceLocator: string;
19690
+ elementLocator?: string | undefined;
19691
+ }>, "many">;
19692
+ }>, "strip", z.ZodTypeAny, {
19693
+ productName: string;
19694
+ startTime: string;
19695
+ endTime: string;
19696
+ expirationTime: string;
19697
+ durationBasis: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360";
19698
+ tenantLocator: string;
19699
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
19700
+ accountLocator: string;
19701
+ underwritingStatus: string;
19702
+ duration: number;
19703
+ quoteLocator: string;
19704
+ underwritingFlags: {
19705
+ locator: string;
19706
+ clearedBy: string;
19707
+ clearedTime: string;
19708
+ createdBy: string;
19709
+ createdTime: string;
19710
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19711
+ note: string;
19712
+ referenceType: "quote" | "transaction";
19713
+ referenceLocator: string;
19714
+ elementLocator?: string | undefined;
19715
+ }[];
19716
+ }, {
19717
+ productName: string;
19718
+ startTime: string;
19719
+ endTime: string;
19720
+ expirationTime: string;
19721
+ durationBasis: "none" | "years" | "months" | "weeks" | "days" | "hours" | "monthsE360";
19722
+ tenantLocator: string;
19723
+ quoteState: "draft" | "declined" | "rejected" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "refused" | "discarded";
19724
+ accountLocator: string;
19725
+ underwritingStatus: string;
19726
+ duration: number;
19727
+ quoteLocator: string;
19728
+ underwritingFlags: {
19729
+ locator: string;
19730
+ clearedBy: string;
19731
+ clearedTime: string;
19732
+ createdBy: string;
19733
+ createdTime: string;
19734
+ level: "none" | "info" | "block" | "decline" | "reject" | "approve";
19735
+ note: string;
19736
+ referenceType: "quote" | "transaction";
19737
+ referenceLocator: string;
19738
+ elementLocator?: string | undefined;
19739
+ }[];
19740
+ }>;
19741
+
19742
+ export declare type QuoteUpdateRequest = z.infer<typeof QuoteUpdateRequestSchema>;
19743
+
19744
+ export declare const QuoteUpdateRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
19745
+ setData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19746
+ removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19747
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
19748
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19749
+ currency: z.ZodString;
19750
+ startTime: z.ZodString;
19751
+ endTime: z.ZodString;
19752
+ expirationTime: z.ZodString;
19753
+ elements: z.ZodArray<z.ZodObject<{
19754
+ locator: z.ZodString;
19755
+ setData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19756
+ removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19757
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
19758
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19759
+ }, "strip", z.ZodTypeAny, {
19760
+ locator: string;
19761
+ removeCoverageTerms: Record<string, Record<string, unknown>>;
19762
+ removeData: Record<string, Record<string, unknown>>;
19763
+ setCoverageTerms: Record<string, string>;
19764
+ setData: Record<string, Record<string, unknown>>;
19765
+ }, {
19766
+ locator: string;
19767
+ removeCoverageTerms: Record<string, Record<string, unknown>>;
19768
+ removeData: Record<string, Record<string, unknown>>;
19769
+ setCoverageTerms: Record<string, string>;
19770
+ setData: Record<string, Record<string, unknown>>;
19771
+ }>, "many">;
19772
+ preferences: z.ZodObject<{
19773
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
19774
+ 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">]>>;
19775
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
19776
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
19777
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
19778
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
19779
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
19780
+ installmentPlanName: z.ZodOptional<z.ZodString>;
19781
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
19782
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
19783
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
19784
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
19785
+ anchorTime: z.ZodOptional<z.ZodString>;
19786
+ }, "strip", z.ZodTypeAny, {
19787
+ installmentWeights: number[];
19788
+ dayOfMonth?: number | undefined;
19789
+ anchorTime?: string | undefined;
19790
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19791
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19792
+ installmentPlanName?: string | undefined;
19793
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19794
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19795
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19796
+ dueLeadDays?: number | undefined;
19797
+ generateLeadDays?: number | undefined;
19798
+ maxInstallmentsPerTerm?: number | undefined;
19799
+ }, {
19800
+ installmentWeights: number[];
19801
+ dayOfMonth?: number | undefined;
19802
+ anchorTime?: string | undefined;
19803
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19804
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19805
+ installmentPlanName?: string | undefined;
19806
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19807
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19808
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19809
+ dueLeadDays?: number | undefined;
19810
+ generateLeadDays?: number | undefined;
19811
+ maxInstallmentsPerTerm?: number | undefined;
19812
+ }>>;
19813
+ billingPreferences: z.ZodOptional<z.ZodObject<{
19814
+ billingPlanName: z.ZodOptional<z.ZodString>;
19815
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
19816
+ }, "strip", z.ZodTypeAny, {
19817
+ billingPlanName?: string | undefined;
19818
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19819
+ }, {
19820
+ billingPlanName?: string | undefined;
19821
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19822
+ }>>;
19823
+ }, "strip", z.ZodTypeAny, {
19824
+ billingPreferences?: {
19825
+ billingPlanName?: string | undefined;
19826
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19827
+ } | undefined;
19828
+ installmentPreferences?: {
19829
+ installmentWeights: number[];
19830
+ dayOfMonth?: number | undefined;
19831
+ anchorTime?: string | undefined;
19832
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19833
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19834
+ installmentPlanName?: string | undefined;
19835
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19836
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19837
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19838
+ dueLeadDays?: number | undefined;
19839
+ generateLeadDays?: number | undefined;
19840
+ maxInstallmentsPerTerm?: number | undefined;
19841
+ } | undefined;
19842
+ }, {
19843
+ billingPreferences?: {
19844
+ billingPlanName?: string | undefined;
19845
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19846
+ } | undefined;
19847
+ installmentPreferences?: {
19848
+ installmentWeights: number[];
19849
+ dayOfMonth?: number | undefined;
19850
+ anchorTime?: string | undefined;
19851
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19852
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19853
+ installmentPlanName?: string | undefined;
19854
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19855
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19856
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19857
+ dueLeadDays?: number | undefined;
19858
+ generateLeadDays?: number | undefined;
19859
+ maxInstallmentsPerTerm?: number | undefined;
19860
+ } | undefined;
19861
+ }>;
19862
+ billingTrigger: z.ZodUnion<[z.ZodLiteral<"accept">, z.ZodLiteral<"issue">]>;
19863
+ delinquencyPlanName: z.ZodString;
19864
+ autoRenewalPlanName: z.ZodString;
19865
+ billingLevel: z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>;
19866
+ }, {
19867
+ startTime: z.ZodString;
19868
+ endTime: z.ZodString;
19869
+ expirationTime: z.ZodString;
19870
+ billingTrigger: z.ZodEnum<["accept", "issue"]>;
19871
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
19872
+ preferences: z.ZodObject<z.objectUtil.extendShape<{
19873
+ installmentPreferences: z.ZodOptional<z.ZodObject<{
19874
+ 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">]>>;
19875
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
19876
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
19877
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
19878
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
19879
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
19880
+ installmentPlanName: z.ZodOptional<z.ZodString>;
19881
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
19882
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
19883
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
19884
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
19885
+ anchorTime: z.ZodOptional<z.ZodString>;
19886
+ }, "strip", z.ZodTypeAny, {
19887
+ installmentWeights: number[];
19888
+ dayOfMonth?: number | undefined;
19889
+ anchorTime?: string | undefined;
19890
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19891
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19892
+ installmentPlanName?: string | undefined;
19893
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19894
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19895
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19896
+ dueLeadDays?: number | undefined;
19897
+ generateLeadDays?: number | undefined;
19898
+ maxInstallmentsPerTerm?: number | undefined;
19899
+ }, {
19900
+ installmentWeights: number[];
19901
+ dayOfMonth?: number | undefined;
19902
+ anchorTime?: string | undefined;
19903
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19904
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19905
+ installmentPlanName?: string | undefined;
19906
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19907
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19908
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19909
+ dueLeadDays?: number | undefined;
19910
+ generateLeadDays?: number | undefined;
19911
+ maxInstallmentsPerTerm?: number | undefined;
19912
+ }>>;
19913
+ billingPreferences: z.ZodOptional<z.ZodObject<{
19914
+ billingPlanName: z.ZodOptional<z.ZodString>;
19915
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
19916
+ }, "strip", z.ZodTypeAny, {
19917
+ billingPlanName?: string | undefined;
19918
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19919
+ }, {
19920
+ billingPlanName?: string | undefined;
19921
+ billingLevel?: "account" | "inherit" | "policy" | undefined;
19922
+ }>>;
19923
+ }, {
19924
+ installmentPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
19925
+ 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">]>>;
19926
+ anchorMode: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"generateDay">, z.ZodLiteral<"termStartDay">, z.ZodLiteral<"dueDay">]>>;
19927
+ generateLeadDays: z.ZodOptional<z.ZodNumber>;
19928
+ dueLeadDays: z.ZodOptional<z.ZodNumber>;
19929
+ installmentWeights: z.ZodArray<z.ZodNumber, "many">;
19930
+ maxInstallmentsPerTerm: z.ZodOptional<z.ZodNumber>;
19931
+ installmentPlanName: z.ZodOptional<z.ZodString>;
19932
+ anchorType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"dayOfMonth">, z.ZodLiteral<"anchorTime">, z.ZodLiteral<"dayOfWeek">, z.ZodLiteral<"weekOfMonth">]>>;
19933
+ dayOfMonth: z.ZodOptional<z.ZodNumber>;
19934
+ dayOfWeek: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"monday">, z.ZodLiteral<"tuesday">, z.ZodLiteral<"wednesday">, z.ZodLiteral<"thursday">, z.ZodLiteral<"friday">, z.ZodLiteral<"saturday">, z.ZodLiteral<"sunday">]>>;
19935
+ weekOfMonth: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"first">, z.ZodLiteral<"second">, z.ZodLiteral<"third">, z.ZodLiteral<"fourth">, z.ZodLiteral<"fifth">]>>;
19936
+ anchorTime: z.ZodOptional<z.ZodString>;
19937
+ }, {
19938
+ cadence: z.ZodOptional<z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>>;
19939
+ anchorMode: z.ZodOptional<z.ZodEnum<["generateDay", "termStartDay", "dueDay"]>>;
19940
+ anchorType: z.ZodOptional<z.ZodEnum<["none", "dayOfMonth", "anchorTime", "dayOfWeek", "weekOfMonth"]>>;
19941
+ dayOfWeek: z.ZodOptional<z.ZodEnum<["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"]>>;
19942
+ weekOfMonth: z.ZodOptional<z.ZodEnum<["none", "first", "second", "third", "fourth", "fifth"]>>;
19943
+ }>, "strip", z.ZodTypeAny, {
19944
+ installmentWeights: number[];
19945
+ dayOfMonth?: number | undefined;
19946
+ anchorTime?: string | undefined;
19947
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19948
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19949
+ installmentPlanName?: string | undefined;
19950
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19951
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19952
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19953
+ dueLeadDays?: number | undefined;
19954
+ generateLeadDays?: number | undefined;
19955
+ maxInstallmentsPerTerm?: number | undefined;
19956
+ }, {
19957
+ installmentWeights: number[];
19958
+ dayOfMonth?: number | undefined;
19959
+ anchorTime?: string | undefined;
19960
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19961
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19962
+ installmentPlanName?: string | undefined;
19963
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19964
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19965
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19966
+ dueLeadDays?: number | undefined;
19967
+ generateLeadDays?: number | undefined;
19968
+ maxInstallmentsPerTerm?: number | undefined;
19969
+ }>>;
19970
+ billingPreferences: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
19971
+ billingPlanName: z.ZodOptional<z.ZodString>;
19972
+ billingLevel: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"account">, z.ZodLiteral<"inherit">, z.ZodLiteral<"policy">]>>;
19973
+ }, {
19974
+ billingLevel: z.ZodEnum<["account", "inherit", "policy"]>;
19975
+ }>, "strip", z.ZodTypeAny, {
19976
+ billingLevel: "account" | "inherit" | "policy";
19977
+ billingPlanName?: string | undefined;
19978
+ }, {
19979
+ billingLevel: "account" | "inherit" | "policy";
19980
+ billingPlanName?: string | undefined;
19981
+ }>>;
19982
+ }>, "strip", z.ZodTypeAny, {
19983
+ billingPreferences?: {
19984
+ billingLevel: "account" | "inherit" | "policy";
19985
+ billingPlanName?: string | undefined;
19986
+ } | undefined;
19987
+ installmentPreferences?: {
19988
+ installmentWeights: number[];
19989
+ dayOfMonth?: number | undefined;
19990
+ anchorTime?: string | undefined;
19991
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
19992
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
19993
+ installmentPlanName?: string | undefined;
19994
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
19995
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
19996
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
19997
+ dueLeadDays?: number | undefined;
19998
+ generateLeadDays?: number | undefined;
19999
+ maxInstallmentsPerTerm?: number | undefined;
20000
+ } | undefined;
20001
+ }, {
20002
+ billingPreferences?: {
20003
+ billingLevel: "account" | "inherit" | "policy";
20004
+ billingPlanName?: string | undefined;
20005
+ } | undefined;
20006
+ installmentPreferences?: {
20007
+ installmentWeights: number[];
20008
+ dayOfMonth?: number | undefined;
20009
+ anchorTime?: string | undefined;
20010
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
20011
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
20012
+ installmentPlanName?: string | undefined;
20013
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
20014
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
20015
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
20016
+ dueLeadDays?: number | undefined;
20017
+ generateLeadDays?: number | undefined;
20018
+ maxInstallmentsPerTerm?: number | undefined;
20019
+ } | undefined;
20020
+ }>;
20021
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
20022
+ removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
20023
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
20024
+ setData: z.ZodRecord<z.ZodString, z.ZodAny>;
20025
+ elements: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
17631
20026
  locator: z.ZodString;
17632
- elementLocator: z.ZodOptional<z.ZodString>;
17633
- clearedBy: z.ZodOptional<z.ZodString>;
17634
- clearedTime: z.ZodOptional<z.ZodString>;
17635
- createdBy: z.ZodOptional<z.ZodString>;
17636
- createdTime: z.ZodOptional<z.ZodString>;
17637
- level: z.ZodOptional<z.ZodEnum<["info", "block", "decline", "reject", "approve"]>>;
17638
- note: z.ZodOptional<z.ZodString>;
17639
- }, "strip", z.ZodTypeAny, {
17640
- locator: string;
17641
- elementLocator?: string | undefined;
17642
- clearedBy?: string | undefined;
17643
- clearedTime?: string | undefined;
17644
- createdBy?: string | undefined;
17645
- createdTime?: string | undefined;
17646
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17647
- note?: string | undefined;
20027
+ setData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
20028
+ removeData: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
20029
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
20030
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>;
17648
20031
  }, {
17649
- locator: string;
17650
- elementLocator?: string | undefined;
17651
- clearedBy?: string | undefined;
17652
- clearedTime?: string | undefined;
17653
- createdBy?: string | undefined;
17654
- createdTime?: string | undefined;
17655
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17656
- note?: string | undefined;
17657
- }>, "many">>;
17658
- flags: z.ZodOptional<z.ZodArray<z.ZodObject<{
17659
20032
  locator: z.ZodString;
17660
- elementLocator: z.ZodOptional<z.ZodString>;
17661
- clearedBy: z.ZodOptional<z.ZodString>;
17662
- clearedTime: z.ZodOptional<z.ZodString>;
17663
- createdBy: z.ZodOptional<z.ZodString>;
17664
- createdTime: z.ZodOptional<z.ZodString>;
17665
- level: z.ZodOptional<z.ZodEnum<["info", "block", "decline", "reject", "approve"]>>;
17666
- note: z.ZodOptional<z.ZodString>;
17667
- }, "strip", z.ZodTypeAny, {
20033
+ setData: z.ZodRecord<z.ZodString, z.ZodAny>;
20034
+ removeData: z.ZodRecord<z.ZodString, z.ZodAny>;
20035
+ setCoverageTerms: z.ZodRecord<z.ZodString, z.ZodString>;
20036
+ removeCoverageTerms: z.ZodRecord<z.ZodString, z.ZodAny>;
20037
+ }>, "strip", z.ZodTypeAny, {
17668
20038
  locator: string;
17669
- elementLocator?: string | undefined;
17670
- clearedBy?: string | undefined;
17671
- clearedTime?: string | undefined;
17672
- createdBy?: string | undefined;
17673
- createdTime?: string | undefined;
17674
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17675
- note?: string | undefined;
20039
+ removeCoverageTerms: Record<string, any>;
20040
+ removeData: Record<string, any>;
20041
+ setCoverageTerms: Record<string, string>;
20042
+ setData: Record<string, any>;
17676
20043
  }, {
17677
20044
  locator: string;
17678
- elementLocator?: string | undefined;
17679
- clearedBy?: string | undefined;
17680
- clearedTime?: string | undefined;
17681
- createdBy?: string | undefined;
17682
- createdTime?: string | undefined;
17683
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17684
- note?: string | undefined;
17685
- }>, "many">>;
17686
- }, "strip", z.ZodTypeAny, {
17687
- quoteLocator: string;
17688
- clearedFlags?: {
17689
- locator: string;
17690
- elementLocator?: string | undefined;
17691
- clearedBy?: string | undefined;
17692
- clearedTime?: string | undefined;
17693
- createdBy?: string | undefined;
17694
- createdTime?: string | undefined;
17695
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17696
- note?: string | undefined;
17697
- }[] | undefined;
17698
- flags?: {
20045
+ removeCoverageTerms: Record<string, any>;
20046
+ removeData: Record<string, any>;
20047
+ setCoverageTerms: Record<string, string>;
20048
+ setData: Record<string, any>;
20049
+ }>, "many">;
20050
+ }>, "strip", z.ZodTypeAny, {
20051
+ billingLevel: "account" | "inherit" | "policy";
20052
+ elements: {
17699
20053
  locator: string;
17700
- elementLocator?: string | undefined;
17701
- clearedBy?: string | undefined;
17702
- clearedTime?: string | undefined;
17703
- createdBy?: string | undefined;
17704
- createdTime?: string | undefined;
17705
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17706
- note?: string | undefined;
17707
- }[] | undefined;
20054
+ removeCoverageTerms: Record<string, any>;
20055
+ removeData: Record<string, any>;
20056
+ setCoverageTerms: Record<string, string>;
20057
+ setData: Record<string, any>;
20058
+ }[];
20059
+ removeCoverageTerms: Record<string, any>;
20060
+ removeData: Record<string, any>;
20061
+ setCoverageTerms: Record<string, string>;
20062
+ setData: Record<string, any>;
20063
+ delinquencyPlanName: string;
20064
+ startTime: string;
20065
+ endTime: string;
20066
+ currency: string;
20067
+ expirationTime: string;
20068
+ preferences: {
20069
+ billingPreferences?: {
20070
+ billingLevel: "account" | "inherit" | "policy";
20071
+ billingPlanName?: string | undefined;
20072
+ } | undefined;
20073
+ installmentPreferences?: {
20074
+ installmentWeights: number[];
20075
+ dayOfMonth?: number | undefined;
20076
+ anchorTime?: string | undefined;
20077
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
20078
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
20079
+ installmentPlanName?: string | undefined;
20080
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
20081
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
20082
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
20083
+ dueLeadDays?: number | undefined;
20084
+ generateLeadDays?: number | undefined;
20085
+ maxInstallmentsPerTerm?: number | undefined;
20086
+ } | undefined;
20087
+ };
20088
+ autoRenewalPlanName: string;
20089
+ billingTrigger: "accept" | "issue";
17708
20090
  }, {
17709
- quoteLocator: string;
17710
- clearedFlags?: {
17711
- locator: string;
17712
- elementLocator?: string | undefined;
17713
- clearedBy?: string | undefined;
17714
- clearedTime?: string | undefined;
17715
- createdBy?: string | undefined;
17716
- createdTime?: string | undefined;
17717
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17718
- note?: string | undefined;
17719
- }[] | undefined;
17720
- flags?: {
20091
+ billingLevel: "account" | "inherit" | "policy";
20092
+ elements: {
17721
20093
  locator: string;
17722
- elementLocator?: string | undefined;
17723
- clearedBy?: string | undefined;
17724
- clearedTime?: string | undefined;
17725
- createdBy?: string | undefined;
17726
- createdTime?: string | undefined;
17727
- level?: "info" | "block" | "decline" | "reject" | "approve" | undefined;
17728
- note?: string | undefined;
17729
- }[] | undefined;
20094
+ removeCoverageTerms: Record<string, any>;
20095
+ removeData: Record<string, any>;
20096
+ setCoverageTerms: Record<string, string>;
20097
+ setData: Record<string, any>;
20098
+ }[];
20099
+ removeCoverageTerms: Record<string, any>;
20100
+ removeData: Record<string, any>;
20101
+ setCoverageTerms: Record<string, string>;
20102
+ setData: Record<string, any>;
20103
+ delinquencyPlanName: string;
20104
+ startTime: string;
20105
+ endTime: string;
20106
+ currency: string;
20107
+ expirationTime: string;
20108
+ preferences: {
20109
+ billingPreferences?: {
20110
+ billingLevel: "account" | "inherit" | "policy";
20111
+ billingPlanName?: string | undefined;
20112
+ } | undefined;
20113
+ installmentPreferences?: {
20114
+ installmentWeights: number[];
20115
+ dayOfMonth?: number | undefined;
20116
+ anchorTime?: string | undefined;
20117
+ dayOfWeek?: "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday" | undefined;
20118
+ weekOfMonth?: "none" | "first" | "second" | "third" | "fourth" | "fifth" | undefined;
20119
+ installmentPlanName?: string | undefined;
20120
+ anchorMode?: "generateDay" | "termStartDay" | "dueDay" | undefined;
20121
+ anchorType?: "none" | "dayOfMonth" | "anchorTime" | "dayOfWeek" | "weekOfMonth" | undefined;
20122
+ cadence?: "none" | "fullPay" | "weekly" | "everyOtherWeek" | "monthly" | "quarterly" | "semiannually" | "annually" | "thirtyDays" | "everyNDays" | undefined;
20123
+ dueLeadDays?: number | undefined;
20124
+ generateLeadDays?: number | undefined;
20125
+ maxInstallmentsPerTerm?: number | undefined;
20126
+ } | undefined;
20127
+ };
20128
+ autoRenewalPlanName: string;
20129
+ billingTrigger: "accept" | "issue";
17730
20130
  }>;
17731
20131
 
17732
20132
  export declare type ReferenceTypeEnum = z.infer<typeof ReferenceTypeEnumSchema>;
17733
20133
 
17734
20134
  export declare const ReferenceTypeEnumSchema: z.ZodEnum<["quote", "policy", "invoice", "transaction", "segment", "term"]>;
17735
20135
 
20136
+ export declare const ResetFlagsActionEnumSchema: z.ZodEnum<["clear", "delete"]>;
20137
+
20138
+ export declare type ResetOptions = z.infer<typeof ResetOptionsSchema>;
20139
+
20140
+ export declare const ResetOptionsSchema: z.ZodObject<z.objectUtil.extendShape<{
20141
+ resetAllUnderwritingFlags: z.ZodBoolean;
20142
+ resetFlags: z.ZodArray<z.ZodString, "many">;
20143
+ resetFlagsAction: z.ZodUnion<[z.ZodLiteral<"clear">, z.ZodLiteral<"delete">]>;
20144
+ deleteAllAutomaticDocuments: z.ZodBoolean;
20145
+ deleteDocuments: z.ZodArray<z.ZodString, "many">;
20146
+ }, {
20147
+ resetFlagsAction: z.ZodEnum<["clear", "delete"]>;
20148
+ resetFlags: z.ZodArray<z.ZodString, "many">;
20149
+ deleteDocuments: z.ZodArray<z.ZodString, "many">;
20150
+ }>, "strip", z.ZodTypeAny, {
20151
+ deleteAllAutomaticDocuments: boolean;
20152
+ resetAllUnderwritingFlags: boolean;
20153
+ resetFlagsAction: "clear" | "delete";
20154
+ deleteDocuments: string[];
20155
+ resetFlags: string[];
20156
+ }, {
20157
+ deleteAllAutomaticDocuments: boolean;
20158
+ resetAllUnderwritingFlags: boolean;
20159
+ resetFlagsAction: "clear" | "delete";
20160
+ deleteDocuments: string[];
20161
+ resetFlags: string[];
20162
+ }>;
20163
+
17736
20164
  export declare type ResetQuoteFlagsAction = z.infer<typeof resetQuoteFlagsActionEnumSchema>;
17737
20165
 
17738
20166
  export declare const resetQuoteFlagsActionEnumSchema: z.ZodEnum<["clear", "delete"]>;