@claritylabs/cl-sdk 1.3.6 → 1.3.8
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 +3 -3
- package/dist/index.d.mts +185 -47
- package/dist/index.d.ts +185 -47
- package/dist/index.js +569 -55
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +567 -55
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.d.mts +89 -20
- package/dist/storage-sqlite.d.ts +89 -20
- package/dist/storage-sqlite.js +33 -2
- package/dist/storage-sqlite.js.map +1 -1
- package/dist/storage-sqlite.mjs +33 -2
- package/dist/storage-sqlite.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -616,6 +616,8 @@ declare const CoverageSchema: z.ZodObject<{
|
|
|
616
616
|
deductible: z.ZodOptional<z.ZodString>;
|
|
617
617
|
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
618
618
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
619
|
+
trigger: z.ZodOptional<z.ZodEnum<["occurrence", "claims_made", "accident"]>>;
|
|
620
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
619
621
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
620
622
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
621
623
|
sectionRef: z.ZodOptional<z.ZodString>;
|
|
@@ -633,6 +635,8 @@ declare const CoverageSchema: z.ZodObject<{
|
|
|
633
635
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
634
636
|
deductibleAmount?: number | undefined;
|
|
635
637
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
638
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
639
|
+
retroactiveDate?: string | undefined;
|
|
636
640
|
pageNumber?: number | undefined;
|
|
637
641
|
sectionRef?: string | undefined;
|
|
638
642
|
originalContent?: string | undefined;
|
|
@@ -649,6 +653,8 @@ declare const CoverageSchema: z.ZodObject<{
|
|
|
649
653
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
650
654
|
deductibleAmount?: number | undefined;
|
|
651
655
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
656
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
657
|
+
retroactiveDate?: string | undefined;
|
|
652
658
|
pageNumber?: number | undefined;
|
|
653
659
|
sectionRef?: string | undefined;
|
|
654
660
|
originalContent?: string | undefined;
|
|
@@ -696,6 +702,8 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
|
|
|
696
702
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
697
703
|
deductibleAmount?: number | undefined;
|
|
698
704
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
705
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
706
|
+
retroactiveDate?: string | undefined;
|
|
699
707
|
pageNumber?: number | undefined;
|
|
700
708
|
sectionRef?: string | undefined;
|
|
701
709
|
originalContent?: string | undefined;
|
|
@@ -710,8 +718,6 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
|
|
|
710
718
|
coinsurance?: string | undefined;
|
|
711
719
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
712
720
|
territory?: string | undefined;
|
|
713
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
714
|
-
retroactiveDate?: string | undefined;
|
|
715
721
|
premium?: string | undefined;
|
|
716
722
|
}, {
|
|
717
723
|
name: string;
|
|
@@ -724,6 +730,8 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
|
|
|
724
730
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
725
731
|
deductibleAmount?: number | undefined;
|
|
726
732
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
733
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
734
|
+
retroactiveDate?: string | undefined;
|
|
727
735
|
pageNumber?: number | undefined;
|
|
728
736
|
sectionRef?: string | undefined;
|
|
729
737
|
originalContent?: string | undefined;
|
|
@@ -738,8 +746,6 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
|
|
|
738
746
|
coinsurance?: string | undefined;
|
|
739
747
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
740
748
|
territory?: string | undefined;
|
|
741
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
742
|
-
retroactiveDate?: string | undefined;
|
|
743
749
|
premium?: string | undefined;
|
|
744
750
|
}>;
|
|
745
751
|
type EnrichedCoverage = z.infer<typeof EnrichedCoverageSchema>;
|
|
@@ -6580,6 +6586,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6580
6586
|
deductible: z.ZodOptional<z.ZodString>;
|
|
6581
6587
|
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
6582
6588
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
6589
|
+
trigger: z.ZodOptional<z.ZodEnum<["occurrence", "claims_made", "accident"]>>;
|
|
6590
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
6583
6591
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
6584
6592
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
6585
6593
|
sectionRef: z.ZodOptional<z.ZodString>;
|
|
@@ -6597,6 +6605,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6597
6605
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6598
6606
|
deductibleAmount?: number | undefined;
|
|
6599
6607
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6608
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6609
|
+
retroactiveDate?: string | undefined;
|
|
6600
6610
|
pageNumber?: number | undefined;
|
|
6601
6611
|
sectionRef?: string | undefined;
|
|
6602
6612
|
originalContent?: string | undefined;
|
|
@@ -6613,6 +6623,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6613
6623
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6614
6624
|
deductibleAmount?: number | undefined;
|
|
6615
6625
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6626
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6627
|
+
retroactiveDate?: string | undefined;
|
|
6616
6628
|
pageNumber?: number | undefined;
|
|
6617
6629
|
sectionRef?: string | undefined;
|
|
6618
6630
|
originalContent?: string | undefined;
|
|
@@ -6910,6 +6922,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6910
6922
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6911
6923
|
deductibleAmount?: number | undefined;
|
|
6912
6924
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6925
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6926
|
+
retroactiveDate?: string | undefined;
|
|
6913
6927
|
pageNumber?: number | undefined;
|
|
6914
6928
|
sectionRef?: string | undefined;
|
|
6915
6929
|
originalContent?: string | undefined;
|
|
@@ -6924,8 +6938,6 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6924
6938
|
coinsurance?: string | undefined;
|
|
6925
6939
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
6926
6940
|
territory?: string | undefined;
|
|
6927
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6928
|
-
retroactiveDate?: string | undefined;
|
|
6929
6941
|
premium?: string | undefined;
|
|
6930
6942
|
}, {
|
|
6931
6943
|
name: string;
|
|
@@ -6938,6 +6950,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6938
6950
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6939
6951
|
deductibleAmount?: number | undefined;
|
|
6940
6952
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6953
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6954
|
+
retroactiveDate?: string | undefined;
|
|
6941
6955
|
pageNumber?: number | undefined;
|
|
6942
6956
|
sectionRef?: string | undefined;
|
|
6943
6957
|
originalContent?: string | undefined;
|
|
@@ -6952,8 +6966,6 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
6952
6966
|
coinsurance?: string | undefined;
|
|
6953
6967
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
6954
6968
|
territory?: string | undefined;
|
|
6955
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
6956
|
-
retroactiveDate?: string | undefined;
|
|
6957
6969
|
premium?: string | undefined;
|
|
6958
6970
|
}>, "many">>;
|
|
6959
6971
|
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10282,6 +10294,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
10282
10294
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10283
10295
|
deductibleAmount?: number | undefined;
|
|
10284
10296
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10297
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
10298
|
+
retroactiveDate?: string | undefined;
|
|
10285
10299
|
pageNumber?: number | undefined;
|
|
10286
10300
|
sectionRef?: string | undefined;
|
|
10287
10301
|
originalContent?: string | undefined;
|
|
@@ -11005,6 +11019,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
11005
11019
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11006
11020
|
deductibleAmount?: number | undefined;
|
|
11007
11021
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11022
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
11023
|
+
retroactiveDate?: string | undefined;
|
|
11008
11024
|
pageNumber?: number | undefined;
|
|
11009
11025
|
sectionRef?: string | undefined;
|
|
11010
11026
|
originalContent?: string | undefined;
|
|
@@ -11019,8 +11035,6 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
11019
11035
|
coinsurance?: string | undefined;
|
|
11020
11036
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
11021
11037
|
territory?: string | undefined;
|
|
11022
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
11023
|
-
retroactiveDate?: string | undefined;
|
|
11024
11038
|
premium?: string | undefined;
|
|
11025
11039
|
}[] | undefined;
|
|
11026
11040
|
endorsements?: {
|
|
@@ -11274,6 +11288,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
11274
11288
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11275
11289
|
deductibleAmount?: number | undefined;
|
|
11276
11290
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11291
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
11292
|
+
retroactiveDate?: string | undefined;
|
|
11277
11293
|
pageNumber?: number | undefined;
|
|
11278
11294
|
sectionRef?: string | undefined;
|
|
11279
11295
|
originalContent?: string | undefined;
|
|
@@ -11997,6 +12013,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
11997
12013
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11998
12014
|
deductibleAmount?: number | undefined;
|
|
11999
12015
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12016
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12017
|
+
retroactiveDate?: string | undefined;
|
|
12000
12018
|
pageNumber?: number | undefined;
|
|
12001
12019
|
sectionRef?: string | undefined;
|
|
12002
12020
|
originalContent?: string | undefined;
|
|
@@ -12011,8 +12029,6 @@ declare const PolicyDocumentSchema: z.ZodObject<{
|
|
|
12011
12029
|
coinsurance?: string | undefined;
|
|
12012
12030
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
12013
12031
|
territory?: string | undefined;
|
|
12014
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12015
|
-
retroactiveDate?: string | undefined;
|
|
12016
12032
|
premium?: string | undefined;
|
|
12017
12033
|
}[] | undefined;
|
|
12018
12034
|
endorsements?: {
|
|
@@ -12358,6 +12374,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12358
12374
|
deductible: z.ZodOptional<z.ZodString>;
|
|
12359
12375
|
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
12360
12376
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
12377
|
+
trigger: z.ZodOptional<z.ZodEnum<["occurrence", "claims_made", "accident"]>>;
|
|
12378
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
12361
12379
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
12362
12380
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
12363
12381
|
sectionRef: z.ZodOptional<z.ZodString>;
|
|
@@ -12375,6 +12393,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12375
12393
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12376
12394
|
deductibleAmount?: number | undefined;
|
|
12377
12395
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12396
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12397
|
+
retroactiveDate?: string | undefined;
|
|
12378
12398
|
pageNumber?: number | undefined;
|
|
12379
12399
|
sectionRef?: string | undefined;
|
|
12380
12400
|
originalContent?: string | undefined;
|
|
@@ -12391,6 +12411,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12391
12411
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12392
12412
|
deductibleAmount?: number | undefined;
|
|
12393
12413
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12414
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12415
|
+
retroactiveDate?: string | undefined;
|
|
12394
12416
|
pageNumber?: number | undefined;
|
|
12395
12417
|
sectionRef?: string | undefined;
|
|
12396
12418
|
originalContent?: string | undefined;
|
|
@@ -12688,6 +12710,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12688
12710
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12689
12711
|
deductibleAmount?: number | undefined;
|
|
12690
12712
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12713
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12714
|
+
retroactiveDate?: string | undefined;
|
|
12691
12715
|
pageNumber?: number | undefined;
|
|
12692
12716
|
sectionRef?: string | undefined;
|
|
12693
12717
|
originalContent?: string | undefined;
|
|
@@ -12702,8 +12726,6 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12702
12726
|
coinsurance?: string | undefined;
|
|
12703
12727
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
12704
12728
|
territory?: string | undefined;
|
|
12705
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12706
|
-
retroactiveDate?: string | undefined;
|
|
12707
12729
|
premium?: string | undefined;
|
|
12708
12730
|
}, {
|
|
12709
12731
|
name: string;
|
|
@@ -12716,6 +12738,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12716
12738
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12717
12739
|
deductibleAmount?: number | undefined;
|
|
12718
12740
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
12741
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12742
|
+
retroactiveDate?: string | undefined;
|
|
12719
12743
|
pageNumber?: number | undefined;
|
|
12720
12744
|
sectionRef?: string | undefined;
|
|
12721
12745
|
originalContent?: string | undefined;
|
|
@@ -12730,8 +12754,6 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
12730
12754
|
coinsurance?: string | undefined;
|
|
12731
12755
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
12732
12756
|
territory?: string | undefined;
|
|
12733
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
12734
|
-
retroactiveDate?: string | undefined;
|
|
12735
12757
|
premium?: string | undefined;
|
|
12736
12758
|
}>, "many">>;
|
|
12737
12759
|
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -16059,6 +16081,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
16059
16081
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
16060
16082
|
deductibleAmount?: number | undefined;
|
|
16061
16083
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
16084
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
16085
|
+
retroactiveDate?: string | undefined;
|
|
16062
16086
|
pageNumber?: number | undefined;
|
|
16063
16087
|
sectionRef?: string | undefined;
|
|
16064
16088
|
originalContent?: string | undefined;
|
|
@@ -16778,6 +16802,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
16778
16802
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
16779
16803
|
deductibleAmount?: number | undefined;
|
|
16780
16804
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
16805
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
16806
|
+
retroactiveDate?: string | undefined;
|
|
16781
16807
|
pageNumber?: number | undefined;
|
|
16782
16808
|
sectionRef?: string | undefined;
|
|
16783
16809
|
originalContent?: string | undefined;
|
|
@@ -16792,8 +16818,6 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
16792
16818
|
coinsurance?: string | undefined;
|
|
16793
16819
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
16794
16820
|
territory?: string | undefined;
|
|
16795
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
16796
|
-
retroactiveDate?: string | undefined;
|
|
16797
16821
|
premium?: string | undefined;
|
|
16798
16822
|
}[] | undefined;
|
|
16799
16823
|
endorsements?: {
|
|
@@ -17081,6 +17105,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
17081
17105
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
17082
17106
|
deductibleAmount?: number | undefined;
|
|
17083
17107
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
17108
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
17109
|
+
retroactiveDate?: string | undefined;
|
|
17084
17110
|
pageNumber?: number | undefined;
|
|
17085
17111
|
sectionRef?: string | undefined;
|
|
17086
17112
|
originalContent?: string | undefined;
|
|
@@ -17800,6 +17826,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
17800
17826
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
17801
17827
|
deductibleAmount?: number | undefined;
|
|
17802
17828
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
17829
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
17830
|
+
retroactiveDate?: string | undefined;
|
|
17803
17831
|
pageNumber?: number | undefined;
|
|
17804
17832
|
sectionRef?: string | undefined;
|
|
17805
17833
|
originalContent?: string | undefined;
|
|
@@ -17814,8 +17842,6 @@ declare const QuoteDocumentSchema: z.ZodObject<{
|
|
|
17814
17842
|
coinsurance?: string | undefined;
|
|
17815
17843
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
17816
17844
|
territory?: string | undefined;
|
|
17817
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
17818
|
-
retroactiveDate?: string | undefined;
|
|
17819
17845
|
premium?: string | undefined;
|
|
17820
17846
|
}[] | undefined;
|
|
17821
17847
|
endorsements?: {
|
|
@@ -18118,6 +18144,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18118
18144
|
deductible: z.ZodOptional<z.ZodString>;
|
|
18119
18145
|
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
18120
18146
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
18147
|
+
trigger: z.ZodOptional<z.ZodEnum<["occurrence", "claims_made", "accident"]>>;
|
|
18148
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
18121
18149
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
18122
18150
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
18123
18151
|
sectionRef: z.ZodOptional<z.ZodString>;
|
|
@@ -18135,6 +18163,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18135
18163
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18136
18164
|
deductibleAmount?: number | undefined;
|
|
18137
18165
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18166
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18167
|
+
retroactiveDate?: string | undefined;
|
|
18138
18168
|
pageNumber?: number | undefined;
|
|
18139
18169
|
sectionRef?: string | undefined;
|
|
18140
18170
|
originalContent?: string | undefined;
|
|
@@ -18151,6 +18181,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18151
18181
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18152
18182
|
deductibleAmount?: number | undefined;
|
|
18153
18183
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18184
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18185
|
+
retroactiveDate?: string | undefined;
|
|
18154
18186
|
pageNumber?: number | undefined;
|
|
18155
18187
|
sectionRef?: string | undefined;
|
|
18156
18188
|
originalContent?: string | undefined;
|
|
@@ -18448,6 +18480,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18448
18480
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18449
18481
|
deductibleAmount?: number | undefined;
|
|
18450
18482
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18483
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18484
|
+
retroactiveDate?: string | undefined;
|
|
18451
18485
|
pageNumber?: number | undefined;
|
|
18452
18486
|
sectionRef?: string | undefined;
|
|
18453
18487
|
originalContent?: string | undefined;
|
|
@@ -18462,8 +18496,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18462
18496
|
coinsurance?: string | undefined;
|
|
18463
18497
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
18464
18498
|
territory?: string | undefined;
|
|
18465
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18466
|
-
retroactiveDate?: string | undefined;
|
|
18467
18499
|
premium?: string | undefined;
|
|
18468
18500
|
}, {
|
|
18469
18501
|
name: string;
|
|
@@ -18476,6 +18508,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18476
18508
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18477
18509
|
deductibleAmount?: number | undefined;
|
|
18478
18510
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
18511
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18512
|
+
retroactiveDate?: string | undefined;
|
|
18479
18513
|
pageNumber?: number | undefined;
|
|
18480
18514
|
sectionRef?: string | undefined;
|
|
18481
18515
|
originalContent?: string | undefined;
|
|
@@ -18490,8 +18524,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
18490
18524
|
coinsurance?: string | undefined;
|
|
18491
18525
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
18492
18526
|
territory?: string | undefined;
|
|
18493
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
18494
|
-
retroactiveDate?: string | undefined;
|
|
18495
18527
|
premium?: string | undefined;
|
|
18496
18528
|
}>, "many">>;
|
|
18497
18529
|
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -21820,6 +21852,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
21820
21852
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
21821
21853
|
deductibleAmount?: number | undefined;
|
|
21822
21854
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
21855
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
21856
|
+
retroactiveDate?: string | undefined;
|
|
21823
21857
|
pageNumber?: number | undefined;
|
|
21824
21858
|
sectionRef?: string | undefined;
|
|
21825
21859
|
originalContent?: string | undefined;
|
|
@@ -22543,6 +22577,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
22543
22577
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
22544
22578
|
deductibleAmount?: number | undefined;
|
|
22545
22579
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
22580
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
22581
|
+
retroactiveDate?: string | undefined;
|
|
22546
22582
|
pageNumber?: number | undefined;
|
|
22547
22583
|
sectionRef?: string | undefined;
|
|
22548
22584
|
originalContent?: string | undefined;
|
|
@@ -22557,8 +22593,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
22557
22593
|
coinsurance?: string | undefined;
|
|
22558
22594
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
22559
22595
|
territory?: string | undefined;
|
|
22560
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
22561
|
-
retroactiveDate?: string | undefined;
|
|
22562
22596
|
premium?: string | undefined;
|
|
22563
22597
|
}[] | undefined;
|
|
22564
22598
|
endorsements?: {
|
|
@@ -22812,6 +22846,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
22812
22846
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
22813
22847
|
deductibleAmount?: number | undefined;
|
|
22814
22848
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
22849
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
22850
|
+
retroactiveDate?: string | undefined;
|
|
22815
22851
|
pageNumber?: number | undefined;
|
|
22816
22852
|
sectionRef?: string | undefined;
|
|
22817
22853
|
originalContent?: string | undefined;
|
|
@@ -23535,6 +23571,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23535
23571
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23536
23572
|
deductibleAmount?: number | undefined;
|
|
23537
23573
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23574
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
23575
|
+
retroactiveDate?: string | undefined;
|
|
23538
23576
|
pageNumber?: number | undefined;
|
|
23539
23577
|
sectionRef?: string | undefined;
|
|
23540
23578
|
originalContent?: string | undefined;
|
|
@@ -23549,8 +23587,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23549
23587
|
coinsurance?: string | undefined;
|
|
23550
23588
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
23551
23589
|
territory?: string | undefined;
|
|
23552
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
23553
|
-
retroactiveDate?: string | undefined;
|
|
23554
23590
|
premium?: string | undefined;
|
|
23555
23591
|
}[] | undefined;
|
|
23556
23592
|
endorsements?: {
|
|
@@ -23894,6 +23930,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23894
23930
|
deductible: z.ZodOptional<z.ZodString>;
|
|
23895
23931
|
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
23896
23932
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
23933
|
+
trigger: z.ZodOptional<z.ZodEnum<["occurrence", "claims_made", "accident"]>>;
|
|
23934
|
+
retroactiveDate: z.ZodOptional<z.ZodString>;
|
|
23897
23935
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
23898
23936
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
23899
23937
|
sectionRef: z.ZodOptional<z.ZodString>;
|
|
@@ -23911,6 +23949,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23911
23949
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23912
23950
|
deductibleAmount?: number | undefined;
|
|
23913
23951
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23952
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
23953
|
+
retroactiveDate?: string | undefined;
|
|
23914
23954
|
pageNumber?: number | undefined;
|
|
23915
23955
|
sectionRef?: string | undefined;
|
|
23916
23956
|
originalContent?: string | undefined;
|
|
@@ -23927,6 +23967,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
23927
23967
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23928
23968
|
deductibleAmount?: number | undefined;
|
|
23929
23969
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
23970
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
23971
|
+
retroactiveDate?: string | undefined;
|
|
23930
23972
|
pageNumber?: number | undefined;
|
|
23931
23973
|
sectionRef?: string | undefined;
|
|
23932
23974
|
originalContent?: string | undefined;
|
|
@@ -24224,6 +24266,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
24224
24266
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
24225
24267
|
deductibleAmount?: number | undefined;
|
|
24226
24268
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
24269
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
24270
|
+
retroactiveDate?: string | undefined;
|
|
24227
24271
|
pageNumber?: number | undefined;
|
|
24228
24272
|
sectionRef?: string | undefined;
|
|
24229
24273
|
originalContent?: string | undefined;
|
|
@@ -24238,8 +24282,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
24238
24282
|
coinsurance?: string | undefined;
|
|
24239
24283
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
24240
24284
|
territory?: string | undefined;
|
|
24241
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
24242
|
-
retroactiveDate?: string | undefined;
|
|
24243
24285
|
premium?: string | undefined;
|
|
24244
24286
|
}, {
|
|
24245
24287
|
name: string;
|
|
@@ -24252,6 +24294,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
24252
24294
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
24253
24295
|
deductibleAmount?: number | undefined;
|
|
24254
24296
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
24297
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
24298
|
+
retroactiveDate?: string | undefined;
|
|
24255
24299
|
pageNumber?: number | undefined;
|
|
24256
24300
|
sectionRef?: string | undefined;
|
|
24257
24301
|
originalContent?: string | undefined;
|
|
@@ -24266,8 +24310,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
24266
24310
|
coinsurance?: string | undefined;
|
|
24267
24311
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
24268
24312
|
territory?: string | undefined;
|
|
24269
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
24270
|
-
retroactiveDate?: string | undefined;
|
|
24271
24313
|
premium?: string | undefined;
|
|
24272
24314
|
}>, "many">>;
|
|
24273
24315
|
endorsements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -27595,6 +27637,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
27595
27637
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
27596
27638
|
deductibleAmount?: number | undefined;
|
|
27597
27639
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
27640
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
27641
|
+
retroactiveDate?: string | undefined;
|
|
27598
27642
|
pageNumber?: number | undefined;
|
|
27599
27643
|
sectionRef?: string | undefined;
|
|
27600
27644
|
originalContent?: string | undefined;
|
|
@@ -28314,6 +28358,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
28314
28358
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
28315
28359
|
deductibleAmount?: number | undefined;
|
|
28316
28360
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
28361
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
28362
|
+
retroactiveDate?: string | undefined;
|
|
28317
28363
|
pageNumber?: number | undefined;
|
|
28318
28364
|
sectionRef?: string | undefined;
|
|
28319
28365
|
originalContent?: string | undefined;
|
|
@@ -28328,8 +28374,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
28328
28374
|
coinsurance?: string | undefined;
|
|
28329
28375
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
28330
28376
|
territory?: string | undefined;
|
|
28331
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
28332
|
-
retroactiveDate?: string | undefined;
|
|
28333
28377
|
premium?: string | undefined;
|
|
28334
28378
|
}[] | undefined;
|
|
28335
28379
|
endorsements?: {
|
|
@@ -28617,6 +28661,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
28617
28661
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
28618
28662
|
deductibleAmount?: number | undefined;
|
|
28619
28663
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
28664
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
28665
|
+
retroactiveDate?: string | undefined;
|
|
28620
28666
|
pageNumber?: number | undefined;
|
|
28621
28667
|
sectionRef?: string | undefined;
|
|
28622
28668
|
originalContent?: string | undefined;
|
|
@@ -29336,6 +29382,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
29336
29382
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
29337
29383
|
deductibleAmount?: number | undefined;
|
|
29338
29384
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
29385
|
+
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
29386
|
+
retroactiveDate?: string | undefined;
|
|
29339
29387
|
pageNumber?: number | undefined;
|
|
29340
29388
|
sectionRef?: string | undefined;
|
|
29341
29389
|
originalContent?: string | undefined;
|
|
@@ -29350,8 +29398,6 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
29350
29398
|
coinsurance?: string | undefined;
|
|
29351
29399
|
valuation?: "replacement_cost" | "actual_cash_value" | "agreed_value" | "functional_replacement" | undefined;
|
|
29352
29400
|
territory?: string | undefined;
|
|
29353
|
-
trigger?: "occurrence" | "claims_made" | "accident" | undefined;
|
|
29354
|
-
retroactiveDate?: string | undefined;
|
|
29355
29401
|
premium?: string | undefined;
|
|
29356
29402
|
}[] | undefined;
|
|
29357
29403
|
endorsements?: {
|
|
@@ -31482,6 +31528,8 @@ interface DocumentFilters {
|
|
|
31482
31528
|
|
|
31483
31529
|
declare const SourceSpanKindSchema: z.ZodEnum<["pdf_text", "pdf_image", "html", "markdown", "plain_text", "structured_field"]>;
|
|
31484
31530
|
type SourceSpanKind = z.infer<typeof SourceSpanKindSchema>;
|
|
31531
|
+
declare const SourceSpanUnitSchema: z.ZodEnum<["page", "section", "table", "table_row", "table_cell", "key_value", "text"]>;
|
|
31532
|
+
type SourceSpanUnit = z.infer<typeof SourceSpanUnitSchema>;
|
|
31485
31533
|
declare const SourceKindSchema: z.ZodEnum<["policy_pdf", "application_pdf", "email", "attachment", "manual_note"]>;
|
|
31486
31534
|
type SourceKind = z.infer<typeof SourceKindSchema>;
|
|
31487
31535
|
declare const SourceSpanBBoxSchema: z.ZodObject<{
|
|
@@ -31533,6 +31581,32 @@ declare const SourceSpanLocationSchema: z.ZodObject<{
|
|
|
31533
31581
|
lineEnd?: number | undefined;
|
|
31534
31582
|
}>;
|
|
31535
31583
|
type SourceSpanLocation = z.infer<typeof SourceSpanLocationSchema>;
|
|
31584
|
+
declare const SourceSpanTableLocationSchema: z.ZodObject<{
|
|
31585
|
+
tableId: z.ZodOptional<z.ZodString>;
|
|
31586
|
+
rowIndex: z.ZodOptional<z.ZodNumber>;
|
|
31587
|
+
columnIndex: z.ZodOptional<z.ZodNumber>;
|
|
31588
|
+
columnName: z.ZodOptional<z.ZodString>;
|
|
31589
|
+
rowSpanId: z.ZodOptional<z.ZodString>;
|
|
31590
|
+
tableSpanId: z.ZodOptional<z.ZodString>;
|
|
31591
|
+
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
31592
|
+
}, "strip", z.ZodTypeAny, {
|
|
31593
|
+
tableId?: string | undefined;
|
|
31594
|
+
rowIndex?: number | undefined;
|
|
31595
|
+
columnIndex?: number | undefined;
|
|
31596
|
+
columnName?: string | undefined;
|
|
31597
|
+
rowSpanId?: string | undefined;
|
|
31598
|
+
tableSpanId?: string | undefined;
|
|
31599
|
+
isHeader?: boolean | undefined;
|
|
31600
|
+
}, {
|
|
31601
|
+
tableId?: string | undefined;
|
|
31602
|
+
rowIndex?: number | undefined;
|
|
31603
|
+
columnIndex?: number | undefined;
|
|
31604
|
+
columnName?: string | undefined;
|
|
31605
|
+
rowSpanId?: string | undefined;
|
|
31606
|
+
tableSpanId?: string | undefined;
|
|
31607
|
+
isHeader?: boolean | undefined;
|
|
31608
|
+
}>;
|
|
31609
|
+
type SourceSpanTableLocation = z.infer<typeof SourceSpanTableLocationSchema>;
|
|
31536
31610
|
declare const SourceSpanSchema: z.ZodObject<{
|
|
31537
31611
|
id: z.ZodString;
|
|
31538
31612
|
documentId: z.ZodString;
|
|
@@ -31546,6 +31620,33 @@ declare const SourceSpanSchema: z.ZodObject<{
|
|
|
31546
31620
|
pageEnd: z.ZodOptional<z.ZodNumber>;
|
|
31547
31621
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
31548
31622
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
31623
|
+
sourceUnit: z.ZodOptional<z.ZodEnum<["page", "section", "table", "table_row", "table_cell", "key_value", "text"]>>;
|
|
31624
|
+
parentSpanId: z.ZodOptional<z.ZodString>;
|
|
31625
|
+
table: z.ZodOptional<z.ZodObject<{
|
|
31626
|
+
tableId: z.ZodOptional<z.ZodString>;
|
|
31627
|
+
rowIndex: z.ZodOptional<z.ZodNumber>;
|
|
31628
|
+
columnIndex: z.ZodOptional<z.ZodNumber>;
|
|
31629
|
+
columnName: z.ZodOptional<z.ZodString>;
|
|
31630
|
+
rowSpanId: z.ZodOptional<z.ZodString>;
|
|
31631
|
+
tableSpanId: z.ZodOptional<z.ZodString>;
|
|
31632
|
+
isHeader: z.ZodOptional<z.ZodBoolean>;
|
|
31633
|
+
}, "strip", z.ZodTypeAny, {
|
|
31634
|
+
tableId?: string | undefined;
|
|
31635
|
+
rowIndex?: number | undefined;
|
|
31636
|
+
columnIndex?: number | undefined;
|
|
31637
|
+
columnName?: string | undefined;
|
|
31638
|
+
rowSpanId?: string | undefined;
|
|
31639
|
+
tableSpanId?: string | undefined;
|
|
31640
|
+
isHeader?: boolean | undefined;
|
|
31641
|
+
}, {
|
|
31642
|
+
tableId?: string | undefined;
|
|
31643
|
+
rowIndex?: number | undefined;
|
|
31644
|
+
columnIndex?: number | undefined;
|
|
31645
|
+
columnName?: string | undefined;
|
|
31646
|
+
rowSpanId?: string | undefined;
|
|
31647
|
+
tableSpanId?: string | undefined;
|
|
31648
|
+
isHeader?: boolean | undefined;
|
|
31649
|
+
}>>;
|
|
31549
31650
|
bbox: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31550
31651
|
page: z.ZodNumber;
|
|
31551
31652
|
x: z.ZodNumber;
|
|
@@ -31614,10 +31715,21 @@ declare const SourceSpanSchema: z.ZodObject<{
|
|
|
31614
31715
|
lineStart?: number | undefined;
|
|
31615
31716
|
lineEnd?: number | undefined;
|
|
31616
31717
|
} | undefined;
|
|
31718
|
+
table?: {
|
|
31719
|
+
tableId?: string | undefined;
|
|
31720
|
+
rowIndex?: number | undefined;
|
|
31721
|
+
columnIndex?: number | undefined;
|
|
31722
|
+
columnName?: string | undefined;
|
|
31723
|
+
rowSpanId?: string | undefined;
|
|
31724
|
+
tableSpanId?: string | undefined;
|
|
31725
|
+
isHeader?: boolean | undefined;
|
|
31726
|
+
} | undefined;
|
|
31617
31727
|
sourceKind?: "email" | "policy_pdf" | "application_pdf" | "attachment" | "manual_note" | undefined;
|
|
31618
31728
|
chunkId?: string | undefined;
|
|
31619
31729
|
textHash?: string | undefined;
|
|
31620
31730
|
sectionId?: string | undefined;
|
|
31731
|
+
sourceUnit?: "page" | "text" | "section" | "table" | "table_row" | "table_cell" | "key_value" | undefined;
|
|
31732
|
+
parentSpanId?: string | undefined;
|
|
31621
31733
|
bbox?: {
|
|
31622
31734
|
page: number;
|
|
31623
31735
|
x: number;
|
|
@@ -31645,10 +31757,21 @@ declare const SourceSpanSchema: z.ZodObject<{
|
|
|
31645
31757
|
lineStart?: number | undefined;
|
|
31646
31758
|
lineEnd?: number | undefined;
|
|
31647
31759
|
} | undefined;
|
|
31760
|
+
table?: {
|
|
31761
|
+
tableId?: string | undefined;
|
|
31762
|
+
rowIndex?: number | undefined;
|
|
31763
|
+
columnIndex?: number | undefined;
|
|
31764
|
+
columnName?: string | undefined;
|
|
31765
|
+
rowSpanId?: string | undefined;
|
|
31766
|
+
tableSpanId?: string | undefined;
|
|
31767
|
+
isHeader?: boolean | undefined;
|
|
31768
|
+
} | undefined;
|
|
31648
31769
|
sourceKind?: "email" | "policy_pdf" | "application_pdf" | "attachment" | "manual_note" | undefined;
|
|
31649
31770
|
chunkId?: string | undefined;
|
|
31650
31771
|
textHash?: string | undefined;
|
|
31651
31772
|
sectionId?: string | undefined;
|
|
31773
|
+
sourceUnit?: "page" | "text" | "section" | "table" | "table_row" | "table_cell" | "key_value" | undefined;
|
|
31774
|
+
parentSpanId?: string | undefined;
|
|
31652
31775
|
bbox?: {
|
|
31653
31776
|
page: number;
|
|
31654
31777
|
x: number;
|
|
@@ -31804,6 +31927,9 @@ interface SourceTextUnitInput {
|
|
|
31804
31927
|
pageEnd?: number;
|
|
31805
31928
|
sectionId?: string;
|
|
31806
31929
|
formNumber?: string;
|
|
31930
|
+
sourceUnit?: SourceSpanUnit;
|
|
31931
|
+
parentSpanId?: string;
|
|
31932
|
+
table?: SourceSpanTableLocation;
|
|
31807
31933
|
metadata?: Record<string, string>;
|
|
31808
31934
|
}
|
|
31809
31935
|
interface SourcePageInput {
|
|
@@ -31900,6 +32026,18 @@ interface DoclingNormalizedUnit {
|
|
|
31900
32026
|
pageStart?: number;
|
|
31901
32027
|
pageEnd?: number;
|
|
31902
32028
|
bboxes?: SourceSpanBBox[];
|
|
32029
|
+
table?: NormalizedDoclingTable;
|
|
32030
|
+
}
|
|
32031
|
+
interface NormalizedDoclingTableCell {
|
|
32032
|
+
row: number;
|
|
32033
|
+
col: number;
|
|
32034
|
+
text: string;
|
|
32035
|
+
}
|
|
32036
|
+
interface NormalizedDoclingTable {
|
|
32037
|
+
markdown: string;
|
|
32038
|
+
headers: string[];
|
|
32039
|
+
rows: string[][];
|
|
32040
|
+
cells: NormalizedDoclingTableCell[];
|
|
31903
32041
|
}
|
|
31904
32042
|
interface NormalizedDoclingDocument {
|
|
31905
32043
|
pageCount: number;
|
|
@@ -32308,7 +32446,7 @@ declare const ApplicationFieldSchema: z.ZodObject<{
|
|
|
32308
32446
|
id: string;
|
|
32309
32447
|
label: string;
|
|
32310
32448
|
section: string;
|
|
32311
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32449
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32312
32450
|
required: boolean;
|
|
32313
32451
|
value?: string | undefined;
|
|
32314
32452
|
options?: string[] | undefined;
|
|
@@ -32330,7 +32468,7 @@ declare const ApplicationFieldSchema: z.ZodObject<{
|
|
|
32330
32468
|
id: string;
|
|
32331
32469
|
label: string;
|
|
32332
32470
|
section: string;
|
|
32333
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32471
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32334
32472
|
required: boolean;
|
|
32335
32473
|
value?: string | undefined;
|
|
32336
32474
|
options?: string[] | undefined;
|
|
@@ -32397,7 +32535,7 @@ declare const FieldExtractionResultSchema: z.ZodObject<{
|
|
|
32397
32535
|
id: string;
|
|
32398
32536
|
label: string;
|
|
32399
32537
|
section: string;
|
|
32400
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32538
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32401
32539
|
required: boolean;
|
|
32402
32540
|
value?: string | undefined;
|
|
32403
32541
|
options?: string[] | undefined;
|
|
@@ -32419,7 +32557,7 @@ declare const FieldExtractionResultSchema: z.ZodObject<{
|
|
|
32419
32557
|
id: string;
|
|
32420
32558
|
label: string;
|
|
32421
32559
|
section: string;
|
|
32422
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32560
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32423
32561
|
required: boolean;
|
|
32424
32562
|
value?: string | undefined;
|
|
32425
32563
|
options?: string[] | undefined;
|
|
@@ -32443,7 +32581,7 @@ declare const FieldExtractionResultSchema: z.ZodObject<{
|
|
|
32443
32581
|
id: string;
|
|
32444
32582
|
label: string;
|
|
32445
32583
|
section: string;
|
|
32446
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32584
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32447
32585
|
required: boolean;
|
|
32448
32586
|
value?: string | undefined;
|
|
32449
32587
|
options?: string[] | undefined;
|
|
@@ -32467,7 +32605,7 @@ declare const FieldExtractionResultSchema: z.ZodObject<{
|
|
|
32467
32605
|
id: string;
|
|
32468
32606
|
label: string;
|
|
32469
32607
|
section: string;
|
|
32470
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
32608
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
32471
32609
|
required: boolean;
|
|
32472
32610
|
value?: string | undefined;
|
|
32473
32611
|
options?: string[] | undefined;
|
|
@@ -33005,7 +33143,7 @@ declare const ApplicationStateSchema: z.ZodObject<{
|
|
|
33005
33143
|
id: string;
|
|
33006
33144
|
label: string;
|
|
33007
33145
|
section: string;
|
|
33008
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
33146
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
33009
33147
|
required: boolean;
|
|
33010
33148
|
value?: string | undefined;
|
|
33011
33149
|
options?: string[] | undefined;
|
|
@@ -33027,7 +33165,7 @@ declare const ApplicationStateSchema: z.ZodObject<{
|
|
|
33027
33165
|
id: string;
|
|
33028
33166
|
label: string;
|
|
33029
33167
|
section: string;
|
|
33030
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
33168
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
33031
33169
|
required: boolean;
|
|
33032
33170
|
value?: string | undefined;
|
|
33033
33171
|
options?: string[] | undefined;
|
|
@@ -33199,7 +33337,7 @@ declare const ApplicationStateSchema: z.ZodObject<{
|
|
|
33199
33337
|
id: string;
|
|
33200
33338
|
label: string;
|
|
33201
33339
|
section: string;
|
|
33202
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
33340
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
33203
33341
|
required: boolean;
|
|
33204
33342
|
value?: string | undefined;
|
|
33205
33343
|
options?: string[] | undefined;
|
|
@@ -33261,7 +33399,7 @@ declare const ApplicationStateSchema: z.ZodObject<{
|
|
|
33261
33399
|
id: string;
|
|
33262
33400
|
label: string;
|
|
33263
33401
|
section: string;
|
|
33264
|
-
fieldType: "date" | "numeric" | "text" | "declaration" | "
|
|
33402
|
+
fieldType: "date" | "numeric" | "text" | "declaration" | "table" | "currency" | "yes_no";
|
|
33265
33403
|
required: boolean;
|
|
33266
33404
|
value?: string | undefined;
|
|
33267
33405
|
options?: string[] | undefined;
|
|
@@ -34575,4 +34713,4 @@ interface DocumentTemplate {
|
|
|
34575
34713
|
}
|
|
34576
34714
|
declare function getTemplate(policyType: string): DocumentTemplate;
|
|
34577
34715
|
|
|
34578
|
-
export { ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcroFormFieldInfo, type AcroFormMapping, AcroFormMappingSchema, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, type AgentContext, type AgenticExecutionMode, AgenticExecutionModeSchema, type AnswerMergeResult, type AnswerParsingResult, AnswerParsingResultSchema, type ApplicationClassifyResult, ApplicationClassifyResultSchema, ApplicationEmailReviewSchema, type ApplicationField, ApplicationFieldSchema, type ApplicationListFilters, type ApplicationPipelineConfig, ApplicationQualityArtifactSchema, ApplicationQualityIssueSchema, ApplicationQualityReportSchema, ApplicationQualityRoundSchema, type ApplicationState, ApplicationStateSchema, type ApplicationStore, type AttachmentInterpretation, AttachmentInterpretationSchema, type AuditType, AuditTypeSchema, type AutoFillMatch, AutoFillMatchSchema, type AutoFillResult, AutoFillResultSchema, type AuxiliaryFact, AuxiliaryFactSchema, BOAT_TYPES, type BackfillProvider, type BindingAuthority, BindingAuthoritySchema, type BoatType, BoatTypeSchema, CHUNK_TYPES, CLAIM_STATUSES, COI_GENERATION_TOOL, CONDITION_TYPES, CONSTRUCTION_TYPES, CONTEXT_KEY_MAP, COVERAGE_COMPARISON_TOOL, COVERAGE_FORMS, COVERAGE_TRIGGERS, type CaseAction, CaseActionSchema, type CaseCitation, CaseCitationSchema, type CaseEvidence, type CaseEvidenceSource, CaseEvidenceSourceSchema, type CaseField, type CaseItem, type CasePacketArtifact, type CasePacketArtifactKind, CasePacketArtifactKindSchema, CasePacketArtifactSchema, type CaseProposal, CaseProposalSchema, type CaseProposalScore, CaseProposalScoreSchema, type CaseState, type CaseSubmissionPacket, CaseSubmissionPacketSchema, type CaseValidationIssue, CaseValidationIssueSchema, type CaseWorkflowPlan, type ChunkFilter, type ChunkType, ChunkTypeSchema, type Citation, CitationSchema, type ClaimRecord, ClaimRecordSchema, type ClaimStatus, ClaimStatusSchema, type ClassificationCode, ClassificationCodeSchema, type CommercialAutoDeclarations, CommercialAutoDeclarationsSchema, type CommercialPropertyDeclarations, CommercialPropertyDeclarationsSchema, type CommunicationIntent, CommunicationIntentSchema, ConditionKeyValueSchema, type ConditionType, ConditionTypeSchema, type ConstructionType, ConstructionTypeSchema, type Contact, ContactSchema, type ContextKeyMapping, type ConversationTurn, type ConvertPdfToImagesFn, type Coverage, type CoverageForm, CoverageFormSchema, CoverageSchema, type CoverageTrigger, CoverageTriggerSchema, type CoverageValueType, CoverageValueTypeSchema, type CoveredReason, CoveredReasonSchema, type CrimeDeclarations, CrimeDeclarationsSchema, type CyberDeclarations, CyberDeclarationsSchema, DEDUCTIBLE_TYPES, DEFENSE_COST_TREATMENTS, DOCUMENT_LOOKUP_TOOL, DOCUMENT_TYPES, type DODeclarations, DODeclarationsSchema, DWELLING_FIRE_FORM_TYPES, type Declarations, DeclarationsSchema, type DeductibleSchedule, DeductibleScheduleSchema, type DeductibleType, DeductibleTypeSchema, type DefenseCostTreatment, DefenseCostTreatmentSchema, type Definition, DefinitionSchema, type DoclingDocumentLike, type DoclingExtractionInput, type DoclingItemLike, type DoclingNodeLike, type DoclingNormalizedUnit, type DoclingProvenanceLike, type DocumentChunk, type DocumentFilters, type DocumentStore, type DocumentTemplate, type DocumentType, DocumentTypeSchema, type DriverRecord, DriverRecordSchema, type DwellingDetails, DwellingDetailsSchema, type DwellingFireDeclarations, DwellingFireDeclarationsSchema, type DwellingFireFormType, DwellingFireFormTypeSchema, ENDORSEMENT_PARTY_ROLES, ENDORSEMENT_TYPES, ENTITY_TYPES, type EarthquakeDeclarations, EarthquakeDeclarationsSchema, type EmbedText, type EmployersLiabilityLimits, EmployersLiabilityLimitsSchema, type Endorsement, type EndorsementParty, type EndorsementPartyRole, EndorsementPartyRoleSchema, EndorsementPartySchema, EndorsementSchema, type EndorsementType, EndorsementTypeSchema, type EnrichedCoverage, EnrichedCoverageSchema, type EnrichedSubjectivity, EnrichedSubjectivitySchema, type EnrichedUnderwritingCondition, EnrichedUnderwritingConditionSchema, type EntityType, EntityTypeSchema, type EvidenceItem, EvidenceItemSchema, type Exclusion, ExclusionSchema, type ExperienceMod, ExperienceModSchema, type ExtendedReportingPeriod, ExtendedReportingPeriodSchema, type ExtractOptions, type ExtractionInput, type ExtractionResult, type ExtractionState, type ExtractorConfig, type ExtractorDef, FLOOD_ZONES, FOUNDATION_TYPES, type FarmRanchDeclarations, FarmRanchDeclarationsSchema, type FieldExtractionResult, FieldExtractionResultSchema, type FieldMapping, type FieldType, FieldTypeSchema, type FlatPdfPlacement, FlatPdfPlacementSchema, type FloodDeclarations, FloodDeclarationsSchema, type FloodZone, FloodZoneSchema, type FormReference, FormReferenceSchema, type FoundationType, FoundationTypeSchema, type GLDeclarations, GLDeclarationsSchema, type GenerateObject, type GeneratePceSubmissionPacketInput, type GenerateText, HOMEOWNERS_FORM_TYPES, type HomeownersDeclarations, HomeownersDeclarationsSchema, type HomeownersFormType, HomeownersFormTypeSchema, type IdentityTheftDeclarations, IdentityTheftDeclarationsSchema, type InsuranceDocument, InsuranceDocumentSchema, type InsuredLocation, InsuredLocationSchema, type InsuredVehicle, InsuredVehicleSchema, type InsurerInfo, InsurerInfoSchema, LIMIT_TYPES, LOSS_SETTLEMENTS, type LimitSchedule, LimitScheduleSchema, type LimitType, LimitTypeSchema, type LocationPremium, LocationPremiumSchema, type LogFn, type LookupFill, type LookupFillResult, LookupFillResultSchema, LookupFillSchema, type LookupRequest, LookupRequestSchema, type LossSettlement, LossSettlementSchema, type LossSummary, LossSummarySchema, MemorySourceStore, type MemoryStore, type MissingInfoQuestion, MissingInfoQuestionSchema, type ModelBudgetConstraint, type ModelBudgetResolution, type ModelCallReport, type ModelCapabilities, type ModelTaskKind, type NamedInsured, NamedInsuredSchema, type NormalizedDoclingDocument, type OrderableSourceEvidence, PERSONAL_AUTO_USAGES, PET_SPECIES, PLATFORM_CONFIGS, POLICY_SECTION_TYPES, POLICY_TERM_TYPES, POLICY_TYPES, type ParsedAnswer, ParsedAnswerSchema, type PaymentInstallment, PaymentInstallmentSchema, type PaymentPlan, PaymentPlanSchema, type PceAgentConfig, type PceCaseState, PceCaseStateSchema, type PceEvidenceSource, type PceExecutionModePreference, type PceMissingInfoQuestion, type PceNormalizationResult, PceNormalizationResultSchema, type PceQualityGateStatus, type PceQualityReport, type PceSubmissionPacket, PceSubmissionPacketSchema, type PceValidationIssue, type PdfInput, type PerformanceReport, type PersonalArticlesDeclarations, PersonalArticlesDeclarationsSchema, type PersonalAutoDeclarations, PersonalAutoDeclarationsSchema, type PersonalAutoUsage, PersonalAutoUsageSchema, type PersonalUmbrellaDeclarations, PersonalUmbrellaDeclarationsSchema, type PersonalVehicleDetails, PersonalVehicleDetailsSchema, type PetDeclarations, PetDeclarationsSchema, type PetSpecies, PetSpeciesSchema, type PipelineCheckpoint, type PipelineContext, type PipelineContextOptions, type Platform, type PlatformConfig, PlatformSchema, type PolicyChangeAction, PolicyChangeActionSchema, type PolicyChangeConfidence, PolicyChangeConfidenceSchema, type PolicyChangeImpact, PolicyChangeImpactSchema, type PolicyChangeItem, PolicyChangeItemSchema, type PolicyChangeKind, PolicyChangeKindSchema, type PolicyChangeMissingInfoQuestion, type PolicyChangePacket, type PolicyChangeRequest, PolicyChangeRequestSchema, type PolicyChangeState, type PolicyChangeStatus, PolicyChangeStatusSchema, type PolicyChangeValidationIssue, type PolicyCondition, PolicyConditionSchema, type PolicyDocument, PolicyDocumentSchema, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type PolicyType, PolicyTypeSchema, type PremiumLine, PremiumLineSchema, type PriorAnswer, type ProcessApplicationInput, type ProcessApplicationResult, type ProcessPceChangeRequestInput, type ProcessPceChangeRequestResult, type ProcessPceReplyInput, type ProcessPceReplyResult, type ProcessReplyInput, type ProcessReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryAttachment, type QueryAttachmentKind, QueryAttachmentKindSchema, QueryAttachmentSchema, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, type QueryRetrievalMode, QueryRetrievalModeSchema, type QuestionBatchResult, QuestionBatchResultSchema, type QuoteDocument, QuoteDocumentSchema, type QuoteSectionType, QuoteSectionTypeSchema, RATING_BASIS_TYPES, ROOF_TYPES, type RVType, RVTypeSchema, RV_TYPES, type RatingBasis, RatingBasisSchema, type RatingBasisType, RatingBasisTypeSchema, type RecreationalVehicleDeclarations, RecreationalVehicleDeclarationsSchema, type ReplyIntent, ReplyIntentSchema, type ResolveModelBudgetParams, type RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type Section, SectionSchema, type SectionSourceSpanOptions, type SharedLimit, SharedLimitSchema, type SourceChunk, type SourceChunkOptions, SourceChunkSchema, type SourceKind, SourceKindSchema, type SourcePageInput, type SourceRetrievalMode, type SourceRetrievalQuery, type SourceRetrievalResult, type SourceRetriever, type SourceSpan, type SourceSpanBBox, SourceSpanBBoxSchema, type SourceSpanIdInput, type SourceSpanKind, SourceSpanKindSchema, type SourceSpanLocation, SourceSpanLocationSchema, type SourceSpanRef, SourceSpanRefSchema, SourceSpanSchema, type SourceStore, type SourceTextUnitInput, type SubAnswer, SubAnswerSchema, type SubQuestion, SubQuestionSchema, type Subjectivity, type SubjectivityCategory, SubjectivityCategorySchema, SubjectivitySchema, type Sublimit, SublimitSchema, type Subsection, SubsectionSchema, TITLE_POLICY_TYPES, type TaxFeeItem, TaxFeeItemSchema, type TextOverlay, type TitleDeclarations, TitleDeclarationsSchema, type TitlePolicyType, TitlePolicyTypeSchema, type TokenUsage, type ToolDefinition, type TravelDeclarations, TravelDeclarationsSchema, type UmbrellaExcessDeclarations, UmbrellaExcessDeclarationsSchema, type UnderwritingCondition, UnderwritingConditionSchema, VALUATION_METHODS, VEHICLE_COVERAGE_TYPES, type ValidationIssueSeverity, ValidationIssueSeveritySchema, type ValuationMethod, ValuationMethodSchema, type VehicleCoverage, VehicleCoverageSchema, type VehicleCoverageType, VehicleCoverageTypeSchema, type VerifyResult, VerifyResultSchema, type WatercraftDeclarations, WatercraftDeclarationsSchema, type WorkersCompDeclarations, WorkersCompDeclarationsSchema, buildAcroFormMappingPrompt, buildAgentSystemPrompt, buildAnswerParsingPrompt, buildAutoFillPrompt, buildBatchEmailGenerationPrompt, buildClassifyMessagePrompt, buildCoiRoutingPrompt, buildConfirmationSummaryPrompt, buildConversationMemoryGuidance, buildCoverageGapPrompt, buildDoclingProviderOptions, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildInterpretAttachmentPrompt, buildLookupFillPrompt, buildPageSourceSpans, buildPceNormalizePrompt, buildPceQualityReport, buildPceReplyPrompt, buildPceSubmissionPacket, buildPdfProviderOptions, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildSectionSourceSpans, buildSourceSpan, buildSourceSpanId, buildTextSourceSpans, buildVerifyPrompt, chunkDocument, chunkSourceSpans, collectPceEvidenceSources, compareSourceEvidence, createApplicationPipeline, createExtractor, createPceAgent, createPipelineContext, createQueryAgent, evaluateCaseProposals, evidenceContainsQuote, extractPageRange, fillAcroForm, generateNextMessage, getAcroFormFields, getDoclingPageRangeText, getExtractor, getFileIdentifier, getPdfPageCount, getTemplate, isDoclingExtractionInput, isFileReference, mergeQuestionAnswers, mergeSourceSpans, normalizeDoclingDocument, normalizeForMatch, orderSourceEvidence, overlayTextOnPdf, pLimit, pdfInputToBase64, pdfInputToBytes, processReply, resolveModelBudget, safeGenerateObject, sanitizeNulls, scoreCaseProposal, selectPceExecutionMode, sourceSpanTextHash, stableCaseId, stableHash, stablePolicyChangeItemId, stableStringify, stripFences, toStrictSchema, validateEvidence, validatePceItems, validateQuotedEvidence, withRetry };
|
|
34716
|
+
export { ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcroFormFieldInfo, type AcroFormMapping, AcroFormMappingSchema, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, type AgentContext, type AgenticExecutionMode, AgenticExecutionModeSchema, type AnswerMergeResult, type AnswerParsingResult, AnswerParsingResultSchema, type ApplicationClassifyResult, ApplicationClassifyResultSchema, ApplicationEmailReviewSchema, type ApplicationField, ApplicationFieldSchema, type ApplicationListFilters, type ApplicationPipelineConfig, ApplicationQualityArtifactSchema, ApplicationQualityIssueSchema, ApplicationQualityReportSchema, ApplicationQualityRoundSchema, type ApplicationState, ApplicationStateSchema, type ApplicationStore, type AttachmentInterpretation, AttachmentInterpretationSchema, type AuditType, AuditTypeSchema, type AutoFillMatch, AutoFillMatchSchema, type AutoFillResult, AutoFillResultSchema, type AuxiliaryFact, AuxiliaryFactSchema, BOAT_TYPES, type BackfillProvider, type BindingAuthority, BindingAuthoritySchema, type BoatType, BoatTypeSchema, CHUNK_TYPES, CLAIM_STATUSES, COI_GENERATION_TOOL, CONDITION_TYPES, CONSTRUCTION_TYPES, CONTEXT_KEY_MAP, COVERAGE_COMPARISON_TOOL, COVERAGE_FORMS, COVERAGE_TRIGGERS, type CaseAction, CaseActionSchema, type CaseCitation, CaseCitationSchema, type CaseEvidence, type CaseEvidenceSource, CaseEvidenceSourceSchema, type CaseField, type CaseItem, type CasePacketArtifact, type CasePacketArtifactKind, CasePacketArtifactKindSchema, CasePacketArtifactSchema, type CaseProposal, CaseProposalSchema, type CaseProposalScore, CaseProposalScoreSchema, type CaseState, type CaseSubmissionPacket, CaseSubmissionPacketSchema, type CaseValidationIssue, CaseValidationIssueSchema, type CaseWorkflowPlan, type ChunkFilter, type ChunkType, ChunkTypeSchema, type Citation, CitationSchema, type ClaimRecord, ClaimRecordSchema, type ClaimStatus, ClaimStatusSchema, type ClassificationCode, ClassificationCodeSchema, type CommercialAutoDeclarations, CommercialAutoDeclarationsSchema, type CommercialPropertyDeclarations, CommercialPropertyDeclarationsSchema, type CommunicationIntent, CommunicationIntentSchema, ConditionKeyValueSchema, type ConditionType, ConditionTypeSchema, type ConstructionType, ConstructionTypeSchema, type Contact, ContactSchema, type ContextKeyMapping, type ConversationTurn, type ConvertPdfToImagesFn, type Coverage, type CoverageForm, CoverageFormSchema, CoverageSchema, type CoverageTrigger, CoverageTriggerSchema, type CoverageValueType, CoverageValueTypeSchema, type CoveredReason, CoveredReasonSchema, type CrimeDeclarations, CrimeDeclarationsSchema, type CyberDeclarations, CyberDeclarationsSchema, DEDUCTIBLE_TYPES, DEFENSE_COST_TREATMENTS, DOCUMENT_LOOKUP_TOOL, DOCUMENT_TYPES, type DODeclarations, DODeclarationsSchema, DWELLING_FIRE_FORM_TYPES, type Declarations, DeclarationsSchema, type DeductibleSchedule, DeductibleScheduleSchema, type DeductibleType, DeductibleTypeSchema, type DefenseCostTreatment, DefenseCostTreatmentSchema, type Definition, DefinitionSchema, type DoclingDocumentLike, type DoclingExtractionInput, type DoclingItemLike, type DoclingNodeLike, type DoclingNormalizedUnit, type DoclingProvenanceLike, type DocumentChunk, type DocumentFilters, type DocumentStore, type DocumentTemplate, type DocumentType, DocumentTypeSchema, type DriverRecord, DriverRecordSchema, type DwellingDetails, DwellingDetailsSchema, type DwellingFireDeclarations, DwellingFireDeclarationsSchema, type DwellingFireFormType, DwellingFireFormTypeSchema, ENDORSEMENT_PARTY_ROLES, ENDORSEMENT_TYPES, ENTITY_TYPES, type EarthquakeDeclarations, EarthquakeDeclarationsSchema, type EmbedText, type EmployersLiabilityLimits, EmployersLiabilityLimitsSchema, type Endorsement, type EndorsementParty, type EndorsementPartyRole, EndorsementPartyRoleSchema, EndorsementPartySchema, EndorsementSchema, type EndorsementType, EndorsementTypeSchema, type EnrichedCoverage, EnrichedCoverageSchema, type EnrichedSubjectivity, EnrichedSubjectivitySchema, type EnrichedUnderwritingCondition, EnrichedUnderwritingConditionSchema, type EntityType, EntityTypeSchema, type EvidenceItem, EvidenceItemSchema, type Exclusion, ExclusionSchema, type ExperienceMod, ExperienceModSchema, type ExtendedReportingPeriod, ExtendedReportingPeriodSchema, type ExtractOptions, type ExtractionInput, type ExtractionResult, type ExtractionState, type ExtractorConfig, type ExtractorDef, FLOOD_ZONES, FOUNDATION_TYPES, type FarmRanchDeclarations, FarmRanchDeclarationsSchema, type FieldExtractionResult, FieldExtractionResultSchema, type FieldMapping, type FieldType, FieldTypeSchema, type FlatPdfPlacement, FlatPdfPlacementSchema, type FloodDeclarations, FloodDeclarationsSchema, type FloodZone, FloodZoneSchema, type FormReference, FormReferenceSchema, type FoundationType, FoundationTypeSchema, type GLDeclarations, GLDeclarationsSchema, type GenerateObject, type GeneratePceSubmissionPacketInput, type GenerateText, HOMEOWNERS_FORM_TYPES, type HomeownersDeclarations, HomeownersDeclarationsSchema, type HomeownersFormType, HomeownersFormTypeSchema, type IdentityTheftDeclarations, IdentityTheftDeclarationsSchema, type InsuranceDocument, InsuranceDocumentSchema, type InsuredLocation, InsuredLocationSchema, type InsuredVehicle, InsuredVehicleSchema, type InsurerInfo, InsurerInfoSchema, LIMIT_TYPES, LOSS_SETTLEMENTS, type LimitSchedule, LimitScheduleSchema, type LimitType, LimitTypeSchema, type LocationPremium, LocationPremiumSchema, type LogFn, type LookupFill, type LookupFillResult, LookupFillResultSchema, LookupFillSchema, type LookupRequest, LookupRequestSchema, type LossSettlement, LossSettlementSchema, type LossSummary, LossSummarySchema, MemorySourceStore, type MemoryStore, type MissingInfoQuestion, MissingInfoQuestionSchema, type ModelBudgetConstraint, type ModelBudgetResolution, type ModelCallReport, type ModelCapabilities, type ModelTaskKind, type NamedInsured, NamedInsuredSchema, type NormalizedDoclingDocument, type OrderableSourceEvidence, PERSONAL_AUTO_USAGES, PET_SPECIES, PLATFORM_CONFIGS, POLICY_SECTION_TYPES, POLICY_TERM_TYPES, POLICY_TYPES, type ParsedAnswer, ParsedAnswerSchema, type PaymentInstallment, PaymentInstallmentSchema, type PaymentPlan, PaymentPlanSchema, type PceAgentConfig, type PceCaseState, PceCaseStateSchema, type PceEvidenceSource, type PceExecutionModePreference, type PceMissingInfoQuestion, type PceNormalizationResult, PceNormalizationResultSchema, type PceQualityGateStatus, type PceQualityReport, type PceSubmissionPacket, PceSubmissionPacketSchema, type PceValidationIssue, type PdfInput, type PerformanceReport, type PersonalArticlesDeclarations, PersonalArticlesDeclarationsSchema, type PersonalAutoDeclarations, PersonalAutoDeclarationsSchema, type PersonalAutoUsage, PersonalAutoUsageSchema, type PersonalUmbrellaDeclarations, PersonalUmbrellaDeclarationsSchema, type PersonalVehicleDetails, PersonalVehicleDetailsSchema, type PetDeclarations, PetDeclarationsSchema, type PetSpecies, PetSpeciesSchema, type PipelineCheckpoint, type PipelineContext, type PipelineContextOptions, type Platform, type PlatformConfig, PlatformSchema, type PolicyChangeAction, PolicyChangeActionSchema, type PolicyChangeConfidence, PolicyChangeConfidenceSchema, type PolicyChangeImpact, PolicyChangeImpactSchema, type PolicyChangeItem, PolicyChangeItemSchema, type PolicyChangeKind, PolicyChangeKindSchema, type PolicyChangeMissingInfoQuestion, type PolicyChangePacket, type PolicyChangeRequest, PolicyChangeRequestSchema, type PolicyChangeState, type PolicyChangeStatus, PolicyChangeStatusSchema, type PolicyChangeValidationIssue, type PolicyCondition, PolicyConditionSchema, type PolicyDocument, PolicyDocumentSchema, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type PolicyType, PolicyTypeSchema, type PremiumLine, PremiumLineSchema, type PriorAnswer, type ProcessApplicationInput, type ProcessApplicationResult, type ProcessPceChangeRequestInput, type ProcessPceChangeRequestResult, type ProcessPceReplyInput, type ProcessPceReplyResult, type ProcessReplyInput, type ProcessReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryAttachment, type QueryAttachmentKind, QueryAttachmentKindSchema, QueryAttachmentSchema, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, type QueryRetrievalMode, QueryRetrievalModeSchema, type QuestionBatchResult, QuestionBatchResultSchema, type QuoteDocument, QuoteDocumentSchema, type QuoteSectionType, QuoteSectionTypeSchema, RATING_BASIS_TYPES, ROOF_TYPES, type RVType, RVTypeSchema, RV_TYPES, type RatingBasis, RatingBasisSchema, type RatingBasisType, RatingBasisTypeSchema, type RecreationalVehicleDeclarations, RecreationalVehicleDeclarationsSchema, type ReplyIntent, ReplyIntentSchema, type ResolveModelBudgetParams, type RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type Section, SectionSchema, type SectionSourceSpanOptions, type SharedLimit, SharedLimitSchema, type SourceChunk, type SourceChunkOptions, SourceChunkSchema, type SourceKind, SourceKindSchema, type SourcePageInput, type SourceRetrievalMode, type SourceRetrievalQuery, type SourceRetrievalResult, type SourceRetriever, type SourceSpan, type SourceSpanBBox, SourceSpanBBoxSchema, type SourceSpanIdInput, type SourceSpanKind, SourceSpanKindSchema, type SourceSpanLocation, SourceSpanLocationSchema, type SourceSpanRef, SourceSpanRefSchema, SourceSpanSchema, type SourceSpanTableLocation, SourceSpanTableLocationSchema, type SourceSpanUnit, SourceSpanUnitSchema, type SourceStore, type SourceTextUnitInput, type SubAnswer, SubAnswerSchema, type SubQuestion, SubQuestionSchema, type Subjectivity, type SubjectivityCategory, SubjectivityCategorySchema, SubjectivitySchema, type Sublimit, SublimitSchema, type Subsection, SubsectionSchema, TITLE_POLICY_TYPES, type TaxFeeItem, TaxFeeItemSchema, type TextOverlay, type TitleDeclarations, TitleDeclarationsSchema, type TitlePolicyType, TitlePolicyTypeSchema, type TokenUsage, type ToolDefinition, type TravelDeclarations, TravelDeclarationsSchema, type UmbrellaExcessDeclarations, UmbrellaExcessDeclarationsSchema, type UnderwritingCondition, UnderwritingConditionSchema, VALUATION_METHODS, VEHICLE_COVERAGE_TYPES, type ValidationIssueSeverity, ValidationIssueSeveritySchema, type ValuationMethod, ValuationMethodSchema, type VehicleCoverage, VehicleCoverageSchema, type VehicleCoverageType, VehicleCoverageTypeSchema, type VerifyResult, VerifyResultSchema, type WatercraftDeclarations, WatercraftDeclarationsSchema, type WorkersCompDeclarations, WorkersCompDeclarationsSchema, buildAcroFormMappingPrompt, buildAgentSystemPrompt, buildAnswerParsingPrompt, buildAutoFillPrompt, buildBatchEmailGenerationPrompt, buildClassifyMessagePrompt, buildCoiRoutingPrompt, buildConfirmationSummaryPrompt, buildConversationMemoryGuidance, buildCoverageGapPrompt, buildDoclingProviderOptions, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildInterpretAttachmentPrompt, buildLookupFillPrompt, buildPageSourceSpans, buildPceNormalizePrompt, buildPceQualityReport, buildPceReplyPrompt, buildPceSubmissionPacket, buildPdfProviderOptions, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildSectionSourceSpans, buildSourceSpan, buildSourceSpanId, buildTextSourceSpans, buildVerifyPrompt, chunkDocument, chunkSourceSpans, collectPceEvidenceSources, compareSourceEvidence, createApplicationPipeline, createExtractor, createPceAgent, createPipelineContext, createQueryAgent, evaluateCaseProposals, evidenceContainsQuote, extractPageRange, fillAcroForm, generateNextMessage, getAcroFormFields, getDoclingPageRangeText, getExtractor, getFileIdentifier, getPdfPageCount, getTemplate, isDoclingExtractionInput, isFileReference, mergeQuestionAnswers, mergeSourceSpans, normalizeDoclingDocument, normalizeForMatch, orderSourceEvidence, overlayTextOnPdf, pLimit, pdfInputToBase64, pdfInputToBytes, processReply, resolveModelBudget, safeGenerateObject, sanitizeNulls, scoreCaseProposal, selectPceExecutionMode, sourceSpanTextHash, stableCaseId, stableHash, stablePolicyChangeItemId, stableStringify, stripFences, toStrictSchema, validateEvidence, validatePceItems, validateQuotedEvidence, withRetry };
|