@wix/auto_sdk_events_forms 1.0.104 → 1.0.105
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 +9 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +9 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +9 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +9 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1422,7 +1422,15 @@ interface Tag {
|
|
|
1422
1422
|
meta?: Record<string, any> | null;
|
|
1423
1423
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
1424
1424
|
children?: string;
|
|
1425
|
-
/**
|
|
1425
|
+
/**
|
|
1426
|
+
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
|
|
1427
|
+
*
|
|
1428
|
+
* Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
|
|
1429
|
+
* only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
|
|
1430
|
+
* or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
|
|
1431
|
+
* those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
|
|
1432
|
+
* Pass `seoData` explicitly to resolve against a known set of tags.
|
|
1433
|
+
*/
|
|
1426
1434
|
custom?: boolean;
|
|
1427
1435
|
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
1428
1436
|
disabled?: boolean;
|