@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.
@@ -2043,7 +2043,7 @@ interface Animation {
2043
2043
  /**
2044
2044
  * POINTER carries its fields directly on the union member in the JTD wall, hence
2045
2045
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2046
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
2046
+ * kind that also needs an `effect` field would contend for this JSON name.
2047
2047
  */
2048
2048
  effect?: PointerEffect;
2049
2049
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -3868,6 +3868,13 @@ interface ShapeData {
3868
3868
  styles?: ShapeDataStyles;
3869
3869
  /** Node animation. */
3870
3870
  animation?: Animation;
3871
+ /** Link details for shapes that are links. */
3872
+ link?: Link;
3873
+ /**
3874
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
3875
+ * @maxLength 1000
3876
+ */
3877
+ altText?: string | null;
3871
3878
  }
3872
3879
  interface ShapeDataStyles {
3873
3880
  /**