@websolutespa/bom-mixer-models 0.0.1
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/.turbo/turbo-build.log +17 -0
- package/CHANGELOG.md +7 -0
- package/dist/index.d.ts +409 -0
- package/dist/index.js +2574 -0
- package/dist/index.mjs +2519 -0
- package/package.json +54 -0
- package/src/cart/cart.ts +31 -0
- package/src/category/category.service.ts +43 -0
- package/src/category/category.ts +26 -0
- package/src/checkout/checkout.service.ts +351 -0
- package/src/checkout/checkout.ts +65 -0
- package/src/country/country.service.ts +9 -0
- package/src/feature_type/feature_type.service.ts +10 -0
- package/src/feature_type/feature_type.ts +13 -0
- package/src/index.ts +33 -0
- package/src/label/label.service.ts +24 -0
- package/src/label/label.ts +7 -0
- package/src/layout/layout.service.ts +51 -0
- package/src/layout/layout.ts +27 -0
- package/src/link/link.ts +7 -0
- package/src/list/list.service.ts +19 -0
- package/src/list/list.ts +11 -0
- package/src/locale/locale.service.ts +11 -0
- package/src/locale/locale.ts +9 -0
- package/src/market/market.service.ts +10 -0
- package/src/market/market.ts +11 -0
- package/src/media/media.ts +14 -0
- package/src/menu/menu.service.ts +22 -0
- package/src/menu/menu.ts +11 -0
- package/src/order/order.service.ts +29 -0
- package/src/order/order.ts +31 -0
- package/src/page/page.service.ts +132 -0
- package/src/page/page.ts +53 -0
- package/src/province/province.service.ts +9 -0
- package/src/region/region.service.ts +9 -0
- package/src/route/route.interceptor.ts +30 -0
- package/src/route/route.service.ts +203 -0
- package/src/route/route.ts +29 -0
- package/src/store/store.ts +24 -0
- package/src/user/user.ts +57 -0
- package/tsconfig.json +16 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
|
|
2
|
+
> @websolutespa/bom-mixer-models@0.0.1 build
|
|
3
|
+
> tsup ./src/index.ts --format esm,cjs --dts --external react
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: ./src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v6.6.3
|
|
8
|
+
[34mCLI[39m Target: es2020
|
|
9
|
+
[34mESM[39m Build start
|
|
10
|
+
[34mCJS[39m Build start
|
|
11
|
+
[32mCJS[39m [1mdist\index.js [22m[32m97.35 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 219ms
|
|
13
|
+
[32mESM[39m [1mdist\index.mjs [22m[32m94.70 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 220ms
|
|
15
|
+
[34mDTS[39m Build start
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 7745ms
|
|
17
|
+
[32mDTS[39m [1mdist\index.d.ts [22m[32m12.45 KB[39m
|
package/CHANGELOG.md
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
import { ISchema, IEquatable, IEntity, ILocalizedString, QueryParams, IOption, INamedEntity, ValueOf, IQuerable } from '@websolutespa/bom-mixer-core';
|
|
2
|
+
import { NextRequest, NextFetchEvent, NextResponse } from 'next/server';
|
|
3
|
+
|
|
4
|
+
type IMediaType = 'image' | 'video' | string;
|
|
5
|
+
type IMedia = {
|
|
6
|
+
src: string;
|
|
7
|
+
type: IMediaType;
|
|
8
|
+
alt?: string;
|
|
9
|
+
title?: string;
|
|
10
|
+
abstract?: string;
|
|
11
|
+
width?: number;
|
|
12
|
+
height?: number;
|
|
13
|
+
url?: string;
|
|
14
|
+
media?: IMedia;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
type ICartItem = ISchema & {
|
|
18
|
+
id: IEquatable;
|
|
19
|
+
schema: string;
|
|
20
|
+
media: IMedia;
|
|
21
|
+
title: string;
|
|
22
|
+
abstract?: string;
|
|
23
|
+
href: string;
|
|
24
|
+
price: number;
|
|
25
|
+
qty: number;
|
|
26
|
+
};
|
|
27
|
+
type ICartAddItem = Omit<ICartItem, 'qty'>;
|
|
28
|
+
|
|
29
|
+
type ICategory = IEntity & {
|
|
30
|
+
id: IEquatable;
|
|
31
|
+
slug?: ILocalizedString | string;
|
|
32
|
+
title?: ILocalizedString | string;
|
|
33
|
+
media?: IMedia;
|
|
34
|
+
schema?: string;
|
|
35
|
+
page?: IEquatable;
|
|
36
|
+
category?: IEquatable | ICategory;
|
|
37
|
+
};
|
|
38
|
+
type ICategoryItem = ICategory & {
|
|
39
|
+
items: ICategory[];
|
|
40
|
+
};
|
|
41
|
+
type ICategorized = {
|
|
42
|
+
id: IEquatable;
|
|
43
|
+
schema?: string;
|
|
44
|
+
category: IEquatable | ICategory;
|
|
45
|
+
isDefault?: boolean;
|
|
46
|
+
slug?: ILocalizedString | string;
|
|
47
|
+
title?: ILocalizedString | string;
|
|
48
|
+
media?: IMedia;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
declare function getCategories(params?: QueryParams): Promise<ICategory[]>;
|
|
52
|
+
declare function getSegments(item: ICategorized, params?: QueryParams): Promise<ICategory[]>;
|
|
53
|
+
declare function getRouteSegments(schema: string | undefined, item: ICategorized, categories: ICategory[]): ICategory[];
|
|
54
|
+
|
|
55
|
+
type IUserLogin = {
|
|
56
|
+
email: string;
|
|
57
|
+
password: string;
|
|
58
|
+
rememberMe: boolean;
|
|
59
|
+
};
|
|
60
|
+
type IUserRegister = {
|
|
61
|
+
firstName: string;
|
|
62
|
+
lastName: string;
|
|
63
|
+
email: string;
|
|
64
|
+
password: string;
|
|
65
|
+
confirmPassword: string;
|
|
66
|
+
privacy: boolean;
|
|
67
|
+
};
|
|
68
|
+
type IUserForgot = {
|
|
69
|
+
email: string;
|
|
70
|
+
};
|
|
71
|
+
type IUserChangePassword = {
|
|
72
|
+
oldPassword: string;
|
|
73
|
+
newPassword: string;
|
|
74
|
+
confirmNewPassword: string;
|
|
75
|
+
};
|
|
76
|
+
type IUser = ISchema & {
|
|
77
|
+
id: IEquatable;
|
|
78
|
+
firstName: string;
|
|
79
|
+
lastName: string;
|
|
80
|
+
email: string;
|
|
81
|
+
};
|
|
82
|
+
type IAddress = {
|
|
83
|
+
name: string;
|
|
84
|
+
firstName: string;
|
|
85
|
+
lastName: string;
|
|
86
|
+
address: string;
|
|
87
|
+
streetNumber: string;
|
|
88
|
+
zipCode: string;
|
|
89
|
+
city: string;
|
|
90
|
+
country: IOption;
|
|
91
|
+
region?: IOption;
|
|
92
|
+
province?: IOption;
|
|
93
|
+
email: string;
|
|
94
|
+
phoneNumber: string;
|
|
95
|
+
};
|
|
96
|
+
type IAddressOptions = {
|
|
97
|
+
countries: IOption[];
|
|
98
|
+
regions: IOption[];
|
|
99
|
+
provinces: IOption[];
|
|
100
|
+
};
|
|
101
|
+
type IUserAddress = Omit<IAddress, 'name'>;
|
|
102
|
+
type ICompanyAddress = Omit<IAddress, 'firstName' | 'lastName'>;
|
|
103
|
+
|
|
104
|
+
type ICheckout = {
|
|
105
|
+
items: ICheckoutItem[];
|
|
106
|
+
user?: Partial<IUser>;
|
|
107
|
+
shippingAddress: IUserAddress;
|
|
108
|
+
hasInvoice?: boolean;
|
|
109
|
+
hasBilling?: boolean;
|
|
110
|
+
billingAddress?: IUserAddress;
|
|
111
|
+
delivery: ICheckoutDelivery;
|
|
112
|
+
store: ICheckoutStore;
|
|
113
|
+
discounts: ICheckoutDiscount[];
|
|
114
|
+
payment: ICheckoutPayment;
|
|
115
|
+
subTotal: number;
|
|
116
|
+
subTotalFull: number;
|
|
117
|
+
taxes: number;
|
|
118
|
+
total: number;
|
|
119
|
+
};
|
|
120
|
+
type ICheckoutPartial = Partial<ICheckout>;
|
|
121
|
+
type ICheckoutItem = ICartItem & {
|
|
122
|
+
fullPrice: number;
|
|
123
|
+
};
|
|
124
|
+
type ICheckoutInfo = {
|
|
125
|
+
user?: Partial<IUser>;
|
|
126
|
+
shippingAddress: IUserAddress;
|
|
127
|
+
hasInvoice?: boolean;
|
|
128
|
+
hasBilling?: boolean;
|
|
129
|
+
billingAddress?: IUserAddress;
|
|
130
|
+
};
|
|
131
|
+
type ICheckoutDelivery = IOption & {
|
|
132
|
+
abstract: string;
|
|
133
|
+
price: number;
|
|
134
|
+
fullPrice: number;
|
|
135
|
+
};
|
|
136
|
+
type ICheckoutStore = Partial<ICompanyAddress> & IOption & {
|
|
137
|
+
category?: IOption;
|
|
138
|
+
timetable?: string[];
|
|
139
|
+
position?: {
|
|
140
|
+
latitude: number;
|
|
141
|
+
longitude: number;
|
|
142
|
+
};
|
|
143
|
+
distance?: number;
|
|
144
|
+
rank?: number;
|
|
145
|
+
};
|
|
146
|
+
type ICheckoutDiscount = IOption & {
|
|
147
|
+
abstract?: string;
|
|
148
|
+
price: number;
|
|
149
|
+
validFrom: Date | string;
|
|
150
|
+
validTo: Date | string;
|
|
151
|
+
};
|
|
152
|
+
type ICheckoutPayment = IOption & {
|
|
153
|
+
abstract?: string;
|
|
154
|
+
media?: IMedia;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
declare function getItems(items: ICartItem[], market: string, locale: string, user?: IUser): Promise<ICheckoutItem[]>;
|
|
158
|
+
declare function getInfo(checkout: ICheckoutPartial, market: string, locale: string): Promise<IAddressOptions>;
|
|
159
|
+
declare function getDeliveries(checkout: ICheckoutPartial, market: string, locale: string): Promise<ICheckoutDelivery[]>;
|
|
160
|
+
declare function getStores(checkout: ICheckoutPartial, market: string, locale: string): Promise<ICheckoutStore[]>;
|
|
161
|
+
declare function getPayments(checkout: ICheckoutPartial, market: string, locale: string): Promise<ICheckoutPayment[]>;
|
|
162
|
+
declare function updateCheckout(checkout: ICheckoutPartial, action: string, market: string, locale: string): Promise<ICheckoutPartial>;
|
|
163
|
+
declare function setDiscountCode(discountCode: string, checkout: ICheckoutPartial, market: string, locale: string): Promise<ICheckoutPartial>;
|
|
164
|
+
declare function getPayment(checkout: ICheckoutPartial, market: string, locale: string): Promise<{
|
|
165
|
+
redirectUrl: string;
|
|
166
|
+
}>;
|
|
167
|
+
|
|
168
|
+
declare function getCountries(locale?: string): Promise<INamedEntity[]>;
|
|
169
|
+
|
|
170
|
+
type IFeatureType = {
|
|
171
|
+
id: string;
|
|
172
|
+
schema?: string;
|
|
173
|
+
title: string;
|
|
174
|
+
mode: string;
|
|
175
|
+
features?: {
|
|
176
|
+
id: IEquatable;
|
|
177
|
+
title: string;
|
|
178
|
+
[key: string]: unknown;
|
|
179
|
+
}[];
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
declare function getFeatureTypes(params?: QueryParams): Promise<IFeatureType[]>;
|
|
183
|
+
|
|
184
|
+
type ILabel = IEntity & {
|
|
185
|
+
id: IEquatable;
|
|
186
|
+
text?: string | ILocalizedString;
|
|
187
|
+
};
|
|
188
|
+
|
|
189
|
+
declare function getLabels(params?: QueryParams): Promise<ILabel[]>;
|
|
190
|
+
declare function resolveLabel(labels: ILabel[], id: string): string;
|
|
191
|
+
|
|
192
|
+
type ILocale = IEntity & {
|
|
193
|
+
id: string;
|
|
194
|
+
title?: string;
|
|
195
|
+
isActive?: boolean;
|
|
196
|
+
isDefault?: boolean;
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
type IMarket = IEntity & {
|
|
200
|
+
id: string;
|
|
201
|
+
title?: string;
|
|
202
|
+
isActive?: boolean;
|
|
203
|
+
isDefault?: boolean;
|
|
204
|
+
countries?: string[];
|
|
205
|
+
languages?: string[];
|
|
206
|
+
defaultLanguage?: string;
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
type IRoute = {
|
|
210
|
+
id: string;
|
|
211
|
+
market: string;
|
|
212
|
+
locale: string;
|
|
213
|
+
category: string;
|
|
214
|
+
page: IEquatable;
|
|
215
|
+
schema: string;
|
|
216
|
+
template?: string;
|
|
217
|
+
};
|
|
218
|
+
type IRouteLink = {
|
|
219
|
+
id: IEquatable;
|
|
220
|
+
href: string;
|
|
221
|
+
title: string;
|
|
222
|
+
items?: IRouteLink[];
|
|
223
|
+
media?: IMedia;
|
|
224
|
+
};
|
|
225
|
+
type IRouteParams = {
|
|
226
|
+
id: IEquatable;
|
|
227
|
+
market: string;
|
|
228
|
+
locale: string;
|
|
229
|
+
[key: string]: any;
|
|
230
|
+
};
|
|
231
|
+
type SchemaType = string;
|
|
232
|
+
|
|
233
|
+
type ILayout = {
|
|
234
|
+
market: string;
|
|
235
|
+
locale: string;
|
|
236
|
+
markets: IMarket[];
|
|
237
|
+
locales: ILocale[];
|
|
238
|
+
labels: ILabel[];
|
|
239
|
+
tree?: IRouteLink;
|
|
240
|
+
navs: {
|
|
241
|
+
[key: string]: IRouteLink[];
|
|
242
|
+
};
|
|
243
|
+
topLevelRoutes: {
|
|
244
|
+
[key: string]: IRouteLink;
|
|
245
|
+
};
|
|
246
|
+
topLevelHrefs: {
|
|
247
|
+
[key: string]: string;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
declare function getLayout(market: string, locale: string): Promise<ILayout>;
|
|
252
|
+
|
|
253
|
+
type ILink = {
|
|
254
|
+
href: string;
|
|
255
|
+
title: string;
|
|
256
|
+
type?: string;
|
|
257
|
+
secure?: boolean;
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
type IList = INamedEntity & {
|
|
261
|
+
key?: string;
|
|
262
|
+
listId?: IEquatable;
|
|
263
|
+
items?: IList[];
|
|
264
|
+
};
|
|
265
|
+
type IKeyedList = IList & {
|
|
266
|
+
key: string;
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
declare function getLists(locale?: string): Promise<IList[]>;
|
|
270
|
+
declare function getListByKeys(keys: string[], locale?: string): Promise<{
|
|
271
|
+
[key: string]: IList[];
|
|
272
|
+
}>;
|
|
273
|
+
|
|
274
|
+
declare function getLocales(params?: QueryParams): Promise<ILocale[]>;
|
|
275
|
+
|
|
276
|
+
declare function getMarkets(params?: QueryParams): Promise<IMarket[]>;
|
|
277
|
+
|
|
278
|
+
type IMenu = IEntity & {
|
|
279
|
+
id: IEquatable;
|
|
280
|
+
items: IMenuItem[];
|
|
281
|
+
};
|
|
282
|
+
type IMenuItem = {
|
|
283
|
+
name: string;
|
|
284
|
+
href: string;
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
declare function getMenu(id: IEquatable): Promise<IMenu | undefined>;
|
|
288
|
+
declare function getMenus(): Promise<IMenu[]>;
|
|
289
|
+
|
|
290
|
+
declare const IOrderStatus: {
|
|
291
|
+
Pending: string;
|
|
292
|
+
AwaitingPayment: string;
|
|
293
|
+
AwaitingFulfillment: string;
|
|
294
|
+
AwaitingShipment: string;
|
|
295
|
+
AwaitingPickup: string;
|
|
296
|
+
PartiallyShipped: string;
|
|
297
|
+
Completed: string;
|
|
298
|
+
Shipped: string;
|
|
299
|
+
Cancelled: string;
|
|
300
|
+
Declined: string;
|
|
301
|
+
Refunded: string;
|
|
302
|
+
Disputed: string;
|
|
303
|
+
ManualVerificationRequired: string;
|
|
304
|
+
PartiallyRefunded: string;
|
|
305
|
+
};
|
|
306
|
+
type IOrderStatusValue = ValueOf<typeof IOrderStatus>;
|
|
307
|
+
type IOrder = ICheckout & {
|
|
308
|
+
id: IEquatable;
|
|
309
|
+
date: Date | string;
|
|
310
|
+
status: IOrderStatusValue;
|
|
311
|
+
};
|
|
312
|
+
type IOrderDetail = IOrder & {
|
|
313
|
+
href: string;
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
declare function getOrders(market: string, locale: string): Promise<IOrderDetail[]>;
|
|
317
|
+
declare function getOrder(id: IEquatable, market: string, locale: string): Promise<IOrderDetail | null>;
|
|
318
|
+
|
|
319
|
+
type IMeta = {
|
|
320
|
+
title?: string;
|
|
321
|
+
description?: string;
|
|
322
|
+
keywords?: string;
|
|
323
|
+
robots?: string;
|
|
324
|
+
};
|
|
325
|
+
type IImage = {
|
|
326
|
+
url: string;
|
|
327
|
+
type?: string;
|
|
328
|
+
alt?: string;
|
|
329
|
+
title?: string;
|
|
330
|
+
caption?: string;
|
|
331
|
+
width?: number;
|
|
332
|
+
height?: number;
|
|
333
|
+
};
|
|
334
|
+
type IPage = IEntity & {
|
|
335
|
+
category: string | number | ICategory;
|
|
336
|
+
slug?: string;
|
|
337
|
+
href: string;
|
|
338
|
+
alternates: IRoute[];
|
|
339
|
+
breadcrumb: IRouteLink[];
|
|
340
|
+
parentRoute?: IRouteLink;
|
|
341
|
+
title?: string;
|
|
342
|
+
abstract?: string;
|
|
343
|
+
description?: string;
|
|
344
|
+
content?: string;
|
|
345
|
+
createdAt?: Date;
|
|
346
|
+
updatedAt?: Date;
|
|
347
|
+
meta?: IMeta;
|
|
348
|
+
media?: IMedia;
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
};
|
|
351
|
+
type PageProps<T extends IPage = IPage> = {
|
|
352
|
+
layout: ILayout;
|
|
353
|
+
page: T;
|
|
354
|
+
params: IRouteParams;
|
|
355
|
+
locales?: string[];
|
|
356
|
+
locale?: string;
|
|
357
|
+
defaultLocale?: string;
|
|
358
|
+
};
|
|
359
|
+
|
|
360
|
+
declare function findPage<T extends IPage>(schema: string, params?: QueryParams): Promise<T | undefined>;
|
|
361
|
+
declare function getPage<T extends IPage>(schema: string, id: IEquatable, market?: string, locale?: string): Promise<T | undefined>;
|
|
362
|
+
declare function getPageCategory<T extends IPage>(schema: string, page?: IPage, market?: string, locale?: string): Promise<T | undefined>;
|
|
363
|
+
declare function getErrorPageLayout(): Promise<{
|
|
364
|
+
layout: ILayout;
|
|
365
|
+
page: IPage;
|
|
366
|
+
}>;
|
|
367
|
+
|
|
368
|
+
declare function getProvinces(locale?: string): Promise<INamedEntity[]>;
|
|
369
|
+
|
|
370
|
+
declare function getRegions(locale?: string): Promise<INamedEntity[]>;
|
|
371
|
+
|
|
372
|
+
declare function routeInterceptor(request: NextRequest, next: NextFetchEvent): Promise<NextResponse | undefined>;
|
|
373
|
+
|
|
374
|
+
declare function getRoutes(params?: QueryParams): Promise<IRoute[]>;
|
|
375
|
+
declare function getRoute(id: string): Promise<IRoute | undefined>;
|
|
376
|
+
declare function getRoutesForSchemas(schemas: string[], market?: string, locale?: string): Promise<{
|
|
377
|
+
[key: string]: string;
|
|
378
|
+
}>;
|
|
379
|
+
declare function getRoutesForTemplates(templates: string[], market?: string, locale?: string): Promise<{
|
|
380
|
+
[key: string]: string;
|
|
381
|
+
}>;
|
|
382
|
+
declare function getStaticPathsForSchema(schema: string): Promise<StaticPath[]>;
|
|
383
|
+
declare function decorateHref(item: any, market?: string, locale?: string): Promise<any>;
|
|
384
|
+
declare function getBreadcrumbFromSegments(segments: ICategory[], market?: string, locale?: string): Promise<IRouteLink[]>;
|
|
385
|
+
declare function getRouteLinkTree(market?: string, locale?: string): Promise<IRouteLink | undefined>;
|
|
386
|
+
declare function categoryToRouteLink(routes: IRoute[], categories: ICategory[], category: ICategory, locale?: string): IRouteLink;
|
|
387
|
+
declare function resolveRoute(route: IRoute): string;
|
|
388
|
+
type StaticPath = {
|
|
389
|
+
params: {
|
|
390
|
+
[key: string]: string;
|
|
391
|
+
};
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
type IModelStore = {
|
|
395
|
+
category: IQuerable<ICategory>;
|
|
396
|
+
feature_type: IQuerable<IFeatureType>;
|
|
397
|
+
label: IQuerable<ILabel>;
|
|
398
|
+
list: IQuerable<IList>;
|
|
399
|
+
locale: IQuerable<ILocale>;
|
|
400
|
+
market: IQuerable<IMarket>;
|
|
401
|
+
menu: IQuerable<IMenu>;
|
|
402
|
+
route: IQuerable<IRoute>;
|
|
403
|
+
i18n_country: IQuerable<INamedEntity>;
|
|
404
|
+
i18n_province: IQuerable<INamedEntity>;
|
|
405
|
+
i18n_region: IQuerable<INamedEntity>;
|
|
406
|
+
[key: string]: IQuerable<IEntity>;
|
|
407
|
+
};
|
|
408
|
+
|
|
409
|
+
export { IAddress, IAddressOptions, ICartAddItem, ICartItem, ICategorized, ICategory, ICategoryItem, ICheckout, ICheckoutDelivery, ICheckoutDiscount, ICheckoutInfo, ICheckoutItem, ICheckoutPartial, ICheckoutPayment, ICheckoutStore, ICompanyAddress, IFeatureType, IImage, IKeyedList, ILabel, ILayout, ILink, IList, ILocale, IMarket, IMedia, IMediaType, IMenu, IMenuItem, IMeta, IModelStore, IOrder, IOrderDetail, IOrderStatus, IOrderStatusValue, IPage, IRoute, IRouteLink, IRouteParams, IUser, IUserAddress, IUserChangePassword, IUserForgot, IUserLogin, IUserRegister, PageProps, SchemaType, StaticPath, categoryToRouteLink, decorateHref, findPage, getBreadcrumbFromSegments, getCategories, getCountries, getDeliveries, getErrorPageLayout, getFeatureTypes, getInfo, getItems, getLabels, getLayout, getListByKeys, getLists, getLocales, getMarkets, getMenu, getMenus, getOrder, getOrders, getPage, getPageCategory, getPayment, getPayments, getProvinces, getRegions, getRoute, getRouteLinkTree, getRouteSegments, getRoutes, getRoutesForSchemas, getRoutesForTemplates, getSegments, getStaticPathsForSchema, getStores, resolveLabel, resolveRoute, routeInterceptor, setDiscountCode, updateCheckout };
|