@wix/auto_sdk_blog_draft-posts 1.0.96 → 1.0.97

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.
@@ -3062,6 +3062,13 @@ interface Tag {
3062
3062
  *
3063
3063
  *
3064
3064
  * Supported values: `title`, `meta`, `script`, `link`.
3065
+ *
3066
+ * Which of these an API actually accepts depends on where the tag is being set: this
3067
+ * list is not a blanket guarantee across every API that reuses this message. Site SEO
3068
+ * Tags in particular accepts only `meta` (see `SiteSeoTags.tags`) and rejects
3069
+ * `title`/`script`/`link` with a validation error even though they appear here —
3070
+ * check the field description of the specific `tags`-typed field you're writing to
3071
+ * for the types it actually supports and the error it returns.
3065
3072
  */
3066
3073
  type?: string;
3067
3074
  /**
@@ -3077,6 +3084,12 @@ interface Tag {
3077
3084
  * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages) —
3078
3085
  * i.e. an entry from the site's Advanced/Custom Tags list.
3079
3086
  *
3087
+ * Note this is a separate restriction from Site SEO Tags' own type restriction on
3088
+ * `SiteSeoTags.tags`: even with `custom` unset, Site SEO Tags rejects `script` (e.g.
3089
+ * for site-wide structured data) unconditionally. There is currently no way to set
3090
+ * site-wide, every-page structured data through any of these APIs — write a per-page
3091
+ * `script` tag through the Item SEO Tags API instead.
3092
+ *
3080
3093
  * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
3081
3094
  * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
3082
3095
  * default/pattern — standard tags always resolve with `custom: false`, even when their content comes