@claritylabs/cl-sdk 1.3.3 → 1.3.5
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/dist/index.d.mts +176 -0
- package/dist/index.d.ts +176 -0
- package/dist/index.js +67 -639
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +67 -639
- package/dist/index.mjs.map +1 -1
- package/dist/storage-sqlite.d.mts +79 -0
- package/dist/storage-sqlite.d.ts +79 -0
- package/package.json +1 -1
|
@@ -17,14 +17,17 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
17
17
|
security: z.ZodOptional<z.ZodString>;
|
|
18
18
|
insuredName: z.ZodString;
|
|
19
19
|
premium: z.ZodOptional<z.ZodString>;
|
|
20
|
+
premiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
20
21
|
summary: z.ZodOptional<z.ZodString>;
|
|
21
22
|
policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
22
23
|
coverages: z.ZodArray<z.ZodObject<{
|
|
23
24
|
name: z.ZodString;
|
|
24
25
|
limit: z.ZodString;
|
|
26
|
+
limitAmount: z.ZodOptional<z.ZodNumber>;
|
|
25
27
|
limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
|
|
26
28
|
limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
27
29
|
deductible: z.ZodOptional<z.ZodString>;
|
|
30
|
+
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
28
31
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
29
32
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
30
33
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
@@ -38,8 +41,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
38
41
|
limit: string;
|
|
39
42
|
formNumber?: string | undefined;
|
|
40
43
|
deductible?: string | undefined;
|
|
44
|
+
limitAmount?: number | undefined;
|
|
41
45
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
42
46
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
47
|
+
deductibleAmount?: number | undefined;
|
|
43
48
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
44
49
|
pageNumber?: number | undefined;
|
|
45
50
|
sectionRef?: string | undefined;
|
|
@@ -52,8 +57,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
52
57
|
limit: string;
|
|
53
58
|
formNumber?: string | undefined;
|
|
54
59
|
deductible?: string | undefined;
|
|
60
|
+
limitAmount?: number | undefined;
|
|
55
61
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
56
62
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
63
|
+
deductibleAmount?: number | undefined;
|
|
57
64
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
58
65
|
pageNumber?: number | undefined;
|
|
59
66
|
sectionRef?: string | undefined;
|
|
@@ -319,9 +326,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
319
326
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
320
327
|
formEditionDate: z.ZodOptional<z.ZodString>;
|
|
321
328
|
limit: z.ZodString;
|
|
329
|
+
limitAmount: z.ZodOptional<z.ZodNumber>;
|
|
322
330
|
limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
|
|
323
331
|
limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
324
332
|
deductible: z.ZodOptional<z.ZodString>;
|
|
333
|
+
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
325
334
|
deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
|
|
326
335
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
327
336
|
sir: z.ZodOptional<z.ZodString>;
|
|
@@ -345,8 +354,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
345
354
|
included: boolean;
|
|
346
355
|
formNumber?: string | undefined;
|
|
347
356
|
deductible?: string | undefined;
|
|
357
|
+
limitAmount?: number | undefined;
|
|
348
358
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
349
359
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
360
|
+
deductibleAmount?: number | undefined;
|
|
350
361
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
351
362
|
pageNumber?: number | undefined;
|
|
352
363
|
sectionRef?: string | undefined;
|
|
@@ -371,8 +382,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
371
382
|
included: boolean;
|
|
372
383
|
formNumber?: string | undefined;
|
|
373
384
|
deductible?: string | undefined;
|
|
385
|
+
limitAmount?: number | undefined;
|
|
374
386
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
375
387
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
388
|
+
deductibleAmount?: number | undefined;
|
|
376
389
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
377
390
|
pageNumber?: number | undefined;
|
|
378
391
|
sectionRef?: string | undefined;
|
|
@@ -3542,22 +3555,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3542
3555
|
taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3543
3556
|
name: z.ZodString;
|
|
3544
3557
|
amount: z.ZodString;
|
|
3558
|
+
amountValue: z.ZodOptional<z.ZodNumber>;
|
|
3545
3559
|
type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
|
|
3546
3560
|
description: z.ZodOptional<z.ZodString>;
|
|
3547
3561
|
}, "strip", z.ZodTypeAny, {
|
|
3548
3562
|
name: string;
|
|
3549
3563
|
amount: string;
|
|
3550
3564
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
3565
|
+
amountValue?: number | undefined;
|
|
3551
3566
|
description?: string | undefined;
|
|
3552
3567
|
}, {
|
|
3553
3568
|
name: string;
|
|
3554
3569
|
amount: string;
|
|
3555
3570
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
3571
|
+
amountValue?: number | undefined;
|
|
3556
3572
|
description?: string | undefined;
|
|
3557
3573
|
}>, "many">>;
|
|
3558
3574
|
totalCost: z.ZodOptional<z.ZodString>;
|
|
3575
|
+
totalCostAmount: z.ZodOptional<z.ZodNumber>;
|
|
3559
3576
|
minimumPremium: z.ZodOptional<z.ZodString>;
|
|
3577
|
+
minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
3560
3578
|
depositPremium: z.ZodOptional<z.ZodString>;
|
|
3579
|
+
depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
3561
3580
|
paymentPlan: z.ZodOptional<z.ZodObject<{
|
|
3562
3581
|
installments: z.ZodArray<z.ZodObject<{
|
|
3563
3582
|
dueDate: z.ZodString;
|
|
@@ -3707,8 +3726,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
3707
3726
|
limit: string;
|
|
3708
3727
|
formNumber?: string | undefined;
|
|
3709
3728
|
deductible?: string | undefined;
|
|
3729
|
+
limitAmount?: number | undefined;
|
|
3710
3730
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
3711
3731
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
3732
|
+
deductibleAmount?: number | undefined;
|
|
3712
3733
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
3713
3734
|
pageNumber?: number | undefined;
|
|
3714
3735
|
sectionRef?: string | undefined;
|
|
@@ -4331,6 +4352,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4331
4352
|
nextReviewDate?: string | undefined;
|
|
4332
4353
|
effectiveTime?: string | undefined;
|
|
4333
4354
|
security?: string | undefined;
|
|
4355
|
+
premiumAmount?: number | undefined;
|
|
4334
4356
|
summary?: string | undefined;
|
|
4335
4357
|
policyTypes?: string[] | undefined;
|
|
4336
4358
|
sections?: {
|
|
@@ -4427,8 +4449,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4427
4449
|
included: boolean;
|
|
4428
4450
|
formNumber?: string | undefined;
|
|
4429
4451
|
deductible?: string | undefined;
|
|
4452
|
+
limitAmount?: number | undefined;
|
|
4430
4453
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
4431
4454
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
4455
|
+
deductibleAmount?: number | undefined;
|
|
4432
4456
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
4433
4457
|
pageNumber?: number | undefined;
|
|
4434
4458
|
sectionRef?: string | undefined;
|
|
@@ -4631,11 +4655,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4631
4655
|
name: string;
|
|
4632
4656
|
amount: string;
|
|
4633
4657
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
4658
|
+
amountValue?: number | undefined;
|
|
4634
4659
|
description?: string | undefined;
|
|
4635
4660
|
}[] | undefined;
|
|
4636
4661
|
totalCost?: string | undefined;
|
|
4662
|
+
totalCostAmount?: number | undefined;
|
|
4637
4663
|
minimumPremium?: string | undefined;
|
|
4664
|
+
minimumPremiumAmount?: number | undefined;
|
|
4638
4665
|
depositPremium?: string | undefined;
|
|
4666
|
+
depositPremiumAmount?: number | undefined;
|
|
4639
4667
|
paymentPlan?: {
|
|
4640
4668
|
installments: {
|
|
4641
4669
|
amount: string;
|
|
@@ -4690,8 +4718,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
4690
4718
|
limit: string;
|
|
4691
4719
|
formNumber?: string | undefined;
|
|
4692
4720
|
deductible?: string | undefined;
|
|
4721
|
+
limitAmount?: number | undefined;
|
|
4693
4722
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
4694
4723
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
4724
|
+
deductibleAmount?: number | undefined;
|
|
4695
4725
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
4696
4726
|
pageNumber?: number | undefined;
|
|
4697
4727
|
sectionRef?: string | undefined;
|
|
@@ -5314,6 +5344,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5314
5344
|
nextReviewDate?: string | undefined;
|
|
5315
5345
|
effectiveTime?: string | undefined;
|
|
5316
5346
|
security?: string | undefined;
|
|
5347
|
+
premiumAmount?: number | undefined;
|
|
5317
5348
|
summary?: string | undefined;
|
|
5318
5349
|
policyTypes?: string[] | undefined;
|
|
5319
5350
|
sections?: {
|
|
@@ -5410,8 +5441,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5410
5441
|
included: boolean;
|
|
5411
5442
|
formNumber?: string | undefined;
|
|
5412
5443
|
deductible?: string | undefined;
|
|
5444
|
+
limitAmount?: number | undefined;
|
|
5413
5445
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
5414
5446
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5447
|
+
deductibleAmount?: number | undefined;
|
|
5415
5448
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5416
5449
|
pageNumber?: number | undefined;
|
|
5417
5450
|
sectionRef?: string | undefined;
|
|
@@ -5614,11 +5647,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5614
5647
|
name: string;
|
|
5615
5648
|
amount: string;
|
|
5616
5649
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
5650
|
+
amountValue?: number | undefined;
|
|
5617
5651
|
description?: string | undefined;
|
|
5618
5652
|
}[] | undefined;
|
|
5619
5653
|
totalCost?: string | undefined;
|
|
5654
|
+
totalCostAmount?: number | undefined;
|
|
5620
5655
|
minimumPremium?: string | undefined;
|
|
5656
|
+
minimumPremiumAmount?: number | undefined;
|
|
5621
5657
|
depositPremium?: string | undefined;
|
|
5658
|
+
depositPremiumAmount?: number | undefined;
|
|
5622
5659
|
paymentPlan?: {
|
|
5623
5660
|
installments: {
|
|
5624
5661
|
amount: string;
|
|
@@ -5691,12 +5728,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5691
5728
|
premiumBreakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5692
5729
|
line: z.ZodString;
|
|
5693
5730
|
amount: z.ZodString;
|
|
5731
|
+
amountValue: z.ZodOptional<z.ZodNumber>;
|
|
5694
5732
|
}, "strip", z.ZodTypeAny, {
|
|
5695
5733
|
amount: string;
|
|
5696
5734
|
line: string;
|
|
5735
|
+
amountValue?: number | undefined;
|
|
5697
5736
|
}, {
|
|
5698
5737
|
amount: string;
|
|
5699
5738
|
line: string;
|
|
5739
|
+
amountValue?: number | undefined;
|
|
5700
5740
|
}>, "many">>;
|
|
5701
5741
|
enrichedSubjectivities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
5742
|
description: z.ZodString;
|
|
@@ -5753,14 +5793,17 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5753
5793
|
security: z.ZodOptional<z.ZodString>;
|
|
5754
5794
|
insuredName: z.ZodString;
|
|
5755
5795
|
premium: z.ZodOptional<z.ZodString>;
|
|
5796
|
+
premiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
5756
5797
|
summary: z.ZodOptional<z.ZodString>;
|
|
5757
5798
|
policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5758
5799
|
coverages: z.ZodArray<z.ZodObject<{
|
|
5759
5800
|
name: z.ZodString;
|
|
5760
5801
|
limit: z.ZodString;
|
|
5802
|
+
limitAmount: z.ZodOptional<z.ZodNumber>;
|
|
5761
5803
|
limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
|
|
5762
5804
|
limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
5763
5805
|
deductible: z.ZodOptional<z.ZodString>;
|
|
5806
|
+
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
5764
5807
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
5765
5808
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
5766
5809
|
pageNumber: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5774,8 +5817,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5774
5817
|
limit: string;
|
|
5775
5818
|
formNumber?: string | undefined;
|
|
5776
5819
|
deductible?: string | undefined;
|
|
5820
|
+
limitAmount?: number | undefined;
|
|
5777
5821
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
5778
5822
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5823
|
+
deductibleAmount?: number | undefined;
|
|
5779
5824
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5780
5825
|
pageNumber?: number | undefined;
|
|
5781
5826
|
sectionRef?: string | undefined;
|
|
@@ -5788,8 +5833,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
5788
5833
|
limit: string;
|
|
5789
5834
|
formNumber?: string | undefined;
|
|
5790
5835
|
deductible?: string | undefined;
|
|
5836
|
+
limitAmount?: number | undefined;
|
|
5791
5837
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
5792
5838
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5839
|
+
deductibleAmount?: number | undefined;
|
|
5793
5840
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
5794
5841
|
pageNumber?: number | undefined;
|
|
5795
5842
|
sectionRef?: string | undefined;
|
|
@@ -6055,9 +6102,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6055
6102
|
formNumber: z.ZodOptional<z.ZodString>;
|
|
6056
6103
|
formEditionDate: z.ZodOptional<z.ZodString>;
|
|
6057
6104
|
limit: z.ZodString;
|
|
6105
|
+
limitAmount: z.ZodOptional<z.ZodNumber>;
|
|
6058
6106
|
limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
|
|
6059
6107
|
limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
6060
6108
|
deductible: z.ZodOptional<z.ZodString>;
|
|
6109
|
+
deductibleAmount: z.ZodOptional<z.ZodNumber>;
|
|
6061
6110
|
deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
|
|
6062
6111
|
deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
|
|
6063
6112
|
sir: z.ZodOptional<z.ZodString>;
|
|
@@ -6081,8 +6130,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6081
6130
|
included: boolean;
|
|
6082
6131
|
formNumber?: string | undefined;
|
|
6083
6132
|
deductible?: string | undefined;
|
|
6133
|
+
limitAmount?: number | undefined;
|
|
6084
6134
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
6085
6135
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6136
|
+
deductibleAmount?: number | undefined;
|
|
6086
6137
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6087
6138
|
pageNumber?: number | undefined;
|
|
6088
6139
|
sectionRef?: string | undefined;
|
|
@@ -6107,8 +6158,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
6107
6158
|
included: boolean;
|
|
6108
6159
|
formNumber?: string | undefined;
|
|
6109
6160
|
deductible?: string | undefined;
|
|
6161
|
+
limitAmount?: number | undefined;
|
|
6110
6162
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
6111
6163
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6164
|
+
deductibleAmount?: number | undefined;
|
|
6112
6165
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
6113
6166
|
pageNumber?: number | undefined;
|
|
6114
6167
|
sectionRef?: string | undefined;
|
|
@@ -9278,22 +9331,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9278
9331
|
taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9279
9332
|
name: z.ZodString;
|
|
9280
9333
|
amount: z.ZodString;
|
|
9334
|
+
amountValue: z.ZodOptional<z.ZodNumber>;
|
|
9281
9335
|
type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
|
|
9282
9336
|
description: z.ZodOptional<z.ZodString>;
|
|
9283
9337
|
}, "strip", z.ZodTypeAny, {
|
|
9284
9338
|
name: string;
|
|
9285
9339
|
amount: string;
|
|
9286
9340
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
9341
|
+
amountValue?: number | undefined;
|
|
9287
9342
|
description?: string | undefined;
|
|
9288
9343
|
}, {
|
|
9289
9344
|
name: string;
|
|
9290
9345
|
amount: string;
|
|
9291
9346
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
9347
|
+
amountValue?: number | undefined;
|
|
9292
9348
|
description?: string | undefined;
|
|
9293
9349
|
}>, "many">>;
|
|
9294
9350
|
totalCost: z.ZodOptional<z.ZodString>;
|
|
9351
|
+
totalCostAmount: z.ZodOptional<z.ZodNumber>;
|
|
9295
9352
|
minimumPremium: z.ZodOptional<z.ZodString>;
|
|
9353
|
+
minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
9296
9354
|
depositPremium: z.ZodOptional<z.ZodString>;
|
|
9355
|
+
depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
|
|
9297
9356
|
paymentPlan: z.ZodOptional<z.ZodObject<{
|
|
9298
9357
|
installments: z.ZodArray<z.ZodObject<{
|
|
9299
9358
|
dueDate: z.ZodString;
|
|
@@ -9442,8 +9501,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
9442
9501
|
limit: string;
|
|
9443
9502
|
formNumber?: string | undefined;
|
|
9444
9503
|
deductible?: string | undefined;
|
|
9504
|
+
limitAmount?: number | undefined;
|
|
9445
9505
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
9446
9506
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
9507
|
+
deductibleAmount?: number | undefined;
|
|
9447
9508
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
9448
9509
|
pageNumber?: number | undefined;
|
|
9449
9510
|
sectionRef?: string | undefined;
|
|
@@ -10062,6 +10123,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10062
10123
|
supplementalPremium?: string | undefined;
|
|
10063
10124
|
} | undefined;
|
|
10064
10125
|
security?: string | undefined;
|
|
10126
|
+
premiumAmount?: number | undefined;
|
|
10065
10127
|
summary?: string | undefined;
|
|
10066
10128
|
policyTypes?: string[] | undefined;
|
|
10067
10129
|
sections?: {
|
|
@@ -10158,8 +10220,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10158
10220
|
included: boolean;
|
|
10159
10221
|
formNumber?: string | undefined;
|
|
10160
10222
|
deductible?: string | undefined;
|
|
10223
|
+
limitAmount?: number | undefined;
|
|
10161
10224
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
10162
10225
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10226
|
+
deductibleAmount?: number | undefined;
|
|
10163
10227
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10164
10228
|
pageNumber?: number | undefined;
|
|
10165
10229
|
sectionRef?: string | undefined;
|
|
@@ -10362,11 +10426,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10362
10426
|
name: string;
|
|
10363
10427
|
amount: string;
|
|
10364
10428
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
10429
|
+
amountValue?: number | undefined;
|
|
10365
10430
|
description?: string | undefined;
|
|
10366
10431
|
}[] | undefined;
|
|
10367
10432
|
totalCost?: string | undefined;
|
|
10433
|
+
totalCostAmount?: number | undefined;
|
|
10368
10434
|
minimumPremium?: string | undefined;
|
|
10435
|
+
minimumPremiumAmount?: number | undefined;
|
|
10369
10436
|
depositPremium?: string | undefined;
|
|
10437
|
+
depositPremiumAmount?: number | undefined;
|
|
10370
10438
|
paymentPlan?: {
|
|
10371
10439
|
installments: {
|
|
10372
10440
|
amount: string;
|
|
@@ -10426,6 +10494,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10426
10494
|
premiumBreakdown?: {
|
|
10427
10495
|
amount: string;
|
|
10428
10496
|
line: string;
|
|
10497
|
+
amountValue?: number | undefined;
|
|
10429
10498
|
}[] | undefined;
|
|
10430
10499
|
enrichedSubjectivities?: {
|
|
10431
10500
|
description: string;
|
|
@@ -10454,8 +10523,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
10454
10523
|
limit: string;
|
|
10455
10524
|
formNumber?: string | undefined;
|
|
10456
10525
|
deductible?: string | undefined;
|
|
10526
|
+
limitAmount?: number | undefined;
|
|
10457
10527
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
10458
10528
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10529
|
+
deductibleAmount?: number | undefined;
|
|
10459
10530
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
10460
10531
|
pageNumber?: number | undefined;
|
|
10461
10532
|
sectionRef?: string | undefined;
|
|
@@ -11074,6 +11145,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11074
11145
|
supplementalPremium?: string | undefined;
|
|
11075
11146
|
} | undefined;
|
|
11076
11147
|
security?: string | undefined;
|
|
11148
|
+
premiumAmount?: number | undefined;
|
|
11077
11149
|
summary?: string | undefined;
|
|
11078
11150
|
policyTypes?: string[] | undefined;
|
|
11079
11151
|
sections?: {
|
|
@@ -11170,8 +11242,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11170
11242
|
included: boolean;
|
|
11171
11243
|
formNumber?: string | undefined;
|
|
11172
11244
|
deductible?: string | undefined;
|
|
11245
|
+
limitAmount?: number | undefined;
|
|
11173
11246
|
limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
|
|
11174
11247
|
limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11248
|
+
deductibleAmount?: number | undefined;
|
|
11175
11249
|
deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
|
|
11176
11250
|
pageNumber?: number | undefined;
|
|
11177
11251
|
sectionRef?: string | undefined;
|
|
@@ -11374,11 +11448,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11374
11448
|
name: string;
|
|
11375
11449
|
amount: string;
|
|
11376
11450
|
type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
|
|
11451
|
+
amountValue?: number | undefined;
|
|
11377
11452
|
description?: string | undefined;
|
|
11378
11453
|
}[] | undefined;
|
|
11379
11454
|
totalCost?: string | undefined;
|
|
11455
|
+
totalCostAmount?: number | undefined;
|
|
11380
11456
|
minimumPremium?: string | undefined;
|
|
11457
|
+
minimumPremiumAmount?: number | undefined;
|
|
11381
11458
|
depositPremium?: string | undefined;
|
|
11459
|
+
depositPremiumAmount?: number | undefined;
|
|
11382
11460
|
paymentPlan?: {
|
|
11383
11461
|
installments: {
|
|
11384
11462
|
amount: string;
|
|
@@ -11438,6 +11516,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
11438
11516
|
premiumBreakdown?: {
|
|
11439
11517
|
amount: string;
|
|
11440
11518
|
line: string;
|
|
11519
|
+
amountValue?: number | undefined;
|
|
11441
11520
|
}[] | undefined;
|
|
11442
11521
|
enrichedSubjectivities?: {
|
|
11443
11522
|
description: string;
|