@wix/app-extensions 1.0.28 → 1.0.30

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.
@@ -7072,11 +7072,12 @@ declare enum Tag {
7072
7072
  GET_PAID = "GET_PAID",
7073
7073
  PIPELINE_CARD_CATALOG_ITEM = "PIPELINE_CARD_CATALOG_ITEM",
7074
7074
  OWNER_CHECKOUT = "OWNER_CHECKOUT",
7075
- ECOM_PREVIEW_CHECKOUT = "ECOM_PREVIEW_CHECKOUT"
7075
+ ECOM_PREVIEW_CHECKOUT = "ECOM_PREVIEW_CHECKOUT",
7076
+ ALL_CATEGORIES = "ALL_CATEGORIES"
7076
7077
  }
7077
7078
  /** @enumType */
7078
7079
  /** @internal */
7079
- type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY' | 'GET_PAID' | 'PIPELINE_CARD_CATALOG_ITEM' | 'OWNER_CHECKOUT' | 'ECOM_PREVIEW_CHECKOUT';
7080
+ type TagWithLiterals = Tag | 'UNKNOWN_TAG' | 'EMBEDDABLE' | 'ECOM_EDIT_ORDER' | 'ECOM_CREATE_ORDER' | 'INBOX' | 'ECOM_CREATE_PAY_LINK' | 'ECOM_DELIVERY_PROFILES' | 'ADD_TO_CATEGORY' | 'MY_BUSINESS' | 'PIPELINE_LINKED_ENTITY' | 'GET_PAID' | 'PIPELINE_CARD_CATALOG_ITEM' | 'OWNER_CHECKOUT' | 'ECOM_PREVIEW_CHECKOUT' | 'ALL_CATEGORIES';
7080
7081
  /** @internal */
7081
7082
  declare enum FilterSelectionType {
7082
7083
  UNKNOWN_SELECTION = "UNKNOWN_SELECTION",
@@ -18251,7 +18252,7 @@ interface ArrayItems extends ArrayItemsArrayDataOneOf {
18251
18252
  dataItem?: DataItem;
18252
18253
  /**
18253
18254
  * Marks this array as one whose item types are dynamic and resolved at runtime.
18254
- * Only applicable when a template container (containerType = TEMPLATE) has a data_item_key
18255
+ * Only applicable when a template container (containerType = TEMPLATE) has an item_key
18255
18256
  * that references this array. Mutually exclusive with 'data' and 'data_item'.
18256
18257
  */
18257
18258
  dynamicItems?: boolean | null;
@@ -18267,7 +18268,7 @@ interface ArrayItemsArrayDataOneOf {
18267
18268
  dataItem?: DataItem;
18268
18269
  /**
18269
18270
  * Marks this array as one whose item types are dynamic and resolved at runtime.
18270
- * Only applicable when a template container (containerType = TEMPLATE) has a data_item_key
18271
+ * Only applicable when a template container (containerType = TEMPLATE) has an item_key
18271
18272
  * that references this array. Mutually exclusive with 'data' and 'data_item'.
18272
18273
  */
18273
18274
  dynamicItems?: boolean | null;
@@ -18482,6 +18483,7 @@ interface ItemPath {
18482
18483
  * The key of the data item within the element's data scope.
18483
18484
  * Example: "items" – top-level data item 'items'
18484
18485
  * Example: "slides.title" – inner key 'title' of data item 'slides'
18486
+ * @minLength 1
18485
18487
  */
18486
18488
  itemKey?: string;
18487
18489
  }
@@ -984,6 +984,7 @@ var Tag = /* @__PURE__ */ ((Tag2) => {
984
984
  Tag2["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
985
985
  Tag2["OWNER_CHECKOUT"] = "OWNER_CHECKOUT";
986
986
  Tag2["ECOM_PREVIEW_CHECKOUT"] = "ECOM_PREVIEW_CHECKOUT";
987
+ Tag2["ALL_CATEGORIES"] = "ALL_CATEGORIES";
987
988
  return Tag2;
988
989
  })(Tag || {});
989
990
  var FilterSelectionType = /* @__PURE__ */ ((FilterSelectionType2) => {