@wix/auto_sdk_events_forms 1.0.108 → 1.0.109

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.
@@ -1428,6 +1428,13 @@ interface Tag {
1428
1428
  *
1429
1429
  *
1430
1430
  * Supported values: `title`, `meta`, `script`, `link`.
1431
+ *
1432
+ * Which of these an API actually accepts depends on where the tag is being set: this
1433
+ * list is not a blanket guarantee across every API that reuses this message. Site SEO
1434
+ * Tags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects
1435
+ * `title`/`script`/`link` with a validation error even though they appear here —
1436
+ * check the field description of the specific `tags`-typed field you're writing to
1437
+ * for the types it actually supports and the error it returns.
1431
1438
  */
1432
1439
  type?: string;
1433
1440
  /**
@@ -1443,6 +1450,12 @@ interface Tag {
1443
1450
  * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
1444
1451
  * i.e. an entry from the site's Advanced/Custom Tags list.
1445
1452
  *
1453
+ * Note this is a separate restriction from Site SEO Tags' own type restriction on
1454
+ * `SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.
1455
+ * for site-wide structured data) unconditionally. There is currently no way to set
1456
+ * site-wide, every-page structured data through any of these APIs — write a per-page
1457
+ * `script` tag through the Item SEO Tags API instead.
1458
+ *
1446
1459
  * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
1447
1460
  * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
1448
1461
  * default/pattern — standard tags always resolve with `custom: false`, even when their content comes