@wix/app-extensions 1.0.48 → 1.0.49

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.
@@ -18520,6 +18520,14 @@ interface Link {
18520
18520
  * @maxSize 12
18521
18521
  */
18522
18522
  linkTypes?: LinkTypeWithLiterals[];
18523
+ /**
18524
+ * Allows limiting the link to specific Wix apps, by their app ID, in case of LinkType dynamicPageLink or pageLink
18525
+ * @format GUID
18526
+ * @maxSize 20
18527
+ */
18528
+ appIds?: string[];
18529
+ /** In case of LinkType dynamicPageLink, whether to hide inner routes in the page selection dialog (only top level pages will be selectable) */
18530
+ hideInnerRoute?: boolean | null;
18523
18531
  }
18524
18532
  /** @internal */
18525
18533
  declare enum LinkType {
@@ -18964,6 +18972,8 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
18964
18972
  textEnum?: TextEnum;
18965
18973
  /** In case of a Change event parameter */
18966
18974
  changeEvent?: ChangeEvent;
18975
+ /** In case of a link */
18976
+ link?: Link;
18967
18977
  /**
18968
18978
  * Exactly one of `data_type` or `dom_event` must be set
18969
18979
  * A data type parameter
@@ -19004,6 +19014,8 @@ interface FunctionParameterSelectedDataTypeOneOf {
19004
19014
  textEnum?: TextEnum;
19005
19015
  /** In case of a Change event parameter */
19006
19016
  changeEvent?: ChangeEvent;
19017
+ /** In case of a link */
19018
+ link?: Link;
19007
19019
  }
19008
19020
  /** @internal */
19009
19021
  declare enum DomEventType {