lynkow 3.8.76 → 3.8.77
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/index.d.mts +10 -6
- package/dist/index.d.ts +10 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2082,9 +2082,13 @@ interface ContentSchema {
|
|
|
2082
2082
|
* array; no client-side cascade logic is needed.
|
|
2083
2083
|
*
|
|
2084
2084
|
* Reserved ids beginning with `auto:` identify the implicit nodes Lynkow
|
|
2085
|
-
* injects automatically (Article, FAQPage, BreadcrumbList,
|
|
2086
|
-
*
|
|
2087
|
-
*
|
|
2085
|
+
* injects automatically (Article, FAQPage, BreadcrumbList, WebPage). They
|
|
2086
|
+
* may appear in `jsonLdExclusions` to opt out of the corresponding
|
|
2087
|
+
* auto-node, but MUST NOT be used as user-provided ids.
|
|
2088
|
+
*
|
|
2089
|
+
* Organization is no longer auto-injected. Declare it explicitly at the
|
|
2090
|
+
* site level via `seo_settings.jsonLdGraph` (from the admin UI or the
|
|
2091
|
+
* `update_seo_settings` MCP tool).
|
|
2088
2092
|
*/
|
|
2089
2093
|
/**
|
|
2090
2094
|
* Source of a JSON-LD node.
|
|
@@ -2154,9 +2158,9 @@ interface JsonLdGraphConfig {
|
|
|
2154
2158
|
/**
|
|
2155
2159
|
* Parent-level `@id` values this level opts out of. Accepts both
|
|
2156
2160
|
* user-provided ids (e.g. `"site-org"`) and the reserved
|
|
2157
|
-
* `auto:article` / `auto:faqpage` / `auto:breadcrumb` /
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2161
|
+
* `auto:article` / `auto:faqpage` / `auto:breadcrumb` / `auto:webpage`
|
|
2162
|
+
* identifiers to suppress Lynkow's implicit nodes. Empty array when no
|
|
2163
|
+
* parent node is excluded.
|
|
2160
2164
|
*/
|
|
2161
2165
|
exclusions: string[];
|
|
2162
2166
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2082,9 +2082,13 @@ interface ContentSchema {
|
|
|
2082
2082
|
* array; no client-side cascade logic is needed.
|
|
2083
2083
|
*
|
|
2084
2084
|
* Reserved ids beginning with `auto:` identify the implicit nodes Lynkow
|
|
2085
|
-
* injects automatically (Article, FAQPage, BreadcrumbList,
|
|
2086
|
-
*
|
|
2087
|
-
*
|
|
2085
|
+
* injects automatically (Article, FAQPage, BreadcrumbList, WebPage). They
|
|
2086
|
+
* may appear in `jsonLdExclusions` to opt out of the corresponding
|
|
2087
|
+
* auto-node, but MUST NOT be used as user-provided ids.
|
|
2088
|
+
*
|
|
2089
|
+
* Organization is no longer auto-injected. Declare it explicitly at the
|
|
2090
|
+
* site level via `seo_settings.jsonLdGraph` (from the admin UI or the
|
|
2091
|
+
* `update_seo_settings` MCP tool).
|
|
2088
2092
|
*/
|
|
2089
2093
|
/**
|
|
2090
2094
|
* Source of a JSON-LD node.
|
|
@@ -2154,9 +2158,9 @@ interface JsonLdGraphConfig {
|
|
|
2154
2158
|
/**
|
|
2155
2159
|
* Parent-level `@id` values this level opts out of. Accepts both
|
|
2156
2160
|
* user-provided ids (e.g. `"site-org"`) and the reserved
|
|
2157
|
-
* `auto:article` / `auto:faqpage` / `auto:breadcrumb` /
|
|
2158
|
-
*
|
|
2159
|
-
*
|
|
2161
|
+
* `auto:article` / `auto:faqpage` / `auto:breadcrumb` / `auto:webpage`
|
|
2162
|
+
* identifiers to suppress Lynkow's implicit nodes. Empty array when no
|
|
2163
|
+
* parent node is excluded.
|
|
2160
2164
|
*/
|
|
2161
2165
|
exclusions: string[];
|
|
2162
2166
|
}
|