@wix/ecom_app-extensions 1.0.106 → 1.0.108

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
- 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 { dashboard as d, dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins };
1
+ export { a as pages, b as plugins } from './dashboard-C6qs3P5V.js';
@@ -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';
@@ -20,10 +20,131 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // index.ts
21
21
  var index_exports = {};
22
22
  __export(index_exports, {
23
- dashboard: () => dashboard_exports
23
+ dashboard: () => dashboard_exports,
24
+ site: () => site_exports
24
25
  });
25
26
  module.exports = __toCommonJS(index_exports);
26
27
 
28
+ // site.ts
29
+ var site_exports = {};
30
+ __export(site_exports, {
31
+ plugins: () => editor_pages_plugin_props_exports
32
+ });
33
+
34
+ // src/extensions/editor-pages-plugin-props.ts
35
+ var editor_pages_plugin_props_exports = {};
36
+ __export(editor_pages_plugin_props_exports, {
37
+ CategoryPage: () => bda15dc1_816d_4ff3_8dcb_1172d5343cce_exports,
38
+ Checkout: () => fd5970_8072_c276_1246_058b79e70c1a_exports,
39
+ GridGallery: () => afb094_84f9_739f_44fd_78d036adb028_exports,
40
+ ProductPage: () => a94f09_2766_3c40_4a32_8edb5acdd8bc_exports,
41
+ SearchModalGallery: () => c9_d856_49b9_af14_216071924e3b_exports,
42
+ SearchResultsPageGallery: () => abcd87fe_c51f_4538_848d_2902a2f50d2d_exports,
43
+ Shop: () => bba0_253e_a800_a235_88821cf3f8a4_exports
44
+ });
45
+
46
+ // src/extensions/editor-page-plugins/13afb094-84f9-739f-44fd-78d036adb028.ts
47
+ var afb094_84f9_739f_44fd_78d036adb028_exports = {};
48
+ __export(afb094_84f9_739f_44fd_78d036adb028_exports, {
49
+ SlotIds: () => SlotIds
50
+ });
51
+ var SlotIds = {
52
+ galleryFiltersTop: "a81dea42-6bdc-4cd9-b8e0-995751d926a9",
53
+ galleryFiltersBottom: "bb2f1ffa-3dd8-434f-bd9a-faa1fbbfa0f9",
54
+ galleryProductsTop: "4c5fb938-90bc-420d-8766-d8b428dd00ee",
55
+ galleryProductsBottom: "4a10dfa2-e2aa-47ae-9629-ca86c1d04751"
56
+ };
57
+
58
+ // src/extensions/editor-page-plugins/bda15dc1-816d-4ff3-8dcb-1172d5343cce.ts
59
+ var bda15dc1_816d_4ff3_8dcb_1172d5343cce_exports = {};
60
+ __export(bda15dc1_816d_4ff3_8dcb_1172d5343cce_exports, {
61
+ SlotIds: () => SlotIds2
62
+ });
63
+ var SlotIds2 = {
64
+ galleryFiltersTop: "a81dea42-6bdc-4cd9-b8e0-995751d926a9",
65
+ galleryFiltersBottom: "bb2f1ffa-3dd8-434f-bd9a-faa1fbbfa0f9",
66
+ galleryProductsTop: "4c5fb938-90bc-420d-8766-d8b428dd00ee",
67
+ galleryProductsBottom: "4a10dfa2-e2aa-47ae-9629-ca86c1d04751",
68
+ categoryPageListTop: "281f21dd-27f1-4466-b1fb-1af332f0cea8",
69
+ categoryPageHeroTop: "7bff6166-e633-48b8-ac3a-f6b9660d39dc"
70
+ };
71
+
72
+ // src/extensions/editor-page-plugins/13a94f09-2766-3c40-4a32-8edb5acdd8bc.ts
73
+ var a94f09_2766_3c40_4a32_8edb5acdd8bc_exports = {};
74
+ __export(a94f09_2766_3c40_4a32_8edb5acdd8bc_exports, {
75
+ SlotIds: () => SlotIds3
76
+ });
77
+ var SlotIds3 = {
78
+ checkoutHeader: "bb058d1f-b70f-4df9-9da0-0523322a38a1",
79
+ productPageAdditionalButtons: "9d31fcc2-53ee-4547-b837-878f5394ed7e",
80
+ productPageDetails5: "1db8f870-879b-46b8-88df-f232e2621eb2",
81
+ productPageDetails7: "15c88f6e-fbd2-418b-a389-00bcd1937dc1",
82
+ productPageDetails2: "905e9719-9672-437f-85a0-1975337ba08c",
83
+ productPageDetails9: "a49a45fe-2f34-4eae-a8f5-d971f822e645",
84
+ productPageMedia1: "f74d0746-dd85-4a4e-b1c5-8207b29cc191",
85
+ productPageDetails6: "6feecc92-8459-4698-ad4b-b085a74407d8",
86
+ productPageDetails4: "cec2ee92-7e12-42a1-a2f5-fe02f30e688a",
87
+ productPageTop: "2832b6e7-1bb3-4b08-b361-5e77a13621dc",
88
+ productPageDetails1: "8e497c6c-3ed9-4995-8ee9-e9f939f7a355",
89
+ productPageDetails3: "b9dff4d5-192d-4574-bf14-baf6e2734f3a",
90
+ productPageDetails8: "edce2d4e-51c9-4e75-b7db-090da80ff455",
91
+ productPageBottom: "ad454e1e-aa18-46a6-ae81-5df549178c7a"
92
+ };
93
+
94
+ // src/extensions/editor-page-plugins/14fd5970-8072-c276-1246-058b79e70c1a.ts
95
+ var fd5970_8072_c276_1246_058b79e70c1a_exports = {};
96
+ __export(fd5970_8072_c276_1246_058b79e70c1a_exports, {
97
+ SlotIds: () => SlotIds4
98
+ });
99
+ var SlotIds4 = {
100
+ checkoutPoliciesAfter1: "465be850-f1e6-4e80-b125-a62e56005f05",
101
+ checkoutSummaryLineItemsAfter2: "f63efbab-2b28-4565-af96-d198040d2303",
102
+ checkoutSummaryAfter: "c9614893-83dd-4481-8a86-62ce3c696fb0",
103
+ checkoutTop: "210b7bf5-8532-4f42-9f5f-00204534b403",
104
+ checkoutSummaryTotalsBreakdownBefore: "5e7ea8d8-adec-4a12-b28b-d07fbb055442",
105
+ checkoutStepsBefore: "16cf4440-fa01-47ff-973e-051bb91c25d9",
106
+ checkoutSummaryBefore: "969d874f-bdba-4429-a626-ff801d712c6a",
107
+ checkoutSummaryLineItemsAfter: "6918440e-160c-4b55-87b6-2af2e83b3174",
108
+ checkoutHeader: "bb058d1f-b70f-4df9-9da0-0523322a38a1",
109
+ checkoutDeliveryStepOptionsAfter: "b64dc1ee-b8d6-4870-9758-01f6c0c22fef"
110
+ };
111
+
112
+ // src/extensions/editor-page-plugins/abcd87fe-c51f-4538-848d-2902a2f50d2d.ts
113
+ var abcd87fe_c51f_4538_848d_2902a2f50d2d_exports = {};
114
+ __export(abcd87fe_c51f_4538_848d_2902a2f50d2d_exports, {
115
+ SlotIds: () => SlotIds5
116
+ });
117
+ var SlotIds5 = {
118
+ galleryFiltersTop: "a81dea42-6bdc-4cd9-b8e0-995751d926a9",
119
+ galleryFiltersBottom: "bb2f1ffa-3dd8-434f-bd9a-faa1fbbfa0f9",
120
+ galleryProductsTop: "4c5fb938-90bc-420d-8766-d8b428dd00ee",
121
+ galleryProductsBottom: "4a10dfa2-e2aa-47ae-9629-ca86c1d04751"
122
+ };
123
+
124
+ // src/extensions/editor-page-plugins/1380bba0-253e-a800-a235-88821cf3f8a4.ts
125
+ var bba0_253e_a800_a235_88821cf3f8a4_exports = {};
126
+ __export(bba0_253e_a800_a235_88821cf3f8a4_exports, {
127
+ SlotIds: () => SlotIds6
128
+ });
129
+ var SlotIds6 = {
130
+ galleryFiltersTop: "a81dea42-6bdc-4cd9-b8e0-995751d926a9",
131
+ galleryFiltersBottom: "bb2f1ffa-3dd8-434f-bd9a-faa1fbbfa0f9",
132
+ galleryProductsTop: "4c5fb938-90bc-420d-8766-d8b428dd00ee",
133
+ galleryProductsBottom: "4a10dfa2-e2aa-47ae-9629-ca86c1d04751"
134
+ };
135
+
136
+ // src/extensions/editor-page-plugins/244576c9-d856-49b9-af14-216071924e3b.ts
137
+ var c9_d856_49b9_af14_216071924e3b_exports = {};
138
+ __export(c9_d856_49b9_af14_216071924e3b_exports, {
139
+ SlotIds: () => SlotIds7
140
+ });
141
+ var SlotIds7 = {
142
+ galleryFiltersTop: "a81dea42-6bdc-4cd9-b8e0-995751d926a9",
143
+ galleryFiltersBottom: "bb2f1ffa-3dd8-434f-bd9a-faa1fbbfa0f9",
144
+ galleryProductsTop: "4c5fb938-90bc-420d-8766-d8b428dd00ee",
145
+ galleryProductsBottom: "4a10dfa2-e2aa-47ae-9629-ca86c1d04751"
146
+ };
147
+
27
148
  // dashboard.ts
28
149
  var dashboard_exports = {};
29
150
  __export(dashboard_exports, {
@@ -118,6 +239,7 @@ var e5128b65_cb23_4ea4_b63a_434a4e6b6e9e_exports = {};
118
239
  var b96985e_a459_4972_94c3_63f038a73af2_exports = {};
119
240
  // Annotate the CommonJS export names for ESM import in node:
120
241
  0 && (module.exports = {
121
- dashboard
242
+ dashboard,
243
+ site
122
244
  });
123
245
  //# sourceMappingURL=index.js.map