@wix/stores 1.0.338 → 1.0.340

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "main": "../build/cjs/meta.js"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/stores",
3
- "version": "1.0.338",
3
+ "version": "1.0.340",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -9,7 +9,7 @@
9
9
  "wix-sdk-module=backend,page,public"
10
10
  ],
11
11
  "sideEffects": false,
12
- "main": "./index.js",
12
+ "main": "./build/cjs/index.js",
13
13
  "types": "./build/es/index.d.ts",
14
14
  "exports": {
15
15
  ".": {
@@ -29,25 +29,24 @@
29
29
  }
30
30
  },
31
31
  "files": [
32
- "*",
33
- "!config/*",
34
- "!tsconfig.json",
35
- "!tsconfig.esm.json"
32
+ "build",
33
+ "meta",
34
+ "service-plugins"
36
35
  ],
37
36
  "dependencies": {
38
- "@wix/stores_brands-v-3": "1.0.41",
39
- "@wix/stores_catalog-versioning": "1.0.29",
40
- "@wix/stores_collections": "1.0.62",
41
- "@wix/stores_customizations-v-3": "1.0.43",
42
- "@wix/stores_info-sections-v-3": "1.0.42",
43
- "@wix/stores_inventory": "1.0.80",
44
- "@wix/stores_inventory-items-v-3": "1.0.53",
45
- "@wix/stores_products": "1.0.105",
46
- "@wix/stores_products-v-3": "1.0.100",
47
- "@wix/stores_ribbons-v-3": "1.0.38",
48
- "@wix/stores_stores-locations-v-3": "1.0.44",
49
- "@wix/stores_subscription-options": "1.0.62",
50
- "@wix/stores_wishlist": "1.0.54"
37
+ "@wix/stores_brands-v-3": "1.0.42",
38
+ "@wix/stores_catalog-versioning": "1.0.30",
39
+ "@wix/stores_collections": "1.0.63",
40
+ "@wix/stores_customizations-v-3": "1.0.44",
41
+ "@wix/stores_info-sections-v-3": "1.0.43",
42
+ "@wix/stores_inventory": "1.0.81",
43
+ "@wix/stores_inventory-items-v-3": "1.0.54",
44
+ "@wix/stores_products": "1.0.106",
45
+ "@wix/stores_products-v-3": "1.0.102",
46
+ "@wix/stores_ribbons-v-3": "1.0.39",
47
+ "@wix/stores_stores-locations-v-3": "1.0.45",
48
+ "@wix/stores_subscription-options": "1.0.63",
49
+ "@wix/stores_wishlist": "1.0.55"
51
50
  },
52
51
  "devDependencies": {
53
52
  "typescript": "^5.3.2"
@@ -67,5 +66,5 @@
67
66
  "fqdn": ""
68
67
  }
69
68
  },
70
- "falconPackageHash": "9298fb20b0461d358886b4643e1f360c498ed3d817d944f63c9a7cca"
69
+ "falconPackageHash": "71c1ee8cd79513fec0070ccf12a36dd12e72596240b89bfcf818bc73"
71
70
  }
package/context.ts DELETED
@@ -1,13 +0,0 @@
1
- export * as wishlist from '@wix/stores_wishlist/context';
2
- export * as collections from '@wix/stores_collections/context';
3
- export * as products from '@wix/stores_products/context';
4
- export * as brandsV3 from '@wix/stores_brands-v-3/context';
5
- export * as customizationsV3 from '@wix/stores_customizations-v-3/context';
6
- export * as infoSectionsV3 from '@wix/stores_info-sections-v-3/context';
7
- export * as inventoryItemsV3 from '@wix/stores_inventory-items-v-3/context';
8
- export * as productsV3 from '@wix/stores_products-v-3/context';
9
- export * as catalogVersioning from '@wix/stores_catalog-versioning/context';
10
- export * as ribbonsV3 from '@wix/stores_ribbons-v-3/context';
11
- export * as storesLocationsV3 from '@wix/stores_stores-locations-v-3/context';
12
- export * as subscriptionOptions from '@wix/stores_subscription-options/context';
13
- export * as inventory from '@wix/stores_inventory/context';
package/index.ts DELETED
@@ -1,29 +0,0 @@
1
- import * as wishlist from '@wix/stores_wishlist';
2
- import * as collections from '@wix/stores_collections';
3
- import * as products from '@wix/stores_products';
4
- import * as brandsV3 from '@wix/stores_brands-v-3';
5
- import * as customizationsV3 from '@wix/stores_customizations-v-3';
6
- import * as infoSectionsV3 from '@wix/stores_info-sections-v-3';
7
- import * as inventoryItemsV3 from '@wix/stores_inventory-items-v-3';
8
- import * as productsV3 from '@wix/stores_products-v-3';
9
- import * as catalogVersioning from '@wix/stores_catalog-versioning';
10
- import * as ribbonsV3 from '@wix/stores_ribbons-v-3';
11
- import * as storesLocationsV3 from '@wix/stores_stores-locations-v-3';
12
- import * as subscriptionOptions from '@wix/stores_subscription-options';
13
- import * as inventory from '@wix/stores_inventory';
14
-
15
- export {
16
- wishlist,
17
- collections,
18
- products,
19
- brandsV3,
20
- customizationsV3,
21
- infoSectionsV3,
22
- inventoryItemsV3,
23
- productsV3,
24
- catalogVersioning,
25
- ribbonsV3,
26
- storesLocationsV3,
27
- subscriptionOptions,
28
- inventory,
29
- };
package/meta.ts DELETED
@@ -1,13 +0,0 @@
1
- export * as wishlist from '@wix/stores_wishlist/meta';
2
- export * as collections from '@wix/stores_collections/meta';
3
- export * as products from '@wix/stores_products/meta';
4
- export * as brandsV3 from '@wix/stores_brands-v-3/meta';
5
- export * as customizationsV3 from '@wix/stores_customizations-v-3/meta';
6
- export * as infoSectionsV3 from '@wix/stores_info-sections-v-3/meta';
7
- export * as inventoryItemsV3 from '@wix/stores_inventory-items-v-3/meta';
8
- export * as productsV3 from '@wix/stores_products-v-3/meta';
9
- export * as catalogVersioning from '@wix/stores_catalog-versioning/meta';
10
- export * as ribbonsV3 from '@wix/stores_ribbons-v-3/meta';
11
- export * as storesLocationsV3 from '@wix/stores_stores-locations-v-3/meta';
12
- export * as subscriptionOptions from '@wix/stores_subscription-options/meta';
13
- export * as inventory from '@wix/stores_inventory/meta';