@wix/ecom_app-extensions 1.0.105 → 1.0.107

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.
@@ -0,0 +1,206 @@
1
+ interface editOrderOptions {
2
+ /** ID of the order to edit. */
3
+ orderId: string;
4
+ }
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.
7
+ * @dashobardPageBuilder
8
+ */
9
+ declare function editOrder(options: editOrderOptions): PageBuilderResult;
10
+ /**
11
+ * 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 Tax Settings page in the dashboard.
12
+ * @dashobardPageBuilder
13
+ */
14
+ declare function taxSettings(): PageBuilderResult;
15
+ interface orderRefundOptions {
16
+ /** ID of the order to refund. */
17
+ orderId: string;
18
+ }
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 Order Refund page in the dashboard.
21
+ * @dashobardPageBuilder
22
+ */
23
+ declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
24
+ /**
25
+ * 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.
26
+ * @dashobardPageBuilder
27
+ */
28
+ declare function deliveryProfiles(): PageBuilderResult;
29
+ interface deliveryProfileOptions {
30
+ /** Delivery profile to manage */
31
+ deliveryProfileId: string;
32
+ }
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 Delivery Profile page in the dashboard.
35
+ * @dashobardPageBuilder
36
+ */
37
+ declare function deliveryProfile(options: deliveryProfileOptions): 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 Order List page in the dashboard.
40
+ * @dashobardPageBuilder
41
+ */
42
+ declare function orderList(): PageBuilderResult;
43
+ /**
44
+ * 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.
45
+ * @dashobardPageBuilder
46
+ */
47
+ declare function newOrder(): PageBuilderResult;
48
+ interface editDraftOrderOptions {
49
+ /** Draft order id */
50
+ draftOrderId: string;
51
+ }
52
+ /**
53
+ * 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.
54
+ * @dashobardPageBuilder
55
+ */
56
+ declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
57
+ interface orderDetailsOptions {
58
+ /** The order Id to display */
59
+ id: string;
60
+ }
61
+ /**
62
+ * 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.
63
+ * @dashobardPageBuilder
64
+ */
65
+ declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
66
+ interface PageBuilderResult {
67
+ pageId: string;
68
+ relativeUrl?: string;
69
+ }
70
+
71
+ type dashboardPageBuilders_PageBuilderResult = PageBuilderResult;
72
+ declare const dashboardPageBuilders_deliveryProfile: typeof deliveryProfile;
73
+ type dashboardPageBuilders_deliveryProfileOptions = deliveryProfileOptions;
74
+ declare const dashboardPageBuilders_deliveryProfiles: typeof deliveryProfiles;
75
+ declare const dashboardPageBuilders_editDraftOrder: typeof editDraftOrder;
76
+ type dashboardPageBuilders_editDraftOrderOptions = editDraftOrderOptions;
77
+ declare const dashboardPageBuilders_editOrder: typeof editOrder;
78
+ type dashboardPageBuilders_editOrderOptions = editOrderOptions;
79
+ declare const dashboardPageBuilders_newOrder: typeof newOrder;
80
+ declare const dashboardPageBuilders_orderDetails: typeof orderDetails;
81
+ type dashboardPageBuilders_orderDetailsOptions = orderDetailsOptions;
82
+ declare const dashboardPageBuilders_orderList: typeof orderList;
83
+ declare const dashboardPageBuilders_orderRefund: typeof orderRefund;
84
+ type dashboardPageBuilders_orderRefundOptions = orderRefundOptions;
85
+ declare const dashboardPageBuilders_taxSettings: typeof taxSettings;
86
+ declare namespace dashboardPageBuilders {
87
+ export { type dashboardPageBuilders_PageBuilderResult as PageBuilderResult, dashboardPageBuilders_deliveryProfile as deliveryProfile, type dashboardPageBuilders_deliveryProfileOptions as deliveryProfileOptions, dashboardPageBuilders_deliveryProfiles as deliveryProfiles, dashboardPageBuilders_editDraftOrder as editDraftOrder, type dashboardPageBuilders_editDraftOrderOptions as editDraftOrderOptions, dashboardPageBuilders_editOrder as editOrder, type dashboardPageBuilders_editOrderOptions as editOrderOptions, dashboardPageBuilders_newOrder as newOrder, dashboardPageBuilders_orderDetails as orderDetails, type dashboardPageBuilders_orderDetailsOptions as orderDetailsOptions, dashboardPageBuilders_orderList as orderList, dashboardPageBuilders_orderRefund as orderRefund, type dashboardPageBuilders_orderRefundOptions as orderRefundOptions, dashboardPageBuilders_taxSettings as taxSettings };
88
+ }
89
+
90
+ /**
91
+ * @pageName EditOrder
92
+ * @slotType dashboard menu plugin
93
+ */
94
+ type OrderSummaryParams$1 = DraftOrderManageFeesActionParams$1;
95
+ /** @internal */
96
+ type DraftOrderManageFeesActionParams$1 = {
97
+ draftOrderId: string;
98
+ onDraftOrderUpdate(): Promise<void>;
99
+ };
100
+
101
+ declare namespace f2526550194f4c1392989a6b8abda62f {
102
+ export type { DraftOrderManageFeesActionParams$1 as DraftOrderManageFeesActionParams, OrderSummaryParams$1 as OrderSummaryParams };
103
+ }
104
+
105
+ /**
106
+ * @pageName Orders
107
+ * @slotType dashboard menu plugin
108
+ */
109
+ type OrderItemsBulkMoreActionsMenuParams = OrdersListBulkActionExtensionProps;
110
+ /** @internal */
111
+ type OrdersListBulkActionExtensionProps = {
112
+ selectedIds: string[];
113
+ uncheckedIds: string[];
114
+ isSelectAll: boolean;
115
+ total: number;
116
+ onSuccess(): Promise<void>;
117
+ };
118
+
119
+ type _8107f05fD6464c81Be90Adf28d321398_OrderItemsBulkMoreActionsMenuParams = OrderItemsBulkMoreActionsMenuParams;
120
+ type _8107f05fD6464c81Be90Adf28d321398_OrdersListBulkActionExtensionProps = OrdersListBulkActionExtensionProps;
121
+ declare namespace _8107f05fD6464c81Be90Adf28d321398 {
122
+ export type { _8107f05fD6464c81Be90Adf28d321398_OrderItemsBulkMoreActionsMenuParams as OrderItemsBulkMoreActionsMenuParams, _8107f05fD6464c81Be90Adf28d321398_OrdersListBulkActionExtensionProps as OrdersListBulkActionExtensionProps };
123
+ }
124
+
125
+ /**
126
+ * @pageName DraftOrderPage
127
+ * @slotType dashboard menu plugin
128
+ */
129
+ type OrderSummaryParams = DraftOrderManageFeesActionParams;
130
+ /** @internal */
131
+ type DraftOrderManageFeesActionParams = {
132
+ draftOrderId: string;
133
+ onDraftOrderUpdate(): Promise<void>;
134
+ };
135
+
136
+ type _8454e8a0568443319d4aE4873467553a_DraftOrderManageFeesActionParams = DraftOrderManageFeesActionParams;
137
+ type _8454e8a0568443319d4aE4873467553a_OrderSummaryParams = OrderSummaryParams;
138
+ declare namespace _8454e8a0568443319d4aE4873467553a {
139
+ export type { _8454e8a0568443319d4aE4873467553a_DraftOrderManageFeesActionParams as DraftOrderManageFeesActionParams, _8454e8a0568443319d4aE4873467553a_OrderSummaryParams as OrderSummaryParams };
140
+ }
141
+
142
+ /**
143
+ * @pageName CollectPayment
144
+ * @slotType dashboard menu plugin
145
+ */
146
+ type CollectPaymentMenuParams = CollectPaymentMenuOptionParams;
147
+ /** @internal */
148
+ type CollectPaymentMenuOptionParams = {
149
+ orderId: string;
150
+ /** @deprecated Use onSuccess() instead */
151
+ onSuccessCallback(): Promise<void>;
152
+ onSuccess(): Promise<void>;
153
+ };
154
+ /**
155
+ * @pageName CollectPayment
156
+ * @slotType dashboard plugin
157
+ */
158
+ type CollectPaymentModalParams = CollectPaymentMenuOnBeforePayModalSlotProps;
159
+ /** @internal */
160
+ type CollectPaymentMenuOnBeforePayModalSlotProps = {
161
+ orderId: string;
162
+ onSuccess(): Promise<void>;
163
+ onCancel(): void;
164
+ menuOption: {
165
+ key: 'CHARGE_WITH_CREDIT_CARD' | 'RECORD_ORDER_MANUAL_PAYMENT' | 'CHARGE_WITH_INVOICE' | 'CAPTURE_AUTHORIZED_PAYMENT' | 'CREATE_AUTHORIZED_PAYMENT';
166
+ componentId?: undefined;
167
+ } | {
168
+ key: 'EXTENSION';
169
+ componentId: string;
170
+ };
171
+ };
172
+
173
+ type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOnBeforePayModalSlotProps = CollectPaymentMenuOnBeforePayModalSlotProps;
174
+ type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOptionParams = CollectPaymentMenuOptionParams;
175
+ type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuParams = CollectPaymentMenuParams;
176
+ type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentModalParams = CollectPaymentModalParams;
177
+ declare namespace e5128b65Cb234ea4B63a434a4e6b6e9e {
178
+ export type { e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOnBeforePayModalSlotProps as CollectPaymentMenuOnBeforePayModalSlotProps, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOptionParams as CollectPaymentMenuOptionParams, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuParams as CollectPaymentMenuParams, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentModalParams as CollectPaymentModalParams };
179
+ }
180
+
181
+ /**
182
+ * @pageName OrderDetails
183
+ * @slotType dashboard plugin
184
+ */
185
+ type OrderRightPanelParams = OrderDetailsSecondaryCardProps;
186
+ /** @internal */
187
+ type OrderDetailsSecondaryCardProps = {
188
+ orderId: string;
189
+ onOrderUpdate(): Promise<void>;
190
+ };
191
+
192
+ type _3b96985eA459497294c363f038a73af2_OrderDetailsSecondaryCardProps = OrderDetailsSecondaryCardProps;
193
+ type _3b96985eA459497294c363f038a73af2_OrderRightPanelParams = OrderRightPanelParams;
194
+ declare namespace _3b96985eA459497294c363f038a73af2 {
195
+ export type { _3b96985eA459497294c363f038a73af2_OrderDetailsSecondaryCardProps as OrderDetailsSecondaryCardProps, _3b96985eA459497294c363f038a73af2_OrderRightPanelParams as OrderRightPanelParams };
196
+ }
197
+
198
+ declare namespace dashboardPagesPluginProps {
199
+ export { e5128b65Cb234ea4B63a434a4e6b6e9e as CollectPayment, _8454e8a0568443319d4aE4873467553a as DraftOrderPage, f2526550194f4c1392989a6b8abda62f as EditOrder, _3b96985eA459497294c363f038a73af2 as OrderDetails, _8107f05fD6464c81Be90Adf28d321398 as Orders };
200
+ }
201
+
202
+ declare namespace dashboard {
203
+ export { dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins };
204
+ }
205
+
206
+ export { dashboardPageBuilders as a, dashboardPagesPluginProps as b, dashboard as d };
@@ -1,206 +1 @@
1
- /**
2
- * @pageName EditOrder
3
- * @slotType dashboard menu plugin
4
- */
5
- type OrderSummaryParams$1 = DraftOrderManageFeesActionParams$1;
6
- /** @internal */
7
- type DraftOrderManageFeesActionParams$1 = {
8
- draftOrderId: string;
9
- onDraftOrderUpdate(): Promise<void>;
10
- };
11
-
12
- declare namespace f2526550194f4c1392989a6b8abda62f {
13
- export type { DraftOrderManageFeesActionParams$1 as DraftOrderManageFeesActionParams, OrderSummaryParams$1 as OrderSummaryParams };
14
- }
15
-
16
- /**
17
- * @pageName Orders
18
- * @slotType dashboard menu plugin
19
- */
20
- type OrderItemsBulkMoreActionsMenuParams = OrdersListBulkActionExtensionProps;
21
- /** @internal */
22
- type OrdersListBulkActionExtensionProps = {
23
- selectedIds: string[];
24
- uncheckedIds: string[];
25
- isSelectAll: boolean;
26
- total: number;
27
- onSuccess(): Promise<void>;
28
- };
29
-
30
- type _8107f05fD6464c81Be90Adf28d321398_OrderItemsBulkMoreActionsMenuParams = OrderItemsBulkMoreActionsMenuParams;
31
- type _8107f05fD6464c81Be90Adf28d321398_OrdersListBulkActionExtensionProps = OrdersListBulkActionExtensionProps;
32
- declare namespace _8107f05fD6464c81Be90Adf28d321398 {
33
- export type { _8107f05fD6464c81Be90Adf28d321398_OrderItemsBulkMoreActionsMenuParams as OrderItemsBulkMoreActionsMenuParams, _8107f05fD6464c81Be90Adf28d321398_OrdersListBulkActionExtensionProps as OrdersListBulkActionExtensionProps };
34
- }
35
-
36
- /**
37
- * @pageName DraftOrderPage
38
- * @slotType dashboard menu plugin
39
- */
40
- type OrderSummaryParams = DraftOrderManageFeesActionParams;
41
- /** @internal */
42
- type DraftOrderManageFeesActionParams = {
43
- draftOrderId: string;
44
- onDraftOrderUpdate(): Promise<void>;
45
- };
46
-
47
- type _8454e8a0568443319d4aE4873467553a_DraftOrderManageFeesActionParams = DraftOrderManageFeesActionParams;
48
- type _8454e8a0568443319d4aE4873467553a_OrderSummaryParams = OrderSummaryParams;
49
- declare namespace _8454e8a0568443319d4aE4873467553a {
50
- export type { _8454e8a0568443319d4aE4873467553a_DraftOrderManageFeesActionParams as DraftOrderManageFeesActionParams, _8454e8a0568443319d4aE4873467553a_OrderSummaryParams as OrderSummaryParams };
51
- }
52
-
53
- /**
54
- * @pageName CollectPayment
55
- * @slotType dashboard menu plugin
56
- */
57
- type CollectPaymentMenuParams = CollectPaymentMenuOptionParams;
58
- /** @internal */
59
- type CollectPaymentMenuOptionParams = {
60
- orderId: string;
61
- /** @deprecated Use onSuccess() instead */
62
- onSuccessCallback(): Promise<void>;
63
- onSuccess(): Promise<void>;
64
- };
65
- /**
66
- * @pageName CollectPayment
67
- * @slotType dashboard plugin
68
- */
69
- type CollectPaymentModalParams = CollectPaymentMenuOnBeforePayModalSlotProps;
70
- /** @internal */
71
- type CollectPaymentMenuOnBeforePayModalSlotProps = {
72
- orderId: string;
73
- onSuccess(): Promise<void>;
74
- onCancel(): void;
75
- menuOption: {
76
- key: 'CHARGE_WITH_CREDIT_CARD' | 'RECORD_ORDER_MANUAL_PAYMENT' | 'CHARGE_WITH_INVOICE' | 'CAPTURE_AUTHORIZED_PAYMENT' | 'CREATE_AUTHORIZED_PAYMENT';
77
- componentId?: undefined;
78
- } | {
79
- key: 'EXTENSION';
80
- componentId: string;
81
- };
82
- };
83
-
84
- type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOnBeforePayModalSlotProps = CollectPaymentMenuOnBeforePayModalSlotProps;
85
- type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOptionParams = CollectPaymentMenuOptionParams;
86
- type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuParams = CollectPaymentMenuParams;
87
- type e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentModalParams = CollectPaymentModalParams;
88
- declare namespace e5128b65Cb234ea4B63a434a4e6b6e9e {
89
- export type { e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOnBeforePayModalSlotProps as CollectPaymentMenuOnBeforePayModalSlotProps, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuOptionParams as CollectPaymentMenuOptionParams, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentMenuParams as CollectPaymentMenuParams, e5128b65Cb234ea4B63a434a4e6b6e9e_CollectPaymentModalParams as CollectPaymentModalParams };
90
- }
91
-
92
- /**
93
- * @pageName OrderDetails
94
- * @slotType dashboard plugin
95
- */
96
- type OrderRightPanelParams = OrderDetailsSecondaryCardProps;
97
- /** @internal */
98
- type OrderDetailsSecondaryCardProps = {
99
- orderId: string;
100
- onOrderUpdate(): Promise<void>;
101
- };
102
-
103
- type _3b96985eA459497294c363f038a73af2_OrderDetailsSecondaryCardProps = OrderDetailsSecondaryCardProps;
104
- type _3b96985eA459497294c363f038a73af2_OrderRightPanelParams = OrderRightPanelParams;
105
- declare namespace _3b96985eA459497294c363f038a73af2 {
106
- export type { _3b96985eA459497294c363f038a73af2_OrderDetailsSecondaryCardProps as OrderDetailsSecondaryCardProps, _3b96985eA459497294c363f038a73af2_OrderRightPanelParams as OrderRightPanelParams };
107
- }
108
-
109
- declare namespace dashboardPagesPluginProps {
110
- export { e5128b65Cb234ea4B63a434a4e6b6e9e as CollectPayment, _8454e8a0568443319d4aE4873467553a as DraftOrderPage, f2526550194f4c1392989a6b8abda62f as EditOrder, _3b96985eA459497294c363f038a73af2 as OrderDetails, _8107f05fD6464c81Be90Adf28d321398 as Orders };
111
- }
112
-
113
- interface editOrderOptions {
114
- /** ID of the order to edit. */
115
- orderId: string;
116
- }
117
- /**
118
- * 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.
119
- * @dashobardPageBuilder
120
- */
121
- declare function editOrder(options: editOrderOptions): PageBuilderResult;
122
- /**
123
- * 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 Tax Settings page in the dashboard.
124
- * @dashobardPageBuilder
125
- */
126
- declare function taxSettings(): PageBuilderResult;
127
- interface orderRefundOptions {
128
- /** ID of the order to refund. */
129
- orderId: string;
130
- }
131
- /**
132
- * 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.
133
- * @dashobardPageBuilder
134
- */
135
- declare function orderRefund(options: orderRefundOptions): PageBuilderResult;
136
- /**
137
- * 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.
138
- * @dashobardPageBuilder
139
- */
140
- declare function deliveryProfiles(): PageBuilderResult;
141
- interface deliveryProfileOptions {
142
- /** Delivery profile to manage */
143
- deliveryProfileId: string;
144
- }
145
- /**
146
- * 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.
147
- * @dashobardPageBuilder
148
- */
149
- declare function deliveryProfile(options: deliveryProfileOptions): PageBuilderResult;
150
- /**
151
- * 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.
152
- * @dashobardPageBuilder
153
- */
154
- declare function orderList(): PageBuilderResult;
155
- /**
156
- * 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.
157
- * @dashobardPageBuilder
158
- */
159
- declare function newOrder(): PageBuilderResult;
160
- interface editDraftOrderOptions {
161
- /** Draft order id */
162
- draftOrderId: string;
163
- }
164
- /**
165
- * 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.
166
- * @dashobardPageBuilder
167
- */
168
- declare function editDraftOrder(options: editDraftOrderOptions): PageBuilderResult;
169
- interface orderDetailsOptions {
170
- /** The order Id to display */
171
- id: string;
172
- }
173
- /**
174
- * 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.
175
- * @dashobardPageBuilder
176
- */
177
- declare function orderDetails(options: orderDetailsOptions): PageBuilderResult;
178
- interface PageBuilderResult {
179
- pageId: string;
180
- relativeUrl?: string;
181
- }
182
-
183
- type dashboardPageBuilders_PageBuilderResult = PageBuilderResult;
184
- declare const dashboardPageBuilders_deliveryProfile: typeof deliveryProfile;
185
- type dashboardPageBuilders_deliveryProfileOptions = deliveryProfileOptions;
186
- declare const dashboardPageBuilders_deliveryProfiles: typeof deliveryProfiles;
187
- declare const dashboardPageBuilders_editDraftOrder: typeof editDraftOrder;
188
- type dashboardPageBuilders_editDraftOrderOptions = editDraftOrderOptions;
189
- declare const dashboardPageBuilders_editOrder: typeof editOrder;
190
- type dashboardPageBuilders_editOrderOptions = editOrderOptions;
191
- declare const dashboardPageBuilders_newOrder: typeof newOrder;
192
- declare const dashboardPageBuilders_orderDetails: typeof orderDetails;
193
- type dashboardPageBuilders_orderDetailsOptions = orderDetailsOptions;
194
- declare const dashboardPageBuilders_orderList: typeof orderList;
195
- declare const dashboardPageBuilders_orderRefund: typeof orderRefund;
196
- type dashboardPageBuilders_orderRefundOptions = orderRefundOptions;
197
- declare const dashboardPageBuilders_taxSettings: typeof taxSettings;
198
- declare namespace dashboardPageBuilders {
199
- export { type dashboardPageBuilders_PageBuilderResult as PageBuilderResult, dashboardPageBuilders_deliveryProfile as deliveryProfile, type dashboardPageBuilders_deliveryProfileOptions as deliveryProfileOptions, dashboardPageBuilders_deliveryProfiles as deliveryProfiles, dashboardPageBuilders_editDraftOrder as editDraftOrder, type dashboardPageBuilders_editDraftOrderOptions as editDraftOrderOptions, dashboardPageBuilders_editOrder as editOrder, type dashboardPageBuilders_editOrderOptions as editOrderOptions, dashboardPageBuilders_newOrder as newOrder, dashboardPageBuilders_orderDetails as orderDetails, type dashboardPageBuilders_orderDetailsOptions as orderDetailsOptions, dashboardPageBuilders_orderList as orderList, dashboardPageBuilders_orderRefund as orderRefund, type dashboardPageBuilders_orderRefundOptions as orderRefundOptions, dashboardPageBuilders_taxSettings as taxSettings };
200
- }
201
-
202
- declare namespace dashboard {
203
- export { dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins };
204
- }
205
-
206
- export { dashboard as d, dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins };
1
+ export { a as pages, b as plugins } from './dashboard-C6qs3P5V.js';
@@ -25,31 +25,6 @@ __export(dashboard_exports, {
25
25
  });
26
26
  module.exports = __toCommonJS(dashboard_exports);
27
27
 
28
- // src/extensions/dashboard-pages-plugin-props.ts
29
- var dashboard_pages_plugin_props_exports = {};
30
- __export(dashboard_pages_plugin_props_exports, {
31
- CollectPayment: () => e5128b65_cb23_4ea4_b63a_434a4e6b6e9e_exports,
32
- DraftOrderPage: () => e8a0_5684_4331_9d4a_e4873467553a_exports,
33
- EditOrder: () => f2526550_194f_4c13_9298_9a6b8abda62f_exports,
34
- OrderDetails: () => b96985e_a459_4972_94c3_63f038a73af2_exports,
35
- Orders: () => f05f_d646_4c81_be90_adf28d321398_exports
36
- });
37
-
38
- // src/extensions/dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.ts
39
- var f2526550_194f_4c13_9298_9a6b8abda62f_exports = {};
40
-
41
- // src/extensions/dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.ts
42
- var f05f_d646_4c81_be90_adf28d321398_exports = {};
43
-
44
- // src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts
45
- var e8a0_5684_4331_9d4a_e4873467553a_exports = {};
46
-
47
- // src/extensions/dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.ts
48
- var e5128b65_cb23_4ea4_b63a_434a4e6b6e9e_exports = {};
49
-
50
- // src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts
51
- var b96985e_a459_4972_94c3_63f038a73af2_exports = {};
52
-
53
28
  // src/extensions/dashboard-page-builders.ts
54
29
  var dashboard_page_builders_exports = {};
55
30
  __export(dashboard_page_builders_exports, {
@@ -110,6 +85,31 @@ function orderDetails(options) {
110
85
  relativeUrl: `${id}`
111
86
  };
112
87
  }
88
+
89
+ // src/extensions/dashboard-pages-plugin-props.ts
90
+ var dashboard_pages_plugin_props_exports = {};
91
+ __export(dashboard_pages_plugin_props_exports, {
92
+ CollectPayment: () => e5128b65_cb23_4ea4_b63a_434a4e6b6e9e_exports,
93
+ DraftOrderPage: () => e8a0_5684_4331_9d4a_e4873467553a_exports,
94
+ EditOrder: () => f2526550_194f_4c13_9298_9a6b8abda62f_exports,
95
+ OrderDetails: () => b96985e_a459_4972_94c3_63f038a73af2_exports,
96
+ Orders: () => f05f_d646_4c81_be90_adf28d321398_exports
97
+ });
98
+
99
+ // src/extensions/dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.ts
100
+ var f2526550_194f_4c13_9298_9a6b8abda62f_exports = {};
101
+
102
+ // src/extensions/dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.ts
103
+ var f05f_d646_4c81_be90_adf28d321398_exports = {};
104
+
105
+ // src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts
106
+ var e8a0_5684_4331_9d4a_e4873467553a_exports = {};
107
+
108
+ // src/extensions/dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.ts
109
+ var e5128b65_cb23_4ea4_b63a_434a4e6b6e9e_exports = {};
110
+
111
+ // src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts
112
+ var b96985e_a459_4972_94c3_63f038a73af2_exports = {};
113
113
  // Annotate the CommonJS export names for ESM import in node:
114
114
  0 && (module.exports = {
115
115
  pages,
@@ -1 +1 @@
1
- {"version":3,"sources":["../../dashboard.ts","../../src/extensions/dashboard-pages-plugin-props.ts","../../src/extensions/dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.ts","../../src/extensions/dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.ts","../../src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts","../../src/extensions/dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.ts","../../src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts","../../src/extensions/dashboard-page-builders.ts"],"sourcesContent":["export * as plugins from './src/extensions/dashboard-pages-plugin-props.js';\nexport * as pages from './src/extensions/dashboard-page-builders.js';\n","export * as EditOrder from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';\nexport * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';\nexport * as DraftOrderPage from './dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js';\nexport * as CollectPayment from './dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.js';\nexport * as OrderDetails from './dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js';\n","/**\n * @pageName EditOrder\n * @slotType dashboard menu plugin\n */\nexport type OrderSummaryParams = DraftOrderManageFeesActionParams;\n/** @internal */\nexport type DraftOrderManageFeesActionParams = {\n // ID of the order that is being edited.\n draftOrderId: string;\n // Callback that notifies the host page about a draft order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onDraftOrderUpdate(): Promise<void>;\n};\n","/**\n * @pageName Orders\n * @slotType dashboard menu plugin\n */\nexport type OrderItemsBulkMoreActionsMenuParams =\n OrdersListBulkActionExtensionProps;\n/** @internal */\nexport type OrdersListBulkActionExtensionProps = {\n // An array of IDs representing the orders that have been selected.\n selectedIds: string[];\n // An array of IDs representing the orders that have been unchecked. Applicable only when the \"Select All\" option was selected.\n uncheckedIds: string[];\n // A boolean value indicating whether the \"Select All\" option was selected.\n isSelectAll: boolean;\n // The total number of orders that were selected.\n total: number;\n // Callback that notifies the host after successful handling of the flow associated with the new menu item.\n onSuccess(): Promise<void>;\n};\n","/**\n * @pageName DraftOrderPage\n * @slotType dashboard menu plugin\n */\nexport type OrderSummaryParams = DraftOrderManageFeesActionParams;\n/** @internal */\nexport type DraftOrderManageFeesActionParams = {\n // ID of the order that is being edited.\n draftOrderId: string;\n // Callback that notifies the host page about a draft order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onDraftOrderUpdate(): Promise<void>;\n};\n","/**\n * @pageName CollectPayment\n * @slotType dashboard menu plugin\n */\nexport type CollectPaymentMenuParams = CollectPaymentMenuOptionParams;\n\n/** @internal */\nexport type CollectPaymentMenuOptionParams = {\n orderId: string;\n /** @deprecated Use onSuccess() instead */\n onSuccessCallback(): Promise<void>;\n onSuccess(): Promise<void>;\n};\n\n/**\n * @pageName CollectPayment\n * @slotType dashboard plugin\n */\nexport type CollectPaymentModalParams =\n CollectPaymentMenuOnBeforePayModalSlotProps;\n\n/** @internal */\nexport type CollectPaymentMenuOnBeforePayModalSlotProps = {\n orderId: string;\n onSuccess(): Promise<void>;\n onCancel(): void;\n menuOption:\n | {\n key:\n | 'CHARGE_WITH_CREDIT_CARD'\n | 'RECORD_ORDER_MANUAL_PAYMENT'\n | 'CHARGE_WITH_INVOICE'\n | 'CAPTURE_AUTHORIZED_PAYMENT'\n | 'CREATE_AUTHORIZED_PAYMENT';\n componentId?: undefined;\n }\n | {\n key: 'EXTENSION';\n componentId: string;\n };\n};\n","/**\n * @pageName OrderDetails\n * @slotType dashboard plugin\n */\nexport type OrderRightPanelParams = OrderDetailsSecondaryCardProps;\n\n/** @internal */\nexport type OrderDetailsSecondaryCardProps = {\n // Order ID.\n orderId: string;\n // Callback that notifies the host page about an order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onOrderUpdate(): Promise<void>;\n};\n","export interface editOrderOptions {\n /** ID of the order to edit. */\n orderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function editOrder(options: editOrderOptions): PageBuilderResult {\n const { orderId } = options;\n\n return {\n pageId: 'f2526550-194f-4c13-9298-9a6b8abda62f',\n relativeUrl: `${orderId}`,\n };\n}\n\n/**\n * 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 Tax Settings page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function taxSettings(): PageBuilderResult {\n return { pageId: '7f43cf15-e14a-48f7-a7fa-9d0d1b1a6f02' };\n}\n\nexport interface orderRefundOptions {\n /** ID of the order to refund. */\n orderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderRefund(options: orderRefundOptions): PageBuilderResult {\n const { orderId } = options;\n\n return {\n pageId: 'c4898867-69a5-4e05-92b7-c276f9424641',\n relativeUrl: `${orderId}`,\n };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function deliveryProfiles(): PageBuilderResult {\n return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };\n}\n\nexport interface deliveryProfileOptions {\n /** Delivery profile to manage */\n deliveryProfileId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function deliveryProfile(\n options: deliveryProfileOptions\n): PageBuilderResult {\n const { deliveryProfileId } = options;\n\n return {\n pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8',\n relativeUrl: `${deliveryProfileId}`,\n };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderList(): PageBuilderResult {\n return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function newOrder(): PageBuilderResult {\n return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };\n}\n\nexport interface editDraftOrderOptions {\n /** Draft order id */\n draftOrderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function editDraftOrder(\n options: editDraftOrderOptions\n): PageBuilderResult {\n const { draftOrderId } = options;\n\n return {\n pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',\n relativeUrl: `${draftOrderId}`,\n };\n}\n\nexport interface orderDetailsOptions {\n /** The order Id to display */\n id: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderDetails(options: orderDetailsOptions): PageBuilderResult {\n const { id } = options;\n\n return {\n pageId: '3b96985e-a459-4972-94c3-63f038a73af2',\n relativeUrl: `${id}`,\n };\n}\n\nexport interface PageBuilderResult {\n pageId: string;\n relativeUrl?: string;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASO,SAAS,UAAU,SAA8C;AACtE,QAAM,EAAE,QAAQ,IAAI;AAEpB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,OAAO;AAAA,EACzB;AACF;AAMO,SAAS,cAAiC;AAC/C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,YAAY,SAAgD;AAC1E,QAAM,EAAE,QAAQ,IAAI;AAEpB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,OAAO;AAAA,EACzB;AACF;AAMO,SAAS,mBAAsC;AACpD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,gBACd,SACmB;AACnB,QAAM,EAAE,kBAAkB,IAAI;AAE9B,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,iBAAiB;AAAA,EACnC;AACF;AAMO,SAAS,YAA+B;AAC7C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,WAA8B;AAC5C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,eACd,SACmB;AACnB,QAAM,EAAE,aAAa,IAAI;AAEzB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,YAAY;AAAA,EAC9B;AACF;AAWO,SAAS,aAAa,SAAiD;AAC5E,QAAM,EAAE,GAAG,IAAI;AAEf,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,EAAE;AAAA,EACpB;AACF;","names":[]}
1
+ {"version":3,"sources":["../../dashboard.ts","../../src/extensions/dashboard-page-builders.ts","../../src/extensions/dashboard-pages-plugin-props.ts","../../src/extensions/dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.ts","../../src/extensions/dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.ts","../../src/extensions/dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.ts","../../src/extensions/dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.ts","../../src/extensions/dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.ts"],"sourcesContent":["export * as pages from './src/extensions/dashboard-page-builders.js';\nexport * as plugins from './src/extensions/dashboard-pages-plugin-props.js';\n","export interface editOrderOptions {\n /** ID of the order to edit. */\n orderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function editOrder(options: editOrderOptions): PageBuilderResult {\n const { orderId } = options;\n\n return {\n pageId: 'f2526550-194f-4c13-9298-9a6b8abda62f',\n relativeUrl: `${orderId}`,\n };\n}\n\n/**\n * 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 Tax Settings page in the dashboard.\n * @dashobardPageBuilder\n */\nexport function taxSettings(): PageBuilderResult {\n return { pageId: '7f43cf15-e14a-48f7-a7fa-9d0d1b1a6f02' };\n}\n\nexport interface orderRefundOptions {\n /** ID of the order to refund. */\n orderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderRefund(options: orderRefundOptions): PageBuilderResult {\n const { orderId } = options;\n\n return {\n pageId: 'c4898867-69a5-4e05-92b7-c276f9424641',\n relativeUrl: `${orderId}`,\n };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function deliveryProfiles(): PageBuilderResult {\n return { pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8' };\n}\n\nexport interface deliveryProfileOptions {\n /** Delivery profile to manage */\n deliveryProfileId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function deliveryProfile(\n options: deliveryProfileOptions\n): PageBuilderResult {\n const { deliveryProfileId } = options;\n\n return {\n pageId: '841919b4-9e96-43f4-87ea-fa382bc9d0e8',\n relativeUrl: `${deliveryProfileId}`,\n };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderList(): PageBuilderResult {\n return { pageId: '8107f05f-d646-4c81-be90-adf28d321398' };\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function newOrder(): PageBuilderResult {\n return { pageId: '8454e8a0-5684-4331-9d4a-e4873467553a' };\n}\n\nexport interface editDraftOrderOptions {\n /** Draft order id */\n draftOrderId: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function editDraftOrder(\n options: editDraftOrderOptions\n): PageBuilderResult {\n const { draftOrderId } = options;\n\n return {\n pageId: '8454e8a0-5684-4331-9d4a-e4873467553a',\n relativeUrl: `${draftOrderId}`,\n };\n}\n\nexport interface orderDetailsOptions {\n /** The order Id to display */\n id: string;\n}\n\n/**\n * 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.\n * @dashobardPageBuilder\n */\nexport function orderDetails(options: orderDetailsOptions): PageBuilderResult {\n const { id } = options;\n\n return {\n pageId: '3b96985e-a459-4972-94c3-63f038a73af2',\n relativeUrl: `${id}`,\n };\n}\n\nexport interface PageBuilderResult {\n pageId: string;\n relativeUrl?: string;\n}\n","export * as EditOrder from './dashboard-page-plugins/f2526550-194f-4c13-9298-9a6b8abda62f.js';\nexport * as Orders from './dashboard-page-plugins/8107f05f-d646-4c81-be90-adf28d321398.js';\nexport * as DraftOrderPage from './dashboard-page-plugins/8454e8a0-5684-4331-9d4a-e4873467553a.js';\nexport * as CollectPayment from './dashboard-page-plugins/e5128b65-cb23-4ea4-b63a-434a4e6b6e9e.js';\nexport * as OrderDetails from './dashboard-page-plugins/3b96985e-a459-4972-94c3-63f038a73af2.js';\n","/**\n * @pageName EditOrder\n * @slotType dashboard menu plugin\n */\nexport type OrderSummaryParams = DraftOrderManageFeesActionParams;\n/** @internal */\nexport type DraftOrderManageFeesActionParams = {\n // ID of the order that is being edited.\n draftOrderId: string;\n // Callback that notifies the host page about a draft order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onDraftOrderUpdate(): Promise<void>;\n};\n","/**\n * @pageName Orders\n * @slotType dashboard menu plugin\n */\nexport type OrderItemsBulkMoreActionsMenuParams =\n OrdersListBulkActionExtensionProps;\n/** @internal */\nexport type OrdersListBulkActionExtensionProps = {\n // An array of IDs representing the orders that have been selected.\n selectedIds: string[];\n // An array of IDs representing the orders that have been unchecked. Applicable only when the \"Select All\" option was selected.\n uncheckedIds: string[];\n // A boolean value indicating whether the \"Select All\" option was selected.\n isSelectAll: boolean;\n // The total number of orders that were selected.\n total: number;\n // Callback that notifies the host after successful handling of the flow associated with the new menu item.\n onSuccess(): Promise<void>;\n};\n","/**\n * @pageName DraftOrderPage\n * @slotType dashboard menu plugin\n */\nexport type OrderSummaryParams = DraftOrderManageFeesActionParams;\n/** @internal */\nexport type DraftOrderManageFeesActionParams = {\n // ID of the order that is being edited.\n draftOrderId: string;\n // Callback that notifies the host page about a draft order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onDraftOrderUpdate(): Promise<void>;\n};\n","/**\n * @pageName CollectPayment\n * @slotType dashboard menu plugin\n */\nexport type CollectPaymentMenuParams = CollectPaymentMenuOptionParams;\n\n/** @internal */\nexport type CollectPaymentMenuOptionParams = {\n orderId: string;\n /** @deprecated Use onSuccess() instead */\n onSuccessCallback(): Promise<void>;\n onSuccess(): Promise<void>;\n};\n\n/**\n * @pageName CollectPayment\n * @slotType dashboard plugin\n */\nexport type CollectPaymentModalParams =\n CollectPaymentMenuOnBeforePayModalSlotProps;\n\n/** @internal */\nexport type CollectPaymentMenuOnBeforePayModalSlotProps = {\n orderId: string;\n onSuccess(): Promise<void>;\n onCancel(): void;\n menuOption:\n | {\n key:\n | 'CHARGE_WITH_CREDIT_CARD'\n | 'RECORD_ORDER_MANUAL_PAYMENT'\n | 'CHARGE_WITH_INVOICE'\n | 'CAPTURE_AUTHORIZED_PAYMENT'\n | 'CREATE_AUTHORIZED_PAYMENT';\n componentId?: undefined;\n }\n | {\n key: 'EXTENSION';\n componentId: string;\n };\n};\n","/**\n * @pageName OrderDetails\n * @slotType dashboard plugin\n */\nexport type OrderRightPanelParams = OrderDetailsSecondaryCardProps;\n\n/** @internal */\nexport type OrderDetailsSecondaryCardProps = {\n // Order ID.\n orderId: string;\n // Callback that notifies the host page about an order update, prompting a UI refresh. It returns a promise indicating when the UI update on the host page is complete.\n onOrderUpdate(): Promise<void>;\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AASO,SAAS,UAAU,SAA8C;AACtE,QAAM,EAAE,QAAQ,IAAI;AAEpB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,OAAO;AAAA,EACzB;AACF;AAMO,SAAS,cAAiC;AAC/C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,YAAY,SAAgD;AAC1E,QAAM,EAAE,QAAQ,IAAI;AAEpB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,OAAO;AAAA,EACzB;AACF;AAMO,SAAS,mBAAsC;AACpD,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,gBACd,SACmB;AACnB,QAAM,EAAE,kBAAkB,IAAI;AAE9B,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,iBAAiB;AAAA,EACnC;AACF;AAMO,SAAS,YAA+B;AAC7C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAMO,SAAS,WAA8B;AAC5C,SAAO,EAAE,QAAQ,uCAAuC;AAC1D;AAWO,SAAS,eACd,SACmB;AACnB,QAAM,EAAE,aAAa,IAAI;AAEzB,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,YAAY;AAAA,EAC9B;AACF;AAWO,SAAS,aAAa,SAAiD;AAC5E,QAAM,EAAE,GAAG,IAAI;AAEf,SAAO;AAAA,IACL,QAAQ;AAAA,IACR,aAAa,GAAG,EAAE;AAAA,EACpB;AACF;;;AC5HA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;;;ACAA;","names":[]}
@@ -1 +1,2 @@
1
- export { d as dashboard } from './dashboard.js';
1
+ export { s as site } from './site-BDGXuGo-.js';
2
+ export { d as dashboard } from './dashboard-C6qs3P5V.js';