@wix/ecom_app-extensions 1.0.0
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-plugins.d.ts +1 -0
- package/build/cjs/dashboard-plugins.js +18 -0
- package/build/cjs/dashboard-plugins.js.map +1 -0
- package/build/cjs/index.d.ts +0 -0
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.d.ts +6 -0
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.js +3 -0
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.js.map +1 -0
- package/build/es/dashboard-plugins.d.ts +1 -0
- package/build/es/dashboard-plugins.js +2 -0
- package/build/es/dashboard-plugins.js.map +1 -0
- package/build/es/index.d.ts +0 -0
- package/build/es/index.js +2 -0
- package/build/es/index.js.map +1 -0
- package/build/es/src/extensions/dashboard-pages-plugin-props.d.ts +6 -0
- package/build/es/src/extensions/dashboard-pages-plugin-props.js +2 -0
- package/build/es/src/extensions/dashboard-pages-plugin-props.js.map +1 -0
- package/dashboard-plugins/package.json +3 -0
- package/package.json +48 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/extensions/dashboard-pages-plugin-props.js';
|
|
@@ -0,0 +1,18 @@
|
|
|
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("./src/extensions/dashboard-pages-plugin-props.js"), exports);
|
|
18
|
+
//# sourceMappingURL=dashboard-plugins.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard-plugins.js","sourceRoot":"","sources":["../../dashboard-plugins.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mFAAiE"}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './src/extensions/dashboard-pages-plugin-props.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard-plugins.js","sourceRoot":"","sources":["../../dashboard-plugins.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAC"}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wix/ecom_app-extensions",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"registry": "https://registry.npmjs.org/",
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"wix-sdk-module=backend,page,public"
|
|
10
|
+
],
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"main": "./build/cjs/index.js",
|
|
13
|
+
"types": "./build/es/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./build/es/index.js",
|
|
17
|
+
"require": "./build/cjs/index.js",
|
|
18
|
+
"types": "./build/es/index.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./dashboard-plugins": {
|
|
21
|
+
"import": "./build/es/dashboard-plugins.js",
|
|
22
|
+
"require": "./build/cjs/dashboard-plugins.js",
|
|
23
|
+
"types": "./build/es/dashboard-plugins.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"build",
|
|
28
|
+
"dashboard-plugins"
|
|
29
|
+
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@wix/sdk-runtime": "^0.3.22",
|
|
32
|
+
"@wix/sdk-types": "^1.12.4"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "^5.3.2"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json",
|
|
39
|
+
"test": ":"
|
|
40
|
+
},
|
|
41
|
+
"wix": {
|
|
42
|
+
"artifact": {
|
|
43
|
+
"artifactId": "ecom-app-extensions-public-sdk-autogen",
|
|
44
|
+
"groupId": "com.wixpress.public-sdk-autogen"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"falconPackageHash": "99a240d588e837805acf9e806b41e4745d85fcf6226a8c124018b2f4"
|
|
48
|
+
}
|