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