@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +6 -4
- package/build/trusted/cjs/index.js +1 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +6 -4
- package/build/trusted/es/index.mjs +1 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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
|
|
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
|
}
|
|
@@ -465,6 +465,7 @@ var Tag = /* @__PURE__ */ ((Tag2) => {
|
|
|
465
465
|
Tag2["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
|
|
466
466
|
Tag2["OWNER_CHECKOUT"] = "OWNER_CHECKOUT";
|
|
467
467
|
Tag2["ECOM_PREVIEW_CHECKOUT"] = "ECOM_PREVIEW_CHECKOUT";
|
|
468
|
+
Tag2["ALL_CATEGORIES"] = "ALL_CATEGORIES";
|
|
468
469
|
return Tag2;
|
|
469
470
|
})(Tag || {});
|
|
470
471
|
var FilterSelectionType = /* @__PURE__ */ ((FilterSelectionType2) => {
|