@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.
@@ -839,7 +839,7 @@ interface Animation {
839
839
  /**
840
840
  * POINTER carries its fields directly on the union member in the JTD wall, hence
841
841
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
842
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
842
+ * kind that also needs an `effect` field would contend for this JSON name.
843
843
  */
844
844
  effect?: PointerEffect;
845
845
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -2664,6 +2664,13 @@ interface ShapeData {
2664
2664
  styles?: ShapeDataStyles;
2665
2665
  /** Node animation. */
2666
2666
  animation?: Animation;
2667
+ /** Link details for shapes that are links. */
2668
+ link?: Link;
2669
+ /**
2670
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
2671
+ * @maxLength 1000
2672
+ */
2673
+ altText?: string | null;
2667
2674
  }
2668
2675
  interface ShapeDataStyles {
2669
2676
  /**
@@ -3060,12 +3067,19 @@ interface Tag {
3060
3067
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
3061
3068
  children?: string;
3062
3069
  /**
3063
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
3070
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
3071
+ * i.e. an entry from the site's Advanced/Custom Tags list.
3072
+ *
3073
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
3074
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
3075
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
3076
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
3077
+ * a live page reflects a manual per-page SEO edit.
3064
3078
  *
3065
3079
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
3066
3080
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
3067
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
3068
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
3081
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
3082
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
3069
3083
  * Pass `seoData` explicitly to resolve against a known set of tags.
3070
3084
  */
3071
3085
  custom?: boolean;