@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.
@@ -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
  /**