@wix/stores 1.0.358 → 1.0.360
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/dashboard.d.ts +1 -0
- package/build/cjs/{extensions.js → dashboard.js} +2 -2
- package/build/cjs/dashboard.js.map +1 -0
- package/build/es/dashboard.d.ts +1 -0
- package/build/es/dashboard.js +2 -0
- package/build/es/dashboard.js.map +1 -0
- package/dashboard/package.json +3 -0
- package/package.json +24 -28
- package/build/cjs/dashboard-plugins.d.ts +0 -1
- package/build/cjs/dashboard-plugins.js +0 -18
- package/build/cjs/dashboard-plugins.js.map +0 -1
- package/build/cjs/extensions.d.ts +0 -1
- package/build/cjs/extensions.js.map +0 -1
- package/build/es/dashboard-plugins.d.ts +0 -1
- package/build/es/dashboard-plugins.js +0 -2
- package/build/es/dashboard-plugins.js.map +0 -1
- package/build/es/extensions.d.ts +0 -1
- package/build/es/extensions.js +0 -2
- package/build/es/extensions.js.map +0 -1
- package/dashboard-plugins/package.json +0 -3
- package/extensions/package.json +0 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@wix/stores_app-extensions/dashboard';
|
|
@@ -14,5 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@wix/stores_app-extensions"), exports);
|
|
18
|
-
//# sourceMappingURL=
|
|
17
|
+
__exportStar(require("@wix/stores_app-extensions/dashboard"), exports);
|
|
18
|
+
//# sourceMappingURL=dashboard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../dashboard.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uEAAqD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@wix/stores_app-extensions/dashboard';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../dashboard.ts"],"names":[],"mappings":"AAAA,cAAc,sCAAsC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.360",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"keywords": [
|
|
9
|
-
"
|
|
9
|
+
"wixSdkBackendModule",
|
|
10
|
+
"wixSdkPageModule",
|
|
11
|
+
"wixSdkPublicModule"
|
|
10
12
|
],
|
|
11
13
|
"sideEffects": false,
|
|
12
14
|
"main": "./build/cjs/index.js",
|
|
@@ -22,39 +24,33 @@
|
|
|
22
24
|
"require": "./build/cjs/meta.js",
|
|
23
25
|
"types": "./build/es/meta.d.ts"
|
|
24
26
|
},
|
|
25
|
-
"./dashboard
|
|
26
|
-
"import": "./build/es/dashboard
|
|
27
|
-
"require": "./build/cjs/dashboard
|
|
28
|
-
"types": "./build/es/dashboard
|
|
29
|
-
},
|
|
30
|
-
"./extensions": {
|
|
31
|
-
"import": "./build/es/extensions.js",
|
|
32
|
-
"require": "./build/cjs/extensions.js",
|
|
33
|
-
"types": "./build/es/extensions.d.ts"
|
|
27
|
+
"./dashboard": {
|
|
28
|
+
"import": "./build/es/dashboard.js",
|
|
29
|
+
"require": "./build/cjs/dashboard.js",
|
|
30
|
+
"types": "./build/es/dashboard.d.ts"
|
|
34
31
|
}
|
|
35
32
|
},
|
|
36
33
|
"files": [
|
|
37
34
|
"build",
|
|
38
35
|
"meta",
|
|
39
36
|
"service-plugins",
|
|
40
|
-
"dashboard
|
|
41
|
-
"extensions"
|
|
37
|
+
"dashboard"
|
|
42
38
|
],
|
|
43
39
|
"dependencies": {
|
|
44
|
-
"@wix/stores_app-extensions": "1.0.
|
|
45
|
-
"@wix/stores_brands-v-3": "1.0.
|
|
46
|
-
"@wix/stores_catalog-versioning": "1.0.
|
|
47
|
-
"@wix/stores_collections": "1.0.
|
|
48
|
-
"@wix/stores_customizations-v-3": "1.0.
|
|
49
|
-
"@wix/stores_info-sections-v-3": "1.0.
|
|
50
|
-
"@wix/stores_inventory": "1.0.
|
|
51
|
-
"@wix/stores_inventory-items-v-3": "1.0.
|
|
52
|
-
"@wix/stores_products": "1.0.
|
|
53
|
-
"@wix/stores_products-v-3": "1.0.
|
|
54
|
-
"@wix/stores_ribbons-v-3": "1.0.
|
|
55
|
-
"@wix/stores_stores-locations-v-3": "1.0.
|
|
56
|
-
"@wix/stores_subscription-options": "1.0.
|
|
57
|
-
"@wix/stores_wishlist": "1.0.
|
|
40
|
+
"@wix/stores_app-extensions": "1.0.2",
|
|
41
|
+
"@wix/stores_brands-v-3": "1.0.46",
|
|
42
|
+
"@wix/stores_catalog-versioning": "1.0.36",
|
|
43
|
+
"@wix/stores_collections": "1.0.68",
|
|
44
|
+
"@wix/stores_customizations-v-3": "1.0.48",
|
|
45
|
+
"@wix/stores_info-sections-v-3": "1.0.48",
|
|
46
|
+
"@wix/stores_inventory": "1.0.86",
|
|
47
|
+
"@wix/stores_inventory-items-v-3": "1.0.61",
|
|
48
|
+
"@wix/stores_products": "1.0.112",
|
|
49
|
+
"@wix/stores_products-v-3": "1.0.112",
|
|
50
|
+
"@wix/stores_ribbons-v-3": "1.0.43",
|
|
51
|
+
"@wix/stores_stores-locations-v-3": "1.0.49",
|
|
52
|
+
"@wix/stores_subscription-options": "1.0.67",
|
|
53
|
+
"@wix/stores_wishlist": "1.0.60"
|
|
58
54
|
},
|
|
59
55
|
"devDependencies": {
|
|
60
56
|
"typescript": "^5.3.2"
|
|
@@ -74,5 +70,5 @@
|
|
|
74
70
|
"fqdn": ""
|
|
75
71
|
}
|
|
76
72
|
},
|
|
77
|
-
"falconPackageHash": "
|
|
73
|
+
"falconPackageHash": "2e7054d746b97ae2b1be97b0cabe0fc89086bc830cb56ba3a4784842"
|
|
78
74
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@wix/stores_app-extensions/dashboard-plugins';
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@wix/stores_app-extensions/dashboard-plugins"), exports);
|
|
18
|
-
//# sourceMappingURL=dashboard-plugins.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-plugins.js","sourceRoot":"","sources":["../../dashboard-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+EAA6D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@wix/stores_app-extensions';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extensions.js","sourceRoot":"","sources":["../../extensions.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA2C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@wix/stores_app-extensions/dashboard-plugins';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-plugins.js","sourceRoot":"","sources":["../../dashboard-plugins.ts"],"names":[],"mappings":"AAAA,cAAc,8CAA8C,CAAC"}
|
package/build/es/extensions.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@wix/stores_app-extensions';
|
package/build/es/extensions.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"extensions.js","sourceRoot":"","sources":["../../extensions.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
package/extensions/package.json
DELETED