@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.
@@ -2252,7 +2252,7 @@ interface Animation {
2252
2252
  /**
2253
2253
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2254
2254
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2255
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2255
+ * kind that also needs an `effect` field would contend for this JSON name.
2256
2256
  */
2257
2257
  effect?: PointerEffect;
2258
2258
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -4077,6 +4077,13 @@ interface ShapeData {
4077
4077
  styles?: ShapeDataStyles;
4078
4078
  /** Node animation. */
4079
4079
  animation?: Animation;
4080
+ /** Link details for shapes that are links. */
4081
+ link?: Link;
4082
+ /**
4083
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
4084
+ * @maxLength 1000
4085
+ */
4086
+ altText?: string | null;
4080
4087
  }
4081
4088
  interface ShapeDataStyles {
4082
4089
  /**