@wix/ecom_app-extensions 1.0.103 → 1.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/dashboard.d.ts +206 -1
- package/build/cjs/index.d.ts +1 -2
- package/build/cjs/index.js +2 -125
- package/build/cjs/index.js.map +1 -1
- package/build/es/dashboard.d.mts +206 -1
- package/build/es/index.d.mts +1 -2
- package/build/es/index.mjs +1 -123
- package/build/es/index.mjs.map +1 -1
- package/package.json +3 -9
- package/build/cjs/dashboard-C6qs3P5V.d.ts +0 -206
- package/build/cjs/site-CXoy-yKq.d.ts +0 -496
- package/build/cjs/site.d.ts +0 -1
- package/build/cjs/site.js +0 -145
- package/build/cjs/site.js.map +0 -1
- package/build/es/dashboard-C6qs3P5V.d.mts +0 -206
- package/build/es/site-CXoy-yKq.d.mts +0 -496
- package/build/es/site.d.mts +0 -1
- package/build/es/site.mjs +0 -124
- package/build/es/site.mjs.map +0 -1
- package/site/package.json +0 -3
|
@@ -1,206 +0,0 @@
|
|
|
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,496 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @pageName GridGallery
|
|
3
|
-
* @slotType site plugin
|
|
4
|
-
*/
|
|
5
|
-
type GalleryFiltersTopSlotProps$4 = {
|
|
6
|
-
categoryId: string;
|
|
7
|
-
};
|
|
8
|
-
/**
|
|
9
|
-
* @pageName GridGallery
|
|
10
|
-
* @slotType site plugin
|
|
11
|
-
*/
|
|
12
|
-
type GalleryFiltersBottomSlotProps$4 = {
|
|
13
|
-
categoryId: string;
|
|
14
|
-
};
|
|
15
|
-
/**
|
|
16
|
-
* @pageName GridGallery
|
|
17
|
-
* @slotType site plugin
|
|
18
|
-
*/
|
|
19
|
-
type GalleryProductsTopSlotProps$4 = {
|
|
20
|
-
categoryId: string;
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* @pageName GridGallery
|
|
24
|
-
* @slotType site plugin
|
|
25
|
-
*/
|
|
26
|
-
type GalleryProductsBottomSlotProps$4 = {
|
|
27
|
-
categoryId: string;
|
|
28
|
-
};
|
|
29
|
-
declare const SlotIds$6: {
|
|
30
|
-
galleryFiltersTop: string;
|
|
31
|
-
galleryFiltersBottom: string;
|
|
32
|
-
galleryProductsTop: string;
|
|
33
|
-
galleryProductsBottom: string;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
declare namespace _13afb09484f9739f44fd78d036adb028 {
|
|
37
|
-
export { type GalleryFiltersBottomSlotProps$4 as GalleryFiltersBottomSlotProps, type GalleryFiltersTopSlotProps$4 as GalleryFiltersTopSlotProps, type GalleryProductsBottomSlotProps$4 as GalleryProductsBottomSlotProps, type GalleryProductsTopSlotProps$4 as GalleryProductsTopSlotProps, SlotIds$6 as SlotIds };
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/**
|
|
41
|
-
* @pageName CategoryPage
|
|
42
|
-
* @slotType site plugin
|
|
43
|
-
*/
|
|
44
|
-
type GalleryFiltersTopSlotProps$3 = {
|
|
45
|
-
categoryId: string;
|
|
46
|
-
};
|
|
47
|
-
/**
|
|
48
|
-
* @pageName CategoryPage
|
|
49
|
-
* @slotType site plugin
|
|
50
|
-
*/
|
|
51
|
-
type GalleryFiltersBottomSlotProps$3 = {
|
|
52
|
-
categoryId: string;
|
|
53
|
-
};
|
|
54
|
-
/**
|
|
55
|
-
* @pageName CategoryPage
|
|
56
|
-
* @slotType site plugin
|
|
57
|
-
*/
|
|
58
|
-
type GalleryProductsTopSlotProps$3 = {
|
|
59
|
-
categoryId: string;
|
|
60
|
-
};
|
|
61
|
-
/**
|
|
62
|
-
* @pageName CategoryPage
|
|
63
|
-
* @slotType site plugin
|
|
64
|
-
*/
|
|
65
|
-
type GalleryProductsBottomSlotProps$3 = {
|
|
66
|
-
categoryId: string;
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* @pageName CategoryPage
|
|
70
|
-
* @slotType site plugin
|
|
71
|
-
*/
|
|
72
|
-
type CategoryPageHeroBottomSlotProps = {
|
|
73
|
-
categoryId: string;
|
|
74
|
-
};
|
|
75
|
-
/**
|
|
76
|
-
* @pageName CategoryPage
|
|
77
|
-
* @slotType site plugin
|
|
78
|
-
*/
|
|
79
|
-
type CategoryPageListTopSlotProps = {
|
|
80
|
-
categoryId: string;
|
|
81
|
-
};
|
|
82
|
-
/**
|
|
83
|
-
* @pageName CategoryPage
|
|
84
|
-
* @slotType site plugin
|
|
85
|
-
*/
|
|
86
|
-
type CategoryPageHeroTopSlotProps = {
|
|
87
|
-
categoryId: string;
|
|
88
|
-
};
|
|
89
|
-
declare const SlotIds$5: {
|
|
90
|
-
galleryFiltersTop: string;
|
|
91
|
-
galleryFiltersBottom: string;
|
|
92
|
-
galleryProductsTop: string;
|
|
93
|
-
galleryProductsBottom: string;
|
|
94
|
-
categoryPageHeroBottom: string;
|
|
95
|
-
categoryPageListTop: string;
|
|
96
|
-
categoryPageHeroTop: string;
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageHeroBottomSlotProps = CategoryPageHeroBottomSlotProps;
|
|
100
|
-
type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageHeroTopSlotProps = CategoryPageHeroTopSlotProps;
|
|
101
|
-
type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageListTopSlotProps = CategoryPageListTopSlotProps;
|
|
102
|
-
declare namespace bda15dc1816d4ff38dcb1172d5343cce {
|
|
103
|
-
export { type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageHeroBottomSlotProps as CategoryPageHeroBottomSlotProps, type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageHeroTopSlotProps as CategoryPageHeroTopSlotProps, type bda15dc1816d4ff38dcb1172d5343cce_CategoryPageListTopSlotProps as CategoryPageListTopSlotProps, type GalleryFiltersBottomSlotProps$3 as GalleryFiltersBottomSlotProps, type GalleryFiltersTopSlotProps$3 as GalleryFiltersTopSlotProps, type GalleryProductsBottomSlotProps$3 as GalleryProductsBottomSlotProps, type GalleryProductsTopSlotProps$3 as GalleryProductsTopSlotProps, SlotIds$5 as SlotIds };
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* @pageName ProductPage
|
|
108
|
-
* @slotType site plugin
|
|
109
|
-
*/
|
|
110
|
-
type CheckoutHeaderProps$1 = {
|
|
111
|
-
checkoutId: string;
|
|
112
|
-
stepId: CheckoutStepId$1;
|
|
113
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
114
|
-
};
|
|
115
|
-
/** @internal */
|
|
116
|
-
type CheckoutStepId$1 = 'contact-details' | 'delivery-method' | 'payment-and-place-order';
|
|
117
|
-
/**
|
|
118
|
-
* @pageName ProductPage
|
|
119
|
-
* @slotType site plugin
|
|
120
|
-
*/
|
|
121
|
-
type ProductPageAdditionalButtonsSlotProps = {
|
|
122
|
-
productId: string;
|
|
123
|
-
};
|
|
124
|
-
/**
|
|
125
|
-
* @pageName ProductPage
|
|
126
|
-
* @slotType site plugin
|
|
127
|
-
*/
|
|
128
|
-
type ProductPageDetails5SlotProps = {
|
|
129
|
-
productId: string;
|
|
130
|
-
};
|
|
131
|
-
/**
|
|
132
|
-
* @pageName ProductPage
|
|
133
|
-
* @slotType site plugin
|
|
134
|
-
*/
|
|
135
|
-
type ProductPageDetails7SlotProps = {
|
|
136
|
-
productId: string;
|
|
137
|
-
};
|
|
138
|
-
/**
|
|
139
|
-
* @pageName ProductPage
|
|
140
|
-
* @slotType site plugin
|
|
141
|
-
*/
|
|
142
|
-
type ProductPageDetails2SlotProps = {
|
|
143
|
-
productId: string;
|
|
144
|
-
};
|
|
145
|
-
/**
|
|
146
|
-
* @pageName ProductPage
|
|
147
|
-
* @slotType site plugin
|
|
148
|
-
*/
|
|
149
|
-
type ProductPageDetails9SlotProps = {
|
|
150
|
-
productId: string;
|
|
151
|
-
};
|
|
152
|
-
/**
|
|
153
|
-
* @pageName ProductPage
|
|
154
|
-
* @slotType site plugin
|
|
155
|
-
*/
|
|
156
|
-
type ProductPageMedia1SlotProps = {
|
|
157
|
-
productId: string;
|
|
158
|
-
};
|
|
159
|
-
/**
|
|
160
|
-
* @pageName ProductPage
|
|
161
|
-
* @slotType site plugin
|
|
162
|
-
*/
|
|
163
|
-
type ProductPageDetails6SlotProps = {
|
|
164
|
-
productId: string;
|
|
165
|
-
};
|
|
166
|
-
/**
|
|
167
|
-
* @pageName ProductPage
|
|
168
|
-
* @slotType site plugin
|
|
169
|
-
*/
|
|
170
|
-
type ProductPageDetails4SlotProps = {
|
|
171
|
-
productId: string;
|
|
172
|
-
};
|
|
173
|
-
/**
|
|
174
|
-
* @pageName ProductPage
|
|
175
|
-
* @slotType site plugin
|
|
176
|
-
*/
|
|
177
|
-
type ProductPageTopSlotProps = {
|
|
178
|
-
productId: string;
|
|
179
|
-
};
|
|
180
|
-
/**
|
|
181
|
-
* @pageName ProductPage
|
|
182
|
-
* @slotType site plugin
|
|
183
|
-
*/
|
|
184
|
-
type ProductPageDetails1SlotProps = {
|
|
185
|
-
productId: string;
|
|
186
|
-
};
|
|
187
|
-
/**
|
|
188
|
-
* @pageName ProductPage
|
|
189
|
-
* @slotType site plugin
|
|
190
|
-
*/
|
|
191
|
-
type ProductPageDetails3SlotProps = {
|
|
192
|
-
productId: string;
|
|
193
|
-
};
|
|
194
|
-
/**
|
|
195
|
-
* @pageName ProductPage
|
|
196
|
-
* @slotType site plugin
|
|
197
|
-
*/
|
|
198
|
-
type ProductPageDetails8SlotProps = {
|
|
199
|
-
productId: string;
|
|
200
|
-
};
|
|
201
|
-
/**
|
|
202
|
-
* @pageName ProductPage
|
|
203
|
-
* @slotType site plugin
|
|
204
|
-
*/
|
|
205
|
-
type ProductPageBottomSlotProps = {
|
|
206
|
-
productId: string;
|
|
207
|
-
};
|
|
208
|
-
declare const SlotIds$4: {
|
|
209
|
-
checkoutHeader: string;
|
|
210
|
-
productPageAdditionalButtons: string;
|
|
211
|
-
productPageDetails5: string;
|
|
212
|
-
productPageDetails7: string;
|
|
213
|
-
productPageDetails2: string;
|
|
214
|
-
productPageDetails9: string;
|
|
215
|
-
productPageMedia1: string;
|
|
216
|
-
productPageDetails6: string;
|
|
217
|
-
productPageDetails4: string;
|
|
218
|
-
productPageTop: string;
|
|
219
|
-
productPageDetails1: string;
|
|
220
|
-
productPageDetails3: string;
|
|
221
|
-
productPageDetails8: string;
|
|
222
|
-
productPageBottom: string;
|
|
223
|
-
};
|
|
224
|
-
|
|
225
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageAdditionalButtonsSlotProps = ProductPageAdditionalButtonsSlotProps;
|
|
226
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageBottomSlotProps = ProductPageBottomSlotProps;
|
|
227
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails1SlotProps = ProductPageDetails1SlotProps;
|
|
228
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails2SlotProps = ProductPageDetails2SlotProps;
|
|
229
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails3SlotProps = ProductPageDetails3SlotProps;
|
|
230
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails4SlotProps = ProductPageDetails4SlotProps;
|
|
231
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails5SlotProps = ProductPageDetails5SlotProps;
|
|
232
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails6SlotProps = ProductPageDetails6SlotProps;
|
|
233
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails7SlotProps = ProductPageDetails7SlotProps;
|
|
234
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails8SlotProps = ProductPageDetails8SlotProps;
|
|
235
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails9SlotProps = ProductPageDetails9SlotProps;
|
|
236
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageMedia1SlotProps = ProductPageMedia1SlotProps;
|
|
237
|
-
type _13a94f0927663c404a328edb5acdd8bc_ProductPageTopSlotProps = ProductPageTopSlotProps;
|
|
238
|
-
declare namespace _13a94f0927663c404a328edb5acdd8bc {
|
|
239
|
-
export { type CheckoutHeaderProps$1 as CheckoutHeaderProps, type CheckoutStepId$1 as CheckoutStepId, type _13a94f0927663c404a328edb5acdd8bc_ProductPageAdditionalButtonsSlotProps as ProductPageAdditionalButtonsSlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageBottomSlotProps as ProductPageBottomSlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails1SlotProps as ProductPageDetails1SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails2SlotProps as ProductPageDetails2SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails3SlotProps as ProductPageDetails3SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails4SlotProps as ProductPageDetails4SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails5SlotProps as ProductPageDetails5SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails6SlotProps as ProductPageDetails6SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails7SlotProps as ProductPageDetails7SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails8SlotProps as ProductPageDetails8SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageDetails9SlotProps as ProductPageDetails9SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageMedia1SlotProps as ProductPageMedia1SlotProps, type _13a94f0927663c404a328edb5acdd8bc_ProductPageTopSlotProps as ProductPageTopSlotProps, SlotIds$4 as SlotIds };
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
/**
|
|
243
|
-
* @pageName Checkout
|
|
244
|
-
* @slotType site plugin
|
|
245
|
-
*/
|
|
246
|
-
type CheckoutPoliciesAfter1Props = {
|
|
247
|
-
checkoutId: string;
|
|
248
|
-
stepId: CheckoutStepId;
|
|
249
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
250
|
-
};
|
|
251
|
-
/** @internal */
|
|
252
|
-
type CheckoutStepId = 'contact-details' | 'delivery-method' | 'payment-and-place-order';
|
|
253
|
-
/**
|
|
254
|
-
* @pageName Checkout
|
|
255
|
-
* @slotType site plugin
|
|
256
|
-
*/
|
|
257
|
-
type CheckoutSummaryLineItemsAfter2Props = {
|
|
258
|
-
checkoutId: string;
|
|
259
|
-
stepId: CheckoutStepId;
|
|
260
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
261
|
-
};
|
|
262
|
-
/**
|
|
263
|
-
* @pageName Checkout
|
|
264
|
-
* @slotType site plugin
|
|
265
|
-
*/
|
|
266
|
-
type CheckoutSummaryAfterProps = {
|
|
267
|
-
checkoutId: string;
|
|
268
|
-
stepId: CheckoutStepId;
|
|
269
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
270
|
-
};
|
|
271
|
-
/**
|
|
272
|
-
* @pageName Checkout
|
|
273
|
-
* @slotType site plugin
|
|
274
|
-
*/
|
|
275
|
-
type CheckoutTopProps = {
|
|
276
|
-
checkoutId: string;
|
|
277
|
-
stepId: CheckoutStepId;
|
|
278
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
279
|
-
};
|
|
280
|
-
/**
|
|
281
|
-
* @pageName Checkout
|
|
282
|
-
* @slotType site plugin
|
|
283
|
-
*/
|
|
284
|
-
type CheckoutSummaryTotalsBreakdownBeforeProps = {
|
|
285
|
-
checkoutId: string;
|
|
286
|
-
stepId: CheckoutStepId;
|
|
287
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
288
|
-
};
|
|
289
|
-
/**
|
|
290
|
-
* @pageName Checkout
|
|
291
|
-
* @slotType site plugin
|
|
292
|
-
*/
|
|
293
|
-
type CheckoutStepsBeforeProps = {
|
|
294
|
-
checkoutId: string;
|
|
295
|
-
stepId: CheckoutStepId;
|
|
296
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
297
|
-
};
|
|
298
|
-
/**
|
|
299
|
-
* @pageName Checkout
|
|
300
|
-
* @slotType site plugin
|
|
301
|
-
*/
|
|
302
|
-
type CheckoutSummaryBeforeProps = {
|
|
303
|
-
checkoutId: string;
|
|
304
|
-
stepId: CheckoutStepId;
|
|
305
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
306
|
-
};
|
|
307
|
-
/**
|
|
308
|
-
* @pageName Checkout
|
|
309
|
-
* @slotType site plugin
|
|
310
|
-
*/
|
|
311
|
-
type CheckoutSummaryLineItemsAfterProps = {
|
|
312
|
-
checkoutId: string;
|
|
313
|
-
stepId: CheckoutStepId;
|
|
314
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
315
|
-
};
|
|
316
|
-
/**
|
|
317
|
-
* @pageName Checkout
|
|
318
|
-
* @slotType site plugin
|
|
319
|
-
*/
|
|
320
|
-
type CheckoutHeaderProps = {
|
|
321
|
-
checkoutId: string;
|
|
322
|
-
stepId: CheckoutStepId;
|
|
323
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
324
|
-
};
|
|
325
|
-
/**
|
|
326
|
-
* @pageName Checkout
|
|
327
|
-
* @slotType site plugin
|
|
328
|
-
*/
|
|
329
|
-
type CheckoutAfterDeliveryOptionsProps = {
|
|
330
|
-
checkoutId: string;
|
|
331
|
-
onRefreshCheckout: (refreshCheckoutCallback: () => void) => void;
|
|
332
|
-
checkoutUpdatedDate: string;
|
|
333
|
-
selectedDeliveryOptionCarrierId: string;
|
|
334
|
-
selectedDeliveryOptionId: string;
|
|
335
|
-
disableContinueButton: (callback: (isDisabled: boolean) => void) => void;
|
|
336
|
-
deliveryStepState: 'open' | 'summary';
|
|
337
|
-
};
|
|
338
|
-
declare const SlotIds$3: {
|
|
339
|
-
checkoutPoliciesAfter1: string;
|
|
340
|
-
checkoutSummaryLineItemsAfter2: string;
|
|
341
|
-
checkoutSummaryAfter: string;
|
|
342
|
-
checkoutTop: string;
|
|
343
|
-
checkoutSummaryTotalsBreakdownBefore: string;
|
|
344
|
-
checkoutStepsBefore: string;
|
|
345
|
-
checkoutSummaryBefore: string;
|
|
346
|
-
checkoutSummaryLineItemsAfter: string;
|
|
347
|
-
checkoutHeader: string;
|
|
348
|
-
checkoutDeliveryStepOptionsAfter: string;
|
|
349
|
-
};
|
|
350
|
-
|
|
351
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutAfterDeliveryOptionsProps = CheckoutAfterDeliveryOptionsProps;
|
|
352
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutHeaderProps = CheckoutHeaderProps;
|
|
353
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutPoliciesAfter1Props = CheckoutPoliciesAfter1Props;
|
|
354
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutStepId = CheckoutStepId;
|
|
355
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutStepsBeforeProps = CheckoutStepsBeforeProps;
|
|
356
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryAfterProps = CheckoutSummaryAfterProps;
|
|
357
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryBeforeProps = CheckoutSummaryBeforeProps;
|
|
358
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryLineItemsAfter2Props = CheckoutSummaryLineItemsAfter2Props;
|
|
359
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryLineItemsAfterProps = CheckoutSummaryLineItemsAfterProps;
|
|
360
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryTotalsBreakdownBeforeProps = CheckoutSummaryTotalsBreakdownBeforeProps;
|
|
361
|
-
type _14fd59708072C2761246058b79e70c1a_CheckoutTopProps = CheckoutTopProps;
|
|
362
|
-
declare namespace _14fd59708072C2761246058b79e70c1a {
|
|
363
|
-
export { type _14fd59708072C2761246058b79e70c1a_CheckoutAfterDeliveryOptionsProps as CheckoutAfterDeliveryOptionsProps, type _14fd59708072C2761246058b79e70c1a_CheckoutHeaderProps as CheckoutHeaderProps, type _14fd59708072C2761246058b79e70c1a_CheckoutPoliciesAfter1Props as CheckoutPoliciesAfter1Props, type _14fd59708072C2761246058b79e70c1a_CheckoutStepId as CheckoutStepId, type _14fd59708072C2761246058b79e70c1a_CheckoutStepsBeforeProps as CheckoutStepsBeforeProps, type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryAfterProps as CheckoutSummaryAfterProps, type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryBeforeProps as CheckoutSummaryBeforeProps, type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryLineItemsAfter2Props as CheckoutSummaryLineItemsAfter2Props, type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryLineItemsAfterProps as CheckoutSummaryLineItemsAfterProps, type _14fd59708072C2761246058b79e70c1a_CheckoutSummaryTotalsBreakdownBeforeProps as CheckoutSummaryTotalsBreakdownBeforeProps, type _14fd59708072C2761246058b79e70c1a_CheckoutTopProps as CheckoutTopProps, SlotIds$3 as SlotIds };
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
/**
|
|
367
|
-
* @pageName SearchResultsPageGallery
|
|
368
|
-
* @slotType site plugin
|
|
369
|
-
*/
|
|
370
|
-
type GalleryFiltersTopSlotProps$2 = {
|
|
371
|
-
categoryId: string;
|
|
372
|
-
};
|
|
373
|
-
/**
|
|
374
|
-
* @pageName SearchResultsPageGallery
|
|
375
|
-
* @slotType site plugin
|
|
376
|
-
*/
|
|
377
|
-
type GalleryFiltersBottomSlotProps$2 = {
|
|
378
|
-
categoryId: string;
|
|
379
|
-
};
|
|
380
|
-
/**
|
|
381
|
-
* @pageName SearchResultsPageGallery
|
|
382
|
-
* @slotType site plugin
|
|
383
|
-
*/
|
|
384
|
-
type GalleryProductsTopSlotProps$2 = {
|
|
385
|
-
categoryId: string;
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* @pageName SearchResultsPageGallery
|
|
389
|
-
* @slotType site plugin
|
|
390
|
-
*/
|
|
391
|
-
type GalleryProductsBottomSlotProps$2 = {
|
|
392
|
-
categoryId: string;
|
|
393
|
-
};
|
|
394
|
-
declare const SlotIds$2: {
|
|
395
|
-
galleryFiltersTop: string;
|
|
396
|
-
galleryFiltersBottom: string;
|
|
397
|
-
galleryProductsTop: string;
|
|
398
|
-
galleryProductsBottom: string;
|
|
399
|
-
};
|
|
400
|
-
|
|
401
|
-
declare namespace abcd87feC51f4538848d2902a2f50d2d {
|
|
402
|
-
export { type GalleryFiltersBottomSlotProps$2 as GalleryFiltersBottomSlotProps, type GalleryFiltersTopSlotProps$2 as GalleryFiltersTopSlotProps, type GalleryProductsBottomSlotProps$2 as GalleryProductsBottomSlotProps, type GalleryProductsTopSlotProps$2 as GalleryProductsTopSlotProps, SlotIds$2 as SlotIds };
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
/**
|
|
406
|
-
* @pageName Shop
|
|
407
|
-
* @slotType site plugin
|
|
408
|
-
*/
|
|
409
|
-
type GalleryFiltersTopSlotProps$1 = {
|
|
410
|
-
categoryId: string;
|
|
411
|
-
};
|
|
412
|
-
/**
|
|
413
|
-
* @pageName Shop
|
|
414
|
-
* @slotType site plugin
|
|
415
|
-
*/
|
|
416
|
-
type GalleryFiltersBottomSlotProps$1 = {
|
|
417
|
-
categoryId: string;
|
|
418
|
-
};
|
|
419
|
-
/**
|
|
420
|
-
* @pageName Shop
|
|
421
|
-
* @slotType site plugin
|
|
422
|
-
*/
|
|
423
|
-
type GalleryProductsTopSlotProps$1 = {
|
|
424
|
-
categoryId: string;
|
|
425
|
-
};
|
|
426
|
-
/**
|
|
427
|
-
* @pageName Shop
|
|
428
|
-
* @slotType site plugin
|
|
429
|
-
*/
|
|
430
|
-
type GalleryProductsBottomSlotProps$1 = {
|
|
431
|
-
categoryId: string;
|
|
432
|
-
};
|
|
433
|
-
declare const SlotIds$1: {
|
|
434
|
-
galleryFiltersTop: string;
|
|
435
|
-
galleryFiltersBottom: string;
|
|
436
|
-
galleryProductsTop: string;
|
|
437
|
-
galleryProductsBottom: string;
|
|
438
|
-
};
|
|
439
|
-
|
|
440
|
-
declare namespace _1380bba0253eA800A23588821cf3f8a4 {
|
|
441
|
-
export { type GalleryFiltersBottomSlotProps$1 as GalleryFiltersBottomSlotProps, type GalleryFiltersTopSlotProps$1 as GalleryFiltersTopSlotProps, type GalleryProductsBottomSlotProps$1 as GalleryProductsBottomSlotProps, type GalleryProductsTopSlotProps$1 as GalleryProductsTopSlotProps, SlotIds$1 as SlotIds };
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
/**
|
|
445
|
-
* @pageName SearchModalGallery
|
|
446
|
-
* @slotType site plugin
|
|
447
|
-
*/
|
|
448
|
-
type GalleryFiltersTopSlotProps = {
|
|
449
|
-
categoryId: string;
|
|
450
|
-
};
|
|
451
|
-
/**
|
|
452
|
-
* @pageName SearchModalGallery
|
|
453
|
-
* @slotType site plugin
|
|
454
|
-
*/
|
|
455
|
-
type GalleryFiltersBottomSlotProps = {
|
|
456
|
-
categoryId: string;
|
|
457
|
-
};
|
|
458
|
-
/**
|
|
459
|
-
* @pageName SearchModalGallery
|
|
460
|
-
* @slotType site plugin
|
|
461
|
-
*/
|
|
462
|
-
type GalleryProductsTopSlotProps = {
|
|
463
|
-
categoryId: string;
|
|
464
|
-
};
|
|
465
|
-
/**
|
|
466
|
-
* @pageName SearchModalGallery
|
|
467
|
-
* @slotType site plugin
|
|
468
|
-
*/
|
|
469
|
-
type GalleryProductsBottomSlotProps = {
|
|
470
|
-
categoryId: string;
|
|
471
|
-
};
|
|
472
|
-
declare const SlotIds: {
|
|
473
|
-
galleryFiltersTop: string;
|
|
474
|
-
galleryFiltersBottom: string;
|
|
475
|
-
galleryProductsTop: string;
|
|
476
|
-
galleryProductsBottom: string;
|
|
477
|
-
};
|
|
478
|
-
|
|
479
|
-
type _244576c9D85649b9Af14216071924e3b_GalleryFiltersBottomSlotProps = GalleryFiltersBottomSlotProps;
|
|
480
|
-
type _244576c9D85649b9Af14216071924e3b_GalleryFiltersTopSlotProps = GalleryFiltersTopSlotProps;
|
|
481
|
-
type _244576c9D85649b9Af14216071924e3b_GalleryProductsBottomSlotProps = GalleryProductsBottomSlotProps;
|
|
482
|
-
type _244576c9D85649b9Af14216071924e3b_GalleryProductsTopSlotProps = GalleryProductsTopSlotProps;
|
|
483
|
-
declare const _244576c9D85649b9Af14216071924e3b_SlotIds: typeof SlotIds;
|
|
484
|
-
declare namespace _244576c9D85649b9Af14216071924e3b {
|
|
485
|
-
export { type _244576c9D85649b9Af14216071924e3b_GalleryFiltersBottomSlotProps as GalleryFiltersBottomSlotProps, type _244576c9D85649b9Af14216071924e3b_GalleryFiltersTopSlotProps as GalleryFiltersTopSlotProps, type _244576c9D85649b9Af14216071924e3b_GalleryProductsBottomSlotProps as GalleryProductsBottomSlotProps, type _244576c9D85649b9Af14216071924e3b_GalleryProductsTopSlotProps as GalleryProductsTopSlotProps, _244576c9D85649b9Af14216071924e3b_SlotIds as SlotIds };
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
declare namespace editorPagesPluginProps {
|
|
489
|
-
export { bda15dc1816d4ff38dcb1172d5343cce as CategoryPage, _14fd59708072C2761246058b79e70c1a as Checkout, _13afb09484f9739f44fd78d036adb028 as GridGallery, _13a94f0927663c404a328edb5acdd8bc as ProductPage, _244576c9D85649b9Af14216071924e3b as SearchModalGallery, abcd87feC51f4538848d2902a2f50d2d as SearchResultsPageGallery, _1380bba0253eA800A23588821cf3f8a4 as Shop };
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
declare namespace site {
|
|
493
|
-
export { editorPagesPluginProps as plugins };
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
export { editorPagesPluginProps as e, site as s };
|