@claritylabs/cl-sdk 3.0.12 → 3.0.13

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
@@ -10120,6 +10120,7 @@ function shouldRunOutlineCleanup(sourceTree) {
10120
10120
  const hasDeclarations = topLevel.some((node) => node.title === "Declarations");
10121
10121
  const hasPolicyForm = topLevel.some((node) => node.title === "Policy Form");
10122
10122
  const hasEndorsements = topLevel.some((node) => node.title === "Endorsements");
10123
+ if (hasDeclarations && hasPolicyForm && hasEndorsements) return false;
10123
10124
  return genericPages.length > 0 || topLevel.length > 6 || !hasDeclarations || !hasPolicyForm || !hasEndorsements;
10124
10125
  }
10125
10126
  function buildOutlineCleanupPrompt(sourceTree) {