@claritylabs/cl-sdk 1.3.2 → 1.3.4

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 CHANGED
@@ -479,17 +479,20 @@ type FormReference = z.infer<typeof FormReferenceSchema>;
479
479
  declare const TaxFeeItemSchema: z.ZodObject<{
480
480
  name: z.ZodString;
481
481
  amount: z.ZodString;
482
+ amountValue: z.ZodOptional<z.ZodNumber>;
482
483
  type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
483
484
  description: z.ZodOptional<z.ZodString>;
484
485
  }, "strip", z.ZodTypeAny, {
485
486
  name: string;
486
487
  amount: string;
487
488
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
489
+ amountValue?: number | undefined;
488
490
  description?: string | undefined;
489
491
  }, {
490
492
  name: string;
491
493
  amount: string;
492
494
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
495
+ amountValue?: number | undefined;
493
496
  description?: string | undefined;
494
497
  }>;
495
498
  type TaxFeeItem = z.infer<typeof TaxFeeItemSchema>;
@@ -607,9 +610,11 @@ type CoverageValueType = z.infer<typeof CoverageValueTypeSchema>;
607
610
  declare const CoverageSchema: z.ZodObject<{
608
611
  name: z.ZodString;
609
612
  limit: z.ZodString;
613
+ limitAmount: z.ZodOptional<z.ZodNumber>;
610
614
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
611
615
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
612
616
  deductible: z.ZodOptional<z.ZodString>;
617
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
613
618
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
614
619
  formNumber: z.ZodOptional<z.ZodString>;
615
620
  pageNumber: z.ZodOptional<z.ZodNumber>;
@@ -623,8 +628,10 @@ declare const CoverageSchema: z.ZodObject<{
623
628
  limit: string;
624
629
  formNumber?: string | undefined;
625
630
  deductible?: string | undefined;
631
+ limitAmount?: number | undefined;
626
632
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
627
633
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
634
+ deductibleAmount?: number | undefined;
628
635
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
629
636
  pageNumber?: number | undefined;
630
637
  sectionRef?: string | undefined;
@@ -637,8 +644,10 @@ declare const CoverageSchema: z.ZodObject<{
637
644
  limit: string;
638
645
  formNumber?: string | undefined;
639
646
  deductible?: string | undefined;
647
+ limitAmount?: number | undefined;
640
648
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
641
649
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
650
+ deductibleAmount?: number | undefined;
642
651
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
643
652
  pageNumber?: number | undefined;
644
653
  sectionRef?: string | undefined;
@@ -654,9 +663,11 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
654
663
  formNumber: z.ZodOptional<z.ZodString>;
655
664
  formEditionDate: z.ZodOptional<z.ZodString>;
656
665
  limit: z.ZodString;
666
+ limitAmount: z.ZodOptional<z.ZodNumber>;
657
667
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
658
668
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
659
669
  deductible: z.ZodOptional<z.ZodString>;
670
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
660
671
  deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
661
672
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
662
673
  sir: z.ZodOptional<z.ZodString>;
@@ -680,8 +691,10 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
680
691
  included: boolean;
681
692
  formNumber?: string | undefined;
682
693
  deductible?: string | undefined;
694
+ limitAmount?: number | undefined;
683
695
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
684
696
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
697
+ deductibleAmount?: number | undefined;
685
698
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
686
699
  pageNumber?: number | undefined;
687
700
  sectionRef?: string | undefined;
@@ -706,8 +719,10 @@ declare const EnrichedCoverageSchema: z.ZodObject<{
706
719
  included: boolean;
707
720
  formNumber?: string | undefined;
708
721
  deductible?: string | undefined;
722
+ limitAmount?: number | undefined;
709
723
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
710
724
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
725
+ deductibleAmount?: number | undefined;
711
726
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
712
727
  pageNumber?: number | undefined;
713
728
  sectionRef?: string | undefined;
@@ -6427,12 +6442,15 @@ type UnderwritingCondition = z.infer<typeof UnderwritingConditionSchema>;
6427
6442
  declare const PremiumLineSchema: z.ZodObject<{
6428
6443
  line: z.ZodString;
6429
6444
  amount: z.ZodString;
6445
+ amountValue: z.ZodOptional<z.ZodNumber>;
6430
6446
  }, "strip", z.ZodTypeAny, {
6431
6447
  amount: string;
6432
6448
  line: string;
6449
+ amountValue?: number | undefined;
6433
6450
  }, {
6434
6451
  amount: string;
6435
6452
  line: string;
6453
+ amountValue?: number | undefined;
6436
6454
  }>;
6437
6455
  type PremiumLine = z.infer<typeof PremiumLineSchema>;
6438
6456
  declare const AuxiliaryFactSchema: z.ZodObject<{
@@ -6550,14 +6568,17 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6550
6568
  security: z.ZodOptional<z.ZodString>;
6551
6569
  insuredName: z.ZodString;
6552
6570
  premium: z.ZodOptional<z.ZodString>;
6571
+ premiumAmount: z.ZodOptional<z.ZodNumber>;
6553
6572
  summary: z.ZodOptional<z.ZodString>;
6554
6573
  policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6555
6574
  coverages: z.ZodArray<z.ZodObject<{
6556
6575
  name: z.ZodString;
6557
6576
  limit: z.ZodString;
6577
+ limitAmount: z.ZodOptional<z.ZodNumber>;
6558
6578
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
6559
6579
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
6560
6580
  deductible: z.ZodOptional<z.ZodString>;
6581
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
6561
6582
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
6562
6583
  formNumber: z.ZodOptional<z.ZodString>;
6563
6584
  pageNumber: z.ZodOptional<z.ZodNumber>;
@@ -6571,8 +6592,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6571
6592
  limit: string;
6572
6593
  formNumber?: string | undefined;
6573
6594
  deductible?: string | undefined;
6595
+ limitAmount?: number | undefined;
6574
6596
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
6575
6597
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6598
+ deductibleAmount?: number | undefined;
6576
6599
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6577
6600
  pageNumber?: number | undefined;
6578
6601
  sectionRef?: string | undefined;
@@ -6585,8 +6608,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6585
6608
  limit: string;
6586
6609
  formNumber?: string | undefined;
6587
6610
  deductible?: string | undefined;
6611
+ limitAmount?: number | undefined;
6588
6612
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
6589
6613
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6614
+ deductibleAmount?: number | undefined;
6590
6615
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6591
6616
  pageNumber?: number | undefined;
6592
6617
  sectionRef?: string | undefined;
@@ -6852,9 +6877,11 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6852
6877
  formNumber: z.ZodOptional<z.ZodString>;
6853
6878
  formEditionDate: z.ZodOptional<z.ZodString>;
6854
6879
  limit: z.ZodString;
6880
+ limitAmount: z.ZodOptional<z.ZodNumber>;
6855
6881
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
6856
6882
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
6857
6883
  deductible: z.ZodOptional<z.ZodString>;
6884
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
6858
6885
  deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
6859
6886
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
6860
6887
  sir: z.ZodOptional<z.ZodString>;
@@ -6878,8 +6905,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6878
6905
  included: boolean;
6879
6906
  formNumber?: string | undefined;
6880
6907
  deductible?: string | undefined;
6908
+ limitAmount?: number | undefined;
6881
6909
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
6882
6910
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6911
+ deductibleAmount?: number | undefined;
6883
6912
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6884
6913
  pageNumber?: number | undefined;
6885
6914
  sectionRef?: string | undefined;
@@ -6904,8 +6933,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6904
6933
  included: boolean;
6905
6934
  formNumber?: string | undefined;
6906
6935
  deductible?: string | undefined;
6936
+ limitAmount?: number | undefined;
6907
6937
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
6908
6938
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6939
+ deductibleAmount?: number | undefined;
6909
6940
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
6910
6941
  pageNumber?: number | undefined;
6911
6942
  sectionRef?: string | undefined;
@@ -10075,22 +10106,28 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10075
10106
  taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
10076
10107
  name: z.ZodString;
10077
10108
  amount: z.ZodString;
10109
+ amountValue: z.ZodOptional<z.ZodNumber>;
10078
10110
  type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
10079
10111
  description: z.ZodOptional<z.ZodString>;
10080
10112
  }, "strip", z.ZodTypeAny, {
10081
10113
  name: string;
10082
10114
  amount: string;
10083
10115
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
10116
+ amountValue?: number | undefined;
10084
10117
  description?: string | undefined;
10085
10118
  }, {
10086
10119
  name: string;
10087
10120
  amount: string;
10088
10121
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
10122
+ amountValue?: number | undefined;
10089
10123
  description?: string | undefined;
10090
10124
  }>, "many">>;
10091
10125
  totalCost: z.ZodOptional<z.ZodString>;
10126
+ totalCostAmount: z.ZodOptional<z.ZodNumber>;
10092
10127
  minimumPremium: z.ZodOptional<z.ZodString>;
10128
+ minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
10093
10129
  depositPremium: z.ZodOptional<z.ZodString>;
10130
+ depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
10094
10131
  paymentPlan: z.ZodOptional<z.ZodObject<{
10095
10132
  installments: z.ZodArray<z.ZodObject<{
10096
10133
  dueDate: z.ZodString;
@@ -10240,8 +10277,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10240
10277
  limit: string;
10241
10278
  formNumber?: string | undefined;
10242
10279
  deductible?: string | undefined;
10280
+ limitAmount?: number | undefined;
10243
10281
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
10244
10282
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
10283
+ deductibleAmount?: number | undefined;
10245
10284
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
10246
10285
  pageNumber?: number | undefined;
10247
10286
  sectionRef?: string | undefined;
@@ -10864,6 +10903,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10864
10903
  nextReviewDate?: string | undefined;
10865
10904
  effectiveTime?: string | undefined;
10866
10905
  security?: string | undefined;
10906
+ premiumAmount?: number | undefined;
10867
10907
  summary?: string | undefined;
10868
10908
  policyTypes?: string[] | undefined;
10869
10909
  sections?: {
@@ -10960,8 +11000,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10960
11000
  included: boolean;
10961
11001
  formNumber?: string | undefined;
10962
11002
  deductible?: string | undefined;
11003
+ limitAmount?: number | undefined;
10963
11004
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
10964
11005
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
11006
+ deductibleAmount?: number | undefined;
10965
11007
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
10966
11008
  pageNumber?: number | undefined;
10967
11009
  sectionRef?: string | undefined;
@@ -11164,11 +11206,15 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11164
11206
  name: string;
11165
11207
  amount: string;
11166
11208
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
11209
+ amountValue?: number | undefined;
11167
11210
  description?: string | undefined;
11168
11211
  }[] | undefined;
11169
11212
  totalCost?: string | undefined;
11213
+ totalCostAmount?: number | undefined;
11170
11214
  minimumPremium?: string | undefined;
11215
+ minimumPremiumAmount?: number | undefined;
11171
11216
  depositPremium?: string | undefined;
11217
+ depositPremiumAmount?: number | undefined;
11172
11218
  paymentPlan?: {
11173
11219
  installments: {
11174
11220
  amount: string;
@@ -11223,8 +11269,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11223
11269
  limit: string;
11224
11270
  formNumber?: string | undefined;
11225
11271
  deductible?: string | undefined;
11272
+ limitAmount?: number | undefined;
11226
11273
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
11227
11274
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
11275
+ deductibleAmount?: number | undefined;
11228
11276
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
11229
11277
  pageNumber?: number | undefined;
11230
11278
  sectionRef?: string | undefined;
@@ -11847,6 +11895,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11847
11895
  nextReviewDate?: string | undefined;
11848
11896
  effectiveTime?: string | undefined;
11849
11897
  security?: string | undefined;
11898
+ premiumAmount?: number | undefined;
11850
11899
  summary?: string | undefined;
11851
11900
  policyTypes?: string[] | undefined;
11852
11901
  sections?: {
@@ -11943,8 +11992,10 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11943
11992
  included: boolean;
11944
11993
  formNumber?: string | undefined;
11945
11994
  deductible?: string | undefined;
11995
+ limitAmount?: number | undefined;
11946
11996
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
11947
11997
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
11998
+ deductibleAmount?: number | undefined;
11948
11999
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
11949
12000
  pageNumber?: number | undefined;
11950
12001
  sectionRef?: string | undefined;
@@ -12147,11 +12198,15 @@ declare const PolicyDocumentSchema: z.ZodObject<{
12147
12198
  name: string;
12148
12199
  amount: string;
12149
12200
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
12201
+ amountValue?: number | undefined;
12150
12202
  description?: string | undefined;
12151
12203
  }[] | undefined;
12152
12204
  totalCost?: string | undefined;
12205
+ totalCostAmount?: number | undefined;
12153
12206
  minimumPremium?: string | undefined;
12207
+ minimumPremiumAmount?: number | undefined;
12154
12208
  depositPremium?: string | undefined;
12209
+ depositPremiumAmount?: number | undefined;
12155
12210
  paymentPlan?: {
12156
12211
  installments: {
12157
12212
  amount: string;
@@ -12226,12 +12281,15 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12226
12281
  premiumBreakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
12227
12282
  line: z.ZodString;
12228
12283
  amount: z.ZodString;
12284
+ amountValue: z.ZodOptional<z.ZodNumber>;
12229
12285
  }, "strip", z.ZodTypeAny, {
12230
12286
  amount: string;
12231
12287
  line: string;
12288
+ amountValue?: number | undefined;
12232
12289
  }, {
12233
12290
  amount: string;
12234
12291
  line: string;
12292
+ amountValue?: number | undefined;
12235
12293
  }>, "many">>;
12236
12294
  enrichedSubjectivities: z.ZodOptional<z.ZodArray<z.ZodObject<{
12237
12295
  description: z.ZodString;
@@ -12288,14 +12346,17 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12288
12346
  security: z.ZodOptional<z.ZodString>;
12289
12347
  insuredName: z.ZodString;
12290
12348
  premium: z.ZodOptional<z.ZodString>;
12349
+ premiumAmount: z.ZodOptional<z.ZodNumber>;
12291
12350
  summary: z.ZodOptional<z.ZodString>;
12292
12351
  policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12293
12352
  coverages: z.ZodArray<z.ZodObject<{
12294
12353
  name: z.ZodString;
12295
12354
  limit: z.ZodString;
12355
+ limitAmount: z.ZodOptional<z.ZodNumber>;
12296
12356
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
12297
12357
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
12298
12358
  deductible: z.ZodOptional<z.ZodString>;
12359
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
12299
12360
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
12300
12361
  formNumber: z.ZodOptional<z.ZodString>;
12301
12362
  pageNumber: z.ZodOptional<z.ZodNumber>;
@@ -12309,8 +12370,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12309
12370
  limit: string;
12310
12371
  formNumber?: string | undefined;
12311
12372
  deductible?: string | undefined;
12373
+ limitAmount?: number | undefined;
12312
12374
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
12313
12375
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12376
+ deductibleAmount?: number | undefined;
12314
12377
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12315
12378
  pageNumber?: number | undefined;
12316
12379
  sectionRef?: string | undefined;
@@ -12323,8 +12386,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12323
12386
  limit: string;
12324
12387
  formNumber?: string | undefined;
12325
12388
  deductible?: string | undefined;
12389
+ limitAmount?: number | undefined;
12326
12390
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
12327
12391
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12392
+ deductibleAmount?: number | undefined;
12328
12393
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12329
12394
  pageNumber?: number | undefined;
12330
12395
  sectionRef?: string | undefined;
@@ -12590,9 +12655,11 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12590
12655
  formNumber: z.ZodOptional<z.ZodString>;
12591
12656
  formEditionDate: z.ZodOptional<z.ZodString>;
12592
12657
  limit: z.ZodString;
12658
+ limitAmount: z.ZodOptional<z.ZodNumber>;
12593
12659
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
12594
12660
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
12595
12661
  deductible: z.ZodOptional<z.ZodString>;
12662
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
12596
12663
  deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
12597
12664
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
12598
12665
  sir: z.ZodOptional<z.ZodString>;
@@ -12616,8 +12683,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12616
12683
  included: boolean;
12617
12684
  formNumber?: string | undefined;
12618
12685
  deductible?: string | undefined;
12686
+ limitAmount?: number | undefined;
12619
12687
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
12620
12688
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12689
+ deductibleAmount?: number | undefined;
12621
12690
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12622
12691
  pageNumber?: number | undefined;
12623
12692
  sectionRef?: string | undefined;
@@ -12642,8 +12711,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12642
12711
  included: boolean;
12643
12712
  formNumber?: string | undefined;
12644
12713
  deductible?: string | undefined;
12714
+ limitAmount?: number | undefined;
12645
12715
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
12646
12716
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12717
+ deductibleAmount?: number | undefined;
12647
12718
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
12648
12719
  pageNumber?: number | undefined;
12649
12720
  sectionRef?: string | undefined;
@@ -15813,22 +15884,28 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15813
15884
  taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
15814
15885
  name: z.ZodString;
15815
15886
  amount: z.ZodString;
15887
+ amountValue: z.ZodOptional<z.ZodNumber>;
15816
15888
  type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
15817
15889
  description: z.ZodOptional<z.ZodString>;
15818
15890
  }, "strip", z.ZodTypeAny, {
15819
15891
  name: string;
15820
15892
  amount: string;
15821
15893
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
15894
+ amountValue?: number | undefined;
15822
15895
  description?: string | undefined;
15823
15896
  }, {
15824
15897
  name: string;
15825
15898
  amount: string;
15826
15899
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
15900
+ amountValue?: number | undefined;
15827
15901
  description?: string | undefined;
15828
15902
  }>, "many">>;
15829
15903
  totalCost: z.ZodOptional<z.ZodString>;
15904
+ totalCostAmount: z.ZodOptional<z.ZodNumber>;
15830
15905
  minimumPremium: z.ZodOptional<z.ZodString>;
15906
+ minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
15831
15907
  depositPremium: z.ZodOptional<z.ZodString>;
15908
+ depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
15832
15909
  paymentPlan: z.ZodOptional<z.ZodObject<{
15833
15910
  installments: z.ZodArray<z.ZodObject<{
15834
15911
  dueDate: z.ZodString;
@@ -15977,8 +16054,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15977
16054
  limit: string;
15978
16055
  formNumber?: string | undefined;
15979
16056
  deductible?: string | undefined;
16057
+ limitAmount?: number | undefined;
15980
16058
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
15981
16059
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
16060
+ deductibleAmount?: number | undefined;
15982
16061
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
15983
16062
  pageNumber?: number | undefined;
15984
16063
  sectionRef?: string | undefined;
@@ -16597,6 +16676,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16597
16676
  supplementalPremium?: string | undefined;
16598
16677
  } | undefined;
16599
16678
  security?: string | undefined;
16679
+ premiumAmount?: number | undefined;
16600
16680
  summary?: string | undefined;
16601
16681
  policyTypes?: string[] | undefined;
16602
16682
  sections?: {
@@ -16693,8 +16773,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16693
16773
  included: boolean;
16694
16774
  formNumber?: string | undefined;
16695
16775
  deductible?: string | undefined;
16776
+ limitAmount?: number | undefined;
16696
16777
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
16697
16778
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
16779
+ deductibleAmount?: number | undefined;
16698
16780
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
16699
16781
  pageNumber?: number | undefined;
16700
16782
  sectionRef?: string | undefined;
@@ -16897,11 +16979,15 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16897
16979
  name: string;
16898
16980
  amount: string;
16899
16981
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
16982
+ amountValue?: number | undefined;
16900
16983
  description?: string | undefined;
16901
16984
  }[] | undefined;
16902
16985
  totalCost?: string | undefined;
16986
+ totalCostAmount?: number | undefined;
16903
16987
  minimumPremium?: string | undefined;
16988
+ minimumPremiumAmount?: number | undefined;
16904
16989
  depositPremium?: string | undefined;
16990
+ depositPremiumAmount?: number | undefined;
16905
16991
  paymentPlan?: {
16906
16992
  installments: {
16907
16993
  amount: string;
@@ -16961,6 +17047,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16961
17047
  premiumBreakdown?: {
16962
17048
  amount: string;
16963
17049
  line: string;
17050
+ amountValue?: number | undefined;
16964
17051
  }[] | undefined;
16965
17052
  enrichedSubjectivities?: {
16966
17053
  description: string;
@@ -16989,8 +17076,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16989
17076
  limit: string;
16990
17077
  formNumber?: string | undefined;
16991
17078
  deductible?: string | undefined;
17079
+ limitAmount?: number | undefined;
16992
17080
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
16993
17081
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
17082
+ deductibleAmount?: number | undefined;
16994
17083
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
16995
17084
  pageNumber?: number | undefined;
16996
17085
  sectionRef?: string | undefined;
@@ -17609,6 +17698,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
17609
17698
  supplementalPremium?: string | undefined;
17610
17699
  } | undefined;
17611
17700
  security?: string | undefined;
17701
+ premiumAmount?: number | undefined;
17612
17702
  summary?: string | undefined;
17613
17703
  policyTypes?: string[] | undefined;
17614
17704
  sections?: {
@@ -17705,8 +17795,10 @@ declare const QuoteDocumentSchema: z.ZodObject<{
17705
17795
  included: boolean;
17706
17796
  formNumber?: string | undefined;
17707
17797
  deductible?: string | undefined;
17798
+ limitAmount?: number | undefined;
17708
17799
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
17709
17800
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
17801
+ deductibleAmount?: number | undefined;
17710
17802
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
17711
17803
  pageNumber?: number | undefined;
17712
17804
  sectionRef?: string | undefined;
@@ -17909,11 +18001,15 @@ declare const QuoteDocumentSchema: z.ZodObject<{
17909
18001
  name: string;
17910
18002
  amount: string;
17911
18003
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
18004
+ amountValue?: number | undefined;
17912
18005
  description?: string | undefined;
17913
18006
  }[] | undefined;
17914
18007
  totalCost?: string | undefined;
18008
+ totalCostAmount?: number | undefined;
17915
18009
  minimumPremium?: string | undefined;
18010
+ minimumPremiumAmount?: number | undefined;
17916
18011
  depositPremium?: string | undefined;
18012
+ depositPremiumAmount?: number | undefined;
17917
18013
  paymentPlan?: {
17918
18014
  installments: {
17919
18015
  amount: string;
@@ -17973,6 +18069,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
17973
18069
  premiumBreakdown?: {
17974
18070
  amount: string;
17975
18071
  line: string;
18072
+ amountValue?: number | undefined;
17976
18073
  }[] | undefined;
17977
18074
  enrichedSubjectivities?: {
17978
18075
  description: string;
@@ -18009,14 +18106,17 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18009
18106
  security: z.ZodOptional<z.ZodString>;
18010
18107
  insuredName: z.ZodString;
18011
18108
  premium: z.ZodOptional<z.ZodString>;
18109
+ premiumAmount: z.ZodOptional<z.ZodNumber>;
18012
18110
  summary: z.ZodOptional<z.ZodString>;
18013
18111
  policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18014
18112
  coverages: z.ZodArray<z.ZodObject<{
18015
18113
  name: z.ZodString;
18016
18114
  limit: z.ZodString;
18115
+ limitAmount: z.ZodOptional<z.ZodNumber>;
18017
18116
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
18018
18117
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
18019
18118
  deductible: z.ZodOptional<z.ZodString>;
18119
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
18020
18120
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
18021
18121
  formNumber: z.ZodOptional<z.ZodString>;
18022
18122
  pageNumber: z.ZodOptional<z.ZodNumber>;
@@ -18030,8 +18130,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18030
18130
  limit: string;
18031
18131
  formNumber?: string | undefined;
18032
18132
  deductible?: string | undefined;
18133
+ limitAmount?: number | undefined;
18033
18134
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
18034
18135
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18136
+ deductibleAmount?: number | undefined;
18035
18137
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18036
18138
  pageNumber?: number | undefined;
18037
18139
  sectionRef?: string | undefined;
@@ -18044,8 +18146,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18044
18146
  limit: string;
18045
18147
  formNumber?: string | undefined;
18046
18148
  deductible?: string | undefined;
18149
+ limitAmount?: number | undefined;
18047
18150
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
18048
18151
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18152
+ deductibleAmount?: number | undefined;
18049
18153
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18050
18154
  pageNumber?: number | undefined;
18051
18155
  sectionRef?: string | undefined;
@@ -18311,9 +18415,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18311
18415
  formNumber: z.ZodOptional<z.ZodString>;
18312
18416
  formEditionDate: z.ZodOptional<z.ZodString>;
18313
18417
  limit: z.ZodString;
18418
+ limitAmount: z.ZodOptional<z.ZodNumber>;
18314
18419
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
18315
18420
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
18316
18421
  deductible: z.ZodOptional<z.ZodString>;
18422
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
18317
18423
  deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
18318
18424
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
18319
18425
  sir: z.ZodOptional<z.ZodString>;
@@ -18337,8 +18443,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18337
18443
  included: boolean;
18338
18444
  formNumber?: string | undefined;
18339
18445
  deductible?: string | undefined;
18446
+ limitAmount?: number | undefined;
18340
18447
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
18341
18448
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18449
+ deductibleAmount?: number | undefined;
18342
18450
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18343
18451
  pageNumber?: number | undefined;
18344
18452
  sectionRef?: string | undefined;
@@ -18363,8 +18471,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18363
18471
  included: boolean;
18364
18472
  formNumber?: string | undefined;
18365
18473
  deductible?: string | undefined;
18474
+ limitAmount?: number | undefined;
18366
18475
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
18367
18476
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18477
+ deductibleAmount?: number | undefined;
18368
18478
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
18369
18479
  pageNumber?: number | undefined;
18370
18480
  sectionRef?: string | undefined;
@@ -21534,22 +21644,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21534
21644
  taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
21535
21645
  name: z.ZodString;
21536
21646
  amount: z.ZodString;
21647
+ amountValue: z.ZodOptional<z.ZodNumber>;
21537
21648
  type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
21538
21649
  description: z.ZodOptional<z.ZodString>;
21539
21650
  }, "strip", z.ZodTypeAny, {
21540
21651
  name: string;
21541
21652
  amount: string;
21542
21653
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
21654
+ amountValue?: number | undefined;
21543
21655
  description?: string | undefined;
21544
21656
  }, {
21545
21657
  name: string;
21546
21658
  amount: string;
21547
21659
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
21660
+ amountValue?: number | undefined;
21548
21661
  description?: string | undefined;
21549
21662
  }>, "many">>;
21550
21663
  totalCost: z.ZodOptional<z.ZodString>;
21664
+ totalCostAmount: z.ZodOptional<z.ZodNumber>;
21551
21665
  minimumPremium: z.ZodOptional<z.ZodString>;
21666
+ minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
21552
21667
  depositPremium: z.ZodOptional<z.ZodString>;
21668
+ depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
21553
21669
  paymentPlan: z.ZodOptional<z.ZodObject<{
21554
21670
  installments: z.ZodArray<z.ZodObject<{
21555
21671
  dueDate: z.ZodString;
@@ -21699,8 +21815,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21699
21815
  limit: string;
21700
21816
  formNumber?: string | undefined;
21701
21817
  deductible?: string | undefined;
21818
+ limitAmount?: number | undefined;
21702
21819
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
21703
21820
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
21821
+ deductibleAmount?: number | undefined;
21704
21822
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
21705
21823
  pageNumber?: number | undefined;
21706
21824
  sectionRef?: string | undefined;
@@ -22323,6 +22441,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22323
22441
  nextReviewDate?: string | undefined;
22324
22442
  effectiveTime?: string | undefined;
22325
22443
  security?: string | undefined;
22444
+ premiumAmount?: number | undefined;
22326
22445
  summary?: string | undefined;
22327
22446
  policyTypes?: string[] | undefined;
22328
22447
  sections?: {
@@ -22419,8 +22538,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22419
22538
  included: boolean;
22420
22539
  formNumber?: string | undefined;
22421
22540
  deductible?: string | undefined;
22541
+ limitAmount?: number | undefined;
22422
22542
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
22423
22543
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
22544
+ deductibleAmount?: number | undefined;
22424
22545
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
22425
22546
  pageNumber?: number | undefined;
22426
22547
  sectionRef?: string | undefined;
@@ -22623,11 +22744,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22623
22744
  name: string;
22624
22745
  amount: string;
22625
22746
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
22747
+ amountValue?: number | undefined;
22626
22748
  description?: string | undefined;
22627
22749
  }[] | undefined;
22628
22750
  totalCost?: string | undefined;
22751
+ totalCostAmount?: number | undefined;
22629
22752
  minimumPremium?: string | undefined;
22753
+ minimumPremiumAmount?: number | undefined;
22630
22754
  depositPremium?: string | undefined;
22755
+ depositPremiumAmount?: number | undefined;
22631
22756
  paymentPlan?: {
22632
22757
  installments: {
22633
22758
  amount: string;
@@ -22682,8 +22807,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22682
22807
  limit: string;
22683
22808
  formNumber?: string | undefined;
22684
22809
  deductible?: string | undefined;
22810
+ limitAmount?: number | undefined;
22685
22811
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
22686
22812
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
22813
+ deductibleAmount?: number | undefined;
22687
22814
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
22688
22815
  pageNumber?: number | undefined;
22689
22816
  sectionRef?: string | undefined;
@@ -23306,6 +23433,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23306
23433
  nextReviewDate?: string | undefined;
23307
23434
  effectiveTime?: string | undefined;
23308
23435
  security?: string | undefined;
23436
+ premiumAmount?: number | undefined;
23309
23437
  summary?: string | undefined;
23310
23438
  policyTypes?: string[] | undefined;
23311
23439
  sections?: {
@@ -23402,8 +23530,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23402
23530
  included: boolean;
23403
23531
  formNumber?: string | undefined;
23404
23532
  deductible?: string | undefined;
23533
+ limitAmount?: number | undefined;
23405
23534
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
23406
23535
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23536
+ deductibleAmount?: number | undefined;
23407
23537
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23408
23538
  pageNumber?: number | undefined;
23409
23539
  sectionRef?: string | undefined;
@@ -23606,11 +23736,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23606
23736
  name: string;
23607
23737
  amount: string;
23608
23738
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
23739
+ amountValue?: number | undefined;
23609
23740
  description?: string | undefined;
23610
23741
  }[] | undefined;
23611
23742
  totalCost?: string | undefined;
23743
+ totalCostAmount?: number | undefined;
23612
23744
  minimumPremium?: string | undefined;
23745
+ minimumPremiumAmount?: number | undefined;
23613
23746
  depositPremium?: string | undefined;
23747
+ depositPremiumAmount?: number | undefined;
23614
23748
  paymentPlan?: {
23615
23749
  installments: {
23616
23750
  amount: string;
@@ -23683,12 +23817,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23683
23817
  premiumBreakdown: z.ZodOptional<z.ZodArray<z.ZodObject<{
23684
23818
  line: z.ZodString;
23685
23819
  amount: z.ZodString;
23820
+ amountValue: z.ZodOptional<z.ZodNumber>;
23686
23821
  }, "strip", z.ZodTypeAny, {
23687
23822
  amount: string;
23688
23823
  line: string;
23824
+ amountValue?: number | undefined;
23689
23825
  }, {
23690
23826
  amount: string;
23691
23827
  line: string;
23828
+ amountValue?: number | undefined;
23692
23829
  }>, "many">>;
23693
23830
  enrichedSubjectivities: z.ZodOptional<z.ZodArray<z.ZodObject<{
23694
23831
  description: z.ZodString;
@@ -23745,14 +23882,17 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23745
23882
  security: z.ZodOptional<z.ZodString>;
23746
23883
  insuredName: z.ZodString;
23747
23884
  premium: z.ZodOptional<z.ZodString>;
23885
+ premiumAmount: z.ZodOptional<z.ZodNumber>;
23748
23886
  summary: z.ZodOptional<z.ZodString>;
23749
23887
  policyTypes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
23750
23888
  coverages: z.ZodArray<z.ZodObject<{
23751
23889
  name: z.ZodString;
23752
23890
  limit: z.ZodString;
23891
+ limitAmount: z.ZodOptional<z.ZodNumber>;
23753
23892
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
23754
23893
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
23755
23894
  deductible: z.ZodOptional<z.ZodString>;
23895
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
23756
23896
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
23757
23897
  formNumber: z.ZodOptional<z.ZodString>;
23758
23898
  pageNumber: z.ZodOptional<z.ZodNumber>;
@@ -23766,8 +23906,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23766
23906
  limit: string;
23767
23907
  formNumber?: string | undefined;
23768
23908
  deductible?: string | undefined;
23909
+ limitAmount?: number | undefined;
23769
23910
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
23770
23911
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23912
+ deductibleAmount?: number | undefined;
23771
23913
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23772
23914
  pageNumber?: number | undefined;
23773
23915
  sectionRef?: string | undefined;
@@ -23780,8 +23922,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23780
23922
  limit: string;
23781
23923
  formNumber?: string | undefined;
23782
23924
  deductible?: string | undefined;
23925
+ limitAmount?: number | undefined;
23783
23926
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
23784
23927
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23928
+ deductibleAmount?: number | undefined;
23785
23929
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
23786
23930
  pageNumber?: number | undefined;
23787
23931
  sectionRef?: string | undefined;
@@ -24047,9 +24191,11 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24047
24191
  formNumber: z.ZodOptional<z.ZodString>;
24048
24192
  formEditionDate: z.ZodOptional<z.ZodString>;
24049
24193
  limit: z.ZodString;
24194
+ limitAmount: z.ZodOptional<z.ZodNumber>;
24050
24195
  limitType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "per_person", "per_accident", "statutory", "blanket", "scheduled"]>>;
24051
24196
  limitValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
24052
24197
  deductible: z.ZodOptional<z.ZodString>;
24198
+ deductibleAmount: z.ZodOptional<z.ZodNumber>;
24053
24199
  deductibleType: z.ZodOptional<z.ZodEnum<["per_occurrence", "per_claim", "aggregate", "percentage", "waiting_period"]>>;
24054
24200
  deductibleValueType: z.ZodOptional<z.ZodEnum<["numeric", "included", "not_included", "as_stated", "waiting_period", "referential", "other"]>>;
24055
24201
  sir: z.ZodOptional<z.ZodString>;
@@ -24073,8 +24219,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24073
24219
  included: boolean;
24074
24220
  formNumber?: string | undefined;
24075
24221
  deductible?: string | undefined;
24222
+ limitAmount?: number | undefined;
24076
24223
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
24077
24224
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
24225
+ deductibleAmount?: number | undefined;
24078
24226
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
24079
24227
  pageNumber?: number | undefined;
24080
24228
  sectionRef?: string | undefined;
@@ -24099,8 +24247,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24099
24247
  included: boolean;
24100
24248
  formNumber?: string | undefined;
24101
24249
  deductible?: string | undefined;
24250
+ limitAmount?: number | undefined;
24102
24251
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
24103
24252
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
24253
+ deductibleAmount?: number | undefined;
24104
24254
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
24105
24255
  pageNumber?: number | undefined;
24106
24256
  sectionRef?: string | undefined;
@@ -27270,22 +27420,28 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27270
27420
  taxesAndFees: z.ZodOptional<z.ZodArray<z.ZodObject<{
27271
27421
  name: z.ZodString;
27272
27422
  amount: z.ZodString;
27423
+ amountValue: z.ZodOptional<z.ZodNumber>;
27273
27424
  type: z.ZodOptional<z.ZodEnum<["tax", "fee", "surcharge", "assessment"]>>;
27274
27425
  description: z.ZodOptional<z.ZodString>;
27275
27426
  }, "strip", z.ZodTypeAny, {
27276
27427
  name: string;
27277
27428
  amount: string;
27278
27429
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
27430
+ amountValue?: number | undefined;
27279
27431
  description?: string | undefined;
27280
27432
  }, {
27281
27433
  name: string;
27282
27434
  amount: string;
27283
27435
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
27436
+ amountValue?: number | undefined;
27284
27437
  description?: string | undefined;
27285
27438
  }>, "many">>;
27286
27439
  totalCost: z.ZodOptional<z.ZodString>;
27440
+ totalCostAmount: z.ZodOptional<z.ZodNumber>;
27287
27441
  minimumPremium: z.ZodOptional<z.ZodString>;
27442
+ minimumPremiumAmount: z.ZodOptional<z.ZodNumber>;
27288
27443
  depositPremium: z.ZodOptional<z.ZodString>;
27444
+ depositPremiumAmount: z.ZodOptional<z.ZodNumber>;
27289
27445
  paymentPlan: z.ZodOptional<z.ZodObject<{
27290
27446
  installments: z.ZodArray<z.ZodObject<{
27291
27447
  dueDate: z.ZodString;
@@ -27434,8 +27590,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27434
27590
  limit: string;
27435
27591
  formNumber?: string | undefined;
27436
27592
  deductible?: string | undefined;
27593
+ limitAmount?: number | undefined;
27437
27594
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
27438
27595
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
27596
+ deductibleAmount?: number | undefined;
27439
27597
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
27440
27598
  pageNumber?: number | undefined;
27441
27599
  sectionRef?: string | undefined;
@@ -28054,6 +28212,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
28054
28212
  supplementalPremium?: string | undefined;
28055
28213
  } | undefined;
28056
28214
  security?: string | undefined;
28215
+ premiumAmount?: number | undefined;
28057
28216
  summary?: string | undefined;
28058
28217
  policyTypes?: string[] | undefined;
28059
28218
  sections?: {
@@ -28150,8 +28309,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
28150
28309
  included: boolean;
28151
28310
  formNumber?: string | undefined;
28152
28311
  deductible?: string | undefined;
28312
+ limitAmount?: number | undefined;
28153
28313
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
28154
28314
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
28315
+ deductibleAmount?: number | undefined;
28155
28316
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
28156
28317
  pageNumber?: number | undefined;
28157
28318
  sectionRef?: string | undefined;
@@ -28354,11 +28515,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
28354
28515
  name: string;
28355
28516
  amount: string;
28356
28517
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
28518
+ amountValue?: number | undefined;
28357
28519
  description?: string | undefined;
28358
28520
  }[] | undefined;
28359
28521
  totalCost?: string | undefined;
28522
+ totalCostAmount?: number | undefined;
28360
28523
  minimumPremium?: string | undefined;
28524
+ minimumPremiumAmount?: number | undefined;
28361
28525
  depositPremium?: string | undefined;
28526
+ depositPremiumAmount?: number | undefined;
28362
28527
  paymentPlan?: {
28363
28528
  installments: {
28364
28529
  amount: string;
@@ -28418,6 +28583,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
28418
28583
  premiumBreakdown?: {
28419
28584
  amount: string;
28420
28585
  line: string;
28586
+ amountValue?: number | undefined;
28421
28587
  }[] | undefined;
28422
28588
  enrichedSubjectivities?: {
28423
28589
  description: string;
@@ -28446,8 +28612,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
28446
28612
  limit: string;
28447
28613
  formNumber?: string | undefined;
28448
28614
  deductible?: string | undefined;
28615
+ limitAmount?: number | undefined;
28449
28616
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
28450
28617
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
28618
+ deductibleAmount?: number | undefined;
28451
28619
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
28452
28620
  pageNumber?: number | undefined;
28453
28621
  sectionRef?: string | undefined;
@@ -29066,6 +29234,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
29066
29234
  supplementalPremium?: string | undefined;
29067
29235
  } | undefined;
29068
29236
  security?: string | undefined;
29237
+ premiumAmount?: number | undefined;
29069
29238
  summary?: string | undefined;
29070
29239
  policyTypes?: string[] | undefined;
29071
29240
  sections?: {
@@ -29162,8 +29331,10 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
29162
29331
  included: boolean;
29163
29332
  formNumber?: string | undefined;
29164
29333
  deductible?: string | undefined;
29334
+ limitAmount?: number | undefined;
29165
29335
  limitType?: "per_occurrence" | "per_claim" | "aggregate" | "per_person" | "per_accident" | "statutory" | "blanket" | "scheduled" | undefined;
29166
29336
  limitValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
29337
+ deductibleAmount?: number | undefined;
29167
29338
  deductibleValueType?: "other" | "waiting_period" | "numeric" | "included" | "not_included" | "as_stated" | "referential" | undefined;
29168
29339
  pageNumber?: number | undefined;
29169
29340
  sectionRef?: string | undefined;
@@ -29366,11 +29537,15 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
29366
29537
  name: string;
29367
29538
  amount: string;
29368
29539
  type?: "tax" | "fee" | "surcharge" | "assessment" | undefined;
29540
+ amountValue?: number | undefined;
29369
29541
  description?: string | undefined;
29370
29542
  }[] | undefined;
29371
29543
  totalCost?: string | undefined;
29544
+ totalCostAmount?: number | undefined;
29372
29545
  minimumPremium?: string | undefined;
29546
+ minimumPremiumAmount?: number | undefined;
29373
29547
  depositPremium?: string | undefined;
29548
+ depositPremiumAmount?: number | undefined;
29374
29549
  paymentPlan?: {
29375
29550
  installments: {
29376
29551
  amount: string;
@@ -29430,6 +29605,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
29430
29605
  premiumBreakdown?: {
29431
29606
  amount: string;
29432
29607
  line: string;
29608
+ amountValue?: number | undefined;
29433
29609
  }[] | undefined;
29434
29610
  enrichedSubjectivities?: {
29435
29611
  description: string;