@wix/app-extensions 1.0.13 → 1.0.15

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.
@@ -3639,6 +3639,8 @@ interface WebComponentData {
3639
3639
  excludeFromAutoRevoke?: boolean;
3640
3640
  /** defines the widget's behaviour in editor page */
3641
3641
  widgetBehavior?: WidgetBehavior;
3642
+ /** When true, avoid adding widgets when this component is installed/used. */
3643
+ avoidAddingWidgets?: boolean;
3642
3644
  }
3643
3645
  /** Web component size */
3644
3646
  /** @internal */
@@ -21711,6 +21713,14 @@ interface Parameter extends ParameterValueDefinitionDetailsOneOf {
21711
21713
  * This drives the 'value_definition_details' oneof.
21712
21714
  */
21713
21715
  definitionMode?: FilterValueDefinitionModeWithLiterals;
21716
+ /**
21717
+ * Maximum number of values allowed when `repeated` is true.
21718
+ * Valid range: [2, 100]. Default (when not set): 20.
21719
+ * Must not be set when `repeated` is false.
21720
+ * @min 2
21721
+ * @max 100
21722
+ */
21723
+ maxNumberOfItems?: number | null;
21714
21724
  }
21715
21725
  /** @oneof */
21716
21726
  /** @internal */