aeorank 3.0.3 → 3.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/README.md +36 -23
- package/dist/browser.d.ts +3 -3
- package/dist/browser.js +450 -24
- package/dist/browser.js.map +1 -1
- package/dist/cli.js +386 -20
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +450 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +450 -24
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -219,7 +219,7 @@ interface SitemapDateAnalysis {
|
|
|
219
219
|
declare function countRecentSitemapDates(sitemapText: string): SitemapDateAnalysis;
|
|
220
220
|
declare function extractRawDataSummary(data: SiteData): RawDataSummary;
|
|
221
221
|
/**
|
|
222
|
-
* Run all
|
|
222
|
+
* Run all 36 criteria checks using pre-fetched site data.
|
|
223
223
|
* All functions are synchronous (no HTTP calls) - data was already fetched.
|
|
224
224
|
*/
|
|
225
225
|
declare function auditSiteFromData(data: SiteData): CriterionResult[];
|
|
@@ -231,7 +231,7 @@ declare function auditSite(targetUrl: string): Promise<CriterionResult[]>;
|
|
|
231
231
|
|
|
232
232
|
/**
|
|
233
233
|
* V2 Pillar Framework — 5-pillar scoring model.
|
|
234
|
-
* Maps all
|
|
234
|
+
* Maps all 36 criteria into pillars, computes sub-scores,
|
|
235
235
|
* provides client-friendly names, and calculates top-3 fixes.
|
|
236
236
|
*/
|
|
237
237
|
|
|
@@ -424,7 +424,7 @@ declare function analyzeAllPages(siteData: SiteData): PageReview[];
|
|
|
424
424
|
|
|
425
425
|
/**
|
|
426
426
|
* Per-page AEO scoring.
|
|
427
|
-
* Evaluates
|
|
427
|
+
* Evaluates 21 of 36 criteria that apply at individual page level.
|
|
428
428
|
* Produces a 0-75 AEO score per page (single-page cap at 75).
|
|
429
429
|
*/
|
|
430
430
|
|
package/dist/index.d.ts
CHANGED
|
@@ -219,7 +219,7 @@ interface SitemapDateAnalysis {
|
|
|
219
219
|
declare function countRecentSitemapDates(sitemapText: string): SitemapDateAnalysis;
|
|
220
220
|
declare function extractRawDataSummary(data: SiteData): RawDataSummary;
|
|
221
221
|
/**
|
|
222
|
-
* Run all
|
|
222
|
+
* Run all 36 criteria checks using pre-fetched site data.
|
|
223
223
|
* All functions are synchronous (no HTTP calls) - data was already fetched.
|
|
224
224
|
*/
|
|
225
225
|
declare function auditSiteFromData(data: SiteData): CriterionResult[];
|
|
@@ -231,7 +231,7 @@ declare function auditSite(targetUrl: string): Promise<CriterionResult[]>;
|
|
|
231
231
|
|
|
232
232
|
/**
|
|
233
233
|
* V2 Pillar Framework — 5-pillar scoring model.
|
|
234
|
-
* Maps all
|
|
234
|
+
* Maps all 36 criteria into pillars, computes sub-scores,
|
|
235
235
|
* provides client-friendly names, and calculates top-3 fixes.
|
|
236
236
|
*/
|
|
237
237
|
|
|
@@ -424,7 +424,7 @@ declare function analyzeAllPages(siteData: SiteData): PageReview[];
|
|
|
424
424
|
|
|
425
425
|
/**
|
|
426
426
|
* Per-page AEO scoring.
|
|
427
|
-
* Evaluates
|
|
427
|
+
* Evaluates 21 of 36 criteria that apply at individual page level.
|
|
428
428
|
* Produces a 0-75 AEO score per page (single-page cap at 75).
|
|
429
429
|
*/
|
|
430
430
|
|