@claritylabs/cl-sdk 0.7.2 → 0.7.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
@@ -1,5 +1,5 @@
1
1
  import * as zod from 'zod';
2
- import { ZodSchema, z } from 'zod';
2
+ import { ZodSchema, ZodTypeAny, z } from 'zod';
3
3
  import { PDFDocument } from 'pdf-lib';
4
4
 
5
5
  /** Callback to generate text from a prompt. Provider-agnostic. */
@@ -89,6 +89,17 @@ declare function safeGenerateObject<T>(generateObject: GenerateObject<T>, params
89
89
  usage?: TokenUsage;
90
90
  }>;
91
91
 
92
+ /**
93
+ * Transform a Zod schema so all `.optional()` properties become `.nullable()`
94
+ * (required but accepting null). This makes schemas compatible with OpenAI's
95
+ * strict structured output mode, which requires every property key to appear
96
+ * in the JSON Schema `required` array.
97
+ *
98
+ * Works recursively through objects, arrays, and wrapper types.
99
+ * Non-object schemas (string, number, etc.) are returned as-is.
100
+ */
101
+ declare function toStrictSchema(schema: ZodTypeAny): ZodTypeAny;
102
+
92
103
  /**
93
104
  * Lightweight checkpoint system for agent pipelines.
94
105
  *
@@ -291,8 +302,8 @@ declare const ContactSchema: z.ZodObject<{
291
302
  }>>;
292
303
  hours: z.ZodOptional<z.ZodString>;
293
304
  }, "strip", z.ZodTypeAny, {
294
- title?: string | undefined;
295
305
  type?: string | undefined;
306
+ title?: string | undefined;
296
307
  name?: string | undefined;
297
308
  phone?: string | undefined;
298
309
  fax?: string | undefined;
@@ -307,8 +318,8 @@ declare const ContactSchema: z.ZodObject<{
307
318
  } | undefined;
308
319
  hours?: string | undefined;
309
320
  }, {
310
- title?: string | undefined;
311
321
  type?: string | undefined;
322
+ title?: string | undefined;
312
323
  name?: string | undefined;
313
324
  phone?: string | undefined;
314
325
  fax?: string | undefined;
@@ -1450,7 +1461,7 @@ declare const DwellingDetailsSchema: z.ZodObject<{
1450
1461
  yearBuilt?: number | undefined;
1451
1462
  squareFootage?: number | undefined;
1452
1463
  stories?: number | undefined;
1453
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1464
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1454
1465
  roofAge?: number | undefined;
1455
1466
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
1456
1467
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -1471,7 +1482,7 @@ declare const DwellingDetailsSchema: z.ZodObject<{
1471
1482
  yearBuilt?: number | undefined;
1472
1483
  squareFootage?: number | undefined;
1473
1484
  stories?: number | undefined;
1474
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1485
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1475
1486
  roofAge?: number | undefined;
1476
1487
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
1477
1488
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -1785,7 +1796,7 @@ declare const HomeownersDeclarationsSchema: z.ZodObject<{
1785
1796
  yearBuilt?: number | undefined;
1786
1797
  squareFootage?: number | undefined;
1787
1798
  stories?: number | undefined;
1788
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1799
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1789
1800
  roofAge?: number | undefined;
1790
1801
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
1791
1802
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -1806,7 +1817,7 @@ declare const HomeownersDeclarationsSchema: z.ZodObject<{
1806
1817
  yearBuilt?: number | undefined;
1807
1818
  squareFootage?: number | undefined;
1808
1819
  stories?: number | undefined;
1809
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1820
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1810
1821
  roofAge?: number | undefined;
1811
1822
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
1812
1823
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -1939,7 +1950,7 @@ declare const HomeownersDeclarationsSchema: z.ZodObject<{
1939
1950
  yearBuilt?: number | undefined;
1940
1951
  squareFootage?: number | undefined;
1941
1952
  stories?: number | undefined;
1942
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1953
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
1943
1954
  roofAge?: number | undefined;
1944
1955
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
1945
1956
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2002,7 +2013,7 @@ declare const HomeownersDeclarationsSchema: z.ZodObject<{
2002
2013
  yearBuilt?: number | undefined;
2003
2014
  squareFootage?: number | undefined;
2004
2015
  stories?: number | undefined;
2005
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2016
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2006
2017
  roofAge?: number | undefined;
2007
2018
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2008
2019
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2551,7 +2562,7 @@ declare const DwellingFireDeclarationsSchema: z.ZodObject<{
2551
2562
  yearBuilt?: number | undefined;
2552
2563
  squareFootage?: number | undefined;
2553
2564
  stories?: number | undefined;
2554
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2565
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2555
2566
  roofAge?: number | undefined;
2556
2567
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2557
2568
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2572,7 +2583,7 @@ declare const DwellingFireDeclarationsSchema: z.ZodObject<{
2572
2583
  yearBuilt?: number | undefined;
2573
2584
  squareFootage?: number | undefined;
2574
2585
  stories?: number | undefined;
2575
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2586
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2576
2587
  roofAge?: number | undefined;
2577
2588
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2578
2589
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2597,7 +2608,7 @@ declare const DwellingFireDeclarationsSchema: z.ZodObject<{
2597
2608
  yearBuilt?: number | undefined;
2598
2609
  squareFootage?: number | undefined;
2599
2610
  stories?: number | undefined;
2600
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2611
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2601
2612
  roofAge?: number | undefined;
2602
2613
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2603
2614
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2629,7 +2640,7 @@ declare const DwellingFireDeclarationsSchema: z.ZodObject<{
2629
2640
  yearBuilt?: number | undefined;
2630
2641
  squareFootage?: number | undefined;
2631
2642
  stories?: number | undefined;
2632
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2643
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2633
2644
  roofAge?: number | undefined;
2634
2645
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2635
2646
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -2985,7 +2996,7 @@ declare const FarmRanchDeclarationsSchema: z.ZodObject<{
2985
2996
  yearBuilt?: number | undefined;
2986
2997
  squareFootage?: number | undefined;
2987
2998
  stories?: number | undefined;
2988
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2999
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
2989
3000
  roofAge?: number | undefined;
2990
3001
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
2991
3002
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -3006,7 +3017,7 @@ declare const FarmRanchDeclarationsSchema: z.ZodObject<{
3006
3017
  yearBuilt?: number | undefined;
3007
3018
  squareFootage?: number | undefined;
3008
3019
  stories?: number | undefined;
3009
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3020
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3010
3021
  roofAge?: number | undefined;
3011
3022
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
3012
3023
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -3030,7 +3041,7 @@ declare const FarmRanchDeclarationsSchema: z.ZodObject<{
3030
3041
  yearBuilt?: number | undefined;
3031
3042
  squareFootage?: number | undefined;
3032
3043
  stories?: number | undefined;
3033
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3044
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3034
3045
  roofAge?: number | undefined;
3035
3046
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
3036
3047
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -3068,7 +3079,7 @@ declare const FarmRanchDeclarationsSchema: z.ZodObject<{
3068
3079
  yearBuilt?: number | undefined;
3069
3080
  squareFootage?: number | undefined;
3070
3081
  stories?: number | undefined;
3071
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3082
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3072
3083
  roofAge?: number | undefined;
3073
3084
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
3074
3085
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -3979,7 +3990,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
3979
3990
  yearBuilt?: number | undefined;
3980
3991
  squareFootage?: number | undefined;
3981
3992
  stories?: number | undefined;
3982
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3993
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
3983
3994
  roofAge?: number | undefined;
3984
3995
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
3985
3996
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4000,7 +4011,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4000
4011
  yearBuilt?: number | undefined;
4001
4012
  squareFootage?: number | undefined;
4002
4013
  stories?: number | undefined;
4003
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4014
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4004
4015
  roofAge?: number | undefined;
4005
4016
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4006
4017
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4133,7 +4144,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4133
4144
  yearBuilt?: number | undefined;
4134
4145
  squareFootage?: number | undefined;
4135
4146
  stories?: number | undefined;
4136
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4147
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4137
4148
  roofAge?: number | undefined;
4138
4149
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4139
4150
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4196,7 +4207,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4196
4207
  yearBuilt?: number | undefined;
4197
4208
  squareFootage?: number | undefined;
4198
4209
  stories?: number | undefined;
4199
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4210
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4200
4211
  roofAge?: number | undefined;
4201
4212
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4202
4213
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4741,7 +4752,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4741
4752
  yearBuilt?: number | undefined;
4742
4753
  squareFootage?: number | undefined;
4743
4754
  stories?: number | undefined;
4744
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4755
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4745
4756
  roofAge?: number | undefined;
4746
4757
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4747
4758
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4762,7 +4773,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4762
4773
  yearBuilt?: number | undefined;
4763
4774
  squareFootage?: number | undefined;
4764
4775
  stories?: number | undefined;
4765
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4776
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4766
4777
  roofAge?: number | undefined;
4767
4778
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4768
4779
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4787,7 +4798,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4787
4798
  yearBuilt?: number | undefined;
4788
4799
  squareFootage?: number | undefined;
4789
4800
  stories?: number | undefined;
4790
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4801
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4791
4802
  roofAge?: number | undefined;
4792
4803
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4793
4804
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -4819,7 +4830,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
4819
4830
  yearBuilt?: number | undefined;
4820
4831
  squareFootage?: number | undefined;
4821
4832
  stories?: number | undefined;
4822
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4833
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
4823
4834
  roofAge?: number | undefined;
4824
4835
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
4825
4836
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -5161,7 +5172,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
5161
5172
  yearBuilt?: number | undefined;
5162
5173
  squareFootage?: number | undefined;
5163
5174
  stories?: number | undefined;
5164
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5175
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5165
5176
  roofAge?: number | undefined;
5166
5177
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
5167
5178
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -5182,7 +5193,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
5182
5193
  yearBuilt?: number | undefined;
5183
5194
  squareFootage?: number | undefined;
5184
5195
  stories?: number | undefined;
5185
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5196
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5186
5197
  roofAge?: number | undefined;
5187
5198
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
5188
5199
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -5206,7 +5217,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
5206
5217
  yearBuilt?: number | undefined;
5207
5218
  squareFootage?: number | undefined;
5208
5219
  stories?: number | undefined;
5209
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5220
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5210
5221
  roofAge?: number | undefined;
5211
5222
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
5212
5223
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -5244,7 +5255,7 @@ declare const DeclarationsSchema: z.ZodDiscriminatedUnion<"line", [z.ZodObject<{
5244
5255
  yearBuilt?: number | undefined;
5245
5256
  squareFootage?: number | undefined;
5246
5257
  stories?: number | undefined;
5247
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5258
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
5248
5259
  roofAge?: number | undefined;
5249
5260
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
5250
5261
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -6131,8 +6142,8 @@ declare const SectionSchema: z.ZodObject<{
6131
6142
  sectionNumber?: string | undefined;
6132
6143
  }>, "many">>;
6133
6144
  }, "strip", z.ZodTypeAny, {
6134
- title: string;
6135
6145
  type: string;
6146
+ title: string;
6136
6147
  content: string;
6137
6148
  pageStart: number;
6138
6149
  pageEnd?: number | undefined;
@@ -6145,8 +6156,8 @@ declare const SectionSchema: z.ZodObject<{
6145
6156
  sectionNumber?: string | undefined;
6146
6157
  }[] | undefined;
6147
6158
  }, {
6148
- title: string;
6149
6159
  type: string;
6160
+ title: string;
6150
6161
  content: string;
6151
6162
  pageStart: number;
6152
6163
  pageEnd?: number | undefined;
@@ -6249,8 +6260,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6249
6260
  sectionNumber?: string | undefined;
6250
6261
  }>, "many">>;
6251
6262
  }, "strip", z.ZodTypeAny, {
6252
- title: string;
6253
6263
  type: string;
6264
+ title: string;
6254
6265
  content: string;
6255
6266
  pageStart: number;
6256
6267
  pageEnd?: number | undefined;
@@ -6263,8 +6274,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6263
6274
  sectionNumber?: string | undefined;
6264
6275
  }[] | undefined;
6265
6276
  }, {
6266
- title: string;
6267
6277
  type: string;
6278
+ title: string;
6268
6279
  content: string;
6269
6280
  pageStart: number;
6270
6281
  pageEnd?: number | undefined;
@@ -6984,7 +6995,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
6984
6995
  yearBuilt?: number | undefined;
6985
6996
  squareFootage?: number | undefined;
6986
6997
  stories?: number | undefined;
6987
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
6998
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
6988
6999
  roofAge?: number | undefined;
6989
7000
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
6990
7001
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7005,7 +7016,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7005
7016
  yearBuilt?: number | undefined;
7006
7017
  squareFootage?: number | undefined;
7007
7018
  stories?: number | undefined;
7008
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7019
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7009
7020
  roofAge?: number | undefined;
7010
7021
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7011
7022
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7138,7 +7149,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7138
7149
  yearBuilt?: number | undefined;
7139
7150
  squareFootage?: number | undefined;
7140
7151
  stories?: number | undefined;
7141
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7152
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7142
7153
  roofAge?: number | undefined;
7143
7154
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7144
7155
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7201,7 +7212,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7201
7212
  yearBuilt?: number | undefined;
7202
7213
  squareFootage?: number | undefined;
7203
7214
  stories?: number | undefined;
7204
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7215
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7205
7216
  roofAge?: number | undefined;
7206
7217
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7207
7218
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7746,7 +7757,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7746
7757
  yearBuilt?: number | undefined;
7747
7758
  squareFootage?: number | undefined;
7748
7759
  stories?: number | undefined;
7749
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7760
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7750
7761
  roofAge?: number | undefined;
7751
7762
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7752
7763
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7767,7 +7778,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7767
7778
  yearBuilt?: number | undefined;
7768
7779
  squareFootage?: number | undefined;
7769
7780
  stories?: number | undefined;
7770
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7781
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7771
7782
  roofAge?: number | undefined;
7772
7783
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7773
7784
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7792,7 +7803,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7792
7803
  yearBuilt?: number | undefined;
7793
7804
  squareFootage?: number | undefined;
7794
7805
  stories?: number | undefined;
7795
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7806
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7796
7807
  roofAge?: number | undefined;
7797
7808
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7798
7809
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -7824,7 +7835,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
7824
7835
  yearBuilt?: number | undefined;
7825
7836
  squareFootage?: number | undefined;
7826
7837
  stories?: number | undefined;
7827
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7838
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
7828
7839
  roofAge?: number | undefined;
7829
7840
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
7830
7841
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -8166,7 +8177,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
8166
8177
  yearBuilt?: number | undefined;
8167
8178
  squareFootage?: number | undefined;
8168
8179
  stories?: number | undefined;
8169
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8180
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8170
8181
  roofAge?: number | undefined;
8171
8182
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
8172
8183
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -8187,7 +8198,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
8187
8198
  yearBuilt?: number | undefined;
8188
8199
  squareFootage?: number | undefined;
8189
8200
  stories?: number | undefined;
8190
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8201
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8191
8202
  roofAge?: number | undefined;
8192
8203
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
8193
8204
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -8211,7 +8222,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
8211
8222
  yearBuilt?: number | undefined;
8212
8223
  squareFootage?: number | undefined;
8213
8224
  stories?: number | undefined;
8214
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8225
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8215
8226
  roofAge?: number | undefined;
8216
8227
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
8217
8228
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -8249,7 +8260,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
8249
8260
  yearBuilt?: number | undefined;
8250
8261
  squareFootage?: number | undefined;
8251
8262
  stories?: number | undefined;
8252
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8263
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
8253
8264
  roofAge?: number | undefined;
8254
8265
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
8255
8266
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -9217,8 +9228,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9217
9228
  }>>;
9218
9229
  hours: z.ZodOptional<z.ZodString>;
9219
9230
  }, "strip", z.ZodTypeAny, {
9220
- title?: string | undefined;
9221
9231
  type?: string | undefined;
9232
+ title?: string | undefined;
9222
9233
  name?: string | undefined;
9223
9234
  phone?: string | undefined;
9224
9235
  fax?: string | undefined;
@@ -9233,8 +9244,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9233
9244
  } | undefined;
9234
9245
  hours?: string | undefined;
9235
9246
  }, {
9236
- title?: string | undefined;
9237
9247
  type?: string | undefined;
9248
+ title?: string | undefined;
9238
9249
  name?: string | undefined;
9239
9250
  phone?: string | undefined;
9240
9251
  fax?: string | undefined;
@@ -9280,8 +9291,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9280
9291
  }>>;
9281
9292
  hours: z.ZodOptional<z.ZodString>;
9282
9293
  }, "strip", z.ZodTypeAny, {
9283
- title?: string | undefined;
9284
9294
  type?: string | undefined;
9295
+ title?: string | undefined;
9285
9296
  name?: string | undefined;
9286
9297
  phone?: string | undefined;
9287
9298
  fax?: string | undefined;
@@ -9296,8 +9307,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9296
9307
  } | undefined;
9297
9308
  hours?: string | undefined;
9298
9309
  }, {
9299
- title?: string | undefined;
9300
9310
  type?: string | undefined;
9311
+ title?: string | undefined;
9301
9312
  name?: string | undefined;
9302
9313
  phone?: string | undefined;
9303
9314
  fax?: string | undefined;
@@ -9343,8 +9354,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9343
9354
  }>>;
9344
9355
  hours: z.ZodOptional<z.ZodString>;
9345
9356
  }, "strip", z.ZodTypeAny, {
9346
- title?: string | undefined;
9347
9357
  type?: string | undefined;
9358
+ title?: string | undefined;
9348
9359
  name?: string | undefined;
9349
9360
  phone?: string | undefined;
9350
9361
  fax?: string | undefined;
@@ -9359,8 +9370,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9359
9370
  } | undefined;
9360
9371
  hours?: string | undefined;
9361
9372
  }, {
9362
- title?: string | undefined;
9363
9373
  type?: string | undefined;
9374
+ title?: string | undefined;
9364
9375
  name?: string | undefined;
9365
9376
  phone?: string | undefined;
9366
9377
  fax?: string | undefined;
@@ -9703,7 +9714,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9703
9714
  yearBuilt?: number | undefined;
9704
9715
  squareFootage?: number | undefined;
9705
9716
  stories?: number | undefined;
9706
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9717
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9707
9718
  roofAge?: number | undefined;
9708
9719
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
9709
9720
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -9846,7 +9857,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9846
9857
  yearBuilt?: number | undefined;
9847
9858
  squareFootage?: number | undefined;
9848
9859
  stories?: number | undefined;
9849
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9860
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9850
9861
  roofAge?: number | undefined;
9851
9862
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
9852
9863
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -9957,7 +9968,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
9957
9968
  yearBuilt?: number | undefined;
9958
9969
  squareFootage?: number | undefined;
9959
9970
  stories?: number | undefined;
9960
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9971
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
9961
9972
  roofAge?: number | undefined;
9962
9973
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
9963
9974
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -10305,8 +10316,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10305
10316
  summary?: string | undefined;
10306
10317
  policyTypes?: string[] | undefined;
10307
10318
  sections?: {
10308
- title: string;
10309
10319
  type: string;
10320
+ title: string;
10310
10321
  content: string;
10311
10322
  pageStart: number;
10312
10323
  pageEnd?: number | undefined;
@@ -10455,8 +10466,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10455
10466
  licenseNumber?: string | undefined;
10456
10467
  } | undefined;
10457
10468
  claimsContacts?: {
10458
- title?: string | undefined;
10459
10469
  type?: string | undefined;
10470
+ title?: string | undefined;
10460
10471
  name?: string | undefined;
10461
10472
  phone?: string | undefined;
10462
10473
  fax?: string | undefined;
@@ -10472,8 +10483,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10472
10483
  hours?: string | undefined;
10473
10484
  }[] | undefined;
10474
10485
  regulatoryContacts?: {
10475
- title?: string | undefined;
10476
10486
  type?: string | undefined;
10487
+ title?: string | undefined;
10477
10488
  name?: string | undefined;
10478
10489
  phone?: string | undefined;
10479
10490
  fax?: string | undefined;
@@ -10489,8 +10500,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10489
10500
  hours?: string | undefined;
10490
10501
  }[] | undefined;
10491
10502
  thirdPartyAdministrators?: {
10492
- title?: string | undefined;
10493
10503
  type?: string | undefined;
10504
+ title?: string | undefined;
10494
10505
  name?: string | undefined;
10495
10506
  phone?: string | undefined;
10496
10507
  fax?: string | undefined;
@@ -10618,7 +10629,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10618
10629
  yearBuilt?: number | undefined;
10619
10630
  squareFootage?: number | undefined;
10620
10631
  stories?: number | undefined;
10621
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10632
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10622
10633
  roofAge?: number | undefined;
10623
10634
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
10624
10635
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -10761,7 +10772,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10761
10772
  yearBuilt?: number | undefined;
10762
10773
  squareFootage?: number | undefined;
10763
10774
  stories?: number | undefined;
10764
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10775
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10765
10776
  roofAge?: number | undefined;
10766
10777
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
10767
10778
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -10872,7 +10883,7 @@ declare const PolicyDocumentSchema: z.ZodObject<{
10872
10883
  yearBuilt?: number | undefined;
10873
10884
  squareFootage?: number | undefined;
10874
10885
  stories?: number | undefined;
10875
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10886
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
10876
10887
  roofAge?: number | undefined;
10877
10888
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
10878
10889
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -11220,8 +11231,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11220
11231
  summary?: string | undefined;
11221
11232
  policyTypes?: string[] | undefined;
11222
11233
  sections?: {
11223
- title: string;
11224
11234
  type: string;
11235
+ title: string;
11225
11236
  content: string;
11226
11237
  pageStart: number;
11227
11238
  pageEnd?: number | undefined;
@@ -11370,8 +11381,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11370
11381
  licenseNumber?: string | undefined;
11371
11382
  } | undefined;
11372
11383
  claimsContacts?: {
11373
- title?: string | undefined;
11374
11384
  type?: string | undefined;
11385
+ title?: string | undefined;
11375
11386
  name?: string | undefined;
11376
11387
  phone?: string | undefined;
11377
11388
  fax?: string | undefined;
@@ -11387,8 +11398,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11387
11398
  hours?: string | undefined;
11388
11399
  }[] | undefined;
11389
11400
  regulatoryContacts?: {
11390
- title?: string | undefined;
11391
11401
  type?: string | undefined;
11402
+ title?: string | undefined;
11392
11403
  name?: string | undefined;
11393
11404
  phone?: string | undefined;
11394
11405
  fax?: string | undefined;
@@ -11404,8 +11415,8 @@ declare const PolicyDocumentSchema: z.ZodObject<{
11404
11415
  hours?: string | undefined;
11405
11416
  }[] | undefined;
11406
11417
  thirdPartyAdministrators?: {
11407
- title?: string | undefined;
11408
11418
  type?: string | undefined;
11419
+ title?: string | undefined;
11409
11420
  name?: string | undefined;
11410
11421
  phone?: string | undefined;
11411
11422
  fax?: string | undefined;
@@ -11647,8 +11658,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
11647
11658
  sectionNumber?: string | undefined;
11648
11659
  }>, "many">>;
11649
11660
  }, "strip", z.ZodTypeAny, {
11650
- title: string;
11651
11661
  type: string;
11662
+ title: string;
11652
11663
  content: string;
11653
11664
  pageStart: number;
11654
11665
  pageEnd?: number | undefined;
@@ -11661,8 +11672,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
11661
11672
  sectionNumber?: string | undefined;
11662
11673
  }[] | undefined;
11663
11674
  }, {
11664
- title: string;
11665
11675
  type: string;
11676
+ title: string;
11666
11677
  content: string;
11667
11678
  pageStart: number;
11668
11679
  pageEnd?: number | undefined;
@@ -12382,7 +12393,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12382
12393
  yearBuilt?: number | undefined;
12383
12394
  squareFootage?: number | undefined;
12384
12395
  stories?: number | undefined;
12385
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12396
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12386
12397
  roofAge?: number | undefined;
12387
12398
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
12388
12399
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -12403,7 +12414,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12403
12414
  yearBuilt?: number | undefined;
12404
12415
  squareFootage?: number | undefined;
12405
12416
  stories?: number | undefined;
12406
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12417
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12407
12418
  roofAge?: number | undefined;
12408
12419
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
12409
12420
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -12536,7 +12547,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12536
12547
  yearBuilt?: number | undefined;
12537
12548
  squareFootage?: number | undefined;
12538
12549
  stories?: number | undefined;
12539
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12550
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12540
12551
  roofAge?: number | undefined;
12541
12552
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
12542
12553
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -12599,7 +12610,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
12599
12610
  yearBuilt?: number | undefined;
12600
12611
  squareFootage?: number | undefined;
12601
12612
  stories?: number | undefined;
12602
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12613
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
12603
12614
  roofAge?: number | undefined;
12604
12615
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
12605
12616
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13144,7 +13155,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13144
13155
  yearBuilt?: number | undefined;
13145
13156
  squareFootage?: number | undefined;
13146
13157
  stories?: number | undefined;
13147
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13158
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13148
13159
  roofAge?: number | undefined;
13149
13160
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13150
13161
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13165,7 +13176,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13165
13176
  yearBuilt?: number | undefined;
13166
13177
  squareFootage?: number | undefined;
13167
13178
  stories?: number | undefined;
13168
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13179
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13169
13180
  roofAge?: number | undefined;
13170
13181
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13171
13182
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13190,7 +13201,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13190
13201
  yearBuilt?: number | undefined;
13191
13202
  squareFootage?: number | undefined;
13192
13203
  stories?: number | undefined;
13193
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13204
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13194
13205
  roofAge?: number | undefined;
13195
13206
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13196
13207
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13222,7 +13233,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13222
13233
  yearBuilt?: number | undefined;
13223
13234
  squareFootage?: number | undefined;
13224
13235
  stories?: number | undefined;
13225
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13236
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13226
13237
  roofAge?: number | undefined;
13227
13238
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13228
13239
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13564,7 +13575,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13564
13575
  yearBuilt?: number | undefined;
13565
13576
  squareFootage?: number | undefined;
13566
13577
  stories?: number | undefined;
13567
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13578
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13568
13579
  roofAge?: number | undefined;
13569
13580
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13570
13581
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13585,7 +13596,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13585
13596
  yearBuilt?: number | undefined;
13586
13597
  squareFootage?: number | undefined;
13587
13598
  stories?: number | undefined;
13588
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13599
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13589
13600
  roofAge?: number | undefined;
13590
13601
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13591
13602
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13609,7 +13620,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13609
13620
  yearBuilt?: number | undefined;
13610
13621
  squareFootage?: number | undefined;
13611
13622
  stories?: number | undefined;
13612
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13623
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13613
13624
  roofAge?: number | undefined;
13614
13625
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13615
13626
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -13647,7 +13658,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
13647
13658
  yearBuilt?: number | undefined;
13648
13659
  squareFootage?: number | undefined;
13649
13660
  stories?: number | undefined;
13650
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13661
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
13651
13662
  roofAge?: number | undefined;
13652
13663
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
13653
13664
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -14615,8 +14626,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14615
14626
  }>>;
14616
14627
  hours: z.ZodOptional<z.ZodString>;
14617
14628
  }, "strip", z.ZodTypeAny, {
14618
- title?: string | undefined;
14619
14629
  type?: string | undefined;
14630
+ title?: string | undefined;
14620
14631
  name?: string | undefined;
14621
14632
  phone?: string | undefined;
14622
14633
  fax?: string | undefined;
@@ -14631,8 +14642,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14631
14642
  } | undefined;
14632
14643
  hours?: string | undefined;
14633
14644
  }, {
14634
- title?: string | undefined;
14635
14645
  type?: string | undefined;
14646
+ title?: string | undefined;
14636
14647
  name?: string | undefined;
14637
14648
  phone?: string | undefined;
14638
14649
  fax?: string | undefined;
@@ -14678,8 +14689,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14678
14689
  }>>;
14679
14690
  hours: z.ZodOptional<z.ZodString>;
14680
14691
  }, "strip", z.ZodTypeAny, {
14681
- title?: string | undefined;
14682
14692
  type?: string | undefined;
14693
+ title?: string | undefined;
14683
14694
  name?: string | undefined;
14684
14695
  phone?: string | undefined;
14685
14696
  fax?: string | undefined;
@@ -14694,8 +14705,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14694
14705
  } | undefined;
14695
14706
  hours?: string | undefined;
14696
14707
  }, {
14697
- title?: string | undefined;
14698
14708
  type?: string | undefined;
14709
+ title?: string | undefined;
14699
14710
  name?: string | undefined;
14700
14711
  phone?: string | undefined;
14701
14712
  fax?: string | undefined;
@@ -14741,8 +14752,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14741
14752
  }>>;
14742
14753
  hours: z.ZodOptional<z.ZodString>;
14743
14754
  }, "strip", z.ZodTypeAny, {
14744
- title?: string | undefined;
14745
14755
  type?: string | undefined;
14756
+ title?: string | undefined;
14746
14757
  name?: string | undefined;
14747
14758
  phone?: string | undefined;
14748
14759
  fax?: string | undefined;
@@ -14757,8 +14768,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
14757
14768
  } | undefined;
14758
14769
  hours?: string | undefined;
14759
14770
  }, {
14760
- title?: string | undefined;
14761
14771
  type?: string | undefined;
14772
+ title?: string | undefined;
14762
14773
  name?: string | undefined;
14763
14774
  phone?: string | undefined;
14764
14775
  fax?: string | undefined;
@@ -15100,7 +15111,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15100
15111
  yearBuilt?: number | undefined;
15101
15112
  squareFootage?: number | undefined;
15102
15113
  stories?: number | undefined;
15103
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15114
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15104
15115
  roofAge?: number | undefined;
15105
15116
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
15106
15117
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -15243,7 +15254,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15243
15254
  yearBuilt?: number | undefined;
15244
15255
  squareFootage?: number | undefined;
15245
15256
  stories?: number | undefined;
15246
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15257
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15247
15258
  roofAge?: number | undefined;
15248
15259
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
15249
15260
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -15354,7 +15365,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15354
15365
  yearBuilt?: number | undefined;
15355
15366
  squareFootage?: number | undefined;
15356
15367
  stories?: number | undefined;
15357
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15368
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
15358
15369
  roofAge?: number | undefined;
15359
15370
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
15360
15371
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -15698,8 +15709,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15698
15709
  summary?: string | undefined;
15699
15710
  policyTypes?: string[] | undefined;
15700
15711
  sections?: {
15701
- title: string;
15702
15712
  type: string;
15713
+ title: string;
15703
15714
  content: string;
15704
15715
  pageStart: number;
15705
15716
  pageEnd?: number | undefined;
@@ -15848,8 +15859,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15848
15859
  licenseNumber?: string | undefined;
15849
15860
  } | undefined;
15850
15861
  claimsContacts?: {
15851
- title?: string | undefined;
15852
15862
  type?: string | undefined;
15863
+ title?: string | undefined;
15853
15864
  name?: string | undefined;
15854
15865
  phone?: string | undefined;
15855
15866
  fax?: string | undefined;
@@ -15865,8 +15876,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15865
15876
  hours?: string | undefined;
15866
15877
  }[] | undefined;
15867
15878
  regulatoryContacts?: {
15868
- title?: string | undefined;
15869
15879
  type?: string | undefined;
15880
+ title?: string | undefined;
15870
15881
  name?: string | undefined;
15871
15882
  phone?: string | undefined;
15872
15883
  fax?: string | undefined;
@@ -15882,8 +15893,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
15882
15893
  hours?: string | undefined;
15883
15894
  }[] | undefined;
15884
15895
  thirdPartyAdministrators?: {
15885
- title?: string | undefined;
15886
15896
  type?: string | undefined;
15897
+ title?: string | undefined;
15887
15898
  name?: string | undefined;
15888
15899
  phone?: string | undefined;
15889
15900
  fax?: string | undefined;
@@ -16044,7 +16055,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16044
16055
  yearBuilt?: number | undefined;
16045
16056
  squareFootage?: number | undefined;
16046
16057
  stories?: number | undefined;
16047
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16058
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16048
16059
  roofAge?: number | undefined;
16049
16060
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
16050
16061
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -16187,7 +16198,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16187
16198
  yearBuilt?: number | undefined;
16188
16199
  squareFootage?: number | undefined;
16189
16200
  stories?: number | undefined;
16190
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16201
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16191
16202
  roofAge?: number | undefined;
16192
16203
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
16193
16204
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -16298,7 +16309,7 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16298
16309
  yearBuilt?: number | undefined;
16299
16310
  squareFootage?: number | undefined;
16300
16311
  stories?: number | undefined;
16301
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16312
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
16302
16313
  roofAge?: number | undefined;
16303
16314
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
16304
16315
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -16642,8 +16653,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16642
16653
  summary?: string | undefined;
16643
16654
  policyTypes?: string[] | undefined;
16644
16655
  sections?: {
16645
- title: string;
16646
16656
  type: string;
16657
+ title: string;
16647
16658
  content: string;
16648
16659
  pageStart: number;
16649
16660
  pageEnd?: number | undefined;
@@ -16792,8 +16803,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16792
16803
  licenseNumber?: string | undefined;
16793
16804
  } | undefined;
16794
16805
  claimsContacts?: {
16795
- title?: string | undefined;
16796
16806
  type?: string | undefined;
16807
+ title?: string | undefined;
16797
16808
  name?: string | undefined;
16798
16809
  phone?: string | undefined;
16799
16810
  fax?: string | undefined;
@@ -16809,8 +16820,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16809
16820
  hours?: string | undefined;
16810
16821
  }[] | undefined;
16811
16822
  regulatoryContacts?: {
16812
- title?: string | undefined;
16813
16823
  type?: string | undefined;
16824
+ title?: string | undefined;
16814
16825
  name?: string | undefined;
16815
16826
  phone?: string | undefined;
16816
16827
  fax?: string | undefined;
@@ -16826,8 +16837,8 @@ declare const QuoteDocumentSchema: z.ZodObject<{
16826
16837
  hours?: string | undefined;
16827
16838
  }[] | undefined;
16828
16839
  thirdPartyAdministrators?: {
16829
- title?: string | undefined;
16830
16840
  type?: string | undefined;
16841
+ title?: string | undefined;
16831
16842
  name?: string | undefined;
16832
16843
  phone?: string | undefined;
16833
16844
  fax?: string | undefined;
@@ -17028,8 +17039,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17028
17039
  sectionNumber?: string | undefined;
17029
17040
  }>, "many">>;
17030
17041
  }, "strip", z.ZodTypeAny, {
17031
- title: string;
17032
17042
  type: string;
17043
+ title: string;
17033
17044
  content: string;
17034
17045
  pageStart: number;
17035
17046
  pageEnd?: number | undefined;
@@ -17042,8 +17053,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17042
17053
  sectionNumber?: string | undefined;
17043
17054
  }[] | undefined;
17044
17055
  }, {
17045
- title: string;
17046
17056
  type: string;
17057
+ title: string;
17047
17058
  content: string;
17048
17059
  pageStart: number;
17049
17060
  pageEnd?: number | undefined;
@@ -17763,7 +17774,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17763
17774
  yearBuilt?: number | undefined;
17764
17775
  squareFootage?: number | undefined;
17765
17776
  stories?: number | undefined;
17766
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17777
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17767
17778
  roofAge?: number | undefined;
17768
17779
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
17769
17780
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -17784,7 +17795,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17784
17795
  yearBuilt?: number | undefined;
17785
17796
  squareFootage?: number | undefined;
17786
17797
  stories?: number | undefined;
17787
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17798
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17788
17799
  roofAge?: number | undefined;
17789
17800
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
17790
17801
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -17917,7 +17928,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17917
17928
  yearBuilt?: number | undefined;
17918
17929
  squareFootage?: number | undefined;
17919
17930
  stories?: number | undefined;
17920
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17931
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17921
17932
  roofAge?: number | undefined;
17922
17933
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
17923
17934
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -17980,7 +17991,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
17980
17991
  yearBuilt?: number | undefined;
17981
17992
  squareFootage?: number | undefined;
17982
17993
  stories?: number | undefined;
17983
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17994
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
17984
17995
  roofAge?: number | undefined;
17985
17996
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
17986
17997
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18525,7 +18536,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18525
18536
  yearBuilt?: number | undefined;
18526
18537
  squareFootage?: number | undefined;
18527
18538
  stories?: number | undefined;
18528
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18539
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18529
18540
  roofAge?: number | undefined;
18530
18541
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18531
18542
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18546,7 +18557,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18546
18557
  yearBuilt?: number | undefined;
18547
18558
  squareFootage?: number | undefined;
18548
18559
  stories?: number | undefined;
18549
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18560
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18550
18561
  roofAge?: number | undefined;
18551
18562
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18552
18563
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18571,7 +18582,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18571
18582
  yearBuilt?: number | undefined;
18572
18583
  squareFootage?: number | undefined;
18573
18584
  stories?: number | undefined;
18574
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18585
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18575
18586
  roofAge?: number | undefined;
18576
18587
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18577
18588
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18603,7 +18614,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18603
18614
  yearBuilt?: number | undefined;
18604
18615
  squareFootage?: number | undefined;
18605
18616
  stories?: number | undefined;
18606
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18617
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18607
18618
  roofAge?: number | undefined;
18608
18619
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18609
18620
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18945,7 +18956,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18945
18956
  yearBuilt?: number | undefined;
18946
18957
  squareFootage?: number | undefined;
18947
18958
  stories?: number | undefined;
18948
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18959
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18949
18960
  roofAge?: number | undefined;
18950
18961
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18951
18962
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18966,7 +18977,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18966
18977
  yearBuilt?: number | undefined;
18967
18978
  squareFootage?: number | undefined;
18968
18979
  stories?: number | undefined;
18969
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18980
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18970
18981
  roofAge?: number | undefined;
18971
18982
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18972
18983
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -18990,7 +19001,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
18990
19001
  yearBuilt?: number | undefined;
18991
19002
  squareFootage?: number | undefined;
18992
19003
  stories?: number | undefined;
18993
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
19004
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
18994
19005
  roofAge?: number | undefined;
18995
19006
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
18996
19007
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -19028,7 +19039,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
19028
19039
  yearBuilt?: number | undefined;
19029
19040
  squareFootage?: number | undefined;
19030
19041
  stories?: number | undefined;
19031
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
19042
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
19032
19043
  roofAge?: number | undefined;
19033
19044
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
19034
19045
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -19996,8 +20007,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
19996
20007
  }>>;
19997
20008
  hours: z.ZodOptional<z.ZodString>;
19998
20009
  }, "strip", z.ZodTypeAny, {
19999
- title?: string | undefined;
20000
20010
  type?: string | undefined;
20011
+ title?: string | undefined;
20001
20012
  name?: string | undefined;
20002
20013
  phone?: string | undefined;
20003
20014
  fax?: string | undefined;
@@ -20012,8 +20023,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20012
20023
  } | undefined;
20013
20024
  hours?: string | undefined;
20014
20025
  }, {
20015
- title?: string | undefined;
20016
20026
  type?: string | undefined;
20027
+ title?: string | undefined;
20017
20028
  name?: string | undefined;
20018
20029
  phone?: string | undefined;
20019
20030
  fax?: string | undefined;
@@ -20059,8 +20070,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20059
20070
  }>>;
20060
20071
  hours: z.ZodOptional<z.ZodString>;
20061
20072
  }, "strip", z.ZodTypeAny, {
20062
- title?: string | undefined;
20063
20073
  type?: string | undefined;
20074
+ title?: string | undefined;
20064
20075
  name?: string | undefined;
20065
20076
  phone?: string | undefined;
20066
20077
  fax?: string | undefined;
@@ -20075,8 +20086,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20075
20086
  } | undefined;
20076
20087
  hours?: string | undefined;
20077
20088
  }, {
20078
- title?: string | undefined;
20079
20089
  type?: string | undefined;
20090
+ title?: string | undefined;
20080
20091
  name?: string | undefined;
20081
20092
  phone?: string | undefined;
20082
20093
  fax?: string | undefined;
@@ -20122,8 +20133,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20122
20133
  }>>;
20123
20134
  hours: z.ZodOptional<z.ZodString>;
20124
20135
  }, "strip", z.ZodTypeAny, {
20125
- title?: string | undefined;
20126
20136
  type?: string | undefined;
20137
+ title?: string | undefined;
20127
20138
  name?: string | undefined;
20128
20139
  phone?: string | undefined;
20129
20140
  fax?: string | undefined;
@@ -20138,8 +20149,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20138
20149
  } | undefined;
20139
20150
  hours?: string | undefined;
20140
20151
  }, {
20141
- title?: string | undefined;
20142
20152
  type?: string | undefined;
20153
+ title?: string | undefined;
20143
20154
  name?: string | undefined;
20144
20155
  phone?: string | undefined;
20145
20156
  fax?: string | undefined;
@@ -20482,7 +20493,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20482
20493
  yearBuilt?: number | undefined;
20483
20494
  squareFootage?: number | undefined;
20484
20495
  stories?: number | undefined;
20485
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20496
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20486
20497
  roofAge?: number | undefined;
20487
20498
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
20488
20499
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -20625,7 +20636,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20625
20636
  yearBuilt?: number | undefined;
20626
20637
  squareFootage?: number | undefined;
20627
20638
  stories?: number | undefined;
20628
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20639
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20629
20640
  roofAge?: number | undefined;
20630
20641
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
20631
20642
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -20736,7 +20747,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
20736
20747
  yearBuilt?: number | undefined;
20737
20748
  squareFootage?: number | undefined;
20738
20749
  stories?: number | undefined;
20739
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20750
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
20740
20751
  roofAge?: number | undefined;
20741
20752
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
20742
20753
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -21084,8 +21095,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21084
21095
  summary?: string | undefined;
21085
21096
  policyTypes?: string[] | undefined;
21086
21097
  sections?: {
21087
- title: string;
21088
21098
  type: string;
21099
+ title: string;
21089
21100
  content: string;
21090
21101
  pageStart: number;
21091
21102
  pageEnd?: number | undefined;
@@ -21234,8 +21245,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21234
21245
  licenseNumber?: string | undefined;
21235
21246
  } | undefined;
21236
21247
  claimsContacts?: {
21237
- title?: string | undefined;
21238
21248
  type?: string | undefined;
21249
+ title?: string | undefined;
21239
21250
  name?: string | undefined;
21240
21251
  phone?: string | undefined;
21241
21252
  fax?: string | undefined;
@@ -21251,8 +21262,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21251
21262
  hours?: string | undefined;
21252
21263
  }[] | undefined;
21253
21264
  regulatoryContacts?: {
21254
- title?: string | undefined;
21255
21265
  type?: string | undefined;
21266
+ title?: string | undefined;
21256
21267
  name?: string | undefined;
21257
21268
  phone?: string | undefined;
21258
21269
  fax?: string | undefined;
@@ -21268,8 +21279,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21268
21279
  hours?: string | undefined;
21269
21280
  }[] | undefined;
21270
21281
  thirdPartyAdministrators?: {
21271
- title?: string | undefined;
21272
21282
  type?: string | undefined;
21283
+ title?: string | undefined;
21273
21284
  name?: string | undefined;
21274
21285
  phone?: string | undefined;
21275
21286
  fax?: string | undefined;
@@ -21397,7 +21408,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21397
21408
  yearBuilt?: number | undefined;
21398
21409
  squareFootage?: number | undefined;
21399
21410
  stories?: number | undefined;
21400
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21411
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21401
21412
  roofAge?: number | undefined;
21402
21413
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
21403
21414
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -21540,7 +21551,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21540
21551
  yearBuilt?: number | undefined;
21541
21552
  squareFootage?: number | undefined;
21542
21553
  stories?: number | undefined;
21543
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21554
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21544
21555
  roofAge?: number | undefined;
21545
21556
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
21546
21557
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -21651,7 +21662,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21651
21662
  yearBuilt?: number | undefined;
21652
21663
  squareFootage?: number | undefined;
21653
21664
  stories?: number | undefined;
21654
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21665
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
21655
21666
  roofAge?: number | undefined;
21656
21667
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
21657
21668
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -21999,8 +22010,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
21999
22010
  summary?: string | undefined;
22000
22011
  policyTypes?: string[] | undefined;
22001
22012
  sections?: {
22002
- title: string;
22003
22013
  type: string;
22014
+ title: string;
22004
22015
  content: string;
22005
22016
  pageStart: number;
22006
22017
  pageEnd?: number | undefined;
@@ -22149,8 +22160,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22149
22160
  licenseNumber?: string | undefined;
22150
22161
  } | undefined;
22151
22162
  claimsContacts?: {
22152
- title?: string | undefined;
22153
22163
  type?: string | undefined;
22164
+ title?: string | undefined;
22154
22165
  name?: string | undefined;
22155
22166
  phone?: string | undefined;
22156
22167
  fax?: string | undefined;
@@ -22166,8 +22177,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22166
22177
  hours?: string | undefined;
22167
22178
  }[] | undefined;
22168
22179
  regulatoryContacts?: {
22169
- title?: string | undefined;
22170
22180
  type?: string | undefined;
22181
+ title?: string | undefined;
22171
22182
  name?: string | undefined;
22172
22183
  phone?: string | undefined;
22173
22184
  fax?: string | undefined;
@@ -22183,8 +22194,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22183
22194
  hours?: string | undefined;
22184
22195
  }[] | undefined;
22185
22196
  thirdPartyAdministrators?: {
22186
- title?: string | undefined;
22187
22197
  type?: string | undefined;
22198
+ title?: string | undefined;
22188
22199
  name?: string | undefined;
22189
22200
  phone?: string | undefined;
22190
22201
  fax?: string | undefined;
@@ -22424,8 +22435,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22424
22435
  sectionNumber?: string | undefined;
22425
22436
  }>, "many">>;
22426
22437
  }, "strip", z.ZodTypeAny, {
22427
- title: string;
22428
22438
  type: string;
22439
+ title: string;
22429
22440
  content: string;
22430
22441
  pageStart: number;
22431
22442
  pageEnd?: number | undefined;
@@ -22438,8 +22449,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
22438
22449
  sectionNumber?: string | undefined;
22439
22450
  }[] | undefined;
22440
22451
  }, {
22441
- title: string;
22442
22452
  type: string;
22453
+ title: string;
22443
22454
  content: string;
22444
22455
  pageStart: number;
22445
22456
  pageEnd?: number | undefined;
@@ -23159,7 +23170,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23159
23170
  yearBuilt?: number | undefined;
23160
23171
  squareFootage?: number | undefined;
23161
23172
  stories?: number | undefined;
23162
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23173
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23163
23174
  roofAge?: number | undefined;
23164
23175
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23165
23176
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23180,7 +23191,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23180
23191
  yearBuilt?: number | undefined;
23181
23192
  squareFootage?: number | undefined;
23182
23193
  stories?: number | undefined;
23183
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23194
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23184
23195
  roofAge?: number | undefined;
23185
23196
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23186
23197
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23313,7 +23324,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23313
23324
  yearBuilt?: number | undefined;
23314
23325
  squareFootage?: number | undefined;
23315
23326
  stories?: number | undefined;
23316
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23327
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23317
23328
  roofAge?: number | undefined;
23318
23329
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23319
23330
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23376,7 +23387,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23376
23387
  yearBuilt?: number | undefined;
23377
23388
  squareFootage?: number | undefined;
23378
23389
  stories?: number | undefined;
23379
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23390
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23380
23391
  roofAge?: number | undefined;
23381
23392
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23382
23393
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23921,7 +23932,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23921
23932
  yearBuilt?: number | undefined;
23922
23933
  squareFootage?: number | undefined;
23923
23934
  stories?: number | undefined;
23924
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23935
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23925
23936
  roofAge?: number | undefined;
23926
23937
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23927
23938
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23942,7 +23953,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23942
23953
  yearBuilt?: number | undefined;
23943
23954
  squareFootage?: number | undefined;
23944
23955
  stories?: number | undefined;
23945
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23956
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23946
23957
  roofAge?: number | undefined;
23947
23958
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23948
23959
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23967,7 +23978,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23967
23978
  yearBuilt?: number | undefined;
23968
23979
  squareFootage?: number | undefined;
23969
23980
  stories?: number | undefined;
23970
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23981
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
23971
23982
  roofAge?: number | undefined;
23972
23983
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
23973
23984
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -23999,7 +24010,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
23999
24010
  yearBuilt?: number | undefined;
24000
24011
  squareFootage?: number | undefined;
24001
24012
  stories?: number | undefined;
24002
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24013
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24003
24014
  roofAge?: number | undefined;
24004
24015
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
24005
24016
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -24341,7 +24352,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24341
24352
  yearBuilt?: number | undefined;
24342
24353
  squareFootage?: number | undefined;
24343
24354
  stories?: number | undefined;
24344
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24355
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24345
24356
  roofAge?: number | undefined;
24346
24357
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
24347
24358
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -24362,7 +24373,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24362
24373
  yearBuilt?: number | undefined;
24363
24374
  squareFootage?: number | undefined;
24364
24375
  stories?: number | undefined;
24365
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24376
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24366
24377
  roofAge?: number | undefined;
24367
24378
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
24368
24379
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -24386,7 +24397,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24386
24397
  yearBuilt?: number | undefined;
24387
24398
  squareFootage?: number | undefined;
24388
24399
  stories?: number | undefined;
24389
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24400
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24390
24401
  roofAge?: number | undefined;
24391
24402
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
24392
24403
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -24424,7 +24435,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
24424
24435
  yearBuilt?: number | undefined;
24425
24436
  squareFootage?: number | undefined;
24426
24437
  stories?: number | undefined;
24427
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24438
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
24428
24439
  roofAge?: number | undefined;
24429
24440
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
24430
24441
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -25392,8 +25403,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25392
25403
  }>>;
25393
25404
  hours: z.ZodOptional<z.ZodString>;
25394
25405
  }, "strip", z.ZodTypeAny, {
25395
- title?: string | undefined;
25396
25406
  type?: string | undefined;
25407
+ title?: string | undefined;
25397
25408
  name?: string | undefined;
25398
25409
  phone?: string | undefined;
25399
25410
  fax?: string | undefined;
@@ -25408,8 +25419,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25408
25419
  } | undefined;
25409
25420
  hours?: string | undefined;
25410
25421
  }, {
25411
- title?: string | undefined;
25412
25422
  type?: string | undefined;
25423
+ title?: string | undefined;
25413
25424
  name?: string | undefined;
25414
25425
  phone?: string | undefined;
25415
25426
  fax?: string | undefined;
@@ -25455,8 +25466,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25455
25466
  }>>;
25456
25467
  hours: z.ZodOptional<z.ZodString>;
25457
25468
  }, "strip", z.ZodTypeAny, {
25458
- title?: string | undefined;
25459
25469
  type?: string | undefined;
25470
+ title?: string | undefined;
25460
25471
  name?: string | undefined;
25461
25472
  phone?: string | undefined;
25462
25473
  fax?: string | undefined;
@@ -25471,8 +25482,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25471
25482
  } | undefined;
25472
25483
  hours?: string | undefined;
25473
25484
  }, {
25474
- title?: string | undefined;
25475
25485
  type?: string | undefined;
25486
+ title?: string | undefined;
25476
25487
  name?: string | undefined;
25477
25488
  phone?: string | undefined;
25478
25489
  fax?: string | undefined;
@@ -25518,8 +25529,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25518
25529
  }>>;
25519
25530
  hours: z.ZodOptional<z.ZodString>;
25520
25531
  }, "strip", z.ZodTypeAny, {
25521
- title?: string | undefined;
25522
25532
  type?: string | undefined;
25533
+ title?: string | undefined;
25523
25534
  name?: string | undefined;
25524
25535
  phone?: string | undefined;
25525
25536
  fax?: string | undefined;
@@ -25534,8 +25545,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25534
25545
  } | undefined;
25535
25546
  hours?: string | undefined;
25536
25547
  }, {
25537
- title?: string | undefined;
25538
25548
  type?: string | undefined;
25549
+ title?: string | undefined;
25539
25550
  name?: string | undefined;
25540
25551
  phone?: string | undefined;
25541
25552
  fax?: string | undefined;
@@ -25877,7 +25888,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
25877
25888
  yearBuilt?: number | undefined;
25878
25889
  squareFootage?: number | undefined;
25879
25890
  stories?: number | undefined;
25880
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
25891
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
25881
25892
  roofAge?: number | undefined;
25882
25893
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
25883
25894
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -26020,7 +26031,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26020
26031
  yearBuilt?: number | undefined;
26021
26032
  squareFootage?: number | undefined;
26022
26033
  stories?: number | undefined;
26023
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26034
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26024
26035
  roofAge?: number | undefined;
26025
26036
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
26026
26037
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -26131,7 +26142,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26131
26142
  yearBuilt?: number | undefined;
26132
26143
  squareFootage?: number | undefined;
26133
26144
  stories?: number | undefined;
26134
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26145
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26135
26146
  roofAge?: number | undefined;
26136
26147
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
26137
26148
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -26475,8 +26486,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26475
26486
  summary?: string | undefined;
26476
26487
  policyTypes?: string[] | undefined;
26477
26488
  sections?: {
26478
- title: string;
26479
26489
  type: string;
26490
+ title: string;
26480
26491
  content: string;
26481
26492
  pageStart: number;
26482
26493
  pageEnd?: number | undefined;
@@ -26625,8 +26636,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26625
26636
  licenseNumber?: string | undefined;
26626
26637
  } | undefined;
26627
26638
  claimsContacts?: {
26628
- title?: string | undefined;
26629
26639
  type?: string | undefined;
26640
+ title?: string | undefined;
26630
26641
  name?: string | undefined;
26631
26642
  phone?: string | undefined;
26632
26643
  fax?: string | undefined;
@@ -26642,8 +26653,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26642
26653
  hours?: string | undefined;
26643
26654
  }[] | undefined;
26644
26655
  regulatoryContacts?: {
26645
- title?: string | undefined;
26646
26656
  type?: string | undefined;
26657
+ title?: string | undefined;
26647
26658
  name?: string | undefined;
26648
26659
  phone?: string | undefined;
26649
26660
  fax?: string | undefined;
@@ -26659,8 +26670,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26659
26670
  hours?: string | undefined;
26660
26671
  }[] | undefined;
26661
26672
  thirdPartyAdministrators?: {
26662
- title?: string | undefined;
26663
26673
  type?: string | undefined;
26674
+ title?: string | undefined;
26664
26675
  name?: string | undefined;
26665
26676
  phone?: string | undefined;
26666
26677
  fax?: string | undefined;
@@ -26821,7 +26832,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26821
26832
  yearBuilt?: number | undefined;
26822
26833
  squareFootage?: number | undefined;
26823
26834
  stories?: number | undefined;
26824
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26835
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26825
26836
  roofAge?: number | undefined;
26826
26837
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
26827
26838
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -26964,7 +26975,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
26964
26975
  yearBuilt?: number | undefined;
26965
26976
  squareFootage?: number | undefined;
26966
26977
  stories?: number | undefined;
26967
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26978
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
26968
26979
  roofAge?: number | undefined;
26969
26980
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
26970
26981
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -27075,7 +27086,7 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27075
27086
  yearBuilt?: number | undefined;
27076
27087
  squareFootage?: number | undefined;
27077
27088
  stories?: number | undefined;
27078
- roofType?: "other" | "flat" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
27089
+ roofType?: "flat" | "other" | "asphalt_shingle" | "tile" | "metal" | "slate" | "wood_shake" | undefined;
27079
27090
  roofAge?: number | undefined;
27080
27091
  heatingType?: "other" | "central" | "baseboard" | "radiant" | "space_heater" | "heat_pump" | undefined;
27081
27092
  foundationType?: "other" | "basement" | "crawl_space" | "slab" | "pier" | undefined;
@@ -27419,8 +27430,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27419
27430
  summary?: string | undefined;
27420
27431
  policyTypes?: string[] | undefined;
27421
27432
  sections?: {
27422
- title: string;
27423
27433
  type: string;
27434
+ title: string;
27424
27435
  content: string;
27425
27436
  pageStart: number;
27426
27437
  pageEnd?: number | undefined;
@@ -27569,8 +27580,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27569
27580
  licenseNumber?: string | undefined;
27570
27581
  } | undefined;
27571
27582
  claimsContacts?: {
27572
- title?: string | undefined;
27573
27583
  type?: string | undefined;
27584
+ title?: string | undefined;
27574
27585
  name?: string | undefined;
27575
27586
  phone?: string | undefined;
27576
27587
  fax?: string | undefined;
@@ -27586,8 +27597,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27586
27597
  hours?: string | undefined;
27587
27598
  }[] | undefined;
27588
27599
  regulatoryContacts?: {
27589
- title?: string | undefined;
27590
27600
  type?: string | undefined;
27601
+ title?: string | undefined;
27591
27602
  name?: string | undefined;
27592
27603
  phone?: string | undefined;
27593
27604
  fax?: string | undefined;
@@ -27603,8 +27614,8 @@ declare const InsuranceDocumentSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
27603
27614
  hours?: string | undefined;
27604
27615
  }[] | undefined;
27605
27616
  thirdPartyAdministrators?: {
27606
- title?: string | undefined;
27607
27617
  type?: string | undefined;
27618
+ title?: string | undefined;
27608
27619
  name?: string | undefined;
27609
27620
  phone?: string | undefined;
27610
27621
  fax?: string | undefined;
@@ -29264,4 +29275,4 @@ interface DocumentTemplate {
29264
29275
  }
29265
29276
  declare function getTemplate(policyType: string): DocumentTemplate;
29266
29277
 
29267
- export { ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcroFormFieldInfo, type AcroFormMapping, AcroFormMappingSchema, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, type AgentContext, type AnswerParsingResult, AnswerParsingResultSchema, type ApplicationClassifyResult, ApplicationClassifyResultSchema, type ApplicationField, ApplicationFieldSchema, type ApplicationListFilters, type ApplicationPipelineConfig, type ApplicationState, ApplicationStateSchema, type ApplicationStore, type AuditType, AuditTypeSchema, type AutoFillMatch, AutoFillMatchSchema, type AutoFillResult, AutoFillResultSchema, 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 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 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 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 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 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, type MemoryStore, type NamedInsured, NamedInsuredSchema, 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 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 PolicyCondition, PolicyConditionSchema, type PolicyDocument, PolicyDocumentSchema, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type PolicyType, PolicyTypeSchema, type PremiumLine, PremiumLineSchema, type PriorAnswer, type ProcessApplicationInput, type ProcessApplicationResult, type ProcessReplyInput, type ProcessReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, 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 RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type Section, SectionSchema, type SharedLimit, SharedLimitSchema, 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 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, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildLookupFillPrompt, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildVerifyPrompt, chunkDocument, createApplicationPipeline, createExtractor, createPipelineContext, createQueryAgent, extractPageRange, fillAcroForm, getAcroFormFields, getExtractor, getPdfPageCount, getTemplate, overlayTextOnPdf, pLimit, safeGenerateObject, sanitizeNulls, stripFences, withRetry };
29278
+ export { ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcroFormFieldInfo, type AcroFormMapping, AcroFormMappingSchema, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, type AgentContext, type AnswerParsingResult, AnswerParsingResultSchema, type ApplicationClassifyResult, ApplicationClassifyResultSchema, type ApplicationField, ApplicationFieldSchema, type ApplicationListFilters, type ApplicationPipelineConfig, type ApplicationState, ApplicationStateSchema, type ApplicationStore, type AuditType, AuditTypeSchema, type AutoFillMatch, AutoFillMatchSchema, type AutoFillResult, AutoFillResultSchema, 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 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 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 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 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 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, type MemoryStore, type NamedInsured, NamedInsuredSchema, 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 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 PolicyCondition, PolicyConditionSchema, type PolicyDocument, PolicyDocumentSchema, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type PolicyType, PolicyTypeSchema, type PremiumLine, PremiumLineSchema, type PriorAnswer, type ProcessApplicationInput, type ProcessApplicationResult, type ProcessReplyInput, type ProcessReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, 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 RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type Section, SectionSchema, type SharedLimit, SharedLimitSchema, 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 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, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildLookupFillPrompt, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildVerifyPrompt, chunkDocument, createApplicationPipeline, createExtractor, createPipelineContext, createQueryAgent, extractPageRange, fillAcroForm, getAcroFormFields, getExtractor, getPdfPageCount, getTemplate, overlayTextOnPdf, pLimit, safeGenerateObject, sanitizeNulls, stripFences, toStrictSchema, withRetry };