@wix/ecom_app-extensions 1.0.14 → 1.0.16
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/src/extensions/dashboard-page-builders.d.ts +16 -8
- package/build/cjs/src/extensions/dashboard-page-builders.js +29 -16
- package/build/cjs/src/extensions/dashboard-page-builders.js.map +1 -1
- package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.d.ts +4 -0
- package/build/cjs/src/extensions/dashboard-page-plugins/{3b96985e-a459-4972-94c3-63f038a73af2.js → 8454e8a0-5684-4331-9d4a-e4873467553a.js} +1 -1
- package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map +1 -0
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.d.ts +2 -2
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.js +3 -3
- package/build/cjs/src/extensions/dashboard-pages-plugin-props.js.map +1 -1
- package/build/es/src/extensions/dashboard-page-builders.d.ts +16 -8
- package/build/es/src/extensions/dashboard-page-builders.js +24 -13
- package/build/es/src/extensions/dashboard-page-builders.js.map +1 -1
- package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.d.ts +4 -0
- package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js +2 -0
- package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map +1 -0
- package/build/es/src/extensions/dashboard-pages-plugin-props.d.ts +2 -2
- package/build/es/src/extensions/dashboard-pages-plugin-props.js +2 -2
- package/build/es/src/extensions/dashboard-pages-plugin-props.js.map +1 -1
- package/package.json +2 -2
- package/build/cjs/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.d.ts +0 -4
- package/build/cjs/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js.map +0 -1
- package/build/es/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.d.ts +0 -4
- package/build/es/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js +0 -2
- package/build/es/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js.map +0 -1
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/** @dashobardPageBuilder */
|
|
2
|
-
export declare function orderList(): PageBuilderResult;
|
|
3
1
|
export interface editOrderOptions {
|
|
4
2
|
/** ID of the order to edit. */
|
|
5
3
|
orderId: string;
|
|
@@ -12,12 +10,6 @@ export interface orderRefundOptions {
|
|
|
12
10
|
}
|
|
13
11
|
/** @dashobardPageBuilder */
|
|
14
12
|
export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
|
|
15
|
-
export interface orderDetailsOptions {
|
|
16
|
-
/** The order Id to display */
|
|
17
|
-
id: string;
|
|
18
|
-
}
|
|
19
|
-
/** @dashobardPageBuilder */
|
|
20
|
-
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
21
13
|
/** @dashobardPageBuilder */
|
|
22
14
|
export declare function deliveryProfiles(): PageBuilderResult;
|
|
23
15
|
export interface deliveryProfileOptions {
|
|
@@ -26,6 +18,22 @@ export interface deliveryProfileOptions {
|
|
|
26
18
|
}
|
|
27
19
|
/** @dashobardPageBuilder */
|
|
28
20
|
export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
|
|
21
|
+
/** @dashobardPageBuilder */
|
|
22
|
+
export declare function orderList(): PageBuilderResult;
|
|
23
|
+
/** @dashobardPageBuilder */
|
|
24
|
+
export declare function newOrder(): PageBuilderResult;
|
|
25
|
+
export interface editDraftOrderOptions {
|
|
26
|
+
/** Draft order id */
|
|
27
|
+
draftOrderId: string;
|
|
28
|
+
}
|
|
29
|
+
/** @dashobardPageBuilder */
|
|
30
|
+
export declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
|
|
31
|
+
export interface orderDetailsOptions {
|
|
32
|
+
/** The order Id to display */
|
|
33
|
+
id: string;
|
|
34
|
+
}
|
|
35
|
+
/** @dashobardPageBuilder */
|
|
36
|
+
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
29
37
|
export interface PageBuilderResult {
|
|
30
38
|
pageId: string;
|
|
31
39
|
relativeUrl?: string;
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
/** @dashobardPageBuilder */
|
|
5
|
-
function orderList() {
|
|
6
|
-
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
7
|
-
}
|
|
8
|
-
exports.orderList = orderList;
|
|
9
|
-
const a = 1;
|
|
3
|
+
exports.orderDetails = exports.editDraftOrder = exports.newOrder = exports.orderList = exports.deliveryProfile = exports.deliveryProfiles = exports.orderRefund = exports.editOrder = void 0;
|
|
10
4
|
/** @dashobardPageBuilder */
|
|
11
5
|
function editOrder(options) {
|
|
12
6
|
const { orderId } = options;
|
|
@@ -26,15 +20,6 @@ function orderRefund(options) {
|
|
|
26
20
|
}
|
|
27
21
|
exports.orderRefund = orderRefund;
|
|
28
22
|
/** @dashobardPageBuilder */
|
|
29
|
-
function orderDetails(options) {
|
|
30
|
-
const { id } = options;
|
|
31
|
-
return {
|
|
32
|
-
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
33
|
-
relativeUrl: `${id}`,
|
|
34
|
-
};
|
|
35
|
-
}
|
|
36
|
-
exports.orderDetails = orderDetails;
|
|
37
|
-
/** @dashobardPageBuilder */
|
|
38
23
|
function deliveryProfiles() {
|
|
39
24
|
return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };
|
|
40
25
|
}
|
|
@@ -48,4 +33,32 @@ function deliveryProfile(options) {
|
|
|
48
33
|
};
|
|
49
34
|
}
|
|
50
35
|
exports.deliveryProfile = deliveryProfile;
|
|
36
|
+
/** @dashobardPageBuilder */
|
|
37
|
+
function orderList() {
|
|
38
|
+
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
39
|
+
}
|
|
40
|
+
exports.orderList = orderList;
|
|
41
|
+
/** @dashobardPageBuilder */
|
|
42
|
+
function newOrder() {
|
|
43
|
+
return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };
|
|
44
|
+
}
|
|
45
|
+
exports.newOrder = newOrder;
|
|
46
|
+
/** @dashobardPageBuilder */
|
|
47
|
+
function editDraftOrder(options) {
|
|
48
|
+
const { draftOrderId } = options;
|
|
49
|
+
return {
|
|
50
|
+
pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',
|
|
51
|
+
relativeUrl: `${draftOrderId}`,
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
exports.editDraftOrder = editDraftOrder;
|
|
55
|
+
/** @dashobardPageBuilder */
|
|
56
|
+
function orderDetails(options) {
|
|
57
|
+
const { id } = options;
|
|
58
|
+
return {
|
|
59
|
+
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
60
|
+
relativeUrl: `${id}`,
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
exports.orderDetails = orderDetails;
|
|
51
64
|
//# sourceMappingURL=dashboard-page-builders.js.map
|
|
@@ -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,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;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;AAED,4BAA4B;AAC5B,SAAgB,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,8BAEC;AAED,4BAA4B;AAC5B,SAAgB,QAAQ;IACtB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,4BAEC;AAOD,4BAA4B;AAC5B,SAAgB,cAAc,CAC5B,OAA8B;IAE9B,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC;IAEjC,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,YAAY,EAAE;KAC/B,CAAC;AACJ,CAAC;AATD,wCASC;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"}
|
package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"8454e8a0-5684-4331-9d4a-e4873467553a.js","sourceRoot":"","sources":["../../../../../src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
2
1
|
export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
|
|
3
|
-
export * as
|
|
2
|
+
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
3
|
+
export * as DraftOrderPage from './dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js';
|
|
@@ -23,8 +23,8 @@ 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.Orders = __importStar(require("./dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js"));
|
|
26
|
+
exports.DraftOrderPage = exports.Orders = exports.OrderEditPage = void 0;
|
|
28
27
|
exports.OrderEditPage = __importStar(require("./dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js"));
|
|
29
|
-
exports.
|
|
28
|
+
exports.Orders = __importStar(require("./dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js"));
|
|
29
|
+
exports.DraftOrderPage = __importStar(require("./dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js"));
|
|
30
30
|
//# sourceMappingURL=dashboard-pages-plugin-props.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2GAA2F;AAC3F,
|
|
1
|
+
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kHAAkG;AAClG,2GAA2F;AAC3F,mHAAmG"}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
/** @dashobardPageBuilder */
|
|
2
|
-
export declare function orderList(): PageBuilderResult;
|
|
3
1
|
export interface editOrderOptions {
|
|
4
2
|
/** ID of the order to edit. */
|
|
5
3
|
orderId: string;
|
|
@@ -12,12 +10,6 @@ export interface orderRefundOptions {
|
|
|
12
10
|
}
|
|
13
11
|
/** @dashobardPageBuilder */
|
|
14
12
|
export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
|
|
15
|
-
export interface orderDetailsOptions {
|
|
16
|
-
/** The order Id to display */
|
|
17
|
-
id: string;
|
|
18
|
-
}
|
|
19
|
-
/** @dashobardPageBuilder */
|
|
20
|
-
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
21
13
|
/** @dashobardPageBuilder */
|
|
22
14
|
export declare function deliveryProfiles(): PageBuilderResult;
|
|
23
15
|
export interface deliveryProfileOptions {
|
|
@@ -26,6 +18,22 @@ export interface deliveryProfileOptions {
|
|
|
26
18
|
}
|
|
27
19
|
/** @dashobardPageBuilder */
|
|
28
20
|
export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
|
|
21
|
+
/** @dashobardPageBuilder */
|
|
22
|
+
export declare function orderList(): PageBuilderResult;
|
|
23
|
+
/** @dashobardPageBuilder */
|
|
24
|
+
export declare function newOrder(): PageBuilderResult;
|
|
25
|
+
export interface editDraftOrderOptions {
|
|
26
|
+
/** Draft order id */
|
|
27
|
+
draftOrderId: string;
|
|
28
|
+
}
|
|
29
|
+
/** @dashobardPageBuilder */
|
|
30
|
+
export declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
|
|
31
|
+
export interface orderDetailsOptions {
|
|
32
|
+
/** The order Id to display */
|
|
33
|
+
id: string;
|
|
34
|
+
}
|
|
35
|
+
/** @dashobardPageBuilder */
|
|
36
|
+
export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
|
|
29
37
|
export interface PageBuilderResult {
|
|
30
38
|
pageId: string;
|
|
31
39
|
relativeUrl?: string;
|
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
/** @dashobardPageBuilder */
|
|
2
|
-
export function orderList() {
|
|
3
|
-
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
4
|
-
}
|
|
5
|
-
const a = 1;
|
|
6
|
-
/** @dashobardPageBuilder */
|
|
7
2
|
export function editOrder(options) {
|
|
8
3
|
const { orderId } = options;
|
|
9
4
|
return {
|
|
@@ -20,14 +15,6 @@ export function orderRefund(options) {
|
|
|
20
15
|
};
|
|
21
16
|
}
|
|
22
17
|
/** @dashobardPageBuilder */
|
|
23
|
-
export function orderDetails(options) {
|
|
24
|
-
const { id } = options;
|
|
25
|
-
return {
|
|
26
|
-
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
27
|
-
relativeUrl: `${id}`,
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
/** @dashobardPageBuilder */
|
|
31
18
|
export function deliveryProfiles() {
|
|
32
19
|
return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };
|
|
33
20
|
}
|
|
@@ -39,4 +26,28 @@ export function deliveryProfile(options) {
|
|
|
39
26
|
relativeUrl: `${deliveryProfileId}`,
|
|
40
27
|
};
|
|
41
28
|
}
|
|
29
|
+
/** @dashobardPageBuilder */
|
|
30
|
+
export function orderList() {
|
|
31
|
+
return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
|
|
32
|
+
}
|
|
33
|
+
/** @dashobardPageBuilder */
|
|
34
|
+
export function newOrder() {
|
|
35
|
+
return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };
|
|
36
|
+
}
|
|
37
|
+
/** @dashobardPageBuilder */
|
|
38
|
+
export function editDraftOrder(options) {
|
|
39
|
+
const { draftOrderId } = options;
|
|
40
|
+
return {
|
|
41
|
+
pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',
|
|
42
|
+
relativeUrl: `${draftOrderId}`,
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
/** @dashobardPageBuilder */
|
|
46
|
+
export function orderDetails(options) {
|
|
47
|
+
const { id } = options;
|
|
48
|
+
return {
|
|
49
|
+
pageId: '3b96985e-a459-4972-94c3-63f038a73af2',
|
|
50
|
+
relativeUrl: `${id}`,
|
|
51
|
+
};
|
|
52
|
+
}
|
|
42
53
|
//# sourceMappingURL=dashboard-page-builders.js.map
|
|
@@ -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,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;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;AAED,4BAA4B;AAC5B,MAAM,UAAU,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAED,4BAA4B;AAC5B,MAAM,UAAU,QAAQ;IACtB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD,4BAA4B;AAC5B,MAAM,UAAU,cAAc,CAC5B,OAA8B;IAE9B,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC;IAEjC,OAAO;QACL,MAAM,EAAE,sCAAsC;QAC9C,WAAW,EAAE,GAAG,YAAY,EAAE;KAC/B,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"}
|
package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"8454e8a0-5684-4331-9d4a-e4873467553a.js","sourceRoot":"","sources":["../../../../../src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
2
1
|
export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
|
|
3
|
-
export * as
|
|
2
|
+
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
3
|
+
export * as DraftOrderPage from './dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
2
1
|
export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
|
|
3
|
-
export * as
|
|
2
|
+
export * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';
|
|
3
|
+
export * as DraftOrderPage from './dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js';
|
|
4
4
|
//# sourceMappingURL=dashboard-pages-plugin-props.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,aAAa,MAAM,kEAAkE,CAAC;AAClG,OAAO,KAAK,MAAM,MAAM,kEAAkE,CAAC;AAC3F,OAAO,KAAK,cAAc,MAAM,kEAAkE,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.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"groupId": "com.wixpress.sdk-app-extensions-autogen"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"falconPackageHash": "
|
|
46
|
+
"falconPackageHash": "ee3cd5cdc8dba0176b79c0edc018821e5f3d4ab79c3ca384373f45c6"
|
|
47
47
|
}
|
package/build/cjs/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"3b96985e-a459-4972-94c3-63f038a73af2.js","sourceRoot":"","sources":["../../../../../src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts"],"names":[],"mappings":""}
|
package/build/es/src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"3b96985e-a459-4972-94c3-63f038a73af2.js","sourceRoot":"","sources":["../../../../../src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts"],"names":[],"mappings":""}
|