@wix/auto_sdk_blog_draft-posts 1.0.39 → 1.0.40
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -2063,21 +2063,21 @@ interface Tag {
|
|
|
2063
2063
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
2064
2064
|
*/
|
|
2065
2065
|
props?: Record<string, any> | null;
|
|
2066
|
-
/** SEO tag
|
|
2066
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
2067
2067
|
meta?: Record<string, any> | null;
|
|
2068
2068
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
2069
2069
|
children?: string;
|
|
2070
|
-
/** Whether the tag is a custom tag. */
|
|
2070
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
2071
2071
|
custom?: boolean;
|
|
2072
|
-
/** Whether the tag is disabled. */
|
|
2072
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
2073
2073
|
disabled?: boolean;
|
|
2074
2074
|
}
|
|
2075
2075
|
interface Settings {
|
|
2076
2076
|
/**
|
|
2077
|
-
* Whether the
|
|
2077
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
2078
2078
|
*
|
|
2079
2079
|
*
|
|
2080
|
-
* Default: `false` (
|
|
2080
|
+
* Default: `false` (automatical redirect is enabled).
|
|
2081
2081
|
*/
|
|
2082
2082
|
preventAutoRedirect?: boolean;
|
|
2083
2083
|
/**
|