seo-intel 1.4.6 → 1.4.7
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/server.js +2 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.7 (2026-04-09)
|
|
4
|
+
|
|
5
|
+
### Export: profiles are actions only
|
|
6
|
+
- Removed schemas from all export profiles — pure inventory, not actionable
|
|
7
|
+
- "No schema" issues already surfaced in technical section
|
|
8
|
+
- Raw Full Export (ZIP) still includes everything for data access
|
|
9
|
+
|
|
3
10
|
## 1.4.6 (2026-04-09)
|
|
4
11
|
|
|
5
12
|
### Export: rich actionable content
|
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -611,7 +611,7 @@ async function handleRequest(req, res) {
|
|
|
611
611
|
// ── Profile definitions: which sections + which insight types matter ──
|
|
612
612
|
const PROFILES = {
|
|
613
613
|
dev: {
|
|
614
|
-
sections: ['technical', '
|
|
614
|
+
sections: ['technical', 'links', 'headings', 'watch', 'insights'],
|
|
615
615
|
insightTypes: ['technical_gap', 'quick_win', 'site_watch'],
|
|
616
616
|
label: 'Developer',
|
|
617
617
|
},
|
|
@@ -827,11 +827,7 @@ async function handleRequest(req, res) {
|
|
|
827
827
|
}
|
|
828
828
|
return issues;
|
|
829
829
|
}
|
|
830
|
-
case 'schemas':
|
|
831
|
-
if (!Array.isArray(data)) return data;
|
|
832
|
-
// Own site only for all profiles
|
|
833
|
-
return data.filter(r => r.role === 'target' || r.role === 'owned');
|
|
834
|
-
}
|
|
830
|
+
case 'schemas': return data; // raw only — not in any profile
|
|
835
831
|
case 'aeo': {
|
|
836
832
|
if (!Array.isArray(data)) return data;
|
|
837
833
|
if (prof === 'content') {
|