@wix/ecom_app-extensions 1.0.24 → 1.0.26

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.
Files changed (19) hide show
  1. package/build/cjs/src/extensions/dashboard-page-builders.d.ts +6 -20
  2. package/build/cjs/src/extensions/dashboard-page-builders.js +7 -27
  3. package/build/cjs/src/extensions/dashboard-page-builders.js.map +1 -1
  4. package/build/cjs/src/extensions/dashboard-pages-plugin-props.d.ts +0 -1
  5. package/build/cjs/src/extensions/dashboard-pages-plugin-props.js +1 -2
  6. package/build/cjs/src/extensions/dashboard-pages-plugin-props.js.map +1 -1
  7. package/build/es/src/extensions/dashboard-page-builders.d.ts +6 -20
  8. package/build/es/src/extensions/dashboard-page-builders.js +6 -24
  9. package/build/es/src/extensions/dashboard-page-builders.js.map +1 -1
  10. package/build/es/src/extensions/dashboard-pages-plugin-props.d.ts +0 -1
  11. package/build/es/src/extensions/dashboard-pages-plugin-props.js +0 -1
  12. package/build/es/src/extensions/dashboard-pages-plugin-props.js.map +1 -1
  13. package/package.json +2 -2
  14. package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.d.ts +0 -5
  15. package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js +0 -3
  16. package/build/cjs/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map +0 -1
  17. package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.d.ts +0 -5
  18. package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js +0 -2
  19. package/build/es/src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js.map +0 -1
@@ -3,7 +3,7 @@ export interface editOrderOptions {
3
3
  orderId: string;
4
4
  }
5
5
  /**
6
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Order" page in the dashboard.
6
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Edit Order page in the dashboard.
7
7
  * @dashobardPageBuilder
8
8
  */
9
9
  export declare function editOrder(options: editOrderOptions): PageBuilderResult;
@@ -12,12 +12,12 @@ export interface orderRefundOptions {
12
12
  orderId: string;
13
13
  }
14
14
  /**
15
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Refund" page in the dashboard.
15
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Refund page in the dashboard.
16
16
  * @dashobardPageBuilder
17
17
  */
18
18
  export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
19
19
  /**
20
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profiles" page in the dashboard.
20
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profiles page in the dashboard.
21
21
  * @dashobardPageBuilder
22
22
  */
23
23
  export declare function deliveryProfiles(): PageBuilderResult;
@@ -26,35 +26,21 @@ export interface deliveryProfileOptions {
26
26
  deliveryProfileId: string;
27
27
  }
28
28
  /**
29
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profile" page in the dashboard.
29
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profile page in the dashboard.
30
30
  * @dashobardPageBuilder
31
31
  */
32
32
  export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
33
33
  /**
34
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order List" page in the dashboard.
34
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order List page in the dashboard.
35
35
  * @dashobardPageBuilder
36
36
  */
37
37
  export declare function orderList(): PageBuilderResult;
38
- /**
39
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "New Order" page in the dashboard.
40
- * @dashobardPageBuilder
41
- */
42
- export declare function newOrder(): PageBuilderResult;
43
- export interface editDraftOrderOptions {
44
- /** Draft order id */
45
- draftOrderId: string;
46
- }
47
- /**
48
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Draft Order" page in the dashboard.
49
- * @dashobardPageBuilder
50
- */
51
- export declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
52
38
  export interface orderDetailsOptions {
53
39
  /** The order Id to display */
54
40
  id: string;
55
41
  }
56
42
  /**
57
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Details" page in the dashboard.
43
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Details page in the dashboard.
58
44
  * @dashobardPageBuilder
59
45
  */
60
46
  export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.orderDetails = exports.editDraftOrder = exports.newOrder = exports.orderList = exports.deliveryProfile = exports.deliveryProfiles = exports.orderRefund = exports.editOrder = void 0;
3
+ exports.orderDetails = exports.orderList = exports.deliveryProfile = exports.deliveryProfiles = exports.orderRefund = exports.editOrder = void 0;
4
4
  /**
5
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Order" page in the dashboard.
5
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Edit Order page in the dashboard.
6
6
  * @dashobardPageBuilder
7
7
  */
8
8
  function editOrder(options) {
@@ -14,7 +14,7 @@ function editOrder(options) {
14
14
  }
15
15
  exports.editOrder = editOrder;
16
16
  /**
17
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Refund" page in the dashboard.
17
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Refund page in the dashboard.
18
18
  * @dashobardPageBuilder
19
19
  */
20
20
  function orderRefund(options) {
@@ -26,7 +26,7 @@ function orderRefund(options) {
26
26
  }
27
27
  exports.orderRefund = orderRefund;
28
28
  /**
29
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profiles" page in the dashboard.
29
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profiles page in the dashboard.
30
30
  * @dashobardPageBuilder
31
31
  */
32
32
  function deliveryProfiles() {
@@ -34,7 +34,7 @@ function deliveryProfiles() {
34
34
  }
35
35
  exports.deliveryProfiles = deliveryProfiles;
36
36
  /**
37
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profile" page in the dashboard.
37
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profile page in the dashboard.
38
38
  * @dashobardPageBuilder
39
39
  */
40
40
  function deliveryProfile(options) {
@@ -46,7 +46,7 @@ function deliveryProfile(options) {
46
46
  }
47
47
  exports.deliveryProfile = deliveryProfile;
48
48
  /**
49
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order List" page in the dashboard.
49
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order List page in the dashboard.
50
50
  * @dashobardPageBuilder
51
51
  */
52
52
  function orderList() {
@@ -54,27 +54,7 @@ function orderList() {
54
54
  }
55
55
  exports.orderList = orderList;
56
56
  /**
57
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "New Order" page in the dashboard.
58
- * @dashobardPageBuilder
59
- */
60
- function newOrder() {
61
- return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };
62
- }
63
- exports.newOrder = newOrder;
64
- /**
65
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Draft Order" page in the dashboard.
66
- * @dashobardPageBuilder
67
- */
68
- function editDraftOrder(options) {
69
- const { draftOrderId } = options;
70
- return {
71
- pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',
72
- relativeUrl: `${draftOrderId}`,
73
- };
74
- }
75
- exports.editDraftOrder = editDraftOrder;
76
- /**
77
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Details" page in the dashboard.
57
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Details page in the dashboard.
78
58
  * @dashobardPageBuilder
79
59
  */
80
60
  function orderDetails(options) {
@@ -1 +1 @@
1
- {"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":";;;AAKA;;;GAGG;AACH,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;;;GAGG;AACH,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;;;GAGG;AACH,SAAgB,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,4CAEC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,SAAgB,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,8BAEC;AAED;;;GAGG;AACH,SAAgB,QAAQ;IACtB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,4BAEC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,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"}
1
+ {"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":";;;AAKA;;;GAGG;AACH,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;;;GAGG;AACH,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;;;GAGG;AACH,SAAgB,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,4CAEC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,SAAgB,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAFD,8BAEC;AAOD;;;GAGG;AACH,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"}
@@ -1,3 +1,2 @@
1
1
  export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
2
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,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
23
23
  return result;
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.DraftOrderPage = exports.Orders = exports.OrderEditPage = void 0;
26
+ exports.Orders = exports.OrderEditPage = void 0;
27
27
  exports.OrderEditPage = __importStar(require("./dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js"));
28
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
29
  //# 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,kHAAkG;AAClG,2GAA2F;AAC3F,mHAAmG"}
1
+ {"version":3,"file":"dashboard-pages-plugin-props.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-pages-plugin-props.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kHAAkG;AAClG,2GAA2F"}
@@ -3,7 +3,7 @@ export interface editOrderOptions {
3
3
  orderId: string;
4
4
  }
5
5
  /**
6
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Order" page in the dashboard.
6
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Edit Order page in the dashboard.
7
7
  * @dashobardPageBuilder
8
8
  */
9
9
  export declare function editOrder(options: editOrderOptions): PageBuilderResult;
@@ -12,12 +12,12 @@ export interface orderRefundOptions {
12
12
  orderId: string;
13
13
  }
14
14
  /**
15
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Refund" page in the dashboard.
15
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Refund page in the dashboard.
16
16
  * @dashobardPageBuilder
17
17
  */
18
18
  export declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
19
19
  /**
20
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profiles" page in the dashboard.
20
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profiles page in the dashboard.
21
21
  * @dashobardPageBuilder
22
22
  */
23
23
  export declare function deliveryProfiles(): PageBuilderResult;
@@ -26,35 +26,21 @@ export interface deliveryProfileOptions {
26
26
  deliveryProfileId: string;
27
27
  }
28
28
  /**
29
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profile" page in the dashboard.
29
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profile page in the dashboard.
30
30
  * @dashobardPageBuilder
31
31
  */
32
32
  export declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
33
33
  /**
34
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order List" page in the dashboard.
34
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order List page in the dashboard.
35
35
  * @dashobardPageBuilder
36
36
  */
37
37
  export declare function orderList(): PageBuilderResult;
38
- /**
39
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "New Order" page in the dashboard.
40
- * @dashobardPageBuilder
41
- */
42
- export declare function newOrder(): PageBuilderResult;
43
- export interface editDraftOrderOptions {
44
- /** Draft order id */
45
- draftOrderId: string;
46
- }
47
- /**
48
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Draft Order" page in the dashboard.
49
- * @dashobardPageBuilder
50
- */
51
- export declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
52
38
  export interface orderDetailsOptions {
53
39
  /** The order Id to display */
54
40
  id: string;
55
41
  }
56
42
  /**
57
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Details" page in the dashboard.
43
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Details page in the dashboard.
58
44
  * @dashobardPageBuilder
59
45
  */
60
46
  export declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Order" page in the dashboard.
2
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Edit Order page in the dashboard.
3
3
  * @dashobardPageBuilder
4
4
  */
5
5
  export function editOrder(options) {
@@ -10,7 +10,7 @@ export function editOrder(options) {
10
10
  };
11
11
  }
12
12
  /**
13
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Refund" page in the dashboard.
13
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Refund page in the dashboard.
14
14
  * @dashobardPageBuilder
15
15
  */
16
16
  export function orderRefund(options) {
@@ -21,14 +21,14 @@ export function orderRefund(options) {
21
21
  };
22
22
  }
23
23
  /**
24
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profiles" page in the dashboard.
24
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profiles page in the dashboard.
25
25
  * @dashobardPageBuilder
26
26
  */
27
27
  export function deliveryProfiles() {
28
28
  return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };
29
29
  }
30
30
  /**
31
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Delivery Profile" page in the dashboard.
31
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Delivery Profile page in the dashboard.
32
32
  * @dashobardPageBuilder
33
33
  */
34
34
  export function deliveryProfile(options) {
@@ -39,32 +39,14 @@ export function deliveryProfile(options) {
39
39
  };
40
40
  }
41
41
  /**
42
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order List" page in the dashboard.
42
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order List page in the dashboard.
43
43
  * @dashobardPageBuilder
44
44
  */
45
45
  export function orderList() {
46
46
  return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };
47
47
  }
48
48
  /**
49
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "New Order" page in the dashboard.
50
- * @dashobardPageBuilder
51
- */
52
- export function newOrder() {
53
- return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };
54
- }
55
- /**
56
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Edit Draft Order" page in the dashboard.
57
- * @dashobardPageBuilder
58
- */
59
- export function editDraftOrder(options) {
60
- const { draftOrderId } = options;
61
- return {
62
- pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',
63
- relativeUrl: `${draftOrderId}`,
64
- };
65
- }
66
- /**
67
- * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the "Order Details" page in the dashboard.
49
+ * A builder method that returns the <a href='https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate#destination-object'>destination object</a> for navigating to the Order Details page in the dashboard.
68
50
  * @dashobardPageBuilder
69
51
  */
70
52
  export function orderDetails(options) {
@@ -1 +1 @@
1
- {"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":"AAKA;;;GAGG;AACH,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;;;GAGG;AACH,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;;;GAGG;AACH,MAAM,UAAU,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,MAAM,UAAU,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,QAAQ;IACtB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,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"}
1
+ {"version":3,"file":"dashboard-page-builders.js","sourceRoot":"","sources":["../../../../src/extensions/dashboard-page-builders.ts"],"names":[],"mappings":"AAKA;;;GAGG;AACH,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;;;GAGG;AACH,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;;;GAGG;AACH,MAAM,UAAU,gBAAgB;IAC9B,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD;;;GAGG;AACH,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;;;GAGG;AACH,MAAM,UAAU,SAAS;IACvB,OAAO,EAAE,MAAM,EAAE,sCAAsC,EAAE,CAAC;AAC5D,CAAC;AAOD;;;GAGG;AACH,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"}
@@ -1,3 +1,2 @@
1
1
  export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
2
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,3 @@
1
1
  export * as OrderEditPage from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';
2
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
3
  //# 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,aAAa,MAAM,kEAAkE,CAAC;AAClG,OAAO,KAAK,MAAM,MAAM,kEAAkE,CAAC;AAC3F,OAAO,KAAK,cAAc,MAAM,kEAAkE,CAAC"}
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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom_app-extensions",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
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": "2f35c61a8b84aebb93e6c6d8b63b82f1e0e34926289b166f4e6216c2"
46
+ "falconPackageHash": "24a13945f1778c170e9e63982c3cd6142fc7719950721efe872b0db3"
47
47
  }
@@ -1,5 +0,0 @@
1
- /** @pageName DraftOrderPage */
2
- export declare type DraftOrderManageFeesActionParams = {
3
- draftOrderId: string;
4
- onDraftOrderUpdate(): Promise<void>;
5
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=8454e8a0-5684-4331-9d4a-e4873467553a.js.map
@@ -1 +0,0 @@
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,5 +0,0 @@
1
- /** @pageName DraftOrderPage */
2
- export declare type DraftOrderManageFeesActionParams = {
3
- draftOrderId: string;
4
- onDraftOrderUpdate(): Promise<void>;
5
- };
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=8454e8a0-5684-4331-9d4a-e4873467553a.js.map
@@ -1 +0,0 @@
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":""}