aeorank 3.1.1 → 3.2.1
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 +63 -43
- package/dist/browser.d.ts +4 -4
- package/dist/browser.js +650 -157
- package/dist/browser.js.map +1 -1
- package/dist/{chunk-RYV25AUV.js → chunk-DW7MPQ4X.js} +188 -30
- package/dist/chunk-DW7MPQ4X.js.map +1 -0
- package/dist/chunk-PYV5JVTC.js +179 -0
- package/dist/chunk-PYV5JVTC.js.map +1 -0
- package/dist/cli.js +519 -140
- package/dist/cli.js.map +1 -1
- package/dist/{full-site-crawler-TQ35TB2X.js → full-site-crawler-HAF2X2X3.js} +2 -2
- package/dist/{full-site-crawler-OBECS7AT.js → full-site-crawler-W3WSE6WT.js} +18 -30
- package/dist/full-site-crawler-W3WSE6WT.js.map +1 -0
- package/dist/index.cjs +837 -183
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +650 -157
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-RYV25AUV.js.map +0 -1
- package/dist/full-site-crawler-OBECS7AT.js.map +0 -1
- /package/dist/{full-site-crawler-TQ35TB2X.js.map → full-site-crawler-HAF2X2X3.js.map} +0 -0
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 40 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 40 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 25 of 40 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
|
|
|
@@ -452,7 +452,7 @@ declare function scoreExtractionFriction(html: string): number;
|
|
|
452
452
|
/** 20. Image Context for AI */
|
|
453
453
|
declare function scoreImageContextAI(html: string): number;
|
|
454
454
|
/**
|
|
455
|
-
* Score a single page against
|
|
455
|
+
* Score a single page against 25 AEO criteria.
|
|
456
456
|
* Returns a 0-100 AEO score (capped at 75 for single pages) and individual criterion scores.
|
|
457
457
|
*/
|
|
458
458
|
declare function scorePage(html: string, url?: string): PageScoreResult;
|
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 40 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 40 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 25 of 40 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
|
|
|
@@ -452,7 +452,7 @@ declare function scoreExtractionFriction(html: string): number;
|
|
|
452
452
|
/** 20. Image Context for AI */
|
|
453
453
|
declare function scoreImageContextAI(html: string): number;
|
|
454
454
|
/**
|
|
455
|
-
* Score a single page against
|
|
455
|
+
* Score a single page against 25 AEO criteria.
|
|
456
456
|
* Returns a 0-100 AEO score (capped at 75 for single pages) and individual criterion scores.
|
|
457
457
|
*/
|
|
458
458
|
declare function scorePage(html: string, url?: string): PageScoreResult;
|