nuxtseo-shared 0.8.2 → 0.9.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/dist/const.d.mts +13 -1
- package/dist/const.d.ts +13 -1
- package/dist/module.json +1 -1
- package/package.json +1 -1
package/dist/const.d.mts
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
type ChecklistItemLevel = 'required' | 'recommended';
|
|
2
|
+
interface ChecklistItemDefinition {
|
|
3
|
+
/** Unique ID within its module, e.g. 'site-url' */
|
|
4
|
+
id: string;
|
|
5
|
+
/** Human-readable label */
|
|
6
|
+
label: string;
|
|
7
|
+
/** Why this matters */
|
|
8
|
+
description: string;
|
|
9
|
+
level: ChecklistItemLevel;
|
|
10
|
+
/** URL to relevant docs */
|
|
11
|
+
docsUrl: string;
|
|
12
|
+
}
|
|
1
13
|
interface NuxtSEOModule {
|
|
2
14
|
slug: 'nuxt-seo' | 'site-config' | 'robots' | 'sitemap' | 'og-image' | 'link-checker' | 'seo-utils' | 'schema-org' | 'skew-protection' | 'ai-ready' | 'ai-kit';
|
|
3
15
|
label: string;
|
|
@@ -23,4 +35,4 @@ declare const normalModules: NuxtSEOModule[];
|
|
|
23
35
|
declare const proModules: NuxtSEOModule[];
|
|
24
36
|
|
|
25
37
|
export { AiReadyModule, LinkCheckerModule, NuxtSEO, OgImageModule, RobotsModule, SchemaOrgModule, SeoUtilsModule, SiteConfigModule, SitemapModule, SkewProtectionModule, modules, normalModules, proModules };
|
|
26
|
-
export type { NuxtSEOModule };
|
|
38
|
+
export type { ChecklistItemDefinition, ChecklistItemLevel, NuxtSEOModule };
|
package/dist/const.d.ts
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
type ChecklistItemLevel = 'required' | 'recommended';
|
|
2
|
+
interface ChecklistItemDefinition {
|
|
3
|
+
/** Unique ID within its module, e.g. 'site-url' */
|
|
4
|
+
id: string;
|
|
5
|
+
/** Human-readable label */
|
|
6
|
+
label: string;
|
|
7
|
+
/** Why this matters */
|
|
8
|
+
description: string;
|
|
9
|
+
level: ChecklistItemLevel;
|
|
10
|
+
/** URL to relevant docs */
|
|
11
|
+
docsUrl: string;
|
|
12
|
+
}
|
|
1
13
|
interface NuxtSEOModule {
|
|
2
14
|
slug: 'nuxt-seo' | 'site-config' | 'robots' | 'sitemap' | 'og-image' | 'link-checker' | 'seo-utils' | 'schema-org' | 'skew-protection' | 'ai-ready' | 'ai-kit';
|
|
3
15
|
label: string;
|
|
@@ -23,4 +35,4 @@ declare const normalModules: NuxtSEOModule[];
|
|
|
23
35
|
declare const proModules: NuxtSEOModule[];
|
|
24
36
|
|
|
25
37
|
export { AiReadyModule, LinkCheckerModule, NuxtSEO, OgImageModule, RobotsModule, SchemaOrgModule, SeoUtilsModule, SiteConfigModule, SitemapModule, SkewProtectionModule, modules, normalModules, proModules };
|
|
26
|
-
export type { NuxtSEOModule };
|
|
38
|
+
export type { ChecklistItemDefinition, ChecklistItemLevel, NuxtSEOModule };
|
package/dist/module.json
CHANGED