@claritylabs/cl-sdk 4.2.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 +2 -0
- package/dist/application.js.map +1 -1
- package/dist/application.mjs +2 -0
- package/dist/application.mjs.map +1 -1
- package/dist/{index-C9XfOdmx.d.mts → index-DhA-5jZy.d.mts} +369 -0
- package/dist/{index-C9XfOdmx.d.ts → index-DhA-5jZy.d.ts} +369 -0
- package/dist/index.d.mts +40 -2
- package/dist/index.d.ts +40 -2
- package/dist/index.js +128 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -23
- 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 +2 -0
- package/dist/storage-sqlite.js.map +1 -1
- package/dist/storage-sqlite.mjs +2 -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;
|
|
@@ -27615,6 +27831,31 @@ type OperationalCoverageLine = z.infer<typeof OperationalCoverageLineSchema>;
|
|
|
27615
27831
|
declare const OperationalPartySchema: z.ZodObject<{
|
|
27616
27832
|
role: z.ZodString;
|
|
27617
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
|
+
}>>;
|
|
27618
27859
|
sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27619
27860
|
sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27620
27861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27622,10 +27863,28 @@ declare const OperationalPartySchema: z.ZodObject<{
|
|
|
27622
27863
|
name: string;
|
|
27623
27864
|
role: string;
|
|
27624
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;
|
|
27625
27875
|
}, {
|
|
27626
27876
|
name: string;
|
|
27627
27877
|
role: string;
|
|
27628
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;
|
|
27629
27888
|
sourceNodeIds?: string[] | undefined;
|
|
27630
27889
|
}>;
|
|
27631
27890
|
type OperationalParty = z.infer<typeof OperationalPartySchema>;
|
|
@@ -27804,6 +28063,25 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27804
28063
|
normalizedValue?: string | undefined;
|
|
27805
28064
|
sourceNodeIds?: string[] | undefined;
|
|
27806
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
|
+
}>>;
|
|
27807
28085
|
declarationFacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27808
28086
|
field: z.ZodEnum<["namedInsured", "mailingAddress", "dba", "entityType", "taxId", "additionalNamedInsured", "policyNumber", "insurer", "broker", "effectiveDate", "expirationDate", "premium", "other"]>;
|
|
27809
28087
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -27961,6 +28239,31 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27961
28239
|
parties: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
27962
28240
|
role: z.ZodString;
|
|
27963
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
|
+
}>>;
|
|
27964
28267
|
sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27965
28268
|
sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
27966
28269
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -27968,10 +28271,28 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
27968
28271
|
name: string;
|
|
27969
28272
|
role: string;
|
|
27970
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;
|
|
27971
28283
|
}, {
|
|
27972
28284
|
name: string;
|
|
27973
28285
|
role: string;
|
|
27974
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;
|
|
27975
28296
|
sourceNodeIds?: string[] | undefined;
|
|
27976
28297
|
}>, "many">>;
|
|
27977
28298
|
endorsementSupport: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
@@ -28048,6 +28369,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28048
28369
|
name: string;
|
|
28049
28370
|
role: string;
|
|
28050
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;
|
|
28051
28381
|
}[];
|
|
28052
28382
|
endorsementSupport: {
|
|
28053
28383
|
status: "supported" | "excluded" | "requires_review";
|
|
@@ -28113,6 +28443,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28113
28443
|
sourceNodeIds: string[];
|
|
28114
28444
|
normalizedValue?: string | undefined;
|
|
28115
28445
|
} | undefined;
|
|
28446
|
+
operationsDescription?: {
|
|
28447
|
+
value: string;
|
|
28448
|
+
sourceSpanIds: string[];
|
|
28449
|
+
confidence: "low" | "medium" | "high";
|
|
28450
|
+
sourceNodeIds: string[];
|
|
28451
|
+
normalizedValue?: string | undefined;
|
|
28452
|
+
} | undefined;
|
|
28116
28453
|
}, {
|
|
28117
28454
|
sourceSpanIds?: string[] | undefined;
|
|
28118
28455
|
retroactiveDate?: {
|
|
@@ -28197,6 +28534,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28197
28534
|
sourceNodeIds?: string[] | undefined;
|
|
28198
28535
|
} | undefined;
|
|
28199
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;
|
|
28200
28544
|
declarationFacts?: {
|
|
28201
28545
|
value: string;
|
|
28202
28546
|
field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
|
|
@@ -28220,6 +28564,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28220
28564
|
name: string;
|
|
28221
28565
|
role: string;
|
|
28222
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;
|
|
28223
28576
|
sourceNodeIds?: string[] | undefined;
|
|
28224
28577
|
}[] | undefined;
|
|
28225
28578
|
endorsementSupport?: {
|
|
@@ -28282,6 +28635,15 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28282
28635
|
name: string;
|
|
28283
28636
|
role: string;
|
|
28284
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;
|
|
28285
28647
|
}[];
|
|
28286
28648
|
endorsementSupport: {
|
|
28287
28649
|
status: "supported" | "excluded" | "requires_review";
|
|
@@ -28347,6 +28709,13 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
28347
28709
|
sourceNodeIds: string[];
|
|
28348
28710
|
normalizedValue?: string | undefined;
|
|
28349
28711
|
} | undefined;
|
|
28712
|
+
operationsDescription?: {
|
|
28713
|
+
value: string;
|
|
28714
|
+
sourceSpanIds: string[];
|
|
28715
|
+
confidence: "low" | "medium" | "high";
|
|
28716
|
+
sourceNodeIds: string[];
|
|
28717
|
+
normalizedValue?: string | undefined;
|
|
28718
|
+
} | undefined;
|
|
28350
28719
|
}, unknown>;
|
|
28351
28720
|
type PolicyOperationalProfile = z.infer<typeof PolicyOperationalProfileSchema>;
|
|
28352
28721
|
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as LogFn, M as ModelTaskKind, a as ModelBudgetResolution, b as ModelCallTrace, G as GenerateObject, T as TokenUsage, O as OperationalCoverageLine, S as SourceSpanLocation, c as SourceSpan, D as DocumentSourceNode, d as SourceKind, e as SourceSpanUnit, f as SourceSpanTableLocation, g as SourceChunk, h as SourceSpanBBox, U as UnifiedQualityReport, B as BaseQualityIssue, Q as QualityGateStatus, P as PdfInput, I as InsuranceDocument, i as DocumentChunk, j as PolicyOperationalProfile, k as PerformanceReport, l as QualityGateMode, m as ModelCapabilities, n as ModelBudgetConstraint, A as AgentContext, o as GenerateText, p as DocumentStore, q as MemoryStore, r as Platform } from './index-
|
|
2
|
-
export { s as AcroFormMapping, t as AcroFormMappingSchema, u as AnswerParsingResult, v as AnswerParsingResultSchema, w as ApplicationClassifyResult, x as ApplicationClassifyResultSchema, y as ApplicationContextProposal, z as ApplicationContextProposalSchema, C as ApplicationEmailReviewSchema, E as ApplicationField, F as ApplicationFieldSchema, H as ApplicationListFilters, J as ApplicationNextQuestions, K as ApplicationPacket, N as ApplicationPacketAnswer, R as ApplicationPacketAnswerSchema, V as ApplicationPacketSchema, W as ApplicationPipelineConfig, X as ApplicationQualityArtifactSchema, Y as ApplicationQualityIssueSchema, Z as ApplicationQualityReportSchema, _ as ApplicationQualityRoundSchema, $ as ApplicationQuestionCondition, a0 as ApplicationQuestionConditionSchema, a1 as ApplicationQuestionGraph, a2 as ApplicationQuestionGraphSchema, a3 as ApplicationQuestionNode, a4 as ApplicationQuestionNodeSchema, a5 as ApplicationRepeat, a6 as ApplicationRepeatSchema, a7 as ApplicationState, a8 as ApplicationStateSchema, a9 as ApplicationStore, aa as ApplicationTemplate, ab as ApplicationTemplateListFilters, ac as ApplicationTemplateSchema, ad as ApplicationTemplateStore, ae as AutoFillMatch, af as AutoFillMatchSchema, ag as AutoFillResult, ah as AutoFillResultSchema, ai as AuxiliaryFact, aj as AuxiliaryFactSchema, ak as BackfillProvider, al as BuildApplicationPacketInput, am as BuildApplicationPacketResult, an as ChunkFilter, ao as CommunicationIntent, ap as CommunicationIntentSchema, aq as ContextProposalResult, ar as ConversationTurn, as as ConvertPdfToImagesFn, at as CoveredReason, au as CoveredReasonSchema, av as CreateApplicationRunInput, aw as Definition, ax as DefinitionSchema, ay as DocumentAgentGuidance, az as DocumentAgentGuidanceSchema, aA as DocumentFilters, aB as DocumentMetadata, aC as DocumentMetadataSchema, aD as DocumentNode, aE as DocumentNodeSchema, aF as DocumentPageMapEntry, aG as DocumentPageMapEntrySchema, aH as DocumentSourceNodeKind, aI as DocumentSourceNodeKindSchema, aJ as DocumentSourceNodeSchema, aK as DocumentTableOfContentsEntry, aL as DocumentTableOfContentsEntrySchema, aM as EmbedText, aN as FieldExtractionResult, aO as FieldExtractionResultSchema, aP as FieldType, aQ as FieldTypeSchema, aR as FlatPdfPlacement, aS as FlatPdfPlacementSchema, aT as InsuranceDocumentSchema, aU as LookupFill, aV as LookupFillResult, aW as LookupFillResultSchema, aX as LookupFillSchema, aY as LookupRequest, aZ as LookupRequestSchema, a_ as ModelCallReport, a$ as OperationalAddress, b0 as OperationalAddressSchema, b1 as OperationalCoverageLineSchema, b2 as OperationalCoverageTerm, b3 as OperationalCoverageTermSchema, b4 as OperationalDeclarationFact, b5 as OperationalDeclarationFactSchema, b6 as OperationalEndorsementSupport, b7 as OperationalEndorsementSupportSchema, b8 as OperationalParty, b9 as OperationalPartySchema, ba as PLATFORM_CONFIGS, bb as ParsedAnswer, bc as ParsedAnswerSchema, bd as PlatformConfig, be as PlatformSchema, bf as PolicyDocument, bg as PolicyDocumentSchema, bh as PolicyOperationalProfileSchema, bi as PremiumLine, bj as PremiumLineSchema, bk as PriorAnswer, bl as ProcessApplicationInput, bm as ProcessApplicationResult, bn as ProcessReplyInput, bo as ProcessReplyResult, bp as QuestionBatchResult, bq as QuestionBatchResultSchema, br as QuoteDocument, bs as QuoteDocumentSchema, bt as ReplyIntent, bu as ReplyIntentSchema, bv as ResolveModelBudgetParams, bw as Section, bx as SectionSchema, by as SourceBackedValue, bz as SourceBackedValueSchema, bA as SourceChunkSchema, bB as SourceKindSchema, bC as SourceSpanBBoxSchema, bD as SourceSpanKind, bE as SourceSpanKindSchema, bF as SourceSpanLocationSchema, bG as SourceSpanRef, bH as SourceSpanRefSchema, bI as SourceSpanSchema, bJ as SourceSpanTableLocationSchema, bK as SourceSpanUnitSchema, bL as Subjectivity, bM as SubjectivitySchema, bN as Subsection, bO as SubsectionSchema, bP as UnderwritingCondition, bQ as UnderwritingConditionSchema, bR as applyApplicationAnswers, bS as buildApplicationPacket, bT as buildQuestionGraphFromFields, bU as createApplicationPipeline, bV as createApplicationRun, bW as extractQuestionGraphFromFields, bX as flattenQuestionGraph, bY as getActiveApplicationFields, bZ as getNextApplicationQuestions, b_ as normalizeApplicationQuestionGraph, b$ as planNextApplicationQuestions, c0 as proposeContextWrites, c1 as resolveModelBudget, c2 as validateApplicationPacket } from './index-
|
|
1
|
+
import { L as LogFn, M as ModelTaskKind, a as ModelBudgetResolution, b as ModelCallTrace, G as GenerateObject, T as TokenUsage, O as OperationalCoverageLine, S as SourceSpanLocation, c as SourceSpan, D as DocumentSourceNode, d as SourceKind, e as SourceSpanUnit, f as SourceSpanTableLocation, g as SourceChunk, h as SourceSpanBBox, U as UnifiedQualityReport, B as BaseQualityIssue, Q as QualityGateStatus, P as PdfInput, I as InsuranceDocument, i as DocumentChunk, j as PolicyOperationalProfile, k as PerformanceReport, l as QualityGateMode, m as ModelCapabilities, n as ModelBudgetConstraint, A as AgentContext, o as GenerateText, p as DocumentStore, q as MemoryStore, r as Platform } from './index-DhA-5jZy.mjs';
|
|
2
|
+
export { s as AcroFormMapping, t as AcroFormMappingSchema, u as AnswerParsingResult, v as AnswerParsingResultSchema, w as ApplicationClassifyResult, x as ApplicationClassifyResultSchema, y as ApplicationContextProposal, z as ApplicationContextProposalSchema, C as ApplicationEmailReviewSchema, E as ApplicationField, F as ApplicationFieldSchema, H as ApplicationListFilters, J as ApplicationNextQuestions, K as ApplicationPacket, N as ApplicationPacketAnswer, R as ApplicationPacketAnswerSchema, V as ApplicationPacketSchema, W as ApplicationPipelineConfig, X as ApplicationQualityArtifactSchema, Y as ApplicationQualityIssueSchema, Z as ApplicationQualityReportSchema, _ as ApplicationQualityRoundSchema, $ as ApplicationQuestionCondition, a0 as ApplicationQuestionConditionSchema, a1 as ApplicationQuestionGraph, a2 as ApplicationQuestionGraphSchema, a3 as ApplicationQuestionNode, a4 as ApplicationQuestionNodeSchema, a5 as ApplicationRepeat, a6 as ApplicationRepeatSchema, a7 as ApplicationState, a8 as ApplicationStateSchema, a9 as ApplicationStore, aa as ApplicationTemplate, ab as ApplicationTemplateListFilters, ac as ApplicationTemplateSchema, ad as ApplicationTemplateStore, ae as AutoFillMatch, af as AutoFillMatchSchema, ag as AutoFillResult, ah as AutoFillResultSchema, ai as AuxiliaryFact, aj as AuxiliaryFactSchema, ak as BackfillProvider, al as BuildApplicationPacketInput, am as BuildApplicationPacketResult, an as ChunkFilter, ao as CommunicationIntent, ap as CommunicationIntentSchema, aq as ContextProposalResult, ar as ConversationTurn, as as ConvertPdfToImagesFn, at as CoveredReason, au as CoveredReasonSchema, av as CreateApplicationRunInput, aw as Definition, ax as DefinitionSchema, ay as DocumentAgentGuidance, az as DocumentAgentGuidanceSchema, aA as DocumentFilters, aB as DocumentMetadata, aC as DocumentMetadataSchema, aD as DocumentNode, aE as DocumentNodeSchema, aF as DocumentPageMapEntry, aG as DocumentPageMapEntrySchema, aH as DocumentSourceNodeKind, aI as DocumentSourceNodeKindSchema, aJ as DocumentSourceNodeSchema, aK as DocumentTableOfContentsEntry, aL as DocumentTableOfContentsEntrySchema, aM as EmbedText, aN as FieldExtractionResult, aO as FieldExtractionResultSchema, aP as FieldType, aQ as FieldTypeSchema, aR as FlatPdfPlacement, aS as FlatPdfPlacementSchema, aT as InsuranceDocumentSchema, aU as LookupFill, aV as LookupFillResult, aW as LookupFillResultSchema, aX as LookupFillSchema, aY as LookupRequest, aZ as LookupRequestSchema, a_ as ModelCallReport, a$ as OperationalAddress, b0 as OperationalAddressSchema, b1 as OperationalCoverageLineSchema, b2 as OperationalCoverageTerm, b3 as OperationalCoverageTermSchema, b4 as OperationalDeclarationFact, b5 as OperationalDeclarationFactSchema, b6 as OperationalEndorsementSupport, b7 as OperationalEndorsementSupportSchema, b8 as OperationalParty, b9 as OperationalPartySchema, ba as PLATFORM_CONFIGS, bb as ParsedAnswer, bc as ParsedAnswerSchema, bd as PlatformConfig, be as PlatformSchema, bf as PolicyDocument, bg as PolicyDocumentSchema, bh as PolicyOperationalProfileSchema, bi as PremiumLine, bj as PremiumLineSchema, bk as PriorAnswer, bl as ProcessApplicationInput, bm as ProcessApplicationResult, bn as ProcessReplyInput, bo as ProcessReplyResult, bp as QuestionBatchResult, bq as QuestionBatchResultSchema, br as QuoteDocument, bs as QuoteDocumentSchema, bt as ReplyIntent, bu as ReplyIntentSchema, bv as ResolveModelBudgetParams, bw as Section, bx as SectionSchema, by as SourceBackedValue, bz as SourceBackedValueSchema, bA as SourceChunkSchema, bB as SourceKindSchema, bC as SourceSpanBBoxSchema, bD as SourceSpanKind, bE as SourceSpanKindSchema, bF as SourceSpanLocationSchema, bG as SourceSpanRef, bH as SourceSpanRefSchema, bI as SourceSpanSchema, bJ as SourceSpanTableLocationSchema, bK as SourceSpanUnitSchema, bL as Subjectivity, bM as SubjectivitySchema, bN as Subsection, bO as SubsectionSchema, bP as UnderwritingCondition, bQ as UnderwritingConditionSchema, bR as applyApplicationAnswers, bS as buildApplicationPacket, bT as buildQuestionGraphFromFields, bU as createApplicationPipeline, bV as createApplicationRun, bW as extractQuestionGraphFromFields, bX as flattenQuestionGraph, bY as getActiveApplicationFields, bZ as getNextApplicationQuestions, b_ as normalizeApplicationQuestionGraph, b$ as planNextApplicationQuestions, c0 as proposeContextWrites, c1 as resolveModelBudget, c2 as validateApplicationPacket } from './index-DhA-5jZy.mjs';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { ZodTypeAny, z, ZodSchema } from 'zod';
|
|
5
5
|
import { PDFDocument } from 'pdf-lib';
|
|
@@ -1080,6 +1080,28 @@ declare const InsurerInfoSchema: z.ZodObject<{
|
|
|
1080
1080
|
amBestNumber: z.ZodOptional<z.ZodString>;
|
|
1081
1081
|
admittedStatus: z.ZodOptional<z.ZodEnum<["admitted", "non_admitted", "surplus_lines"]>>;
|
|
1082
1082
|
stateOfDomicile: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
1084
|
+
street1: z.ZodString;
|
|
1085
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
city: z.ZodString;
|
|
1087
|
+
state: z.ZodString;
|
|
1088
|
+
zip: z.ZodString;
|
|
1089
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1090
|
+
}, "strip", z.ZodTypeAny, {
|
|
1091
|
+
street1: string;
|
|
1092
|
+
city: string;
|
|
1093
|
+
state: string;
|
|
1094
|
+
zip: string;
|
|
1095
|
+
street2?: string | undefined;
|
|
1096
|
+
country?: string | undefined;
|
|
1097
|
+
}, {
|
|
1098
|
+
street1: string;
|
|
1099
|
+
city: string;
|
|
1100
|
+
state: string;
|
|
1101
|
+
zip: string;
|
|
1102
|
+
street2?: string | undefined;
|
|
1103
|
+
country?: string | undefined;
|
|
1104
|
+
}>>;
|
|
1083
1105
|
} & {
|
|
1084
1106
|
sourceSpanIds: z.ZodArray<z.ZodString, "many">;
|
|
1085
1107
|
documentNodeId: z.ZodOptional<z.ZodString>;
|
|
@@ -1093,6 +1115,14 @@ declare const InsurerInfoSchema: z.ZodObject<{
|
|
|
1093
1115
|
sourceTextHash?: string | undefined;
|
|
1094
1116
|
pageStart?: number | undefined;
|
|
1095
1117
|
pageEnd?: number | undefined;
|
|
1118
|
+
address?: {
|
|
1119
|
+
street1: string;
|
|
1120
|
+
city: string;
|
|
1121
|
+
state: string;
|
|
1122
|
+
zip: string;
|
|
1123
|
+
street2?: string | undefined;
|
|
1124
|
+
country?: string | undefined;
|
|
1125
|
+
} | undefined;
|
|
1096
1126
|
naicNumber?: string | undefined;
|
|
1097
1127
|
amBestRating?: string | undefined;
|
|
1098
1128
|
amBestNumber?: string | undefined;
|
|
@@ -1105,6 +1135,14 @@ declare const InsurerInfoSchema: z.ZodObject<{
|
|
|
1105
1135
|
sourceTextHash?: string | undefined;
|
|
1106
1136
|
pageStart?: number | undefined;
|
|
1107
1137
|
pageEnd?: number | undefined;
|
|
1138
|
+
address?: {
|
|
1139
|
+
street1: string;
|
|
1140
|
+
city: string;
|
|
1141
|
+
state: string;
|
|
1142
|
+
zip: string;
|
|
1143
|
+
street2?: string | undefined;
|
|
1144
|
+
country?: string | undefined;
|
|
1145
|
+
} | undefined;
|
|
1108
1146
|
naicNumber?: string | undefined;
|
|
1109
1147
|
amBestRating?: string | undefined;
|
|
1110
1148
|
amBestNumber?: string | undefined;
|