@wix/auto_sdk_blog_draft-posts 1.0.93 → 1.0.94

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.
@@ -2970,12 +2970,19 @@ interface Tag {
2970
2970
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2971
2971
  children?: string;
2972
2972
  /**
2973
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
2973
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
2974
+ * i.e. an entry from the site's Advanced/Custom Tags list.
2975
+ *
2976
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
2977
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
2978
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
2979
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
2980
+ * a live page reflects a manual per-page SEO edit.
2974
2981
  *
2975
2982
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
2976
2983
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
2977
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
2978
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
2984
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
2985
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
2979
2986
  * Pass `seoData` explicitly to resolve against a known set of tags.
2980
2987
  */
2981
2988
  custom?: boolean;