@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.
@@ -756,7 +756,7 @@ interface Animation {
756
756
  /**
757
757
  * POINTER carries its fields directly on the union member in the JTD wall, hence
758
758
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
759
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
759
+ * kind that also needs an `effect` field would contend for this JSON name.
760
760
  */
761
761
  effect?: PointerEffect;
762
762
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -2581,6 +2581,13 @@ interface ShapeData {
2581
2581
  styles?: ShapeDataStyles;
2582
2582
  /** Node animation. */
2583
2583
  animation?: Animation;
2584
+ /** Link details for shapes that are links. */
2585
+ link?: Link;
2586
+ /**
2587
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
2588
+ * @maxLength 1000
2589
+ */
2590
+ altText?: string | null;
2584
2591
  }
2585
2592
  interface ShapeDataStyles {
2586
2593
  /**