correctover-scan 1.0.0 → 1.1.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.
- package/index.js +14 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -107,10 +107,20 @@ function formatResults(results, stats, filename) {
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
// CTA
|
|
110
|
-
lines.push(
|
|
111
|
-
lines.push(`${c.dim}
|
|
112
|
-
|
|
113
|
-
|
|
110
|
+
lines.push('');
|
|
111
|
+
lines.push(`${c.dim}── Upgrade ─────────────────────────────────${c.reset}`);
|
|
112
|
+
if (stats.fail > 0 || stats.score < 60) {
|
|
113
|
+
lines.push(`${c.yellow}${c.bold}⚡ Score too low? CCS Pro generates formal compliance reports.${c.reset}`);
|
|
114
|
+
lines.push(`${c.dim} Enterprise: real-time runtime protection + Token guarantee${c.reset}`);
|
|
115
|
+
lines.push(`${c.cyan} → Join waitlist: https://correctover.com/waitlist/${c.reset}`);
|
|
116
|
+
} else {
|
|
117
|
+
lines.push(`${c.green}✓ Good score! Get a formal compliance certificate with CCS Pro.${c.reset}`);
|
|
118
|
+
lines.push(`${c.dim} Audit reports · Team dashboard · Custom rules · SOC 2 ready${c.reset}`);
|
|
119
|
+
lines.push(`${c.cyan} → https://correctover.com/waitlist/${c.reset}`);
|
|
120
|
+
}
|
|
121
|
+
lines.push(`${c.dim}Enterprise: runtime SDK + Token guarantee → https://correctover.com${c.reset}`);
|
|
122
|
+
lines.push('');
|
|
123
|
+
lines.push(`${c.dim}Web: https://correctover.com/scan/ | GitHub: https://github.com/Correctover${c.reset}`);
|
|
114
124
|
|
|
115
125
|
return lines.join('\n');
|
|
116
126
|
}
|