@claritylabs/cl-sdk 3.0.25 → 3.0.26

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.js CHANGED
@@ -3581,8 +3581,10 @@ function isOperationalCoverageRow(coverage) {
3581
3581
  const name = normalizeLabel(coverage.name);
3582
3582
  if (!hasCoverageLimitTerm(coverage.limits)) return false;
3583
3583
  if (/^(item\s+\d+|option:|annual policy premium|total premium|premium and payment)\b/i.test(coverage.name)) return false;
3584
+ if (/^coverage part\s+s\b/i.test(coverage.name)) return false;
3584
3585
  if (/^(nwc|iso|cg|il|acord)[-\s]?[a-z0-9]/i.test(coverage.name)) return false;
3585
3586
  if (/\b(forms?|endorsements?|premium|payment|terrorism risk insurance act|tria|erp option|bilateral discovery)\b/i.test(name)) return false;
3587
+ if (/\b(incurred in excess|shall erode|subject to|combined defense expenses)\b/i.test(name)) return false;
3586
3588
  if (coverage.name.split(/\s+/).length > 16 && !/\b(coverage|liability|sub[-\s]?limit|aggregate|each\s+(claim|loss|occurrence)|limit)\b/i.test(coverage.name)) {
3587
3589
  return false;
3588
3590
  }