aeorank 1.6.0 → 2.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 +110 -39
- package/dist/browser.d.ts +2 -2
- package/dist/browser.js +500 -125
- package/dist/browser.js.map +1 -1
- package/dist/{chunk-3IJISYWT.js → chunk-PKJIKMLV.js} +2 -2
- package/dist/chunk-PKJIKMLV.js.map +1 -0
- package/dist/cli.js +415 -96
- package/dist/cli.js.map +1 -1
- package/dist/{full-site-crawler-F7J2HRL4.js → full-site-crawler-FQYO46YV.js} +2 -2
- package/dist/full-site-crawler-FQYO46YV.js.map +1 -0
- package/dist/{full-site-crawler-VFARFR2C.js → full-site-crawler-UIOMKOZA.js} +2 -2
- package/dist/index.cjs +499 -124
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +500 -125
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/chunk-3IJISYWT.js.map +0 -1
- package/dist/full-site-crawler-F7J2HRL4.js.map +0 -1
- /package/dist/{full-site-crawler-VFARFR2C.js.map → full-site-crawler-UIOMKOZA.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -233,7 +233,7 @@ interface SiteData {
|
|
|
233
233
|
redirectedTo: string | null;
|
|
234
234
|
/** Set when homepage is a parked/for-sale/lost domain */
|
|
235
235
|
parkedReason: string | null;
|
|
236
|
-
/** Sampled blog/content pages from sitemap (up to
|
|
236
|
+
/** Sampled blog/content pages from sitemap (up to 50) */
|
|
237
237
|
blogSample?: FetchResult[];
|
|
238
238
|
/** Full-crawl statistics (set when --full-crawl is used) */
|
|
239
239
|
crawlStats?: {
|
|
@@ -362,7 +362,7 @@ declare function analyzeAllPages(siteData: SiteData): PageReview[];
|
|
|
362
362
|
|
|
363
363
|
/**
|
|
364
364
|
* Per-page AEO scoring.
|
|
365
|
-
* Evaluates 14 of
|
|
365
|
+
* Evaluates 14 of 28 criteria that apply at individual page level.
|
|
366
366
|
* Produces a 0-100 AEO score per page.
|
|
367
367
|
*/
|
|
368
368
|
|
package/dist/index.d.ts
CHANGED
|
@@ -233,7 +233,7 @@ interface SiteData {
|
|
|
233
233
|
redirectedTo: string | null;
|
|
234
234
|
/** Set when homepage is a parked/for-sale/lost domain */
|
|
235
235
|
parkedReason: string | null;
|
|
236
|
-
/** Sampled blog/content pages from sitemap (up to
|
|
236
|
+
/** Sampled blog/content pages from sitemap (up to 50) */
|
|
237
237
|
blogSample?: FetchResult[];
|
|
238
238
|
/** Full-crawl statistics (set when --full-crawl is used) */
|
|
239
239
|
crawlStats?: {
|
|
@@ -362,7 +362,7 @@ declare function analyzeAllPages(siteData: SiteData): PageReview[];
|
|
|
362
362
|
|
|
363
363
|
/**
|
|
364
364
|
* Per-page AEO scoring.
|
|
365
|
-
* Evaluates 14 of
|
|
365
|
+
* Evaluates 14 of 28 criteria that apply at individual page level.
|
|
366
366
|
* Produces a 0-100 AEO score per page.
|
|
367
367
|
*/
|
|
368
368
|
|