@claritylabs/cl-sdk 4.1.0 → 4.3.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 +1 -1
- package/dist/application.d.mts +1 -1
- package/dist/application.d.ts +1 -1
- package/dist/application.js +3 -0
- package/dist/application.js.map +1 -1
- package/dist/application.mjs +3 -0
- package/dist/application.mjs.map +1 -1
- package/dist/{index-BzrY6OMD.d.mts → index-DhA-5jZy.d.mts} +378 -0
- package/dist/{index-BzrY6OMD.d.ts → index-DhA-5jZy.d.ts} +378 -0
- package/dist/index.d.mts +43 -3
- package/dist/index.d.ts +43 -3
- package/dist/index.js +208 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +206 -35
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.d.mts +108 -0
- package/dist/storage-sqlite.d.ts +108 -0
- package/dist/storage-sqlite.js +3 -0
- package/dist/storage-sqlite.js.map +1 -1
- package/dist/storage-sqlite.mjs +3 -0
- package/dist/storage-sqlite.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4176,6 +4176,28 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
4176
4176
|
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
4177
4177
|
admittedStatus: z.ZodOptional<z.ZodEnum<["admitted", "non_admitted", "surplus_lines"]>>;
|
|
4178
4178
|
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
4179
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
4180
|
+
street1: z.ZodString;
|
|
4181
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4182
|
+
city: z.ZodString;
|
|
4183
|
+
state: z.ZodString;
|
|
4184
|
+
zip: z.ZodString;
|
|
4185
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4186
|
+
}, "strip", z.ZodTypeAny, {
|
|
4187
|
+
street1: string;
|
|
4188
|
+
city: string;
|
|
4189
|
+
state: string;
|
|
4190
|
+
zip: string;
|
|
4191
|
+
street2?: string | undefined;
|
|
4192
|
+
country?: string | undefined;
|
|
4193
|
+
}, {
|
|
4194
|
+
street1: string;
|
|
4195
|
+
city: string;
|
|
4196
|
+
state: string;
|
|
4197
|
+
zip: string;
|
|
4198
|
+
street2?: string | undefined;
|
|
4199
|
+
country?: string | undefined;
|
|
4200
|
+
}>>;
|
|
4179
4201
|
} & {
|
|
4180
4202
|
sourceSpanIds: z.ZodArray<z.ZodString, "many">;
|
|
4181
4203
|
documentNodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -4189,6 +4211,14 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
4189
4211
|
sourceTextHash?: string | undefined;
|
|
4190
4212
|
pageStart?: number | undefined;
|
|
4191
4213
|
pageEnd?: number | undefined;
|
|
4214
|
+
address?: {
|
|
4215
|
+
street1: string;
|
|
4216
|
+
city: string;
|
|
4217
|
+
state: string;
|
|
4218
|
+
zip: string;
|
|
4219
|
+
street2?: string | undefined;
|
|
4220
|
+
country?: string | undefined;
|
|
4221
|
+
} | undefined;
|
|
4192
4222
|
naicNumber?: string | undefined;
|
|
4193
4223
|
amBestRating?: string | undefined;
|
|
4194
4224
|
amBestNumber?: string | undefined;
|
|
@@ -4201,6 +4231,14 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
4201
4231
|
sourceTextHash?: string | undefined;
|
|
4202
4232
|
pageStart?: number | undefined;
|
|
4203
4233
|
pageEnd?: number | undefined;
|
|
4234
|
+
address?: {
|
|
4235
|
+
street1: string;
|
|
4236
|
+
city: string;
|
|
4237
|
+
state: string;
|
|
4238
|
+
zip: string;
|
|
4239
|
+
street2?: string | undefined;
|
|
4240
|
+
country?: string | undefined;
|
|
4241
|
+
} | undefined;
|
|
4204
4242
|
naicNumber?: string | undefined;
|
|
4205
4243
|
amBestRating?: string | undefined;
|
|
4206
4244
|
amBestNumber?: string | undefined;
|
|
@@ -5818,6 +5856,14 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
5818
5856
|
sourceTextHash?: string | undefined;
|
|
5819
5857
|
pageStart?: number | undefined;
|
|
5820
5858
|
pageEnd?: number | undefined;
|
|
5859
|
+
address?: {
|
|
5860
|
+
street1: string;
|
|
5861
|
+
city: string;
|
|
5862
|
+
state: string;
|
|
5863
|
+
zip: string;
|
|
5864
|
+
street2?: string | undefined;
|
|
5865
|
+
country?: string | undefined;
|
|
5866
|
+
} | undefined;
|
|
5821
5867
|
naicNumber?: string | undefined;
|
|
5822
5868
|
amBestRating?: string | undefined;
|
|
5823
5869
|
amBestNumber?: string | undefined;
|
|
@@ -6939,6 +6985,14 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6939
6985
|
sourceTextHash?: string | undefined;
|
|
6940
6986
|
pageStart?: number | undefined;
|
|
6941
6987
|
pageEnd?: number | undefined;
|
|
6988
|
+
address?: {
|
|
6989
|
+
street1: string;
|
|
6990
|
+
city: string;
|
|
6991
|
+
state: string;
|
|
6992
|
+
zip: string;
|
|
6993
|
+
street2?: string | undefined;
|
|
6994
|
+
country?: string | undefined;
|
|
6995
|
+
} | undefined;
|
|
6942
6996
|
naicNumber?: string | undefined;
|
|
6943
6997
|
amBestRating?: string | undefined;
|
|
6944
6998
|
amBestNumber?: string | undefined;
|
|
@@ -10730,6 +10784,28 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
10730
10784
|
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
10731
10785
|
admittedStatus: z.ZodOptional<z.ZodEnum<["admitted", "non_admitted", "surplus_lines"]>>;
|
|
10732
10786
|
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
10787
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
10788
|
+
street1: z.ZodString;
|
|
10789
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
10790
|
+
city: z.ZodString;
|
|
10791
|
+
state: z.ZodString;
|
|
10792
|
+
zip: z.ZodString;
|
|
10793
|
+
country: z.ZodOptional<z.ZodString>;
|
|
10794
|
+
}, "strip", z.ZodTypeAny, {
|
|
10795
|
+
street1: string;
|
|
10796
|
+
city: string;
|
|
10797
|
+
state: string;
|
|
10798
|
+
zip: string;
|
|
10799
|
+
street2?: string | undefined;
|
|
10800
|
+
country?: string | undefined;
|
|
10801
|
+
}, {
|
|
10802
|
+
street1: string;
|
|
10803
|
+
city: string;
|
|
10804
|
+
state: string;
|
|
10805
|
+
zip: string;
|
|
10806
|
+
street2?: string | undefined;
|
|
10807
|
+
country?: string | undefined;
|
|
10808
|
+
}>>;
|
|
10733
10809
|
} & {
|
|
10734
10810
|
sourceSpanIds: z.ZodArray<z.ZodString, "many">;
|
|
10735
10811
|
documentNodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -10743,6 +10819,14 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
10743
10819
|
sourceTextHash?: string | undefined;
|
|
10744
10820
|
pageStart?: number | undefined;
|
|
10745
10821
|
pageEnd?: number | undefined;
|
|
10822
|
+
address?: {
|
|
10823
|
+
street1: string;
|
|
10824
|
+
city: string;
|
|
10825
|
+
state: string;
|
|
10826
|
+
zip: string;
|
|
10827
|
+
street2?: string | undefined;
|
|
10828
|
+
country?: string | undefined;
|
|
10829
|
+
} | undefined;
|
|
10746
10830
|
naicNumber?: string | undefined;
|
|
10747
10831
|
amBestRating?: string | undefined;
|
|
10748
10832
|
amBestNumber?: string | undefined;
|
|
@@ -10755,6 +10839,14 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
10755
10839
|
sourceTextHash?: string | undefined;
|
|
10756
10840
|
pageStart?: number | undefined;
|
|
10757
10841
|
pageEnd?: number | undefined;
|
|
10842
|
+
address?: {
|
|
10843
|
+
street1: string;
|
|
10844
|
+
city: string;
|
|
10845
|
+
state: string;
|
|
10846
|
+
zip: string;
|
|
10847
|
+
street2?: string | undefined;
|
|
10848
|
+
country?: string | undefined;
|
|
10849
|
+
} | undefined;
|
|
10758
10850
|
naicNumber?: string | undefined;
|
|
10759
10851
|
amBestRating?: string | undefined;
|
|
10760
10852
|
amBestNumber?: string | undefined;
|
|
@@ -12367,6 +12459,14 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12367
12459
|
sourceTextHash?: string | undefined;
|
|
12368
12460
|
pageStart?: number | undefined;
|
|
12369
12461
|
pageEnd?: number | undefined;
|
|
12462
|
+
address?: {
|
|
12463
|
+
street1: string;
|
|
12464
|
+
city: string;
|
|
12465
|
+
state: string;
|
|
12466
|
+
zip: string;
|
|
12467
|
+
street2?: string | undefined;
|
|
12468
|
+
country?: string | undefined;
|
|
12469
|
+
} | undefined;
|
|
12370
12470
|
naicNumber?: string | undefined;
|
|
12371
12471
|
amBestRating?: string | undefined;
|
|
12372
12472
|
amBestNumber?: string | undefined;
|
|
@@ -13521,6 +13621,14 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
13521
13621
|
sourceTextHash?: string | undefined;
|
|
13522
13622
|
pageStart?: number | undefined;
|
|
13523
13623
|
pageEnd?: number | undefined;
|
|
13624
|
+
address?: {
|
|
13625
|
+
street1: string;
|
|
13626
|
+
city: string;
|
|
13627
|
+
state: string;
|
|
13628
|
+
zip: string;
|
|
13629
|
+
street2?: string | undefined;
|
|
13630
|
+
country?: string | undefined;
|
|
13631
|
+
} | undefined;
|
|
13524
13632
|
naicNumber?: string | undefined;
|
|
13525
13633
|
amBestRating?: string | undefined;
|
|
13526
13634
|
amBestNumber?: string | undefined;
|
|
@@ -17263,6 +17371,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
17263
17371
|
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
17264
17372
|
admittedStatus: z.ZodOptional<z.ZodEnum<["admitted", "non_admitted", "surplus_lines"]>>;
|
|
17265
17373
|
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
17374
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
17375
|
+
street1: z.ZodString;
|
|
17376
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
17377
|
+
city: z.ZodString;
|
|
17378
|
+
state: z.ZodString;
|
|
17379
|
+
zip: z.ZodString;
|
|
17380
|
+
country: z.ZodOptional<z.ZodString>;
|
|
17381
|
+
}, "strip", z.ZodTypeAny, {
|
|
17382
|
+
street1: string;
|
|
17383
|
+
city: string;
|
|
17384
|
+
state: string;
|
|
17385
|
+
zip: string;
|
|
17386
|
+
street2?: string | undefined;
|
|
17387
|
+
country?: string | undefined;
|
|
17388
|
+
}, {
|
|
17389
|
+
street1: string;
|
|
17390
|
+
city: string;
|
|
17391
|
+
state: string;
|
|
17392
|
+
zip: string;
|
|
17393
|
+
street2?: string | undefined;
|
|
17394
|
+
country?: string | undefined;
|
|
17395
|
+
}>>;
|
|
17266
17396
|
} & {
|
|
17267
17397
|
sourceSpanIds: z.ZodArray<z.ZodString, "many">;
|
|
17268
17398
|
documentNodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -17276,6 +17406,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
17276
17406
|
sourceTextHash?: string | undefined;
|
|
17277
17407
|
pageStart?: number | undefined;
|
|
17278
17408
|
pageEnd?: number | undefined;
|
|
17409
|
+
address?: {
|
|
17410
|
+
street1: string;
|
|
17411
|
+
city: string;
|
|
17412
|
+
state: string;
|
|
17413
|
+
zip: string;
|
|
17414
|
+
street2?: string | undefined;
|
|
17415
|
+
country?: string | undefined;
|
|
17416
|
+
} | undefined;
|
|
17279
17417
|
naicNumber?: string | undefined;
|
|
17280
17418
|
amBestRating?: string | undefined;
|
|
17281
17419
|
amBestNumber?: string | undefined;
|
|
@@ -17288,6 +17426,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
17288
17426
|
sourceTextHash?: string | undefined;
|
|
17289
17427
|
pageStart?: number | undefined;
|
|
17290
17428
|
pageEnd?: number | undefined;
|
|
17429
|
+
address?: {
|
|
17430
|
+
street1: string;
|
|
17431
|
+
city: string;
|
|
17432
|
+
state: string;
|
|
17433
|
+
zip: string;
|
|
17434
|
+
street2?: string | undefined;
|
|
17435
|
+
country?: string | undefined;
|
|
17436
|
+
} | undefined;
|
|
17291
17437
|
naicNumber?: string | undefined;
|
|
17292
17438
|
amBestRating?: string | undefined;
|
|
17293
17439
|
amBestNumber?: string | undefined;
|
|
@@ -18905,6 +19051,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18905
19051
|
sourceTextHash?: string | undefined;
|
|
18906
19052
|
pageStart?: number | undefined;
|
|
18907
19053
|
pageEnd?: number | undefined;
|
|
19054
|
+
address?: {
|
|
19055
|
+
street1: string;
|
|
19056
|
+
city: string;
|
|
19057
|
+
state: string;
|
|
19058
|
+
zip: string;
|
|
19059
|
+
street2?: string | undefined;
|
|
19060
|
+
country?: string | undefined;
|
|
19061
|
+
} | undefined;
|
|
18908
19062
|
naicNumber?: string | undefined;
|
|
18909
19063
|
amBestRating?: string | undefined;
|
|
18910
19064
|
amBestNumber?: string | undefined;
|
|
@@ -20026,6 +20180,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
20026
20180
|
sourceTextHash?: string | undefined;
|
|
20027
20181
|
pageStart?: number | undefined;
|
|
20028
20182
|
pageEnd?: number | undefined;
|
|
20183
|
+
address?: {
|
|
20184
|
+
street1: string;
|
|
20185
|
+
city: string;
|
|
20186
|
+
state: string;
|
|
20187
|
+
zip: string;
|
|
20188
|
+
street2?: string | undefined;
|
|
20189
|
+
country?: string | undefined;
|
|
20190
|
+
} | undefined;
|
|
20029
20191
|
naicNumber?: string | undefined;
|
|
20030
20192
|
amBestRating?: string | undefined;
|
|
20031
20193
|
amBestNumber?: string | undefined;
|
|
@@ -23815,6 +23977,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23815
23977
|
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
23816
23978
|
admittedStatus: z.ZodOptional<z.ZodEnum<["admitted", "non_admitted", "surplus_lines"]>>;
|
|
23817
23979
|
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
23980
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
23981
|
+
street1: z.ZodString;
|
|
23982
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
23983
|
+
city: z.ZodString;
|
|
23984
|
+
state: z.ZodString;
|
|
23985
|
+
zip: z.ZodString;
|
|
23986
|
+
country: z.ZodOptional<z.ZodString>;
|
|
23987
|
+
}, "strip", z.ZodTypeAny, {
|
|
23988
|
+
street1: string;
|
|
23989
|
+
city: string;
|
|
23990
|
+
state: string;
|
|
23991
|
+
zip: string;
|
|
23992
|
+
street2?: string | undefined;
|
|
23993
|
+
country?: string | undefined;
|
|
23994
|
+
}, {
|
|
23995
|
+
street1: string;
|
|
23996
|
+
city: string;
|
|
23997
|
+
state: string;
|
|
23998
|
+
zip: string;
|
|
23999
|
+
street2?: string | undefined;
|
|
24000
|
+
country?: string | undefined;
|
|
24001
|
+
}>>;
|
|
23818
24002
|
} & {
|
|
23819
24003
|
sourceSpanIds: z.ZodArray<z.ZodString, "many">;
|
|
23820
24004
|
documentNodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -23828,6 +24012,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23828
24012
|
sourceTextHash?: string | undefined;
|
|
23829
24013
|
pageStart?: number | undefined;
|
|
23830
24014
|
pageEnd?: number | undefined;
|
|
24015
|
+
address?: {
|
|
24016
|
+
street1: string;
|
|
24017
|
+
city: string;
|
|
24018
|
+
state: string;
|
|
24019
|
+
zip: string;
|
|
24020
|
+
street2?: string | undefined;
|
|
24021
|
+
country?: string | undefined;
|
|
24022
|
+
} | undefined;
|
|
23831
24023
|
naicNumber?: string | undefined;
|
|
23832
24024
|
amBestRating?: string | undefined;
|
|
23833
24025
|
amBestNumber?: string | undefined;
|
|
@@ -23840,6 +24032,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23840
24032
|
sourceTextHash?: string | undefined;
|
|
23841
24033
|
pageStart?: number | undefined;
|
|
23842
24034
|
pageEnd?: number | undefined;
|
|
24035
|
+
address?: {
|
|
24036
|
+
street1: string;
|
|
24037
|
+
city: string;
|
|
24038
|
+
state: string;
|
|
24039
|
+
zip: string;
|
|
24040
|
+
street2?: string | undefined;
|
|
24041
|
+
country?: string | undefined;
|
|
24042
|
+
} | undefined;
|
|
23843
24043
|
naicNumber?: string | undefined;
|
|
23844
24044
|
amBestRating?: string | undefined;
|
|
23845
24045
|
amBestNumber?: string | undefined;
|
|
@@ -25452,6 +25652,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
25452
25652
|
sourceTextHash?: string | undefined;
|
|
25453
25653
|
pageStart?: number | undefined;
|
|
25454
25654
|
pageEnd?: number | undefined;
|
|
25655
|
+
address?: {
|
|
25656
|
+
street1: string;
|
|
25657
|
+
city: string;
|
|
25658
|
+
state: string;
|
|
25659
|
+
zip: string;
|
|
25660
|
+
street2?: string | undefined;
|
|
25661
|
+
country?: string | undefined;
|
|
25662
|
+
} | undefined;
|
|
25455
25663
|
naicNumber?: string | undefined;
|
|
25456
25664
|
amBestRating?: string | undefined;
|
|
25457
25665
|
amBestNumber?: string | undefined;
|
|
@@ -26606,6 +26814,14 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
26606
26814
|
sourceTextHash?: string | undefined;
|
|
26607
26815
|
pageStart?: number | undefined;
|
|
26608
26816
|
pageEnd?: number | undefined;
|
|
26817
|
+
address?: {
|
|
26818
|
+
street1: string;
|
|
26819
|
+
city: string;
|
|
26820
|
+
state: string;
|
|
26821
|
+
zip: string;
|
|
26822
|
+
street2?: string | undefined;
|
|
26823
|
+
country?: string | undefined;
|
|
26824
|
+
} | undefined;
|
|
26609
26825
|
naicNumber?: string | undefined;
|
|
26610
26826
|
amBestRating?: string | undefined;
|
|
26611
26827
|
amBestNumber?: string | undefined;
|
|
@@ -27530,6 +27746,7 @@ declare const OperationalCoverageTermSchema: z.ZodObject<{
|
|
|
27530
27746
|
type OperationalCoverageTerm = z.infer<typeof OperationalCoverageTermSchema>;
|
|
27531
27747
|
declare const OperationalCoverageLineSchema: z.ZodObject<{
|
|
27532
27748
|
name: z.ZodString;
|
|
27749
|
+
lineOfBusiness: z.ZodOptional<z.ZodEnum<["AAPPL", "AGLIA", "AGPP", "AGPR", "AIRC", "AIRPFB", "APKG", "APKGE", "APROD", "ARVP", "AUTO", "AUTOB", "AUTOP", "AVPKG", "BANDM", "BLANK", "BMISC", "BOAT", "BOP", "BOPGL", "BOPPR", "CAVN", "CEQFL", "CFIRE", "CFRM", "CGL", "COMAR", "COMR", "CONTR", "CPKGE", "CPMP", "CRIME", "DFIRE", "DISAB", "DO", "EDP", "EL", "EO", "EPLI", "EQ", "EQPFL", "EXLIA", "FIDTY", "FIDUC", "FINEA", "FLOOD", "GARAG", "GL", "GLASS", "HANG", "HBB", "HOME", "INBR", "INMAR", "INMRC", "INMRP", "JUDCL", "KIDRA", "LL", "MHOME", "MMAL", "Motorcycle", "MTRTK", "OLIB", "PHYS", "PKG", "PL", "PLMSC", "PPKGE", "PROP", "PROPC", "PUBOF", "RECV", "SCHPR", "SIGNS", "SMP", "SURE", "TRANS", "TRUCK", "UMBRC", "UMBRL", "UMBRP", "UN", "WCMA", "WIND", "WORK", "WORKP", "WORKV"]>>;
|
|
27533
27750
|
coverageCode: z.ZodOptional<z.ZodString>;
|
|
27534
27751
|
limit: z.ZodOptional<z.ZodString>;
|
|
27535
27752
|
deductible: z.ZodOptional<z.ZodString>;
|
|
@@ -27585,6 +27802,7 @@ declare const OperationalCoverageLineSchema: z.ZodObject<{
|
|
|
27585
27802
|
sectionRef?: string | undefined;
|
|
27586
27803
|
coverageCode?: string | undefined;
|
|
27587
27804
|
premium?: string | undefined;
|
|
27805
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
27588
27806
|
endorsementNumber?: string | undefined;
|
|
27589
27807
|
}, {
|
|
27590
27808
|
name: string;
|
|
@@ -27606,12 +27824,38 @@ declare const OperationalCoverageLineSchema: z.ZodObject<{
|
|
|
27606
27824
|
sourceNodeIds?: string[] | undefined;
|
|
27607
27825
|
}[] | undefined;
|
|
27608
27826
|
sourceNodeIds?: string[] | undefined;
|
|
27827
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
27609
27828
|
endorsementNumber?: string | undefined;
|
|
27610
27829
|
}>;
|
|
27611
27830
|
type OperationalCoverageLine = z.infer<typeof OperationalCoverageLineSchema>;
|
|
27612
27831
|
declare const OperationalPartySchema: z.ZodObject<{
|
|
27613
27832
|
role: z.ZodString;
|
|
27614
27833
|
name: z.ZodString;
|
|
27834
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
27835
|
+
street1: z.ZodOptional<z.ZodString>;
|
|
27836
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
27837
|
+
city: z.ZodOptional<z.ZodString>;
|
|
27838
|
+
state: z.ZodOptional<z.ZodString>;
|
|
27839
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
27840
|
+
country: z.ZodOptional<z.ZodString>;
|
|
27841
|
+
formatted: z.ZodOptional<z.ZodString>;
|
|
27842
|
+
}, "strip", z.ZodTypeAny, {
|
|
27843
|
+
street1?: string | undefined;
|
|
27844
|
+
street2?: string | undefined;
|
|
27845
|
+
city?: string | undefined;
|
|
27846
|
+
state?: string | undefined;
|
|
27847
|
+
zip?: string | undefined;
|
|
27848
|
+
country?: string | undefined;
|
|
27849
|
+
formatted?: string | undefined;
|
|
27850
|
+
}, {
|
|
27851
|
+
street1?: string | undefined;
|
|
27852
|
+
street2?: string | undefined;
|
|
27853
|
+
city?: string | undefined;
|
|
27854
|
+
state?: string | undefined;
|
|
27855
|
+
zip?: string | undefined;
|
|
27856
|
+
country?: string | undefined;
|
|
27857
|
+
formatted?: string | undefined;
|
|
27858
|
+
}>>;
|
|
27615
27859
|
sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27616
27860
|
sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27617
27861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27619,10 +27863,28 @@ declare const OperationalPartySchema: z.ZodObject<{
|
|
|
27619
27863
|
name: string;
|
|
27620
27864
|
role: string;
|
|
27621
27865
|
sourceNodeIds: string[];
|
|
27866
|
+
address?: {
|
|
27867
|
+
street1?: string | undefined;
|
|
27868
|
+
street2?: string | undefined;
|
|
27869
|
+
city?: string | undefined;
|
|
27870
|
+
state?: string | undefined;
|
|
27871
|
+
zip?: string | undefined;
|
|
27872
|
+
country?: string | undefined;
|
|
27873
|
+
formatted?: string | undefined;
|
|
27874
|
+
} | undefined;
|
|
27622
27875
|
}, {
|
|
27623
27876
|
name: string;
|
|
27624
27877
|
role: string;
|
|
27625
27878
|
sourceSpanIds?: string[] | undefined;
|
|
27879
|
+
address?: {
|
|
27880
|
+
street1?: string | undefined;
|
|
27881
|
+
street2?: string | undefined;
|
|
27882
|
+
city?: string | undefined;
|
|
27883
|
+
state?: string | undefined;
|
|
27884
|
+
zip?: string | undefined;
|
|
27885
|
+
country?: string | undefined;
|
|
27886
|
+
formatted?: string | undefined;
|
|
27887
|
+
} | undefined;
|
|
27626
27888
|
sourceNodeIds?: string[] | undefined;
|
|
27627
27889
|
}>;
|
|
27628
27890
|
type OperationalParty = z.infer<typeof OperationalPartySchema>;
|
|
@@ -27801,6 +28063,25 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27801
28063
|
normalizedValue?: string | undefined;
|
|
27802
28064
|
sourceNodeIds?: string[] | undefined;
|
|
27803
28065
|
}>>;
|
|
28066
|
+
operationsDescription: z.ZodOptional<z.ZodObject<{
|
|
28067
|
+
value: z.ZodString;
|
|
28068
|
+
normalizedValue: z.ZodOptional<z.ZodString>;
|
|
28069
|
+
confidence: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
|
|
28070
|
+
sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
28071
|
+
sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
28072
|
+
}, "strip", z.ZodTypeAny, {
|
|
28073
|
+
value: string;
|
|
28074
|
+
sourceSpanIds: string[];
|
|
28075
|
+
confidence: "low" | "medium" | "high";
|
|
28076
|
+
sourceNodeIds: string[];
|
|
28077
|
+
normalizedValue?: string | undefined;
|
|
28078
|
+
}, {
|
|
28079
|
+
value: string;
|
|
28080
|
+
sourceSpanIds?: string[] | undefined;
|
|
28081
|
+
confidence?: "low" | "medium" | "high" | undefined;
|
|
28082
|
+
normalizedValue?: string | undefined;
|
|
28083
|
+
sourceNodeIds?: string[] | undefined;
|
|
28084
|
+
}>>;
|
|
27804
28085
|
declarationFacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27805
28086
|
field: z.ZodEnum<["namedInsured", "mailingAddress", "dba", "entityType", "taxId", "additionalNamedInsured", "policyNumber", "insurer", "broker", "effectiveDate", "expirationDate", "premium", "other"]>;
|
|
27806
28087
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -27874,6 +28155,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27874
28155
|
}>, "many">>;
|
|
27875
28156
|
coverages: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27876
28157
|
name: z.ZodString;
|
|
28158
|
+
lineOfBusiness: z.ZodOptional<z.ZodEnum<["AAPPL", "AGLIA", "AGPP", "AGPR", "AIRC", "AIRPFB", "APKG", "APKGE", "APROD", "ARVP", "AUTO", "AUTOB", "AUTOP", "AVPKG", "BANDM", "BLANK", "BMISC", "BOAT", "BOP", "BOPGL", "BOPPR", "CAVN", "CEQFL", "CFIRE", "CFRM", "CGL", "COMAR", "COMR", "CONTR", "CPKGE", "CPMP", "CRIME", "DFIRE", "DISAB", "DO", "EDP", "EL", "EO", "EPLI", "EQ", "EQPFL", "EXLIA", "FIDTY", "FIDUC", "FINEA", "FLOOD", "GARAG", "GL", "GLASS", "HANG", "HBB", "HOME", "INBR", "INMAR", "INMRC", "INMRP", "JUDCL", "KIDRA", "LL", "MHOME", "MMAL", "Motorcycle", "MTRTK", "OLIB", "PHYS", "PKG", "PL", "PLMSC", "PPKGE", "PROP", "PROPC", "PUBOF", "RECV", "SCHPR", "SIGNS", "SMP", "SURE", "TRANS", "TRUCK", "UMBRC", "UMBRL", "UMBRP", "UN", "WCMA", "WIND", "WORK", "WORKP", "WORKV"]>>;
|
|
27877
28159
|
coverageCode: z.ZodOptional<z.ZodString>;
|
|
27878
28160
|
limit: z.ZodOptional<z.ZodString>;
|
|
27879
28161
|
deductible: z.ZodOptional<z.ZodString>;
|
|
@@ -27929,6 +28211,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27929
28211
|
sectionRef?: string | undefined;
|
|
27930
28212
|
coverageCode?: string | undefined;
|
|
27931
28213
|
premium?: string | undefined;
|
|
28214
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
27932
28215
|
endorsementNumber?: string | undefined;
|
|
27933
28216
|
}, {
|
|
27934
28217
|
name: string;
|
|
@@ -27950,11 +28233,37 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27950
28233
|
sourceNodeIds?: string[] | undefined;
|
|
27951
28234
|
}[] | undefined;
|
|
27952
28235
|
sourceNodeIds?: string[] | undefined;
|
|
28236
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
27953
28237
|
endorsementNumber?: string | undefined;
|
|
27954
28238
|
}>, "many">>;
|
|
27955
28239
|
parties: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27956
28240
|
role: z.ZodString;
|
|
27957
28241
|
name: z.ZodString;
|
|
28242
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
28243
|
+
street1: z.ZodOptional<z.ZodString>;
|
|
28244
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
28245
|
+
city: z.ZodOptional<z.ZodString>;
|
|
28246
|
+
state: z.ZodOptional<z.ZodString>;
|
|
28247
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
28248
|
+
country: z.ZodOptional<z.ZodString>;
|
|
28249
|
+
formatted: z.ZodOptional<z.ZodString>;
|
|
28250
|
+
}, "strip", z.ZodTypeAny, {
|
|
28251
|
+
street1?: string | undefined;
|
|
28252
|
+
street2?: string | undefined;
|
|
28253
|
+
city?: string | undefined;
|
|
28254
|
+
state?: string | undefined;
|
|
28255
|
+
zip?: string | undefined;
|
|
28256
|
+
country?: string | undefined;
|
|
28257
|
+
formatted?: string | undefined;
|
|
28258
|
+
}, {
|
|
28259
|
+
street1?: string | undefined;
|
|
28260
|
+
street2?: string | undefined;
|
|
28261
|
+
city?: string | undefined;
|
|
28262
|
+
state?: string | undefined;
|
|
28263
|
+
zip?: string | undefined;
|
|
28264
|
+
country?: string | undefined;
|
|
28265
|
+
formatted?: string | undefined;
|
|
28266
|
+
}>>;
|
|
27958
28267
|
sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27959
28268
|
sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27960
28269
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27962,10 +28271,28 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27962
28271
|
name: string;
|
|
27963
28272
|
role: string;
|
|
27964
28273
|
sourceNodeIds: string[];
|
|
28274
|
+
address?: {
|
|
28275
|
+
street1?: string | undefined;
|
|
28276
|
+
street2?: string | undefined;
|
|
28277
|
+
city?: string | undefined;
|
|
28278
|
+
state?: string | undefined;
|
|
28279
|
+
zip?: string | undefined;
|
|
28280
|
+
country?: string | undefined;
|
|
28281
|
+
formatted?: string | undefined;
|
|
28282
|
+
} | undefined;
|
|
27965
28283
|
}, {
|
|
27966
28284
|
name: string;
|
|
27967
28285
|
role: string;
|
|
27968
28286
|
sourceSpanIds?: string[] | undefined;
|
|
28287
|
+
address?: {
|
|
28288
|
+
street1?: string | undefined;
|
|
28289
|
+
street2?: string | undefined;
|
|
28290
|
+
city?: string | undefined;
|
|
28291
|
+
state?: string | undefined;
|
|
28292
|
+
zip?: string | undefined;
|
|
28293
|
+
country?: string | undefined;
|
|
28294
|
+
formatted?: string | undefined;
|
|
28295
|
+
} | undefined;
|
|
27969
28296
|
sourceNodeIds?: string[] | undefined;
|
|
27970
28297
|
}>, "many">>;
|
|
27971
28298
|
endorsementSupport: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -28012,6 +28339,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28012
28339
|
sectionRef?: string | undefined;
|
|
28013
28340
|
coverageCode?: string | undefined;
|
|
28014
28341
|
premium?: string | undefined;
|
|
28342
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
28015
28343
|
endorsementNumber?: string | undefined;
|
|
28016
28344
|
}[];
|
|
28017
28345
|
linesOfBusiness: ("AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV")[];
|
|
@@ -28041,6 +28369,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28041
28369
|
name: string;
|
|
28042
28370
|
role: string;
|
|
28043
28371
|
sourceNodeIds: string[];
|
|
28372
|
+
address?: {
|
|
28373
|
+
street1?: string | undefined;
|
|
28374
|
+
street2?: string | undefined;
|
|
28375
|
+
city?: string | undefined;
|
|
28376
|
+
state?: string | undefined;
|
|
28377
|
+
zip?: string | undefined;
|
|
28378
|
+
country?: string | undefined;
|
|
28379
|
+
formatted?: string | undefined;
|
|
28380
|
+
} | undefined;
|
|
28044
28381
|
}[];
|
|
28045
28382
|
endorsementSupport: {
|
|
28046
28383
|
status: "supported" | "excluded" | "requires_review";
|
|
@@ -28106,6 +28443,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28106
28443
|
sourceNodeIds: string[];
|
|
28107
28444
|
normalizedValue?: string | undefined;
|
|
28108
28445
|
} | undefined;
|
|
28446
|
+
operationsDescription?: {
|
|
28447
|
+
value: string;
|
|
28448
|
+
sourceSpanIds: string[];
|
|
28449
|
+
confidence: "low" | "medium" | "high";
|
|
28450
|
+
sourceNodeIds: string[];
|
|
28451
|
+
normalizedValue?: string | undefined;
|
|
28452
|
+
} | undefined;
|
|
28109
28453
|
}, {
|
|
28110
28454
|
sourceSpanIds?: string[] | undefined;
|
|
28111
28455
|
retroactiveDate?: {
|
|
@@ -28149,6 +28493,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28149
28493
|
sourceNodeIds?: string[] | undefined;
|
|
28150
28494
|
}[] | undefined;
|
|
28151
28495
|
sourceNodeIds?: string[] | undefined;
|
|
28496
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
28152
28497
|
endorsementNumber?: string | undefined;
|
|
28153
28498
|
}[] | undefined;
|
|
28154
28499
|
policyNumber?: {
|
|
@@ -28189,6 +28534,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28189
28534
|
sourceNodeIds?: string[] | undefined;
|
|
28190
28535
|
} | undefined;
|
|
28191
28536
|
documentType?: "policy" | "quote" | undefined;
|
|
28537
|
+
operationsDescription?: {
|
|
28538
|
+
value: string;
|
|
28539
|
+
sourceSpanIds?: string[] | undefined;
|
|
28540
|
+
confidence?: "low" | "medium" | "high" | undefined;
|
|
28541
|
+
normalizedValue?: string | undefined;
|
|
28542
|
+
sourceNodeIds?: string[] | undefined;
|
|
28543
|
+
} | undefined;
|
|
28192
28544
|
declarationFacts?: {
|
|
28193
28545
|
value: string;
|
|
28194
28546
|
field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
|
|
@@ -28212,6 +28564,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28212
28564
|
name: string;
|
|
28213
28565
|
role: string;
|
|
28214
28566
|
sourceSpanIds?: string[] | undefined;
|
|
28567
|
+
address?: {
|
|
28568
|
+
street1?: string | undefined;
|
|
28569
|
+
street2?: string | undefined;
|
|
28570
|
+
city?: string | undefined;
|
|
28571
|
+
state?: string | undefined;
|
|
28572
|
+
zip?: string | undefined;
|
|
28573
|
+
country?: string | undefined;
|
|
28574
|
+
formatted?: string | undefined;
|
|
28575
|
+
} | undefined;
|
|
28215
28576
|
sourceNodeIds?: string[] | undefined;
|
|
28216
28577
|
}[] | undefined;
|
|
28217
28578
|
endorsementSupport?: {
|
|
@@ -28244,6 +28605,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28244
28605
|
sectionRef?: string | undefined;
|
|
28245
28606
|
coverageCode?: string | undefined;
|
|
28246
28607
|
premium?: string | undefined;
|
|
28608
|
+
lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
|
|
28247
28609
|
endorsementNumber?: string | undefined;
|
|
28248
28610
|
}[];
|
|
28249
28611
|
linesOfBusiness: ("AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV")[];
|
|
@@ -28273,6 +28635,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28273
28635
|
name: string;
|
|
28274
28636
|
role: string;
|
|
28275
28637
|
sourceNodeIds: string[];
|
|
28638
|
+
address?: {
|
|
28639
|
+
street1?: string | undefined;
|
|
28640
|
+
street2?: string | undefined;
|
|
28641
|
+
city?: string | undefined;
|
|
28642
|
+
state?: string | undefined;
|
|
28643
|
+
zip?: string | undefined;
|
|
28644
|
+
country?: string | undefined;
|
|
28645
|
+
formatted?: string | undefined;
|
|
28646
|
+
} | undefined;
|
|
28276
28647
|
}[];
|
|
28277
28648
|
endorsementSupport: {
|
|
28278
28649
|
status: "supported" | "excluded" | "requires_review";
|
|
@@ -28338,6 +28709,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28338
28709
|
sourceNodeIds: string[];
|
|
28339
28710
|
normalizedValue?: string | undefined;
|
|
28340
28711
|
} | undefined;
|
|
28712
|
+
operationsDescription?: {
|
|
28713
|
+
value: string;
|
|
28714
|
+
sourceSpanIds: string[];
|
|
28715
|
+
confidence: "low" | "medium" | "high";
|
|
28716
|
+
sourceNodeIds: string[];
|
|
28717
|
+
normalizedValue?: string | undefined;
|
|
28718
|
+
} | undefined;
|
|
28341
28719
|
}, unknown>;
|
|
28342
28720
|
type PolicyOperationalProfile = z.infer<typeof PolicyOperationalProfileSchema>;
|
|
28343
28721
|
|