@wix/app-extensions 1.0.120 → 1.0.122

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.
@@ -8439,7 +8439,7 @@ interface Animation {
8439
8439
  /**
8440
8440
  * POINTER carries its fields directly on the union member in the JTD wall, hence
8441
8441
  * flat fields here (ts-proto camelCase must equal the JTD property names). A future
8442
- * SCROLL variant will contend for the `effect` JSON name resolve when it lands.
8442
+ * kind that also needs an `effect` field would contend for this JSON name.
8443
8443
  */
8444
8444
  effect?: PointerEffect;
8445
8445
  /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
@@ -10453,6 +10453,13 @@ interface ShapeData {
10453
10453
  styles?: ShapeDataStyles;
10454
10454
  /** Node animation. */
10455
10455
  animation?: Animation;
10456
+ /** Link details for shapes that are links. */
10457
+ link?: V1Link;
10458
+ /**
10459
+ * Alternate text describing the link's purpose for accessibility. Applies only when `link` is set.
10460
+ * @maxLength 1000
10461
+ */
10462
+ altText?: string | null;
10456
10463
  }
10457
10464
  /** @internal */
10458
10465
  interface ShapeDataStyles {
@@ -26652,6 +26659,12 @@ interface AppToolConfig {
26652
26659
  responseSchema?: Record<string, any> | null;
26653
26660
  /** Whether the tool is available to Aria. Set to `true` to enable it. */
26654
26661
  activated?: boolean;
26662
+ /**
26663
+ * The tool's display name shown to users.
26664
+ * @minLength 2
26665
+ * @maxLength 50
26666
+ */
26667
+ displayName?: string | null;
26655
26668
  }
26656
26669
  /** @internal */
26657
26670
  interface Empty {