@wix/stores 1.0.831 → 1.0.833
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/components.d.ts +3 -0
- package/build/cjs/index.d.ts +2 -0
- package/build/cjs/index.js +3 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -0
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +2 -0
- package/build/cjs/schemas.js +3 -0
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/components.d.mts +3 -0
- package/build/es/index.d.mts +2 -0
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -0
- package/build/es/meta.mjs +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +2 -0
- package/build/es/schemas.mjs +2 -0
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/components.d.ts +3 -0
- package/build/internal/cjs/index.d.ts +2 -0
- package/build/internal/cjs/index.js +3 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -0
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +2 -0
- package/build/internal/cjs/schemas.js +3 -0
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/components.d.mts +3 -0
- package/build/internal/es/index.d.mts +2 -0
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -0
- package/build/internal/es/meta.mjs +2 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +2 -0
- package/build/internal/es/schemas.mjs +2 -0
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +4 -3
|
@@ -17,6 +17,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3';
|
|
|
17
17
|
import '@wix/auto_sdk_stores_abandoned-carts';
|
|
18
18
|
import '@wix/auto_sdk_stores_subscription-options';
|
|
19
19
|
import '@wix/auto_sdk_stores_inventory';
|
|
20
|
+
import '@wix/auto_sdk_stores_promotions-v-3';
|
|
20
21
|
import '@wix/auto_sdk_stores_wishlist/meta';
|
|
21
22
|
import '@wix/auto_sdk_stores_collections/meta';
|
|
22
23
|
import '@wix/auto_sdk_stores_products/meta';
|
|
@@ -34,6 +35,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
|
34
35
|
import '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
35
36
|
import '@wix/auto_sdk_stores_subscription-options/meta';
|
|
36
37
|
import '@wix/auto_sdk_stores_inventory/meta';
|
|
38
|
+
import '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
37
39
|
import '@wix/auto_sdk_stores_collections/schemas';
|
|
38
40
|
import '@wix/auto_sdk_stores_products/schemas';
|
|
39
41
|
import '@wix/auto_sdk_stores_brands-v-3/schemas';
|
|
@@ -48,4 +50,5 @@ import '@wix/auto_sdk_stores_ribbons-v-3/schemas';
|
|
|
48
50
|
import '@wix/auto_sdk_stores_stores-locations-v-3/schemas';
|
|
49
51
|
import '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
50
52
|
import '@wix/auto_sdk_stores_inventory/schemas';
|
|
53
|
+
import '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
51
54
|
import '@wix/headless-stores/services';
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -32,3 +32,5 @@ import * as auto_sdk_stores_subscriptionOptions from '@wix/auto_sdk_stores_subsc
|
|
|
32
32
|
export { auto_sdk_stores_subscriptionOptions as subscriptionOptions };
|
|
33
33
|
import * as auto_sdk_stores_inventory from '@wix/auto_sdk_stores_inventory';
|
|
34
34
|
export { auto_sdk_stores_inventory as inventory };
|
|
35
|
+
import * as auto_sdk_stores_promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';
|
|
36
|
+
export { auto_sdk_stores_promotionsV3 as promotionsV3 };
|
package/build/cjs/index.js
CHANGED
|
@@ -42,6 +42,7 @@ __export(index_exports, {
|
|
|
42
42
|
productGroupsV3: () => productGroupsV3,
|
|
43
43
|
products: () => products,
|
|
44
44
|
productsV3: () => productsV3,
|
|
45
|
+
promotionsV3: () => promotionsV3,
|
|
45
46
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
46
47
|
ribbonsV3: () => ribbonsV3,
|
|
47
48
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -66,6 +67,7 @@ var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v
|
|
|
66
67
|
var abandonedCarts = __toESM(require("@wix/auto_sdk_stores_abandoned-carts"));
|
|
67
68
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options"));
|
|
68
69
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
70
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3"));
|
|
69
71
|
// Annotate the CommonJS export names for ESM import in node:
|
|
70
72
|
0 && (module.exports = {
|
|
71
73
|
abandonedCarts,
|
|
@@ -80,6 +82,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
|
80
82
|
productGroupsV3,
|
|
81
83
|
products,
|
|
82
84
|
productsV3,
|
|
85
|
+
promotionsV3,
|
|
83
86
|
readOnlyVariantsV3,
|
|
84
87
|
ribbonsV3,
|
|
85
88
|
storesLocationsV3,
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\nimport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n promotionsV3,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
package/build/cjs/meta.d.ts
CHANGED
|
@@ -32,3 +32,5 @@ import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
|
32
32
|
export { meta$f as subscriptionOptions };
|
|
33
33
|
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
34
|
export { meta$g as inventory };
|
|
35
|
+
import * as meta$h from '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
36
|
+
export { meta$h as promotionsV3 };
|
package/build/cjs/meta.js
CHANGED
|
@@ -42,6 +42,7 @@ __export(meta_exports, {
|
|
|
42
42
|
productGroupsV3: () => productGroupsV3,
|
|
43
43
|
products: () => products,
|
|
44
44
|
productsV3: () => productsV3,
|
|
45
|
+
promotionsV3: () => promotionsV3,
|
|
45
46
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
46
47
|
ribbonsV3: () => ribbonsV3,
|
|
47
48
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -66,6 +67,7 @@ var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v
|
|
|
66
67
|
var abandonedCarts = __toESM(require("@wix/auto_sdk_stores_abandoned-carts/meta"));
|
|
67
68
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options/meta"));
|
|
68
69
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
70
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3/meta"));
|
|
69
71
|
// Annotate the CommonJS export names for ESM import in node:
|
|
70
72
|
0 && (module.exports = {
|
|
71
73
|
abandonedCarts,
|
|
@@ -80,6 +82,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
|
80
82
|
productGroupsV3,
|
|
81
83
|
products,
|
|
82
84
|
productsV3,
|
|
85
|
+
promotionsV3,
|
|
83
86
|
readOnlyVariantsV3,
|
|
84
87
|
ribbonsV3,
|
|
85
88
|
storesLocationsV3,
|
package/build/cjs/meta.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
package/build/cjs/schemas.d.ts
CHANGED
|
@@ -26,3 +26,5 @@ import * as schemas$c from '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
|
26
26
|
export { schemas$c as subscriptionOptions };
|
|
27
27
|
import * as schemas$d from '@wix/auto_sdk_stores_inventory/schemas';
|
|
28
28
|
export { schemas$d as inventory };
|
|
29
|
+
import * as schemas$e from '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
30
|
+
export { schemas$e as promotionsV3 };
|
package/build/cjs/schemas.js
CHANGED
|
@@ -40,6 +40,7 @@ __export(schemas_exports, {
|
|
|
40
40
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
41
41
|
products: () => products,
|
|
42
42
|
productsV3: () => productsV3,
|
|
43
|
+
promotionsV3: () => promotionsV3,
|
|
43
44
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
44
45
|
ribbonsV3: () => ribbonsV3,
|
|
45
46
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -60,6 +61,7 @@ var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3/schemas"));
|
|
|
60
61
|
var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v-3/schemas"));
|
|
61
62
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options/schemas"));
|
|
62
63
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/schemas"));
|
|
64
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3/schemas"));
|
|
63
65
|
// Annotate the CommonJS export names for ESM import in node:
|
|
64
66
|
0 && (module.exports = {
|
|
65
67
|
brandsV3,
|
|
@@ -72,6 +74,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/schemas"));
|
|
|
72
74
|
inventoryItemsV3,
|
|
73
75
|
products,
|
|
74
76
|
productsV3,
|
|
77
|
+
promotionsV3,
|
|
75
78
|
readOnlyVariantsV3,
|
|
76
79
|
ribbonsV3,
|
|
77
80
|
storesLocationsV3,
|
package/build/cjs/schemas.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
|
@@ -17,6 +17,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3';
|
|
|
17
17
|
import '@wix/auto_sdk_stores_abandoned-carts';
|
|
18
18
|
import '@wix/auto_sdk_stores_subscription-options';
|
|
19
19
|
import '@wix/auto_sdk_stores_inventory';
|
|
20
|
+
import '@wix/auto_sdk_stores_promotions-v-3';
|
|
20
21
|
import '@wix/auto_sdk_stores_wishlist/meta';
|
|
21
22
|
import '@wix/auto_sdk_stores_collections/meta';
|
|
22
23
|
import '@wix/auto_sdk_stores_products/meta';
|
|
@@ -34,6 +35,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
|
34
35
|
import '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
35
36
|
import '@wix/auto_sdk_stores_subscription-options/meta';
|
|
36
37
|
import '@wix/auto_sdk_stores_inventory/meta';
|
|
38
|
+
import '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
37
39
|
import '@wix/auto_sdk_stores_collections/schemas';
|
|
38
40
|
import '@wix/auto_sdk_stores_products/schemas';
|
|
39
41
|
import '@wix/auto_sdk_stores_brands-v-3/schemas';
|
|
@@ -48,4 +50,5 @@ import '@wix/auto_sdk_stores_ribbons-v-3/schemas';
|
|
|
48
50
|
import '@wix/auto_sdk_stores_stores-locations-v-3/schemas';
|
|
49
51
|
import '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
50
52
|
import '@wix/auto_sdk_stores_inventory/schemas';
|
|
53
|
+
import '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
51
54
|
import '@wix/headless-stores/services';
|
package/build/es/index.d.mts
CHANGED
|
@@ -32,3 +32,5 @@ import * as auto_sdk_stores_subscriptionOptions from '@wix/auto_sdk_stores_subsc
|
|
|
32
32
|
export { auto_sdk_stores_subscriptionOptions as subscriptionOptions };
|
|
33
33
|
import * as auto_sdk_stores_inventory from '@wix/auto_sdk_stores_inventory';
|
|
34
34
|
export { auto_sdk_stores_inventory as inventory };
|
|
35
|
+
import * as auto_sdk_stores_promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';
|
|
36
|
+
export { auto_sdk_stores_promotionsV3 as promotionsV3 };
|
package/build/es/index.mjs
CHANGED
|
@@ -16,6 +16,7 @@ import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3";
|
|
|
16
16
|
import * as abandonedCarts from "@wix/auto_sdk_stores_abandoned-carts";
|
|
17
17
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options";
|
|
18
18
|
import * as inventory from "@wix/auto_sdk_stores_inventory";
|
|
19
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3";
|
|
19
20
|
export {
|
|
20
21
|
abandonedCarts,
|
|
21
22
|
brandsV3,
|
|
@@ -29,6 +30,7 @@ export {
|
|
|
29
30
|
productGroupsV3,
|
|
30
31
|
products,
|
|
31
32
|
productsV3,
|
|
33
|
+
promotionsV3,
|
|
32
34
|
readOnlyVariantsV3,
|
|
33
35
|
ribbonsV3,
|
|
34
36
|
storesLocationsV3,
|
package/build/es/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n};\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\nimport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n promotionsV3,\n};\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
package/build/es/meta.d.mts
CHANGED
|
@@ -32,3 +32,5 @@ import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
|
32
32
|
export { meta$f as subscriptionOptions };
|
|
33
33
|
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
34
|
export { meta$g as inventory };
|
|
35
|
+
import * as meta$h from '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
36
|
+
export { meta$h as promotionsV3 };
|
package/build/es/meta.mjs
CHANGED
|
@@ -16,6 +16,7 @@ import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3/me
|
|
|
16
16
|
import * as abandonedCarts from "@wix/auto_sdk_stores_abandoned-carts/meta";
|
|
17
17
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options/meta";
|
|
18
18
|
import * as inventory from "@wix/auto_sdk_stores_inventory/meta";
|
|
19
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3/meta";
|
|
19
20
|
export {
|
|
20
21
|
abandonedCarts,
|
|
21
22
|
brandsV3,
|
|
@@ -29,6 +30,7 @@ export {
|
|
|
29
30
|
productGroupsV3,
|
|
30
31
|
products,
|
|
31
32
|
productsV3,
|
|
33
|
+
promotionsV3,
|
|
32
34
|
readOnlyVariantsV3,
|
|
33
35
|
ribbonsV3,
|
|
34
36
|
storesLocationsV3,
|
package/build/es/meta.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/meta';\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
package/build/es/schemas.d.mts
CHANGED
|
@@ -26,3 +26,5 @@ import * as schemas$c from '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
|
26
26
|
export { schemas$c as subscriptionOptions };
|
|
27
27
|
import * as schemas$d from '@wix/auto_sdk_stores_inventory/schemas';
|
|
28
28
|
export { schemas$d as inventory };
|
|
29
|
+
import * as schemas$e from '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
30
|
+
export { schemas$e as promotionsV3 };
|
package/build/es/schemas.mjs
CHANGED
|
@@ -13,6 +13,7 @@ import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3/schemas";
|
|
|
13
13
|
import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3/schemas";
|
|
14
14
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options/schemas";
|
|
15
15
|
import * as inventory from "@wix/auto_sdk_stores_inventory/schemas";
|
|
16
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3/schemas";
|
|
16
17
|
export {
|
|
17
18
|
brandsV3,
|
|
18
19
|
catalogImportsV3,
|
|
@@ -24,6 +25,7 @@ export {
|
|
|
24
25
|
inventoryItemsV3,
|
|
25
26
|
products,
|
|
26
27
|
productsV3,
|
|
28
|
+
promotionsV3,
|
|
27
29
|
readOnlyVariantsV3,
|
|
28
30
|
ribbonsV3,
|
|
29
31
|
storesLocationsV3,
|
package/build/es/schemas.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\n"],"mappings":";AAAA,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/schemas';\n"],"mappings":";AAAA,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
|
@@ -17,6 +17,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3';
|
|
|
17
17
|
import '@wix/auto_sdk_stores_abandoned-carts';
|
|
18
18
|
import '@wix/auto_sdk_stores_subscription-options';
|
|
19
19
|
import '@wix/auto_sdk_stores_inventory';
|
|
20
|
+
import '@wix/auto_sdk_stores_promotions-v-3';
|
|
20
21
|
import '@wix/auto_sdk_stores_wishlist/meta';
|
|
21
22
|
import '@wix/auto_sdk_stores_collections/meta';
|
|
22
23
|
import '@wix/auto_sdk_stores_products/meta';
|
|
@@ -34,6 +35,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
|
34
35
|
import '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
35
36
|
import '@wix/auto_sdk_stores_subscription-options/meta';
|
|
36
37
|
import '@wix/auto_sdk_stores_inventory/meta';
|
|
38
|
+
import '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
37
39
|
import '@wix/auto_sdk_stores_collections/schemas';
|
|
38
40
|
import '@wix/auto_sdk_stores_products/schemas';
|
|
39
41
|
import '@wix/auto_sdk_stores_brands-v-3/schemas';
|
|
@@ -48,4 +50,5 @@ import '@wix/auto_sdk_stores_ribbons-v-3/schemas';
|
|
|
48
50
|
import '@wix/auto_sdk_stores_stores-locations-v-3/schemas';
|
|
49
51
|
import '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
50
52
|
import '@wix/auto_sdk_stores_inventory/schemas';
|
|
53
|
+
import '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
51
54
|
import '@wix/headless-stores/services';
|
|
@@ -32,3 +32,5 @@ import * as auto_sdk_stores_subscriptionOptions from '@wix/auto_sdk_stores_subsc
|
|
|
32
32
|
export { auto_sdk_stores_subscriptionOptions as subscriptionOptions };
|
|
33
33
|
import * as auto_sdk_stores_inventory from '@wix/auto_sdk_stores_inventory';
|
|
34
34
|
export { auto_sdk_stores_inventory as inventory };
|
|
35
|
+
import * as auto_sdk_stores_promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';
|
|
36
|
+
export { auto_sdk_stores_promotionsV3 as promotionsV3 };
|
|
@@ -42,6 +42,7 @@ __export(index_exports, {
|
|
|
42
42
|
productGroupsV3: () => productGroupsV3,
|
|
43
43
|
products: () => products,
|
|
44
44
|
productsV3: () => productsV3,
|
|
45
|
+
promotionsV3: () => promotionsV3,
|
|
45
46
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
46
47
|
ribbonsV3: () => ribbonsV3,
|
|
47
48
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -66,6 +67,7 @@ var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v
|
|
|
66
67
|
var abandonedCarts = __toESM(require("@wix/auto_sdk_stores_abandoned-carts"));
|
|
67
68
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options"));
|
|
68
69
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
70
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3"));
|
|
69
71
|
// Annotate the CommonJS export names for ESM import in node:
|
|
70
72
|
0 && (module.exports = {
|
|
71
73
|
abandonedCarts,
|
|
@@ -80,6 +82,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
|
80
82
|
productGroupsV3,
|
|
81
83
|
products,
|
|
82
84
|
productsV3,
|
|
85
|
+
promotionsV3,
|
|
83
86
|
readOnlyVariantsV3,
|
|
84
87
|
ribbonsV3,
|
|
85
88
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\nimport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n promotionsV3,\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
|
@@ -32,3 +32,5 @@ import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
|
32
32
|
export { meta$f as subscriptionOptions };
|
|
33
33
|
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
34
|
export { meta$g as inventory };
|
|
35
|
+
import * as meta$h from '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
36
|
+
export { meta$h as promotionsV3 };
|
|
@@ -42,6 +42,7 @@ __export(meta_exports, {
|
|
|
42
42
|
productGroupsV3: () => productGroupsV3,
|
|
43
43
|
products: () => products,
|
|
44
44
|
productsV3: () => productsV3,
|
|
45
|
+
promotionsV3: () => promotionsV3,
|
|
45
46
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
46
47
|
ribbonsV3: () => ribbonsV3,
|
|
47
48
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -66,6 +67,7 @@ var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v
|
|
|
66
67
|
var abandonedCarts = __toESM(require("@wix/auto_sdk_stores_abandoned-carts/meta"));
|
|
67
68
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options/meta"));
|
|
68
69
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
70
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3/meta"));
|
|
69
71
|
// Annotate the CommonJS export names for ESM import in node:
|
|
70
72
|
0 && (module.exports = {
|
|
71
73
|
abandonedCarts,
|
|
@@ -80,6 +82,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
|
80
82
|
productGroupsV3,
|
|
81
83
|
products,
|
|
82
84
|
productsV3,
|
|
85
|
+
promotionsV3,
|
|
83
86
|
readOnlyVariantsV3,
|
|
84
87
|
ribbonsV3,
|
|
85
88
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/meta';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,sBAAiC;AACjC,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,qBAAgC;AAChC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
|
@@ -26,3 +26,5 @@ import * as schemas$c from '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
|
26
26
|
export { schemas$c as subscriptionOptions };
|
|
27
27
|
import * as schemas$d from '@wix/auto_sdk_stores_inventory/schemas';
|
|
28
28
|
export { schemas$d as inventory };
|
|
29
|
+
import * as schemas$e from '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
30
|
+
export { schemas$e as promotionsV3 };
|
|
@@ -40,6 +40,7 @@ __export(schemas_exports, {
|
|
|
40
40
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
41
41
|
products: () => products,
|
|
42
42
|
productsV3: () => productsV3,
|
|
43
|
+
promotionsV3: () => promotionsV3,
|
|
43
44
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
44
45
|
ribbonsV3: () => ribbonsV3,
|
|
45
46
|
storesLocationsV3: () => storesLocationsV3,
|
|
@@ -60,6 +61,7 @@ var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3/schemas"));
|
|
|
60
61
|
var storesLocationsV3 = __toESM(require("@wix/auto_sdk_stores_stores-locations-v-3/schemas"));
|
|
61
62
|
var subscriptionOptions = __toESM(require("@wix/auto_sdk_stores_subscription-options/schemas"));
|
|
62
63
|
var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/schemas"));
|
|
64
|
+
var promotionsV3 = __toESM(require("@wix/auto_sdk_stores_promotions-v-3/schemas"));
|
|
63
65
|
// Annotate the CommonJS export names for ESM import in node:
|
|
64
66
|
0 && (module.exports = {
|
|
65
67
|
brandsV3,
|
|
@@ -72,6 +74,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/schemas"));
|
|
|
72
74
|
inventoryItemsV3,
|
|
73
75
|
products,
|
|
74
76
|
productsV3,
|
|
77
|
+
promotionsV3,
|
|
75
78
|
readOnlyVariantsV3,
|
|
76
79
|
ribbonsV3,
|
|
77
80
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,0BAAqC;AACrC,gBAA2B;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/schemas';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,wBAAmC;AACnC,yBAAoC;AACpC,gBAA2B;AAC3B,wBAAmC;AACnC,0BAAqC;AACrC,gBAA2B;AAC3B,mBAA8B;","names":[]}
|
|
@@ -17,6 +17,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3';
|
|
|
17
17
|
import '@wix/auto_sdk_stores_abandoned-carts';
|
|
18
18
|
import '@wix/auto_sdk_stores_subscription-options';
|
|
19
19
|
import '@wix/auto_sdk_stores_inventory';
|
|
20
|
+
import '@wix/auto_sdk_stores_promotions-v-3';
|
|
20
21
|
import '@wix/auto_sdk_stores_wishlist/meta';
|
|
21
22
|
import '@wix/auto_sdk_stores_collections/meta';
|
|
22
23
|
import '@wix/auto_sdk_stores_products/meta';
|
|
@@ -34,6 +35,7 @@ import '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
|
34
35
|
import '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
35
36
|
import '@wix/auto_sdk_stores_subscription-options/meta';
|
|
36
37
|
import '@wix/auto_sdk_stores_inventory/meta';
|
|
38
|
+
import '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
37
39
|
import '@wix/auto_sdk_stores_collections/schemas';
|
|
38
40
|
import '@wix/auto_sdk_stores_products/schemas';
|
|
39
41
|
import '@wix/auto_sdk_stores_brands-v-3/schemas';
|
|
@@ -48,4 +50,5 @@ import '@wix/auto_sdk_stores_ribbons-v-3/schemas';
|
|
|
48
50
|
import '@wix/auto_sdk_stores_stores-locations-v-3/schemas';
|
|
49
51
|
import '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
50
52
|
import '@wix/auto_sdk_stores_inventory/schemas';
|
|
53
|
+
import '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
51
54
|
import '@wix/headless-stores/services';
|
|
@@ -32,3 +32,5 @@ import * as auto_sdk_stores_subscriptionOptions from '@wix/auto_sdk_stores_subsc
|
|
|
32
32
|
export { auto_sdk_stores_subscriptionOptions as subscriptionOptions };
|
|
33
33
|
import * as auto_sdk_stores_inventory from '@wix/auto_sdk_stores_inventory';
|
|
34
34
|
export { auto_sdk_stores_inventory as inventory };
|
|
35
|
+
import * as auto_sdk_stores_promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';
|
|
36
|
+
export { auto_sdk_stores_promotionsV3 as promotionsV3 };
|
|
@@ -16,6 +16,7 @@ import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3";
|
|
|
16
16
|
import * as abandonedCarts from "@wix/auto_sdk_stores_abandoned-carts";
|
|
17
17
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options";
|
|
18
18
|
import * as inventory from "@wix/auto_sdk_stores_inventory";
|
|
19
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3";
|
|
19
20
|
export {
|
|
20
21
|
abandonedCarts,
|
|
21
22
|
brandsV3,
|
|
@@ -29,6 +30,7 @@ export {
|
|
|
29
30
|
productGroupsV3,
|
|
30
31
|
products,
|
|
31
32
|
productsV3,
|
|
33
|
+
promotionsV3,
|
|
32
34
|
readOnlyVariantsV3,
|
|
33
35
|
ribbonsV3,
|
|
34
36
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n};\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../index.ts"],"sourcesContent":["import * as wishlist from '@wix/auto_sdk_stores_wishlist';\nimport * as collections from '@wix/auto_sdk_stores_collections';\nimport * as products from '@wix/auto_sdk_stores_products';\nimport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3';\nimport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3';\nimport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3';\nimport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3';\nimport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3';\nimport * as productsV3 from '@wix/auto_sdk_stores_products-v-3';\nimport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';\nimport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';\nimport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';\nimport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3';\nimport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3';\nimport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts';\nimport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options';\nimport * as inventory from '@wix/auto_sdk_stores_inventory';\nimport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3';\n\nexport {\n wishlist,\n collections,\n products,\n brandsV3,\n catalogImportsV3,\n customizationsV3,\n infoSectionsV3,\n inventoryItemsV3,\n productsV3,\n productGroupsV3,\n catalogVersioning,\n readOnlyVariantsV3,\n ribbonsV3,\n storesLocationsV3,\n abandonedCarts,\n subscriptionOptions,\n inventory,\n promotionsV3,\n};\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
|
@@ -32,3 +32,5 @@ import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
|
32
32
|
export { meta$f as subscriptionOptions };
|
|
33
33
|
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
34
|
export { meta$g as inventory };
|
|
35
|
+
import * as meta$h from '@wix/auto_sdk_stores_promotions-v-3/meta';
|
|
36
|
+
export { meta$h as promotionsV3 };
|
|
@@ -16,6 +16,7 @@ import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3/me
|
|
|
16
16
|
import * as abandonedCarts from "@wix/auto_sdk_stores_abandoned-carts/meta";
|
|
17
17
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options/meta";
|
|
18
18
|
import * as inventory from "@wix/auto_sdk_stores_inventory/meta";
|
|
19
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3/meta";
|
|
19
20
|
export {
|
|
20
21
|
abandonedCarts,
|
|
21
22
|
brandsV3,
|
|
@@ -29,6 +30,7 @@ export {
|
|
|
29
30
|
productGroupsV3,
|
|
30
31
|
products,
|
|
31
32
|
productsV3,
|
|
33
|
+
promotionsV3,
|
|
32
34
|
readOnlyVariantsV3,
|
|
33
35
|
ribbonsV3,
|
|
34
36
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../meta.ts"],"sourcesContent":["export * as wishlist from '@wix/auto_sdk_stores_wishlist/meta';\nexport * as collections from '@wix/auto_sdk_stores_collections/meta';\nexport * as products from '@wix/auto_sdk_stores_products/meta';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/meta';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/meta';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/meta';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/meta';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/meta';\nexport * as productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3/meta';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/meta';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/meta';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/meta';\nexport * as abandonedCarts from '@wix/auto_sdk_stores_abandoned-carts/meta';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/meta';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/meta';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/meta';\n"],"mappings":";AAAA,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,qBAAqB;AACjC,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,oBAAoB;AAChC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
|
@@ -26,3 +26,5 @@ import * as schemas$c from '@wix/auto_sdk_stores_subscription-options/schemas';
|
|
|
26
26
|
export { schemas$c as subscriptionOptions };
|
|
27
27
|
import * as schemas$d from '@wix/auto_sdk_stores_inventory/schemas';
|
|
28
28
|
export { schemas$d as inventory };
|
|
29
|
+
import * as schemas$e from '@wix/auto_sdk_stores_promotions-v-3/schemas';
|
|
30
|
+
export { schemas$e as promotionsV3 };
|
|
@@ -13,6 +13,7 @@ import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3/schemas";
|
|
|
13
13
|
import * as storesLocationsV3 from "@wix/auto_sdk_stores_stores-locations-v-3/schemas";
|
|
14
14
|
import * as subscriptionOptions from "@wix/auto_sdk_stores_subscription-options/schemas";
|
|
15
15
|
import * as inventory from "@wix/auto_sdk_stores_inventory/schemas";
|
|
16
|
+
import * as promotionsV3 from "@wix/auto_sdk_stores_promotions-v-3/schemas";
|
|
16
17
|
export {
|
|
17
18
|
brandsV3,
|
|
18
19
|
catalogImportsV3,
|
|
@@ -24,6 +25,7 @@ export {
|
|
|
24
25
|
inventoryItemsV3,
|
|
25
26
|
products,
|
|
26
27
|
productsV3,
|
|
28
|
+
promotionsV3,
|
|
27
29
|
readOnlyVariantsV3,
|
|
28
30
|
ribbonsV3,
|
|
29
31
|
storesLocationsV3,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\n"],"mappings":";AAAA,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,yBAAyB;AACrC,YAAY,eAAe;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../../schemas.ts"],"sourcesContent":["export * as collections from '@wix/auto_sdk_stores_collections/schemas';\nexport * as products from '@wix/auto_sdk_stores_products/schemas';\nexport * as brandsV3 from '@wix/auto_sdk_stores_brands-v-3/schemas';\nexport * as catalogImportsV3 from '@wix/auto_sdk_stores_catalog-imports-v-3/schemas';\nexport * as customizationsV3 from '@wix/auto_sdk_stores_customizations-v-3/schemas';\nexport * as infoSectionsV3 from '@wix/auto_sdk_stores_info-sections-v-3/schemas';\nexport * as inventoryItemsV3 from '@wix/auto_sdk_stores_inventory-items-v-3/schemas';\nexport * as productsV3 from '@wix/auto_sdk_stores_products-v-3/schemas';\nexport * as catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning/schemas';\nexport * as readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3/schemas';\nexport * as ribbonsV3 from '@wix/auto_sdk_stores_ribbons-v-3/schemas';\nexport * as storesLocationsV3 from '@wix/auto_sdk_stores_stores-locations-v-3/schemas';\nexport * as subscriptionOptions from '@wix/auto_sdk_stores_subscription-options/schemas';\nexport * as inventory from '@wix/auto_sdk_stores_inventory/schemas';\nexport * as promotionsV3 from '@wix/auto_sdk_stores_promotions-v-3/schemas';\n"],"mappings":";AAAA,YAAY,iBAAiB;AAC7B,YAAY,cAAc;AAC1B,YAAY,cAAc;AAC1B,YAAY,sBAAsB;AAClC,YAAY,sBAAsB;AAClC,YAAY,oBAAoB;AAChC,YAAY,sBAAsB;AAClC,YAAY,gBAAgB;AAC5B,YAAY,uBAAuB;AACnC,YAAY,wBAAwB;AACpC,YAAY,eAAe;AAC3B,YAAY,uBAAuB;AACnC,YAAY,yBAAyB;AACrC,YAAY,eAAe;AAC3B,YAAY,kBAAkB;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.833",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -66,9 +66,10 @@
|
|
|
66
66
|
"@wix/auto_sdk_stores_info-sections-v-3": "1.0.98",
|
|
67
67
|
"@wix/auto_sdk_stores_inventory": "1.0.73",
|
|
68
68
|
"@wix/auto_sdk_stores_inventory-items-v-3": "1.0.89",
|
|
69
|
-
"@wix/auto_sdk_stores_product-groups-v-3": "1.0.
|
|
69
|
+
"@wix/auto_sdk_stores_product-groups-v-3": "1.0.4",
|
|
70
70
|
"@wix/auto_sdk_stores_products": "1.0.98",
|
|
71
71
|
"@wix/auto_sdk_stores_products-v-3": "1.0.198",
|
|
72
|
+
"@wix/auto_sdk_stores_promotions-v-3": "1.0.0",
|
|
72
73
|
"@wix/auto_sdk_stores_read-only-variants-v-3": "1.0.132",
|
|
73
74
|
"@wix/auto_sdk_stores_ribbons-v-3": "1.0.57",
|
|
74
75
|
"@wix/auto_sdk_stores_stores-locations-v-3": "1.0.53",
|
|
@@ -97,5 +98,5 @@
|
|
|
97
98
|
"fqdn": ""
|
|
98
99
|
}
|
|
99
100
|
},
|
|
100
|
-
"falconPackageHash": "
|
|
101
|
+
"falconPackageHash": "6f86e589484b89ba2e7307014edc947455c2b50102326528a17127b8"
|
|
101
102
|
}
|