@applite/js-sdk 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/dist/index.js ADDED
@@ -0,0 +1,665 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ AppCustomerModule: () => AppCustomerModule,
24
+ AppFinanceModule: () => AppFinanceModule,
25
+ AppInfoModule: () => AppInfoModule,
26
+ AppModule: () => AppModule,
27
+ AppStatsModule: () => AppStatsModule,
28
+ AppWelcomeItemModule: () => AppWelcomeItemModule,
29
+ AppliteUI: () => AppliteUI,
30
+ HttpClient: () => HttpClient,
31
+ MultiServiceModule: () => MultiServiceModule,
32
+ StoreBadgeModule: () => StoreBadgeModule,
33
+ StoreCategoryModule: () => StoreCategoryModule,
34
+ StoreCollectionModule: () => StoreCollectionModule,
35
+ StoreDiscountModule: () => StoreDiscountModule,
36
+ StoreModule: () => StoreModule,
37
+ StoreOptionModule: () => StoreOptionModule,
38
+ StoreOrderModule: () => StoreOrderModule,
39
+ StoreProductModule: () => StoreProductModule,
40
+ StoreSellerModule: () => StoreSellerModule,
41
+ StoreShippingModule: () => StoreShippingModule,
42
+ StoreTagModule: () => StoreTagModule,
43
+ StoreTaxModule: () => StoreTaxModule,
44
+ plateformTypes: () => plateformTypes,
45
+ sexes: () => sexes
46
+ });
47
+ module.exports = __toCommonJS(index_exports);
48
+
49
+ // src/http.ts
50
+ var HttpClient = class {
51
+ constructor(config = {}) {
52
+ this.baseUrl = config.baseUrl?.replace(/\/$/, "") ?? "";
53
+ this.headers = config.headers ?? {};
54
+ this.fetchImpl = config.fetchFn ?? fetch;
55
+ }
56
+ async post(path, body) {
57
+ const url = `${this.baseUrl}${path}`;
58
+ const response = await this.fetchImpl(url, {
59
+ method: "POST",
60
+ headers: {
61
+ "Content-Type": "application/json",
62
+ ...this.headers
63
+ },
64
+ body: JSON.stringify(body)
65
+ });
66
+ const contentType = response.headers.get("content-type") ?? "";
67
+ const isJson = contentType.includes("application/json");
68
+ const payload = isJson ? await response.json() : null;
69
+ if (!response.ok) {
70
+ const message = payload?.error ?? response.statusText;
71
+ throw new Error(`Request failed with status ${response.status}: ${message}`);
72
+ }
73
+ if (!payload || payload.success !== true) {
74
+ throw new Error(`Request failed: ${payload?.error ?? "Unknown error"}`);
75
+ }
76
+ return payload;
77
+ }
78
+ };
79
+
80
+ // src/modules/app/customer.ts
81
+ var plateformTypes = [
82
+ "STORE",
83
+ "TRANSPORT",
84
+ "RESTAURATION",
85
+ "MULTI_SERVICE",
86
+ "E_LEARNING",
87
+ "DUTICOTAC"
88
+ ];
89
+ var sexes = ["M", "F"];
90
+ var AppCustomerModule = class {
91
+ constructor(http) {
92
+ this.http = http;
93
+ }
94
+ async list(params) {
95
+ const { appId, apiKey, plateformType = [] } = params;
96
+ return this.http.post(
97
+ `/app/${appId}/customer/list`,
98
+ {
99
+ apiKey,
100
+ plateformType
101
+ }
102
+ );
103
+ }
104
+ async auth(params) {
105
+ const { appId, apiKey, fullname, email = null, telephone, plateform = null } = params;
106
+ return this.http.post(`/app/${appId}/customer/auth`, {
107
+ apiKey,
108
+ fullname,
109
+ email,
110
+ telephone,
111
+ plateform
112
+ });
113
+ }
114
+ async check(params) {
115
+ const { appId, apiKey, telephone, plateform = null } = params;
116
+ return this.http.post(`/app/${appId}/customer/check`, {
117
+ apiKey,
118
+ telephone,
119
+ plateform
120
+ });
121
+ }
122
+ async listFew(params) {
123
+ const { appId, apiKey, plateformType = [] } = params;
124
+ return this.http.post(
125
+ `/app/${appId}/customer/list/few`,
126
+ {
127
+ apiKey,
128
+ plateformType
129
+ }
130
+ );
131
+ }
132
+ async get(params) {
133
+ const { appId, apiKey, id } = params;
134
+ return this.http.post(
135
+ `/app/${appId}/customer/${id}`,
136
+ {
137
+ apiKey
138
+ }
139
+ );
140
+ }
141
+ async update(params) {
142
+ const { appId, apiKey, id, ...rest } = params;
143
+ return this.http.post(
144
+ `/app/${appId}/customer/${id}/update`,
145
+ {
146
+ apiKey,
147
+ ...rest
148
+ }
149
+ );
150
+ }
151
+ };
152
+
153
+ // src/modules/app/finance.ts
154
+ var AppFinanceModule = class {
155
+ constructor(http) {
156
+ this.http = http;
157
+ }
158
+ balance(params) {
159
+ const { appId, ...body } = params;
160
+ return this.http.post(`/app/${appId}/balance`, body);
161
+ }
162
+ listTransactions(params) {
163
+ const { appId, ...body } = params;
164
+ return this.http.post(`/app/${appId}/transaction/list`, body);
165
+ }
166
+ getTransaction(params) {
167
+ const { appId, id, ...body } = params;
168
+ return this.http.post(`/app/${appId}/transaction/${id}`, body);
169
+ }
170
+ withdraw(params) {
171
+ const { appId, ...body } = params;
172
+ return this.http.post(`/app/${appId}/withdraw`, body);
173
+ }
174
+ };
175
+
176
+ // src/modules/app/info.ts
177
+ var AppInfoModule = class {
178
+ constructor(http) {
179
+ this.http = http;
180
+ }
181
+ list(params) {
182
+ return this.http.post("/app/app/list", params);
183
+ }
184
+ create(params) {
185
+ return this.http.post("/app/app/create", params);
186
+ }
187
+ getBySlug(params) {
188
+ const { slug, ...body } = params;
189
+ return this.http.post(`/app/app/get/${slug}`, body);
190
+ }
191
+ getById(params) {
192
+ const { appId, ...body } = params;
193
+ return this.http.post(`/app/app/${appId}`, body);
194
+ }
195
+ };
196
+
197
+ // src/modules/app/stats.ts
198
+ var AppStatsModule = class {
199
+ constructor(http) {
200
+ this.http = http;
201
+ }
202
+ create(params) {
203
+ const { appId, ...body } = params;
204
+ return this.http.post(`/app/${appId}/stats/create`, body);
205
+ }
206
+ get(params) {
207
+ const { appId, ...body } = params;
208
+ return this.http.post(`/app/${appId}/stats/get`, body);
209
+ }
210
+ set(params) {
211
+ const { appId, ...body } = params;
212
+ return this.http.post(`/app/${appId}/stats/set`, body);
213
+ }
214
+ update(params) {
215
+ const { appId, id, ...body } = params;
216
+ return this.http.post(`/app/${appId}/stats/${id}/update`, body);
217
+ }
218
+ };
219
+
220
+ // src/modules/app/store.ts
221
+ var StoreBadgeModule = class {
222
+ constructor(http) {
223
+ this.http = http;
224
+ }
225
+ list(params) {
226
+ const { appId, ...body } = params;
227
+ return this.http.post(`/app/${appId}/store/badge/list`, body);
228
+ }
229
+ create(params) {
230
+ const { appId, ...body } = params;
231
+ return this.http.post(`/app/${appId}/store/badge/create`, body);
232
+ }
233
+ get(params) {
234
+ const { appId, id, ...body } = params;
235
+ return this.http.post(`/app/${appId}/store/badge/${id}`, body);
236
+ }
237
+ update(params) {
238
+ const { appId, id, ...body } = params;
239
+ return this.http.post(`/app/${appId}/store/badge/${id}/edit`, body);
240
+ }
241
+ delete(params) {
242
+ const { appId, id, ...body } = params;
243
+ return this.http.post(`/app/${appId}/store/badge/${id}/delete`, body);
244
+ }
245
+ };
246
+ var StoreCategoryModule = class {
247
+ constructor(http) {
248
+ this.http = http;
249
+ }
250
+ list(params) {
251
+ const { appId, ...body } = params;
252
+ return this.http.post(`/app/${appId}/store/category/list`, body);
253
+ }
254
+ create(params) {
255
+ const { appId, ...body } = params;
256
+ return this.http.post(`/app/${appId}/store/category/create`, body);
257
+ }
258
+ get(params) {
259
+ const { appId, id, ...body } = params;
260
+ return this.http.post(`/app/${appId}/store/category/${id}`, body);
261
+ }
262
+ update(params) {
263
+ const { appId, id, ...body } = params;
264
+ return this.http.post(`/app/${appId}/store/category/${id}/edit`, body);
265
+ }
266
+ delete(params) {
267
+ const { appId, id, ...body } = params;
268
+ return this.http.post(`/app/${appId}/store/category/${id}/delete`, body);
269
+ }
270
+ };
271
+ var StoreCollectionModule = class {
272
+ constructor(http) {
273
+ this.http = http;
274
+ }
275
+ list(params) {
276
+ const { appId, ...body } = params;
277
+ return this.http.post(`/app/${appId}/store/collection/list`, body);
278
+ }
279
+ create(params) {
280
+ const { appId, ...body } = params;
281
+ return this.http.post(`/app/${appId}/store/collection/create`, body);
282
+ }
283
+ get(params) {
284
+ const { appId, id, ...body } = params;
285
+ return this.http.post(`/app/${appId}/store/collection/${id}`, body);
286
+ }
287
+ update(params) {
288
+ const { appId, id, ...body } = params;
289
+ return this.http.post(`/app/${appId}/store/collection/${id}/edit`, body);
290
+ }
291
+ delete(params) {
292
+ const { appId, id, ...body } = params;
293
+ return this.http.post(`/app/${appId}/store/collection/${id}/delete`, body);
294
+ }
295
+ };
296
+ var StoreDiscountModule = class {
297
+ constructor(http) {
298
+ this.http = http;
299
+ }
300
+ list(params) {
301
+ const { appId, ...body } = params;
302
+ return this.http.post(`/app/${appId}/store/discount/list`, body);
303
+ }
304
+ create(params) {
305
+ const { appId, ...body } = params;
306
+ return this.http.post(`/app/${appId}/store/discount/create`, body);
307
+ }
308
+ get(params) {
309
+ const { appId, id, ...body } = params;
310
+ return this.http.post(`/app/${appId}/store/discount/${id}`, body);
311
+ }
312
+ update(params) {
313
+ const { appId, id, ...body } = params;
314
+ return this.http.post(`/app/${appId}/store/discount/${id}/edit`, body);
315
+ }
316
+ delete(params) {
317
+ const { appId, id, ...body } = params;
318
+ return this.http.post(`/app/${appId}/store/discount/${id}/delete`, body);
319
+ }
320
+ };
321
+ var StoreOptionModule = class {
322
+ constructor(http) {
323
+ this.http = http;
324
+ }
325
+ list(params) {
326
+ const { appId, ...body } = params;
327
+ return this.http.post(`/app/${appId}/store/option/list`, body);
328
+ }
329
+ create(params) {
330
+ const { appId, ...body } = params;
331
+ return this.http.post(`/app/${appId}/store/option/create`, body);
332
+ }
333
+ get(params) {
334
+ const { appId, id, ...body } = params;
335
+ return this.http.post(`/app/${appId}/store/option/${id}`, body);
336
+ }
337
+ update(params) {
338
+ const { appId, id, ...body } = params;
339
+ return this.http.post(`/app/${appId}/store/option/${id}/edit`, body);
340
+ }
341
+ delete(params) {
342
+ const { appId, id, ...body } = params;
343
+ return this.http.post(`/app/${appId}/store/option/${id}/delete`, body);
344
+ }
345
+ };
346
+ var StoreOrderModule = class {
347
+ constructor(http) {
348
+ this.http = http;
349
+ }
350
+ list(params) {
351
+ const { appId, ...body } = params;
352
+ return this.http.post(`/app/${appId}/store/order/list`, body);
353
+ }
354
+ create(params) {
355
+ const { appId, ...body } = params;
356
+ return this.http.post(`/app/${appId}/store/order/create`, body);
357
+ }
358
+ get(params) {
359
+ const { appId, id, ...body } = params;
360
+ return this.http.post(`/app/${appId}/store/order/${id}`, body);
361
+ }
362
+ update(params) {
363
+ const { appId, id, ...body } = params;
364
+ return this.http.post(`/app/${appId}/store/order/${id}/edit`, body);
365
+ }
366
+ delete(params) {
367
+ const { appId, id, ...body } = params;
368
+ return this.http.post(`/app/${appId}/store/order/${id}/delete`, body);
369
+ }
370
+ };
371
+ var StoreProductModule = class {
372
+ constructor(http) {
373
+ this.http = http;
374
+ }
375
+ list(params) {
376
+ const { appId, ...body } = params;
377
+ return this.http.post(`/app/${appId}/store/product/list`, body);
378
+ }
379
+ create(params) {
380
+ const { appId, ...body } = params;
381
+ return this.http.post(`/app/${appId}/store/product/create`, body);
382
+ }
383
+ get(params) {
384
+ const { appId, id, ...body } = params;
385
+ return this.http.post(`/app/${appId}/store/product/${id}`, body);
386
+ }
387
+ update(params) {
388
+ const { appId, id, ...body } = params;
389
+ return this.http.post(`/app/${appId}/store/product/${id}/edit`, body);
390
+ }
391
+ delete(params) {
392
+ const { appId, id, ...body } = params;
393
+ return this.http.post(`/app/${appId}/store/product/${id}/delete`, body);
394
+ }
395
+ };
396
+ var StoreSellerModule = class {
397
+ constructor(http) {
398
+ this.http = http;
399
+ }
400
+ list(params) {
401
+ const { appId, ...body } = params;
402
+ return this.http.post(`/app/${appId}/store/seller/list`, body);
403
+ }
404
+ create(params) {
405
+ const { appId, ...body } = params;
406
+ return this.http.post(`/app/${appId}/store/seller/create`, body);
407
+ }
408
+ get(params) {
409
+ const { appId, id, ...body } = params;
410
+ return this.http.post(`/app/${appId}/store/seller/${id}`, body);
411
+ }
412
+ update(params) {
413
+ const { appId, id, ...body } = params;
414
+ return this.http.post(`/app/${appId}/store/seller/${id}/edit`, body);
415
+ }
416
+ delete(params) {
417
+ const { appId, id, ...body } = params;
418
+ return this.http.post(`/app/${appId}/store/seller/${id}/delete`, body);
419
+ }
420
+ };
421
+ var StoreShippingModule = class {
422
+ constructor(http) {
423
+ this.http = http;
424
+ }
425
+ list(params) {
426
+ const { appId, ...body } = params;
427
+ return this.http.post(`/app/${appId}/store/shipping/list`, body);
428
+ }
429
+ create(params) {
430
+ const { appId, ...body } = params;
431
+ return this.http.post(`/app/${appId}/store/shipping/create`, body);
432
+ }
433
+ delete(params) {
434
+ const { appId, id, ...body } = params;
435
+ return this.http.post(`/app/${appId}/store/shipping/${id}/delete`, body);
436
+ }
437
+ };
438
+ var StoreTagModule = class {
439
+ constructor(http) {
440
+ this.http = http;
441
+ }
442
+ list(params) {
443
+ const { appId, ...body } = params;
444
+ return this.http.post(`/app/${appId}/store/tag/list`, body);
445
+ }
446
+ create(params) {
447
+ const { appId, ...body } = params;
448
+ return this.http.post(`/app/${appId}/store/tag/create`, body);
449
+ }
450
+ get(params) {
451
+ const { appId, id, ...body } = params;
452
+ return this.http.post(`/app/${appId}/store/tag/${id}`, body);
453
+ }
454
+ update(params) {
455
+ const { appId, id, ...body } = params;
456
+ return this.http.post(`/app/${appId}/store/tag/${id}/edit`, body);
457
+ }
458
+ delete(params) {
459
+ const { appId, id, ...body } = params;
460
+ return this.http.post(`/app/${appId}/store/tag/${id}/delete`, body);
461
+ }
462
+ };
463
+ var StoreTaxModule = class {
464
+ constructor(http) {
465
+ this.http = http;
466
+ }
467
+ list(params) {
468
+ const { appId, ...body } = params;
469
+ return this.http.post(`/app/${appId}/store/tax/list`, body);
470
+ }
471
+ create(params) {
472
+ const { appId, ...body } = params;
473
+ return this.http.post(`/app/${appId}/store/tax/create`, body);
474
+ }
475
+ get(params) {
476
+ const { appId, id, ...body } = params;
477
+ return this.http.post(`/app/${appId}/store/tax/${id}`, body);
478
+ }
479
+ update(params) {
480
+ const { appId, id, ...body } = params;
481
+ return this.http.post(`/app/${appId}/store/tax/${id}/edit`, body);
482
+ }
483
+ delete(params) {
484
+ const { appId, id, ...body } = params;
485
+ return this.http.post(`/app/${appId}/store/tax/${id}/delete`, body);
486
+ }
487
+ };
488
+ var StoreModule = class {
489
+ constructor(http) {
490
+ this.http = http;
491
+ this.badge = new StoreBadgeModule(http);
492
+ this.category = new StoreCategoryModule(http);
493
+ this.collection = new StoreCollectionModule(http);
494
+ this.discount = new StoreDiscountModule(http);
495
+ this.option = new StoreOptionModule(http);
496
+ this.order = new StoreOrderModule(http);
497
+ this.product = new StoreProductModule(http);
498
+ this.seller = new StoreSellerModule(http);
499
+ this.shipping = new StoreShippingModule(http);
500
+ this.tag = new StoreTagModule(http);
501
+ this.tax = new StoreTaxModule(http);
502
+ }
503
+ };
504
+
505
+ // src/modules/app/welcome-item.ts
506
+ var AppWelcomeItemModule = class {
507
+ constructor(http) {
508
+ this.http = http;
509
+ }
510
+ list(params) {
511
+ const { appId, ...body } = params;
512
+ return this.http.post(`/app/${appId}/welcome-item/list`, body);
513
+ }
514
+ create(params) {
515
+ const { appId, ...body } = params;
516
+ return this.http.post(`/app/${appId}/welcome-item/create`, body);
517
+ }
518
+ get(params) {
519
+ const { appId, id, ...body } = params;
520
+ return this.http.post(`/app/${appId}/welcome-item/${id}`, body);
521
+ }
522
+ update(params) {
523
+ const { appId, id, ...body } = params;
524
+ return this.http.post(`/app/${appId}/welcome-item/${id}/edit`, body);
525
+ }
526
+ delete(params) {
527
+ const { appId, id, ...body } = params;
528
+ return this.http.post(`/app/${appId}/welcome-item/${id}/delete`, body);
529
+ }
530
+ };
531
+
532
+ // src/modules/app/multi-service/index.ts
533
+ var MultiServiceModule = class {
534
+ constructor(http) {
535
+ this.http = http;
536
+ }
537
+ listCompanies(params) {
538
+ const { appId, ...body } = params;
539
+ return this.http.post(`/app/${appId}/multi-service/companies/list`, body);
540
+ }
541
+ createCompany(params) {
542
+ const { appId, ...body } = params;
543
+ return this.http.post(`/app/${appId}/multi-service/companies/create`, body);
544
+ }
545
+ getCompany(params) {
546
+ const { appId, id, ...body } = params;
547
+ return this.http.post(`/app/${appId}/multi-service/companies/${id}`, body);
548
+ }
549
+ updateCompany(params) {
550
+ const { appId, id, ...body } = params;
551
+ return this.http.post(`/app/${appId}/multi-service/companies/${id}/edit`, body);
552
+ }
553
+ deleteCompany(params) {
554
+ const { appId, id, ...body } = params;
555
+ return this.http.post(`/app/${appId}/multi-service/companies/${id}/delete`, body);
556
+ }
557
+ listServices(params) {
558
+ const { appId, ...body } = params;
559
+ return this.http.post(`/app/${appId}/multi-service/services/list`, body);
560
+ }
561
+ createService(params) {
562
+ const { appId, ...body } = params;
563
+ return this.http.post(`/app/${appId}/multi-service/services/create`, body);
564
+ }
565
+ getService(params) {
566
+ const { appId, id, ...body } = params;
567
+ return this.http.post(`/app/${appId}/multi-service/services/${id}`, body);
568
+ }
569
+ updateService(params) {
570
+ const { appId, id, ...body } = params;
571
+ return this.http.post(`/app/${appId}/multi-service/services/${id}/edit`, body);
572
+ }
573
+ deleteService(params) {
574
+ const { appId, id, ...body } = params;
575
+ return this.http.post(`/app/${appId}/multi-service/services/${id}/delete`, body);
576
+ }
577
+ createAppointment(params) {
578
+ const { appId, ...body } = params;
579
+ return this.http.post(`/app/${appId}/multi-service/appointments/create`, body);
580
+ }
581
+ listAppointments(params) {
582
+ const { appId, ...body } = params;
583
+ return this.http.post(`/app/${appId}/multi-service/appointments/list`, body);
584
+ }
585
+ updateAppointmentStatus(params) {
586
+ const { appId, id, ...body } = params;
587
+ return this.http.post(
588
+ `/app/${appId}/multi-service/appointments/${id}/status`,
589
+ body
590
+ );
591
+ }
592
+ listAgents(params) {
593
+ const { appId, ...body } = params;
594
+ return this.http.post(`/app/${appId}/multi-service/agents/list`, body);
595
+ }
596
+ createAgent(params) {
597
+ const { appId, ...body } = params;
598
+ return this.http.post(`/app/${appId}/multi-service/agents/create`, body);
599
+ }
600
+ getAgent(params) {
601
+ const { appId, id, ...body } = params;
602
+ return this.http.post(`/app/${appId}/multi-service/agents/${id}`, body);
603
+ }
604
+ updateAgent(params) {
605
+ const { appId, id, ...body } = params;
606
+ return this.http.post(`/app/${appId}/multi-service/agents/${id}/edit`, body);
607
+ }
608
+ deleteAgent(params) {
609
+ const { appId, id, ...body } = params;
610
+ return this.http.post(`/app/${appId}/multi-service/agents/${id}/delete`, body);
611
+ }
612
+ };
613
+
614
+ // src/modules/app/index.ts
615
+ var AppModule = class {
616
+ constructor(http) {
617
+ this.http = http;
618
+ this.customer = new AppCustomerModule(http);
619
+ this.stats = new AppStatsModule(http);
620
+ this.finance = new AppFinanceModule(http);
621
+ this.welcomeItem = new AppWelcomeItemModule(http);
622
+ this.info = new AppInfoModule(http);
623
+ this.store = new StoreModule(http);
624
+ this.multiService = new MultiServiceModule(http);
625
+ }
626
+ };
627
+
628
+ // src/index.ts
629
+ var AppliteUI = class {
630
+ constructor(config = {}) {
631
+ this.http = new HttpClient({
632
+ baseUrl: config.baseUrl,
633
+ headers: config.headers,
634
+ fetchFn: config.fetchFn
635
+ });
636
+ this.app = new AppModule(this.http);
637
+ }
638
+ };
639
+ // Annotate the CommonJS export names for ESM import in node:
640
+ 0 && (module.exports = {
641
+ AppCustomerModule,
642
+ AppFinanceModule,
643
+ AppInfoModule,
644
+ AppModule,
645
+ AppStatsModule,
646
+ AppWelcomeItemModule,
647
+ AppliteUI,
648
+ HttpClient,
649
+ MultiServiceModule,
650
+ StoreBadgeModule,
651
+ StoreCategoryModule,
652
+ StoreCollectionModule,
653
+ StoreDiscountModule,
654
+ StoreModule,
655
+ StoreOptionModule,
656
+ StoreOrderModule,
657
+ StoreProductModule,
658
+ StoreSellerModule,
659
+ StoreShippingModule,
660
+ StoreTagModule,
661
+ StoreTaxModule,
662
+ plateformTypes,
663
+ sexes
664
+ });
665
+ //# sourceMappingURL=index.js.map