@wix/ecom_app-extensions 1.0.6 → 1.0.8
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 +2 -0
- package/build/cjs/dashboard.js +29 -0
- package/build/cjs/dashboard.js.map +1 -0
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/src/extensions/dashboard-page-builders.d.ts +27 -29
- package/build/cjs/src/extensions/dashboard-page-builders.js +14 -8
- package/build/cjs/src/extensions/dashboard-page-builders.js.map +1 -1
- package/build/es/dashboard.d.ts +2 -0
- package/build/es/dashboard.js +3 -0
- package/build/es/dashboard.js.map +1 -0
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/src/extensions/dashboard-page-builders.d.ts +27 -29
- package/build/es/src/extensions/dashboard-page-builders.js +14 -8
- package/build/es/src/extensions/dashboard-page-builders.js.map +1 -1
- package/dashboard/package.json +3 -0
- package/package.json +8 -8
- 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/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/dashboard-plugins/package.json +0 -3
|
@@ -0,0 +1,29 @@
|
|
|
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 __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.plugins = exports.pages = void 0;
|
|
27
|
+
exports.pages = __importStar(require("./src/extensions/dashboard-page-builders.js"));
|
|
28
|
+
exports.plugins = __importStar(require("./src/extensions/dashboard-pages-plugin-props.js"));
|
|
29
|
+
//# sourceMappingURL=dashboard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../dashboard.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qFAAqE;AACrE,4FAA4E"}
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * as
|
|
1
|
+
export * as dashboard from './dashboard.js';
|
package/build/cjs/index.js
CHANGED
|
@@ -23,6 +23,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
26
|
+
exports.dashboard = void 0;
|
|
27
|
+
exports.dashboard = __importStar(require("./dashboard.js"));
|
|
28
28
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4DAA4C"}
|
|
@@ -1,34 +1,32 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface PageBuilderResult {
|
|
2
2
|
pageId: string;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
relativeUrl?: string;
|
|
4
|
+
}
|
|
5
|
+
/** @dashobardPageBuilder */
|
|
6
|
+
export declare function orderList(): PageBuilderResult;
|
|
7
|
+
export interface editOrderOptions {
|
|
8
|
+
/** ID of the order to edit. */
|
|
6
9
|
orderId: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
export declare function orderRefund({ orderId }: {
|
|
10
|
+
}
|
|
11
|
+
/** @dashobardPageBuilder */
|
|
12
|
+
export declare function editOrder(options: editOrderOptions): PageBuilderResult;
|
|
13
|
+
export interface orderRefundOptions {
|
|
14
|
+
/** ID of the order to refund. */
|
|
13
15
|
orderId: string;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
export declare function orderDetails({ id }: {
|
|
16
|
+
}
|
|
17
|
+
/** @dashobardPageBuilder */
|
|
18
|
+
export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
|
|
19
|
+
export interface orderDetailsOptions {
|
|
20
|
+
/** The order Id to display */
|
|
20
21
|
id: string;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare function deliveryProfiles():
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
/** @param deliveryProfileId - Delivery profile to manage */
|
|
29
|
-
export declare function deliveryProfile({ deliveryProfileId, }: {
|
|
22
|
+
}
|
|
23
|
+
/** @dashobardPageBuilder */
|
|
24
|
+
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
25
|
+
/** @dashobardPageBuilder */
|
|
26
|
+
export declare function deliveryProfiles(): PageBuilderResult;
|
|
27
|
+
export interface deliveryProfileOptions {
|
|
28
|
+
/** Delivery profile to manage */
|
|
30
29
|
deliveryProfileId: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
};
|
|
30
|
+
}
|
|
31
|
+
/** @dashobardPageBuilder */
|
|
32
|
+
export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
|
|
@@ -1,40 +1,46 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.deliveryProfile = exports.deliveryProfiles = exports.orderDetails = exports.orderRefund = exports.editOrder = exports.orderList = void 0;
|
|
4
|
+
/** @dashobardPageBuilder */
|
|
4
5
|
function orderList() {
|
|
5
6
|
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
6
7
|
}
|
|
7
8
|
exports.orderList = orderList;
|
|
8
|
-
/** @
|
|
9
|
-
function editOrder(
|
|
9
|
+
/** @dashobardPageBuilder */
|
|
10
|
+
function editOrder(options) {
|
|
11
|
+
const { orderId } = options;
|
|
10
12
|
return {
|
|
11
13
|
pageId: 'f2526550-194f-4c13-9298-9a6b8abda62f',
|
|
12
14
|
relativeUrl: `${orderId}`,
|
|
13
15
|
};
|
|
14
16
|
}
|
|
15
17
|
exports.editOrder = editOrder;
|
|
16
|
-
/** @
|
|
17
|
-
function orderRefund(
|
|
18
|
+
/** @dashobardPageBuilder */
|
|
19
|
+
function orderRefund(options) {
|
|
20
|
+
const { orderId } = options;
|
|
18
21
|
return {
|
|
19
22
|
pageId: 'c4898867-69a5-4e05-92b7-c276f9424641',
|
|
20
23
|
relativeUrl: `${orderId}`,
|
|
21
24
|
};
|
|
22
25
|
}
|
|
23
26
|
exports.orderRefund = orderRefund;
|
|
24
|
-
/** @
|
|
25
|
-
function orderDetails(
|
|
27
|
+
/** @dashobardPageBuilder */
|
|
28
|
+
function orderDetails(options) {
|
|
29
|
+
const { id } = options;
|
|
26
30
|
return {
|
|
27
31
|
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
28
32
|
relativeUrl: `${id}`,
|
|
29
33
|
};
|
|
30
34
|
}
|
|
31
35
|
exports.orderDetails = orderDetails;
|
|
36
|
+
/** @dashobardPageBuilder */
|
|
32
37
|
function deliveryProfiles() {
|
|
33
38
|
return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };
|
|
34
39
|
}
|
|
35
40
|
exports.deliveryProfiles = deliveryProfiles;
|
|
36
|
-
/** @
|
|
37
|
-
function deliveryProfile(
|
|
41
|
+
/** @dashobardPageBuilder */
|
|
42
|
+
function deliveryProfile(options) {
|
|
43
|
+
const { deliveryProfileId } = options;
|
|
38
44
|
return {
|
|
39
45
|
pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8',
|
|
40
46
|
relativeUrl: `${deliveryProfileId}`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":";;;AAKA,4BAA4B;AAC5B,SAAgB,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,8BAEC;AAOD,4BAA4B;AAC5B,SAAgB,SAAS,CAAC,OAAyB;IACjD,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAE5B,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,OAAO,EAAE;KAC1B,CAAC;AACJ,CAAC;AAPD,8BAOC;AAOD,4BAA4B;AAC5B,SAAgB,WAAW,CAAC,OAA2B;IACrD,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAE5B,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,OAAO,EAAE;KAC1B,CAAC;AACJ,CAAC;AAPD,kCAOC;AAOD,4BAA4B;AAC5B,SAAgB,YAAY,CAAC,OAA4B;IACvD,MAAM,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC;IAEvB,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,EAAE,EAAE;KACrB,CAAC;AACJ,CAAC;AAPD,oCAOC;AAED,4BAA4B;AAC5B,SAAgB,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,4CAEC;AAOD,4BAA4B;AAC5B,SAAgB,eAAe,CAC7B,OAA+B;IAE/B,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC;IAEtC,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,iBAAiB,EAAE;KACpC,CAAC;AACJ,CAAC;AATD,0CASC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../dashboard.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,6CAA6C,CAAC;AACrE,OAAO,KAAK,OAAO,MAAM,kDAAkD,CAAC"}
|
package/build/es/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * as
|
|
1
|
+
export * as dashboard from './dashboard.js';
|
package/build/es/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * as
|
|
1
|
+
export * as dashboard from './dashboard.js';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAC"}
|
|
@@ -1,34 +1,32 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface PageBuilderResult {
|
|
2
2
|
pageId: string;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
relativeUrl?: string;
|
|
4
|
+
}
|
|
5
|
+
/** @dashobardPageBuilder */
|
|
6
|
+
export declare function orderList(): PageBuilderResult;
|
|
7
|
+
export interface editOrderOptions {
|
|
8
|
+
/** ID of the order to edit. */
|
|
6
9
|
orderId: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
export declare function orderRefund({ orderId }: {
|
|
10
|
+
}
|
|
11
|
+
/** @dashobardPageBuilder */
|
|
12
|
+
export declare function editOrder(options: editOrderOptions): PageBuilderResult;
|
|
13
|
+
export interface orderRefundOptions {
|
|
14
|
+
/** ID of the order to refund. */
|
|
13
15
|
orderId: string;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
export declare function orderDetails({ id }: {
|
|
16
|
+
}
|
|
17
|
+
/** @dashobardPageBuilder */
|
|
18
|
+
export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
|
|
19
|
+
export interface orderDetailsOptions {
|
|
20
|
+
/** The order Id to display */
|
|
20
21
|
id: string;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare function deliveryProfiles():
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
/** @param deliveryProfileId - Delivery profile to manage */
|
|
29
|
-
export declare function deliveryProfile({ deliveryProfileId, }: {
|
|
22
|
+
}
|
|
23
|
+
/** @dashobardPageBuilder */
|
|
24
|
+
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
25
|
+
/** @dashobardPageBuilder */
|
|
26
|
+
export declare function deliveryProfiles(): PageBuilderResult;
|
|
27
|
+
export interface deliveryProfileOptions {
|
|
28
|
+
/** Delivery profile to manage */
|
|
30
29
|
deliveryProfileId: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
};
|
|
30
|
+
}
|
|
31
|
+
/** @dashobardPageBuilder */
|
|
32
|
+
export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
|
|
@@ -1,32 +1,38 @@
|
|
|
1
|
+
/** @dashobardPageBuilder */
|
|
1
2
|
export function orderList() {
|
|
2
3
|
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
3
4
|
}
|
|
4
|
-
/** @
|
|
5
|
-
export function editOrder(
|
|
5
|
+
/** @dashobardPageBuilder */
|
|
6
|
+
export function editOrder(options) {
|
|
7
|
+
const { orderId } = options;
|
|
6
8
|
return {
|
|
7
9
|
pageId: 'f2526550-194f-4c13-9298-9a6b8abda62f',
|
|
8
10
|
relativeUrl: `${orderId}`,
|
|
9
11
|
};
|
|
10
12
|
}
|
|
11
|
-
/** @
|
|
12
|
-
export function orderRefund(
|
|
13
|
+
/** @dashobardPageBuilder */
|
|
14
|
+
export function orderRefund(options) {
|
|
15
|
+
const { orderId } = options;
|
|
13
16
|
return {
|
|
14
17
|
pageId: 'c4898867-69a5-4e05-92b7-c276f9424641',
|
|
15
18
|
relativeUrl: `${orderId}`,
|
|
16
19
|
};
|
|
17
20
|
}
|
|
18
|
-
/** @
|
|
19
|
-
export function orderDetails(
|
|
21
|
+
/** @dashobardPageBuilder */
|
|
22
|
+
export function orderDetails(options) {
|
|
23
|
+
const { id } = options;
|
|
20
24
|
return {
|
|
21
25
|
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
22
26
|
relativeUrl: `${id}`,
|
|
23
27
|
};
|
|
24
28
|
}
|
|
29
|
+
/** @dashobardPageBuilder */
|
|
25
30
|
export function deliveryProfiles() {
|
|
26
31
|
return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };
|
|
27
32
|
}
|
|
28
|
-
/** @
|
|
29
|
-
export function deliveryProfile(
|
|
33
|
+
/** @dashobardPageBuilder */
|
|
34
|
+
export function deliveryProfile(options) {
|
|
35
|
+
const { deliveryProfileId } = options;
|
|
30
36
|
return {
|
|
31
37
|
pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8',
|
|
32
38
|
relativeUrl: `${deliveryProfileId}`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":"AAKA,4BAA4B;AAC5B,MAAM,UAAU,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD,4BAA4B;AAC5B,MAAM,UAAU,SAAS,CAAC,OAAyB;IACjD,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAE5B,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,OAAO,EAAE;KAC1B,CAAC;AACJ,CAAC;AAOD,4BAA4B;AAC5B,MAAM,UAAU,WAAW,CAAC,OAA2B;IACrD,MAAM,EAAE,OAAO,EAAE,GAAG,OAAO,CAAC;IAE5B,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,OAAO,EAAE;KAC1B,CAAC;AACJ,CAAC;AAOD,4BAA4B;AAC5B,MAAM,UAAU,YAAY,CAAC,OAA4B;IACvD,MAAM,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC;IAEvB,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,EAAE,EAAE;KACrB,CAAC;AACJ,CAAC;AAED,4BAA4B;AAC5B,MAAM,UAAU,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD,4BAA4B;AAC5B,MAAM,UAAU,eAAe,CAC7B,OAA+B;IAE/B,MAAM,EAAE,iBAAiB,EAAE,GAAG,OAAO,CAAC;IAEtC,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,iBAAiB,EAAE;KACpC,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom_app-extensions",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -17,18 +17,18 @@
|
|
|
17
17
|
"require": "./build/cjs/index.js",
|
|
18
18
|
"types": "./build/es/index.d.ts"
|
|
19
19
|
},
|
|
20
|
-
"./dashboard
|
|
21
|
-
"import": "./build/es/dashboard
|
|
22
|
-
"require": "./build/cjs/dashboard
|
|
23
|
-
"types": "./build/es/dashboard
|
|
20
|
+
"./dashboard": {
|
|
21
|
+
"import": "./build/es/dashboard.js",
|
|
22
|
+
"require": "./build/cjs/dashboard.js",
|
|
23
|
+
"types": "./build/es/dashboard.d.ts"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"build",
|
|
28
|
-
"dashboard
|
|
28
|
+
"dashboard"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@wix/sdk-runtime": "^0.3.
|
|
31
|
+
"@wix/sdk-runtime": "^0.3.35",
|
|
32
32
|
"@wix/sdk-types": "^1.12.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"groupId": "com.wixpress.sdk-app-extensions-autogen"
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
|
-
"falconPackageHash": "
|
|
47
|
+
"falconPackageHash": "ae5a5074fb4c450fb27ca57fb2fa5c65830d613f44123d731acffffb"
|
|
48
48
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src/extensions/dashboard-pages-plugin-props.js';
|
|
@@ -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("./src/extensions/dashboard-pages-plugin-props.js"), 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,mFAAiE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src/extensions/dashboard-pages-plugin-props.js';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-plugins.js","sourceRoot":"","sources":["../../dashboard-plugins.ts"],"names":[],"mappings":"AAAA,cAAc,kDAAkD,CAAC"}
|