@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.
@@ -1439,7 +1439,15 @@ interface Tag {
1439
1439
  meta?: Record<string, any> | null;
1440
1440
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1441
1441
  children?: string;
1442
- /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
1442
+ /**
1443
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
1444
+ *
1445
+ * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
1446
+ * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
1447
+ * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
1448
+ * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
1449
+ * Pass `seoData` explicitly to resolve against a known set of tags.
1450
+ */
1443
1451
  custom?: boolean;
1444
1452
  /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
1445
1453
  disabled?: boolean;