@wix/auto_sdk_blog_draft-posts 1.0.93 → 1.0.95

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.
@@ -798,7 +798,7 @@ interface Animation {
798
798
  /**
799
799
  * POINTER carries its fields directly on the union member in the JTD wall, hence
800
800
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
801
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
801
+ * kind that also needs an `effect` field would contend for this JSON name.
802
802
  */
803
803
  effect?: PointerEffect;
804
804
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -2623,6 +2623,13 @@ interface ShapeData {
2623
2623
  styles?: ShapeDataStyles;
2624
2624
  /** Node animation. */
2625
2625
  animation?: Animation;
2626
+ /** Link details for shapes that are links. */
2627
+ link?: Link;
2628
+ /**
2629
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
2630
+ * @maxLength 1000
2631
+ */
2632
+ altText?: string | null;
2626
2633
  }
2627
2634
  interface ShapeDataStyles {
2628
2635
  /**
@@ -3019,12 +3026,19 @@ interface Tag {
3019
3026
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
3020
3027
  children?: string;
3021
3028
  /**
3022
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
3029
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
3030
+ * i.e. an entry from the site's Advanced/Custom Tags list.
3031
+ *
3032
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
3033
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
3034
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
3035
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
3036
+ * a live page reflects a manual per-page SEO edit.
3023
3037
  *
3024
3038
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
3025
3039
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
3026
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
3027
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
3040
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
3041
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
3028
3042
  * Pass `seoData` explicitly to resolve against a known set of tags.
3029
3043
  */
3030
3044
  custom?: boolean;