@wix/stores 1.0.768 → 1.0.770
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 +2 -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 +16 -14
- package/build/cjs/meta.js +3 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/components.d.mts +2 -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 +16 -14
- package/build/es/meta.mjs +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/components.d.ts +2 -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 +16 -14
- package/build/internal/cjs/meta.js +3 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/components.d.mts +2 -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 +16 -14
- package/build/internal/es/meta.mjs +2 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +7 -6
|
@@ -9,6 +9,7 @@ import '@wix/auto_sdk_stores_customizations-v-3';
|
|
|
9
9
|
import '@wix/auto_sdk_stores_info-sections-v-3';
|
|
10
10
|
import '@wix/auto_sdk_stores_inventory-items-v-3';
|
|
11
11
|
import '@wix/auto_sdk_stores_products-v-3';
|
|
12
|
+
import '@wix/auto_sdk_stores_product-groups-v-3';
|
|
12
13
|
import '@wix/auto_sdk_stores_catalog-versioning';
|
|
13
14
|
import '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
14
15
|
import '@wix/auto_sdk_stores_ribbons-v-3';
|
|
@@ -25,6 +26,7 @@ import '@wix/auto_sdk_stores_customizations-v-3/meta';
|
|
|
25
26
|
import '@wix/auto_sdk_stores_info-sections-v-3/meta';
|
|
26
27
|
import '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
27
28
|
import '@wix/auto_sdk_stores_products-v-3/meta';
|
|
29
|
+
import '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
28
30
|
import '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
29
31
|
import '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
30
32
|
import '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ import * as auto_sdk_stores_inventoryItemsV3 from '@wix/auto_sdk_stores_inventor
|
|
|
16
16
|
export { auto_sdk_stores_inventoryItemsV3 as inventoryItemsV3 };
|
|
17
17
|
import * as auto_sdk_stores_productsV3 from '@wix/auto_sdk_stores_products-v-3';
|
|
18
18
|
export { auto_sdk_stores_productsV3 as productsV3 };
|
|
19
|
+
import * as auto_sdk_stores_productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';
|
|
20
|
+
export { auto_sdk_stores_productGroupsV3 as productGroupsV3 };
|
|
19
21
|
import * as auto_sdk_stores_catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';
|
|
20
22
|
export { auto_sdk_stores_catalogVersioning as catalogVersioning };
|
|
21
23
|
import * as auto_sdk_stores_readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';
|
package/build/cjs/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __export(index_exports, {
|
|
|
39
39
|
infoSectionsV3: () => infoSectionsV3,
|
|
40
40
|
inventory: () => inventory,
|
|
41
41
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
42
|
+
productGroupsV3: () => productGroupsV3,
|
|
42
43
|
products: () => products,
|
|
43
44
|
productsV3: () => productsV3,
|
|
44
45
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
@@ -57,6 +58,7 @@ var customizationsV3 = __toESM(require("@wix/auto_sdk_stores_customizations-v-3"
|
|
|
57
58
|
var infoSectionsV3 = __toESM(require("@wix/auto_sdk_stores_info-sections-v-3"));
|
|
58
59
|
var inventoryItemsV3 = __toESM(require("@wix/auto_sdk_stores_inventory-items-v-3"));
|
|
59
60
|
var productsV3 = __toESM(require("@wix/auto_sdk_stores_products-v-3"));
|
|
61
|
+
var productGroupsV3 = __toESM(require("@wix/auto_sdk_stores_product-groups-v-3"));
|
|
60
62
|
var catalogVersioning = __toESM(require("@wix/auto_sdk_stores_catalog-versioning"));
|
|
61
63
|
var readOnlyVariantsV3 = __toESM(require("@wix/auto_sdk_stores_read-only-variants-v-3"));
|
|
62
64
|
var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3"));
|
|
@@ -75,6 +77,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
|
75
77
|
infoSectionsV3,
|
|
76
78
|
inventory,
|
|
77
79
|
inventoryItemsV3,
|
|
80
|
+
productGroupsV3,
|
|
78
81
|
products,
|
|
79
82
|
productsV3,
|
|
80
83
|
readOnlyVariantsV3,
|
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 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 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,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,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';\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":[]}
|
package/build/cjs/meta.d.ts
CHANGED
|
@@ -16,17 +16,19 @@ import * as meta$7 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
|
16
16
|
export { meta$7 as inventoryItemsV3 };
|
|
17
17
|
import * as meta$8 from '@wix/auto_sdk_stores_products-v-3/meta';
|
|
18
18
|
export { meta$8 as productsV3 };
|
|
19
|
-
import * as meta$9 from '@wix/
|
|
20
|
-
export { meta$9 as
|
|
21
|
-
import * as meta$a from '@wix/
|
|
22
|
-
export { meta$a as
|
|
23
|
-
import * as meta$b from '@wix/
|
|
24
|
-
export { meta$b as
|
|
25
|
-
import * as meta$c from '@wix/
|
|
26
|
-
export { meta$c as
|
|
27
|
-
import * as meta$d from '@wix/
|
|
28
|
-
export { meta$d as
|
|
29
|
-
import * as meta$e from '@wix/
|
|
30
|
-
export { meta$e as
|
|
31
|
-
import * as meta$f from '@wix/
|
|
32
|
-
export { meta$f as
|
|
19
|
+
import * as meta$9 from '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
20
|
+
export { meta$9 as productGroupsV3 };
|
|
21
|
+
import * as meta$a from '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
22
|
+
export { meta$a as catalogVersioning };
|
|
23
|
+
import * as meta$b from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
24
|
+
export { meta$b as readOnlyVariantsV3 };
|
|
25
|
+
import * as meta$c from '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
26
|
+
export { meta$c as ribbonsV3 };
|
|
27
|
+
import * as meta$d from '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
28
|
+
export { meta$d as storesLocationsV3 };
|
|
29
|
+
import * as meta$e from '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
30
|
+
export { meta$e as abandonedCarts };
|
|
31
|
+
import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
32
|
+
export { meta$f as subscriptionOptions };
|
|
33
|
+
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
|
+
export { meta$g as inventory };
|
package/build/cjs/meta.js
CHANGED
|
@@ -39,6 +39,7 @@ __export(meta_exports, {
|
|
|
39
39
|
infoSectionsV3: () => infoSectionsV3,
|
|
40
40
|
inventory: () => inventory,
|
|
41
41
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
42
|
+
productGroupsV3: () => productGroupsV3,
|
|
42
43
|
products: () => products,
|
|
43
44
|
productsV3: () => productsV3,
|
|
44
45
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
@@ -57,6 +58,7 @@ var customizationsV3 = __toESM(require("@wix/auto_sdk_stores_customizations-v-3/
|
|
|
57
58
|
var infoSectionsV3 = __toESM(require("@wix/auto_sdk_stores_info-sections-v-3/meta"));
|
|
58
59
|
var inventoryItemsV3 = __toESM(require("@wix/auto_sdk_stores_inventory-items-v-3/meta"));
|
|
59
60
|
var productsV3 = __toESM(require("@wix/auto_sdk_stores_products-v-3/meta"));
|
|
61
|
+
var productGroupsV3 = __toESM(require("@wix/auto_sdk_stores_product-groups-v-3/meta"));
|
|
60
62
|
var catalogVersioning = __toESM(require("@wix/auto_sdk_stores_catalog-versioning/meta"));
|
|
61
63
|
var readOnlyVariantsV3 = __toESM(require("@wix/auto_sdk_stores_read-only-variants-v-3/meta"));
|
|
62
64
|
var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3/meta"));
|
|
@@ -75,6 +77,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
|
75
77
|
infoSectionsV3,
|
|
76
78
|
inventory,
|
|
77
79
|
inventoryItemsV3,
|
|
80
|
+
productGroupsV3,
|
|
78
81
|
products,
|
|
79
82
|
productsV3,
|
|
80
83
|
readOnlyVariantsV3,
|
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 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,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,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';\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":[]}
|
|
@@ -9,6 +9,7 @@ import '@wix/auto_sdk_stores_customizations-v-3';
|
|
|
9
9
|
import '@wix/auto_sdk_stores_info-sections-v-3';
|
|
10
10
|
import '@wix/auto_sdk_stores_inventory-items-v-3';
|
|
11
11
|
import '@wix/auto_sdk_stores_products-v-3';
|
|
12
|
+
import '@wix/auto_sdk_stores_product-groups-v-3';
|
|
12
13
|
import '@wix/auto_sdk_stores_catalog-versioning';
|
|
13
14
|
import '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
14
15
|
import '@wix/auto_sdk_stores_ribbons-v-3';
|
|
@@ -25,6 +26,7 @@ import '@wix/auto_sdk_stores_customizations-v-3/meta';
|
|
|
25
26
|
import '@wix/auto_sdk_stores_info-sections-v-3/meta';
|
|
26
27
|
import '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
27
28
|
import '@wix/auto_sdk_stores_products-v-3/meta';
|
|
29
|
+
import '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
28
30
|
import '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
29
31
|
import '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
30
32
|
import '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
package/build/es/index.d.mts
CHANGED
|
@@ -16,6 +16,8 @@ import * as auto_sdk_stores_inventoryItemsV3 from '@wix/auto_sdk_stores_inventor
|
|
|
16
16
|
export { auto_sdk_stores_inventoryItemsV3 as inventoryItemsV3 };
|
|
17
17
|
import * as auto_sdk_stores_productsV3 from '@wix/auto_sdk_stores_products-v-3';
|
|
18
18
|
export { auto_sdk_stores_productsV3 as productsV3 };
|
|
19
|
+
import * as auto_sdk_stores_productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';
|
|
20
|
+
export { auto_sdk_stores_productGroupsV3 as productGroupsV3 };
|
|
19
21
|
import * as auto_sdk_stores_catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';
|
|
20
22
|
export { auto_sdk_stores_catalogVersioning as catalogVersioning };
|
|
21
23
|
import * as auto_sdk_stores_readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';
|
package/build/es/index.mjs
CHANGED
|
@@ -8,6 +8,7 @@ import * as customizationsV3 from "@wix/auto_sdk_stores_customizations-v-3";
|
|
|
8
8
|
import * as infoSectionsV3 from "@wix/auto_sdk_stores_info-sections-v-3";
|
|
9
9
|
import * as inventoryItemsV3 from "@wix/auto_sdk_stores_inventory-items-v-3";
|
|
10
10
|
import * as productsV3 from "@wix/auto_sdk_stores_products-v-3";
|
|
11
|
+
import * as productGroupsV3 from "@wix/auto_sdk_stores_product-groups-v-3";
|
|
11
12
|
import * as catalogVersioning from "@wix/auto_sdk_stores_catalog-versioning";
|
|
12
13
|
import * as readOnlyVariantsV3 from "@wix/auto_sdk_stores_read-only-variants-v-3";
|
|
13
14
|
import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3";
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
infoSectionsV3,
|
|
26
27
|
inventory,
|
|
27
28
|
inventoryItemsV3,
|
|
29
|
+
productGroupsV3,
|
|
28
30
|
products,
|
|
29
31
|
productsV3,
|
|
30
32
|
readOnlyVariantsV3,
|
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 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 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,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';\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":[]}
|
package/build/es/meta.d.mts
CHANGED
|
@@ -16,17 +16,19 @@ import * as meta$7 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
|
16
16
|
export { meta$7 as inventoryItemsV3 };
|
|
17
17
|
import * as meta$8 from '@wix/auto_sdk_stores_products-v-3/meta';
|
|
18
18
|
export { meta$8 as productsV3 };
|
|
19
|
-
import * as meta$9 from '@wix/
|
|
20
|
-
export { meta$9 as
|
|
21
|
-
import * as meta$a from '@wix/
|
|
22
|
-
export { meta$a as
|
|
23
|
-
import * as meta$b from '@wix/
|
|
24
|
-
export { meta$b as
|
|
25
|
-
import * as meta$c from '@wix/
|
|
26
|
-
export { meta$c as
|
|
27
|
-
import * as meta$d from '@wix/
|
|
28
|
-
export { meta$d as
|
|
29
|
-
import * as meta$e from '@wix/
|
|
30
|
-
export { meta$e as
|
|
31
|
-
import * as meta$f from '@wix/
|
|
32
|
-
export { meta$f as
|
|
19
|
+
import * as meta$9 from '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
20
|
+
export { meta$9 as productGroupsV3 };
|
|
21
|
+
import * as meta$a from '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
22
|
+
export { meta$a as catalogVersioning };
|
|
23
|
+
import * as meta$b from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
24
|
+
export { meta$b as readOnlyVariantsV3 };
|
|
25
|
+
import * as meta$c from '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
26
|
+
export { meta$c as ribbonsV3 };
|
|
27
|
+
import * as meta$d from '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
28
|
+
export { meta$d as storesLocationsV3 };
|
|
29
|
+
import * as meta$e from '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
30
|
+
export { meta$e as abandonedCarts };
|
|
31
|
+
import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
32
|
+
export { meta$f as subscriptionOptions };
|
|
33
|
+
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
|
+
export { meta$g as inventory };
|
package/build/es/meta.mjs
CHANGED
|
@@ -8,6 +8,7 @@ import * as customizationsV3 from "@wix/auto_sdk_stores_customizations-v-3/meta"
|
|
|
8
8
|
import * as infoSectionsV3 from "@wix/auto_sdk_stores_info-sections-v-3/meta";
|
|
9
9
|
import * as inventoryItemsV3 from "@wix/auto_sdk_stores_inventory-items-v-3/meta";
|
|
10
10
|
import * as productsV3 from "@wix/auto_sdk_stores_products-v-3/meta";
|
|
11
|
+
import * as productGroupsV3 from "@wix/auto_sdk_stores_product-groups-v-3/meta";
|
|
11
12
|
import * as catalogVersioning from "@wix/auto_sdk_stores_catalog-versioning/meta";
|
|
12
13
|
import * as readOnlyVariantsV3 from "@wix/auto_sdk_stores_read-only-variants-v-3/meta";
|
|
13
14
|
import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3/meta";
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
infoSectionsV3,
|
|
26
27
|
inventory,
|
|
27
28
|
inventoryItemsV3,
|
|
29
|
+
productGroupsV3,
|
|
28
30
|
products,
|
|
29
31
|
productsV3,
|
|
30
32
|
readOnlyVariantsV3,
|
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 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,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';\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":[]}
|
|
@@ -9,6 +9,7 @@ import '@wix/auto_sdk_stores_customizations-v-3';
|
|
|
9
9
|
import '@wix/auto_sdk_stores_info-sections-v-3';
|
|
10
10
|
import '@wix/auto_sdk_stores_inventory-items-v-3';
|
|
11
11
|
import '@wix/auto_sdk_stores_products-v-3';
|
|
12
|
+
import '@wix/auto_sdk_stores_product-groups-v-3';
|
|
12
13
|
import '@wix/auto_sdk_stores_catalog-versioning';
|
|
13
14
|
import '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
14
15
|
import '@wix/auto_sdk_stores_ribbons-v-3';
|
|
@@ -25,6 +26,7 @@ import '@wix/auto_sdk_stores_customizations-v-3/meta';
|
|
|
25
26
|
import '@wix/auto_sdk_stores_info-sections-v-3/meta';
|
|
26
27
|
import '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
27
28
|
import '@wix/auto_sdk_stores_products-v-3/meta';
|
|
29
|
+
import '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
28
30
|
import '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
29
31
|
import '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
30
32
|
import '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
@@ -16,6 +16,8 @@ import * as auto_sdk_stores_inventoryItemsV3 from '@wix/auto_sdk_stores_inventor
|
|
|
16
16
|
export { auto_sdk_stores_inventoryItemsV3 as inventoryItemsV3 };
|
|
17
17
|
import * as auto_sdk_stores_productsV3 from '@wix/auto_sdk_stores_products-v-3';
|
|
18
18
|
export { auto_sdk_stores_productsV3 as productsV3 };
|
|
19
|
+
import * as auto_sdk_stores_productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';
|
|
20
|
+
export { auto_sdk_stores_productGroupsV3 as productGroupsV3 };
|
|
19
21
|
import * as auto_sdk_stores_catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';
|
|
20
22
|
export { auto_sdk_stores_catalogVersioning as catalogVersioning };
|
|
21
23
|
import * as auto_sdk_stores_readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
@@ -39,6 +39,7 @@ __export(index_exports, {
|
|
|
39
39
|
infoSectionsV3: () => infoSectionsV3,
|
|
40
40
|
inventory: () => inventory,
|
|
41
41
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
42
|
+
productGroupsV3: () => productGroupsV3,
|
|
42
43
|
products: () => products,
|
|
43
44
|
productsV3: () => productsV3,
|
|
44
45
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
@@ -57,6 +58,7 @@ var customizationsV3 = __toESM(require("@wix/auto_sdk_stores_customizations-v-3"
|
|
|
57
58
|
var infoSectionsV3 = __toESM(require("@wix/auto_sdk_stores_info-sections-v-3"));
|
|
58
59
|
var inventoryItemsV3 = __toESM(require("@wix/auto_sdk_stores_inventory-items-v-3"));
|
|
59
60
|
var productsV3 = __toESM(require("@wix/auto_sdk_stores_products-v-3"));
|
|
61
|
+
var productGroupsV3 = __toESM(require("@wix/auto_sdk_stores_product-groups-v-3"));
|
|
60
62
|
var catalogVersioning = __toESM(require("@wix/auto_sdk_stores_catalog-versioning"));
|
|
61
63
|
var readOnlyVariantsV3 = __toESM(require("@wix/auto_sdk_stores_read-only-variants-v-3"));
|
|
62
64
|
var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3"));
|
|
@@ -75,6 +77,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory"));
|
|
|
75
77
|
infoSectionsV3,
|
|
76
78
|
inventory,
|
|
77
79
|
inventoryItemsV3,
|
|
80
|
+
productGroupsV3,
|
|
78
81
|
products,
|
|
79
82
|
productsV3,
|
|
80
83
|
readOnlyVariantsV3,
|
|
@@ -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 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 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,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,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';\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":[]}
|
|
@@ -16,17 +16,19 @@ import * as meta$7 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
|
16
16
|
export { meta$7 as inventoryItemsV3 };
|
|
17
17
|
import * as meta$8 from '@wix/auto_sdk_stores_products-v-3/meta';
|
|
18
18
|
export { meta$8 as productsV3 };
|
|
19
|
-
import * as meta$9 from '@wix/
|
|
20
|
-
export { meta$9 as
|
|
21
|
-
import * as meta$a from '@wix/
|
|
22
|
-
export { meta$a as
|
|
23
|
-
import * as meta$b from '@wix/
|
|
24
|
-
export { meta$b as
|
|
25
|
-
import * as meta$c from '@wix/
|
|
26
|
-
export { meta$c as
|
|
27
|
-
import * as meta$d from '@wix/
|
|
28
|
-
export { meta$d as
|
|
29
|
-
import * as meta$e from '@wix/
|
|
30
|
-
export { meta$e as
|
|
31
|
-
import * as meta$f from '@wix/
|
|
32
|
-
export { meta$f as
|
|
19
|
+
import * as meta$9 from '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
20
|
+
export { meta$9 as productGroupsV3 };
|
|
21
|
+
import * as meta$a from '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
22
|
+
export { meta$a as catalogVersioning };
|
|
23
|
+
import * as meta$b from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
24
|
+
export { meta$b as readOnlyVariantsV3 };
|
|
25
|
+
import * as meta$c from '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
26
|
+
export { meta$c as ribbonsV3 };
|
|
27
|
+
import * as meta$d from '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
28
|
+
export { meta$d as storesLocationsV3 };
|
|
29
|
+
import * as meta$e from '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
30
|
+
export { meta$e as abandonedCarts };
|
|
31
|
+
import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
32
|
+
export { meta$f as subscriptionOptions };
|
|
33
|
+
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
|
+
export { meta$g as inventory };
|
|
@@ -39,6 +39,7 @@ __export(meta_exports, {
|
|
|
39
39
|
infoSectionsV3: () => infoSectionsV3,
|
|
40
40
|
inventory: () => inventory,
|
|
41
41
|
inventoryItemsV3: () => inventoryItemsV3,
|
|
42
|
+
productGroupsV3: () => productGroupsV3,
|
|
42
43
|
products: () => products,
|
|
43
44
|
productsV3: () => productsV3,
|
|
44
45
|
readOnlyVariantsV3: () => readOnlyVariantsV3,
|
|
@@ -57,6 +58,7 @@ var customizationsV3 = __toESM(require("@wix/auto_sdk_stores_customizations-v-3/
|
|
|
57
58
|
var infoSectionsV3 = __toESM(require("@wix/auto_sdk_stores_info-sections-v-3/meta"));
|
|
58
59
|
var inventoryItemsV3 = __toESM(require("@wix/auto_sdk_stores_inventory-items-v-3/meta"));
|
|
59
60
|
var productsV3 = __toESM(require("@wix/auto_sdk_stores_products-v-3/meta"));
|
|
61
|
+
var productGroupsV3 = __toESM(require("@wix/auto_sdk_stores_product-groups-v-3/meta"));
|
|
60
62
|
var catalogVersioning = __toESM(require("@wix/auto_sdk_stores_catalog-versioning/meta"));
|
|
61
63
|
var readOnlyVariantsV3 = __toESM(require("@wix/auto_sdk_stores_read-only-variants-v-3/meta"));
|
|
62
64
|
var ribbonsV3 = __toESM(require("@wix/auto_sdk_stores_ribbons-v-3/meta"));
|
|
@@ -75,6 +77,7 @@ var inventory = __toESM(require("@wix/auto_sdk_stores_inventory/meta"));
|
|
|
75
77
|
infoSectionsV3,
|
|
76
78
|
inventory,
|
|
77
79
|
inventoryItemsV3,
|
|
80
|
+
productGroupsV3,
|
|
78
81
|
products,
|
|
79
82
|
productsV3,
|
|
80
83
|
readOnlyVariantsV3,
|
|
@@ -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 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,eAA0B;AAC1B,kBAA6B;AAC7B,eAA0B;AAC1B,eAA0B;AAC1B,uBAAkC;AAClC,uBAAkC;AAClC,qBAAgC;AAChC,uBAAkC;AAClC,iBAA4B;AAC5B,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';\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":[]}
|
|
@@ -9,6 +9,7 @@ import '@wix/auto_sdk_stores_customizations-v-3';
|
|
|
9
9
|
import '@wix/auto_sdk_stores_info-sections-v-3';
|
|
10
10
|
import '@wix/auto_sdk_stores_inventory-items-v-3';
|
|
11
11
|
import '@wix/auto_sdk_stores_products-v-3';
|
|
12
|
+
import '@wix/auto_sdk_stores_product-groups-v-3';
|
|
12
13
|
import '@wix/auto_sdk_stores_catalog-versioning';
|
|
13
14
|
import '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
14
15
|
import '@wix/auto_sdk_stores_ribbons-v-3';
|
|
@@ -25,6 +26,7 @@ import '@wix/auto_sdk_stores_customizations-v-3/meta';
|
|
|
25
26
|
import '@wix/auto_sdk_stores_info-sections-v-3/meta';
|
|
26
27
|
import '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
27
28
|
import '@wix/auto_sdk_stores_products-v-3/meta';
|
|
29
|
+
import '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
28
30
|
import '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
29
31
|
import '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
30
32
|
import '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
@@ -16,6 +16,8 @@ import * as auto_sdk_stores_inventoryItemsV3 from '@wix/auto_sdk_stores_inventor
|
|
|
16
16
|
export { auto_sdk_stores_inventoryItemsV3 as inventoryItemsV3 };
|
|
17
17
|
import * as auto_sdk_stores_productsV3 from '@wix/auto_sdk_stores_products-v-3';
|
|
18
18
|
export { auto_sdk_stores_productsV3 as productsV3 };
|
|
19
|
+
import * as auto_sdk_stores_productGroupsV3 from '@wix/auto_sdk_stores_product-groups-v-3';
|
|
20
|
+
export { auto_sdk_stores_productGroupsV3 as productGroupsV3 };
|
|
19
21
|
import * as auto_sdk_stores_catalogVersioning from '@wix/auto_sdk_stores_catalog-versioning';
|
|
20
22
|
export { auto_sdk_stores_catalogVersioning as catalogVersioning };
|
|
21
23
|
import * as auto_sdk_stores_readOnlyVariantsV3 from '@wix/auto_sdk_stores_read-only-variants-v-3';
|
|
@@ -8,6 +8,7 @@ import * as customizationsV3 from "@wix/auto_sdk_stores_customizations-v-3";
|
|
|
8
8
|
import * as infoSectionsV3 from "@wix/auto_sdk_stores_info-sections-v-3";
|
|
9
9
|
import * as inventoryItemsV3 from "@wix/auto_sdk_stores_inventory-items-v-3";
|
|
10
10
|
import * as productsV3 from "@wix/auto_sdk_stores_products-v-3";
|
|
11
|
+
import * as productGroupsV3 from "@wix/auto_sdk_stores_product-groups-v-3";
|
|
11
12
|
import * as catalogVersioning from "@wix/auto_sdk_stores_catalog-versioning";
|
|
12
13
|
import * as readOnlyVariantsV3 from "@wix/auto_sdk_stores_read-only-variants-v-3";
|
|
13
14
|
import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3";
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
infoSectionsV3,
|
|
26
27
|
inventory,
|
|
27
28
|
inventoryItemsV3,
|
|
29
|
+
productGroupsV3,
|
|
28
30
|
products,
|
|
29
31
|
productsV3,
|
|
30
32
|
readOnlyVariantsV3,
|
|
@@ -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 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 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,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';\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":[]}
|
|
@@ -16,17 +16,19 @@ import * as meta$7 from '@wix/auto_sdk_stores_inventory-items-v-3/meta';
|
|
|
16
16
|
export { meta$7 as inventoryItemsV3 };
|
|
17
17
|
import * as meta$8 from '@wix/auto_sdk_stores_products-v-3/meta';
|
|
18
18
|
export { meta$8 as productsV3 };
|
|
19
|
-
import * as meta$9 from '@wix/
|
|
20
|
-
export { meta$9 as
|
|
21
|
-
import * as meta$a from '@wix/
|
|
22
|
-
export { meta$a as
|
|
23
|
-
import * as meta$b from '@wix/
|
|
24
|
-
export { meta$b as
|
|
25
|
-
import * as meta$c from '@wix/
|
|
26
|
-
export { meta$c as
|
|
27
|
-
import * as meta$d from '@wix/
|
|
28
|
-
export { meta$d as
|
|
29
|
-
import * as meta$e from '@wix/
|
|
30
|
-
export { meta$e as
|
|
31
|
-
import * as meta$f from '@wix/
|
|
32
|
-
export { meta$f as
|
|
19
|
+
import * as meta$9 from '@wix/auto_sdk_stores_product-groups-v-3/meta';
|
|
20
|
+
export { meta$9 as productGroupsV3 };
|
|
21
|
+
import * as meta$a from '@wix/auto_sdk_stores_catalog-versioning/meta';
|
|
22
|
+
export { meta$a as catalogVersioning };
|
|
23
|
+
import * as meta$b from '@wix/auto_sdk_stores_read-only-variants-v-3/meta';
|
|
24
|
+
export { meta$b as readOnlyVariantsV3 };
|
|
25
|
+
import * as meta$c from '@wix/auto_sdk_stores_ribbons-v-3/meta';
|
|
26
|
+
export { meta$c as ribbonsV3 };
|
|
27
|
+
import * as meta$d from '@wix/auto_sdk_stores_stores-locations-v-3/meta';
|
|
28
|
+
export { meta$d as storesLocationsV3 };
|
|
29
|
+
import * as meta$e from '@wix/auto_sdk_stores_abandoned-carts/meta';
|
|
30
|
+
export { meta$e as abandonedCarts };
|
|
31
|
+
import * as meta$f from '@wix/auto_sdk_stores_subscription-options/meta';
|
|
32
|
+
export { meta$f as subscriptionOptions };
|
|
33
|
+
import * as meta$g from '@wix/auto_sdk_stores_inventory/meta';
|
|
34
|
+
export { meta$g as inventory };
|
|
@@ -8,6 +8,7 @@ import * as customizationsV3 from "@wix/auto_sdk_stores_customizations-v-3/meta"
|
|
|
8
8
|
import * as infoSectionsV3 from "@wix/auto_sdk_stores_info-sections-v-3/meta";
|
|
9
9
|
import * as inventoryItemsV3 from "@wix/auto_sdk_stores_inventory-items-v-3/meta";
|
|
10
10
|
import * as productsV3 from "@wix/auto_sdk_stores_products-v-3/meta";
|
|
11
|
+
import * as productGroupsV3 from "@wix/auto_sdk_stores_product-groups-v-3/meta";
|
|
11
12
|
import * as catalogVersioning from "@wix/auto_sdk_stores_catalog-versioning/meta";
|
|
12
13
|
import * as readOnlyVariantsV3 from "@wix/auto_sdk_stores_read-only-variants-v-3/meta";
|
|
13
14
|
import * as ribbonsV3 from "@wix/auto_sdk_stores_ribbons-v-3/meta";
|
|
@@ -25,6 +26,7 @@ export {
|
|
|
25
26
|
infoSectionsV3,
|
|
26
27
|
inventory,
|
|
27
28
|
inventoryItemsV3,
|
|
29
|
+
productGroupsV3,
|
|
28
30
|
products,
|
|
29
31
|
productsV3,
|
|
30
32
|
readOnlyVariantsV3,
|
|
@@ -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 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,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';\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":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.770",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -62,16 +62,17 @@
|
|
|
62
62
|
"@wix/auto_sdk_stores_catalog-imports-v-3": "1.0.56",
|
|
63
63
|
"@wix/auto_sdk_stores_catalog-versioning": "1.0.64",
|
|
64
64
|
"@wix/auto_sdk_stores_collections": "1.0.39",
|
|
65
|
-
"@wix/auto_sdk_stores_customizations-v-3": "1.0.
|
|
65
|
+
"@wix/auto_sdk_stores_customizations-v-3": "1.0.82",
|
|
66
66
|
"@wix/auto_sdk_stores_info-sections-v-3": "1.0.92",
|
|
67
|
-
"@wix/auto_sdk_stores_inventory": "1.0.
|
|
67
|
+
"@wix/auto_sdk_stores_inventory": "1.0.69",
|
|
68
68
|
"@wix/auto_sdk_stores_inventory-items-v-3": "1.0.84",
|
|
69
|
-
"@wix/
|
|
69
|
+
"@wix/auto_sdk_stores_product-groups-v-3": "1.0.0",
|
|
70
|
+
"@wix/auto_sdk_stores_products": "1.0.91",
|
|
70
71
|
"@wix/auto_sdk_stores_products-v-3": "1.0.173",
|
|
71
72
|
"@wix/auto_sdk_stores_read-only-variants-v-3": "1.0.116",
|
|
72
73
|
"@wix/auto_sdk_stores_ribbons-v-3": "1.0.54",
|
|
73
74
|
"@wix/auto_sdk_stores_stores-locations-v-3": "1.0.50",
|
|
74
|
-
"@wix/auto_sdk_stores_subscription-options": "1.0.
|
|
75
|
+
"@wix/auto_sdk_stores_subscription-options": "1.0.65",
|
|
75
76
|
"@wix/auto_sdk_stores_wishlist": "1.0.37",
|
|
76
77
|
"@wix/headless-stores": "^0.0.119",
|
|
77
78
|
"@wix/stores_app-extensions": "1.0.53"
|
|
@@ -96,5 +97,5 @@
|
|
|
96
97
|
"fqdn": ""
|
|
97
98
|
}
|
|
98
99
|
},
|
|
99
|
-
"falconPackageHash": "
|
|
100
|
+
"falconPackageHash": "6220caaec67252065a0b53e0a6715d45edb0b443613043b762f5946e"
|
|
100
101
|
}
|