@wix/auto_sdk_events_wix-events-v-2 1.0.48 → 1.0.50
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 +31 -9
- 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 +31 -9
- 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 +31 -9
- 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 +31 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -1024,21 +1024,21 @@ interface Tag {
|
|
|
1024
1024
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
1025
1025
|
*/
|
|
1026
1026
|
props?: Record<string, any> | null;
|
|
1027
|
-
/** SEO tag
|
|
1027
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
1028
1028
|
meta?: Record<string, any> | null;
|
|
1029
1029
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1030
1030
|
children?: string;
|
|
1031
|
-
/** Whether the tag is a custom tag. */
|
|
1031
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
1032
1032
|
custom?: boolean;
|
|
1033
|
-
/** Whether the tag is disabled. */
|
|
1033
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1034
1034
|
disabled?: boolean;
|
|
1035
1035
|
}
|
|
1036
1036
|
interface Settings {
|
|
1037
1037
|
/**
|
|
1038
|
-
* Whether the
|
|
1038
|
+
* 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.
|
|
1039
1039
|
*
|
|
1040
1040
|
*
|
|
1041
|
-
* Default: `false` (
|
|
1041
|
+
* Default: `false` (automatical redirect is enabled).
|
|
1042
1042
|
*/
|
|
1043
1043
|
preventAutoRedirect?: boolean;
|
|
1044
1044
|
/**
|