@wix/auto_sdk_events_forms 1.0.109 → 1.0.110
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 +13 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +13 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +13 -0
- 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 +13 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +13 -0
- 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 +13 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +13 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1576,6 +1576,13 @@ interface Tag {
|
|
|
1576
1576
|
* `title`/`script`/`link` with a validation error even though they appear here —
|
|
1577
1577
|
* check the field description of the specific `tags`-typed field you're writing to
|
|
1578
1578
|
* for the types it actually supports and the error it returns.
|
|
1579
|
+
*
|
|
1580
|
+
* Limitation: `title` and `script` (e.g. a `script` tag with `props.type`
|
|
1581
|
+
* `"application/ld+json"` carrying structured data) are supported only when
|
|
1582
|
+
* `custom` is unset or `false`. Setting `custom: true` on a `title` or `script`
|
|
1583
|
+
* tag is rejected with `TAG_TYPE_NOT_ALLOWED`, because `custom: true` routes the
|
|
1584
|
+
* write through the site's Advanced/Custom Tags list. To write structured data,
|
|
1585
|
+
* omit `custom` (or set it to `false`).
|
|
1579
1586
|
*/
|
|
1580
1587
|
type?: string;
|
|
1581
1588
|
/**
|
|
@@ -1591,6 +1598,12 @@ interface Tag {
|
|
|
1591
1598
|
* Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
|
|
1592
1599
|
* i.e. an entry from the site's Advanced/Custom Tags list.
|
|
1593
1600
|
*
|
|
1601
|
+
* Setting this to `true` on a write restricts which `type` values are accepted
|
|
1602
|
+
* — the same restriction the Advanced/Custom Tags UI enforces. `title` and
|
|
1603
|
+
* `script` tags (including JSON-LD structured data) must be sent with `custom`
|
|
1604
|
+
* omitted or `false`; sending them with `custom: true` is rejected with
|
|
1605
|
+
* `TAG_TYPE_NOT_ALLOWED`.
|
|
1606
|
+
*
|
|
1594
1607
|
* Note this is a separate restriction from Site SEO Tags' own type restriction on
|
|
1595
1608
|
* `SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.
|
|
1596
1609
|
* for site-wide structured data) unconditionally. There is currently no way to set
|