@claritylabs/cl-sdk 0.2.0 → 0.3.1
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/README.md +152 -218
- package/dist/index.d.mts +8376 -1209
- package/dist/index.d.ts +8376 -1209
- package/dist/index.js +3308 -2136
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3459 -2404
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.d.mts +2804 -0
- package/dist/storage-sqlite.d.ts +2804 -0
- package/dist/storage-sqlite.js +238 -0
- package/dist/storage-sqlite.js.map +1 -0
- package/dist/storage-sqlite.mjs +218 -0
- package/dist/storage-sqlite.mjs.map +1 -0
- package/package.json +16 -7
|
@@ -0,0 +1,2804 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
|
|
3
|
+
/** Callback to generate embeddings for text. */
|
|
4
|
+
type EmbedText = (text: string) => Promise<number[]>;
|
|
5
|
+
|
|
6
|
+
declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7
|
+
type: z.ZodLiteral<"policy">;
|
|
8
|
+
policyNumber: z.ZodString;
|
|
9
|
+
effectiveDate: z.ZodString;
|
|
10
|
+
expirationDate: z.ZodOptional<z.ZodString>;
|
|
11
|
+
policyTermType: z.ZodOptional<z.ZodEnum<{
|
|
12
|
+
fixed: "fixed";
|
|
13
|
+
continuous: "continuous";
|
|
14
|
+
}>>;
|
|
15
|
+
nextReviewDate: z.ZodOptional<z.ZodString>;
|
|
16
|
+
effectiveTime: z.ZodOptional<z.ZodString>;
|
|
17
|
+
id: z.ZodString;
|
|
18
|
+
carrier: z.ZodString;
|
|
19
|
+
security: z.ZodOptional<z.ZodString>;
|
|
20
|
+
insuredName: z.ZodString;
|
|
21
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
22
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
23
|
+
policyTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
24
|
+
coverages: z.ZodArray<z.ZodObject<{
|
|
25
|
+
name: z.ZodString;
|
|
26
|
+
limit: z.ZodString;
|
|
27
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
28
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
29
|
+
sectionRef: z.ZodOptional<z.ZodString>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
31
|
+
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
32
|
+
title: z.ZodString;
|
|
33
|
+
sectionNumber: z.ZodOptional<z.ZodString>;
|
|
34
|
+
pageStart: z.ZodNumber;
|
|
35
|
+
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
36
|
+
type: z.ZodString;
|
|
37
|
+
coverageType: z.ZodOptional<z.ZodString>;
|
|
38
|
+
content: z.ZodString;
|
|
39
|
+
subsections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40
|
+
title: z.ZodString;
|
|
41
|
+
sectionNumber: z.ZodOptional<z.ZodString>;
|
|
42
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
43
|
+
content: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>>;
|
|
45
|
+
}, z.core.$strip>>>;
|
|
46
|
+
carrierLegalName: z.ZodOptional<z.ZodString>;
|
|
47
|
+
carrierNaicNumber: z.ZodOptional<z.ZodString>;
|
|
48
|
+
carrierAmBestRating: z.ZodOptional<z.ZodString>;
|
|
49
|
+
carrierAdmittedStatus: z.ZodOptional<z.ZodString>;
|
|
50
|
+
mga: z.ZodOptional<z.ZodString>;
|
|
51
|
+
underwriter: z.ZodOptional<z.ZodString>;
|
|
52
|
+
brokerAgency: z.ZodOptional<z.ZodString>;
|
|
53
|
+
brokerContactName: z.ZodOptional<z.ZodString>;
|
|
54
|
+
brokerLicenseNumber: z.ZodOptional<z.ZodString>;
|
|
55
|
+
priorPolicyNumber: z.ZodOptional<z.ZodString>;
|
|
56
|
+
programName: z.ZodOptional<z.ZodString>;
|
|
57
|
+
isRenewal: z.ZodOptional<z.ZodBoolean>;
|
|
58
|
+
isPackage: z.ZodOptional<z.ZodBoolean>;
|
|
59
|
+
insuredDba: z.ZodOptional<z.ZodString>;
|
|
60
|
+
insuredAddress: z.ZodOptional<z.ZodObject<{
|
|
61
|
+
street1: z.ZodString;
|
|
62
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
63
|
+
city: z.ZodString;
|
|
64
|
+
state: z.ZodString;
|
|
65
|
+
zip: z.ZodString;
|
|
66
|
+
country: z.ZodOptional<z.ZodString>;
|
|
67
|
+
}, z.core.$strip>>;
|
|
68
|
+
insuredEntityType: z.ZodOptional<z.ZodEnum<{
|
|
69
|
+
other: "other";
|
|
70
|
+
corporation: "corporation";
|
|
71
|
+
llc: "llc";
|
|
72
|
+
partnership: "partnership";
|
|
73
|
+
sole_proprietor: "sole_proprietor";
|
|
74
|
+
joint_venture: "joint_venture";
|
|
75
|
+
trust: "trust";
|
|
76
|
+
nonprofit: "nonprofit";
|
|
77
|
+
municipality: "municipality";
|
|
78
|
+
individual: "individual";
|
|
79
|
+
married_couple: "married_couple";
|
|
80
|
+
}>>;
|
|
81
|
+
additionalNamedInsureds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
|
+
name: z.ZodString;
|
|
83
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
84
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
street1: z.ZodString;
|
|
86
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
87
|
+
city: z.ZodString;
|
|
88
|
+
state: z.ZodString;
|
|
89
|
+
zip: z.ZodString;
|
|
90
|
+
country: z.ZodOptional<z.ZodString>;
|
|
91
|
+
}, z.core.$strip>>;
|
|
92
|
+
}, z.core.$strip>>>;
|
|
93
|
+
insuredSicCode: z.ZodOptional<z.ZodString>;
|
|
94
|
+
insuredNaicsCode: z.ZodOptional<z.ZodString>;
|
|
95
|
+
insuredFein: z.ZodOptional<z.ZodString>;
|
|
96
|
+
enrichedCoverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
97
|
+
name: z.ZodString;
|
|
98
|
+
coverageCode: z.ZodOptional<z.ZodString>;
|
|
99
|
+
formNumber: z.ZodOptional<z.ZodString>;
|
|
100
|
+
formEditionDate: z.ZodOptional<z.ZodString>;
|
|
101
|
+
limit: z.ZodString;
|
|
102
|
+
limitType: z.ZodOptional<z.ZodEnum<{
|
|
103
|
+
per_occurrence: "per_occurrence";
|
|
104
|
+
per_claim: "per_claim";
|
|
105
|
+
aggregate: "aggregate";
|
|
106
|
+
per_person: "per_person";
|
|
107
|
+
per_accident: "per_accident";
|
|
108
|
+
statutory: "statutory";
|
|
109
|
+
blanket: "blanket";
|
|
110
|
+
scheduled: "scheduled";
|
|
111
|
+
}>>;
|
|
112
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
113
|
+
deductibleType: z.ZodOptional<z.ZodEnum<{
|
|
114
|
+
per_occurrence: "per_occurrence";
|
|
115
|
+
per_claim: "per_claim";
|
|
116
|
+
aggregate: "aggregate";
|
|
117
|
+
percentage: "percentage";
|
|
118
|
+
waiting_period: "waiting_period";
|
|
119
|
+
}>>;
|
|
120
|
+
sir: z.ZodOptional<z.ZodString>;
|
|
121
|
+
sublimit: z.ZodOptional<z.ZodString>;
|
|
122
|
+
coinsurance: z.ZodOptional<z.ZodString>;
|
|
123
|
+
valuation: z.ZodOptional<z.ZodEnum<{
|
|
124
|
+
replacement_cost: "replacement_cost";
|
|
125
|
+
actual_cash_value: "actual_cash_value";
|
|
126
|
+
agreed_value: "agreed_value";
|
|
127
|
+
functional_replacement: "functional_replacement";
|
|
128
|
+
}>>;
|
|
129
|
+
territory: z.ZodOptional<z.ZodString>;
|
|
130
|
+
trigger: z.ZodOptional<z.ZodEnum<{
|
|
131
|
+
occurrence: "occurrence";
|
|
132
|
+
claims_made: "claims_made";
|
|
133
|
+
accident: "accident";
|
|
134
|
+
}>>;
|
|
135
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
136
|
+
included: z.ZodBoolean;
|
|
137
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
138
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
139
|
+
sectionRef: z.ZodOptional<z.ZodString>;
|
|
140
|
+
}, z.core.$strip>>>;
|
|
141
|
+
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
142
|
+
formNumber: z.ZodString;
|
|
143
|
+
editionDate: z.ZodOptional<z.ZodString>;
|
|
144
|
+
title: z.ZodString;
|
|
145
|
+
endorsementType: z.ZodEnum<{
|
|
146
|
+
other: "other";
|
|
147
|
+
additional_insured: "additional_insured";
|
|
148
|
+
waiver_of_subrogation: "waiver_of_subrogation";
|
|
149
|
+
primary_noncontributory: "primary_noncontributory";
|
|
150
|
+
blanket_additional_insured: "blanket_additional_insured";
|
|
151
|
+
loss_payee: "loss_payee";
|
|
152
|
+
mortgage_holder: "mortgage_holder";
|
|
153
|
+
broadening: "broadening";
|
|
154
|
+
restriction: "restriction";
|
|
155
|
+
exclusion: "exclusion";
|
|
156
|
+
amendatory: "amendatory";
|
|
157
|
+
notice_of_cancellation: "notice_of_cancellation";
|
|
158
|
+
designated_premises: "designated_premises";
|
|
159
|
+
classification_change: "classification_change";
|
|
160
|
+
schedule_update: "schedule_update";
|
|
161
|
+
deductible_change: "deductible_change";
|
|
162
|
+
limit_change: "limit_change";
|
|
163
|
+
territorial_extension: "territorial_extension";
|
|
164
|
+
}>;
|
|
165
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
166
|
+
affectedCoverageParts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
167
|
+
namedParties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
168
|
+
name: z.ZodString;
|
|
169
|
+
role: z.ZodEnum<{
|
|
170
|
+
other: "other";
|
|
171
|
+
additional_insured: "additional_insured";
|
|
172
|
+
loss_payee: "loss_payee";
|
|
173
|
+
mortgage_holder: "mortgage_holder";
|
|
174
|
+
certificate_holder: "certificate_holder";
|
|
175
|
+
notice_recipient: "notice_recipient";
|
|
176
|
+
}>;
|
|
177
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
178
|
+
street1: z.ZodString;
|
|
179
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
180
|
+
city: z.ZodString;
|
|
181
|
+
state: z.ZodString;
|
|
182
|
+
zip: z.ZodString;
|
|
183
|
+
country: z.ZodOptional<z.ZodString>;
|
|
184
|
+
}, z.core.$strip>>;
|
|
185
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
186
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
187
|
+
}, z.core.$strip>>>;
|
|
188
|
+
keyTerms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
189
|
+
premiumImpact: z.ZodOptional<z.ZodString>;
|
|
190
|
+
content: z.ZodString;
|
|
191
|
+
pageStart: z.ZodNumber;
|
|
192
|
+
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
193
|
+
}, z.core.$strip>>>;
|
|
194
|
+
exclusions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
195
|
+
name: z.ZodString;
|
|
196
|
+
formNumber: z.ZodOptional<z.ZodString>;
|
|
197
|
+
excludedPerils: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
198
|
+
isAbsolute: z.ZodOptional<z.ZodBoolean>;
|
|
199
|
+
exceptions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
200
|
+
buybackAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
201
|
+
buybackEndorsement: z.ZodOptional<z.ZodString>;
|
|
202
|
+
appliesTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
203
|
+
content: z.ZodString;
|
|
204
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
205
|
+
}, z.core.$strip>>>;
|
|
206
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
207
|
+
name: z.ZodString;
|
|
208
|
+
conditionType: z.ZodEnum<{
|
|
209
|
+
other: "other";
|
|
210
|
+
duties_after_loss: "duties_after_loss";
|
|
211
|
+
notice_requirements: "notice_requirements";
|
|
212
|
+
other_insurance: "other_insurance";
|
|
213
|
+
cancellation: "cancellation";
|
|
214
|
+
nonrenewal: "nonrenewal";
|
|
215
|
+
transfer_of_rights: "transfer_of_rights";
|
|
216
|
+
liberalization: "liberalization";
|
|
217
|
+
arbitration: "arbitration";
|
|
218
|
+
concealment_fraud: "concealment_fraud";
|
|
219
|
+
examination_under_oath: "examination_under_oath";
|
|
220
|
+
legal_action: "legal_action";
|
|
221
|
+
loss_payment: "loss_payment";
|
|
222
|
+
appraisal: "appraisal";
|
|
223
|
+
mortgage_holders: "mortgage_holders";
|
|
224
|
+
policy_territory: "policy_territory";
|
|
225
|
+
separation_of_insureds: "separation_of_insureds";
|
|
226
|
+
}>;
|
|
227
|
+
content: z.ZodString;
|
|
228
|
+
keyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
229
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
}, z.core.$strip>>>;
|
|
231
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
232
|
+
perOccurrence: z.ZodOptional<z.ZodString>;
|
|
233
|
+
generalAggregate: z.ZodOptional<z.ZodString>;
|
|
234
|
+
productsCompletedOpsAggregate: z.ZodOptional<z.ZodString>;
|
|
235
|
+
personalAdvertisingInjury: z.ZodOptional<z.ZodString>;
|
|
236
|
+
eachEmployee: z.ZodOptional<z.ZodString>;
|
|
237
|
+
fireDamage: z.ZodOptional<z.ZodString>;
|
|
238
|
+
medicalExpense: z.ZodOptional<z.ZodString>;
|
|
239
|
+
combinedSingleLimit: z.ZodOptional<z.ZodString>;
|
|
240
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
241
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
242
|
+
propertyDamage: z.ZodOptional<z.ZodString>;
|
|
243
|
+
eachOccurrenceUmbrella: z.ZodOptional<z.ZodString>;
|
|
244
|
+
umbrellaAggregate: z.ZodOptional<z.ZodString>;
|
|
245
|
+
umbrellaRetention: z.ZodOptional<z.ZodString>;
|
|
246
|
+
statutory: z.ZodOptional<z.ZodBoolean>;
|
|
247
|
+
employersLiability: z.ZodOptional<z.ZodObject<{
|
|
248
|
+
eachAccident: z.ZodString;
|
|
249
|
+
diseasePolicyLimit: z.ZodString;
|
|
250
|
+
diseaseEachEmployee: z.ZodString;
|
|
251
|
+
}, z.core.$strip>>;
|
|
252
|
+
sublimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
253
|
+
name: z.ZodString;
|
|
254
|
+
limit: z.ZodString;
|
|
255
|
+
appliesTo: z.ZodOptional<z.ZodString>;
|
|
256
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
257
|
+
}, z.core.$strip>>>;
|
|
258
|
+
sharedLimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
259
|
+
description: z.ZodString;
|
|
260
|
+
limit: z.ZodString;
|
|
261
|
+
coverageParts: z.ZodArray<z.ZodString>;
|
|
262
|
+
}, z.core.$strip>>>;
|
|
263
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
264
|
+
inside_limits: "inside_limits";
|
|
265
|
+
outside_limits: "outside_limits";
|
|
266
|
+
supplementary: "supplementary";
|
|
267
|
+
}>>;
|
|
268
|
+
}, z.core.$strip>>;
|
|
269
|
+
deductibles: z.ZodOptional<z.ZodObject<{
|
|
270
|
+
perClaim: z.ZodOptional<z.ZodString>;
|
|
271
|
+
perOccurrence: z.ZodOptional<z.ZodString>;
|
|
272
|
+
aggregateDeductible: z.ZodOptional<z.ZodString>;
|
|
273
|
+
selfInsuredRetention: z.ZodOptional<z.ZodString>;
|
|
274
|
+
corridorDeductible: z.ZodOptional<z.ZodString>;
|
|
275
|
+
waitingPeriod: z.ZodOptional<z.ZodString>;
|
|
276
|
+
appliesTo: z.ZodOptional<z.ZodEnum<{
|
|
277
|
+
damages_only: "damages_only";
|
|
278
|
+
damages_and_defense: "damages_and_defense";
|
|
279
|
+
defense_only: "defense_only";
|
|
280
|
+
}>>;
|
|
281
|
+
}, z.core.$strip>>;
|
|
282
|
+
locations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
283
|
+
number: z.ZodNumber;
|
|
284
|
+
address: z.ZodObject<{
|
|
285
|
+
street1: z.ZodString;
|
|
286
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
287
|
+
city: z.ZodString;
|
|
288
|
+
state: z.ZodString;
|
|
289
|
+
zip: z.ZodString;
|
|
290
|
+
country: z.ZodOptional<z.ZodString>;
|
|
291
|
+
}, z.core.$strip>;
|
|
292
|
+
description: z.ZodOptional<z.ZodString>;
|
|
293
|
+
buildingValue: z.ZodOptional<z.ZodString>;
|
|
294
|
+
contentsValue: z.ZodOptional<z.ZodString>;
|
|
295
|
+
businessIncomeValue: z.ZodOptional<z.ZodString>;
|
|
296
|
+
constructionType: z.ZodOptional<z.ZodString>;
|
|
297
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
298
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
protectionClass: z.ZodOptional<z.ZodString>;
|
|
300
|
+
sprinklered: z.ZodOptional<z.ZodBoolean>;
|
|
301
|
+
alarmType: z.ZodOptional<z.ZodString>;
|
|
302
|
+
occupancy: z.ZodOptional<z.ZodString>;
|
|
303
|
+
}, z.core.$strip>>>;
|
|
304
|
+
vehicles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
305
|
+
number: z.ZodNumber;
|
|
306
|
+
year: z.ZodNumber;
|
|
307
|
+
make: z.ZodString;
|
|
308
|
+
model: z.ZodString;
|
|
309
|
+
vin: z.ZodString;
|
|
310
|
+
costNew: z.ZodOptional<z.ZodString>;
|
|
311
|
+
statedValue: z.ZodOptional<z.ZodString>;
|
|
312
|
+
garageLocation: z.ZodOptional<z.ZodNumber>;
|
|
313
|
+
coverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
314
|
+
type: z.ZodEnum<{
|
|
315
|
+
non_owned_auto: "non_owned_auto";
|
|
316
|
+
liability: "liability";
|
|
317
|
+
collision: "collision";
|
|
318
|
+
comprehensive: "comprehensive";
|
|
319
|
+
uninsured_motorist: "uninsured_motorist";
|
|
320
|
+
underinsured_motorist: "underinsured_motorist";
|
|
321
|
+
medical_payments: "medical_payments";
|
|
322
|
+
hired_auto: "hired_auto";
|
|
323
|
+
cargo: "cargo";
|
|
324
|
+
physical_damage: "physical_damage";
|
|
325
|
+
}>;
|
|
326
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
327
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
328
|
+
included: z.ZodBoolean;
|
|
329
|
+
}, z.core.$strip>>>;
|
|
330
|
+
radius: z.ZodOptional<z.ZodString>;
|
|
331
|
+
vehicleType: z.ZodOptional<z.ZodString>;
|
|
332
|
+
}, z.core.$strip>>>;
|
|
333
|
+
classifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
334
|
+
code: z.ZodString;
|
|
335
|
+
description: z.ZodString;
|
|
336
|
+
premiumBasis: z.ZodString;
|
|
337
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
338
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
339
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
340
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
341
|
+
}, z.core.$strip>>>;
|
|
342
|
+
formInventory: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
343
|
+
formNumber: z.ZodString;
|
|
344
|
+
editionDate: z.ZodOptional<z.ZodString>;
|
|
345
|
+
title: z.ZodOptional<z.ZodString>;
|
|
346
|
+
formType: z.ZodEnum<{
|
|
347
|
+
other: "other";
|
|
348
|
+
declarations: "declarations";
|
|
349
|
+
endorsement: "endorsement";
|
|
350
|
+
application: "application";
|
|
351
|
+
notice: "notice";
|
|
352
|
+
coverage: "coverage";
|
|
353
|
+
}>;
|
|
354
|
+
}, z.core.$strip>>>;
|
|
355
|
+
declarations: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
356
|
+
line: z.ZodLiteral<"homeowners">;
|
|
357
|
+
formType: z.ZodEnum<{
|
|
358
|
+
"HO-3": "HO-3";
|
|
359
|
+
"HO-5": "HO-5";
|
|
360
|
+
"HO-4": "HO-4";
|
|
361
|
+
"HO-6": "HO-6";
|
|
362
|
+
"HO-7": "HO-7";
|
|
363
|
+
"HO-8": "HO-8";
|
|
364
|
+
}>;
|
|
365
|
+
coverageA: z.ZodOptional<z.ZodString>;
|
|
366
|
+
coverageB: z.ZodOptional<z.ZodString>;
|
|
367
|
+
coverageC: z.ZodOptional<z.ZodString>;
|
|
368
|
+
coverageD: z.ZodOptional<z.ZodString>;
|
|
369
|
+
coverageE: z.ZodOptional<z.ZodString>;
|
|
370
|
+
coverageF: z.ZodOptional<z.ZodString>;
|
|
371
|
+
allPerilDeductible: z.ZodOptional<z.ZodString>;
|
|
372
|
+
windHailDeductible: z.ZodOptional<z.ZodString>;
|
|
373
|
+
hurricaneDeductible: z.ZodOptional<z.ZodString>;
|
|
374
|
+
lossSettlement: z.ZodOptional<z.ZodEnum<{
|
|
375
|
+
replacement_cost: "replacement_cost";
|
|
376
|
+
actual_cash_value: "actual_cash_value";
|
|
377
|
+
extended_replacement_cost: "extended_replacement_cost";
|
|
378
|
+
guaranteed_replacement_cost: "guaranteed_replacement_cost";
|
|
379
|
+
}>>;
|
|
380
|
+
dwelling: z.ZodObject<{
|
|
381
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
382
|
+
other: "other";
|
|
383
|
+
mixed: "mixed";
|
|
384
|
+
frame: "frame";
|
|
385
|
+
masonry: "masonry";
|
|
386
|
+
superior: "superior";
|
|
387
|
+
}>>;
|
|
388
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
392
|
+
other: "other";
|
|
393
|
+
asphalt_shingle: "asphalt_shingle";
|
|
394
|
+
tile: "tile";
|
|
395
|
+
metal: "metal";
|
|
396
|
+
slate: "slate";
|
|
397
|
+
flat: "flat";
|
|
398
|
+
wood_shake: "wood_shake";
|
|
399
|
+
}>>;
|
|
400
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
401
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
402
|
+
other: "other";
|
|
403
|
+
central: "central";
|
|
404
|
+
baseboard: "baseboard";
|
|
405
|
+
radiant: "radiant";
|
|
406
|
+
space_heater: "space_heater";
|
|
407
|
+
heat_pump: "heat_pump";
|
|
408
|
+
}>>;
|
|
409
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
410
|
+
other: "other";
|
|
411
|
+
basement: "basement";
|
|
412
|
+
crawl_space: "crawl_space";
|
|
413
|
+
slab: "slab";
|
|
414
|
+
pier: "pier";
|
|
415
|
+
}>>;
|
|
416
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
417
|
+
other: "other";
|
|
418
|
+
copper: "copper";
|
|
419
|
+
pex: "pex";
|
|
420
|
+
galvanized: "galvanized";
|
|
421
|
+
polybutylene: "polybutylene";
|
|
422
|
+
cpvc: "cpvc";
|
|
423
|
+
}>>;
|
|
424
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
425
|
+
other: "other";
|
|
426
|
+
circuit_breaker: "circuit_breaker";
|
|
427
|
+
fuse_box: "fuse_box";
|
|
428
|
+
knob_and_tube: "knob_and_tube";
|
|
429
|
+
}>>;
|
|
430
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
431
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
432
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
433
|
+
in_ground: "in_ground";
|
|
434
|
+
above_ground: "above_ground";
|
|
435
|
+
}>>;
|
|
436
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
437
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
438
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
439
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
440
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
441
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
442
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
443
|
+
}, z.core.$strip>;
|
|
444
|
+
mortgagee: z.ZodOptional<z.ZodObject<{
|
|
445
|
+
name: z.ZodString;
|
|
446
|
+
role: z.ZodEnum<{
|
|
447
|
+
other: "other";
|
|
448
|
+
additional_insured: "additional_insured";
|
|
449
|
+
loss_payee: "loss_payee";
|
|
450
|
+
mortgage_holder: "mortgage_holder";
|
|
451
|
+
certificate_holder: "certificate_holder";
|
|
452
|
+
notice_recipient: "notice_recipient";
|
|
453
|
+
}>;
|
|
454
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
455
|
+
street1: z.ZodString;
|
|
456
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
457
|
+
city: z.ZodString;
|
|
458
|
+
state: z.ZodString;
|
|
459
|
+
zip: z.ZodString;
|
|
460
|
+
country: z.ZodOptional<z.ZodString>;
|
|
461
|
+
}, z.core.$strip>>;
|
|
462
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
463
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
464
|
+
}, z.core.$strip>>;
|
|
465
|
+
additionalMortgagees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
466
|
+
name: z.ZodString;
|
|
467
|
+
role: z.ZodEnum<{
|
|
468
|
+
other: "other";
|
|
469
|
+
additional_insured: "additional_insured";
|
|
470
|
+
loss_payee: "loss_payee";
|
|
471
|
+
mortgage_holder: "mortgage_holder";
|
|
472
|
+
certificate_holder: "certificate_holder";
|
|
473
|
+
notice_recipient: "notice_recipient";
|
|
474
|
+
}>;
|
|
475
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
476
|
+
street1: z.ZodString;
|
|
477
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
478
|
+
city: z.ZodString;
|
|
479
|
+
state: z.ZodString;
|
|
480
|
+
zip: z.ZodString;
|
|
481
|
+
country: z.ZodOptional<z.ZodString>;
|
|
482
|
+
}, z.core.$strip>>;
|
|
483
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
484
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
485
|
+
}, z.core.$strip>>>;
|
|
486
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
487
|
+
line: z.ZodLiteral<"personal_auto">;
|
|
488
|
+
vehicles: z.ZodArray<z.ZodObject<{
|
|
489
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
490
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
491
|
+
make: z.ZodOptional<z.ZodString>;
|
|
492
|
+
model: z.ZodOptional<z.ZodString>;
|
|
493
|
+
vin: z.ZodOptional<z.ZodString>;
|
|
494
|
+
bodyType: z.ZodOptional<z.ZodString>;
|
|
495
|
+
garagingAddress: z.ZodOptional<z.ZodObject<{
|
|
496
|
+
street1: z.ZodString;
|
|
497
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
498
|
+
city: z.ZodString;
|
|
499
|
+
state: z.ZodString;
|
|
500
|
+
zip: z.ZodString;
|
|
501
|
+
country: z.ZodOptional<z.ZodString>;
|
|
502
|
+
}, z.core.$strip>>;
|
|
503
|
+
usage: z.ZodOptional<z.ZodEnum<{
|
|
504
|
+
pleasure: "pleasure";
|
|
505
|
+
commute: "commute";
|
|
506
|
+
business: "business";
|
|
507
|
+
farm: "farm";
|
|
508
|
+
}>>;
|
|
509
|
+
annualMileage: z.ZodOptional<z.ZodNumber>;
|
|
510
|
+
odometerReading: z.ZodOptional<z.ZodNumber>;
|
|
511
|
+
driverAssignment: z.ZodOptional<z.ZodString>;
|
|
512
|
+
lienHolder: z.ZodOptional<z.ZodObject<{
|
|
513
|
+
name: z.ZodString;
|
|
514
|
+
role: z.ZodEnum<{
|
|
515
|
+
other: "other";
|
|
516
|
+
additional_insured: "additional_insured";
|
|
517
|
+
loss_payee: "loss_payee";
|
|
518
|
+
mortgage_holder: "mortgage_holder";
|
|
519
|
+
certificate_holder: "certificate_holder";
|
|
520
|
+
notice_recipient: "notice_recipient";
|
|
521
|
+
}>;
|
|
522
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
523
|
+
street1: z.ZodString;
|
|
524
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
525
|
+
city: z.ZodString;
|
|
526
|
+
state: z.ZodString;
|
|
527
|
+
zip: z.ZodString;
|
|
528
|
+
country: z.ZodOptional<z.ZodString>;
|
|
529
|
+
}, z.core.$strip>>;
|
|
530
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
531
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
532
|
+
}, z.core.$strip>>;
|
|
533
|
+
collisionDeductible: z.ZodOptional<z.ZodString>;
|
|
534
|
+
comprehensiveDeductible: z.ZodOptional<z.ZodString>;
|
|
535
|
+
rentalReimbursement: z.ZodOptional<z.ZodBoolean>;
|
|
536
|
+
towing: z.ZodOptional<z.ZodBoolean>;
|
|
537
|
+
}, z.core.$strip>>;
|
|
538
|
+
drivers: z.ZodArray<z.ZodObject<{
|
|
539
|
+
name: z.ZodString;
|
|
540
|
+
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
541
|
+
licenseNumber: z.ZodOptional<z.ZodString>;
|
|
542
|
+
licenseState: z.ZodOptional<z.ZodString>;
|
|
543
|
+
relationship: z.ZodOptional<z.ZodEnum<{
|
|
544
|
+
other: "other";
|
|
545
|
+
named_insured: "named_insured";
|
|
546
|
+
spouse: "spouse";
|
|
547
|
+
child: "child";
|
|
548
|
+
other_household: "other_household";
|
|
549
|
+
}>>;
|
|
550
|
+
yearsLicensed: z.ZodOptional<z.ZodNumber>;
|
|
551
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
552
|
+
maritalStatus: z.ZodOptional<z.ZodString>;
|
|
553
|
+
goodStudentDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
554
|
+
defensiveDriverDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
555
|
+
violations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
556
|
+
date: z.ZodOptional<z.ZodString>;
|
|
557
|
+
type: z.ZodOptional<z.ZodString>;
|
|
558
|
+
description: z.ZodOptional<z.ZodString>;
|
|
559
|
+
}, z.core.$strip>>>;
|
|
560
|
+
accidents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
561
|
+
date: z.ZodOptional<z.ZodString>;
|
|
562
|
+
atFault: z.ZodOptional<z.ZodBoolean>;
|
|
563
|
+
description: z.ZodOptional<z.ZodString>;
|
|
564
|
+
amountPaid: z.ZodOptional<z.ZodString>;
|
|
565
|
+
}, z.core.$strip>>>;
|
|
566
|
+
sr22Required: z.ZodOptional<z.ZodBoolean>;
|
|
567
|
+
}, z.core.$strip>>;
|
|
568
|
+
liabilityLimits: z.ZodOptional<z.ZodObject<{
|
|
569
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
570
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
571
|
+
propertyDamage: z.ZodOptional<z.ZodString>;
|
|
572
|
+
combinedSingleLimit: z.ZodOptional<z.ZodString>;
|
|
573
|
+
}, z.core.$strip>>;
|
|
574
|
+
umLimits: z.ZodOptional<z.ZodObject<{
|
|
575
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
576
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
577
|
+
}, z.core.$strip>>;
|
|
578
|
+
uimLimits: z.ZodOptional<z.ZodObject<{
|
|
579
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
580
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
581
|
+
}, z.core.$strip>>;
|
|
582
|
+
pipLimit: z.ZodOptional<z.ZodString>;
|
|
583
|
+
medPayLimit: z.ZodOptional<z.ZodString>;
|
|
584
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
585
|
+
line: z.ZodLiteral<"dwelling_fire">;
|
|
586
|
+
formType: z.ZodEnum<{
|
|
587
|
+
"DP-1": "DP-1";
|
|
588
|
+
"DP-2": "DP-2";
|
|
589
|
+
"DP-3": "DP-3";
|
|
590
|
+
}>;
|
|
591
|
+
dwellingLimit: z.ZodOptional<z.ZodString>;
|
|
592
|
+
otherStructuresLimit: z.ZodOptional<z.ZodString>;
|
|
593
|
+
personalPropertyLimit: z.ZodOptional<z.ZodString>;
|
|
594
|
+
fairRentalValueLimit: z.ZodOptional<z.ZodString>;
|
|
595
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
596
|
+
medicalPaymentsLimit: z.ZodOptional<z.ZodString>;
|
|
597
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
598
|
+
dwelling: z.ZodObject<{
|
|
599
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
600
|
+
other: "other";
|
|
601
|
+
mixed: "mixed";
|
|
602
|
+
frame: "frame";
|
|
603
|
+
masonry: "masonry";
|
|
604
|
+
superior: "superior";
|
|
605
|
+
}>>;
|
|
606
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
607
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
608
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
609
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
610
|
+
other: "other";
|
|
611
|
+
asphalt_shingle: "asphalt_shingle";
|
|
612
|
+
tile: "tile";
|
|
613
|
+
metal: "metal";
|
|
614
|
+
slate: "slate";
|
|
615
|
+
flat: "flat";
|
|
616
|
+
wood_shake: "wood_shake";
|
|
617
|
+
}>>;
|
|
618
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
619
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
620
|
+
other: "other";
|
|
621
|
+
central: "central";
|
|
622
|
+
baseboard: "baseboard";
|
|
623
|
+
radiant: "radiant";
|
|
624
|
+
space_heater: "space_heater";
|
|
625
|
+
heat_pump: "heat_pump";
|
|
626
|
+
}>>;
|
|
627
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
628
|
+
other: "other";
|
|
629
|
+
basement: "basement";
|
|
630
|
+
crawl_space: "crawl_space";
|
|
631
|
+
slab: "slab";
|
|
632
|
+
pier: "pier";
|
|
633
|
+
}>>;
|
|
634
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
635
|
+
other: "other";
|
|
636
|
+
copper: "copper";
|
|
637
|
+
pex: "pex";
|
|
638
|
+
galvanized: "galvanized";
|
|
639
|
+
polybutylene: "polybutylene";
|
|
640
|
+
cpvc: "cpvc";
|
|
641
|
+
}>>;
|
|
642
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
643
|
+
other: "other";
|
|
644
|
+
circuit_breaker: "circuit_breaker";
|
|
645
|
+
fuse_box: "fuse_box";
|
|
646
|
+
knob_and_tube: "knob_and_tube";
|
|
647
|
+
}>>;
|
|
648
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
649
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
650
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
651
|
+
in_ground: "in_ground";
|
|
652
|
+
above_ground: "above_ground";
|
|
653
|
+
}>>;
|
|
654
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
655
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
656
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
657
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
658
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
659
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
660
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
661
|
+
}, z.core.$strip>;
|
|
662
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
663
|
+
line: z.ZodLiteral<"flood">;
|
|
664
|
+
programType: z.ZodEnum<{
|
|
665
|
+
nfip: "nfip";
|
|
666
|
+
private: "private";
|
|
667
|
+
}>;
|
|
668
|
+
floodZone: z.ZodOptional<z.ZodEnum<{
|
|
669
|
+
A: "A";
|
|
670
|
+
AE: "AE";
|
|
671
|
+
AH: "AH";
|
|
672
|
+
AO: "AO";
|
|
673
|
+
AR: "AR";
|
|
674
|
+
V: "V";
|
|
675
|
+
VE: "VE";
|
|
676
|
+
B: "B";
|
|
677
|
+
C: "C";
|
|
678
|
+
X: "X";
|
|
679
|
+
D: "D";
|
|
680
|
+
}>>;
|
|
681
|
+
communityNumber: z.ZodOptional<z.ZodString>;
|
|
682
|
+
communityRating: z.ZodOptional<z.ZodNumber>;
|
|
683
|
+
buildingCoverage: z.ZodOptional<z.ZodString>;
|
|
684
|
+
contentsCoverage: z.ZodOptional<z.ZodString>;
|
|
685
|
+
iccCoverage: z.ZodOptional<z.ZodString>;
|
|
686
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
687
|
+
waitingPeriodDays: z.ZodOptional<z.ZodNumber>;
|
|
688
|
+
elevationCertificate: z.ZodOptional<z.ZodBoolean>;
|
|
689
|
+
elevationDifference: z.ZodOptional<z.ZodString>;
|
|
690
|
+
buildingDiagramNumber: z.ZodOptional<z.ZodNumber>;
|
|
691
|
+
basementOrEnclosure: z.ZodOptional<z.ZodBoolean>;
|
|
692
|
+
postFirmConstruction: z.ZodOptional<z.ZodBoolean>;
|
|
693
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
694
|
+
line: z.ZodLiteral<"earthquake">;
|
|
695
|
+
dwellingCoverage: z.ZodOptional<z.ZodString>;
|
|
696
|
+
contentsCoverage: z.ZodOptional<z.ZodString>;
|
|
697
|
+
lossOfUseCoverage: z.ZodOptional<z.ZodString>;
|
|
698
|
+
deductiblePercent: z.ZodOptional<z.ZodNumber>;
|
|
699
|
+
retrofitDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
700
|
+
masonryVeneerCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
701
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
702
|
+
line: z.ZodLiteral<"personal_umbrella">;
|
|
703
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
704
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
705
|
+
retainedLimit: z.ZodOptional<z.ZodString>;
|
|
706
|
+
underlyingPolicies: z.ZodArray<z.ZodObject<{
|
|
707
|
+
carrier: z.ZodOptional<z.ZodString>;
|
|
708
|
+
policyNumber: z.ZodOptional<z.ZodString>;
|
|
709
|
+
policyType: z.ZodOptional<z.ZodString>;
|
|
710
|
+
limits: z.ZodOptional<z.ZodString>;
|
|
711
|
+
}, z.core.$strip>>;
|
|
712
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
713
|
+
line: z.ZodLiteral<"personal_articles">;
|
|
714
|
+
scheduledItems: z.ZodArray<z.ZodObject<{
|
|
715
|
+
itemNumber: z.ZodOptional<z.ZodNumber>;
|
|
716
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
717
|
+
other: "other";
|
|
718
|
+
jewelry: "jewelry";
|
|
719
|
+
fine_art: "fine_art";
|
|
720
|
+
musical_instruments: "musical_instruments";
|
|
721
|
+
silverware: "silverware";
|
|
722
|
+
furs: "furs";
|
|
723
|
+
cameras: "cameras";
|
|
724
|
+
collectibles: "collectibles";
|
|
725
|
+
firearms: "firearms";
|
|
726
|
+
golf_equipment: "golf_equipment";
|
|
727
|
+
}>>;
|
|
728
|
+
description: z.ZodString;
|
|
729
|
+
appraisedValue: z.ZodString;
|
|
730
|
+
appraisalDate: z.ZodOptional<z.ZodString>;
|
|
731
|
+
}, z.core.$strip>>;
|
|
732
|
+
blanketCoverage: z.ZodOptional<z.ZodString>;
|
|
733
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
734
|
+
worldwideCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
735
|
+
breakageCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
736
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
737
|
+
line: z.ZodLiteral<"watercraft">;
|
|
738
|
+
boatType: z.ZodOptional<z.ZodEnum<{
|
|
739
|
+
other: "other";
|
|
740
|
+
sailboat: "sailboat";
|
|
741
|
+
powerboat: "powerboat";
|
|
742
|
+
pontoon: "pontoon";
|
|
743
|
+
jet_ski: "jet_ski";
|
|
744
|
+
kayak_canoe: "kayak_canoe";
|
|
745
|
+
yacht: "yacht";
|
|
746
|
+
}>>;
|
|
747
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
748
|
+
make: z.ZodOptional<z.ZodString>;
|
|
749
|
+
model: z.ZodOptional<z.ZodString>;
|
|
750
|
+
length: z.ZodOptional<z.ZodString>;
|
|
751
|
+
hullMaterial: z.ZodOptional<z.ZodEnum<{
|
|
752
|
+
other: "other";
|
|
753
|
+
fiberglass: "fiberglass";
|
|
754
|
+
aluminum: "aluminum";
|
|
755
|
+
wood: "wood";
|
|
756
|
+
steel: "steel";
|
|
757
|
+
inflatable: "inflatable";
|
|
758
|
+
}>>;
|
|
759
|
+
hullValue: z.ZodOptional<z.ZodString>;
|
|
760
|
+
motorHorsepower: z.ZodOptional<z.ZodNumber>;
|
|
761
|
+
motorType: z.ZodOptional<z.ZodEnum<{
|
|
762
|
+
outboard: "outboard";
|
|
763
|
+
inboard: "inboard";
|
|
764
|
+
inboard_outboard: "inboard_outboard";
|
|
765
|
+
jet: "jet";
|
|
766
|
+
}>>;
|
|
767
|
+
navigationLimits: z.ZodOptional<z.ZodString>;
|
|
768
|
+
layupPeriod: z.ZodOptional<z.ZodString>;
|
|
769
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
770
|
+
medicalPaymentsLimit: z.ZodOptional<z.ZodString>;
|
|
771
|
+
physicalDamageDeductible: z.ZodOptional<z.ZodString>;
|
|
772
|
+
uninsuredBoaterLimit: z.ZodOptional<z.ZodString>;
|
|
773
|
+
trailerCovered: z.ZodOptional<z.ZodBoolean>;
|
|
774
|
+
trailerValue: z.ZodOptional<z.ZodString>;
|
|
775
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
776
|
+
line: z.ZodLiteral<"recreational_vehicle">;
|
|
777
|
+
vehicleType: z.ZodEnum<{
|
|
778
|
+
other: "other";
|
|
779
|
+
rv_motorhome: "rv_motorhome";
|
|
780
|
+
travel_trailer: "travel_trailer";
|
|
781
|
+
atv: "atv";
|
|
782
|
+
snowmobile: "snowmobile";
|
|
783
|
+
golf_cart: "golf_cart";
|
|
784
|
+
dirt_bike: "dirt_bike";
|
|
785
|
+
}>;
|
|
786
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
787
|
+
make: z.ZodOptional<z.ZodString>;
|
|
788
|
+
model: z.ZodOptional<z.ZodString>;
|
|
789
|
+
vin: z.ZodOptional<z.ZodString>;
|
|
790
|
+
value: z.ZodOptional<z.ZodString>;
|
|
791
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
792
|
+
collisionDeductible: z.ZodOptional<z.ZodString>;
|
|
793
|
+
comprehensiveDeductible: z.ZodOptional<z.ZodString>;
|
|
794
|
+
personalEffectsCoverage: z.ZodOptional<z.ZodString>;
|
|
795
|
+
fullTimerCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
796
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
797
|
+
line: z.ZodLiteral<"farm_ranch">;
|
|
798
|
+
dwellingCoverage: z.ZodOptional<z.ZodString>;
|
|
799
|
+
farmPersonalPropertyCoverage: z.ZodOptional<z.ZodString>;
|
|
800
|
+
farmLiabilityLimit: z.ZodOptional<z.ZodString>;
|
|
801
|
+
farmAutoIncluded: z.ZodOptional<z.ZodBoolean>;
|
|
802
|
+
livestock: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
803
|
+
type: z.ZodString;
|
|
804
|
+
headCount: z.ZodNumber;
|
|
805
|
+
value: z.ZodOptional<z.ZodString>;
|
|
806
|
+
}, z.core.$strip>>>;
|
|
807
|
+
equipmentSchedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
808
|
+
description: z.ZodString;
|
|
809
|
+
value: z.ZodString;
|
|
810
|
+
}, z.core.$strip>>>;
|
|
811
|
+
acreage: z.ZodOptional<z.ZodNumber>;
|
|
812
|
+
dwelling: z.ZodOptional<z.ZodObject<{
|
|
813
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
814
|
+
other: "other";
|
|
815
|
+
mixed: "mixed";
|
|
816
|
+
frame: "frame";
|
|
817
|
+
masonry: "masonry";
|
|
818
|
+
superior: "superior";
|
|
819
|
+
}>>;
|
|
820
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
822
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
823
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
824
|
+
other: "other";
|
|
825
|
+
asphalt_shingle: "asphalt_shingle";
|
|
826
|
+
tile: "tile";
|
|
827
|
+
metal: "metal";
|
|
828
|
+
slate: "slate";
|
|
829
|
+
flat: "flat";
|
|
830
|
+
wood_shake: "wood_shake";
|
|
831
|
+
}>>;
|
|
832
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
833
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
834
|
+
other: "other";
|
|
835
|
+
central: "central";
|
|
836
|
+
baseboard: "baseboard";
|
|
837
|
+
radiant: "radiant";
|
|
838
|
+
space_heater: "space_heater";
|
|
839
|
+
heat_pump: "heat_pump";
|
|
840
|
+
}>>;
|
|
841
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
842
|
+
other: "other";
|
|
843
|
+
basement: "basement";
|
|
844
|
+
crawl_space: "crawl_space";
|
|
845
|
+
slab: "slab";
|
|
846
|
+
pier: "pier";
|
|
847
|
+
}>>;
|
|
848
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
849
|
+
other: "other";
|
|
850
|
+
copper: "copper";
|
|
851
|
+
pex: "pex";
|
|
852
|
+
galvanized: "galvanized";
|
|
853
|
+
polybutylene: "polybutylene";
|
|
854
|
+
cpvc: "cpvc";
|
|
855
|
+
}>>;
|
|
856
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
857
|
+
other: "other";
|
|
858
|
+
circuit_breaker: "circuit_breaker";
|
|
859
|
+
fuse_box: "fuse_box";
|
|
860
|
+
knob_and_tube: "knob_and_tube";
|
|
861
|
+
}>>;
|
|
862
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
863
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
864
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
865
|
+
in_ground: "in_ground";
|
|
866
|
+
above_ground: "above_ground";
|
|
867
|
+
}>>;
|
|
868
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
869
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
870
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
871
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
872
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
873
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
874
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
875
|
+
}, z.core.$strip>>;
|
|
876
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
877
|
+
line: z.ZodLiteral<"title">;
|
|
878
|
+
policyType: z.ZodEnum<{
|
|
879
|
+
owners: "owners";
|
|
880
|
+
lenders: "lenders";
|
|
881
|
+
}>;
|
|
882
|
+
policyAmount: z.ZodString;
|
|
883
|
+
legalDescription: z.ZodOptional<z.ZodString>;
|
|
884
|
+
propertyAddress: z.ZodOptional<z.ZodObject<{
|
|
885
|
+
street1: z.ZodString;
|
|
886
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
887
|
+
city: z.ZodString;
|
|
888
|
+
state: z.ZodString;
|
|
889
|
+
zip: z.ZodString;
|
|
890
|
+
country: z.ZodOptional<z.ZodString>;
|
|
891
|
+
}, z.core.$strip>>;
|
|
892
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
893
|
+
exceptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
894
|
+
number: z.ZodNumber;
|
|
895
|
+
description: z.ZodString;
|
|
896
|
+
}, z.core.$strip>>>;
|
|
897
|
+
underwriter: z.ZodOptional<z.ZodString>;
|
|
898
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
899
|
+
line: z.ZodLiteral<"pet">;
|
|
900
|
+
species: z.ZodEnum<{
|
|
901
|
+
other: "other";
|
|
902
|
+
dog: "dog";
|
|
903
|
+
cat: "cat";
|
|
904
|
+
}>;
|
|
905
|
+
breed: z.ZodOptional<z.ZodString>;
|
|
906
|
+
petName: z.ZodOptional<z.ZodString>;
|
|
907
|
+
age: z.ZodOptional<z.ZodNumber>;
|
|
908
|
+
annualLimit: z.ZodOptional<z.ZodString>;
|
|
909
|
+
perIncidentLimit: z.ZodOptional<z.ZodString>;
|
|
910
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
911
|
+
reimbursementPercent: z.ZodOptional<z.ZodNumber>;
|
|
912
|
+
waitingPeriodDays: z.ZodOptional<z.ZodNumber>;
|
|
913
|
+
preExistingConditionsExcluded: z.ZodOptional<z.ZodBoolean>;
|
|
914
|
+
wellnessCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
915
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
916
|
+
line: z.ZodLiteral<"travel">;
|
|
917
|
+
tripDepartureDate: z.ZodOptional<z.ZodString>;
|
|
918
|
+
tripReturnDate: z.ZodOptional<z.ZodString>;
|
|
919
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
920
|
+
travelers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
921
|
+
name: z.ZodString;
|
|
922
|
+
age: z.ZodOptional<z.ZodNumber>;
|
|
923
|
+
}, z.core.$strip>>>;
|
|
924
|
+
tripCost: z.ZodOptional<z.ZodString>;
|
|
925
|
+
tripCancellationLimit: z.ZodOptional<z.ZodString>;
|
|
926
|
+
medicalLimit: z.ZodOptional<z.ZodString>;
|
|
927
|
+
evacuationLimit: z.ZodOptional<z.ZodString>;
|
|
928
|
+
baggageLimit: z.ZodOptional<z.ZodString>;
|
|
929
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
930
|
+
line: z.ZodLiteral<"identity_theft">;
|
|
931
|
+
coverageLimit: z.ZodOptional<z.ZodString>;
|
|
932
|
+
expenseReimbursement: z.ZodOptional<z.ZodString>;
|
|
933
|
+
creditMonitoring: z.ZodOptional<z.ZodBoolean>;
|
|
934
|
+
restorationServices: z.ZodOptional<z.ZodBoolean>;
|
|
935
|
+
lostWagesLimit: z.ZodOptional<z.ZodString>;
|
|
936
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
937
|
+
line: z.ZodLiteral<"gl">;
|
|
938
|
+
coverageForm: z.ZodOptional<z.ZodEnum<{
|
|
939
|
+
occurrence: "occurrence";
|
|
940
|
+
claims_made: "claims_made";
|
|
941
|
+
accident: "accident";
|
|
942
|
+
}>>;
|
|
943
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
944
|
+
generalAggregate: z.ZodOptional<z.ZodString>;
|
|
945
|
+
productsCompletedOpsAggregate: z.ZodOptional<z.ZodString>;
|
|
946
|
+
personalAdvertisingInjury: z.ZodOptional<z.ZodString>;
|
|
947
|
+
fireDamage: z.ZodOptional<z.ZodString>;
|
|
948
|
+
medicalExpense: z.ZodOptional<z.ZodString>;
|
|
949
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
950
|
+
inside_limits: "inside_limits";
|
|
951
|
+
outside_limits: "outside_limits";
|
|
952
|
+
supplementary: "supplementary";
|
|
953
|
+
}>>;
|
|
954
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
955
|
+
classifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
956
|
+
code: z.ZodString;
|
|
957
|
+
description: z.ZodString;
|
|
958
|
+
premiumBasis: z.ZodString;
|
|
959
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
960
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
961
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
962
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
963
|
+
}, z.core.$strip>>>;
|
|
964
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
965
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
966
|
+
line: z.ZodLiteral<"commercial_property">;
|
|
967
|
+
causesOfLossForm: z.ZodOptional<z.ZodEnum<{
|
|
968
|
+
basic: "basic";
|
|
969
|
+
broad: "broad";
|
|
970
|
+
special: "special";
|
|
971
|
+
}>>;
|
|
972
|
+
coinsurancePercent: z.ZodOptional<z.ZodNumber>;
|
|
973
|
+
valuationMethod: z.ZodOptional<z.ZodEnum<{
|
|
974
|
+
replacement_cost: "replacement_cost";
|
|
975
|
+
actual_cash_value: "actual_cash_value";
|
|
976
|
+
agreed_value: "agreed_value";
|
|
977
|
+
functional_replacement: "functional_replacement";
|
|
978
|
+
}>>;
|
|
979
|
+
locations: z.ZodArray<z.ZodObject<{
|
|
980
|
+
number: z.ZodNumber;
|
|
981
|
+
address: z.ZodObject<{
|
|
982
|
+
street1: z.ZodString;
|
|
983
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
984
|
+
city: z.ZodString;
|
|
985
|
+
state: z.ZodString;
|
|
986
|
+
zip: z.ZodString;
|
|
987
|
+
country: z.ZodOptional<z.ZodString>;
|
|
988
|
+
}, z.core.$strip>;
|
|
989
|
+
description: z.ZodOptional<z.ZodString>;
|
|
990
|
+
buildingValue: z.ZodOptional<z.ZodString>;
|
|
991
|
+
contentsValue: z.ZodOptional<z.ZodString>;
|
|
992
|
+
businessIncomeValue: z.ZodOptional<z.ZodString>;
|
|
993
|
+
constructionType: z.ZodOptional<z.ZodString>;
|
|
994
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
995
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
996
|
+
protectionClass: z.ZodOptional<z.ZodString>;
|
|
997
|
+
sprinklered: z.ZodOptional<z.ZodBoolean>;
|
|
998
|
+
alarmType: z.ZodOptional<z.ZodString>;
|
|
999
|
+
occupancy: z.ZodOptional<z.ZodString>;
|
|
1000
|
+
}, z.core.$strip>>;
|
|
1001
|
+
blanketLimit: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
businessIncomeLimit: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
extraExpenseLimit: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1005
|
+
line: z.ZodLiteral<"commercial_auto">;
|
|
1006
|
+
vehicles: z.ZodArray<z.ZodObject<{
|
|
1007
|
+
number: z.ZodNumber;
|
|
1008
|
+
year: z.ZodNumber;
|
|
1009
|
+
make: z.ZodString;
|
|
1010
|
+
model: z.ZodString;
|
|
1011
|
+
vin: z.ZodString;
|
|
1012
|
+
costNew: z.ZodOptional<z.ZodString>;
|
|
1013
|
+
statedValue: z.ZodOptional<z.ZodString>;
|
|
1014
|
+
garageLocation: z.ZodOptional<z.ZodNumber>;
|
|
1015
|
+
coverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1016
|
+
type: z.ZodEnum<{
|
|
1017
|
+
non_owned_auto: "non_owned_auto";
|
|
1018
|
+
liability: "liability";
|
|
1019
|
+
collision: "collision";
|
|
1020
|
+
comprehensive: "comprehensive";
|
|
1021
|
+
uninsured_motorist: "uninsured_motorist";
|
|
1022
|
+
underinsured_motorist: "underinsured_motorist";
|
|
1023
|
+
medical_payments: "medical_payments";
|
|
1024
|
+
hired_auto: "hired_auto";
|
|
1025
|
+
cargo: "cargo";
|
|
1026
|
+
physical_damage: "physical_damage";
|
|
1027
|
+
}>;
|
|
1028
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
1029
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1030
|
+
included: z.ZodBoolean;
|
|
1031
|
+
}, z.core.$strip>>>;
|
|
1032
|
+
radius: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
vehicleType: z.ZodOptional<z.ZodString>;
|
|
1034
|
+
}, z.core.$strip>>;
|
|
1035
|
+
coveredAutoSymbols: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1036
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
1037
|
+
umLimit: z.ZodOptional<z.ZodString>;
|
|
1038
|
+
uimLimit: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
hiredAutoLiability: z.ZodOptional<z.ZodBoolean>;
|
|
1040
|
+
nonOwnedAutoLiability: z.ZodOptional<z.ZodBoolean>;
|
|
1041
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1042
|
+
line: z.ZodLiteral<"workers_comp">;
|
|
1043
|
+
coveredStates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1044
|
+
classifications: z.ZodArray<z.ZodObject<{
|
|
1045
|
+
code: z.ZodString;
|
|
1046
|
+
description: z.ZodString;
|
|
1047
|
+
premiumBasis: z.ZodString;
|
|
1048
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
1050
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
1052
|
+
}, z.core.$strip>>;
|
|
1053
|
+
experienceMod: z.ZodOptional<z.ZodObject<{
|
|
1054
|
+
factor: z.ZodNumber;
|
|
1055
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
}, z.core.$strip>>;
|
|
1058
|
+
employersLiability: z.ZodOptional<z.ZodObject<{
|
|
1059
|
+
eachAccident: z.ZodString;
|
|
1060
|
+
diseasePolicyLimit: z.ZodString;
|
|
1061
|
+
diseaseEachEmployee: z.ZodString;
|
|
1062
|
+
}, z.core.$strip>>;
|
|
1063
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1064
|
+
line: z.ZodLiteral<"umbrella_excess">;
|
|
1065
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
1066
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
retention: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
underlyingPolicies: z.ZodArray<z.ZodObject<{
|
|
1069
|
+
carrier: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
policyNumber: z.ZodOptional<z.ZodString>;
|
|
1071
|
+
policyType: z.ZodOptional<z.ZodString>;
|
|
1072
|
+
limits: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
}, z.core.$strip>>;
|
|
1074
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1075
|
+
line: z.ZodLiteral<"professional_liability">;
|
|
1076
|
+
perClaimLimit: z.ZodOptional<z.ZodString>;
|
|
1077
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
1078
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
1079
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
1080
|
+
inside_limits: "inside_limits";
|
|
1081
|
+
outside_limits: "outside_limits";
|
|
1082
|
+
supplementary: "supplementary";
|
|
1083
|
+
}>>;
|
|
1084
|
+
extendedReportingPeriod: z.ZodOptional<z.ZodObject<{
|
|
1085
|
+
basicDays: z.ZodOptional<z.ZodNumber>;
|
|
1086
|
+
supplementalYears: z.ZodOptional<z.ZodNumber>;
|
|
1087
|
+
supplementalPremium: z.ZodOptional<z.ZodString>;
|
|
1088
|
+
}, z.core.$strip>>;
|
|
1089
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1090
|
+
line: z.ZodLiteral<"cyber">;
|
|
1091
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
1092
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
1093
|
+
waitingPeriodHours: z.ZodOptional<z.ZodNumber>;
|
|
1094
|
+
sublimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
|
+
coverageName: z.ZodString;
|
|
1096
|
+
limit: z.ZodString;
|
|
1097
|
+
}, z.core.$strip>>>;
|
|
1098
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1099
|
+
line: z.ZodLiteral<"directors_officers">;
|
|
1100
|
+
sideALimit: z.ZodOptional<z.ZodString>;
|
|
1101
|
+
sideBLimit: z.ZodOptional<z.ZodString>;
|
|
1102
|
+
sideCLimit: z.ZodOptional<z.ZodString>;
|
|
1103
|
+
sideARetention: z.ZodOptional<z.ZodString>;
|
|
1104
|
+
sideBRetention: z.ZodOptional<z.ZodString>;
|
|
1105
|
+
sideCRetention: z.ZodOptional<z.ZodString>;
|
|
1106
|
+
continuityDate: z.ZodOptional<z.ZodString>;
|
|
1107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1108
|
+
line: z.ZodLiteral<"crime">;
|
|
1109
|
+
formType: z.ZodOptional<z.ZodEnum<{
|
|
1110
|
+
discovery: "discovery";
|
|
1111
|
+
loss_sustained: "loss_sustained";
|
|
1112
|
+
}>>;
|
|
1113
|
+
agreements: z.ZodArray<z.ZodObject<{
|
|
1114
|
+
agreement: z.ZodString;
|
|
1115
|
+
coverageName: z.ZodString;
|
|
1116
|
+
limit: z.ZodString;
|
|
1117
|
+
deductible: z.ZodString;
|
|
1118
|
+
}, z.core.$strip>>;
|
|
1119
|
+
}, z.core.$strip>], "line">>;
|
|
1120
|
+
coverageForm: z.ZodOptional<z.ZodEnum<{
|
|
1121
|
+
occurrence: "occurrence";
|
|
1122
|
+
claims_made: "claims_made";
|
|
1123
|
+
accident: "accident";
|
|
1124
|
+
}>>;
|
|
1125
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
1126
|
+
extendedReportingPeriod: z.ZodOptional<z.ZodObject<{
|
|
1127
|
+
basicDays: z.ZodOptional<z.ZodNumber>;
|
|
1128
|
+
supplementalYears: z.ZodOptional<z.ZodNumber>;
|
|
1129
|
+
supplementalPremium: z.ZodOptional<z.ZodString>;
|
|
1130
|
+
}, z.core.$strip>>;
|
|
1131
|
+
insurer: z.ZodOptional<z.ZodObject<{
|
|
1132
|
+
legalName: z.ZodString;
|
|
1133
|
+
naicNumber: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
amBestRating: z.ZodOptional<z.ZodString>;
|
|
1135
|
+
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
1136
|
+
admittedStatus: z.ZodOptional<z.ZodEnum<{
|
|
1137
|
+
admitted: "admitted";
|
|
1138
|
+
non_admitted: "non_admitted";
|
|
1139
|
+
surplus_lines: "surplus_lines";
|
|
1140
|
+
}>>;
|
|
1141
|
+
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
}, z.core.$strip>>;
|
|
1143
|
+
producer: z.ZodOptional<z.ZodObject<{
|
|
1144
|
+
agencyName: z.ZodString;
|
|
1145
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
licenseNumber: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1150
|
+
street1: z.ZodString;
|
|
1151
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
city: z.ZodString;
|
|
1153
|
+
state: z.ZodString;
|
|
1154
|
+
zip: z.ZodString;
|
|
1155
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1156
|
+
}, z.core.$strip>>;
|
|
1157
|
+
}, z.core.$strip>>;
|
|
1158
|
+
claimsContacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1159
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1163
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
1164
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1165
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1166
|
+
street1: z.ZodString;
|
|
1167
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1168
|
+
city: z.ZodString;
|
|
1169
|
+
state: z.ZodString;
|
|
1170
|
+
zip: z.ZodString;
|
|
1171
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
}, z.core.$strip>>;
|
|
1173
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
1174
|
+
}, z.core.$strip>>>;
|
|
1175
|
+
regulatoryContacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1176
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1177
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1178
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1179
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
1181
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1182
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1183
|
+
street1: z.ZodString;
|
|
1184
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1185
|
+
city: z.ZodString;
|
|
1186
|
+
state: z.ZodString;
|
|
1187
|
+
zip: z.ZodString;
|
|
1188
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
}, z.core.$strip>>;
|
|
1190
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
}, z.core.$strip>>>;
|
|
1192
|
+
thirdPartyAdministrators: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1193
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1194
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1195
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
1198
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1199
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1200
|
+
street1: z.ZodString;
|
|
1201
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1202
|
+
city: z.ZodString;
|
|
1203
|
+
state: z.ZodString;
|
|
1204
|
+
zip: z.ZodString;
|
|
1205
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1206
|
+
}, z.core.$strip>>;
|
|
1207
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
1208
|
+
}, z.core.$strip>>>;
|
|
1209
|
+
additionalInsureds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1210
|
+
name: z.ZodString;
|
|
1211
|
+
role: z.ZodEnum<{
|
|
1212
|
+
other: "other";
|
|
1213
|
+
additional_insured: "additional_insured";
|
|
1214
|
+
loss_payee: "loss_payee";
|
|
1215
|
+
mortgage_holder: "mortgage_holder";
|
|
1216
|
+
certificate_holder: "certificate_holder";
|
|
1217
|
+
notice_recipient: "notice_recipient";
|
|
1218
|
+
}>;
|
|
1219
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1220
|
+
street1: z.ZodString;
|
|
1221
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1222
|
+
city: z.ZodString;
|
|
1223
|
+
state: z.ZodString;
|
|
1224
|
+
zip: z.ZodString;
|
|
1225
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
}, z.core.$strip>>;
|
|
1227
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
}, z.core.$strip>>>;
|
|
1230
|
+
lossPayees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1231
|
+
name: z.ZodString;
|
|
1232
|
+
role: z.ZodEnum<{
|
|
1233
|
+
other: "other";
|
|
1234
|
+
additional_insured: "additional_insured";
|
|
1235
|
+
loss_payee: "loss_payee";
|
|
1236
|
+
mortgage_holder: "mortgage_holder";
|
|
1237
|
+
certificate_holder: "certificate_holder";
|
|
1238
|
+
notice_recipient: "notice_recipient";
|
|
1239
|
+
}>;
|
|
1240
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1241
|
+
street1: z.ZodString;
|
|
1242
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
city: z.ZodString;
|
|
1244
|
+
state: z.ZodString;
|
|
1245
|
+
zip: z.ZodString;
|
|
1246
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1247
|
+
}, z.core.$strip>>;
|
|
1248
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1249
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1250
|
+
}, z.core.$strip>>>;
|
|
1251
|
+
mortgageHolders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1252
|
+
name: z.ZodString;
|
|
1253
|
+
role: z.ZodEnum<{
|
|
1254
|
+
other: "other";
|
|
1255
|
+
additional_insured: "additional_insured";
|
|
1256
|
+
loss_payee: "loss_payee";
|
|
1257
|
+
mortgage_holder: "mortgage_holder";
|
|
1258
|
+
certificate_holder: "certificate_holder";
|
|
1259
|
+
notice_recipient: "notice_recipient";
|
|
1260
|
+
}>;
|
|
1261
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1262
|
+
street1: z.ZodString;
|
|
1263
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
city: z.ZodString;
|
|
1265
|
+
state: z.ZodString;
|
|
1266
|
+
zip: z.ZodString;
|
|
1267
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
}, z.core.$strip>>;
|
|
1269
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1270
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1271
|
+
}, z.core.$strip>>>;
|
|
1272
|
+
taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1273
|
+
name: z.ZodString;
|
|
1274
|
+
amount: z.ZodString;
|
|
1275
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1276
|
+
tax: "tax";
|
|
1277
|
+
fee: "fee";
|
|
1278
|
+
surcharge: "surcharge";
|
|
1279
|
+
assessment: "assessment";
|
|
1280
|
+
}>>;
|
|
1281
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1282
|
+
}, z.core.$strip>>>;
|
|
1283
|
+
totalCost: z.ZodOptional<z.ZodString>;
|
|
1284
|
+
minimumPremium: z.ZodOptional<z.ZodString>;
|
|
1285
|
+
depositPremium: z.ZodOptional<z.ZodString>;
|
|
1286
|
+
paymentPlan: z.ZodOptional<z.ZodObject<{
|
|
1287
|
+
installments: z.ZodArray<z.ZodObject<{
|
|
1288
|
+
dueDate: z.ZodString;
|
|
1289
|
+
amount: z.ZodString;
|
|
1290
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1291
|
+
}, z.core.$strip>>;
|
|
1292
|
+
financeCharge: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
}, z.core.$strip>>;
|
|
1294
|
+
auditType: z.ZodOptional<z.ZodEnum<{
|
|
1295
|
+
annual: "annual";
|
|
1296
|
+
semi_annual: "semi_annual";
|
|
1297
|
+
quarterly: "quarterly";
|
|
1298
|
+
monthly: "monthly";
|
|
1299
|
+
self: "self";
|
|
1300
|
+
physical: "physical";
|
|
1301
|
+
none: "none";
|
|
1302
|
+
}>>;
|
|
1303
|
+
ratingBasis: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1304
|
+
type: z.ZodEnum<{
|
|
1305
|
+
other: "other";
|
|
1306
|
+
payroll: "payroll";
|
|
1307
|
+
revenue: "revenue";
|
|
1308
|
+
area: "area";
|
|
1309
|
+
units: "units";
|
|
1310
|
+
vehicle_count: "vehicle_count";
|
|
1311
|
+
employee_count: "employee_count";
|
|
1312
|
+
per_capita: "per_capita";
|
|
1313
|
+
dwelling_value: "dwelling_value";
|
|
1314
|
+
vehicle_value: "vehicle_value";
|
|
1315
|
+
contents_value: "contents_value";
|
|
1316
|
+
}>;
|
|
1317
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
}, z.core.$strip>>>;
|
|
1320
|
+
premiumByLocation: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1321
|
+
locationNumber: z.ZodNumber;
|
|
1322
|
+
premium: z.ZodString;
|
|
1323
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1324
|
+
}, z.core.$strip>>>;
|
|
1325
|
+
lossSummary: z.ZodOptional<z.ZodObject<{
|
|
1326
|
+
period: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
totalClaims: z.ZodOptional<z.ZodNumber>;
|
|
1328
|
+
totalIncurred: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
totalPaid: z.ZodOptional<z.ZodString>;
|
|
1330
|
+
totalReserved: z.ZodOptional<z.ZodString>;
|
|
1331
|
+
lossRatio: z.ZodOptional<z.ZodString>;
|
|
1332
|
+
}, z.core.$strip>>;
|
|
1333
|
+
individualClaims: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1334
|
+
dateOfLoss: z.ZodString;
|
|
1335
|
+
claimNumber: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
description: z.ZodString;
|
|
1337
|
+
status: z.ZodEnum<{
|
|
1338
|
+
open: "open";
|
|
1339
|
+
closed: "closed";
|
|
1340
|
+
reopened: "reopened";
|
|
1341
|
+
}>;
|
|
1342
|
+
paid: z.ZodOptional<z.ZodString>;
|
|
1343
|
+
reserved: z.ZodOptional<z.ZodString>;
|
|
1344
|
+
incurred: z.ZodOptional<z.ZodString>;
|
|
1345
|
+
claimant: z.ZodOptional<z.ZodString>;
|
|
1346
|
+
coverageLine: z.ZodOptional<z.ZodString>;
|
|
1347
|
+
}, z.core.$strip>>>;
|
|
1348
|
+
experienceMod: z.ZodOptional<z.ZodObject<{
|
|
1349
|
+
factor: z.ZodNumber;
|
|
1350
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
1351
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1352
|
+
}, z.core.$strip>>;
|
|
1353
|
+
cancellationNoticeDays: z.ZodOptional<z.ZodNumber>;
|
|
1354
|
+
nonrenewalNoticeDays: z.ZodOptional<z.ZodNumber>;
|
|
1355
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1356
|
+
type: z.ZodLiteral<"quote">;
|
|
1357
|
+
quoteNumber: z.ZodString;
|
|
1358
|
+
proposedEffectiveDate: z.ZodOptional<z.ZodString>;
|
|
1359
|
+
proposedExpirationDate: z.ZodOptional<z.ZodString>;
|
|
1360
|
+
quoteExpirationDate: z.ZodOptional<z.ZodString>;
|
|
1361
|
+
subjectivities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1362
|
+
description: z.ZodString;
|
|
1363
|
+
category: z.ZodOptional<z.ZodString>;
|
|
1364
|
+
}, z.core.$strip>>>;
|
|
1365
|
+
underwritingConditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1366
|
+
description: z.ZodString;
|
|
1367
|
+
}, z.core.$strip>>>;
|
|
1368
|
+
premiumBreakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1369
|
+
line: z.ZodString;
|
|
1370
|
+
amount: z.ZodString;
|
|
1371
|
+
}, z.core.$strip>>>;
|
|
1372
|
+
enrichedSubjectivities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1373
|
+
description: z.ZodString;
|
|
1374
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
1375
|
+
pre_binding: "pre_binding";
|
|
1376
|
+
post_binding: "post_binding";
|
|
1377
|
+
information: "information";
|
|
1378
|
+
}>>;
|
|
1379
|
+
dueDate: z.ZodOptional<z.ZodString>;
|
|
1380
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1381
|
+
open: "open";
|
|
1382
|
+
satisfied: "satisfied";
|
|
1383
|
+
waived: "waived";
|
|
1384
|
+
}>>;
|
|
1385
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1386
|
+
}, z.core.$strip>>>;
|
|
1387
|
+
enrichedUnderwritingConditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1388
|
+
description: z.ZodString;
|
|
1389
|
+
category: z.ZodOptional<z.ZodString>;
|
|
1390
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1391
|
+
}, z.core.$strip>>>;
|
|
1392
|
+
warrantyRequirements: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1393
|
+
lossControlRecommendations: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1394
|
+
bindingAuthority: z.ZodOptional<z.ZodObject<{
|
|
1395
|
+
authorizedBy: z.ZodOptional<z.ZodString>;
|
|
1396
|
+
method: z.ZodOptional<z.ZodString>;
|
|
1397
|
+
expiration: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1399
|
+
}, z.core.$strip>>;
|
|
1400
|
+
id: z.ZodString;
|
|
1401
|
+
carrier: z.ZodString;
|
|
1402
|
+
security: z.ZodOptional<z.ZodString>;
|
|
1403
|
+
insuredName: z.ZodString;
|
|
1404
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
1405
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1406
|
+
policyTypes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1407
|
+
coverages: z.ZodArray<z.ZodObject<{
|
|
1408
|
+
name: z.ZodString;
|
|
1409
|
+
limit: z.ZodString;
|
|
1410
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1412
|
+
sectionRef: z.ZodOptional<z.ZodString>;
|
|
1413
|
+
}, z.core.$strip>>;
|
|
1414
|
+
sections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1415
|
+
title: z.ZodString;
|
|
1416
|
+
sectionNumber: z.ZodOptional<z.ZodString>;
|
|
1417
|
+
pageStart: z.ZodNumber;
|
|
1418
|
+
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
1419
|
+
type: z.ZodString;
|
|
1420
|
+
coverageType: z.ZodOptional<z.ZodString>;
|
|
1421
|
+
content: z.ZodString;
|
|
1422
|
+
subsections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1423
|
+
title: z.ZodString;
|
|
1424
|
+
sectionNumber: z.ZodOptional<z.ZodString>;
|
|
1425
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1426
|
+
content: z.ZodString;
|
|
1427
|
+
}, z.core.$strip>>>;
|
|
1428
|
+
}, z.core.$strip>>>;
|
|
1429
|
+
carrierLegalName: z.ZodOptional<z.ZodString>;
|
|
1430
|
+
carrierNaicNumber: z.ZodOptional<z.ZodString>;
|
|
1431
|
+
carrierAmBestRating: z.ZodOptional<z.ZodString>;
|
|
1432
|
+
carrierAdmittedStatus: z.ZodOptional<z.ZodString>;
|
|
1433
|
+
mga: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
underwriter: z.ZodOptional<z.ZodString>;
|
|
1435
|
+
brokerAgency: z.ZodOptional<z.ZodString>;
|
|
1436
|
+
brokerContactName: z.ZodOptional<z.ZodString>;
|
|
1437
|
+
brokerLicenseNumber: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
priorPolicyNumber: z.ZodOptional<z.ZodString>;
|
|
1439
|
+
programName: z.ZodOptional<z.ZodString>;
|
|
1440
|
+
isRenewal: z.ZodOptional<z.ZodBoolean>;
|
|
1441
|
+
isPackage: z.ZodOptional<z.ZodBoolean>;
|
|
1442
|
+
insuredDba: z.ZodOptional<z.ZodString>;
|
|
1443
|
+
insuredAddress: z.ZodOptional<z.ZodObject<{
|
|
1444
|
+
street1: z.ZodString;
|
|
1445
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1446
|
+
city: z.ZodString;
|
|
1447
|
+
state: z.ZodString;
|
|
1448
|
+
zip: z.ZodString;
|
|
1449
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1450
|
+
}, z.core.$strip>>;
|
|
1451
|
+
insuredEntityType: z.ZodOptional<z.ZodEnum<{
|
|
1452
|
+
other: "other";
|
|
1453
|
+
corporation: "corporation";
|
|
1454
|
+
llc: "llc";
|
|
1455
|
+
partnership: "partnership";
|
|
1456
|
+
sole_proprietor: "sole_proprietor";
|
|
1457
|
+
joint_venture: "joint_venture";
|
|
1458
|
+
trust: "trust";
|
|
1459
|
+
nonprofit: "nonprofit";
|
|
1460
|
+
municipality: "municipality";
|
|
1461
|
+
individual: "individual";
|
|
1462
|
+
married_couple: "married_couple";
|
|
1463
|
+
}>>;
|
|
1464
|
+
additionalNamedInsureds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1465
|
+
name: z.ZodString;
|
|
1466
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1467
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1468
|
+
street1: z.ZodString;
|
|
1469
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1470
|
+
city: z.ZodString;
|
|
1471
|
+
state: z.ZodString;
|
|
1472
|
+
zip: z.ZodString;
|
|
1473
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1474
|
+
}, z.core.$strip>>;
|
|
1475
|
+
}, z.core.$strip>>>;
|
|
1476
|
+
insuredSicCode: z.ZodOptional<z.ZodString>;
|
|
1477
|
+
insuredNaicsCode: z.ZodOptional<z.ZodString>;
|
|
1478
|
+
insuredFein: z.ZodOptional<z.ZodString>;
|
|
1479
|
+
enrichedCoverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1480
|
+
name: z.ZodString;
|
|
1481
|
+
coverageCode: z.ZodOptional<z.ZodString>;
|
|
1482
|
+
formNumber: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
formEditionDate: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
limit: z.ZodString;
|
|
1485
|
+
limitType: z.ZodOptional<z.ZodEnum<{
|
|
1486
|
+
per_occurrence: "per_occurrence";
|
|
1487
|
+
per_claim: "per_claim";
|
|
1488
|
+
aggregate: "aggregate";
|
|
1489
|
+
per_person: "per_person";
|
|
1490
|
+
per_accident: "per_accident";
|
|
1491
|
+
statutory: "statutory";
|
|
1492
|
+
blanket: "blanket";
|
|
1493
|
+
scheduled: "scheduled";
|
|
1494
|
+
}>>;
|
|
1495
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1496
|
+
deductibleType: z.ZodOptional<z.ZodEnum<{
|
|
1497
|
+
per_occurrence: "per_occurrence";
|
|
1498
|
+
per_claim: "per_claim";
|
|
1499
|
+
aggregate: "aggregate";
|
|
1500
|
+
percentage: "percentage";
|
|
1501
|
+
waiting_period: "waiting_period";
|
|
1502
|
+
}>>;
|
|
1503
|
+
sir: z.ZodOptional<z.ZodString>;
|
|
1504
|
+
sublimit: z.ZodOptional<z.ZodString>;
|
|
1505
|
+
coinsurance: z.ZodOptional<z.ZodString>;
|
|
1506
|
+
valuation: z.ZodOptional<z.ZodEnum<{
|
|
1507
|
+
replacement_cost: "replacement_cost";
|
|
1508
|
+
actual_cash_value: "actual_cash_value";
|
|
1509
|
+
agreed_value: "agreed_value";
|
|
1510
|
+
functional_replacement: "functional_replacement";
|
|
1511
|
+
}>>;
|
|
1512
|
+
territory: z.ZodOptional<z.ZodString>;
|
|
1513
|
+
trigger: z.ZodOptional<z.ZodEnum<{
|
|
1514
|
+
occurrence: "occurrence";
|
|
1515
|
+
claims_made: "claims_made";
|
|
1516
|
+
accident: "accident";
|
|
1517
|
+
}>>;
|
|
1518
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
1519
|
+
included: z.ZodBoolean;
|
|
1520
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
1521
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1522
|
+
sectionRef: z.ZodOptional<z.ZodString>;
|
|
1523
|
+
}, z.core.$strip>>>;
|
|
1524
|
+
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1525
|
+
formNumber: z.ZodString;
|
|
1526
|
+
editionDate: z.ZodOptional<z.ZodString>;
|
|
1527
|
+
title: z.ZodString;
|
|
1528
|
+
endorsementType: z.ZodEnum<{
|
|
1529
|
+
other: "other";
|
|
1530
|
+
additional_insured: "additional_insured";
|
|
1531
|
+
waiver_of_subrogation: "waiver_of_subrogation";
|
|
1532
|
+
primary_noncontributory: "primary_noncontributory";
|
|
1533
|
+
blanket_additional_insured: "blanket_additional_insured";
|
|
1534
|
+
loss_payee: "loss_payee";
|
|
1535
|
+
mortgage_holder: "mortgage_holder";
|
|
1536
|
+
broadening: "broadening";
|
|
1537
|
+
restriction: "restriction";
|
|
1538
|
+
exclusion: "exclusion";
|
|
1539
|
+
amendatory: "amendatory";
|
|
1540
|
+
notice_of_cancellation: "notice_of_cancellation";
|
|
1541
|
+
designated_premises: "designated_premises";
|
|
1542
|
+
classification_change: "classification_change";
|
|
1543
|
+
schedule_update: "schedule_update";
|
|
1544
|
+
deductible_change: "deductible_change";
|
|
1545
|
+
limit_change: "limit_change";
|
|
1546
|
+
territorial_extension: "territorial_extension";
|
|
1547
|
+
}>;
|
|
1548
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
1549
|
+
affectedCoverageParts: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1550
|
+
namedParties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1551
|
+
name: z.ZodString;
|
|
1552
|
+
role: z.ZodEnum<{
|
|
1553
|
+
other: "other";
|
|
1554
|
+
additional_insured: "additional_insured";
|
|
1555
|
+
loss_payee: "loss_payee";
|
|
1556
|
+
mortgage_holder: "mortgage_holder";
|
|
1557
|
+
certificate_holder: "certificate_holder";
|
|
1558
|
+
notice_recipient: "notice_recipient";
|
|
1559
|
+
}>;
|
|
1560
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1561
|
+
street1: z.ZodString;
|
|
1562
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1563
|
+
city: z.ZodString;
|
|
1564
|
+
state: z.ZodString;
|
|
1565
|
+
zip: z.ZodString;
|
|
1566
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
}, z.core.$strip>>;
|
|
1568
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1570
|
+
}, z.core.$strip>>>;
|
|
1571
|
+
keyTerms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1572
|
+
premiumImpact: z.ZodOptional<z.ZodString>;
|
|
1573
|
+
content: z.ZodString;
|
|
1574
|
+
pageStart: z.ZodNumber;
|
|
1575
|
+
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
1576
|
+
}, z.core.$strip>>>;
|
|
1577
|
+
exclusions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1578
|
+
name: z.ZodString;
|
|
1579
|
+
formNumber: z.ZodOptional<z.ZodString>;
|
|
1580
|
+
excludedPerils: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1581
|
+
isAbsolute: z.ZodOptional<z.ZodBoolean>;
|
|
1582
|
+
exceptions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1583
|
+
buybackAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
1584
|
+
buybackEndorsement: z.ZodOptional<z.ZodString>;
|
|
1585
|
+
appliesTo: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1586
|
+
content: z.ZodString;
|
|
1587
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1588
|
+
}, z.core.$strip>>>;
|
|
1589
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1590
|
+
name: z.ZodString;
|
|
1591
|
+
conditionType: z.ZodEnum<{
|
|
1592
|
+
other: "other";
|
|
1593
|
+
duties_after_loss: "duties_after_loss";
|
|
1594
|
+
notice_requirements: "notice_requirements";
|
|
1595
|
+
other_insurance: "other_insurance";
|
|
1596
|
+
cancellation: "cancellation";
|
|
1597
|
+
nonrenewal: "nonrenewal";
|
|
1598
|
+
transfer_of_rights: "transfer_of_rights";
|
|
1599
|
+
liberalization: "liberalization";
|
|
1600
|
+
arbitration: "arbitration";
|
|
1601
|
+
concealment_fraud: "concealment_fraud";
|
|
1602
|
+
examination_under_oath: "examination_under_oath";
|
|
1603
|
+
legal_action: "legal_action";
|
|
1604
|
+
loss_payment: "loss_payment";
|
|
1605
|
+
appraisal: "appraisal";
|
|
1606
|
+
mortgage_holders: "mortgage_holders";
|
|
1607
|
+
policy_territory: "policy_territory";
|
|
1608
|
+
separation_of_insureds: "separation_of_insureds";
|
|
1609
|
+
}>;
|
|
1610
|
+
content: z.ZodString;
|
|
1611
|
+
keyValues: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1612
|
+
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
1613
|
+
}, z.core.$strip>>>;
|
|
1614
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1615
|
+
perOccurrence: z.ZodOptional<z.ZodString>;
|
|
1616
|
+
generalAggregate: z.ZodOptional<z.ZodString>;
|
|
1617
|
+
productsCompletedOpsAggregate: z.ZodOptional<z.ZodString>;
|
|
1618
|
+
personalAdvertisingInjury: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
eachEmployee: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
fireDamage: z.ZodOptional<z.ZodString>;
|
|
1621
|
+
medicalExpense: z.ZodOptional<z.ZodString>;
|
|
1622
|
+
combinedSingleLimit: z.ZodOptional<z.ZodString>;
|
|
1623
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
1624
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
propertyDamage: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
eachOccurrenceUmbrella: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
umbrellaAggregate: z.ZodOptional<z.ZodString>;
|
|
1628
|
+
umbrellaRetention: z.ZodOptional<z.ZodString>;
|
|
1629
|
+
statutory: z.ZodOptional<z.ZodBoolean>;
|
|
1630
|
+
employersLiability: z.ZodOptional<z.ZodObject<{
|
|
1631
|
+
eachAccident: z.ZodString;
|
|
1632
|
+
diseasePolicyLimit: z.ZodString;
|
|
1633
|
+
diseaseEachEmployee: z.ZodString;
|
|
1634
|
+
}, z.core.$strip>>;
|
|
1635
|
+
sublimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1636
|
+
name: z.ZodString;
|
|
1637
|
+
limit: z.ZodString;
|
|
1638
|
+
appliesTo: z.ZodOptional<z.ZodString>;
|
|
1639
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1640
|
+
}, z.core.$strip>>>;
|
|
1641
|
+
sharedLimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1642
|
+
description: z.ZodString;
|
|
1643
|
+
limit: z.ZodString;
|
|
1644
|
+
coverageParts: z.ZodArray<z.ZodString>;
|
|
1645
|
+
}, z.core.$strip>>>;
|
|
1646
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
1647
|
+
inside_limits: "inside_limits";
|
|
1648
|
+
outside_limits: "outside_limits";
|
|
1649
|
+
supplementary: "supplementary";
|
|
1650
|
+
}>>;
|
|
1651
|
+
}, z.core.$strip>>;
|
|
1652
|
+
deductibles: z.ZodOptional<z.ZodObject<{
|
|
1653
|
+
perClaim: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
perOccurrence: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
aggregateDeductible: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
selfInsuredRetention: z.ZodOptional<z.ZodString>;
|
|
1657
|
+
corridorDeductible: z.ZodOptional<z.ZodString>;
|
|
1658
|
+
waitingPeriod: z.ZodOptional<z.ZodString>;
|
|
1659
|
+
appliesTo: z.ZodOptional<z.ZodEnum<{
|
|
1660
|
+
damages_only: "damages_only";
|
|
1661
|
+
damages_and_defense: "damages_and_defense";
|
|
1662
|
+
defense_only: "defense_only";
|
|
1663
|
+
}>>;
|
|
1664
|
+
}, z.core.$strip>>;
|
|
1665
|
+
locations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1666
|
+
number: z.ZodNumber;
|
|
1667
|
+
address: z.ZodObject<{
|
|
1668
|
+
street1: z.ZodString;
|
|
1669
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1670
|
+
city: z.ZodString;
|
|
1671
|
+
state: z.ZodString;
|
|
1672
|
+
zip: z.ZodString;
|
|
1673
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1674
|
+
}, z.core.$strip>;
|
|
1675
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1676
|
+
buildingValue: z.ZodOptional<z.ZodString>;
|
|
1677
|
+
contentsValue: z.ZodOptional<z.ZodString>;
|
|
1678
|
+
businessIncomeValue: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
constructionType: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
1681
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
1682
|
+
protectionClass: z.ZodOptional<z.ZodString>;
|
|
1683
|
+
sprinklered: z.ZodOptional<z.ZodBoolean>;
|
|
1684
|
+
alarmType: z.ZodOptional<z.ZodString>;
|
|
1685
|
+
occupancy: z.ZodOptional<z.ZodString>;
|
|
1686
|
+
}, z.core.$strip>>>;
|
|
1687
|
+
vehicles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1688
|
+
number: z.ZodNumber;
|
|
1689
|
+
year: z.ZodNumber;
|
|
1690
|
+
make: z.ZodString;
|
|
1691
|
+
model: z.ZodString;
|
|
1692
|
+
vin: z.ZodString;
|
|
1693
|
+
costNew: z.ZodOptional<z.ZodString>;
|
|
1694
|
+
statedValue: z.ZodOptional<z.ZodString>;
|
|
1695
|
+
garageLocation: z.ZodOptional<z.ZodNumber>;
|
|
1696
|
+
coverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1697
|
+
type: z.ZodEnum<{
|
|
1698
|
+
non_owned_auto: "non_owned_auto";
|
|
1699
|
+
liability: "liability";
|
|
1700
|
+
collision: "collision";
|
|
1701
|
+
comprehensive: "comprehensive";
|
|
1702
|
+
uninsured_motorist: "uninsured_motorist";
|
|
1703
|
+
underinsured_motorist: "underinsured_motorist";
|
|
1704
|
+
medical_payments: "medical_payments";
|
|
1705
|
+
hired_auto: "hired_auto";
|
|
1706
|
+
cargo: "cargo";
|
|
1707
|
+
physical_damage: "physical_damage";
|
|
1708
|
+
}>;
|
|
1709
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
1710
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1711
|
+
included: z.ZodBoolean;
|
|
1712
|
+
}, z.core.$strip>>>;
|
|
1713
|
+
radius: z.ZodOptional<z.ZodString>;
|
|
1714
|
+
vehicleType: z.ZodOptional<z.ZodString>;
|
|
1715
|
+
}, z.core.$strip>>>;
|
|
1716
|
+
classifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1717
|
+
code: z.ZodString;
|
|
1718
|
+
description: z.ZodString;
|
|
1719
|
+
premiumBasis: z.ZodString;
|
|
1720
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
1721
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
1722
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
1723
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
1724
|
+
}, z.core.$strip>>>;
|
|
1725
|
+
formInventory: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1726
|
+
formNumber: z.ZodString;
|
|
1727
|
+
editionDate: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1729
|
+
formType: z.ZodEnum<{
|
|
1730
|
+
other: "other";
|
|
1731
|
+
declarations: "declarations";
|
|
1732
|
+
endorsement: "endorsement";
|
|
1733
|
+
application: "application";
|
|
1734
|
+
notice: "notice";
|
|
1735
|
+
coverage: "coverage";
|
|
1736
|
+
}>;
|
|
1737
|
+
}, z.core.$strip>>>;
|
|
1738
|
+
declarations: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1739
|
+
line: z.ZodLiteral<"homeowners">;
|
|
1740
|
+
formType: z.ZodEnum<{
|
|
1741
|
+
"HO-3": "HO-3";
|
|
1742
|
+
"HO-5": "HO-5";
|
|
1743
|
+
"HO-4": "HO-4";
|
|
1744
|
+
"HO-6": "HO-6";
|
|
1745
|
+
"HO-7": "HO-7";
|
|
1746
|
+
"HO-8": "HO-8";
|
|
1747
|
+
}>;
|
|
1748
|
+
coverageA: z.ZodOptional<z.ZodString>;
|
|
1749
|
+
coverageB: z.ZodOptional<z.ZodString>;
|
|
1750
|
+
coverageC: z.ZodOptional<z.ZodString>;
|
|
1751
|
+
coverageD: z.ZodOptional<z.ZodString>;
|
|
1752
|
+
coverageE: z.ZodOptional<z.ZodString>;
|
|
1753
|
+
coverageF: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
allPerilDeductible: z.ZodOptional<z.ZodString>;
|
|
1755
|
+
windHailDeductible: z.ZodOptional<z.ZodString>;
|
|
1756
|
+
hurricaneDeductible: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
lossSettlement: z.ZodOptional<z.ZodEnum<{
|
|
1758
|
+
replacement_cost: "replacement_cost";
|
|
1759
|
+
actual_cash_value: "actual_cash_value";
|
|
1760
|
+
extended_replacement_cost: "extended_replacement_cost";
|
|
1761
|
+
guaranteed_replacement_cost: "guaranteed_replacement_cost";
|
|
1762
|
+
}>>;
|
|
1763
|
+
dwelling: z.ZodObject<{
|
|
1764
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
1765
|
+
other: "other";
|
|
1766
|
+
mixed: "mixed";
|
|
1767
|
+
frame: "frame";
|
|
1768
|
+
masonry: "masonry";
|
|
1769
|
+
superior: "superior";
|
|
1770
|
+
}>>;
|
|
1771
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
1772
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
1773
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
1774
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
1775
|
+
other: "other";
|
|
1776
|
+
asphalt_shingle: "asphalt_shingle";
|
|
1777
|
+
tile: "tile";
|
|
1778
|
+
metal: "metal";
|
|
1779
|
+
slate: "slate";
|
|
1780
|
+
flat: "flat";
|
|
1781
|
+
wood_shake: "wood_shake";
|
|
1782
|
+
}>>;
|
|
1783
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
1784
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
1785
|
+
other: "other";
|
|
1786
|
+
central: "central";
|
|
1787
|
+
baseboard: "baseboard";
|
|
1788
|
+
radiant: "radiant";
|
|
1789
|
+
space_heater: "space_heater";
|
|
1790
|
+
heat_pump: "heat_pump";
|
|
1791
|
+
}>>;
|
|
1792
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
1793
|
+
other: "other";
|
|
1794
|
+
basement: "basement";
|
|
1795
|
+
crawl_space: "crawl_space";
|
|
1796
|
+
slab: "slab";
|
|
1797
|
+
pier: "pier";
|
|
1798
|
+
}>>;
|
|
1799
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
1800
|
+
other: "other";
|
|
1801
|
+
copper: "copper";
|
|
1802
|
+
pex: "pex";
|
|
1803
|
+
galvanized: "galvanized";
|
|
1804
|
+
polybutylene: "polybutylene";
|
|
1805
|
+
cpvc: "cpvc";
|
|
1806
|
+
}>>;
|
|
1807
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
1808
|
+
other: "other";
|
|
1809
|
+
circuit_breaker: "circuit_breaker";
|
|
1810
|
+
fuse_box: "fuse_box";
|
|
1811
|
+
knob_and_tube: "knob_and_tube";
|
|
1812
|
+
}>>;
|
|
1813
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
1814
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
1815
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
1816
|
+
in_ground: "in_ground";
|
|
1817
|
+
above_ground: "above_ground";
|
|
1818
|
+
}>>;
|
|
1819
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
1820
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
1821
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
1822
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1823
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
1825
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
1826
|
+
}, z.core.$strip>;
|
|
1827
|
+
mortgagee: z.ZodOptional<z.ZodObject<{
|
|
1828
|
+
name: z.ZodString;
|
|
1829
|
+
role: z.ZodEnum<{
|
|
1830
|
+
other: "other";
|
|
1831
|
+
additional_insured: "additional_insured";
|
|
1832
|
+
loss_payee: "loss_payee";
|
|
1833
|
+
mortgage_holder: "mortgage_holder";
|
|
1834
|
+
certificate_holder: "certificate_holder";
|
|
1835
|
+
notice_recipient: "notice_recipient";
|
|
1836
|
+
}>;
|
|
1837
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1838
|
+
street1: z.ZodString;
|
|
1839
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1840
|
+
city: z.ZodString;
|
|
1841
|
+
state: z.ZodString;
|
|
1842
|
+
zip: z.ZodString;
|
|
1843
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1844
|
+
}, z.core.$strip>>;
|
|
1845
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1846
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1847
|
+
}, z.core.$strip>>;
|
|
1848
|
+
additionalMortgagees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1849
|
+
name: z.ZodString;
|
|
1850
|
+
role: z.ZodEnum<{
|
|
1851
|
+
other: "other";
|
|
1852
|
+
additional_insured: "additional_insured";
|
|
1853
|
+
loss_payee: "loss_payee";
|
|
1854
|
+
mortgage_holder: "mortgage_holder";
|
|
1855
|
+
certificate_holder: "certificate_holder";
|
|
1856
|
+
notice_recipient: "notice_recipient";
|
|
1857
|
+
}>;
|
|
1858
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1859
|
+
street1: z.ZodString;
|
|
1860
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1861
|
+
city: z.ZodString;
|
|
1862
|
+
state: z.ZodString;
|
|
1863
|
+
zip: z.ZodString;
|
|
1864
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
}, z.core.$strip>>;
|
|
1866
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1867
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1868
|
+
}, z.core.$strip>>>;
|
|
1869
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1870
|
+
line: z.ZodLiteral<"personal_auto">;
|
|
1871
|
+
vehicles: z.ZodArray<z.ZodObject<{
|
|
1872
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
1873
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
1874
|
+
make: z.ZodOptional<z.ZodString>;
|
|
1875
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1876
|
+
vin: z.ZodOptional<z.ZodString>;
|
|
1877
|
+
bodyType: z.ZodOptional<z.ZodString>;
|
|
1878
|
+
garagingAddress: z.ZodOptional<z.ZodObject<{
|
|
1879
|
+
street1: z.ZodString;
|
|
1880
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
city: z.ZodString;
|
|
1882
|
+
state: z.ZodString;
|
|
1883
|
+
zip: z.ZodString;
|
|
1884
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1885
|
+
}, z.core.$strip>>;
|
|
1886
|
+
usage: z.ZodOptional<z.ZodEnum<{
|
|
1887
|
+
pleasure: "pleasure";
|
|
1888
|
+
commute: "commute";
|
|
1889
|
+
business: "business";
|
|
1890
|
+
farm: "farm";
|
|
1891
|
+
}>>;
|
|
1892
|
+
annualMileage: z.ZodOptional<z.ZodNumber>;
|
|
1893
|
+
odometerReading: z.ZodOptional<z.ZodNumber>;
|
|
1894
|
+
driverAssignment: z.ZodOptional<z.ZodString>;
|
|
1895
|
+
lienHolder: z.ZodOptional<z.ZodObject<{
|
|
1896
|
+
name: z.ZodString;
|
|
1897
|
+
role: z.ZodEnum<{
|
|
1898
|
+
other: "other";
|
|
1899
|
+
additional_insured: "additional_insured";
|
|
1900
|
+
loss_payee: "loss_payee";
|
|
1901
|
+
mortgage_holder: "mortgage_holder";
|
|
1902
|
+
certificate_holder: "certificate_holder";
|
|
1903
|
+
notice_recipient: "notice_recipient";
|
|
1904
|
+
}>;
|
|
1905
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1906
|
+
street1: z.ZodString;
|
|
1907
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1908
|
+
city: z.ZodString;
|
|
1909
|
+
state: z.ZodString;
|
|
1910
|
+
zip: z.ZodString;
|
|
1911
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1912
|
+
}, z.core.$strip>>;
|
|
1913
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
1914
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1915
|
+
}, z.core.$strip>>;
|
|
1916
|
+
collisionDeductible: z.ZodOptional<z.ZodString>;
|
|
1917
|
+
comprehensiveDeductible: z.ZodOptional<z.ZodString>;
|
|
1918
|
+
rentalReimbursement: z.ZodOptional<z.ZodBoolean>;
|
|
1919
|
+
towing: z.ZodOptional<z.ZodBoolean>;
|
|
1920
|
+
}, z.core.$strip>>;
|
|
1921
|
+
drivers: z.ZodArray<z.ZodObject<{
|
|
1922
|
+
name: z.ZodString;
|
|
1923
|
+
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
1924
|
+
licenseNumber: z.ZodOptional<z.ZodString>;
|
|
1925
|
+
licenseState: z.ZodOptional<z.ZodString>;
|
|
1926
|
+
relationship: z.ZodOptional<z.ZodEnum<{
|
|
1927
|
+
other: "other";
|
|
1928
|
+
named_insured: "named_insured";
|
|
1929
|
+
spouse: "spouse";
|
|
1930
|
+
child: "child";
|
|
1931
|
+
other_household: "other_household";
|
|
1932
|
+
}>>;
|
|
1933
|
+
yearsLicensed: z.ZodOptional<z.ZodNumber>;
|
|
1934
|
+
gender: z.ZodOptional<z.ZodString>;
|
|
1935
|
+
maritalStatus: z.ZodOptional<z.ZodString>;
|
|
1936
|
+
goodStudentDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
1937
|
+
defensiveDriverDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
1938
|
+
violations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1939
|
+
date: z.ZodOptional<z.ZodString>;
|
|
1940
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1941
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1942
|
+
}, z.core.$strip>>>;
|
|
1943
|
+
accidents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1944
|
+
date: z.ZodOptional<z.ZodString>;
|
|
1945
|
+
atFault: z.ZodOptional<z.ZodBoolean>;
|
|
1946
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1947
|
+
amountPaid: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
}, z.core.$strip>>>;
|
|
1949
|
+
sr22Required: z.ZodOptional<z.ZodBoolean>;
|
|
1950
|
+
}, z.core.$strip>>;
|
|
1951
|
+
liabilityLimits: z.ZodOptional<z.ZodObject<{
|
|
1952
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
1953
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
1954
|
+
propertyDamage: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
combinedSingleLimit: z.ZodOptional<z.ZodString>;
|
|
1956
|
+
}, z.core.$strip>>;
|
|
1957
|
+
umLimits: z.ZodOptional<z.ZodObject<{
|
|
1958
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
1959
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
1960
|
+
}, z.core.$strip>>;
|
|
1961
|
+
uimLimits: z.ZodOptional<z.ZodObject<{
|
|
1962
|
+
bodilyInjuryPerPerson: z.ZodOptional<z.ZodString>;
|
|
1963
|
+
bodilyInjuryPerAccident: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
}, z.core.$strip>>;
|
|
1965
|
+
pipLimit: z.ZodOptional<z.ZodString>;
|
|
1966
|
+
medPayLimit: z.ZodOptional<z.ZodString>;
|
|
1967
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1968
|
+
line: z.ZodLiteral<"dwelling_fire">;
|
|
1969
|
+
formType: z.ZodEnum<{
|
|
1970
|
+
"DP-1": "DP-1";
|
|
1971
|
+
"DP-2": "DP-2";
|
|
1972
|
+
"DP-3": "DP-3";
|
|
1973
|
+
}>;
|
|
1974
|
+
dwellingLimit: z.ZodOptional<z.ZodString>;
|
|
1975
|
+
otherStructuresLimit: z.ZodOptional<z.ZodString>;
|
|
1976
|
+
personalPropertyLimit: z.ZodOptional<z.ZodString>;
|
|
1977
|
+
fairRentalValueLimit: z.ZodOptional<z.ZodString>;
|
|
1978
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
1979
|
+
medicalPaymentsLimit: z.ZodOptional<z.ZodString>;
|
|
1980
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
1981
|
+
dwelling: z.ZodObject<{
|
|
1982
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
1983
|
+
other: "other";
|
|
1984
|
+
mixed: "mixed";
|
|
1985
|
+
frame: "frame";
|
|
1986
|
+
masonry: "masonry";
|
|
1987
|
+
superior: "superior";
|
|
1988
|
+
}>>;
|
|
1989
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
1990
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
1991
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
1993
|
+
other: "other";
|
|
1994
|
+
asphalt_shingle: "asphalt_shingle";
|
|
1995
|
+
tile: "tile";
|
|
1996
|
+
metal: "metal";
|
|
1997
|
+
slate: "slate";
|
|
1998
|
+
flat: "flat";
|
|
1999
|
+
wood_shake: "wood_shake";
|
|
2000
|
+
}>>;
|
|
2001
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
2002
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
2003
|
+
other: "other";
|
|
2004
|
+
central: "central";
|
|
2005
|
+
baseboard: "baseboard";
|
|
2006
|
+
radiant: "radiant";
|
|
2007
|
+
space_heater: "space_heater";
|
|
2008
|
+
heat_pump: "heat_pump";
|
|
2009
|
+
}>>;
|
|
2010
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
2011
|
+
other: "other";
|
|
2012
|
+
basement: "basement";
|
|
2013
|
+
crawl_space: "crawl_space";
|
|
2014
|
+
slab: "slab";
|
|
2015
|
+
pier: "pier";
|
|
2016
|
+
}>>;
|
|
2017
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
2018
|
+
other: "other";
|
|
2019
|
+
copper: "copper";
|
|
2020
|
+
pex: "pex";
|
|
2021
|
+
galvanized: "galvanized";
|
|
2022
|
+
polybutylene: "polybutylene";
|
|
2023
|
+
cpvc: "cpvc";
|
|
2024
|
+
}>>;
|
|
2025
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
2026
|
+
other: "other";
|
|
2027
|
+
circuit_breaker: "circuit_breaker";
|
|
2028
|
+
fuse_box: "fuse_box";
|
|
2029
|
+
knob_and_tube: "knob_and_tube";
|
|
2030
|
+
}>>;
|
|
2031
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
2032
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
2033
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
2034
|
+
in_ground: "in_ground";
|
|
2035
|
+
above_ground: "above_ground";
|
|
2036
|
+
}>>;
|
|
2037
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
2038
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
2039
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
2040
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2041
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
2044
|
+
}, z.core.$strip>;
|
|
2045
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2046
|
+
line: z.ZodLiteral<"flood">;
|
|
2047
|
+
programType: z.ZodEnum<{
|
|
2048
|
+
nfip: "nfip";
|
|
2049
|
+
private: "private";
|
|
2050
|
+
}>;
|
|
2051
|
+
floodZone: z.ZodOptional<z.ZodEnum<{
|
|
2052
|
+
A: "A";
|
|
2053
|
+
AE: "AE";
|
|
2054
|
+
AH: "AH";
|
|
2055
|
+
AO: "AO";
|
|
2056
|
+
AR: "AR";
|
|
2057
|
+
V: "V";
|
|
2058
|
+
VE: "VE";
|
|
2059
|
+
B: "B";
|
|
2060
|
+
C: "C";
|
|
2061
|
+
X: "X";
|
|
2062
|
+
D: "D";
|
|
2063
|
+
}>>;
|
|
2064
|
+
communityNumber: z.ZodOptional<z.ZodString>;
|
|
2065
|
+
communityRating: z.ZodOptional<z.ZodNumber>;
|
|
2066
|
+
buildingCoverage: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
contentsCoverage: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
iccCoverage: z.ZodOptional<z.ZodString>;
|
|
2069
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
2070
|
+
waitingPeriodDays: z.ZodOptional<z.ZodNumber>;
|
|
2071
|
+
elevationCertificate: z.ZodOptional<z.ZodBoolean>;
|
|
2072
|
+
elevationDifference: z.ZodOptional<z.ZodString>;
|
|
2073
|
+
buildingDiagramNumber: z.ZodOptional<z.ZodNumber>;
|
|
2074
|
+
basementOrEnclosure: z.ZodOptional<z.ZodBoolean>;
|
|
2075
|
+
postFirmConstruction: z.ZodOptional<z.ZodBoolean>;
|
|
2076
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2077
|
+
line: z.ZodLiteral<"earthquake">;
|
|
2078
|
+
dwellingCoverage: z.ZodOptional<z.ZodString>;
|
|
2079
|
+
contentsCoverage: z.ZodOptional<z.ZodString>;
|
|
2080
|
+
lossOfUseCoverage: z.ZodOptional<z.ZodString>;
|
|
2081
|
+
deductiblePercent: z.ZodOptional<z.ZodNumber>;
|
|
2082
|
+
retrofitDiscount: z.ZodOptional<z.ZodBoolean>;
|
|
2083
|
+
masonryVeneerCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
2084
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2085
|
+
line: z.ZodLiteral<"personal_umbrella">;
|
|
2086
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
2087
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
2088
|
+
retainedLimit: z.ZodOptional<z.ZodString>;
|
|
2089
|
+
underlyingPolicies: z.ZodArray<z.ZodObject<{
|
|
2090
|
+
carrier: z.ZodOptional<z.ZodString>;
|
|
2091
|
+
policyNumber: z.ZodOptional<z.ZodString>;
|
|
2092
|
+
policyType: z.ZodOptional<z.ZodString>;
|
|
2093
|
+
limits: z.ZodOptional<z.ZodString>;
|
|
2094
|
+
}, z.core.$strip>>;
|
|
2095
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2096
|
+
line: z.ZodLiteral<"personal_articles">;
|
|
2097
|
+
scheduledItems: z.ZodArray<z.ZodObject<{
|
|
2098
|
+
itemNumber: z.ZodOptional<z.ZodNumber>;
|
|
2099
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
2100
|
+
other: "other";
|
|
2101
|
+
jewelry: "jewelry";
|
|
2102
|
+
fine_art: "fine_art";
|
|
2103
|
+
musical_instruments: "musical_instruments";
|
|
2104
|
+
silverware: "silverware";
|
|
2105
|
+
furs: "furs";
|
|
2106
|
+
cameras: "cameras";
|
|
2107
|
+
collectibles: "collectibles";
|
|
2108
|
+
firearms: "firearms";
|
|
2109
|
+
golf_equipment: "golf_equipment";
|
|
2110
|
+
}>>;
|
|
2111
|
+
description: z.ZodString;
|
|
2112
|
+
appraisedValue: z.ZodString;
|
|
2113
|
+
appraisalDate: z.ZodOptional<z.ZodString>;
|
|
2114
|
+
}, z.core.$strip>>;
|
|
2115
|
+
blanketCoverage: z.ZodOptional<z.ZodString>;
|
|
2116
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
2117
|
+
worldwideCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
2118
|
+
breakageCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
2119
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2120
|
+
line: z.ZodLiteral<"watercraft">;
|
|
2121
|
+
boatType: z.ZodOptional<z.ZodEnum<{
|
|
2122
|
+
other: "other";
|
|
2123
|
+
sailboat: "sailboat";
|
|
2124
|
+
powerboat: "powerboat";
|
|
2125
|
+
pontoon: "pontoon";
|
|
2126
|
+
jet_ski: "jet_ski";
|
|
2127
|
+
kayak_canoe: "kayak_canoe";
|
|
2128
|
+
yacht: "yacht";
|
|
2129
|
+
}>>;
|
|
2130
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
2131
|
+
make: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2133
|
+
length: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
hullMaterial: z.ZodOptional<z.ZodEnum<{
|
|
2135
|
+
other: "other";
|
|
2136
|
+
fiberglass: "fiberglass";
|
|
2137
|
+
aluminum: "aluminum";
|
|
2138
|
+
wood: "wood";
|
|
2139
|
+
steel: "steel";
|
|
2140
|
+
inflatable: "inflatable";
|
|
2141
|
+
}>>;
|
|
2142
|
+
hullValue: z.ZodOptional<z.ZodString>;
|
|
2143
|
+
motorHorsepower: z.ZodOptional<z.ZodNumber>;
|
|
2144
|
+
motorType: z.ZodOptional<z.ZodEnum<{
|
|
2145
|
+
outboard: "outboard";
|
|
2146
|
+
inboard: "inboard";
|
|
2147
|
+
inboard_outboard: "inboard_outboard";
|
|
2148
|
+
jet: "jet";
|
|
2149
|
+
}>>;
|
|
2150
|
+
navigationLimits: z.ZodOptional<z.ZodString>;
|
|
2151
|
+
layupPeriod: z.ZodOptional<z.ZodString>;
|
|
2152
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
2153
|
+
medicalPaymentsLimit: z.ZodOptional<z.ZodString>;
|
|
2154
|
+
physicalDamageDeductible: z.ZodOptional<z.ZodString>;
|
|
2155
|
+
uninsuredBoaterLimit: z.ZodOptional<z.ZodString>;
|
|
2156
|
+
trailerCovered: z.ZodOptional<z.ZodBoolean>;
|
|
2157
|
+
trailerValue: z.ZodOptional<z.ZodString>;
|
|
2158
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2159
|
+
line: z.ZodLiteral<"recreational_vehicle">;
|
|
2160
|
+
vehicleType: z.ZodEnum<{
|
|
2161
|
+
other: "other";
|
|
2162
|
+
rv_motorhome: "rv_motorhome";
|
|
2163
|
+
travel_trailer: "travel_trailer";
|
|
2164
|
+
atv: "atv";
|
|
2165
|
+
snowmobile: "snowmobile";
|
|
2166
|
+
golf_cart: "golf_cart";
|
|
2167
|
+
dirt_bike: "dirt_bike";
|
|
2168
|
+
}>;
|
|
2169
|
+
year: z.ZodOptional<z.ZodNumber>;
|
|
2170
|
+
make: z.ZodOptional<z.ZodString>;
|
|
2171
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2172
|
+
vin: z.ZodOptional<z.ZodString>;
|
|
2173
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2174
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
2175
|
+
collisionDeductible: z.ZodOptional<z.ZodString>;
|
|
2176
|
+
comprehensiveDeductible: z.ZodOptional<z.ZodString>;
|
|
2177
|
+
personalEffectsCoverage: z.ZodOptional<z.ZodString>;
|
|
2178
|
+
fullTimerCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
2179
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2180
|
+
line: z.ZodLiteral<"farm_ranch">;
|
|
2181
|
+
dwellingCoverage: z.ZodOptional<z.ZodString>;
|
|
2182
|
+
farmPersonalPropertyCoverage: z.ZodOptional<z.ZodString>;
|
|
2183
|
+
farmLiabilityLimit: z.ZodOptional<z.ZodString>;
|
|
2184
|
+
farmAutoIncluded: z.ZodOptional<z.ZodBoolean>;
|
|
2185
|
+
livestock: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2186
|
+
type: z.ZodString;
|
|
2187
|
+
headCount: z.ZodNumber;
|
|
2188
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2189
|
+
}, z.core.$strip>>>;
|
|
2190
|
+
equipmentSchedule: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2191
|
+
description: z.ZodString;
|
|
2192
|
+
value: z.ZodString;
|
|
2193
|
+
}, z.core.$strip>>>;
|
|
2194
|
+
acreage: z.ZodOptional<z.ZodNumber>;
|
|
2195
|
+
dwelling: z.ZodOptional<z.ZodObject<{
|
|
2196
|
+
constructionType: z.ZodOptional<z.ZodEnum<{
|
|
2197
|
+
other: "other";
|
|
2198
|
+
mixed: "mixed";
|
|
2199
|
+
frame: "frame";
|
|
2200
|
+
masonry: "masonry";
|
|
2201
|
+
superior: "superior";
|
|
2202
|
+
}>>;
|
|
2203
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
2204
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
2205
|
+
stories: z.ZodOptional<z.ZodNumber>;
|
|
2206
|
+
roofType: z.ZodOptional<z.ZodEnum<{
|
|
2207
|
+
other: "other";
|
|
2208
|
+
asphalt_shingle: "asphalt_shingle";
|
|
2209
|
+
tile: "tile";
|
|
2210
|
+
metal: "metal";
|
|
2211
|
+
slate: "slate";
|
|
2212
|
+
flat: "flat";
|
|
2213
|
+
wood_shake: "wood_shake";
|
|
2214
|
+
}>>;
|
|
2215
|
+
roofAge: z.ZodOptional<z.ZodNumber>;
|
|
2216
|
+
heatingType: z.ZodOptional<z.ZodEnum<{
|
|
2217
|
+
other: "other";
|
|
2218
|
+
central: "central";
|
|
2219
|
+
baseboard: "baseboard";
|
|
2220
|
+
radiant: "radiant";
|
|
2221
|
+
space_heater: "space_heater";
|
|
2222
|
+
heat_pump: "heat_pump";
|
|
2223
|
+
}>>;
|
|
2224
|
+
foundationType: z.ZodOptional<z.ZodEnum<{
|
|
2225
|
+
other: "other";
|
|
2226
|
+
basement: "basement";
|
|
2227
|
+
crawl_space: "crawl_space";
|
|
2228
|
+
slab: "slab";
|
|
2229
|
+
pier: "pier";
|
|
2230
|
+
}>>;
|
|
2231
|
+
plumbingType: z.ZodOptional<z.ZodEnum<{
|
|
2232
|
+
other: "other";
|
|
2233
|
+
copper: "copper";
|
|
2234
|
+
pex: "pex";
|
|
2235
|
+
galvanized: "galvanized";
|
|
2236
|
+
polybutylene: "polybutylene";
|
|
2237
|
+
cpvc: "cpvc";
|
|
2238
|
+
}>>;
|
|
2239
|
+
electricalType: z.ZodOptional<z.ZodEnum<{
|
|
2240
|
+
other: "other";
|
|
2241
|
+
circuit_breaker: "circuit_breaker";
|
|
2242
|
+
fuse_box: "fuse_box";
|
|
2243
|
+
knob_and_tube: "knob_and_tube";
|
|
2244
|
+
}>>;
|
|
2245
|
+
electricalAmps: z.ZodOptional<z.ZodNumber>;
|
|
2246
|
+
hasSwimmingPool: z.ZodOptional<z.ZodBoolean>;
|
|
2247
|
+
poolType: z.ZodOptional<z.ZodEnum<{
|
|
2248
|
+
in_ground: "in_ground";
|
|
2249
|
+
above_ground: "above_ground";
|
|
2250
|
+
}>>;
|
|
2251
|
+
hasTrampoline: z.ZodOptional<z.ZodBoolean>;
|
|
2252
|
+
hasDog: z.ZodOptional<z.ZodBoolean>;
|
|
2253
|
+
dogBreed: z.ZodOptional<z.ZodString>;
|
|
2254
|
+
protectiveDevices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2255
|
+
distanceToFireStation: z.ZodOptional<z.ZodString>;
|
|
2256
|
+
distanceToHydrant: z.ZodOptional<z.ZodString>;
|
|
2257
|
+
fireProtectionClass: z.ZodOptional<z.ZodString>;
|
|
2258
|
+
}, z.core.$strip>>;
|
|
2259
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2260
|
+
line: z.ZodLiteral<"title">;
|
|
2261
|
+
policyType: z.ZodEnum<{
|
|
2262
|
+
owners: "owners";
|
|
2263
|
+
lenders: "lenders";
|
|
2264
|
+
}>;
|
|
2265
|
+
policyAmount: z.ZodString;
|
|
2266
|
+
legalDescription: z.ZodOptional<z.ZodString>;
|
|
2267
|
+
propertyAddress: z.ZodOptional<z.ZodObject<{
|
|
2268
|
+
street1: z.ZodString;
|
|
2269
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2270
|
+
city: z.ZodString;
|
|
2271
|
+
state: z.ZodString;
|
|
2272
|
+
zip: z.ZodString;
|
|
2273
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
}, z.core.$strip>>;
|
|
2275
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
2276
|
+
exceptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2277
|
+
number: z.ZodNumber;
|
|
2278
|
+
description: z.ZodString;
|
|
2279
|
+
}, z.core.$strip>>>;
|
|
2280
|
+
underwriter: z.ZodOptional<z.ZodString>;
|
|
2281
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2282
|
+
line: z.ZodLiteral<"pet">;
|
|
2283
|
+
species: z.ZodEnum<{
|
|
2284
|
+
other: "other";
|
|
2285
|
+
dog: "dog";
|
|
2286
|
+
cat: "cat";
|
|
2287
|
+
}>;
|
|
2288
|
+
breed: z.ZodOptional<z.ZodString>;
|
|
2289
|
+
petName: z.ZodOptional<z.ZodString>;
|
|
2290
|
+
age: z.ZodOptional<z.ZodNumber>;
|
|
2291
|
+
annualLimit: z.ZodOptional<z.ZodString>;
|
|
2292
|
+
perIncidentLimit: z.ZodOptional<z.ZodString>;
|
|
2293
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
2294
|
+
reimbursementPercent: z.ZodOptional<z.ZodNumber>;
|
|
2295
|
+
waitingPeriodDays: z.ZodOptional<z.ZodNumber>;
|
|
2296
|
+
preExistingConditionsExcluded: z.ZodOptional<z.ZodBoolean>;
|
|
2297
|
+
wellnessCoverage: z.ZodOptional<z.ZodBoolean>;
|
|
2298
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2299
|
+
line: z.ZodLiteral<"travel">;
|
|
2300
|
+
tripDepartureDate: z.ZodOptional<z.ZodString>;
|
|
2301
|
+
tripReturnDate: z.ZodOptional<z.ZodString>;
|
|
2302
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2303
|
+
travelers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2304
|
+
name: z.ZodString;
|
|
2305
|
+
age: z.ZodOptional<z.ZodNumber>;
|
|
2306
|
+
}, z.core.$strip>>>;
|
|
2307
|
+
tripCost: z.ZodOptional<z.ZodString>;
|
|
2308
|
+
tripCancellationLimit: z.ZodOptional<z.ZodString>;
|
|
2309
|
+
medicalLimit: z.ZodOptional<z.ZodString>;
|
|
2310
|
+
evacuationLimit: z.ZodOptional<z.ZodString>;
|
|
2311
|
+
baggageLimit: z.ZodOptional<z.ZodString>;
|
|
2312
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2313
|
+
line: z.ZodLiteral<"identity_theft">;
|
|
2314
|
+
coverageLimit: z.ZodOptional<z.ZodString>;
|
|
2315
|
+
expenseReimbursement: z.ZodOptional<z.ZodString>;
|
|
2316
|
+
creditMonitoring: z.ZodOptional<z.ZodBoolean>;
|
|
2317
|
+
restorationServices: z.ZodOptional<z.ZodBoolean>;
|
|
2318
|
+
lostWagesLimit: z.ZodOptional<z.ZodString>;
|
|
2319
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2320
|
+
line: z.ZodLiteral<"gl">;
|
|
2321
|
+
coverageForm: z.ZodOptional<z.ZodEnum<{
|
|
2322
|
+
occurrence: "occurrence";
|
|
2323
|
+
claims_made: "claims_made";
|
|
2324
|
+
accident: "accident";
|
|
2325
|
+
}>>;
|
|
2326
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
2327
|
+
generalAggregate: z.ZodOptional<z.ZodString>;
|
|
2328
|
+
productsCompletedOpsAggregate: z.ZodOptional<z.ZodString>;
|
|
2329
|
+
personalAdvertisingInjury: z.ZodOptional<z.ZodString>;
|
|
2330
|
+
fireDamage: z.ZodOptional<z.ZodString>;
|
|
2331
|
+
medicalExpense: z.ZodOptional<z.ZodString>;
|
|
2332
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
2333
|
+
inside_limits: "inside_limits";
|
|
2334
|
+
outside_limits: "outside_limits";
|
|
2335
|
+
supplementary: "supplementary";
|
|
2336
|
+
}>>;
|
|
2337
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
2338
|
+
classifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2339
|
+
code: z.ZodString;
|
|
2340
|
+
description: z.ZodString;
|
|
2341
|
+
premiumBasis: z.ZodString;
|
|
2342
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
2343
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
2344
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
2345
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
2346
|
+
}, z.core.$strip>>>;
|
|
2347
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
2348
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2349
|
+
line: z.ZodLiteral<"commercial_property">;
|
|
2350
|
+
causesOfLossForm: z.ZodOptional<z.ZodEnum<{
|
|
2351
|
+
basic: "basic";
|
|
2352
|
+
broad: "broad";
|
|
2353
|
+
special: "special";
|
|
2354
|
+
}>>;
|
|
2355
|
+
coinsurancePercent: z.ZodOptional<z.ZodNumber>;
|
|
2356
|
+
valuationMethod: z.ZodOptional<z.ZodEnum<{
|
|
2357
|
+
replacement_cost: "replacement_cost";
|
|
2358
|
+
actual_cash_value: "actual_cash_value";
|
|
2359
|
+
agreed_value: "agreed_value";
|
|
2360
|
+
functional_replacement: "functional_replacement";
|
|
2361
|
+
}>>;
|
|
2362
|
+
locations: z.ZodArray<z.ZodObject<{
|
|
2363
|
+
number: z.ZodNumber;
|
|
2364
|
+
address: z.ZodObject<{
|
|
2365
|
+
street1: z.ZodString;
|
|
2366
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2367
|
+
city: z.ZodString;
|
|
2368
|
+
state: z.ZodString;
|
|
2369
|
+
zip: z.ZodString;
|
|
2370
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2371
|
+
}, z.core.$strip>;
|
|
2372
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2373
|
+
buildingValue: z.ZodOptional<z.ZodString>;
|
|
2374
|
+
contentsValue: z.ZodOptional<z.ZodString>;
|
|
2375
|
+
businessIncomeValue: z.ZodOptional<z.ZodString>;
|
|
2376
|
+
constructionType: z.ZodOptional<z.ZodString>;
|
|
2377
|
+
yearBuilt: z.ZodOptional<z.ZodNumber>;
|
|
2378
|
+
squareFootage: z.ZodOptional<z.ZodNumber>;
|
|
2379
|
+
protectionClass: z.ZodOptional<z.ZodString>;
|
|
2380
|
+
sprinklered: z.ZodOptional<z.ZodBoolean>;
|
|
2381
|
+
alarmType: z.ZodOptional<z.ZodString>;
|
|
2382
|
+
occupancy: z.ZodOptional<z.ZodString>;
|
|
2383
|
+
}, z.core.$strip>>;
|
|
2384
|
+
blanketLimit: z.ZodOptional<z.ZodString>;
|
|
2385
|
+
businessIncomeLimit: z.ZodOptional<z.ZodString>;
|
|
2386
|
+
extraExpenseLimit: z.ZodOptional<z.ZodString>;
|
|
2387
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2388
|
+
line: z.ZodLiteral<"commercial_auto">;
|
|
2389
|
+
vehicles: z.ZodArray<z.ZodObject<{
|
|
2390
|
+
number: z.ZodNumber;
|
|
2391
|
+
year: z.ZodNumber;
|
|
2392
|
+
make: z.ZodString;
|
|
2393
|
+
model: z.ZodString;
|
|
2394
|
+
vin: z.ZodString;
|
|
2395
|
+
costNew: z.ZodOptional<z.ZodString>;
|
|
2396
|
+
statedValue: z.ZodOptional<z.ZodString>;
|
|
2397
|
+
garageLocation: z.ZodOptional<z.ZodNumber>;
|
|
2398
|
+
coverages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2399
|
+
type: z.ZodEnum<{
|
|
2400
|
+
non_owned_auto: "non_owned_auto";
|
|
2401
|
+
liability: "liability";
|
|
2402
|
+
collision: "collision";
|
|
2403
|
+
comprehensive: "comprehensive";
|
|
2404
|
+
uninsured_motorist: "uninsured_motorist";
|
|
2405
|
+
underinsured_motorist: "underinsured_motorist";
|
|
2406
|
+
medical_payments: "medical_payments";
|
|
2407
|
+
hired_auto: "hired_auto";
|
|
2408
|
+
cargo: "cargo";
|
|
2409
|
+
physical_damage: "physical_damage";
|
|
2410
|
+
}>;
|
|
2411
|
+
limit: z.ZodOptional<z.ZodString>;
|
|
2412
|
+
deductible: z.ZodOptional<z.ZodString>;
|
|
2413
|
+
included: z.ZodBoolean;
|
|
2414
|
+
}, z.core.$strip>>>;
|
|
2415
|
+
radius: z.ZodOptional<z.ZodString>;
|
|
2416
|
+
vehicleType: z.ZodOptional<z.ZodString>;
|
|
2417
|
+
}, z.core.$strip>>;
|
|
2418
|
+
coveredAutoSymbols: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2419
|
+
liabilityLimit: z.ZodOptional<z.ZodString>;
|
|
2420
|
+
umLimit: z.ZodOptional<z.ZodString>;
|
|
2421
|
+
uimLimit: z.ZodOptional<z.ZodString>;
|
|
2422
|
+
hiredAutoLiability: z.ZodOptional<z.ZodBoolean>;
|
|
2423
|
+
nonOwnedAutoLiability: z.ZodOptional<z.ZodBoolean>;
|
|
2424
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2425
|
+
line: z.ZodLiteral<"workers_comp">;
|
|
2426
|
+
coveredStates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2427
|
+
classifications: z.ZodArray<z.ZodObject<{
|
|
2428
|
+
code: z.ZodString;
|
|
2429
|
+
description: z.ZodString;
|
|
2430
|
+
premiumBasis: z.ZodString;
|
|
2431
|
+
basisAmount: z.ZodOptional<z.ZodString>;
|
|
2432
|
+
rate: z.ZodOptional<z.ZodString>;
|
|
2433
|
+
premium: z.ZodOptional<z.ZodString>;
|
|
2434
|
+
locationNumber: z.ZodOptional<z.ZodNumber>;
|
|
2435
|
+
}, z.core.$strip>>;
|
|
2436
|
+
experienceMod: z.ZodOptional<z.ZodObject<{
|
|
2437
|
+
factor: z.ZodNumber;
|
|
2438
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
2439
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2440
|
+
}, z.core.$strip>>;
|
|
2441
|
+
employersLiability: z.ZodOptional<z.ZodObject<{
|
|
2442
|
+
eachAccident: z.ZodString;
|
|
2443
|
+
diseasePolicyLimit: z.ZodString;
|
|
2444
|
+
diseaseEachEmployee: z.ZodString;
|
|
2445
|
+
}, z.core.$strip>>;
|
|
2446
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2447
|
+
line: z.ZodLiteral<"umbrella_excess">;
|
|
2448
|
+
perOccurrenceLimit: z.ZodOptional<z.ZodString>;
|
|
2449
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
2450
|
+
retention: z.ZodOptional<z.ZodString>;
|
|
2451
|
+
underlyingPolicies: z.ZodArray<z.ZodObject<{
|
|
2452
|
+
carrier: z.ZodOptional<z.ZodString>;
|
|
2453
|
+
policyNumber: z.ZodOptional<z.ZodString>;
|
|
2454
|
+
policyType: z.ZodOptional<z.ZodString>;
|
|
2455
|
+
limits: z.ZodOptional<z.ZodString>;
|
|
2456
|
+
}, z.core.$strip>>;
|
|
2457
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2458
|
+
line: z.ZodLiteral<"professional_liability">;
|
|
2459
|
+
perClaimLimit: z.ZodOptional<z.ZodString>;
|
|
2460
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
2461
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
2462
|
+
defenseCostTreatment: z.ZodOptional<z.ZodEnum<{
|
|
2463
|
+
inside_limits: "inside_limits";
|
|
2464
|
+
outside_limits: "outside_limits";
|
|
2465
|
+
supplementary: "supplementary";
|
|
2466
|
+
}>>;
|
|
2467
|
+
extendedReportingPeriod: z.ZodOptional<z.ZodObject<{
|
|
2468
|
+
basicDays: z.ZodOptional<z.ZodNumber>;
|
|
2469
|
+
supplementalYears: z.ZodOptional<z.ZodNumber>;
|
|
2470
|
+
supplementalPremium: z.ZodOptional<z.ZodString>;
|
|
2471
|
+
}, z.core.$strip>>;
|
|
2472
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2473
|
+
line: z.ZodLiteral<"cyber">;
|
|
2474
|
+
aggregateLimit: z.ZodOptional<z.ZodString>;
|
|
2475
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
2476
|
+
waitingPeriodHours: z.ZodOptional<z.ZodNumber>;
|
|
2477
|
+
sublimits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2478
|
+
coverageName: z.ZodString;
|
|
2479
|
+
limit: z.ZodString;
|
|
2480
|
+
}, z.core.$strip>>>;
|
|
2481
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2482
|
+
line: z.ZodLiteral<"directors_officers">;
|
|
2483
|
+
sideALimit: z.ZodOptional<z.ZodString>;
|
|
2484
|
+
sideBLimit: z.ZodOptional<z.ZodString>;
|
|
2485
|
+
sideCLimit: z.ZodOptional<z.ZodString>;
|
|
2486
|
+
sideARetention: z.ZodOptional<z.ZodString>;
|
|
2487
|
+
sideBRetention: z.ZodOptional<z.ZodString>;
|
|
2488
|
+
sideCRetention: z.ZodOptional<z.ZodString>;
|
|
2489
|
+
continuityDate: z.ZodOptional<z.ZodString>;
|
|
2490
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2491
|
+
line: z.ZodLiteral<"crime">;
|
|
2492
|
+
formType: z.ZodOptional<z.ZodEnum<{
|
|
2493
|
+
discovery: "discovery";
|
|
2494
|
+
loss_sustained: "loss_sustained";
|
|
2495
|
+
}>>;
|
|
2496
|
+
agreements: z.ZodArray<z.ZodObject<{
|
|
2497
|
+
agreement: z.ZodString;
|
|
2498
|
+
coverageName: z.ZodString;
|
|
2499
|
+
limit: z.ZodString;
|
|
2500
|
+
deductible: z.ZodString;
|
|
2501
|
+
}, z.core.$strip>>;
|
|
2502
|
+
}, z.core.$strip>], "line">>;
|
|
2503
|
+
coverageForm: z.ZodOptional<z.ZodEnum<{
|
|
2504
|
+
occurrence: "occurrence";
|
|
2505
|
+
claims_made: "claims_made";
|
|
2506
|
+
accident: "accident";
|
|
2507
|
+
}>>;
|
|
2508
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
2509
|
+
extendedReportingPeriod: z.ZodOptional<z.ZodObject<{
|
|
2510
|
+
basicDays: z.ZodOptional<z.ZodNumber>;
|
|
2511
|
+
supplementalYears: z.ZodOptional<z.ZodNumber>;
|
|
2512
|
+
supplementalPremium: z.ZodOptional<z.ZodString>;
|
|
2513
|
+
}, z.core.$strip>>;
|
|
2514
|
+
insurer: z.ZodOptional<z.ZodObject<{
|
|
2515
|
+
legalName: z.ZodString;
|
|
2516
|
+
naicNumber: z.ZodOptional<z.ZodString>;
|
|
2517
|
+
amBestRating: z.ZodOptional<z.ZodString>;
|
|
2518
|
+
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
2519
|
+
admittedStatus: z.ZodOptional<z.ZodEnum<{
|
|
2520
|
+
admitted: "admitted";
|
|
2521
|
+
non_admitted: "non_admitted";
|
|
2522
|
+
surplus_lines: "surplus_lines";
|
|
2523
|
+
}>>;
|
|
2524
|
+
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
2525
|
+
}, z.core.$strip>>;
|
|
2526
|
+
producer: z.ZodOptional<z.ZodObject<{
|
|
2527
|
+
agencyName: z.ZodString;
|
|
2528
|
+
contactName: z.ZodOptional<z.ZodString>;
|
|
2529
|
+
licenseNumber: z.ZodOptional<z.ZodString>;
|
|
2530
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2531
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2532
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2533
|
+
street1: z.ZodString;
|
|
2534
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2535
|
+
city: z.ZodString;
|
|
2536
|
+
state: z.ZodString;
|
|
2537
|
+
zip: z.ZodString;
|
|
2538
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2539
|
+
}, z.core.$strip>>;
|
|
2540
|
+
}, z.core.$strip>>;
|
|
2541
|
+
claimsContacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2542
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2543
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2544
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2545
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2546
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
2547
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2548
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2549
|
+
street1: z.ZodString;
|
|
2550
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2551
|
+
city: z.ZodString;
|
|
2552
|
+
state: z.ZodString;
|
|
2553
|
+
zip: z.ZodString;
|
|
2554
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2555
|
+
}, z.core.$strip>>;
|
|
2556
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
2557
|
+
}, z.core.$strip>>>;
|
|
2558
|
+
regulatoryContacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2559
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2560
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2561
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2562
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
2564
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2565
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2566
|
+
street1: z.ZodString;
|
|
2567
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2568
|
+
city: z.ZodString;
|
|
2569
|
+
state: z.ZodString;
|
|
2570
|
+
zip: z.ZodString;
|
|
2571
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2572
|
+
}, z.core.$strip>>;
|
|
2573
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
2574
|
+
}, z.core.$strip>>>;
|
|
2575
|
+
thirdPartyAdministrators: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2576
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2577
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2578
|
+
type: z.ZodOptional<z.ZodString>;
|
|
2579
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
2580
|
+
fax: z.ZodOptional<z.ZodString>;
|
|
2581
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2582
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2583
|
+
street1: z.ZodString;
|
|
2584
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2585
|
+
city: z.ZodString;
|
|
2586
|
+
state: z.ZodString;
|
|
2587
|
+
zip: z.ZodString;
|
|
2588
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2589
|
+
}, z.core.$strip>>;
|
|
2590
|
+
hours: z.ZodOptional<z.ZodString>;
|
|
2591
|
+
}, z.core.$strip>>>;
|
|
2592
|
+
additionalInsureds: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2593
|
+
name: z.ZodString;
|
|
2594
|
+
role: z.ZodEnum<{
|
|
2595
|
+
other: "other";
|
|
2596
|
+
additional_insured: "additional_insured";
|
|
2597
|
+
loss_payee: "loss_payee";
|
|
2598
|
+
mortgage_holder: "mortgage_holder";
|
|
2599
|
+
certificate_holder: "certificate_holder";
|
|
2600
|
+
notice_recipient: "notice_recipient";
|
|
2601
|
+
}>;
|
|
2602
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2603
|
+
street1: z.ZodString;
|
|
2604
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2605
|
+
city: z.ZodString;
|
|
2606
|
+
state: z.ZodString;
|
|
2607
|
+
zip: z.ZodString;
|
|
2608
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2609
|
+
}, z.core.$strip>>;
|
|
2610
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
2611
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
2612
|
+
}, z.core.$strip>>>;
|
|
2613
|
+
lossPayees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2614
|
+
name: z.ZodString;
|
|
2615
|
+
role: z.ZodEnum<{
|
|
2616
|
+
other: "other";
|
|
2617
|
+
additional_insured: "additional_insured";
|
|
2618
|
+
loss_payee: "loss_payee";
|
|
2619
|
+
mortgage_holder: "mortgage_holder";
|
|
2620
|
+
certificate_holder: "certificate_holder";
|
|
2621
|
+
notice_recipient: "notice_recipient";
|
|
2622
|
+
}>;
|
|
2623
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2624
|
+
street1: z.ZodString;
|
|
2625
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2626
|
+
city: z.ZodString;
|
|
2627
|
+
state: z.ZodString;
|
|
2628
|
+
zip: z.ZodString;
|
|
2629
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2630
|
+
}, z.core.$strip>>;
|
|
2631
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
2632
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
2633
|
+
}, z.core.$strip>>>;
|
|
2634
|
+
mortgageHolders: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2635
|
+
name: z.ZodString;
|
|
2636
|
+
role: z.ZodEnum<{
|
|
2637
|
+
other: "other";
|
|
2638
|
+
additional_insured: "additional_insured";
|
|
2639
|
+
loss_payee: "loss_payee";
|
|
2640
|
+
mortgage_holder: "mortgage_holder";
|
|
2641
|
+
certificate_holder: "certificate_holder";
|
|
2642
|
+
notice_recipient: "notice_recipient";
|
|
2643
|
+
}>;
|
|
2644
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
2645
|
+
street1: z.ZodString;
|
|
2646
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2647
|
+
city: z.ZodString;
|
|
2648
|
+
state: z.ZodString;
|
|
2649
|
+
zip: z.ZodString;
|
|
2650
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2651
|
+
}, z.core.$strip>>;
|
|
2652
|
+
relationship: z.ZodOptional<z.ZodString>;
|
|
2653
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
2654
|
+
}, z.core.$strip>>>;
|
|
2655
|
+
taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2656
|
+
name: z.ZodString;
|
|
2657
|
+
amount: z.ZodString;
|
|
2658
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2659
|
+
tax: "tax";
|
|
2660
|
+
fee: "fee";
|
|
2661
|
+
surcharge: "surcharge";
|
|
2662
|
+
assessment: "assessment";
|
|
2663
|
+
}>>;
|
|
2664
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2665
|
+
}, z.core.$strip>>>;
|
|
2666
|
+
totalCost: z.ZodOptional<z.ZodString>;
|
|
2667
|
+
minimumPremium: z.ZodOptional<z.ZodString>;
|
|
2668
|
+
depositPremium: z.ZodOptional<z.ZodString>;
|
|
2669
|
+
paymentPlan: z.ZodOptional<z.ZodObject<{
|
|
2670
|
+
installments: z.ZodArray<z.ZodObject<{
|
|
2671
|
+
dueDate: z.ZodString;
|
|
2672
|
+
amount: z.ZodString;
|
|
2673
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2674
|
+
}, z.core.$strip>>;
|
|
2675
|
+
financeCharge: z.ZodOptional<z.ZodString>;
|
|
2676
|
+
}, z.core.$strip>>;
|
|
2677
|
+
auditType: z.ZodOptional<z.ZodEnum<{
|
|
2678
|
+
annual: "annual";
|
|
2679
|
+
semi_annual: "semi_annual";
|
|
2680
|
+
quarterly: "quarterly";
|
|
2681
|
+
monthly: "monthly";
|
|
2682
|
+
self: "self";
|
|
2683
|
+
physical: "physical";
|
|
2684
|
+
none: "none";
|
|
2685
|
+
}>>;
|
|
2686
|
+
ratingBasis: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2687
|
+
type: z.ZodEnum<{
|
|
2688
|
+
other: "other";
|
|
2689
|
+
payroll: "payroll";
|
|
2690
|
+
revenue: "revenue";
|
|
2691
|
+
area: "area";
|
|
2692
|
+
units: "units";
|
|
2693
|
+
vehicle_count: "vehicle_count";
|
|
2694
|
+
employee_count: "employee_count";
|
|
2695
|
+
per_capita: "per_capita";
|
|
2696
|
+
dwelling_value: "dwelling_value";
|
|
2697
|
+
vehicle_value: "vehicle_value";
|
|
2698
|
+
contents_value: "contents_value";
|
|
2699
|
+
}>;
|
|
2700
|
+
amount: z.ZodOptional<z.ZodString>;
|
|
2701
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2702
|
+
}, z.core.$strip>>>;
|
|
2703
|
+
premiumByLocation: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2704
|
+
locationNumber: z.ZodNumber;
|
|
2705
|
+
premium: z.ZodString;
|
|
2706
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2707
|
+
}, z.core.$strip>>>;
|
|
2708
|
+
lossSummary: z.ZodOptional<z.ZodObject<{
|
|
2709
|
+
period: z.ZodOptional<z.ZodString>;
|
|
2710
|
+
totalClaims: z.ZodOptional<z.ZodNumber>;
|
|
2711
|
+
totalIncurred: z.ZodOptional<z.ZodString>;
|
|
2712
|
+
totalPaid: z.ZodOptional<z.ZodString>;
|
|
2713
|
+
totalReserved: z.ZodOptional<z.ZodString>;
|
|
2714
|
+
lossRatio: z.ZodOptional<z.ZodString>;
|
|
2715
|
+
}, z.core.$strip>>;
|
|
2716
|
+
individualClaims: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2717
|
+
dateOfLoss: z.ZodString;
|
|
2718
|
+
claimNumber: z.ZodOptional<z.ZodString>;
|
|
2719
|
+
description: z.ZodString;
|
|
2720
|
+
status: z.ZodEnum<{
|
|
2721
|
+
open: "open";
|
|
2722
|
+
closed: "closed";
|
|
2723
|
+
reopened: "reopened";
|
|
2724
|
+
}>;
|
|
2725
|
+
paid: z.ZodOptional<z.ZodString>;
|
|
2726
|
+
reserved: z.ZodOptional<z.ZodString>;
|
|
2727
|
+
incurred: z.ZodOptional<z.ZodString>;
|
|
2728
|
+
claimant: z.ZodOptional<z.ZodString>;
|
|
2729
|
+
coverageLine: z.ZodOptional<z.ZodString>;
|
|
2730
|
+
}, z.core.$strip>>>;
|
|
2731
|
+
experienceMod: z.ZodOptional<z.ZodObject<{
|
|
2732
|
+
factor: z.ZodNumber;
|
|
2733
|
+
effectiveDate: z.ZodOptional<z.ZodString>;
|
|
2734
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2735
|
+
}, z.core.$strip>>;
|
|
2736
|
+
cancellationNoticeDays: z.ZodOptional<z.ZodNumber>;
|
|
2737
|
+
nonrenewalNoticeDays: z.ZodOptional<z.ZodNumber>;
|
|
2738
|
+
}, z.core.$strip>], "type">;
|
|
2739
|
+
type InsuranceDocument = z.infer<typeof InsuranceDocumentSchema>;
|
|
2740
|
+
|
|
2741
|
+
interface DocumentChunk {
|
|
2742
|
+
/** Deterministic ID: `${documentId}:${type}:${index}` */
|
|
2743
|
+
id: string;
|
|
2744
|
+
/** Source document ID */
|
|
2745
|
+
documentId: string;
|
|
2746
|
+
/** Chunk type for filtering */
|
|
2747
|
+
type: "carrier_info" | "named_insured" | "coverage" | "endorsement" | "exclusion" | "condition" | "section" | "declaration" | "loss_history" | "premium" | "supplementary";
|
|
2748
|
+
/** Human-readable text for embedding */
|
|
2749
|
+
text: string;
|
|
2750
|
+
/** Structured metadata for filtering */
|
|
2751
|
+
metadata: Record<string, string>;
|
|
2752
|
+
}
|
|
2753
|
+
interface ConversationTurn {
|
|
2754
|
+
id: string;
|
|
2755
|
+
conversationId: string;
|
|
2756
|
+
role: "user" | "assistant" | "tool";
|
|
2757
|
+
content: string;
|
|
2758
|
+
toolName?: string;
|
|
2759
|
+
toolResult?: string;
|
|
2760
|
+
timestamp: number;
|
|
2761
|
+
}
|
|
2762
|
+
interface ChunkFilter {
|
|
2763
|
+
documentId?: string;
|
|
2764
|
+
type?: DocumentChunk["type"];
|
|
2765
|
+
metadata?: Record<string, string>;
|
|
2766
|
+
}
|
|
2767
|
+
interface DocumentFilters {
|
|
2768
|
+
type?: "policy" | "quote";
|
|
2769
|
+
carrier?: string;
|
|
2770
|
+
insuredName?: string;
|
|
2771
|
+
policyNumber?: string;
|
|
2772
|
+
quoteNumber?: string;
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
interface DocumentStore {
|
|
2776
|
+
save(doc: InsuranceDocument): Promise<void>;
|
|
2777
|
+
get(id: string): Promise<InsuranceDocument | null>;
|
|
2778
|
+
query(filters: DocumentFilters): Promise<InsuranceDocument[]>;
|
|
2779
|
+
delete(id: string): Promise<void>;
|
|
2780
|
+
}
|
|
2781
|
+
interface MemoryStore {
|
|
2782
|
+
addChunks(chunks: DocumentChunk[]): Promise<void>;
|
|
2783
|
+
search(query: string, options?: {
|
|
2784
|
+
limit?: number;
|
|
2785
|
+
filter?: ChunkFilter;
|
|
2786
|
+
}): Promise<DocumentChunk[]>;
|
|
2787
|
+
addTurn(turn: ConversationTurn): Promise<void>;
|
|
2788
|
+
getHistory(conversationId: string, options?: {
|
|
2789
|
+
limit?: number;
|
|
2790
|
+
}): Promise<ConversationTurn[]>;
|
|
2791
|
+
searchHistory(query: string, conversationId?: string): Promise<ConversationTurn[]>;
|
|
2792
|
+
}
|
|
2793
|
+
|
|
2794
|
+
interface SqliteStoreOptions {
|
|
2795
|
+
path: string;
|
|
2796
|
+
embed: EmbedText;
|
|
2797
|
+
}
|
|
2798
|
+
declare function createSqliteStore(options: SqliteStoreOptions): {
|
|
2799
|
+
documents: DocumentStore;
|
|
2800
|
+
memory: MemoryStore;
|
|
2801
|
+
close: () => void;
|
|
2802
|
+
};
|
|
2803
|
+
|
|
2804
|
+
export { type DocumentStore, type MemoryStore, type SqliteStoreOptions, createSqliteStore };
|