@wix/auto_sdk_events_forms 1.0.106 → 1.0.107

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.
@@ -2060,7 +2060,7 @@ interface Animation {
2060
2060
  /**
2061
2061
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2062
2062
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2063
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2063
+ * kind that also needs an `effect` field would contend for this JSON name.
2064
2064
  */
2065
2065
  effect?: PointerEffect;
2066
2066
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -3885,6 +3885,13 @@ interface ShapeData {
3885
3885
  styles?: ShapeDataStyles;
3886
3886
  /** Node animation. */
3887
3887
  animation?: Animation;
3888
+ /** Link details for shapes that are links. */
3889
+ link?: Link;
3890
+ /**
3891
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
3892
+ * @maxLength 1000
3893
+ */
3894
+ altText?: string | null;
3888
3895
  }
3889
3896
  interface ShapeDataStyles {
3890
3897
  /**