@wix/auto_sdk_blog_draft-posts 1.0.94 → 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
  /**