@claritylabs/cl-sdk 4.0.1 → 4.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27404,6 +27404,104 @@ declare const SourceBackedValueSchema: z.ZodObject<{
27404
27404
  sourceNodeIds?: string[] | undefined;
27405
27405
  }>;
27406
27406
  type SourceBackedValue = z.infer<typeof SourceBackedValueSchema>;
27407
+ declare const OperationalAddressSchema: z.ZodObject<{
27408
+ street1: z.ZodOptional<z.ZodString>;
27409
+ street2: z.ZodOptional<z.ZodString>;
27410
+ city: z.ZodOptional<z.ZodString>;
27411
+ state: z.ZodOptional<z.ZodString>;
27412
+ zip: z.ZodOptional<z.ZodString>;
27413
+ country: z.ZodOptional<z.ZodString>;
27414
+ formatted: z.ZodOptional<z.ZodString>;
27415
+ }, "strip", z.ZodTypeAny, {
27416
+ street1?: string | undefined;
27417
+ street2?: string | undefined;
27418
+ city?: string | undefined;
27419
+ state?: string | undefined;
27420
+ zip?: string | undefined;
27421
+ country?: string | undefined;
27422
+ formatted?: string | undefined;
27423
+ }, {
27424
+ street1?: string | undefined;
27425
+ street2?: string | undefined;
27426
+ city?: string | undefined;
27427
+ state?: string | undefined;
27428
+ zip?: string | undefined;
27429
+ country?: string | undefined;
27430
+ formatted?: string | undefined;
27431
+ }>;
27432
+ type OperationalAddress = z.infer<typeof OperationalAddressSchema>;
27433
+ declare const OperationalDeclarationFactSchema: z.ZodObject<{
27434
+ field: z.ZodEnum<["namedInsured", "mailingAddress", "dba", "entityType", "taxId", "additionalNamedInsured", "policyNumber", "insurer", "broker", "effectiveDate", "expirationDate", "premium", "other"]>;
27435
+ label: z.ZodOptional<z.ZodString>;
27436
+ value: z.ZodString;
27437
+ normalizedValue: z.ZodOptional<z.ZodString>;
27438
+ valueKind: z.ZodDefault<z.ZodEnum<["string", "number", "date", "money", "address", "list", "unknown"]>>;
27439
+ address: z.ZodOptional<z.ZodObject<{
27440
+ street1: z.ZodOptional<z.ZodString>;
27441
+ street2: z.ZodOptional<z.ZodString>;
27442
+ city: z.ZodOptional<z.ZodString>;
27443
+ state: z.ZodOptional<z.ZodString>;
27444
+ zip: z.ZodOptional<z.ZodString>;
27445
+ country: z.ZodOptional<z.ZodString>;
27446
+ formatted: z.ZodOptional<z.ZodString>;
27447
+ }, "strip", z.ZodTypeAny, {
27448
+ street1?: string | undefined;
27449
+ street2?: string | undefined;
27450
+ city?: string | undefined;
27451
+ state?: string | undefined;
27452
+ zip?: string | undefined;
27453
+ country?: string | undefined;
27454
+ formatted?: string | undefined;
27455
+ }, {
27456
+ street1?: string | undefined;
27457
+ street2?: string | undefined;
27458
+ city?: string | undefined;
27459
+ state?: string | undefined;
27460
+ zip?: string | undefined;
27461
+ country?: string | undefined;
27462
+ formatted?: string | undefined;
27463
+ }>>;
27464
+ confidence: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
27465
+ sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
27466
+ sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
27467
+ }, "strip", z.ZodTypeAny, {
27468
+ value: string;
27469
+ sourceSpanIds: string[];
27470
+ confidence: "low" | "medium" | "high";
27471
+ sourceNodeIds: string[];
27472
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
27473
+ valueKind: "string" | "number" | "date" | "unknown" | "address" | "money" | "list";
27474
+ address?: {
27475
+ street1?: string | undefined;
27476
+ street2?: string | undefined;
27477
+ city?: string | undefined;
27478
+ state?: string | undefined;
27479
+ zip?: string | undefined;
27480
+ country?: string | undefined;
27481
+ formatted?: string | undefined;
27482
+ } | undefined;
27483
+ label?: string | undefined;
27484
+ normalizedValue?: string | undefined;
27485
+ }, {
27486
+ value: string;
27487
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
27488
+ sourceSpanIds?: string[] | undefined;
27489
+ address?: {
27490
+ street1?: string | undefined;
27491
+ street2?: string | undefined;
27492
+ city?: string | undefined;
27493
+ state?: string | undefined;
27494
+ zip?: string | undefined;
27495
+ country?: string | undefined;
27496
+ formatted?: string | undefined;
27497
+ } | undefined;
27498
+ label?: string | undefined;
27499
+ confidence?: "low" | "medium" | "high" | undefined;
27500
+ normalizedValue?: string | undefined;
27501
+ sourceNodeIds?: string[] | undefined;
27502
+ valueKind?: "string" | "number" | "date" | "unknown" | "address" | "money" | "list" | undefined;
27503
+ }>;
27504
+ type OperationalDeclarationFact = z.infer<typeof OperationalDeclarationFactSchema>;
27407
27505
  declare const OperationalCoverageTermSchema: z.ZodObject<{
27408
27506
  kind: z.ZodDefault<z.ZodEnum<["each_claim_limit", "each_occurrence_limit", "each_loss_limit", "aggregate_limit", "sublimit", "retention", "deductible", "retroactive_date", "premium", "other"]>>;
27409
27507
  label: z.ZodString;
@@ -27432,6 +27530,7 @@ declare const OperationalCoverageTermSchema: z.ZodObject<{
27432
27530
  type OperationalCoverageTerm = z.infer<typeof OperationalCoverageTermSchema>;
27433
27531
  declare const OperationalCoverageLineSchema: z.ZodObject<{
27434
27532
  name: z.ZodString;
27533
+ lineOfBusiness: z.ZodOptional<z.ZodEnum<["AAPPL", "AGLIA", "AGPP", "AGPR", "AIRC", "AIRPFB", "APKG", "APKGE", "APROD", "ARVP", "AUTO", "AUTOB", "AUTOP", "AVPKG", "BANDM", "BLANK", "BMISC", "BOAT", "BOP", "BOPGL", "BOPPR", "CAVN", "CEQFL", "CFIRE", "CFRM", "CGL", "COMAR", "COMR", "CONTR", "CPKGE", "CPMP", "CRIME", "DFIRE", "DISAB", "DO", "EDP", "EL", "EO", "EPLI", "EQ", "EQPFL", "EXLIA", "FIDTY", "FIDUC", "FINEA", "FLOOD", "GARAG", "GL", "GLASS", "HANG", "HBB", "HOME", "INBR", "INMAR", "INMRC", "INMRP", "JUDCL", "KIDRA", "LL", "MHOME", "MMAL", "Motorcycle", "MTRTK", "OLIB", "PHYS", "PKG", "PL", "PLMSC", "PPKGE", "PROP", "PROPC", "PUBOF", "RECV", "SCHPR", "SIGNS", "SMP", "SURE", "TRANS", "TRUCK", "UMBRC", "UMBRL", "UMBRP", "UN", "WCMA", "WIND", "WORK", "WORKP", "WORKV"]>>;
27435
27534
  coverageCode: z.ZodOptional<z.ZodString>;
27436
27535
  limit: z.ZodOptional<z.ZodString>;
27437
27536
  deductible: z.ZodOptional<z.ZodString>;
@@ -27487,6 +27586,7 @@ declare const OperationalCoverageLineSchema: z.ZodObject<{
27487
27586
  sectionRef?: string | undefined;
27488
27587
  coverageCode?: string | undefined;
27489
27588
  premium?: string | undefined;
27589
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27490
27590
  endorsementNumber?: string | undefined;
27491
27591
  }, {
27492
27592
  name: string;
@@ -27508,6 +27608,7 @@ declare const OperationalCoverageLineSchema: z.ZodObject<{
27508
27608
  sourceNodeIds?: string[] | undefined;
27509
27609
  }[] | undefined;
27510
27610
  sourceNodeIds?: string[] | undefined;
27611
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27511
27612
  endorsementNumber?: string | undefined;
27512
27613
  }>;
27513
27614
  type OperationalCoverageLine = z.infer<typeof OperationalCoverageLineSchema>;
@@ -27703,8 +27804,80 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27703
27804
  normalizedValue?: string | undefined;
27704
27805
  sourceNodeIds?: string[] | undefined;
27705
27806
  }>>;
27807
+ declarationFacts: z.ZodDefault<z.ZodArray<z.ZodObject<{
27808
+ field: z.ZodEnum<["namedInsured", "mailingAddress", "dba", "entityType", "taxId", "additionalNamedInsured", "policyNumber", "insurer", "broker", "effectiveDate", "expirationDate", "premium", "other"]>;
27809
+ label: z.ZodOptional<z.ZodString>;
27810
+ value: z.ZodString;
27811
+ normalizedValue: z.ZodOptional<z.ZodString>;
27812
+ valueKind: z.ZodDefault<z.ZodEnum<["string", "number", "date", "money", "address", "list", "unknown"]>>;
27813
+ address: z.ZodOptional<z.ZodObject<{
27814
+ street1: z.ZodOptional<z.ZodString>;
27815
+ street2: z.ZodOptional<z.ZodString>;
27816
+ city: z.ZodOptional<z.ZodString>;
27817
+ state: z.ZodOptional<z.ZodString>;
27818
+ zip: z.ZodOptional<z.ZodString>;
27819
+ country: z.ZodOptional<z.ZodString>;
27820
+ formatted: z.ZodOptional<z.ZodString>;
27821
+ }, "strip", z.ZodTypeAny, {
27822
+ street1?: string | undefined;
27823
+ street2?: string | undefined;
27824
+ city?: string | undefined;
27825
+ state?: string | undefined;
27826
+ zip?: string | undefined;
27827
+ country?: string | undefined;
27828
+ formatted?: string | undefined;
27829
+ }, {
27830
+ street1?: string | undefined;
27831
+ street2?: string | undefined;
27832
+ city?: string | undefined;
27833
+ state?: string | undefined;
27834
+ zip?: string | undefined;
27835
+ country?: string | undefined;
27836
+ formatted?: string | undefined;
27837
+ }>>;
27838
+ confidence: z.ZodDefault<z.ZodEnum<["low", "medium", "high"]>>;
27839
+ sourceNodeIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
27840
+ sourceSpanIds: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
27841
+ }, "strip", z.ZodTypeAny, {
27842
+ value: string;
27843
+ sourceSpanIds: string[];
27844
+ confidence: "low" | "medium" | "high";
27845
+ sourceNodeIds: string[];
27846
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
27847
+ valueKind: "string" | "number" | "date" | "unknown" | "address" | "money" | "list";
27848
+ address?: {
27849
+ street1?: string | undefined;
27850
+ street2?: string | undefined;
27851
+ city?: string | undefined;
27852
+ state?: string | undefined;
27853
+ zip?: string | undefined;
27854
+ country?: string | undefined;
27855
+ formatted?: string | undefined;
27856
+ } | undefined;
27857
+ label?: string | undefined;
27858
+ normalizedValue?: string | undefined;
27859
+ }, {
27860
+ value: string;
27861
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
27862
+ sourceSpanIds?: string[] | undefined;
27863
+ address?: {
27864
+ street1?: string | undefined;
27865
+ street2?: string | undefined;
27866
+ city?: string | undefined;
27867
+ state?: string | undefined;
27868
+ zip?: string | undefined;
27869
+ country?: string | undefined;
27870
+ formatted?: string | undefined;
27871
+ } | undefined;
27872
+ label?: string | undefined;
27873
+ confidence?: "low" | "medium" | "high" | undefined;
27874
+ normalizedValue?: string | undefined;
27875
+ sourceNodeIds?: string[] | undefined;
27876
+ valueKind?: "string" | "number" | "date" | "unknown" | "address" | "money" | "list" | undefined;
27877
+ }>, "many">>;
27706
27878
  coverages: z.ZodDefault<z.ZodArray<z.ZodObject<{
27707
27879
  name: z.ZodString;
27880
+ lineOfBusiness: z.ZodOptional<z.ZodEnum<["AAPPL", "AGLIA", "AGPP", "AGPR", "AIRC", "AIRPFB", "APKG", "APKGE", "APROD", "ARVP", "AUTO", "AUTOB", "AUTOP", "AVPKG", "BANDM", "BLANK", "BMISC", "BOAT", "BOP", "BOPGL", "BOPPR", "CAVN", "CEQFL", "CFIRE", "CFRM", "CGL", "COMAR", "COMR", "CONTR", "CPKGE", "CPMP", "CRIME", "DFIRE", "DISAB", "DO", "EDP", "EL", "EO", "EPLI", "EQ", "EQPFL", "EXLIA", "FIDTY", "FIDUC", "FINEA", "FLOOD", "GARAG", "GL", "GLASS", "HANG", "HBB", "HOME", "INBR", "INMAR", "INMRC", "INMRP", "JUDCL", "KIDRA", "LL", "MHOME", "MMAL", "Motorcycle", "MTRTK", "OLIB", "PHYS", "PKG", "PL", "PLMSC", "PPKGE", "PROP", "PROPC", "PUBOF", "RECV", "SCHPR", "SIGNS", "SMP", "SURE", "TRANS", "TRUCK", "UMBRC", "UMBRL", "UMBRP", "UN", "WCMA", "WIND", "WORK", "WORKP", "WORKV"]>>;
27708
27881
  coverageCode: z.ZodOptional<z.ZodString>;
27709
27882
  limit: z.ZodOptional<z.ZodString>;
27710
27883
  deductible: z.ZodOptional<z.ZodString>;
@@ -27760,6 +27933,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27760
27933
  sectionRef?: string | undefined;
27761
27934
  coverageCode?: string | undefined;
27762
27935
  premium?: string | undefined;
27936
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27763
27937
  endorsementNumber?: string | undefined;
27764
27938
  }, {
27765
27939
  name: string;
@@ -27781,6 +27955,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27781
27955
  sourceNodeIds?: string[] | undefined;
27782
27956
  }[] | undefined;
27783
27957
  sourceNodeIds?: string[] | undefined;
27958
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27784
27959
  endorsementNumber?: string | undefined;
27785
27960
  }>, "many">>;
27786
27961
  parties: z.ZodDefault<z.ZodArray<z.ZodObject<{
@@ -27843,11 +28018,31 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27843
28018
  sectionRef?: string | undefined;
27844
28019
  coverageCode?: string | undefined;
27845
28020
  premium?: string | undefined;
28021
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27846
28022
  endorsementNumber?: string | undefined;
27847
28023
  }[];
27848
28024
  linesOfBusiness: ("AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV")[];
27849
28025
  sourceNodeIds: string[];
27850
28026
  documentType: "policy" | "quote";
28027
+ declarationFacts: {
28028
+ value: string;
28029
+ sourceSpanIds: string[];
28030
+ confidence: "low" | "medium" | "high";
28031
+ sourceNodeIds: string[];
28032
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
28033
+ valueKind: "string" | "number" | "date" | "unknown" | "address" | "money" | "list";
28034
+ address?: {
28035
+ street1?: string | undefined;
28036
+ street2?: string | undefined;
28037
+ city?: string | undefined;
28038
+ state?: string | undefined;
28039
+ zip?: string | undefined;
28040
+ country?: string | undefined;
28041
+ formatted?: string | undefined;
28042
+ } | undefined;
28043
+ label?: string | undefined;
28044
+ normalizedValue?: string | undefined;
28045
+ }[];
27851
28046
  parties: {
27852
28047
  sourceSpanIds: string[];
27853
28048
  name: string;
@@ -27961,6 +28156,7 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27961
28156
  sourceNodeIds?: string[] | undefined;
27962
28157
  }[] | undefined;
27963
28158
  sourceNodeIds?: string[] | undefined;
28159
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
27964
28160
  endorsementNumber?: string | undefined;
27965
28161
  }[] | undefined;
27966
28162
  policyNumber?: {
@@ -27993,7 +28189,6 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
27993
28189
  sourceNodeIds?: string[] | undefined;
27994
28190
  } | undefined;
27995
28191
  sourceNodeIds?: string[] | undefined;
27996
- documentType?: "policy" | "quote" | undefined;
27997
28192
  namedInsured?: {
27998
28193
  value: string;
27999
28194
  sourceSpanIds?: string[] | undefined;
@@ -28001,6 +28196,26 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
28001
28196
  normalizedValue?: string | undefined;
28002
28197
  sourceNodeIds?: string[] | undefined;
28003
28198
  } | undefined;
28199
+ documentType?: "policy" | "quote" | undefined;
28200
+ declarationFacts?: {
28201
+ value: string;
28202
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
28203
+ sourceSpanIds?: string[] | undefined;
28204
+ address?: {
28205
+ street1?: string | undefined;
28206
+ street2?: string | undefined;
28207
+ city?: string | undefined;
28208
+ state?: string | undefined;
28209
+ zip?: string | undefined;
28210
+ country?: string | undefined;
28211
+ formatted?: string | undefined;
28212
+ } | undefined;
28213
+ label?: string | undefined;
28214
+ confidence?: "low" | "medium" | "high" | undefined;
28215
+ normalizedValue?: string | undefined;
28216
+ sourceNodeIds?: string[] | undefined;
28217
+ valueKind?: "string" | "number" | "date" | "unknown" | "address" | "money" | "list" | undefined;
28218
+ }[] | undefined;
28004
28219
  parties?: {
28005
28220
  name: string;
28006
28221
  role: string;
@@ -28037,11 +28252,31 @@ declare const PolicyOperationalProfileSchema: z.ZodEffects<z.ZodObject<{
28037
28252
  sectionRef?: string | undefined;
28038
28253
  coverageCode?: string | undefined;
28039
28254
  premium?: string | undefined;
28255
+ lineOfBusiness?: "AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV" | undefined;
28040
28256
  endorsementNumber?: string | undefined;
28041
28257
  }[];
28042
28258
  linesOfBusiness: ("AAPPL" | "AGLIA" | "AGPP" | "AGPR" | "AIRC" | "AIRPFB" | "APKG" | "APKGE" | "APROD" | "ARVP" | "AUTO" | "AUTOB" | "AUTOP" | "AVPKG" | "BANDM" | "BLANK" | "BMISC" | "BOAT" | "BOP" | "BOPGL" | "BOPPR" | "CAVN" | "CEQFL" | "CFIRE" | "CFRM" | "CGL" | "COMAR" | "COMR" | "CONTR" | "CPKGE" | "CPMP" | "CRIME" | "DFIRE" | "DISAB" | "DO" | "EDP" | "EL" | "EO" | "EPLI" | "EQ" | "EQPFL" | "EXLIA" | "FIDTY" | "FIDUC" | "FINEA" | "FLOOD" | "GARAG" | "GL" | "GLASS" | "HANG" | "HBB" | "HOME" | "INBR" | "INMAR" | "INMRC" | "INMRP" | "JUDCL" | "KIDRA" | "LL" | "MHOME" | "MMAL" | "Motorcycle" | "MTRTK" | "OLIB" | "PHYS" | "PKG" | "PL" | "PLMSC" | "PPKGE" | "PROP" | "PROPC" | "PUBOF" | "RECV" | "SCHPR" | "SIGNS" | "SMP" | "SURE" | "TRANS" | "TRUCK" | "UMBRC" | "UMBRL" | "UMBRP" | "UN" | "WCMA" | "WIND" | "WORK" | "WORKP" | "WORKV")[];
28043
28259
  sourceNodeIds: string[];
28044
28260
  documentType: "policy" | "quote";
28261
+ declarationFacts: {
28262
+ value: string;
28263
+ sourceSpanIds: string[];
28264
+ confidence: "low" | "medium" | "high";
28265
+ sourceNodeIds: string[];
28266
+ field: "other" | "premium" | "effectiveDate" | "policyNumber" | "expirationDate" | "insurer" | "broker" | "namedInsured" | "mailingAddress" | "dba" | "entityType" | "taxId" | "additionalNamedInsured";
28267
+ valueKind: "string" | "number" | "date" | "unknown" | "address" | "money" | "list";
28268
+ address?: {
28269
+ street1?: string | undefined;
28270
+ street2?: string | undefined;
28271
+ city?: string | undefined;
28272
+ state?: string | undefined;
28273
+ zip?: string | undefined;
28274
+ country?: string | undefined;
28275
+ formatted?: string | undefined;
28276
+ } | undefined;
28277
+ label?: string | undefined;
28278
+ normalizedValue?: string | undefined;
28279
+ }[];
28045
28280
  parties: {
28046
28281
  sourceSpanIds: string[];
28047
28282
  name: string;
@@ -30724,4 +30959,4 @@ declare function flattenQuestionGraph(graph: ApplicationQuestionGraph): Applicat
30724
30959
  declare function getActiveApplicationFields(state: Pick<ApplicationState, "fields" | "questionGraph">): ApplicationField[];
30725
30960
  declare function getNextApplicationQuestions(state: Pick<ApplicationState, "fields" | "questionGraph" | "batches" | "currentBatchIndex">, limit?: number): ApplicationField[];
30726
30961
 
30727
- export { type ApplicationQuestionCondition as $, type AgentContext as A, type BaseQualityIssue as B, ApplicationEmailReviewSchema as C, type DocumentSourceNode as D, type ApplicationField as E, ApplicationFieldSchema as F, type GenerateObject as G, type ApplicationListFilters as H, type InsuranceDocument as I, type ApplicationNextQuestions as J, type ApplicationPacket as K, type LogFn as L, type ModelTaskKind as M, type ApplicationPacketAnswer as N, type OperationalCoverageLine as O, type PdfInput as P, type QualityGateStatus as Q, ApplicationPacketAnswerSchema as R, type SourceSpanLocation as S, type TokenUsage as T, type UnifiedQualityReport as U, ApplicationPacketSchema as V, type ApplicationPipelineConfig as W, ApplicationQualityArtifactSchema as X, ApplicationQualityIssueSchema as Y, ApplicationQualityReportSchema as Z, ApplicationQualityRoundSchema as _, type ModelBudgetResolution as a, OperationalCoverageLineSchema as a$, ApplicationQuestionConditionSchema as a0, type ApplicationQuestionGraph as a1, ApplicationQuestionGraphSchema as a2, type ApplicationQuestionNode as a3, ApplicationQuestionNodeSchema as a4, type ApplicationRepeat as a5, ApplicationRepeatSchema as a6, type ApplicationState as a7, ApplicationStateSchema as a8, type ApplicationStore as a9, type DocumentFilters as aA, type DocumentMetadata as aB, DocumentMetadataSchema as aC, type DocumentNode as aD, DocumentNodeSchema as aE, type DocumentPageMapEntry as aF, DocumentPageMapEntrySchema as aG, type DocumentSourceNodeKind as aH, DocumentSourceNodeKindSchema as aI, DocumentSourceNodeSchema as aJ, type DocumentTableOfContentsEntry as aK, DocumentTableOfContentsEntrySchema as aL, type EmbedText as aM, type FieldExtractionResult as aN, FieldExtractionResultSchema as aO, type FieldType as aP, FieldTypeSchema as aQ, type FlatPdfPlacement as aR, FlatPdfPlacementSchema as aS, InsuranceDocumentSchema as aT, type LookupFill as aU, type LookupFillResult as aV, LookupFillResultSchema as aW, LookupFillSchema as aX, type LookupRequest as aY, LookupRequestSchema as aZ, type ModelCallReport as a_, type ApplicationTemplate as aa, type ApplicationTemplateListFilters as ab, ApplicationTemplateSchema as ac, type ApplicationTemplateStore as ad, type AutoFillMatch as ae, AutoFillMatchSchema as af, type AutoFillResult as ag, AutoFillResultSchema as ah, type AuxiliaryFact as ai, AuxiliaryFactSchema as aj, type BackfillProvider as ak, type BuildApplicationPacketInput as al, type BuildApplicationPacketResult as am, type ChunkFilter as an, type CommunicationIntent as ao, CommunicationIntentSchema as ap, type ContextProposalResult as aq, type ConversationTurn as ar, type ConvertPdfToImagesFn as as, type CoveredReason as at, CoveredReasonSchema as au, type CreateApplicationRunInput as av, type Definition as aw, DefinitionSchema as ax, type DocumentAgentGuidance as ay, DocumentAgentGuidanceSchema as az, type ModelCallTrace as b, type OperationalCoverageTerm as b0, OperationalCoverageTermSchema as b1, type OperationalEndorsementSupport as b2, OperationalEndorsementSupportSchema as b3, type OperationalParty as b4, OperationalPartySchema as b5, PLATFORM_CONFIGS as b6, type ParsedAnswer as b7, ParsedAnswerSchema as b8, type PlatformConfig as b9, SourceSpanKindSchema as bA, SourceSpanLocationSchema as bB, type SourceSpanRef as bC, SourceSpanRefSchema as bD, SourceSpanSchema as bE, SourceSpanTableLocationSchema as bF, SourceSpanUnitSchema as bG, type Subjectivity as bH, SubjectivitySchema as bI, type Subsection as bJ, SubsectionSchema as bK, type UnderwritingCondition as bL, UnderwritingConditionSchema as bM, applyApplicationAnswers as bN, buildApplicationPacket as bO, buildQuestionGraphFromFields as bP, createApplicationPipeline as bQ, createApplicationRun as bR, extractQuestionGraphFromFields as bS, flattenQuestionGraph as bT, getActiveApplicationFields as bU, getNextApplicationQuestions as bV, normalizeApplicationQuestionGraph as bW, planNextApplicationQuestions as bX, proposeContextWrites as bY, resolveModelBudget as bZ, validateApplicationPacket as b_, PlatformSchema as ba, type PolicyDocument as bb, PolicyDocumentSchema as bc, PolicyOperationalProfileSchema as bd, type PremiumLine as be, PremiumLineSchema as bf, type PriorAnswer as bg, type ProcessApplicationInput as bh, type ProcessApplicationResult as bi, type ProcessReplyInput as bj, type ProcessReplyResult as bk, type QuestionBatchResult as bl, QuestionBatchResultSchema as bm, type QuoteDocument as bn, QuoteDocumentSchema as bo, type ReplyIntent as bp, ReplyIntentSchema as bq, type ResolveModelBudgetParams as br, type Section as bs, SectionSchema as bt, type SourceBackedValue as bu, SourceBackedValueSchema as bv, SourceChunkSchema as bw, SourceKindSchema as bx, SourceSpanBBoxSchema as by, type SourceSpanKind as bz, type SourceSpan as c, type SourceKind as d, type SourceSpanUnit as e, type SourceSpanTableLocation as f, type SourceChunk as g, type SourceSpanBBox as h, type DocumentChunk as i, type PolicyOperationalProfile as j, type PerformanceReport as k, type QualityGateMode as l, type ModelCapabilities as m, type ModelBudgetConstraint as n, type GenerateText as o, type DocumentStore as p, type MemoryStore as q, type Platform as r, type AcroFormMapping as s, AcroFormMappingSchema as t, type AnswerParsingResult as u, AnswerParsingResultSchema as v, type ApplicationClassifyResult as w, ApplicationClassifyResultSchema as x, type ApplicationContextProposal as y, ApplicationContextProposalSchema as z };
30962
+ export { type ApplicationQuestionCondition as $, type AgentContext as A, type BaseQualityIssue as B, ApplicationEmailReviewSchema as C, type DocumentSourceNode as D, type ApplicationField as E, ApplicationFieldSchema as F, type GenerateObject as G, type ApplicationListFilters as H, type InsuranceDocument as I, type ApplicationNextQuestions as J, type ApplicationPacket as K, type LogFn as L, type ModelTaskKind as M, type ApplicationPacketAnswer as N, type OperationalCoverageLine as O, type PdfInput as P, type QualityGateStatus as Q, ApplicationPacketAnswerSchema as R, type SourceSpanLocation as S, type TokenUsage as T, type UnifiedQualityReport as U, ApplicationPacketSchema as V, type ApplicationPipelineConfig as W, ApplicationQualityArtifactSchema as X, ApplicationQualityIssueSchema as Y, ApplicationQualityReportSchema as Z, ApplicationQualityRoundSchema as _, type ModelBudgetResolution as a, type OperationalAddress as a$, ApplicationQuestionConditionSchema as a0, type ApplicationQuestionGraph as a1, ApplicationQuestionGraphSchema as a2, type ApplicationQuestionNode as a3, ApplicationQuestionNodeSchema as a4, type ApplicationRepeat as a5, ApplicationRepeatSchema as a6, type ApplicationState as a7, ApplicationStateSchema as a8, type ApplicationStore as a9, type DocumentFilters as aA, type DocumentMetadata as aB, DocumentMetadataSchema as aC, type DocumentNode as aD, DocumentNodeSchema as aE, type DocumentPageMapEntry as aF, DocumentPageMapEntrySchema as aG, type DocumentSourceNodeKind as aH, DocumentSourceNodeKindSchema as aI, DocumentSourceNodeSchema as aJ, type DocumentTableOfContentsEntry as aK, DocumentTableOfContentsEntrySchema as aL, type EmbedText as aM, type FieldExtractionResult as aN, FieldExtractionResultSchema as aO, type FieldType as aP, FieldTypeSchema as aQ, type FlatPdfPlacement as aR, FlatPdfPlacementSchema as aS, InsuranceDocumentSchema as aT, type LookupFill as aU, type LookupFillResult as aV, LookupFillResultSchema as aW, LookupFillSchema as aX, type LookupRequest as aY, LookupRequestSchema as aZ, type ModelCallReport as a_, type ApplicationTemplate as aa, type ApplicationTemplateListFilters as ab, ApplicationTemplateSchema as ac, type ApplicationTemplateStore as ad, type AutoFillMatch as ae, AutoFillMatchSchema as af, type AutoFillResult as ag, AutoFillResultSchema as ah, type AuxiliaryFact as ai, AuxiliaryFactSchema as aj, type BackfillProvider as ak, type BuildApplicationPacketInput as al, type BuildApplicationPacketResult as am, type ChunkFilter as an, type CommunicationIntent as ao, CommunicationIntentSchema as ap, type ContextProposalResult as aq, type ConversationTurn as ar, type ConvertPdfToImagesFn as as, type CoveredReason as at, CoveredReasonSchema as au, type CreateApplicationRunInput as av, type Definition as aw, DefinitionSchema as ax, type DocumentAgentGuidance as ay, DocumentAgentGuidanceSchema as az, type ModelCallTrace as b, planNextApplicationQuestions as b$, OperationalAddressSchema as b0, OperationalCoverageLineSchema as b1, type OperationalCoverageTerm as b2, OperationalCoverageTermSchema as b3, type OperationalDeclarationFact as b4, OperationalDeclarationFactSchema as b5, type OperationalEndorsementSupport as b6, OperationalEndorsementSupportSchema as b7, type OperationalParty as b8, OperationalPartySchema as b9, SourceChunkSchema as bA, SourceKindSchema as bB, SourceSpanBBoxSchema as bC, type SourceSpanKind as bD, SourceSpanKindSchema as bE, SourceSpanLocationSchema as bF, type SourceSpanRef as bG, SourceSpanRefSchema as bH, SourceSpanSchema as bI, SourceSpanTableLocationSchema as bJ, SourceSpanUnitSchema as bK, type Subjectivity as bL, SubjectivitySchema as bM, type Subsection as bN, SubsectionSchema as bO, type UnderwritingCondition as bP, UnderwritingConditionSchema as bQ, applyApplicationAnswers as bR, buildApplicationPacket as bS, buildQuestionGraphFromFields as bT, createApplicationPipeline as bU, createApplicationRun as bV, extractQuestionGraphFromFields as bW, flattenQuestionGraph as bX, getActiveApplicationFields as bY, getNextApplicationQuestions as bZ, normalizeApplicationQuestionGraph as b_, PLATFORM_CONFIGS as ba, type ParsedAnswer as bb, ParsedAnswerSchema as bc, type PlatformConfig as bd, PlatformSchema as be, type PolicyDocument as bf, PolicyDocumentSchema as bg, PolicyOperationalProfileSchema as bh, type PremiumLine as bi, PremiumLineSchema as bj, type PriorAnswer as bk, type ProcessApplicationInput as bl, type ProcessApplicationResult as bm, type ProcessReplyInput as bn, type ProcessReplyResult as bo, type QuestionBatchResult as bp, QuestionBatchResultSchema as bq, type QuoteDocument as br, QuoteDocumentSchema as bs, type ReplyIntent as bt, ReplyIntentSchema as bu, type ResolveModelBudgetParams as bv, type Section as bw, SectionSchema as bx, type SourceBackedValue as by, SourceBackedValueSchema as bz, type SourceSpan as c, proposeContextWrites as c0, resolveModelBudget as c1, validateApplicationPacket as c2, type SourceKind as d, type SourceSpanUnit as e, type SourceSpanTableLocation as f, type SourceChunk as g, type SourceSpanBBox as h, type DocumentChunk as i, type PolicyOperationalProfile as j, type PerformanceReport as k, type QualityGateMode as l, type ModelCapabilities as m, type ModelBudgetConstraint as n, type GenerateText as o, type DocumentStore as p, type MemoryStore as q, type Platform as r, type AcroFormMapping as s, AcroFormMappingSchema as t, type AnswerParsingResult as u, AnswerParsingResultSchema as v, type ApplicationClassifyResult as w, ApplicationClassifyResultSchema as x, type ApplicationContextProposal as y, ApplicationContextProposalSchema as z };
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { L as LogFn, M as ModelTaskKind, a as ModelBudgetResolution, b as ModelCallTrace, G as GenerateObject, T as TokenUsage, O as OperationalCoverageLine, S as SourceSpanLocation, c as SourceSpan, D as DocumentSourceNode, d as SourceKind, e as SourceSpanUnit, f as SourceSpanTableLocation, g as SourceChunk, h as SourceSpanBBox, U as UnifiedQualityReport, B as BaseQualityIssue, Q as QualityGateStatus, P as PdfInput, I as InsuranceDocument, i as DocumentChunk, j as PolicyOperationalProfile, k as PerformanceReport, l as QualityGateMode, m as ModelCapabilities, n as ModelBudgetConstraint, A as AgentContext, o as GenerateText, p as DocumentStore, q as MemoryStore, r as Platform } from './index-Cte-BzHF.mjs';
2
- export { s as AcroFormMapping, t as AcroFormMappingSchema, u as AnswerParsingResult, v as AnswerParsingResultSchema, w as ApplicationClassifyResult, x as ApplicationClassifyResultSchema, y as ApplicationContextProposal, z as ApplicationContextProposalSchema, C as ApplicationEmailReviewSchema, E as ApplicationField, F as ApplicationFieldSchema, H as ApplicationListFilters, J as ApplicationNextQuestions, K as ApplicationPacket, N as ApplicationPacketAnswer, R as ApplicationPacketAnswerSchema, V as ApplicationPacketSchema, W as ApplicationPipelineConfig, X as ApplicationQualityArtifactSchema, Y as ApplicationQualityIssueSchema, Z as ApplicationQualityReportSchema, _ as ApplicationQualityRoundSchema, $ as ApplicationQuestionCondition, a0 as ApplicationQuestionConditionSchema, a1 as ApplicationQuestionGraph, a2 as ApplicationQuestionGraphSchema, a3 as ApplicationQuestionNode, a4 as ApplicationQuestionNodeSchema, a5 as ApplicationRepeat, a6 as ApplicationRepeatSchema, a7 as ApplicationState, a8 as ApplicationStateSchema, a9 as ApplicationStore, aa as ApplicationTemplate, ab as ApplicationTemplateListFilters, ac as ApplicationTemplateSchema, ad as ApplicationTemplateStore, ae as AutoFillMatch, af as AutoFillMatchSchema, ag as AutoFillResult, ah as AutoFillResultSchema, ai as AuxiliaryFact, aj as AuxiliaryFactSchema, ak as BackfillProvider, al as BuildApplicationPacketInput, am as BuildApplicationPacketResult, an as ChunkFilter, ao as CommunicationIntent, ap as CommunicationIntentSchema, aq as ContextProposalResult, ar as ConversationTurn, as as ConvertPdfToImagesFn, at as CoveredReason, au as CoveredReasonSchema, av as CreateApplicationRunInput, aw as Definition, ax as DefinitionSchema, ay as DocumentAgentGuidance, az as DocumentAgentGuidanceSchema, aA as DocumentFilters, aB as DocumentMetadata, aC as DocumentMetadataSchema, aD as DocumentNode, aE as DocumentNodeSchema, aF as DocumentPageMapEntry, aG as DocumentPageMapEntrySchema, aH as DocumentSourceNodeKind, aI as DocumentSourceNodeKindSchema, aJ as DocumentSourceNodeSchema, aK as DocumentTableOfContentsEntry, aL as DocumentTableOfContentsEntrySchema, aM as EmbedText, aN as FieldExtractionResult, aO as FieldExtractionResultSchema, aP as FieldType, aQ as FieldTypeSchema, aR as FlatPdfPlacement, aS as FlatPdfPlacementSchema, aT as InsuranceDocumentSchema, aU as LookupFill, aV as LookupFillResult, aW as LookupFillResultSchema, aX as LookupFillSchema, aY as LookupRequest, aZ as LookupRequestSchema, a_ as ModelCallReport, a$ as OperationalCoverageLineSchema, b0 as OperationalCoverageTerm, b1 as OperationalCoverageTermSchema, b2 as OperationalEndorsementSupport, b3 as OperationalEndorsementSupportSchema, b4 as OperationalParty, b5 as OperationalPartySchema, b6 as PLATFORM_CONFIGS, b7 as ParsedAnswer, b8 as ParsedAnswerSchema, b9 as PlatformConfig, ba as PlatformSchema, bb as PolicyDocument, bc as PolicyDocumentSchema, bd as PolicyOperationalProfileSchema, be as PremiumLine, bf as PremiumLineSchema, bg as PriorAnswer, bh as ProcessApplicationInput, bi as ProcessApplicationResult, bj as ProcessReplyInput, bk as ProcessReplyResult, bl as QuestionBatchResult, bm as QuestionBatchResultSchema, bn as QuoteDocument, bo as QuoteDocumentSchema, bp as ReplyIntent, bq as ReplyIntentSchema, br as ResolveModelBudgetParams, bs as Section, bt as SectionSchema, bu as SourceBackedValue, bv as SourceBackedValueSchema, bw as SourceChunkSchema, bx as SourceKindSchema, by as SourceSpanBBoxSchema, bz as SourceSpanKind, bA as SourceSpanKindSchema, bB as SourceSpanLocationSchema, bC as SourceSpanRef, bD as SourceSpanRefSchema, bE as SourceSpanSchema, bF as SourceSpanTableLocationSchema, bG as SourceSpanUnitSchema, bH as Subjectivity, bI as SubjectivitySchema, bJ as Subsection, bK as SubsectionSchema, bL as UnderwritingCondition, bM as UnderwritingConditionSchema, bN as applyApplicationAnswers, bO as buildApplicationPacket, bP as buildQuestionGraphFromFields, bQ as createApplicationPipeline, bR as createApplicationRun, bS as extractQuestionGraphFromFields, bT as flattenQuestionGraph, bU as getActiveApplicationFields, bV as getNextApplicationQuestions, bW as normalizeApplicationQuestionGraph, bX as planNextApplicationQuestions, bY as proposeContextWrites, bZ as resolveModelBudget, b_ as validateApplicationPacket } from './index-Cte-BzHF.mjs';
1
+ import { L as LogFn, M as ModelTaskKind, a as ModelBudgetResolution, b as ModelCallTrace, G as GenerateObject, T as TokenUsage, O as OperationalCoverageLine, S as SourceSpanLocation, c as SourceSpan, D as DocumentSourceNode, d as SourceKind, e as SourceSpanUnit, f as SourceSpanTableLocation, g as SourceChunk, h as SourceSpanBBox, U as UnifiedQualityReport, B as BaseQualityIssue, Q as QualityGateStatus, P as PdfInput, I as InsuranceDocument, i as DocumentChunk, j as PolicyOperationalProfile, k as PerformanceReport, l as QualityGateMode, m as ModelCapabilities, n as ModelBudgetConstraint, A as AgentContext, o as GenerateText, p as DocumentStore, q as MemoryStore, r as Platform } from './index-C9XfOdmx.mjs';
2
+ export { s as AcroFormMapping, t as AcroFormMappingSchema, u as AnswerParsingResult, v as AnswerParsingResultSchema, w as ApplicationClassifyResult, x as ApplicationClassifyResultSchema, y as ApplicationContextProposal, z as ApplicationContextProposalSchema, C as ApplicationEmailReviewSchema, E as ApplicationField, F as ApplicationFieldSchema, H as ApplicationListFilters, J as ApplicationNextQuestions, K as ApplicationPacket, N as ApplicationPacketAnswer, R as ApplicationPacketAnswerSchema, V as ApplicationPacketSchema, W as ApplicationPipelineConfig, X as ApplicationQualityArtifactSchema, Y as ApplicationQualityIssueSchema, Z as ApplicationQualityReportSchema, _ as ApplicationQualityRoundSchema, $ as ApplicationQuestionCondition, a0 as ApplicationQuestionConditionSchema, a1 as ApplicationQuestionGraph, a2 as ApplicationQuestionGraphSchema, a3 as ApplicationQuestionNode, a4 as ApplicationQuestionNodeSchema, a5 as ApplicationRepeat, a6 as ApplicationRepeatSchema, a7 as ApplicationState, a8 as ApplicationStateSchema, a9 as ApplicationStore, aa as ApplicationTemplate, ab as ApplicationTemplateListFilters, ac as ApplicationTemplateSchema, ad as ApplicationTemplateStore, ae as AutoFillMatch, af as AutoFillMatchSchema, ag as AutoFillResult, ah as AutoFillResultSchema, ai as AuxiliaryFact, aj as AuxiliaryFactSchema, ak as BackfillProvider, al as BuildApplicationPacketInput, am as BuildApplicationPacketResult, an as ChunkFilter, ao as CommunicationIntent, ap as CommunicationIntentSchema, aq as ContextProposalResult, ar as ConversationTurn, as as ConvertPdfToImagesFn, at as CoveredReason, au as CoveredReasonSchema, av as CreateApplicationRunInput, aw as Definition, ax as DefinitionSchema, ay as DocumentAgentGuidance, az as DocumentAgentGuidanceSchema, aA as DocumentFilters, aB as DocumentMetadata, aC as DocumentMetadataSchema, aD as DocumentNode, aE as DocumentNodeSchema, aF as DocumentPageMapEntry, aG as DocumentPageMapEntrySchema, aH as DocumentSourceNodeKind, aI as DocumentSourceNodeKindSchema, aJ as DocumentSourceNodeSchema, aK as DocumentTableOfContentsEntry, aL as DocumentTableOfContentsEntrySchema, aM as EmbedText, aN as FieldExtractionResult, aO as FieldExtractionResultSchema, aP as FieldType, aQ as FieldTypeSchema, aR as FlatPdfPlacement, aS as FlatPdfPlacementSchema, aT as InsuranceDocumentSchema, aU as LookupFill, aV as LookupFillResult, aW as LookupFillResultSchema, aX as LookupFillSchema, aY as LookupRequest, aZ as LookupRequestSchema, a_ as ModelCallReport, a$ as OperationalAddress, b0 as OperationalAddressSchema, b1 as OperationalCoverageLineSchema, b2 as OperationalCoverageTerm, b3 as OperationalCoverageTermSchema, b4 as OperationalDeclarationFact, b5 as OperationalDeclarationFactSchema, b6 as OperationalEndorsementSupport, b7 as OperationalEndorsementSupportSchema, b8 as OperationalParty, b9 as OperationalPartySchema, ba as PLATFORM_CONFIGS, bb as ParsedAnswer, bc as ParsedAnswerSchema, bd as PlatformConfig, be as PlatformSchema, bf as PolicyDocument, bg as PolicyDocumentSchema, bh as PolicyOperationalProfileSchema, bi as PremiumLine, bj as PremiumLineSchema, bk as PriorAnswer, bl as ProcessApplicationInput, bm as ProcessApplicationResult, bn as ProcessReplyInput, bo as ProcessReplyResult, bp as QuestionBatchResult, bq as QuestionBatchResultSchema, br as QuoteDocument, bs as QuoteDocumentSchema, bt as ReplyIntent, bu as ReplyIntentSchema, bv as ResolveModelBudgetParams, bw as Section, bx as SectionSchema, by as SourceBackedValue, bz as SourceBackedValueSchema, bA as SourceChunkSchema, bB as SourceKindSchema, bC as SourceSpanBBoxSchema, bD as SourceSpanKind, bE as SourceSpanKindSchema, bF as SourceSpanLocationSchema, bG as SourceSpanRef, bH as SourceSpanRefSchema, bI as SourceSpanSchema, bJ as SourceSpanTableLocationSchema, bK as SourceSpanUnitSchema, bL as Subjectivity, bM as SubjectivitySchema, bN as Subsection, bO as SubsectionSchema, bP as UnderwritingCondition, bQ as UnderwritingConditionSchema, bR as applyApplicationAnswers, bS as buildApplicationPacket, bT as buildQuestionGraphFromFields, bU as createApplicationPipeline, bV as createApplicationRun, bW as extractQuestionGraphFromFields, bX as flattenQuestionGraph, bY as getActiveApplicationFields, bZ as getNextApplicationQuestions, b_ as normalizeApplicationQuestionGraph, b$ as planNextApplicationQuestions, c0 as proposeContextWrites, c1 as resolveModelBudget, c2 as validateApplicationPacket } from './index-C9XfOdmx.mjs';
3
3
  import * as zod from 'zod';
4
4
  import { ZodTypeAny, z, ZodSchema } from 'zod';
5
5
  import { PDFDocument } from 'pdf-lib';
@@ -8347,6 +8347,8 @@ interface ContextKeyMapping {
8347
8347
  declare const CONTEXT_KEY_MAP: ContextKeyMapping[];
8348
8348
 
8349
8349
  type LineOfBusinessResolutionSource = "coverage" | "profile_hint" | "existing_hint" | "default";
8350
+ declare function inferLineOfBusinessForOperationalCoverage(coverage: OperationalCoverageLine, profileLinesOfBusiness?: unknown): AcordLobCode | undefined;
8351
+ declare function annotateOperationalCoverageLinesOfBusiness(coverages: OperationalCoverageLine[], profileLinesOfBusiness?: unknown): OperationalCoverageLine[];
8350
8352
  declare function inferLinesOfBusinessFromOperationalCoverages(coverages: OperationalCoverageLine[]): AcordLobCode[];
8351
8353
  declare function resolveOperationalProfileLinesOfBusiness(params: {
8352
8354
  profileLinesOfBusiness: unknown;
@@ -9342,8 +9344,8 @@ declare const CitationSchema: z.ZodObject<{
9342
9344
  relevance: number;
9343
9345
  chunkId?: string | undefined;
9344
9346
  sourceSpanId?: string | undefined;
9345
- documentType?: "policy" | "quote" | undefined;
9346
9347
  field?: string | undefined;
9348
+ documentType?: "policy" | "quote" | undefined;
9347
9349
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9348
9350
  sourceNodeId?: string | undefined;
9349
9351
  sourceLocation?: {
@@ -9363,8 +9365,8 @@ declare const CitationSchema: z.ZodObject<{
9363
9365
  relevance: number;
9364
9366
  chunkId?: string | undefined;
9365
9367
  sourceSpanId?: string | undefined;
9366
- documentType?: "policy" | "quote" | undefined;
9367
9368
  field?: string | undefined;
9369
+ documentType?: "policy" | "quote" | undefined;
9368
9370
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9369
9371
  sourceNodeId?: string | undefined;
9370
9372
  sourceLocation?: {
@@ -9428,8 +9430,8 @@ declare const SubAnswerSchema: z.ZodObject<{
9428
9430
  relevance: number;
9429
9431
  chunkId?: string | undefined;
9430
9432
  sourceSpanId?: string | undefined;
9431
- documentType?: "policy" | "quote" | undefined;
9432
9433
  field?: string | undefined;
9434
+ documentType?: "policy" | "quote" | undefined;
9433
9435
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9434
9436
  sourceNodeId?: string | undefined;
9435
9437
  sourceLocation?: {
@@ -9449,8 +9451,8 @@ declare const SubAnswerSchema: z.ZodObject<{
9449
9451
  relevance: number;
9450
9452
  chunkId?: string | undefined;
9451
9453
  sourceSpanId?: string | undefined;
9452
- documentType?: "policy" | "quote" | undefined;
9453
9454
  field?: string | undefined;
9455
+ documentType?: "policy" | "quote" | undefined;
9454
9456
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9455
9457
  sourceNodeId?: string | undefined;
9456
9458
  sourceLocation?: {
@@ -9475,8 +9477,8 @@ declare const SubAnswerSchema: z.ZodObject<{
9475
9477
  relevance: number;
9476
9478
  chunkId?: string | undefined;
9477
9479
  sourceSpanId?: string | undefined;
9478
- documentType?: "policy" | "quote" | undefined;
9479
9480
  field?: string | undefined;
9481
+ documentType?: "policy" | "quote" | undefined;
9480
9482
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9481
9483
  sourceNodeId?: string | undefined;
9482
9484
  sourceLocation?: {
@@ -9502,8 +9504,8 @@ declare const SubAnswerSchema: z.ZodObject<{
9502
9504
  relevance: number;
9503
9505
  chunkId?: string | undefined;
9504
9506
  sourceSpanId?: string | undefined;
9505
- documentType?: "policy" | "quote" | undefined;
9506
9507
  field?: string | undefined;
9508
+ documentType?: "policy" | "quote" | undefined;
9507
9509
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9508
9510
  sourceNodeId?: string | undefined;
9509
9511
  sourceLocation?: {
@@ -9584,8 +9586,8 @@ declare const QueryResultSchema: z.ZodObject<{
9584
9586
  relevance: number;
9585
9587
  chunkId?: string | undefined;
9586
9588
  sourceSpanId?: string | undefined;
9587
- documentType?: "policy" | "quote" | undefined;
9588
9589
  field?: string | undefined;
9590
+ documentType?: "policy" | "quote" | undefined;
9589
9591
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9590
9592
  sourceNodeId?: string | undefined;
9591
9593
  sourceLocation?: {
@@ -9605,8 +9607,8 @@ declare const QueryResultSchema: z.ZodObject<{
9605
9607
  relevance: number;
9606
9608
  chunkId?: string | undefined;
9607
9609
  sourceSpanId?: string | undefined;
9608
- documentType?: "policy" | "quote" | undefined;
9609
9610
  field?: string | undefined;
9611
+ documentType?: "policy" | "quote" | undefined;
9610
9612
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9611
9613
  sourceNodeId?: string | undefined;
9612
9614
  sourceLocation?: {
@@ -9632,8 +9634,8 @@ declare const QueryResultSchema: z.ZodObject<{
9632
9634
  relevance: number;
9633
9635
  chunkId?: string | undefined;
9634
9636
  sourceSpanId?: string | undefined;
9635
- documentType?: "policy" | "quote" | undefined;
9636
9637
  field?: string | undefined;
9638
+ documentType?: "policy" | "quote" | undefined;
9637
9639
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9638
9640
  sourceNodeId?: string | undefined;
9639
9641
  sourceLocation?: {
@@ -9659,8 +9661,8 @@ declare const QueryResultSchema: z.ZodObject<{
9659
9661
  relevance: number;
9660
9662
  chunkId?: string | undefined;
9661
9663
  sourceSpanId?: string | undefined;
9662
- documentType?: "policy" | "quote" | undefined;
9663
9664
  field?: string | undefined;
9665
+ documentType?: "policy" | "quote" | undefined;
9664
9666
  retrievalMode?: "hybrid" | "graph_only" | "source_rag" | "long_context" | undefined;
9665
9667
  sourceNodeId?: string | undefined;
9666
9668
  sourceLocation?: {
@@ -9881,4 +9883,4 @@ interface DocumentTemplate {
9881
9883
  }
9882
9884
  declare function getTemplate(policyType: string): DocumentTemplate;
9883
9885
 
9884
- export { ACORD_LOB_CODES, ACORD_LOB_LABELS, ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcordLobCode, AcordLobCodeSchema, type AcroFormFieldInfo, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, AgentContext, type AgenticExecutionMode, AgenticExecutionModeSchema, type AnswerMergeResult, type AttachmentInterpretation, AttachmentInterpretationSchema, type AuditType, AuditTypeSchema, BOAT_TYPES, type BindingAuthority, BindingAuthoritySchema, type BoatType, BoatTypeSchema, CHUNK_TYPES, CLAIM_STATUSES, COI_GENERATION_TOOL, CONDITION_TYPES, CONSTRUCTION_TYPES, CONTEXT_KEY_MAP, COVERAGE_COMPARISON_TOOL, COVERAGE_FORMS, COVERAGE_TRIGGERS, type CaseAction, CaseActionSchema, type CaseCitation, CaseCitationSchema, type CaseEvidence, type CaseEvidenceSource, CaseEvidenceSourceSchema, type CaseField, type CaseItem, type CasePacketArtifact, type CasePacketArtifactKind, CasePacketArtifactKindSchema, CasePacketArtifactSchema, type CaseProposal, CaseProposalSchema, type CaseProposalScore, CaseProposalScoreSchema, type CaseState, type CaseSubmissionPacket, CaseSubmissionPacketSchema, type CaseValidationIssue, CaseValidationIssueSchema, type CaseWorkflowPlan, type ChunkType, ChunkTypeSchema, type Citation, CitationSchema, type ClaimRecord, ClaimRecordSchema, type ClaimStatus, ClaimStatusSchema, type ClassificationCode, ClassificationCodeSchema, type CommercialAutoDeclarations, CommercialAutoDeclarationsSchema, type CommercialPropertyDeclarations, CommercialPropertyDeclarationsSchema, ConditionKeyValueSchema, type ConditionType, ConditionTypeSchema, type ConstructionType, ConstructionTypeSchema, type Contact, ContactSchema, type ContextKeyMapping, type Coverage, type CoverageForm, CoverageFormSchema, CoverageSchema, type CoverageTrigger, CoverageTriggerSchema, type CoverageValueType, CoverageValueTypeSchema, 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 DoclingDocumentLike, type DoclingExtractionInput, type DoclingItemLike, type DoclingNodeLike, type DoclingNormalizedUnit, type DoclingProvenanceLike, DocumentChunk, DocumentSourceNode, 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, EXCLUDED_ACORD_LOB_CODES, type EarthquakeDeclarations, EarthquakeDeclarationsSchema, type EmployersLiabilityLimits, EmployersLiabilityLimitsSchema, type Endorsement, type EndorsementParty, type EndorsementPartyRole, EndorsementPartyRoleSchema, EndorsementPartySchema, EndorsementSchema, type EndorsementType, EndorsementTypeSchema, type EnrichedCoverage, EnrichedCoverageSchema, type EnrichedSubjectivity, EnrichedSubjectivitySchema, type EnrichedUnderwritingCondition, EnrichedUnderwritingConditionSchema, type EntityType, EntityTypeSchema, type EvidenceItem, EvidenceItemSchema, type Exclusion, ExclusionSchema, type ExperienceMod, ExperienceModSchema, type ExtendedReportingPeriod, ExtendedReportingPeriodSchema, type ExtractOptions, type ExtractionInput, type ExtractionResult, type ExtractionV3Result, type ExtractorConfig, type ExtractorDef, FLOOD_ZONES, FOUNDATION_TYPES, type FarmRanchDeclarations, FarmRanchDeclarationsSchema, type FieldMapping, type FloodDeclarations, FloodDeclarationsSchema, type FloodZone, FloodZoneSchema, type FormReference, FormReferenceSchema, type FoundationType, FoundationTypeSchema, type GLDeclarations, GLDeclarationsSchema, GenerateObject, type GeneratePceSubmissionPacketInput, GenerateText, HOMEOWNERS_FORM_TYPES, type HomeownersDeclarations, HomeownersDeclarationsSchema, type HomeownersFormType, HomeownersFormTypeSchema, type IdentityTheftDeclarations, IdentityTheftDeclarationsSchema, InsuranceDocument, type InsuredLocation, InsuredLocationSchema, type InsuredVehicle, InsuredVehicleSchema, type InsurerInfo, InsurerInfoSchema, LEGACY_POLICY_TYPE_TO_LOB, LIMIT_TYPES, LOSS_SETTLEMENTS, type LimitSchedule, LimitScheduleSchema, type LimitType, LimitTypeSchema, type LineOfBusinessResolutionSource, type LocationPremium, LocationPremiumSchema, LogFn, type LossSettlement, LossSettlementSchema, type LossSummary, LossSummarySchema, MemorySourceStore, MemoryStore, type MissingInfoQuestion, MissingInfoQuestionSchema, ModelBudgetConstraint, ModelBudgetResolution, ModelCapabilities, ModelTaskKind, type NamedInsured, NamedInsuredSchema, type NormalizedDoclingDocument, OperationalCoverageLine, type OrderableSourceEvidence, PERSONAL_AUTO_USAGES, PERSONAL_LOB_CODES, PET_SPECIES, POLICY_SECTION_TYPES, POLICY_TERM_TYPES, type PaymentInstallment, PaymentInstallmentSchema, type PaymentPlan, PaymentPlanSchema, type PceAgentConfig, type PceCaseState, PceCaseStateSchema, type PceEvidenceSource, type PceExecutionModePreference, type PceMissingInfoQuestion, type PceNormalizationResult, PceNormalizationResultSchema, type PceQualityGateStatus, type PceQualityReport, type PceSubmissionPacket, PceSubmissionPacketSchema, type PceValidationIssue, PdfInput, PerformanceReport, type PersonalArticlesDeclarations, PersonalArticlesDeclarationsSchema, type PersonalAutoDeclarations, PersonalAutoDeclarationsSchema, type PersonalAutoUsage, PersonalAutoUsageSchema, type PersonalUmbrellaDeclarations, PersonalUmbrellaDeclarationsSchema, type PersonalVehicleDetails, PersonalVehicleDetailsSchema, type PetDeclarations, PetDeclarationsSchema, type PetSpecies, PetSpeciesSchema, type PipelineCheckpoint, type PipelineContext, type PipelineContextOptions, Platform, type PolicyChangeAction, PolicyChangeActionSchema, type PolicyChangeConfidence, PolicyChangeConfidenceSchema, type PolicyChangeImpact, PolicyChangeImpactSchema, type PolicyChangeItem, PolicyChangeItemSchema, type PolicyChangeKind, PolicyChangeKindSchema, type PolicyChangeMissingInfoQuestion, type PolicyChangePacket, type PolicyChangeRequest, PolicyChangeRequestSchema, type PolicyChangeState, type PolicyChangeStatus, PolicyChangeStatusSchema, type PolicyChangeValidationIssue, type PolicyCondition, PolicyConditionSchema, PolicyOperationalProfile, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type ProcessPceChangeRequestInput, type ProcessPceChangeRequestResult, type ProcessPceReplyInput, type ProcessPceReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryAttachment, type QueryAttachmentKind, QueryAttachmentKindSchema, QueryAttachmentSchema, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, type QueryRetrievalMode, QueryRetrievalModeSchema, type QuoteSectionType, QuoteSectionTypeSchema, RATING_BASIS_TYPES, ROOF_TYPES, type RVType, RVTypeSchema, RV_TYPES, type RatingBasis, RatingBasisSchema, type RatingBasisType, RatingBasisTypeSchema, type RecreationalVehicleDeclarations, RecreationalVehicleDeclarationsSchema, type RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type SectionSourceSpanOptions, type SharedLimit, SharedLimitSchema, type SourceBackedAddress, SourceBackedAddressSchema, SourceChunk, type SourceChunkOptions, SourceKind, type SourceNodeRetrievalResult, type SourcePageInput, type SourceProvenance, SourceProvenanceSchema, type SourceRetrievalMode, type SourceRetrievalQuery, type SourceRetrievalResult, type SourceRetriever, SourceSpan, SourceSpanBBox, type SourceSpanIdInput, SourceSpanLocation, SourceSpanTableLocation, SourceSpanUnit, type SourceStore, type SourceTextUnitInput, type SubAnswer, SubAnswerSchema, type SubQuestion, SubQuestionSchema, type SubjectivityCategory, SubjectivityCategorySchema, type Sublimit, SublimitSchema, TITLE_POLICY_TYPES, type TaxFeeItem, TaxFeeItemSchema, type TextOverlay, type TitleDeclarations, TitleDeclarationsSchema, type TitlePolicyType, TitlePolicyTypeSchema, TokenUsage, type ToolDefinition, type TravelDeclarations, TravelDeclarationsSchema, type UmbrellaExcessDeclarations, UmbrellaExcessDeclarationsSchema, VALUATION_METHODS, VEHICLE_COVERAGE_TYPES, type ValidationIssueSeverity, ValidationIssueSeveritySchema, type ValuationMethod, ValuationMethodSchema, type VehicleCoverage, VehicleCoverageSchema, type VehicleCoverageType, VehicleCoverageTypeSchema, type VerifyResult, VerifyResultSchema, type WatercraftDeclarations, WatercraftDeclarationsSchema, type WorkersCompDeclarations, WorkersCompDeclarationsSchema, buildAcroFormMappingPrompt, buildAgentSystemPrompt, buildAnswerParsingPrompt, buildAutoFillPrompt, buildBatchEmailGenerationPrompt, buildClassifyMessagePrompt, buildCoiRoutingPrompt, buildConfirmationSummaryPrompt, buildConversationMemoryGuidance, buildCoverageGapPrompt, buildDoclingProviderOptions, buildDocumentSourceTree, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildInterpretAttachmentPrompt, buildLookupFillPrompt, buildPageSourceSpans, buildPceNormalizePrompt, buildPceQualityReport, buildPceReplyPrompt, buildPceSubmissionPacket, buildPdfProviderOptions, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildSectionSourceSpans, buildSourceSpan, buildSourceSpanId, buildTextSourceSpans, buildVerifyPrompt, chunkDocument, chunkSourceSpans, collectPceEvidenceSources, compareSourceEvidence, createExtractor, createPceAgent, createPipelineContext, createQueryAgent, evaluateCaseProposals, evidenceContainsQuote, extractPageRange, fillAcroForm, generateNextMessage, getAcroFormFields, getDoclingPageRangeText, getExtractor, getFileIdentifier, getPdfPageCount, getTemplate, inferLinesOfBusinessFromOperationalCoverages, isDoclingExtractionInput, isFileReference, isLobCode, isPersonalLob, lobLabel, mergeQuestionAnswers, mergeSourceSpans, normalizeDoclingDocument, normalizeDocumentSourceTreePaths, normalizeForMatch, normalizeOperationalLinesOfBusiness, normalizeSourceSpans, orderSourceEvidence, overlayTextOnPdf, pLimit, pdfInputToBase64, pdfInputToBytes, processReply, resolveOperationalProfileLinesOfBusiness, safeGenerateObject, sanitizeNulls, scoreCaseProposal, selectPceExecutionMode, sourceSpanTextHash, stableCaseId, stableHash, stablePolicyChangeItemId, stableStringify, stripFences, toLobCodes, toStrictSchema, validateEvidence, validatePceItems, validateQuotedEvidence, withRetry };
9886
+ export { ACORD_LOB_CODES, ACORD_LOB_LABELS, ADMITTED_STATUSES, AGENT_TOOLS, APPLICATION_CLASSIFY_PROMPT, AUDIT_TYPES, type AcordLobCode, AcordLobCodeSchema, type AcroFormFieldInfo, type Address, AddressSchema, type AdmittedStatus, AdmittedStatusSchema, AgentContext, type AgenticExecutionMode, AgenticExecutionModeSchema, type AnswerMergeResult, type AttachmentInterpretation, AttachmentInterpretationSchema, type AuditType, AuditTypeSchema, BOAT_TYPES, type BindingAuthority, BindingAuthoritySchema, type BoatType, BoatTypeSchema, CHUNK_TYPES, CLAIM_STATUSES, COI_GENERATION_TOOL, CONDITION_TYPES, CONSTRUCTION_TYPES, CONTEXT_KEY_MAP, COVERAGE_COMPARISON_TOOL, COVERAGE_FORMS, COVERAGE_TRIGGERS, type CaseAction, CaseActionSchema, type CaseCitation, CaseCitationSchema, type CaseEvidence, type CaseEvidenceSource, CaseEvidenceSourceSchema, type CaseField, type CaseItem, type CasePacketArtifact, type CasePacketArtifactKind, CasePacketArtifactKindSchema, CasePacketArtifactSchema, type CaseProposal, CaseProposalSchema, type CaseProposalScore, CaseProposalScoreSchema, type CaseState, type CaseSubmissionPacket, CaseSubmissionPacketSchema, type CaseValidationIssue, CaseValidationIssueSchema, type CaseWorkflowPlan, type ChunkType, ChunkTypeSchema, type Citation, CitationSchema, type ClaimRecord, ClaimRecordSchema, type ClaimStatus, ClaimStatusSchema, type ClassificationCode, ClassificationCodeSchema, type CommercialAutoDeclarations, CommercialAutoDeclarationsSchema, type CommercialPropertyDeclarations, CommercialPropertyDeclarationsSchema, ConditionKeyValueSchema, type ConditionType, ConditionTypeSchema, type ConstructionType, ConstructionTypeSchema, type Contact, ContactSchema, type ContextKeyMapping, type Coverage, type CoverageForm, CoverageFormSchema, CoverageSchema, type CoverageTrigger, CoverageTriggerSchema, type CoverageValueType, CoverageValueTypeSchema, 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 DoclingDocumentLike, type DoclingExtractionInput, type DoclingItemLike, type DoclingNodeLike, type DoclingNormalizedUnit, type DoclingProvenanceLike, DocumentChunk, DocumentSourceNode, 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, EXCLUDED_ACORD_LOB_CODES, type EarthquakeDeclarations, EarthquakeDeclarationsSchema, type EmployersLiabilityLimits, EmployersLiabilityLimitsSchema, type Endorsement, type EndorsementParty, type EndorsementPartyRole, EndorsementPartyRoleSchema, EndorsementPartySchema, EndorsementSchema, type EndorsementType, EndorsementTypeSchema, type EnrichedCoverage, EnrichedCoverageSchema, type EnrichedSubjectivity, EnrichedSubjectivitySchema, type EnrichedUnderwritingCondition, EnrichedUnderwritingConditionSchema, type EntityType, EntityTypeSchema, type EvidenceItem, EvidenceItemSchema, type Exclusion, ExclusionSchema, type ExperienceMod, ExperienceModSchema, type ExtendedReportingPeriod, ExtendedReportingPeriodSchema, type ExtractOptions, type ExtractionInput, type ExtractionResult, type ExtractionV3Result, type ExtractorConfig, type ExtractorDef, FLOOD_ZONES, FOUNDATION_TYPES, type FarmRanchDeclarations, FarmRanchDeclarationsSchema, type FieldMapping, type FloodDeclarations, FloodDeclarationsSchema, type FloodZone, FloodZoneSchema, type FormReference, FormReferenceSchema, type FoundationType, FoundationTypeSchema, type GLDeclarations, GLDeclarationsSchema, GenerateObject, type GeneratePceSubmissionPacketInput, GenerateText, HOMEOWNERS_FORM_TYPES, type HomeownersDeclarations, HomeownersDeclarationsSchema, type HomeownersFormType, HomeownersFormTypeSchema, type IdentityTheftDeclarations, IdentityTheftDeclarationsSchema, InsuranceDocument, type InsuredLocation, InsuredLocationSchema, type InsuredVehicle, InsuredVehicleSchema, type InsurerInfo, InsurerInfoSchema, LEGACY_POLICY_TYPE_TO_LOB, LIMIT_TYPES, LOSS_SETTLEMENTS, type LimitSchedule, LimitScheduleSchema, type LimitType, LimitTypeSchema, type LineOfBusinessResolutionSource, type LocationPremium, LocationPremiumSchema, LogFn, type LossSettlement, LossSettlementSchema, type LossSummary, LossSummarySchema, MemorySourceStore, MemoryStore, type MissingInfoQuestion, MissingInfoQuestionSchema, ModelBudgetConstraint, ModelBudgetResolution, ModelCapabilities, ModelTaskKind, type NamedInsured, NamedInsuredSchema, type NormalizedDoclingDocument, OperationalCoverageLine, type OrderableSourceEvidence, PERSONAL_AUTO_USAGES, PERSONAL_LOB_CODES, PET_SPECIES, POLICY_SECTION_TYPES, POLICY_TERM_TYPES, type PaymentInstallment, PaymentInstallmentSchema, type PaymentPlan, PaymentPlanSchema, type PceAgentConfig, type PceCaseState, PceCaseStateSchema, type PceEvidenceSource, type PceExecutionModePreference, type PceMissingInfoQuestion, type PceNormalizationResult, PceNormalizationResultSchema, type PceQualityGateStatus, type PceQualityReport, type PceSubmissionPacket, PceSubmissionPacketSchema, type PceValidationIssue, PdfInput, PerformanceReport, type PersonalArticlesDeclarations, PersonalArticlesDeclarationsSchema, type PersonalAutoDeclarations, PersonalAutoDeclarationsSchema, type PersonalAutoUsage, PersonalAutoUsageSchema, type PersonalUmbrellaDeclarations, PersonalUmbrellaDeclarationsSchema, type PersonalVehicleDetails, PersonalVehicleDetailsSchema, type PetDeclarations, PetDeclarationsSchema, type PetSpecies, PetSpeciesSchema, type PipelineCheckpoint, type PipelineContext, type PipelineContextOptions, Platform, type PolicyChangeAction, PolicyChangeActionSchema, type PolicyChangeConfidence, PolicyChangeConfidenceSchema, type PolicyChangeImpact, PolicyChangeImpactSchema, type PolicyChangeItem, PolicyChangeItemSchema, type PolicyChangeKind, PolicyChangeKindSchema, type PolicyChangeMissingInfoQuestion, type PolicyChangePacket, type PolicyChangeRequest, PolicyChangeRequestSchema, type PolicyChangeState, type PolicyChangeStatus, PolicyChangeStatusSchema, type PolicyChangeValidationIssue, type PolicyCondition, PolicyConditionSchema, PolicyOperationalProfile, type PolicySectionType, PolicySectionTypeSchema, type PolicyTermType, PolicyTermTypeSchema, type ProcessPceChangeRequestInput, type ProcessPceChangeRequestResult, type ProcessPceReplyInput, type ProcessPceReplyResult, type ProducerInfo, ProducerInfoSchema, type ProfessionalLiabilityDeclarations, ProfessionalLiabilityDeclarationsSchema, QUOTE_SECTION_TYPES, type QueryAttachment, type QueryAttachmentKind, QueryAttachmentKindSchema, QueryAttachmentSchema, type QueryClassifyResult, QueryClassifyResultSchema, type QueryConfig, type QueryInput, type QueryIntent, QueryIntentSchema, type QueryOutput, type QueryResult, QueryResultSchema, type QueryRetrievalMode, QueryRetrievalModeSchema, type QuoteSectionType, QuoteSectionTypeSchema, RATING_BASIS_TYPES, ROOF_TYPES, type RVType, RVTypeSchema, RV_TYPES, type RatingBasis, RatingBasisSchema, type RatingBasisType, RatingBasisTypeSchema, type RecreationalVehicleDeclarations, RecreationalVehicleDeclarationsSchema, type RetrievalResult, RetrievalResultSchema, type RoofType, RoofTypeSchema, SCHEDULED_ITEM_CATEGORIES, SUBJECTIVITY_CATEGORIES, type SafeGenerateOptions, type SafeGenerateParams, type ScheduledItemCategory, ScheduledItemCategorySchema, type SectionSourceSpanOptions, type SharedLimit, SharedLimitSchema, type SourceBackedAddress, SourceBackedAddressSchema, SourceChunk, type SourceChunkOptions, SourceKind, type SourceNodeRetrievalResult, type SourcePageInput, type SourceProvenance, SourceProvenanceSchema, type SourceRetrievalMode, type SourceRetrievalQuery, type SourceRetrievalResult, type SourceRetriever, SourceSpan, SourceSpanBBox, type SourceSpanIdInput, SourceSpanLocation, SourceSpanTableLocation, SourceSpanUnit, type SourceStore, type SourceTextUnitInput, type SubAnswer, SubAnswerSchema, type SubQuestion, SubQuestionSchema, type SubjectivityCategory, SubjectivityCategorySchema, type Sublimit, SublimitSchema, TITLE_POLICY_TYPES, type TaxFeeItem, TaxFeeItemSchema, type TextOverlay, type TitleDeclarations, TitleDeclarationsSchema, type TitlePolicyType, TitlePolicyTypeSchema, TokenUsage, type ToolDefinition, type TravelDeclarations, TravelDeclarationsSchema, type UmbrellaExcessDeclarations, UmbrellaExcessDeclarationsSchema, VALUATION_METHODS, VEHICLE_COVERAGE_TYPES, type ValidationIssueSeverity, ValidationIssueSeveritySchema, type ValuationMethod, ValuationMethodSchema, type VehicleCoverage, VehicleCoverageSchema, type VehicleCoverageType, VehicleCoverageTypeSchema, type VerifyResult, VerifyResultSchema, type WatercraftDeclarations, WatercraftDeclarationsSchema, type WorkersCompDeclarations, WorkersCompDeclarationsSchema, annotateOperationalCoverageLinesOfBusiness, buildAcroFormMappingPrompt, buildAgentSystemPrompt, buildAnswerParsingPrompt, buildAutoFillPrompt, buildBatchEmailGenerationPrompt, buildClassifyMessagePrompt, buildCoiRoutingPrompt, buildConfirmationSummaryPrompt, buildConversationMemoryGuidance, buildCoverageGapPrompt, buildDoclingProviderOptions, buildDocumentSourceTree, buildFieldExplanationPrompt, buildFieldExtractionPrompt, buildFlatPdfMappingPrompt, buildFormattingPrompt, buildIdentityPrompt, buildIntentPrompt, buildInterpretAttachmentPrompt, buildLookupFillPrompt, buildPageSourceSpans, buildPceNormalizePrompt, buildPceQualityReport, buildPceReplyPrompt, buildPceSubmissionPacket, buildPdfProviderOptions, buildQueryClassifyPrompt, buildQuestionBatchPrompt, buildQuotesPoliciesPrompt, buildReasonPrompt, buildReplyIntentClassificationPrompt, buildRespondPrompt, buildSafetyPrompt, buildSectionSourceSpans, buildSourceSpan, buildSourceSpanId, buildTextSourceSpans, buildVerifyPrompt, chunkDocument, chunkSourceSpans, collectPceEvidenceSources, compareSourceEvidence, createExtractor, createPceAgent, createPipelineContext, createQueryAgent, evaluateCaseProposals, evidenceContainsQuote, extractPageRange, fillAcroForm, generateNextMessage, getAcroFormFields, getDoclingPageRangeText, getExtractor, getFileIdentifier, getPdfPageCount, getTemplate, inferLineOfBusinessForOperationalCoverage, inferLinesOfBusinessFromOperationalCoverages, isDoclingExtractionInput, isFileReference, isLobCode, isPersonalLob, lobLabel, mergeQuestionAnswers, mergeSourceSpans, normalizeDoclingDocument, normalizeDocumentSourceTreePaths, normalizeForMatch, normalizeOperationalLinesOfBusiness, normalizeSourceSpans, orderSourceEvidence, overlayTextOnPdf, pLimit, pdfInputToBase64, pdfInputToBytes, processReply, resolveOperationalProfileLinesOfBusiness, safeGenerateObject, sanitizeNulls, scoreCaseProposal, selectPceExecutionMode, sourceSpanTextHash, stableCaseId, stableHash, stablePolicyChangeItemId, stableStringify, stripFences, toLobCodes, toStrictSchema, validateEvidence, validatePceItems, validateQuotedEvidence, withRetry };