@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.
@@ -733,7 +733,7 @@ interface Animation {
733
733
  /**
734
734
  * POINTER carries its fields directly on the union member in the JTD wall, hence
735
735
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
736
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
736
+ * kind that also needs an `effect` field would contend for this JSON name.
737
737
  */
738
738
  effect?: PointerEffect;
739
739
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -2558,6 +2558,13 @@ interface ShapeData {
2558
2558
  styles?: ShapeDataStyles;
2559
2559
  /** Node animation. */
2560
2560
  animation?: Animation;
2561
+ /** Link details for shapes that are links. */
2562
+ link?: Link;
2563
+ /**
2564
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
2565
+ * @maxLength 1000
2566
+ */
2567
+ altText?: string | null;
2561
2568
  }
2562
2569
  interface ShapeDataStyles {
2563
2570
  /**
@@ -2947,12 +2954,19 @@ interface Tag {
2947
2954
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
2948
2955
  children?: string;
2949
2956
  /**
2950
- * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
2957
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages)
2958
+ * i.e. an entry from the site's Advanced/Custom Tags list.
2959
+ *
2960
+ * This flag is scoped to that feature only. It is NOT an indicator of whether a standard tag
2961
+ * (`title`, `description`, Open Graph, etc.) reflects a manually configured value versus a computed
2962
+ * default/pattern — standard tags always resolve with `custom: false`, even when their content comes
2963
+ * from a page's manually saved SEO title/description override. Don't use this field to verify whether
2964
+ * a live page reflects a manual per-page SEO edit.
2951
2965
  *
2952
2966
  * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
2953
2967
  * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
2954
- * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
2955
- * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
2968
+ * or Wix Studio pages, so even genuine Advanced/Custom Tags saved on those pages are missing from the
2969
+ * response entirely — there, `false` means this API could not tell, not that no custom tag exists.
2956
2970
  * Pass `seoData` explicitly to resolve against a known set of tags.
2957
2971
  */
2958
2972
  custom?: boolean;