@claritylabs/cl-sdk 3.2.13 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -14
- package/dist/application.d.mts +1 -1
- package/dist/application.d.ts +1 -1
- package/dist/application.js +461 -402
- package/dist/application.js.map +1 -1
- package/dist/application.mjs +461 -402
- package/dist/application.mjs.map +1 -1
- package/dist/{index-WjheX6Dt.d.mts → index-BzrY6OMD.d.mts} +584 -261
- package/dist/{index-WjheX6Dt.d.ts → index-BzrY6OMD.d.ts} +584 -261
- package/dist/index.d.mts +103 -94
- package/dist/index.d.ts +103 -94
- package/dist/index.js +2281 -1800
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2266 -1795
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.d.mts +188 -188
- package/dist/storage-sqlite.d.ts +188 -188
- package/dist/storage-sqlite.js +461 -402
- package/dist/storage-sqlite.js.map +1 -1
- package/dist/storage-sqlite.mjs +461 -402
- package/dist/storage-sqlite.mjs.map +1 -1
- package/package.json +1 -1
package/dist/storage-sqlite.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
38
38
|
premium: z.ZodOptional<z.ZodString>;
|
|
39
39
|
premiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
40
40
|
summary: z.ZodOptional<z.ZodString>;
|
|
41
|
-
|
|
41
|
+
linesOfBusiness: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
42
42
|
coverages: z.ZodArray<z.ZodObject<{
|
|
43
43
|
name: z.ZodString;
|
|
44
44
|
limit: z.ZodString;
|
|
@@ -113,22 +113,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
formNumber: string;
|
|
115
115
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
116
|
-
title?: string | undefined;
|
|
117
116
|
sourceSpanIds?: string[] | undefined;
|
|
118
117
|
documentNodeId?: string | undefined;
|
|
119
118
|
sourceTextHash?: string | undefined;
|
|
120
119
|
pageStart?: number | undefined;
|
|
121
120
|
pageEnd?: number | undefined;
|
|
121
|
+
title?: string | undefined;
|
|
122
122
|
editionDate?: string | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
formNumber: string;
|
|
125
125
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
126
|
-
title?: string | undefined;
|
|
127
126
|
sourceSpanIds?: string[] | undefined;
|
|
128
127
|
documentNodeId?: string | undefined;
|
|
129
128
|
sourceTextHash?: string | undefined;
|
|
130
129
|
pageStart?: number | undefined;
|
|
131
130
|
pageEnd?: number | undefined;
|
|
131
|
+
title?: string | undefined;
|
|
132
132
|
editionDate?: string | undefined;
|
|
133
133
|
}>, "many">>;
|
|
134
134
|
tableOfContents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -200,12 +200,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
200
200
|
formInventory?: {
|
|
201
201
|
formNumber: string;
|
|
202
202
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
203
|
-
title?: string | undefined;
|
|
204
203
|
sourceSpanIds?: string[] | undefined;
|
|
205
204
|
documentNodeId?: string | undefined;
|
|
206
205
|
sourceTextHash?: string | undefined;
|
|
207
206
|
pageStart?: number | undefined;
|
|
208
207
|
pageEnd?: number | undefined;
|
|
208
|
+
title?: string | undefined;
|
|
209
209
|
editionDate?: string | undefined;
|
|
210
210
|
}[] | undefined;
|
|
211
211
|
tableOfContents?: {
|
|
@@ -237,12 +237,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
237
237
|
formInventory?: {
|
|
238
238
|
formNumber: string;
|
|
239
239
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
240
|
-
title?: string | undefined;
|
|
241
240
|
sourceSpanIds?: string[] | undefined;
|
|
242
241
|
documentNodeId?: string | undefined;
|
|
243
242
|
sourceTextHash?: string | undefined;
|
|
244
243
|
pageStart?: number | undefined;
|
|
245
244
|
pageEnd?: number | undefined;
|
|
245
|
+
title?: string | undefined;
|
|
246
246
|
editionDate?: string | undefined;
|
|
247
247
|
}[] | undefined;
|
|
248
248
|
tableOfContents?: {
|
|
@@ -312,9 +312,9 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
312
312
|
sourceSpanIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
313
313
|
sourceTextHash: z.ZodOptional<z.ZodString>;
|
|
314
314
|
}, "strip", z.ZodTypeAny, {
|
|
315
|
-
title: string;
|
|
316
315
|
type: string;
|
|
317
316
|
pageStart: number;
|
|
317
|
+
title: string;
|
|
318
318
|
sourceSpanIds?: string[] | undefined;
|
|
319
319
|
documentNodeId?: string | undefined;
|
|
320
320
|
sourceTextHash?: string | undefined;
|
|
@@ -335,9 +335,9 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
335
335
|
sectionNumber?: string | undefined;
|
|
336
336
|
}[] | undefined;
|
|
337
337
|
}, {
|
|
338
|
-
title: string;
|
|
339
338
|
type: string;
|
|
340
339
|
pageStart: number;
|
|
340
|
+
title: string;
|
|
341
341
|
sourceSpanIds?: string[] | undefined;
|
|
342
342
|
documentNodeId?: string | undefined;
|
|
343
343
|
sourceTextHash?: string | undefined;
|
|
@@ -415,11 +415,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
415
415
|
}, "strip", z.ZodTypeAny, {
|
|
416
416
|
content: string;
|
|
417
417
|
coverageName: string;
|
|
418
|
-
title?: string | undefined;
|
|
419
418
|
conditions?: string[] | undefined;
|
|
420
419
|
sourceSpanIds?: string[] | undefined;
|
|
421
420
|
documentNodeId?: string | undefined;
|
|
422
421
|
sourceTextHash?: string | undefined;
|
|
422
|
+
title?: string | undefined;
|
|
423
423
|
formNumber?: string | undefined;
|
|
424
424
|
appliesTo?: string[] | undefined;
|
|
425
425
|
pageNumber?: number | undefined;
|
|
@@ -432,11 +432,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
432
432
|
}, {
|
|
433
433
|
content: string;
|
|
434
434
|
coverageName: string;
|
|
435
|
-
title?: string | undefined;
|
|
436
435
|
conditions?: string[] | undefined;
|
|
437
436
|
sourceSpanIds?: string[] | undefined;
|
|
438
437
|
documentNodeId?: string | undefined;
|
|
439
438
|
sourceTextHash?: string | undefined;
|
|
439
|
+
title?: string | undefined;
|
|
440
440
|
formNumber?: string | undefined;
|
|
441
441
|
appliesTo?: string[] | undefined;
|
|
442
442
|
pageNumber?: number | undefined;
|
|
@@ -698,7 +698,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
698
698
|
}, "strip", z.ZodTypeAny, {
|
|
699
699
|
sourceSpanIds: string[];
|
|
700
700
|
name: string;
|
|
701
|
-
role: "
|
|
701
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
702
702
|
documentNodeId?: string | undefined;
|
|
703
703
|
sourceTextHash?: string | undefined;
|
|
704
704
|
pageStart?: number | undefined;
|
|
@@ -716,7 +716,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
716
716
|
}, {
|
|
717
717
|
sourceSpanIds: string[];
|
|
718
718
|
name: string;
|
|
719
|
-
role: "
|
|
719
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
720
720
|
documentNodeId?: string | undefined;
|
|
721
721
|
sourceTextHash?: string | undefined;
|
|
722
722
|
pageStart?: number | undefined;
|
|
@@ -743,10 +743,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
743
743
|
sourceSpanIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
744
744
|
sourceTextHash: z.ZodOptional<z.ZodString>;
|
|
745
745
|
}, "strip", z.ZodTypeAny, {
|
|
746
|
-
title: string;
|
|
747
746
|
pageStart: number;
|
|
747
|
+
title: string;
|
|
748
748
|
formNumber: string;
|
|
749
|
-
endorsementType: "
|
|
749
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
750
750
|
sourceSpanIds?: string[] | undefined;
|
|
751
751
|
documentNodeId?: string | undefined;
|
|
752
752
|
sourceTextHash?: string | undefined;
|
|
@@ -758,7 +758,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
758
758
|
namedParties?: {
|
|
759
759
|
sourceSpanIds: string[];
|
|
760
760
|
name: string;
|
|
761
|
-
role: "
|
|
761
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
762
762
|
documentNodeId?: string | undefined;
|
|
763
763
|
sourceTextHash?: string | undefined;
|
|
764
764
|
pageStart?: number | undefined;
|
|
@@ -779,10 +779,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
779
779
|
excerpt?: string | undefined;
|
|
780
780
|
content?: string | undefined;
|
|
781
781
|
}, {
|
|
782
|
-
title: string;
|
|
783
782
|
pageStart: number;
|
|
783
|
+
title: string;
|
|
784
784
|
formNumber: string;
|
|
785
|
-
endorsementType: "
|
|
785
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
786
786
|
sourceSpanIds?: string[] | undefined;
|
|
787
787
|
documentNodeId?: string | undefined;
|
|
788
788
|
sourceTextHash?: string | undefined;
|
|
@@ -794,7 +794,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
794
794
|
namedParties?: {
|
|
795
795
|
sourceSpanIds: string[];
|
|
796
796
|
name: string;
|
|
797
|
-
role: "
|
|
797
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
798
798
|
documentNodeId?: string | undefined;
|
|
799
799
|
sourceTextHash?: string | undefined;
|
|
800
800
|
pageStart?: number | undefined;
|
|
@@ -1151,12 +1151,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1151
1151
|
deductible: z.ZodOptional<z.ZodString>;
|
|
1152
1152
|
included: z.ZodBoolean;
|
|
1153
1153
|
}, "strip", z.ZodTypeAny, {
|
|
1154
|
-
type: "
|
|
1154
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
1155
1155
|
included: boolean;
|
|
1156
1156
|
limit?: string | undefined;
|
|
1157
1157
|
deductible?: string | undefined;
|
|
1158
1158
|
}, {
|
|
1159
|
-
type: "
|
|
1159
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
1160
1160
|
included: boolean;
|
|
1161
1161
|
limit?: string | undefined;
|
|
1162
1162
|
deductible?: string | undefined;
|
|
@@ -1173,7 +1173,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1173
1173
|
statedValue?: string | undefined;
|
|
1174
1174
|
garageLocation?: number | undefined;
|
|
1175
1175
|
coverages?: {
|
|
1176
|
-
type: "
|
|
1176
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
1177
1177
|
included: boolean;
|
|
1178
1178
|
limit?: string | undefined;
|
|
1179
1179
|
deductible?: string | undefined;
|
|
@@ -1190,7 +1190,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1190
1190
|
statedValue?: string | undefined;
|
|
1191
1191
|
garageLocation?: number | undefined;
|
|
1192
1192
|
coverages?: {
|
|
1193
|
-
type: "
|
|
1193
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
1194
1194
|
included: boolean;
|
|
1195
1195
|
limit?: string | undefined;
|
|
1196
1196
|
deductible?: string | undefined;
|
|
@@ -1236,22 +1236,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1236
1236
|
}, "strip", z.ZodTypeAny, {
|
|
1237
1237
|
formNumber: string;
|
|
1238
1238
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
1239
|
-
title?: string | undefined;
|
|
1240
1239
|
sourceSpanIds?: string[] | undefined;
|
|
1241
1240
|
documentNodeId?: string | undefined;
|
|
1242
1241
|
sourceTextHash?: string | undefined;
|
|
1243
1242
|
pageStart?: number | undefined;
|
|
1244
1243
|
pageEnd?: number | undefined;
|
|
1244
|
+
title?: string | undefined;
|
|
1245
1245
|
editionDate?: string | undefined;
|
|
1246
1246
|
}, {
|
|
1247
1247
|
formNumber: string;
|
|
1248
1248
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
1249
|
-
title?: string | undefined;
|
|
1250
1249
|
sourceSpanIds?: string[] | undefined;
|
|
1251
1250
|
documentNodeId?: string | undefined;
|
|
1252
1251
|
sourceTextHash?: string | undefined;
|
|
1253
1252
|
pageStart?: number | undefined;
|
|
1254
1253
|
pageEnd?: number | undefined;
|
|
1254
|
+
title?: string | undefined;
|
|
1255
1255
|
editionDate?: string | undefined;
|
|
1256
1256
|
}>, "many">>;
|
|
1257
1257
|
declarations: z.ZodOptional<z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
|
|
@@ -1367,7 +1367,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1367
1367
|
}, "strip", z.ZodTypeAny, {
|
|
1368
1368
|
sourceSpanIds: string[];
|
|
1369
1369
|
name: string;
|
|
1370
|
-
role: "
|
|
1370
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1371
1371
|
documentNodeId?: string | undefined;
|
|
1372
1372
|
sourceTextHash?: string | undefined;
|
|
1373
1373
|
pageStart?: number | undefined;
|
|
@@ -1385,7 +1385,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1385
1385
|
}, {
|
|
1386
1386
|
sourceSpanIds: string[];
|
|
1387
1387
|
name: string;
|
|
1388
|
-
role: "
|
|
1388
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1389
1389
|
documentNodeId?: string | undefined;
|
|
1390
1390
|
sourceTextHash?: string | undefined;
|
|
1391
1391
|
pageStart?: number | undefined;
|
|
@@ -1437,7 +1437,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1437
1437
|
}, "strip", z.ZodTypeAny, {
|
|
1438
1438
|
sourceSpanIds: string[];
|
|
1439
1439
|
name: string;
|
|
1440
|
-
role: "
|
|
1440
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1441
1441
|
documentNodeId?: string | undefined;
|
|
1442
1442
|
sourceTextHash?: string | undefined;
|
|
1443
1443
|
pageStart?: number | undefined;
|
|
@@ -1455,7 +1455,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1455
1455
|
}, {
|
|
1456
1456
|
sourceSpanIds: string[];
|
|
1457
1457
|
name: string;
|
|
1458
|
-
role: "
|
|
1458
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1459
1459
|
documentNodeId?: string | undefined;
|
|
1460
1460
|
sourceTextHash?: string | undefined;
|
|
1461
1461
|
pageStart?: number | undefined;
|
|
@@ -1509,7 +1509,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1509
1509
|
mortgagee?: {
|
|
1510
1510
|
sourceSpanIds: string[];
|
|
1511
1511
|
name: string;
|
|
1512
|
-
role: "
|
|
1512
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1513
1513
|
documentNodeId?: string | undefined;
|
|
1514
1514
|
sourceTextHash?: string | undefined;
|
|
1515
1515
|
pageStart?: number | undefined;
|
|
@@ -1528,7 +1528,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1528
1528
|
additionalMortgagees?: {
|
|
1529
1529
|
sourceSpanIds: string[];
|
|
1530
1530
|
name: string;
|
|
1531
|
-
role: "
|
|
1531
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1532
1532
|
documentNodeId?: string | undefined;
|
|
1533
1533
|
sourceTextHash?: string | undefined;
|
|
1534
1534
|
pageStart?: number | undefined;
|
|
@@ -1582,7 +1582,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1582
1582
|
mortgagee?: {
|
|
1583
1583
|
sourceSpanIds: string[];
|
|
1584
1584
|
name: string;
|
|
1585
|
-
role: "
|
|
1585
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1586
1586
|
documentNodeId?: string | undefined;
|
|
1587
1587
|
sourceTextHash?: string | undefined;
|
|
1588
1588
|
pageStart?: number | undefined;
|
|
@@ -1601,7 +1601,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1601
1601
|
additionalMortgagees?: {
|
|
1602
1602
|
sourceSpanIds: string[];
|
|
1603
1603
|
name: string;
|
|
1604
|
-
role: "
|
|
1604
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1605
1605
|
documentNodeId?: string | undefined;
|
|
1606
1606
|
sourceTextHash?: string | undefined;
|
|
1607
1607
|
pageStart?: number | undefined;
|
|
@@ -1688,7 +1688,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1688
1688
|
}, "strip", z.ZodTypeAny, {
|
|
1689
1689
|
sourceSpanIds: string[];
|
|
1690
1690
|
name: string;
|
|
1691
|
-
role: "
|
|
1691
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1692
1692
|
documentNodeId?: string | undefined;
|
|
1693
1693
|
sourceTextHash?: string | undefined;
|
|
1694
1694
|
pageStart?: number | undefined;
|
|
@@ -1706,7 +1706,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1706
1706
|
}, {
|
|
1707
1707
|
sourceSpanIds: string[];
|
|
1708
1708
|
name: string;
|
|
1709
|
-
role: "
|
|
1709
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1710
1710
|
documentNodeId?: string | undefined;
|
|
1711
1711
|
sourceTextHash?: string | undefined;
|
|
1712
1712
|
pageStart?: number | undefined;
|
|
@@ -1748,7 +1748,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1748
1748
|
lienHolder?: {
|
|
1749
1749
|
sourceSpanIds: string[];
|
|
1750
1750
|
name: string;
|
|
1751
|
-
role: "
|
|
1751
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1752
1752
|
documentNodeId?: string | undefined;
|
|
1753
1753
|
sourceTextHash?: string | undefined;
|
|
1754
1754
|
pageStart?: number | undefined;
|
|
@@ -1790,7 +1790,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1790
1790
|
lienHolder?: {
|
|
1791
1791
|
sourceSpanIds: string[];
|
|
1792
1792
|
name: string;
|
|
1793
|
-
role: "
|
|
1793
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1794
1794
|
documentNodeId?: string | undefined;
|
|
1795
1795
|
sourceTextHash?: string | undefined;
|
|
1796
1796
|
pageStart?: number | undefined;
|
|
@@ -1961,7 +1961,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
1961
1961
|
lienHolder?: {
|
|
1962
1962
|
sourceSpanIds: string[];
|
|
1963
1963
|
name: string;
|
|
1964
|
-
role: "
|
|
1964
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
1965
1965
|
documentNodeId?: string | undefined;
|
|
1966
1966
|
sourceTextHash?: string | undefined;
|
|
1967
1967
|
pageStart?: number | undefined;
|
|
@@ -2046,7 +2046,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
2046
2046
|
lienHolder?: {
|
|
2047
2047
|
sourceSpanIds: string[];
|
|
2048
2048
|
name: string;
|
|
2049
|
-
role: "
|
|
2049
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
2050
2050
|
documentNodeId?: string | undefined;
|
|
2051
2051
|
sourceTextHash?: string | undefined;
|
|
2052
2052
|
pageStart?: number | undefined;
|
|
@@ -3104,12 +3104,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3104
3104
|
deductible: z.ZodOptional<z.ZodString>;
|
|
3105
3105
|
included: z.ZodBoolean;
|
|
3106
3106
|
}, "strip", z.ZodTypeAny, {
|
|
3107
|
-
type: "
|
|
3107
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3108
3108
|
included: boolean;
|
|
3109
3109
|
limit?: string | undefined;
|
|
3110
3110
|
deductible?: string | undefined;
|
|
3111
3111
|
}, {
|
|
3112
|
-
type: "
|
|
3112
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3113
3113
|
included: boolean;
|
|
3114
3114
|
limit?: string | undefined;
|
|
3115
3115
|
deductible?: string | undefined;
|
|
@@ -3126,7 +3126,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3126
3126
|
statedValue?: string | undefined;
|
|
3127
3127
|
garageLocation?: number | undefined;
|
|
3128
3128
|
coverages?: {
|
|
3129
|
-
type: "
|
|
3129
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3130
3130
|
included: boolean;
|
|
3131
3131
|
limit?: string | undefined;
|
|
3132
3132
|
deductible?: string | undefined;
|
|
@@ -3143,7 +3143,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3143
3143
|
statedValue?: string | undefined;
|
|
3144
3144
|
garageLocation?: number | undefined;
|
|
3145
3145
|
coverages?: {
|
|
3146
|
-
type: "
|
|
3146
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3147
3147
|
included: boolean;
|
|
3148
3148
|
limit?: string | undefined;
|
|
3149
3149
|
deductible?: string | undefined;
|
|
@@ -3169,7 +3169,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3169
3169
|
statedValue?: string | undefined;
|
|
3170
3170
|
garageLocation?: number | undefined;
|
|
3171
3171
|
coverages?: {
|
|
3172
|
-
type: "
|
|
3172
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3173
3173
|
included: boolean;
|
|
3174
3174
|
limit?: string | undefined;
|
|
3175
3175
|
deductible?: string | undefined;
|
|
@@ -3195,7 +3195,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3195
3195
|
statedValue?: string | undefined;
|
|
3196
3196
|
garageLocation?: number | undefined;
|
|
3197
3197
|
coverages?: {
|
|
3198
|
-
type: "
|
|
3198
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
3199
3199
|
included: boolean;
|
|
3200
3200
|
limit?: string | undefined;
|
|
3201
3201
|
deductible?: string | undefined;
|
|
@@ -3653,13 +3653,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3653
3653
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
3654
3654
|
}, "strip", z.ZodTypeAny, {
|
|
3655
3655
|
sourceSpanIds: string[];
|
|
3656
|
-
title?: string | undefined;
|
|
3657
3656
|
type?: string | undefined;
|
|
3658
3657
|
documentNodeId?: string | undefined;
|
|
3659
3658
|
sourceTextHash?: string | undefined;
|
|
3660
3659
|
pageStart?: number | undefined;
|
|
3661
3660
|
pageEnd?: number | undefined;
|
|
3662
3661
|
name?: string | undefined;
|
|
3662
|
+
title?: string | undefined;
|
|
3663
3663
|
phone?: string | undefined;
|
|
3664
3664
|
fax?: string | undefined;
|
|
3665
3665
|
email?: string | undefined;
|
|
@@ -3674,13 +3674,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3674
3674
|
hours?: string | undefined;
|
|
3675
3675
|
}, {
|
|
3676
3676
|
sourceSpanIds: string[];
|
|
3677
|
-
title?: string | undefined;
|
|
3678
3677
|
type?: string | undefined;
|
|
3679
3678
|
documentNodeId?: string | undefined;
|
|
3680
3679
|
sourceTextHash?: string | undefined;
|
|
3681
3680
|
pageStart?: number | undefined;
|
|
3682
3681
|
pageEnd?: number | undefined;
|
|
3683
3682
|
name?: string | undefined;
|
|
3683
|
+
title?: string | undefined;
|
|
3684
3684
|
phone?: string | undefined;
|
|
3685
3685
|
fax?: string | undefined;
|
|
3686
3686
|
email?: string | undefined;
|
|
@@ -3732,13 +3732,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3732
3732
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
3733
3733
|
}, "strip", z.ZodTypeAny, {
|
|
3734
3734
|
sourceSpanIds: string[];
|
|
3735
|
-
title?: string | undefined;
|
|
3736
3735
|
type?: string | undefined;
|
|
3737
3736
|
documentNodeId?: string | undefined;
|
|
3738
3737
|
sourceTextHash?: string | undefined;
|
|
3739
3738
|
pageStart?: number | undefined;
|
|
3740
3739
|
pageEnd?: number | undefined;
|
|
3741
3740
|
name?: string | undefined;
|
|
3741
|
+
title?: string | undefined;
|
|
3742
3742
|
phone?: string | undefined;
|
|
3743
3743
|
fax?: string | undefined;
|
|
3744
3744
|
email?: string | undefined;
|
|
@@ -3753,13 +3753,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3753
3753
|
hours?: string | undefined;
|
|
3754
3754
|
}, {
|
|
3755
3755
|
sourceSpanIds: string[];
|
|
3756
|
-
title?: string | undefined;
|
|
3757
3756
|
type?: string | undefined;
|
|
3758
3757
|
documentNodeId?: string | undefined;
|
|
3759
3758
|
sourceTextHash?: string | undefined;
|
|
3760
3759
|
pageStart?: number | undefined;
|
|
3761
3760
|
pageEnd?: number | undefined;
|
|
3762
3761
|
name?: string | undefined;
|
|
3762
|
+
title?: string | undefined;
|
|
3763
3763
|
phone?: string | undefined;
|
|
3764
3764
|
fax?: string | undefined;
|
|
3765
3765
|
email?: string | undefined;
|
|
@@ -3811,13 +3811,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3811
3811
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
3812
3812
|
}, "strip", z.ZodTypeAny, {
|
|
3813
3813
|
sourceSpanIds: string[];
|
|
3814
|
-
title?: string | undefined;
|
|
3815
3814
|
type?: string | undefined;
|
|
3816
3815
|
documentNodeId?: string | undefined;
|
|
3817
3816
|
sourceTextHash?: string | undefined;
|
|
3818
3817
|
pageStart?: number | undefined;
|
|
3819
3818
|
pageEnd?: number | undefined;
|
|
3820
3819
|
name?: string | undefined;
|
|
3820
|
+
title?: string | undefined;
|
|
3821
3821
|
phone?: string | undefined;
|
|
3822
3822
|
fax?: string | undefined;
|
|
3823
3823
|
email?: string | undefined;
|
|
@@ -3832,13 +3832,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3832
3832
|
hours?: string | undefined;
|
|
3833
3833
|
}, {
|
|
3834
3834
|
sourceSpanIds: string[];
|
|
3835
|
-
title?: string | undefined;
|
|
3836
3835
|
type?: string | undefined;
|
|
3837
3836
|
documentNodeId?: string | undefined;
|
|
3838
3837
|
sourceTextHash?: string | undefined;
|
|
3839
3838
|
pageStart?: number | undefined;
|
|
3840
3839
|
pageEnd?: number | undefined;
|
|
3841
3840
|
name?: string | undefined;
|
|
3841
|
+
title?: string | undefined;
|
|
3842
3842
|
phone?: string | undefined;
|
|
3843
3843
|
fax?: string | undefined;
|
|
3844
3844
|
email?: string | undefined;
|
|
@@ -3888,7 +3888,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3888
3888
|
}, "strip", z.ZodTypeAny, {
|
|
3889
3889
|
sourceSpanIds: string[];
|
|
3890
3890
|
name: string;
|
|
3891
|
-
role: "
|
|
3891
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
3892
3892
|
documentNodeId?: string | undefined;
|
|
3893
3893
|
sourceTextHash?: string | undefined;
|
|
3894
3894
|
pageStart?: number | undefined;
|
|
@@ -3906,7 +3906,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3906
3906
|
}, {
|
|
3907
3907
|
sourceSpanIds: string[];
|
|
3908
3908
|
name: string;
|
|
3909
|
-
role: "
|
|
3909
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
3910
3910
|
documentNodeId?: string | undefined;
|
|
3911
3911
|
sourceTextHash?: string | undefined;
|
|
3912
3912
|
pageStart?: number | undefined;
|
|
@@ -3958,7 +3958,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3958
3958
|
}, "strip", z.ZodTypeAny, {
|
|
3959
3959
|
sourceSpanIds: string[];
|
|
3960
3960
|
name: string;
|
|
3961
|
-
role: "
|
|
3961
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
3962
3962
|
documentNodeId?: string | undefined;
|
|
3963
3963
|
sourceTextHash?: string | undefined;
|
|
3964
3964
|
pageStart?: number | undefined;
|
|
@@ -3976,7 +3976,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3976
3976
|
}, {
|
|
3977
3977
|
sourceSpanIds: string[];
|
|
3978
3978
|
name: string;
|
|
3979
|
-
role: "
|
|
3979
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
3980
3980
|
documentNodeId?: string | undefined;
|
|
3981
3981
|
sourceTextHash?: string | undefined;
|
|
3982
3982
|
pageStart?: number | undefined;
|
|
@@ -4028,7 +4028,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4028
4028
|
}, "strip", z.ZodTypeAny, {
|
|
4029
4029
|
sourceSpanIds: string[];
|
|
4030
4030
|
name: string;
|
|
4031
|
-
role: "
|
|
4031
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
4032
4032
|
documentNodeId?: string | undefined;
|
|
4033
4033
|
sourceTextHash?: string | undefined;
|
|
4034
4034
|
pageStart?: number | undefined;
|
|
@@ -4046,7 +4046,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4046
4046
|
}, {
|
|
4047
4047
|
sourceSpanIds: string[];
|
|
4048
4048
|
name: string;
|
|
4049
|
-
role: "
|
|
4049
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
4050
4050
|
documentNodeId?: string | undefined;
|
|
4051
4051
|
sourceTextHash?: string | undefined;
|
|
4052
4052
|
pageStart?: number | undefined;
|
|
@@ -4279,12 +4279,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4279
4279
|
formInventory?: {
|
|
4280
4280
|
formNumber: string;
|
|
4281
4281
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
4282
|
-
title?: string | undefined;
|
|
4283
4282
|
sourceSpanIds?: string[] | undefined;
|
|
4284
4283
|
documentNodeId?: string | undefined;
|
|
4285
4284
|
sourceTextHash?: string | undefined;
|
|
4286
4285
|
pageStart?: number | undefined;
|
|
4287
4286
|
pageEnd?: number | undefined;
|
|
4287
|
+
title?: string | undefined;
|
|
4288
4288
|
editionDate?: string | undefined;
|
|
4289
4289
|
}[] | undefined;
|
|
4290
4290
|
tableOfContents?: {
|
|
@@ -4350,7 +4350,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4350
4350
|
mortgagee?: {
|
|
4351
4351
|
sourceSpanIds: string[];
|
|
4352
4352
|
name: string;
|
|
4353
|
-
role: "
|
|
4353
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
4354
4354
|
documentNodeId?: string | undefined;
|
|
4355
4355
|
sourceTextHash?: string | undefined;
|
|
4356
4356
|
pageStart?: number | undefined;
|
|
@@ -4369,7 +4369,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4369
4369
|
additionalMortgagees?: {
|
|
4370
4370
|
sourceSpanIds: string[];
|
|
4371
4371
|
name: string;
|
|
4372
|
-
role: "
|
|
4372
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
4373
4373
|
documentNodeId?: string | undefined;
|
|
4374
4374
|
sourceTextHash?: string | undefined;
|
|
4375
4375
|
pageStart?: number | undefined;
|
|
@@ -4409,7 +4409,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4409
4409
|
lienHolder?: {
|
|
4410
4410
|
sourceSpanIds: string[];
|
|
4411
4411
|
name: string;
|
|
4412
|
-
role: "
|
|
4412
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
4413
4413
|
documentNodeId?: string | undefined;
|
|
4414
4414
|
sourceTextHash?: string | undefined;
|
|
4415
4415
|
pageStart?: number | undefined;
|
|
@@ -4736,7 +4736,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4736
4736
|
statedValue?: string | undefined;
|
|
4737
4737
|
garageLocation?: number | undefined;
|
|
4738
4738
|
coverages?: {
|
|
4739
|
-
type: "
|
|
4739
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
4740
4740
|
included: boolean;
|
|
4741
4741
|
limit?: string | undefined;
|
|
4742
4742
|
deductible?: string | undefined;
|
|
@@ -4848,7 +4848,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4848
4848
|
statedValue?: string | undefined;
|
|
4849
4849
|
garageLocation?: number | undefined;
|
|
4850
4850
|
coverages?: {
|
|
4851
|
-
type: "
|
|
4851
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
4852
4852
|
included: boolean;
|
|
4853
4853
|
limit?: string | undefined;
|
|
4854
4854
|
deductible?: string | undefined;
|
|
@@ -4936,12 +4936,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4936
4936
|
formInventory?: {
|
|
4937
4937
|
formNumber: string;
|
|
4938
4938
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
4939
|
-
title?: string | undefined;
|
|
4940
4939
|
sourceSpanIds?: string[] | undefined;
|
|
4941
4940
|
documentNodeId?: string | undefined;
|
|
4942
4941
|
sourceTextHash?: string | undefined;
|
|
4943
4942
|
pageStart?: number | undefined;
|
|
4944
4943
|
pageEnd?: number | undefined;
|
|
4944
|
+
title?: string | undefined;
|
|
4945
4945
|
editionDate?: string | undefined;
|
|
4946
4946
|
}[] | undefined;
|
|
4947
4947
|
expirationDate?: string | undefined;
|
|
@@ -4951,11 +4951,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4951
4951
|
security?: string | undefined;
|
|
4952
4952
|
premiumAmount?: number | undefined;
|
|
4953
4953
|
summary?: string | undefined;
|
|
4954
|
-
|
|
4954
|
+
linesOfBusiness?: string[] | undefined;
|
|
4955
4955
|
sections?: {
|
|
4956
|
-
title: string;
|
|
4957
4956
|
type: string;
|
|
4958
4957
|
pageStart: number;
|
|
4958
|
+
title: string;
|
|
4959
4959
|
sourceSpanIds?: string[] | undefined;
|
|
4960
4960
|
documentNodeId?: string | undefined;
|
|
4961
4961
|
sourceTextHash?: string | undefined;
|
|
@@ -4992,11 +4992,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4992
4992
|
coveredReasons?: {
|
|
4993
4993
|
content: string;
|
|
4994
4994
|
coverageName: string;
|
|
4995
|
-
title?: string | undefined;
|
|
4996
4995
|
conditions?: string[] | undefined;
|
|
4997
4996
|
sourceSpanIds?: string[] | undefined;
|
|
4998
4997
|
documentNodeId?: string | undefined;
|
|
4999
4998
|
sourceTextHash?: string | undefined;
|
|
4999
|
+
title?: string | undefined;
|
|
5000
5000
|
formNumber?: string | undefined;
|
|
5001
5001
|
appliesTo?: string[] | undefined;
|
|
5002
5002
|
pageNumber?: number | undefined;
|
|
@@ -5085,10 +5085,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5085
5085
|
premium?: string | undefined;
|
|
5086
5086
|
}[] | undefined;
|
|
5087
5087
|
endorsements?: {
|
|
5088
|
-
title: string;
|
|
5089
5088
|
pageStart: number;
|
|
5089
|
+
title: string;
|
|
5090
5090
|
formNumber: string;
|
|
5091
|
-
endorsementType: "
|
|
5091
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
5092
5092
|
sourceSpanIds?: string[] | undefined;
|
|
5093
5093
|
documentNodeId?: string | undefined;
|
|
5094
5094
|
sourceTextHash?: string | undefined;
|
|
@@ -5100,7 +5100,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5100
5100
|
namedParties?: {
|
|
5101
5101
|
sourceSpanIds: string[];
|
|
5102
5102
|
name: string;
|
|
5103
|
-
role: "
|
|
5103
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5104
5104
|
documentNodeId?: string | undefined;
|
|
5105
5105
|
sourceTextHash?: string | undefined;
|
|
5106
5106
|
pageStart?: number | undefined;
|
|
@@ -5181,13 +5181,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5181
5181
|
} | undefined;
|
|
5182
5182
|
claimsContacts?: {
|
|
5183
5183
|
sourceSpanIds: string[];
|
|
5184
|
-
title?: string | undefined;
|
|
5185
5184
|
type?: string | undefined;
|
|
5186
5185
|
documentNodeId?: string | undefined;
|
|
5187
5186
|
sourceTextHash?: string | undefined;
|
|
5188
5187
|
pageStart?: number | undefined;
|
|
5189
5188
|
pageEnd?: number | undefined;
|
|
5190
5189
|
name?: string | undefined;
|
|
5190
|
+
title?: string | undefined;
|
|
5191
5191
|
phone?: string | undefined;
|
|
5192
5192
|
fax?: string | undefined;
|
|
5193
5193
|
email?: string | undefined;
|
|
@@ -5203,13 +5203,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5203
5203
|
}[] | undefined;
|
|
5204
5204
|
regulatoryContacts?: {
|
|
5205
5205
|
sourceSpanIds: string[];
|
|
5206
|
-
title?: string | undefined;
|
|
5207
5206
|
type?: string | undefined;
|
|
5208
5207
|
documentNodeId?: string | undefined;
|
|
5209
5208
|
sourceTextHash?: string | undefined;
|
|
5210
5209
|
pageStart?: number | undefined;
|
|
5211
5210
|
pageEnd?: number | undefined;
|
|
5212
5211
|
name?: string | undefined;
|
|
5212
|
+
title?: string | undefined;
|
|
5213
5213
|
phone?: string | undefined;
|
|
5214
5214
|
fax?: string | undefined;
|
|
5215
5215
|
email?: string | undefined;
|
|
@@ -5225,13 +5225,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5225
5225
|
}[] | undefined;
|
|
5226
5226
|
thirdPartyAdministrators?: {
|
|
5227
5227
|
sourceSpanIds: string[];
|
|
5228
|
-
title?: string | undefined;
|
|
5229
5228
|
type?: string | undefined;
|
|
5230
5229
|
documentNodeId?: string | undefined;
|
|
5231
5230
|
sourceTextHash?: string | undefined;
|
|
5232
5231
|
pageStart?: number | undefined;
|
|
5233
5232
|
pageEnd?: number | undefined;
|
|
5234
5233
|
name?: string | undefined;
|
|
5234
|
+
title?: string | undefined;
|
|
5235
5235
|
phone?: string | undefined;
|
|
5236
5236
|
fax?: string | undefined;
|
|
5237
5237
|
email?: string | undefined;
|
|
@@ -5248,7 +5248,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5248
5248
|
additionalInsureds?: {
|
|
5249
5249
|
sourceSpanIds: string[];
|
|
5250
5250
|
name: string;
|
|
5251
|
-
role: "
|
|
5251
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5252
5252
|
documentNodeId?: string | undefined;
|
|
5253
5253
|
sourceTextHash?: string | undefined;
|
|
5254
5254
|
pageStart?: number | undefined;
|
|
@@ -5267,7 +5267,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5267
5267
|
lossPayees?: {
|
|
5268
5268
|
sourceSpanIds: string[];
|
|
5269
5269
|
name: string;
|
|
5270
|
-
role: "
|
|
5270
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5271
5271
|
documentNodeId?: string | undefined;
|
|
5272
5272
|
sourceTextHash?: string | undefined;
|
|
5273
5273
|
pageStart?: number | undefined;
|
|
@@ -5286,7 +5286,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5286
5286
|
mortgageHolders?: {
|
|
5287
5287
|
sourceSpanIds: string[];
|
|
5288
5288
|
name: string;
|
|
5289
|
-
role: "
|
|
5289
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5290
5290
|
documentNodeId?: string | undefined;
|
|
5291
5291
|
sourceTextHash?: string | undefined;
|
|
5292
5292
|
pageStart?: number | undefined;
|
|
@@ -5400,12 +5400,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5400
5400
|
formInventory?: {
|
|
5401
5401
|
formNumber: string;
|
|
5402
5402
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
5403
|
-
title?: string | undefined;
|
|
5404
5403
|
sourceSpanIds?: string[] | undefined;
|
|
5405
5404
|
documentNodeId?: string | undefined;
|
|
5406
5405
|
sourceTextHash?: string | undefined;
|
|
5407
5406
|
pageStart?: number | undefined;
|
|
5408
5407
|
pageEnd?: number | undefined;
|
|
5408
|
+
title?: string | undefined;
|
|
5409
5409
|
editionDate?: string | undefined;
|
|
5410
5410
|
}[] | undefined;
|
|
5411
5411
|
tableOfContents?: {
|
|
@@ -5471,7 +5471,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5471
5471
|
mortgagee?: {
|
|
5472
5472
|
sourceSpanIds: string[];
|
|
5473
5473
|
name: string;
|
|
5474
|
-
role: "
|
|
5474
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5475
5475
|
documentNodeId?: string | undefined;
|
|
5476
5476
|
sourceTextHash?: string | undefined;
|
|
5477
5477
|
pageStart?: number | undefined;
|
|
@@ -5490,7 +5490,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5490
5490
|
additionalMortgagees?: {
|
|
5491
5491
|
sourceSpanIds: string[];
|
|
5492
5492
|
name: string;
|
|
5493
|
-
role: "
|
|
5493
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5494
5494
|
documentNodeId?: string | undefined;
|
|
5495
5495
|
sourceTextHash?: string | undefined;
|
|
5496
5496
|
pageStart?: number | undefined;
|
|
@@ -5530,7 +5530,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5530
5530
|
lienHolder?: {
|
|
5531
5531
|
sourceSpanIds: string[];
|
|
5532
5532
|
name: string;
|
|
5533
|
-
role: "
|
|
5533
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
5534
5534
|
documentNodeId?: string | undefined;
|
|
5535
5535
|
sourceTextHash?: string | undefined;
|
|
5536
5536
|
pageStart?: number | undefined;
|
|
@@ -5857,7 +5857,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5857
5857
|
statedValue?: string | undefined;
|
|
5858
5858
|
garageLocation?: number | undefined;
|
|
5859
5859
|
coverages?: {
|
|
5860
|
-
type: "
|
|
5860
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
5861
5861
|
included: boolean;
|
|
5862
5862
|
limit?: string | undefined;
|
|
5863
5863
|
deductible?: string | undefined;
|
|
@@ -5969,7 +5969,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5969
5969
|
statedValue?: string | undefined;
|
|
5970
5970
|
garageLocation?: number | undefined;
|
|
5971
5971
|
coverages?: {
|
|
5972
|
-
type: "
|
|
5972
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
5973
5973
|
included: boolean;
|
|
5974
5974
|
limit?: string | undefined;
|
|
5975
5975
|
deductible?: string | undefined;
|
|
@@ -6057,12 +6057,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6057
6057
|
formInventory?: {
|
|
6058
6058
|
formNumber: string;
|
|
6059
6059
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
6060
|
-
title?: string | undefined;
|
|
6061
6060
|
sourceSpanIds?: string[] | undefined;
|
|
6062
6061
|
documentNodeId?: string | undefined;
|
|
6063
6062
|
sourceTextHash?: string | undefined;
|
|
6064
6063
|
pageStart?: number | undefined;
|
|
6065
6064
|
pageEnd?: number | undefined;
|
|
6065
|
+
title?: string | undefined;
|
|
6066
6066
|
editionDate?: string | undefined;
|
|
6067
6067
|
}[] | undefined;
|
|
6068
6068
|
expirationDate?: string | undefined;
|
|
@@ -6072,11 +6072,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6072
6072
|
security?: string | undefined;
|
|
6073
6073
|
premiumAmount?: number | undefined;
|
|
6074
6074
|
summary?: string | undefined;
|
|
6075
|
-
|
|
6075
|
+
linesOfBusiness?: string[] | undefined;
|
|
6076
6076
|
sections?: {
|
|
6077
|
-
title: string;
|
|
6078
6077
|
type: string;
|
|
6079
6078
|
pageStart: number;
|
|
6079
|
+
title: string;
|
|
6080
6080
|
sourceSpanIds?: string[] | undefined;
|
|
6081
6081
|
documentNodeId?: string | undefined;
|
|
6082
6082
|
sourceTextHash?: string | undefined;
|
|
@@ -6113,11 +6113,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6113
6113
|
coveredReasons?: {
|
|
6114
6114
|
content: string;
|
|
6115
6115
|
coverageName: string;
|
|
6116
|
-
title?: string | undefined;
|
|
6117
6116
|
conditions?: string[] | undefined;
|
|
6118
6117
|
sourceSpanIds?: string[] | undefined;
|
|
6119
6118
|
documentNodeId?: string | undefined;
|
|
6120
6119
|
sourceTextHash?: string | undefined;
|
|
6120
|
+
title?: string | undefined;
|
|
6121
6121
|
formNumber?: string | undefined;
|
|
6122
6122
|
appliesTo?: string[] | undefined;
|
|
6123
6123
|
pageNumber?: number | undefined;
|
|
@@ -6206,10 +6206,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6206
6206
|
premium?: string | undefined;
|
|
6207
6207
|
}[] | undefined;
|
|
6208
6208
|
endorsements?: {
|
|
6209
|
-
title: string;
|
|
6210
6209
|
pageStart: number;
|
|
6210
|
+
title: string;
|
|
6211
6211
|
formNumber: string;
|
|
6212
|
-
endorsementType: "
|
|
6212
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
6213
6213
|
sourceSpanIds?: string[] | undefined;
|
|
6214
6214
|
documentNodeId?: string | undefined;
|
|
6215
6215
|
sourceTextHash?: string | undefined;
|
|
@@ -6221,7 +6221,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6221
6221
|
namedParties?: {
|
|
6222
6222
|
sourceSpanIds: string[];
|
|
6223
6223
|
name: string;
|
|
6224
|
-
role: "
|
|
6224
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
6225
6225
|
documentNodeId?: string | undefined;
|
|
6226
6226
|
sourceTextHash?: string | undefined;
|
|
6227
6227
|
pageStart?: number | undefined;
|
|
@@ -6302,13 +6302,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6302
6302
|
} | undefined;
|
|
6303
6303
|
claimsContacts?: {
|
|
6304
6304
|
sourceSpanIds: string[];
|
|
6305
|
-
title?: string | undefined;
|
|
6306
6305
|
type?: string | undefined;
|
|
6307
6306
|
documentNodeId?: string | undefined;
|
|
6308
6307
|
sourceTextHash?: string | undefined;
|
|
6309
6308
|
pageStart?: number | undefined;
|
|
6310
6309
|
pageEnd?: number | undefined;
|
|
6311
6310
|
name?: string | undefined;
|
|
6311
|
+
title?: string | undefined;
|
|
6312
6312
|
phone?: string | undefined;
|
|
6313
6313
|
fax?: string | undefined;
|
|
6314
6314
|
email?: string | undefined;
|
|
@@ -6324,13 +6324,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6324
6324
|
}[] | undefined;
|
|
6325
6325
|
regulatoryContacts?: {
|
|
6326
6326
|
sourceSpanIds: string[];
|
|
6327
|
-
title?: string | undefined;
|
|
6328
6327
|
type?: string | undefined;
|
|
6329
6328
|
documentNodeId?: string | undefined;
|
|
6330
6329
|
sourceTextHash?: string | undefined;
|
|
6331
6330
|
pageStart?: number | undefined;
|
|
6332
6331
|
pageEnd?: number | undefined;
|
|
6333
6332
|
name?: string | undefined;
|
|
6333
|
+
title?: string | undefined;
|
|
6334
6334
|
phone?: string | undefined;
|
|
6335
6335
|
fax?: string | undefined;
|
|
6336
6336
|
email?: string | undefined;
|
|
@@ -6346,13 +6346,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6346
6346
|
}[] | undefined;
|
|
6347
6347
|
thirdPartyAdministrators?: {
|
|
6348
6348
|
sourceSpanIds: string[];
|
|
6349
|
-
title?: string | undefined;
|
|
6350
6349
|
type?: string | undefined;
|
|
6351
6350
|
documentNodeId?: string | undefined;
|
|
6352
6351
|
sourceTextHash?: string | undefined;
|
|
6353
6352
|
pageStart?: number | undefined;
|
|
6354
6353
|
pageEnd?: number | undefined;
|
|
6355
6354
|
name?: string | undefined;
|
|
6355
|
+
title?: string | undefined;
|
|
6356
6356
|
phone?: string | undefined;
|
|
6357
6357
|
fax?: string | undefined;
|
|
6358
6358
|
email?: string | undefined;
|
|
@@ -6369,7 +6369,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6369
6369
|
additionalInsureds?: {
|
|
6370
6370
|
sourceSpanIds: string[];
|
|
6371
6371
|
name: string;
|
|
6372
|
-
role: "
|
|
6372
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
6373
6373
|
documentNodeId?: string | undefined;
|
|
6374
6374
|
sourceTextHash?: string | undefined;
|
|
6375
6375
|
pageStart?: number | undefined;
|
|
@@ -6388,7 +6388,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6388
6388
|
lossPayees?: {
|
|
6389
6389
|
sourceSpanIds: string[];
|
|
6390
6390
|
name: string;
|
|
6391
|
-
role: "
|
|
6391
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
6392
6392
|
documentNodeId?: string | undefined;
|
|
6393
6393
|
sourceTextHash?: string | undefined;
|
|
6394
6394
|
pageStart?: number | undefined;
|
|
@@ -6407,7 +6407,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6407
6407
|
mortgageHolders?: {
|
|
6408
6408
|
sourceSpanIds: string[];
|
|
6409
6409
|
name: string;
|
|
6410
|
-
role: "
|
|
6410
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
6411
6411
|
documentNodeId?: string | undefined;
|
|
6412
6412
|
sourceTextHash?: string | undefined;
|
|
6413
6413
|
pageStart?: number | undefined;
|
|
@@ -6590,7 +6590,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6590
6590
|
premium: z.ZodOptional<z.ZodString>;
|
|
6591
6591
|
premiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
6592
6592
|
summary: z.ZodOptional<z.ZodString>;
|
|
6593
|
-
|
|
6593
|
+
linesOfBusiness: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6594
6594
|
coverages: z.ZodArray<z.ZodObject<{
|
|
6595
6595
|
name: z.ZodString;
|
|
6596
6596
|
limit: z.ZodString;
|
|
@@ -6665,22 +6665,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6665
6665
|
}, "strip", z.ZodTypeAny, {
|
|
6666
6666
|
formNumber: string;
|
|
6667
6667
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
6668
|
-
title?: string | undefined;
|
|
6669
6668
|
sourceSpanIds?: string[] | undefined;
|
|
6670
6669
|
documentNodeId?: string | undefined;
|
|
6671
6670
|
sourceTextHash?: string | undefined;
|
|
6672
6671
|
pageStart?: number | undefined;
|
|
6673
6672
|
pageEnd?: number | undefined;
|
|
6673
|
+
title?: string | undefined;
|
|
6674
6674
|
editionDate?: string | undefined;
|
|
6675
6675
|
}, {
|
|
6676
6676
|
formNumber: string;
|
|
6677
6677
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
6678
|
-
title?: string | undefined;
|
|
6679
6678
|
sourceSpanIds?: string[] | undefined;
|
|
6680
6679
|
documentNodeId?: string | undefined;
|
|
6681
6680
|
sourceTextHash?: string | undefined;
|
|
6682
6681
|
pageStart?: number | undefined;
|
|
6683
6682
|
pageEnd?: number | undefined;
|
|
6683
|
+
title?: string | undefined;
|
|
6684
6684
|
editionDate?: string | undefined;
|
|
6685
6685
|
}>, "many">>;
|
|
6686
6686
|
tableOfContents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -6752,12 +6752,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6752
6752
|
formInventory?: {
|
|
6753
6753
|
formNumber: string;
|
|
6754
6754
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
6755
|
-
title?: string | undefined;
|
|
6756
6755
|
sourceSpanIds?: string[] | undefined;
|
|
6757
6756
|
documentNodeId?: string | undefined;
|
|
6758
6757
|
sourceTextHash?: string | undefined;
|
|
6759
6758
|
pageStart?: number | undefined;
|
|
6760
6759
|
pageEnd?: number | undefined;
|
|
6760
|
+
title?: string | undefined;
|
|
6761
6761
|
editionDate?: string | undefined;
|
|
6762
6762
|
}[] | undefined;
|
|
6763
6763
|
tableOfContents?: {
|
|
@@ -6789,12 +6789,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6789
6789
|
formInventory?: {
|
|
6790
6790
|
formNumber: string;
|
|
6791
6791
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
6792
|
-
title?: string | undefined;
|
|
6793
6792
|
sourceSpanIds?: string[] | undefined;
|
|
6794
6793
|
documentNodeId?: string | undefined;
|
|
6795
6794
|
sourceTextHash?: string | undefined;
|
|
6796
6795
|
pageStart?: number | undefined;
|
|
6797
6796
|
pageEnd?: number | undefined;
|
|
6797
|
+
title?: string | undefined;
|
|
6798
6798
|
editionDate?: string | undefined;
|
|
6799
6799
|
}[] | undefined;
|
|
6800
6800
|
tableOfContents?: {
|
|
@@ -6864,9 +6864,9 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6864
6864
|
sourceSpanIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6865
6865
|
sourceTextHash: z.ZodOptional<z.ZodString>;
|
|
6866
6866
|
}, "strip", z.ZodTypeAny, {
|
|
6867
|
-
title: string;
|
|
6868
6867
|
type: string;
|
|
6869
6868
|
pageStart: number;
|
|
6869
|
+
title: string;
|
|
6870
6870
|
sourceSpanIds?: string[] | undefined;
|
|
6871
6871
|
documentNodeId?: string | undefined;
|
|
6872
6872
|
sourceTextHash?: string | undefined;
|
|
@@ -6887,9 +6887,9 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6887
6887
|
sectionNumber?: string | undefined;
|
|
6888
6888
|
}[] | undefined;
|
|
6889
6889
|
}, {
|
|
6890
|
-
title: string;
|
|
6891
6890
|
type: string;
|
|
6892
6891
|
pageStart: number;
|
|
6892
|
+
title: string;
|
|
6893
6893
|
sourceSpanIds?: string[] | undefined;
|
|
6894
6894
|
documentNodeId?: string | undefined;
|
|
6895
6895
|
sourceTextHash?: string | undefined;
|
|
@@ -6967,11 +6967,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6967
6967
|
}, "strip", z.ZodTypeAny, {
|
|
6968
6968
|
content: string;
|
|
6969
6969
|
coverageName: string;
|
|
6970
|
-
title?: string | undefined;
|
|
6971
6970
|
conditions?: string[] | undefined;
|
|
6972
6971
|
sourceSpanIds?: string[] | undefined;
|
|
6973
6972
|
documentNodeId?: string | undefined;
|
|
6974
6973
|
sourceTextHash?: string | undefined;
|
|
6974
|
+
title?: string | undefined;
|
|
6975
6975
|
formNumber?: string | undefined;
|
|
6976
6976
|
appliesTo?: string[] | undefined;
|
|
6977
6977
|
pageNumber?: number | undefined;
|
|
@@ -6984,11 +6984,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6984
6984
|
}, {
|
|
6985
6985
|
content: string;
|
|
6986
6986
|
coverageName: string;
|
|
6987
|
-
title?: string | undefined;
|
|
6988
6987
|
conditions?: string[] | undefined;
|
|
6989
6988
|
sourceSpanIds?: string[] | undefined;
|
|
6990
6989
|
documentNodeId?: string | undefined;
|
|
6991
6990
|
sourceTextHash?: string | undefined;
|
|
6991
|
+
title?: string | undefined;
|
|
6992
6992
|
formNumber?: string | undefined;
|
|
6993
6993
|
appliesTo?: string[] | undefined;
|
|
6994
6994
|
pageNumber?: number | undefined;
|
|
@@ -7250,7 +7250,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7250
7250
|
}, "strip", z.ZodTypeAny, {
|
|
7251
7251
|
sourceSpanIds: string[];
|
|
7252
7252
|
name: string;
|
|
7253
|
-
role: "
|
|
7253
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7254
7254
|
documentNodeId?: string | undefined;
|
|
7255
7255
|
sourceTextHash?: string | undefined;
|
|
7256
7256
|
pageStart?: number | undefined;
|
|
@@ -7268,7 +7268,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7268
7268
|
}, {
|
|
7269
7269
|
sourceSpanIds: string[];
|
|
7270
7270
|
name: string;
|
|
7271
|
-
role: "
|
|
7271
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7272
7272
|
documentNodeId?: string | undefined;
|
|
7273
7273
|
sourceTextHash?: string | undefined;
|
|
7274
7274
|
pageStart?: number | undefined;
|
|
@@ -7295,10 +7295,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7295
7295
|
sourceSpanIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7296
7296
|
sourceTextHash: z.ZodOptional<z.ZodString>;
|
|
7297
7297
|
}, "strip", z.ZodTypeAny, {
|
|
7298
|
-
title: string;
|
|
7299
7298
|
pageStart: number;
|
|
7299
|
+
title: string;
|
|
7300
7300
|
formNumber: string;
|
|
7301
|
-
endorsementType: "
|
|
7301
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
7302
7302
|
sourceSpanIds?: string[] | undefined;
|
|
7303
7303
|
documentNodeId?: string | undefined;
|
|
7304
7304
|
sourceTextHash?: string | undefined;
|
|
@@ -7310,7 +7310,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7310
7310
|
namedParties?: {
|
|
7311
7311
|
sourceSpanIds: string[];
|
|
7312
7312
|
name: string;
|
|
7313
|
-
role: "
|
|
7313
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7314
7314
|
documentNodeId?: string | undefined;
|
|
7315
7315
|
sourceTextHash?: string | undefined;
|
|
7316
7316
|
pageStart?: number | undefined;
|
|
@@ -7331,10 +7331,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7331
7331
|
excerpt?: string | undefined;
|
|
7332
7332
|
content?: string | undefined;
|
|
7333
7333
|
}, {
|
|
7334
|
-
title: string;
|
|
7335
7334
|
pageStart: number;
|
|
7335
|
+
title: string;
|
|
7336
7336
|
formNumber: string;
|
|
7337
|
-
endorsementType: "
|
|
7337
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
7338
7338
|
sourceSpanIds?: string[] | undefined;
|
|
7339
7339
|
documentNodeId?: string | undefined;
|
|
7340
7340
|
sourceTextHash?: string | undefined;
|
|
@@ -7346,7 +7346,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7346
7346
|
namedParties?: {
|
|
7347
7347
|
sourceSpanIds: string[];
|
|
7348
7348
|
name: string;
|
|
7349
|
-
role: "
|
|
7349
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7350
7350
|
documentNodeId?: string | undefined;
|
|
7351
7351
|
sourceTextHash?: string | undefined;
|
|
7352
7352
|
pageStart?: number | undefined;
|
|
@@ -7703,12 +7703,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7703
7703
|
deductible: z.ZodOptional<z.ZodString>;
|
|
7704
7704
|
included: z.ZodBoolean;
|
|
7705
7705
|
}, "strip", z.ZodTypeAny, {
|
|
7706
|
-
type: "
|
|
7706
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
7707
7707
|
included: boolean;
|
|
7708
7708
|
limit?: string | undefined;
|
|
7709
7709
|
deductible?: string | undefined;
|
|
7710
7710
|
}, {
|
|
7711
|
-
type: "
|
|
7711
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
7712
7712
|
included: boolean;
|
|
7713
7713
|
limit?: string | undefined;
|
|
7714
7714
|
deductible?: string | undefined;
|
|
@@ -7725,7 +7725,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7725
7725
|
statedValue?: string | undefined;
|
|
7726
7726
|
garageLocation?: number | undefined;
|
|
7727
7727
|
coverages?: {
|
|
7728
|
-
type: "
|
|
7728
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
7729
7729
|
included: boolean;
|
|
7730
7730
|
limit?: string | undefined;
|
|
7731
7731
|
deductible?: string | undefined;
|
|
@@ -7742,7 +7742,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7742
7742
|
statedValue?: string | undefined;
|
|
7743
7743
|
garageLocation?: number | undefined;
|
|
7744
7744
|
coverages?: {
|
|
7745
|
-
type: "
|
|
7745
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
7746
7746
|
included: boolean;
|
|
7747
7747
|
limit?: string | undefined;
|
|
7748
7748
|
deductible?: string | undefined;
|
|
@@ -7788,22 +7788,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7788
7788
|
}, "strip", z.ZodTypeAny, {
|
|
7789
7789
|
formNumber: string;
|
|
7790
7790
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
7791
|
-
title?: string | undefined;
|
|
7792
7791
|
sourceSpanIds?: string[] | undefined;
|
|
7793
7792
|
documentNodeId?: string | undefined;
|
|
7794
7793
|
sourceTextHash?: string | undefined;
|
|
7795
7794
|
pageStart?: number | undefined;
|
|
7796
7795
|
pageEnd?: number | undefined;
|
|
7796
|
+
title?: string | undefined;
|
|
7797
7797
|
editionDate?: string | undefined;
|
|
7798
7798
|
}, {
|
|
7799
7799
|
formNumber: string;
|
|
7800
7800
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
7801
|
-
title?: string | undefined;
|
|
7802
7801
|
sourceSpanIds?: string[] | undefined;
|
|
7803
7802
|
documentNodeId?: string | undefined;
|
|
7804
7803
|
sourceTextHash?: string | undefined;
|
|
7805
7804
|
pageStart?: number | undefined;
|
|
7806
7805
|
pageEnd?: number | undefined;
|
|
7806
|
+
title?: string | undefined;
|
|
7807
7807
|
editionDate?: string | undefined;
|
|
7808
7808
|
}>, "many">>;
|
|
7809
7809
|
declarations: z.ZodOptional<z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
|
|
@@ -7919,7 +7919,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7919
7919
|
}, "strip", z.ZodTypeAny, {
|
|
7920
7920
|
sourceSpanIds: string[];
|
|
7921
7921
|
name: string;
|
|
7922
|
-
role: "
|
|
7922
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7923
7923
|
documentNodeId?: string | undefined;
|
|
7924
7924
|
sourceTextHash?: string | undefined;
|
|
7925
7925
|
pageStart?: number | undefined;
|
|
@@ -7937,7 +7937,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7937
7937
|
}, {
|
|
7938
7938
|
sourceSpanIds: string[];
|
|
7939
7939
|
name: string;
|
|
7940
|
-
role: "
|
|
7940
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7941
7941
|
documentNodeId?: string | undefined;
|
|
7942
7942
|
sourceTextHash?: string | undefined;
|
|
7943
7943
|
pageStart?: number | undefined;
|
|
@@ -7989,7 +7989,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
7989
7989
|
}, "strip", z.ZodTypeAny, {
|
|
7990
7990
|
sourceSpanIds: string[];
|
|
7991
7991
|
name: string;
|
|
7992
|
-
role: "
|
|
7992
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
7993
7993
|
documentNodeId?: string | undefined;
|
|
7994
7994
|
sourceTextHash?: string | undefined;
|
|
7995
7995
|
pageStart?: number | undefined;
|
|
@@ -8007,7 +8007,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8007
8007
|
}, {
|
|
8008
8008
|
sourceSpanIds: string[];
|
|
8009
8009
|
name: string;
|
|
8010
|
-
role: "
|
|
8010
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8011
8011
|
documentNodeId?: string | undefined;
|
|
8012
8012
|
sourceTextHash?: string | undefined;
|
|
8013
8013
|
pageStart?: number | undefined;
|
|
@@ -8061,7 +8061,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8061
8061
|
mortgagee?: {
|
|
8062
8062
|
sourceSpanIds: string[];
|
|
8063
8063
|
name: string;
|
|
8064
|
-
role: "
|
|
8064
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8065
8065
|
documentNodeId?: string | undefined;
|
|
8066
8066
|
sourceTextHash?: string | undefined;
|
|
8067
8067
|
pageStart?: number | undefined;
|
|
@@ -8080,7 +8080,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8080
8080
|
additionalMortgagees?: {
|
|
8081
8081
|
sourceSpanIds: string[];
|
|
8082
8082
|
name: string;
|
|
8083
|
-
role: "
|
|
8083
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8084
8084
|
documentNodeId?: string | undefined;
|
|
8085
8085
|
sourceTextHash?: string | undefined;
|
|
8086
8086
|
pageStart?: number | undefined;
|
|
@@ -8134,7 +8134,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8134
8134
|
mortgagee?: {
|
|
8135
8135
|
sourceSpanIds: string[];
|
|
8136
8136
|
name: string;
|
|
8137
|
-
role: "
|
|
8137
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8138
8138
|
documentNodeId?: string | undefined;
|
|
8139
8139
|
sourceTextHash?: string | undefined;
|
|
8140
8140
|
pageStart?: number | undefined;
|
|
@@ -8153,7 +8153,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8153
8153
|
additionalMortgagees?: {
|
|
8154
8154
|
sourceSpanIds: string[];
|
|
8155
8155
|
name: string;
|
|
8156
|
-
role: "
|
|
8156
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8157
8157
|
documentNodeId?: string | undefined;
|
|
8158
8158
|
sourceTextHash?: string | undefined;
|
|
8159
8159
|
pageStart?: number | undefined;
|
|
@@ -8240,7 +8240,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8240
8240
|
}, "strip", z.ZodTypeAny, {
|
|
8241
8241
|
sourceSpanIds: string[];
|
|
8242
8242
|
name: string;
|
|
8243
|
-
role: "
|
|
8243
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8244
8244
|
documentNodeId?: string | undefined;
|
|
8245
8245
|
sourceTextHash?: string | undefined;
|
|
8246
8246
|
pageStart?: number | undefined;
|
|
@@ -8258,7 +8258,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8258
8258
|
}, {
|
|
8259
8259
|
sourceSpanIds: string[];
|
|
8260
8260
|
name: string;
|
|
8261
|
-
role: "
|
|
8261
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8262
8262
|
documentNodeId?: string | undefined;
|
|
8263
8263
|
sourceTextHash?: string | undefined;
|
|
8264
8264
|
pageStart?: number | undefined;
|
|
@@ -8300,7 +8300,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8300
8300
|
lienHolder?: {
|
|
8301
8301
|
sourceSpanIds: string[];
|
|
8302
8302
|
name: string;
|
|
8303
|
-
role: "
|
|
8303
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8304
8304
|
documentNodeId?: string | undefined;
|
|
8305
8305
|
sourceTextHash?: string | undefined;
|
|
8306
8306
|
pageStart?: number | undefined;
|
|
@@ -8342,7 +8342,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8342
8342
|
lienHolder?: {
|
|
8343
8343
|
sourceSpanIds: string[];
|
|
8344
8344
|
name: string;
|
|
8345
|
-
role: "
|
|
8345
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8346
8346
|
documentNodeId?: string | undefined;
|
|
8347
8347
|
sourceTextHash?: string | undefined;
|
|
8348
8348
|
pageStart?: number | undefined;
|
|
@@ -8513,7 +8513,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8513
8513
|
lienHolder?: {
|
|
8514
8514
|
sourceSpanIds: string[];
|
|
8515
8515
|
name: string;
|
|
8516
|
-
role: "
|
|
8516
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8517
8517
|
documentNodeId?: string | undefined;
|
|
8518
8518
|
sourceTextHash?: string | undefined;
|
|
8519
8519
|
pageStart?: number | undefined;
|
|
@@ -8598,7 +8598,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
8598
8598
|
lienHolder?: {
|
|
8599
8599
|
sourceSpanIds: string[];
|
|
8600
8600
|
name: string;
|
|
8601
|
-
role: "
|
|
8601
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
8602
8602
|
documentNodeId?: string | undefined;
|
|
8603
8603
|
sourceTextHash?: string | undefined;
|
|
8604
8604
|
pageStart?: number | undefined;
|
|
@@ -9656,12 +9656,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9656
9656
|
deductible: z.ZodOptional<z.ZodString>;
|
|
9657
9657
|
included: z.ZodBoolean;
|
|
9658
9658
|
}, "strip", z.ZodTypeAny, {
|
|
9659
|
-
type: "
|
|
9659
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9660
9660
|
included: boolean;
|
|
9661
9661
|
limit?: string | undefined;
|
|
9662
9662
|
deductible?: string | undefined;
|
|
9663
9663
|
}, {
|
|
9664
|
-
type: "
|
|
9664
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9665
9665
|
included: boolean;
|
|
9666
9666
|
limit?: string | undefined;
|
|
9667
9667
|
deductible?: string | undefined;
|
|
@@ -9678,7 +9678,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9678
9678
|
statedValue?: string | undefined;
|
|
9679
9679
|
garageLocation?: number | undefined;
|
|
9680
9680
|
coverages?: {
|
|
9681
|
-
type: "
|
|
9681
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9682
9682
|
included: boolean;
|
|
9683
9683
|
limit?: string | undefined;
|
|
9684
9684
|
deductible?: string | undefined;
|
|
@@ -9695,7 +9695,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9695
9695
|
statedValue?: string | undefined;
|
|
9696
9696
|
garageLocation?: number | undefined;
|
|
9697
9697
|
coverages?: {
|
|
9698
|
-
type: "
|
|
9698
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9699
9699
|
included: boolean;
|
|
9700
9700
|
limit?: string | undefined;
|
|
9701
9701
|
deductible?: string | undefined;
|
|
@@ -9721,7 +9721,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9721
9721
|
statedValue?: string | undefined;
|
|
9722
9722
|
garageLocation?: number | undefined;
|
|
9723
9723
|
coverages?: {
|
|
9724
|
-
type: "
|
|
9724
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9725
9725
|
included: boolean;
|
|
9726
9726
|
limit?: string | undefined;
|
|
9727
9727
|
deductible?: string | undefined;
|
|
@@ -9747,7 +9747,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9747
9747
|
statedValue?: string | undefined;
|
|
9748
9748
|
garageLocation?: number | undefined;
|
|
9749
9749
|
coverages?: {
|
|
9750
|
-
type: "
|
|
9750
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
9751
9751
|
included: boolean;
|
|
9752
9752
|
limit?: string | undefined;
|
|
9753
9753
|
deductible?: string | undefined;
|
|
@@ -10205,13 +10205,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10205
10205
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
10206
10206
|
}, "strip", z.ZodTypeAny, {
|
|
10207
10207
|
sourceSpanIds: string[];
|
|
10208
|
-
title?: string | undefined;
|
|
10209
10208
|
type?: string | undefined;
|
|
10210
10209
|
documentNodeId?: string | undefined;
|
|
10211
10210
|
sourceTextHash?: string | undefined;
|
|
10212
10211
|
pageStart?: number | undefined;
|
|
10213
10212
|
pageEnd?: number | undefined;
|
|
10214
10213
|
name?: string | undefined;
|
|
10214
|
+
title?: string | undefined;
|
|
10215
10215
|
phone?: string | undefined;
|
|
10216
10216
|
fax?: string | undefined;
|
|
10217
10217
|
email?: string | undefined;
|
|
@@ -10226,13 +10226,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10226
10226
|
hours?: string | undefined;
|
|
10227
10227
|
}, {
|
|
10228
10228
|
sourceSpanIds: string[];
|
|
10229
|
-
title?: string | undefined;
|
|
10230
10229
|
type?: string | undefined;
|
|
10231
10230
|
documentNodeId?: string | undefined;
|
|
10232
10231
|
sourceTextHash?: string | undefined;
|
|
10233
10232
|
pageStart?: number | undefined;
|
|
10234
10233
|
pageEnd?: number | undefined;
|
|
10235
10234
|
name?: string | undefined;
|
|
10235
|
+
title?: string | undefined;
|
|
10236
10236
|
phone?: string | undefined;
|
|
10237
10237
|
fax?: string | undefined;
|
|
10238
10238
|
email?: string | undefined;
|
|
@@ -10284,13 +10284,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10284
10284
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
10285
10285
|
}, "strip", z.ZodTypeAny, {
|
|
10286
10286
|
sourceSpanIds: string[];
|
|
10287
|
-
title?: string | undefined;
|
|
10288
10287
|
type?: string | undefined;
|
|
10289
10288
|
documentNodeId?: string | undefined;
|
|
10290
10289
|
sourceTextHash?: string | undefined;
|
|
10291
10290
|
pageStart?: number | undefined;
|
|
10292
10291
|
pageEnd?: number | undefined;
|
|
10293
10292
|
name?: string | undefined;
|
|
10293
|
+
title?: string | undefined;
|
|
10294
10294
|
phone?: string | undefined;
|
|
10295
10295
|
fax?: string | undefined;
|
|
10296
10296
|
email?: string | undefined;
|
|
@@ -10305,13 +10305,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10305
10305
|
hours?: string | undefined;
|
|
10306
10306
|
}, {
|
|
10307
10307
|
sourceSpanIds: string[];
|
|
10308
|
-
title?: string | undefined;
|
|
10309
10308
|
type?: string | undefined;
|
|
10310
10309
|
documentNodeId?: string | undefined;
|
|
10311
10310
|
sourceTextHash?: string | undefined;
|
|
10312
10311
|
pageStart?: number | undefined;
|
|
10313
10312
|
pageEnd?: number | undefined;
|
|
10314
10313
|
name?: string | undefined;
|
|
10314
|
+
title?: string | undefined;
|
|
10315
10315
|
phone?: string | undefined;
|
|
10316
10316
|
fax?: string | undefined;
|
|
10317
10317
|
email?: string | undefined;
|
|
@@ -10363,13 +10363,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10363
10363
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
10364
10364
|
}, "strip", z.ZodTypeAny, {
|
|
10365
10365
|
sourceSpanIds: string[];
|
|
10366
|
-
title?: string | undefined;
|
|
10367
10366
|
type?: string | undefined;
|
|
10368
10367
|
documentNodeId?: string | undefined;
|
|
10369
10368
|
sourceTextHash?: string | undefined;
|
|
10370
10369
|
pageStart?: number | undefined;
|
|
10371
10370
|
pageEnd?: number | undefined;
|
|
10372
10371
|
name?: string | undefined;
|
|
10372
|
+
title?: string | undefined;
|
|
10373
10373
|
phone?: string | undefined;
|
|
10374
10374
|
fax?: string | undefined;
|
|
10375
10375
|
email?: string | undefined;
|
|
@@ -10384,13 +10384,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10384
10384
|
hours?: string | undefined;
|
|
10385
10385
|
}, {
|
|
10386
10386
|
sourceSpanIds: string[];
|
|
10387
|
-
title?: string | undefined;
|
|
10388
10387
|
type?: string | undefined;
|
|
10389
10388
|
documentNodeId?: string | undefined;
|
|
10390
10389
|
sourceTextHash?: string | undefined;
|
|
10391
10390
|
pageStart?: number | undefined;
|
|
10392
10391
|
pageEnd?: number | undefined;
|
|
10393
10392
|
name?: string | undefined;
|
|
10393
|
+
title?: string | undefined;
|
|
10394
10394
|
phone?: string | undefined;
|
|
10395
10395
|
fax?: string | undefined;
|
|
10396
10396
|
email?: string | undefined;
|
|
@@ -10440,7 +10440,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10440
10440
|
}, "strip", z.ZodTypeAny, {
|
|
10441
10441
|
sourceSpanIds: string[];
|
|
10442
10442
|
name: string;
|
|
10443
|
-
role: "
|
|
10443
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10444
10444
|
documentNodeId?: string | undefined;
|
|
10445
10445
|
sourceTextHash?: string | undefined;
|
|
10446
10446
|
pageStart?: number | undefined;
|
|
@@ -10458,7 +10458,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10458
10458
|
}, {
|
|
10459
10459
|
sourceSpanIds: string[];
|
|
10460
10460
|
name: string;
|
|
10461
|
-
role: "
|
|
10461
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10462
10462
|
documentNodeId?: string | undefined;
|
|
10463
10463
|
sourceTextHash?: string | undefined;
|
|
10464
10464
|
pageStart?: number | undefined;
|
|
@@ -10510,7 +10510,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10510
10510
|
}, "strip", z.ZodTypeAny, {
|
|
10511
10511
|
sourceSpanIds: string[];
|
|
10512
10512
|
name: string;
|
|
10513
|
-
role: "
|
|
10513
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10514
10514
|
documentNodeId?: string | undefined;
|
|
10515
10515
|
sourceTextHash?: string | undefined;
|
|
10516
10516
|
pageStart?: number | undefined;
|
|
@@ -10528,7 +10528,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10528
10528
|
}, {
|
|
10529
10529
|
sourceSpanIds: string[];
|
|
10530
10530
|
name: string;
|
|
10531
|
-
role: "
|
|
10531
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10532
10532
|
documentNodeId?: string | undefined;
|
|
10533
10533
|
sourceTextHash?: string | undefined;
|
|
10534
10534
|
pageStart?: number | undefined;
|
|
@@ -10580,7 +10580,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10580
10580
|
}, "strip", z.ZodTypeAny, {
|
|
10581
10581
|
sourceSpanIds: string[];
|
|
10582
10582
|
name: string;
|
|
10583
|
-
role: "
|
|
10583
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10584
10584
|
documentNodeId?: string | undefined;
|
|
10585
10585
|
sourceTextHash?: string | undefined;
|
|
10586
10586
|
pageStart?: number | undefined;
|
|
@@ -10598,7 +10598,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10598
10598
|
}, {
|
|
10599
10599
|
sourceSpanIds: string[];
|
|
10600
10600
|
name: string;
|
|
10601
|
-
role: "
|
|
10601
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10602
10602
|
documentNodeId?: string | undefined;
|
|
10603
10603
|
sourceTextHash?: string | undefined;
|
|
10604
10604
|
pageStart?: number | undefined;
|
|
@@ -10829,12 +10829,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10829
10829
|
formInventory?: {
|
|
10830
10830
|
formNumber: string;
|
|
10831
10831
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
10832
|
-
title?: string | undefined;
|
|
10833
10832
|
sourceSpanIds?: string[] | undefined;
|
|
10834
10833
|
documentNodeId?: string | undefined;
|
|
10835
10834
|
sourceTextHash?: string | undefined;
|
|
10836
10835
|
pageStart?: number | undefined;
|
|
10837
10836
|
pageEnd?: number | undefined;
|
|
10837
|
+
title?: string | undefined;
|
|
10838
10838
|
editionDate?: string | undefined;
|
|
10839
10839
|
}[] | undefined;
|
|
10840
10840
|
tableOfContents?: {
|
|
@@ -10901,7 +10901,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10901
10901
|
mortgagee?: {
|
|
10902
10902
|
sourceSpanIds: string[];
|
|
10903
10903
|
name: string;
|
|
10904
|
-
role: "
|
|
10904
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10905
10905
|
documentNodeId?: string | undefined;
|
|
10906
10906
|
sourceTextHash?: string | undefined;
|
|
10907
10907
|
pageStart?: number | undefined;
|
|
@@ -10920,7 +10920,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10920
10920
|
additionalMortgagees?: {
|
|
10921
10921
|
sourceSpanIds: string[];
|
|
10922
10922
|
name: string;
|
|
10923
|
-
role: "
|
|
10923
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10924
10924
|
documentNodeId?: string | undefined;
|
|
10925
10925
|
sourceTextHash?: string | undefined;
|
|
10926
10926
|
pageStart?: number | undefined;
|
|
@@ -10960,7 +10960,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10960
10960
|
lienHolder?: {
|
|
10961
10961
|
sourceSpanIds: string[];
|
|
10962
10962
|
name: string;
|
|
10963
|
-
role: "
|
|
10963
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
10964
10964
|
documentNodeId?: string | undefined;
|
|
10965
10965
|
sourceTextHash?: string | undefined;
|
|
10966
10966
|
pageStart?: number | undefined;
|
|
@@ -11287,7 +11287,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11287
11287
|
statedValue?: string | undefined;
|
|
11288
11288
|
garageLocation?: number | undefined;
|
|
11289
11289
|
coverages?: {
|
|
11290
|
-
type: "
|
|
11290
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
11291
11291
|
included: boolean;
|
|
11292
11292
|
limit?: string | undefined;
|
|
11293
11293
|
deductible?: string | undefined;
|
|
@@ -11399,7 +11399,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11399
11399
|
statedValue?: string | undefined;
|
|
11400
11400
|
garageLocation?: number | undefined;
|
|
11401
11401
|
coverages?: {
|
|
11402
|
-
type: "
|
|
11402
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
11403
11403
|
included: boolean;
|
|
11404
11404
|
limit?: string | undefined;
|
|
11405
11405
|
deductible?: string | undefined;
|
|
@@ -11487,22 +11487,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11487
11487
|
formInventory?: {
|
|
11488
11488
|
formNumber: string;
|
|
11489
11489
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
11490
|
-
title?: string | undefined;
|
|
11491
11490
|
sourceSpanIds?: string[] | undefined;
|
|
11492
11491
|
documentNodeId?: string | undefined;
|
|
11493
11492
|
sourceTextHash?: string | undefined;
|
|
11494
11493
|
pageStart?: number | undefined;
|
|
11495
11494
|
pageEnd?: number | undefined;
|
|
11495
|
+
title?: string | undefined;
|
|
11496
11496
|
editionDate?: string | undefined;
|
|
11497
11497
|
}[] | undefined;
|
|
11498
11498
|
security?: string | undefined;
|
|
11499
11499
|
premiumAmount?: number | undefined;
|
|
11500
11500
|
summary?: string | undefined;
|
|
11501
|
-
|
|
11501
|
+
linesOfBusiness?: string[] | undefined;
|
|
11502
11502
|
sections?: {
|
|
11503
|
-
title: string;
|
|
11504
11503
|
type: string;
|
|
11505
11504
|
pageStart: number;
|
|
11505
|
+
title: string;
|
|
11506
11506
|
sourceSpanIds?: string[] | undefined;
|
|
11507
11507
|
documentNodeId?: string | undefined;
|
|
11508
11508
|
sourceTextHash?: string | undefined;
|
|
@@ -11539,11 +11539,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11539
11539
|
coveredReasons?: {
|
|
11540
11540
|
content: string;
|
|
11541
11541
|
coverageName: string;
|
|
11542
|
-
title?: string | undefined;
|
|
11543
11542
|
conditions?: string[] | undefined;
|
|
11544
11543
|
sourceSpanIds?: string[] | undefined;
|
|
11545
11544
|
documentNodeId?: string | undefined;
|
|
11546
11545
|
sourceTextHash?: string | undefined;
|
|
11546
|
+
title?: string | undefined;
|
|
11547
11547
|
formNumber?: string | undefined;
|
|
11548
11548
|
appliesTo?: string[] | undefined;
|
|
11549
11549
|
pageNumber?: number | undefined;
|
|
@@ -11632,10 +11632,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11632
11632
|
premium?: string | undefined;
|
|
11633
11633
|
}[] | undefined;
|
|
11634
11634
|
endorsements?: {
|
|
11635
|
-
title: string;
|
|
11636
11635
|
pageStart: number;
|
|
11636
|
+
title: string;
|
|
11637
11637
|
formNumber: string;
|
|
11638
|
-
endorsementType: "
|
|
11638
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
11639
11639
|
sourceSpanIds?: string[] | undefined;
|
|
11640
11640
|
documentNodeId?: string | undefined;
|
|
11641
11641
|
sourceTextHash?: string | undefined;
|
|
@@ -11647,7 +11647,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11647
11647
|
namedParties?: {
|
|
11648
11648
|
sourceSpanIds: string[];
|
|
11649
11649
|
name: string;
|
|
11650
|
-
role: "
|
|
11650
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
11651
11651
|
documentNodeId?: string | undefined;
|
|
11652
11652
|
sourceTextHash?: string | undefined;
|
|
11653
11653
|
pageStart?: number | undefined;
|
|
@@ -11728,13 +11728,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11728
11728
|
} | undefined;
|
|
11729
11729
|
claimsContacts?: {
|
|
11730
11730
|
sourceSpanIds: string[];
|
|
11731
|
-
title?: string | undefined;
|
|
11732
11731
|
type?: string | undefined;
|
|
11733
11732
|
documentNodeId?: string | undefined;
|
|
11734
11733
|
sourceTextHash?: string | undefined;
|
|
11735
11734
|
pageStart?: number | undefined;
|
|
11736
11735
|
pageEnd?: number | undefined;
|
|
11737
11736
|
name?: string | undefined;
|
|
11737
|
+
title?: string | undefined;
|
|
11738
11738
|
phone?: string | undefined;
|
|
11739
11739
|
fax?: string | undefined;
|
|
11740
11740
|
email?: string | undefined;
|
|
@@ -11750,13 +11750,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11750
11750
|
}[] | undefined;
|
|
11751
11751
|
regulatoryContacts?: {
|
|
11752
11752
|
sourceSpanIds: string[];
|
|
11753
|
-
title?: string | undefined;
|
|
11754
11753
|
type?: string | undefined;
|
|
11755
11754
|
documentNodeId?: string | undefined;
|
|
11756
11755
|
sourceTextHash?: string | undefined;
|
|
11757
11756
|
pageStart?: number | undefined;
|
|
11758
11757
|
pageEnd?: number | undefined;
|
|
11759
11758
|
name?: string | undefined;
|
|
11759
|
+
title?: string | undefined;
|
|
11760
11760
|
phone?: string | undefined;
|
|
11761
11761
|
fax?: string | undefined;
|
|
11762
11762
|
email?: string | undefined;
|
|
@@ -11772,13 +11772,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11772
11772
|
}[] | undefined;
|
|
11773
11773
|
thirdPartyAdministrators?: {
|
|
11774
11774
|
sourceSpanIds: string[];
|
|
11775
|
-
title?: string | undefined;
|
|
11776
11775
|
type?: string | undefined;
|
|
11777
11776
|
documentNodeId?: string | undefined;
|
|
11778
11777
|
sourceTextHash?: string | undefined;
|
|
11779
11778
|
pageStart?: number | undefined;
|
|
11780
11779
|
pageEnd?: number | undefined;
|
|
11781
11780
|
name?: string | undefined;
|
|
11781
|
+
title?: string | undefined;
|
|
11782
11782
|
phone?: string | undefined;
|
|
11783
11783
|
fax?: string | undefined;
|
|
11784
11784
|
email?: string | undefined;
|
|
@@ -11795,7 +11795,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11795
11795
|
additionalInsureds?: {
|
|
11796
11796
|
sourceSpanIds: string[];
|
|
11797
11797
|
name: string;
|
|
11798
|
-
role: "
|
|
11798
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
11799
11799
|
documentNodeId?: string | undefined;
|
|
11800
11800
|
sourceTextHash?: string | undefined;
|
|
11801
11801
|
pageStart?: number | undefined;
|
|
@@ -11814,7 +11814,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11814
11814
|
lossPayees?: {
|
|
11815
11815
|
sourceSpanIds: string[];
|
|
11816
11816
|
name: string;
|
|
11817
|
-
role: "
|
|
11817
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
11818
11818
|
documentNodeId?: string | undefined;
|
|
11819
11819
|
sourceTextHash?: string | undefined;
|
|
11820
11820
|
pageStart?: number | undefined;
|
|
@@ -11833,7 +11833,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11833
11833
|
mortgageHolders?: {
|
|
11834
11834
|
sourceSpanIds: string[];
|
|
11835
11835
|
name: string;
|
|
11836
|
-
role: "
|
|
11836
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
11837
11837
|
documentNodeId?: string | undefined;
|
|
11838
11838
|
sourceTextHash?: string | undefined;
|
|
11839
11839
|
pageStart?: number | undefined;
|
|
@@ -11983,12 +11983,12 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11983
11983
|
formInventory?: {
|
|
11984
11984
|
formNumber: string;
|
|
11985
11985
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
11986
|
-
title?: string | undefined;
|
|
11987
11986
|
sourceSpanIds?: string[] | undefined;
|
|
11988
11987
|
documentNodeId?: string | undefined;
|
|
11989
11988
|
sourceTextHash?: string | undefined;
|
|
11990
11989
|
pageStart?: number | undefined;
|
|
11991
11990
|
pageEnd?: number | undefined;
|
|
11991
|
+
title?: string | undefined;
|
|
11992
11992
|
editionDate?: string | undefined;
|
|
11993
11993
|
}[] | undefined;
|
|
11994
11994
|
tableOfContents?: {
|
|
@@ -12055,7 +12055,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12055
12055
|
mortgagee?: {
|
|
12056
12056
|
sourceSpanIds: string[];
|
|
12057
12057
|
name: string;
|
|
12058
|
-
role: "
|
|
12058
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12059
12059
|
documentNodeId?: string | undefined;
|
|
12060
12060
|
sourceTextHash?: string | undefined;
|
|
12061
12061
|
pageStart?: number | undefined;
|
|
@@ -12074,7 +12074,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12074
12074
|
additionalMortgagees?: {
|
|
12075
12075
|
sourceSpanIds: string[];
|
|
12076
12076
|
name: string;
|
|
12077
|
-
role: "
|
|
12077
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12078
12078
|
documentNodeId?: string | undefined;
|
|
12079
12079
|
sourceTextHash?: string | undefined;
|
|
12080
12080
|
pageStart?: number | undefined;
|
|
@@ -12114,7 +12114,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12114
12114
|
lienHolder?: {
|
|
12115
12115
|
sourceSpanIds: string[];
|
|
12116
12116
|
name: string;
|
|
12117
|
-
role: "
|
|
12117
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12118
12118
|
documentNodeId?: string | undefined;
|
|
12119
12119
|
sourceTextHash?: string | undefined;
|
|
12120
12120
|
pageStart?: number | undefined;
|
|
@@ -12441,7 +12441,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12441
12441
|
statedValue?: string | undefined;
|
|
12442
12442
|
garageLocation?: number | undefined;
|
|
12443
12443
|
coverages?: {
|
|
12444
|
-
type: "
|
|
12444
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
12445
12445
|
included: boolean;
|
|
12446
12446
|
limit?: string | undefined;
|
|
12447
12447
|
deductible?: string | undefined;
|
|
@@ -12553,7 +12553,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12553
12553
|
statedValue?: string | undefined;
|
|
12554
12554
|
garageLocation?: number | undefined;
|
|
12555
12555
|
coverages?: {
|
|
12556
|
-
type: "
|
|
12556
|
+
type: "liability" | "collision" | "comprehensive" | "uninsured_motorist" | "underinsured_motorist" | "medical_payments" | "hired_auto" | "non_owned_auto" | "cargo" | "physical_damage";
|
|
12557
12557
|
included: boolean;
|
|
12558
12558
|
limit?: string | undefined;
|
|
12559
12559
|
deductible?: string | undefined;
|
|
@@ -12641,22 +12641,22 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12641
12641
|
formInventory?: {
|
|
12642
12642
|
formNumber: string;
|
|
12643
12643
|
formType: "other" | "declarations" | "endorsement" | "application" | "notice" | "coverage";
|
|
12644
|
-
title?: string | undefined;
|
|
12645
12644
|
sourceSpanIds?: string[] | undefined;
|
|
12646
12645
|
documentNodeId?: string | undefined;
|
|
12647
12646
|
sourceTextHash?: string | undefined;
|
|
12648
12647
|
pageStart?: number | undefined;
|
|
12649
12648
|
pageEnd?: number | undefined;
|
|
12649
|
+
title?: string | undefined;
|
|
12650
12650
|
editionDate?: string | undefined;
|
|
12651
12651
|
}[] | undefined;
|
|
12652
12652
|
security?: string | undefined;
|
|
12653
12653
|
premiumAmount?: number | undefined;
|
|
12654
12654
|
summary?: string | undefined;
|
|
12655
|
-
|
|
12655
|
+
linesOfBusiness?: string[] | undefined;
|
|
12656
12656
|
sections?: {
|
|
12657
|
-
title: string;
|
|
12658
12657
|
type: string;
|
|
12659
12658
|
pageStart: number;
|
|
12659
|
+
title: string;
|
|
12660
12660
|
sourceSpanIds?: string[] | undefined;
|
|
12661
12661
|
documentNodeId?: string | undefined;
|
|
12662
12662
|
sourceTextHash?: string | undefined;
|
|
@@ -12693,11 +12693,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12693
12693
|
coveredReasons?: {
|
|
12694
12694
|
content: string;
|
|
12695
12695
|
coverageName: string;
|
|
12696
|
-
title?: string | undefined;
|
|
12697
12696
|
conditions?: string[] | undefined;
|
|
12698
12697
|
sourceSpanIds?: string[] | undefined;
|
|
12699
12698
|
documentNodeId?: string | undefined;
|
|
12700
12699
|
sourceTextHash?: string | undefined;
|
|
12700
|
+
title?: string | undefined;
|
|
12701
12701
|
formNumber?: string | undefined;
|
|
12702
12702
|
appliesTo?: string[] | undefined;
|
|
12703
12703
|
pageNumber?: number | undefined;
|
|
@@ -12786,10 +12786,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12786
12786
|
premium?: string | undefined;
|
|
12787
12787
|
}[] | undefined;
|
|
12788
12788
|
endorsements?: {
|
|
12789
|
-
title: string;
|
|
12790
12789
|
pageStart: number;
|
|
12790
|
+
title: string;
|
|
12791
12791
|
formNumber: string;
|
|
12792
|
-
endorsementType: "
|
|
12792
|
+
endorsementType: "additional_insured" | "waiver_of_subrogation" | "primary_noncontributory" | "blanket_additional_insured" | "loss_payee" | "mortgage_holder" | "broadening" | "restriction" | "exclusion" | "amendatory" | "notice_of_cancellation" | "designated_premises" | "classification_change" | "schedule_update" | "deductible_change" | "limit_change" | "territorial_extension" | "other";
|
|
12793
12793
|
sourceSpanIds?: string[] | undefined;
|
|
12794
12794
|
documentNodeId?: string | undefined;
|
|
12795
12795
|
sourceTextHash?: string | undefined;
|
|
@@ -12801,7 +12801,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12801
12801
|
namedParties?: {
|
|
12802
12802
|
sourceSpanIds: string[];
|
|
12803
12803
|
name: string;
|
|
12804
|
-
role: "
|
|
12804
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12805
12805
|
documentNodeId?: string | undefined;
|
|
12806
12806
|
sourceTextHash?: string | undefined;
|
|
12807
12807
|
pageStart?: number | undefined;
|
|
@@ -12882,13 +12882,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12882
12882
|
} | undefined;
|
|
12883
12883
|
claimsContacts?: {
|
|
12884
12884
|
sourceSpanIds: string[];
|
|
12885
|
-
title?: string | undefined;
|
|
12886
12885
|
type?: string | undefined;
|
|
12887
12886
|
documentNodeId?: string | undefined;
|
|
12888
12887
|
sourceTextHash?: string | undefined;
|
|
12889
12888
|
pageStart?: number | undefined;
|
|
12890
12889
|
pageEnd?: number | undefined;
|
|
12891
12890
|
name?: string | undefined;
|
|
12891
|
+
title?: string | undefined;
|
|
12892
12892
|
phone?: string | undefined;
|
|
12893
12893
|
fax?: string | undefined;
|
|
12894
12894
|
email?: string | undefined;
|
|
@@ -12904,13 +12904,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12904
12904
|
}[] | undefined;
|
|
12905
12905
|
regulatoryContacts?: {
|
|
12906
12906
|
sourceSpanIds: string[];
|
|
12907
|
-
title?: string | undefined;
|
|
12908
12907
|
type?: string | undefined;
|
|
12909
12908
|
documentNodeId?: string | undefined;
|
|
12910
12909
|
sourceTextHash?: string | undefined;
|
|
12911
12910
|
pageStart?: number | undefined;
|
|
12912
12911
|
pageEnd?: number | undefined;
|
|
12913
12912
|
name?: string | undefined;
|
|
12913
|
+
title?: string | undefined;
|
|
12914
12914
|
phone?: string | undefined;
|
|
12915
12915
|
fax?: string | undefined;
|
|
12916
12916
|
email?: string | undefined;
|
|
@@ -12926,13 +12926,13 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12926
12926
|
}[] | undefined;
|
|
12927
12927
|
thirdPartyAdministrators?: {
|
|
12928
12928
|
sourceSpanIds: string[];
|
|
12929
|
-
title?: string | undefined;
|
|
12930
12929
|
type?: string | undefined;
|
|
12931
12930
|
documentNodeId?: string | undefined;
|
|
12932
12931
|
sourceTextHash?: string | undefined;
|
|
12933
12932
|
pageStart?: number | undefined;
|
|
12934
12933
|
pageEnd?: number | undefined;
|
|
12935
12934
|
name?: string | undefined;
|
|
12935
|
+
title?: string | undefined;
|
|
12936
12936
|
phone?: string | undefined;
|
|
12937
12937
|
fax?: string | undefined;
|
|
12938
12938
|
email?: string | undefined;
|
|
@@ -12949,7 +12949,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12949
12949
|
additionalInsureds?: {
|
|
12950
12950
|
sourceSpanIds: string[];
|
|
12951
12951
|
name: string;
|
|
12952
|
-
role: "
|
|
12952
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12953
12953
|
documentNodeId?: string | undefined;
|
|
12954
12954
|
sourceTextHash?: string | undefined;
|
|
12955
12955
|
pageStart?: number | undefined;
|
|
@@ -12968,7 +12968,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12968
12968
|
lossPayees?: {
|
|
12969
12969
|
sourceSpanIds: string[];
|
|
12970
12970
|
name: string;
|
|
12971
|
-
role: "
|
|
12971
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12972
12972
|
documentNodeId?: string | undefined;
|
|
12973
12973
|
sourceTextHash?: string | undefined;
|
|
12974
12974
|
pageStart?: number | undefined;
|
|
@@ -12987,7 +12987,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
12987
12987
|
mortgageHolders?: {
|
|
12988
12988
|
sourceSpanIds: string[];
|
|
12989
12989
|
name: string;
|
|
12990
|
-
role: "
|
|
12990
|
+
role: "additional_insured" | "loss_payee" | "mortgage_holder" | "other" | "certificate_holder" | "notice_recipient";
|
|
12991
12991
|
documentNodeId?: string | undefined;
|
|
12992
12992
|
sourceTextHash?: string | undefined;
|
|
12993
12993
|
pageStart?: number | undefined;
|
|
@@ -13399,9 +13399,9 @@ declare const DocumentSourceNodeSchema: z.ZodObject<{
|
|
|
13399
13399
|
path: z.ZodString;
|
|
13400
13400
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13401
13401
|
}, "strip", z.ZodTypeAny, {
|
|
13402
|
-
title: string;
|
|
13403
13402
|
path: string;
|
|
13404
13403
|
sourceSpanIds: string[];
|
|
13404
|
+
title: string;
|
|
13405
13405
|
description: string;
|
|
13406
13406
|
kind: "endorsement" | "schedule" | "page" | "section" | "table" | "table_row" | "table_cell" | "text" | "document" | "page_group" | "form" | "clause";
|
|
13407
13407
|
id: string;
|
|
@@ -13420,9 +13420,9 @@ declare const DocumentSourceNodeSchema: z.ZodObject<{
|
|
|
13420
13420
|
parentId?: string | undefined;
|
|
13421
13421
|
textExcerpt?: string | undefined;
|
|
13422
13422
|
}, {
|
|
13423
|
-
title: string;
|
|
13424
13423
|
path: string;
|
|
13425
13424
|
sourceSpanIds: string[];
|
|
13425
|
+
title: string;
|
|
13426
13426
|
description: string;
|
|
13427
13427
|
kind: "endorsement" | "schedule" | "page" | "section" | "table" | "table_row" | "table_cell" | "text" | "document" | "page_group" | "form" | "clause";
|
|
13428
13428
|
id: string;
|