@feedmepos/mf-order-setting 0.0.67-dev → 0.0.68-prod
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/{KioskDevicesView-mu33XbDe.js → KioskDevicesView-CACKpFoO.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DnnwwP5B.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BJIOCfEr.js} +3 -3
- package/dist/{KioskSettingView-CAwO1SeK.js → KioskSettingView-BVjtaNjl.js} +4 -4
- package/dist/{KioskView-pvtKqW3e.js → KioskView-6K48HkE4.js} +4 -4
- package/dist/OrderSettingsView-CStNEAkv.js +32126 -0
- package/dist/{app-MjAVO4M6.js → app-CAyePmCd.js} +229 -215
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-ClRk0CwC.js → dayjs.min-BytKqRJv.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +11 -0
- package/dist/frontend/mf-order/src/main.d.ts +11 -0
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +45 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +22 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +15 -0
- package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +2 -2
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-D7iNmBKX.js → index-BcbPl43J.js} +6 -6
- package/dist/{index-BWDduW_i.js → index-DkRVfP6c.js} +2 -2
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +36 -18
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +7 -2
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +92 -60
- package/dist/package/entity/kiosk/kiosk.do.d.ts +464 -0
- package/dist/package/entity/kiosk/kiosk.dto.d.ts +565 -0
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +125 -0
- package/dist/package/entity/order/order.do.d.ts +18 -0
- package/dist/package/entity/order/order.dto.d.ts +433 -0
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +5 -0
- package/dist/package/entity/order-platform/external/menu/external-menu.dto.d.ts +3 -3
- package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +8 -8
- package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +19 -19
- package/dist/package/entity/order-platform/external/order/external-order.enum.d.ts +1 -1
- package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
- package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
- package/dist/package/entity/order-platform/menu.dto.d.ts +0 -67
- package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
- package/dist/package/entity/order-setting/dine-in/dine-in.do.d.ts +29 -0
- package/dist/package/entity/order-setting/dine-in/dine-in.dto.d.ts +29 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +29 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +58 -0
- package/dist/package/entity/printer/printer.do.d.ts +114 -0
- package/dist/package/entity/queue/queue.dto.d.ts +93 -0
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +3 -0
- package/dist/queue-transfer.dto-BB0t5A1B.js +70184 -0
- package/package.json +5 -3
- package/src/locales/en-US.json +8 -0
- package/src/locales/ja-JP.json +1 -0
- package/src/locales/th-TH.json +1 -0
- package/src/locales/zh-CN.json +1 -0
- package/src/views/order-settings/dine-in/DineInSetting.vue +75 -0
- package/src/views/order-settings/general/GeneralSetting.vue +12 -0
- package/dist/OrderSettingsView-DgLwwgzb.js +0 -31258
- package/dist/queue-transfer.dto-CXRjYyMe.js +0 -45343
|
@@ -34,11 +34,14 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
34
34
|
quantity: z.ZodNumber;
|
|
35
35
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
36
36
|
name: z.ZodArray<z.ZodString, "many">;
|
|
37
|
+
name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
37
38
|
combinationKey: z.ZodString;
|
|
38
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
39
41
|
name: string[];
|
|
40
42
|
combinationKey: string;
|
|
41
43
|
}, {
|
|
44
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
42
45
|
name: string[];
|
|
43
46
|
combinationKey: string;
|
|
44
47
|
}>>>;
|
|
@@ -61,11 +64,14 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
61
64
|
quantity: z.ZodNumber;
|
|
62
65
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
63
66
|
name: z.ZodArray<z.ZodString, "many">;
|
|
67
|
+
name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
64
68
|
combinationKey: z.ZodString;
|
|
65
69
|
}, "strip", z.ZodTypeAny, {
|
|
70
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
66
71
|
name: string[];
|
|
67
72
|
combinationKey: string;
|
|
68
73
|
}, {
|
|
74
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
69
75
|
name: string[];
|
|
70
76
|
combinationKey: string;
|
|
71
77
|
}>>>;
|
|
@@ -76,6 +82,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
76
82
|
precision: number;
|
|
77
83
|
} | null | undefined;
|
|
78
84
|
variantSelected?: {
|
|
85
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
79
86
|
name: string[];
|
|
80
87
|
combinationKey: string;
|
|
81
88
|
} | null | undefined;
|
|
@@ -89,6 +96,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
89
96
|
precision: number;
|
|
90
97
|
} | null | undefined;
|
|
91
98
|
variantSelected?: {
|
|
99
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
92
100
|
name: string[];
|
|
93
101
|
combinationKey: string;
|
|
94
102
|
} | null | undefined;
|
|
@@ -103,6 +111,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
103
111
|
precision: number;
|
|
104
112
|
} | null | undefined;
|
|
105
113
|
variantSelected?: {
|
|
114
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
106
115
|
name: string[];
|
|
107
116
|
combinationKey: string;
|
|
108
117
|
} | null | undefined;
|
|
@@ -113,6 +122,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
113
122
|
precision: number;
|
|
114
123
|
} | null | undefined;
|
|
115
124
|
variantSelected?: {
|
|
125
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
116
126
|
name: string[];
|
|
117
127
|
combinationKey: string;
|
|
118
128
|
} | null | undefined;
|
|
@@ -130,6 +140,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
130
140
|
precision: number;
|
|
131
141
|
} | null | undefined;
|
|
132
142
|
variantSelected?: {
|
|
143
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
133
144
|
name: string[];
|
|
134
145
|
combinationKey: string;
|
|
135
146
|
} | null | undefined;
|
|
@@ -140,6 +151,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
140
151
|
precision: number;
|
|
141
152
|
} | null | undefined;
|
|
142
153
|
variantSelected?: {
|
|
154
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
143
155
|
name: string[];
|
|
144
156
|
combinationKey: string;
|
|
145
157
|
} | null | undefined;
|
|
@@ -194,11 +206,14 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
194
206
|
}>>>;
|
|
195
207
|
variantSelected: z.ZodObject<{
|
|
196
208
|
name: z.ZodArray<z.ZodString, "many">;
|
|
209
|
+
name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
197
210
|
combinationKey: z.ZodString;
|
|
198
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
199
213
|
name: string[];
|
|
200
214
|
combinationKey: string;
|
|
201
215
|
}, {
|
|
216
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
202
217
|
name: string[];
|
|
203
218
|
combinationKey: string;
|
|
204
219
|
}>;
|
|
@@ -225,6 +240,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
225
240
|
precision: number;
|
|
226
241
|
};
|
|
227
242
|
variantSelected: {
|
|
243
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
228
244
|
name: string[];
|
|
229
245
|
combinationKey: string;
|
|
230
246
|
};
|
|
@@ -235,6 +251,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
235
251
|
precision: number;
|
|
236
252
|
} | null | undefined;
|
|
237
253
|
variantSelected?: {
|
|
254
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
238
255
|
name: string[];
|
|
239
256
|
combinationKey: string;
|
|
240
257
|
} | null | undefined;
|
|
@@ -245,6 +262,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
245
262
|
precision: number;
|
|
246
263
|
} | null | undefined;
|
|
247
264
|
variantSelected?: {
|
|
265
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
248
266
|
name: string[];
|
|
249
267
|
combinationKey: string;
|
|
250
268
|
} | null | undefined;
|
|
@@ -280,6 +298,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
280
298
|
precision: number;
|
|
281
299
|
};
|
|
282
300
|
variantSelected: {
|
|
301
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
283
302
|
name: string[];
|
|
284
303
|
combinationKey: string;
|
|
285
304
|
};
|
|
@@ -290,6 +309,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
290
309
|
precision: number;
|
|
291
310
|
} | null | undefined;
|
|
292
311
|
variantSelected?: {
|
|
312
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
293
313
|
name: string[];
|
|
294
314
|
combinationKey: string;
|
|
295
315
|
} | null | undefined;
|
|
@@ -300,6 +320,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
300
320
|
precision: number;
|
|
301
321
|
} | null | undefined;
|
|
302
322
|
variantSelected?: {
|
|
323
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
303
324
|
name: string[];
|
|
304
325
|
combinationKey: string;
|
|
305
326
|
} | null | undefined;
|
|
@@ -339,6 +360,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
339
360
|
precision: number;
|
|
340
361
|
};
|
|
341
362
|
variantSelected: {
|
|
363
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
342
364
|
name: string[];
|
|
343
365
|
combinationKey: string;
|
|
344
366
|
};
|
|
@@ -349,6 +371,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
349
371
|
precision: number;
|
|
350
372
|
} | null | undefined;
|
|
351
373
|
variantSelected?: {
|
|
374
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
352
375
|
name: string[];
|
|
353
376
|
combinationKey: string;
|
|
354
377
|
} | null | undefined;
|
|
@@ -359,6 +382,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
359
382
|
precision: number;
|
|
360
383
|
} | null | undefined;
|
|
361
384
|
variantSelected?: {
|
|
385
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
362
386
|
name: string[];
|
|
363
387
|
combinationKey: string;
|
|
364
388
|
} | null | undefined;
|
|
@@ -398,6 +422,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
398
422
|
precision: number;
|
|
399
423
|
};
|
|
400
424
|
variantSelected: {
|
|
425
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
401
426
|
name: string[];
|
|
402
427
|
combinationKey: string;
|
|
403
428
|
};
|
|
@@ -408,6 +433,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
408
433
|
precision: number;
|
|
409
434
|
} | null | undefined;
|
|
410
435
|
variantSelected?: {
|
|
436
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
411
437
|
name: string[];
|
|
412
438
|
combinationKey: string;
|
|
413
439
|
} | null | undefined;
|
|
@@ -418,6 +444,7 @@ export declare const RestaurantQueueCartDto: z.ZodObject<{
|
|
|
418
444
|
precision: number;
|
|
419
445
|
} | null | undefined;
|
|
420
446
|
variantSelected?: {
|
|
447
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
421
448
|
name: string[];
|
|
422
449
|
combinationKey: string;
|
|
423
450
|
} | null | undefined;
|
|
@@ -1388,6 +1415,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1388
1415
|
amount: number;
|
|
1389
1416
|
precision: number;
|
|
1390
1417
|
} | null | undefined;
|
|
1418
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1391
1419
|
productId?: string | null | undefined;
|
|
1392
1420
|
product?: {
|
|
1393
1421
|
code?: string | null | undefined;
|
|
@@ -1422,9 +1450,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1422
1450
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1423
1451
|
subCategories?: string[] | null | undefined;
|
|
1424
1452
|
shelfLife?: number | null | undefined;
|
|
1453
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1425
1454
|
name: string;
|
|
1426
1455
|
} | null | undefined;
|
|
1427
1456
|
variantSelected?: {
|
|
1457
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1428
1458
|
name: string[];
|
|
1429
1459
|
combinationKey: string;
|
|
1430
1460
|
} | null | undefined;
|
|
@@ -1439,6 +1469,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1439
1469
|
amount: number;
|
|
1440
1470
|
precision: number;
|
|
1441
1471
|
} | null | undefined;
|
|
1472
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1442
1473
|
productId?: string | null | undefined;
|
|
1443
1474
|
product?: {
|
|
1444
1475
|
code?: string | null | undefined;
|
|
@@ -1473,9 +1504,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1473
1504
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1474
1505
|
subCategories?: string[] | null | undefined;
|
|
1475
1506
|
shelfLife?: number | null | undefined;
|
|
1507
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1476
1508
|
name: string;
|
|
1477
1509
|
} | null | undefined;
|
|
1478
1510
|
variantSelected?: {
|
|
1511
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1479
1512
|
name: string[];
|
|
1480
1513
|
combinationKey: string;
|
|
1481
1514
|
} | null | undefined;
|
|
@@ -1490,6 +1523,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1490
1523
|
amount: number;
|
|
1491
1524
|
precision: number;
|
|
1492
1525
|
} | null | undefined;
|
|
1526
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1493
1527
|
productId?: string | null | undefined;
|
|
1494
1528
|
product?: {
|
|
1495
1529
|
code?: string | null | undefined;
|
|
@@ -1524,9 +1558,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1524
1558
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1525
1559
|
subCategories?: string[] | null | undefined;
|
|
1526
1560
|
shelfLife?: number | null | undefined;
|
|
1561
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1527
1562
|
name: string;
|
|
1528
1563
|
} | null | undefined;
|
|
1529
1564
|
variantSelected?: {
|
|
1565
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1530
1566
|
name: string[];
|
|
1531
1567
|
combinationKey: string;
|
|
1532
1568
|
} | null | undefined;
|
|
@@ -1541,6 +1577,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1541
1577
|
amount: number;
|
|
1542
1578
|
precision: number;
|
|
1543
1579
|
} | null | undefined;
|
|
1580
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1544
1581
|
productId?: string | null | undefined;
|
|
1545
1582
|
product?: {
|
|
1546
1583
|
code?: string | null | undefined;
|
|
@@ -1575,9 +1612,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1575
1612
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1576
1613
|
subCategories?: string[] | null | undefined;
|
|
1577
1614
|
shelfLife?: number | null | undefined;
|
|
1615
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1578
1616
|
name: string;
|
|
1579
1617
|
} | null | undefined;
|
|
1580
1618
|
variantSelected?: {
|
|
1619
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1581
1620
|
name: string[];
|
|
1582
1621
|
combinationKey: string;
|
|
1583
1622
|
} | null | undefined;
|
|
@@ -1647,6 +1686,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1647
1686
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1648
1687
|
shelfLife: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1649
1688
|
subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1689
|
+
name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1650
1690
|
}, "strip", z.ZodTypeAny, {
|
|
1651
1691
|
code?: string | null | undefined;
|
|
1652
1692
|
unit?: string | null | undefined;
|
|
@@ -1675,6 +1715,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1675
1715
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1676
1716
|
subCategories?: string[] | null | undefined;
|
|
1677
1717
|
shelfLife?: number | null | undefined;
|
|
1718
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1678
1719
|
name: string;
|
|
1679
1720
|
price: {
|
|
1680
1721
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -1709,6 +1750,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1709
1750
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1710
1751
|
subCategories?: string[] | null | undefined;
|
|
1711
1752
|
shelfLife?: number | null | undefined;
|
|
1753
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1712
1754
|
name: string;
|
|
1713
1755
|
price: {
|
|
1714
1756
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -1718,11 +1760,14 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1718
1760
|
}>;
|
|
1719
1761
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1720
1762
|
name: z.ZodArray<z.ZodString, "many">;
|
|
1763
|
+
name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>>;
|
|
1721
1764
|
combinationKey: z.ZodString;
|
|
1722
1765
|
}, "strip", z.ZodTypeAny, {
|
|
1766
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1723
1767
|
name: string[];
|
|
1724
1768
|
combinationKey: string;
|
|
1725
1769
|
}, {
|
|
1770
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1726
1771
|
name: string[];
|
|
1727
1772
|
combinationKey: string;
|
|
1728
1773
|
}>>>;
|
|
@@ -1758,6 +1803,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1758
1803
|
remark?: string | null | undefined;
|
|
1759
1804
|
productId?: string | null | undefined;
|
|
1760
1805
|
variantSelected?: {
|
|
1806
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1761
1807
|
name: string[];
|
|
1762
1808
|
combinationKey: string;
|
|
1763
1809
|
} | null | undefined;
|
|
@@ -1802,6 +1848,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1802
1848
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1803
1849
|
subCategories?: string[] | null | undefined;
|
|
1804
1850
|
shelfLife?: number | null | undefined;
|
|
1851
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1805
1852
|
name: string;
|
|
1806
1853
|
price: {
|
|
1807
1854
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -1815,6 +1862,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1815
1862
|
amount: number;
|
|
1816
1863
|
precision: number;
|
|
1817
1864
|
} | null | undefined;
|
|
1865
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1818
1866
|
productId?: string | null | undefined;
|
|
1819
1867
|
product?: {
|
|
1820
1868
|
code?: string | null | undefined;
|
|
@@ -1849,9 +1897,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1849
1897
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1850
1898
|
subCategories?: string[] | null | undefined;
|
|
1851
1899
|
shelfLife?: number | null | undefined;
|
|
1900
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1852
1901
|
name: string;
|
|
1853
1902
|
} | null | undefined;
|
|
1854
1903
|
variantSelected?: {
|
|
1904
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1855
1905
|
name: string[];
|
|
1856
1906
|
combinationKey: string;
|
|
1857
1907
|
} | null | undefined;
|
|
@@ -1866,6 +1916,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1866
1916
|
amount: number;
|
|
1867
1917
|
precision: number;
|
|
1868
1918
|
} | null | undefined;
|
|
1919
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1869
1920
|
productId?: string | null | undefined;
|
|
1870
1921
|
product?: {
|
|
1871
1922
|
code?: string | null | undefined;
|
|
@@ -1900,9 +1951,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1900
1951
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1901
1952
|
subCategories?: string[] | null | undefined;
|
|
1902
1953
|
shelfLife?: number | null | undefined;
|
|
1954
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1903
1955
|
name: string;
|
|
1904
1956
|
} | null | undefined;
|
|
1905
1957
|
variantSelected?: {
|
|
1958
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1906
1959
|
name: string[];
|
|
1907
1960
|
combinationKey: string;
|
|
1908
1961
|
} | null | undefined;
|
|
@@ -1919,6 +1972,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1919
1972
|
taxes?: Record<string, any> | undefined;
|
|
1920
1973
|
productId?: string | null | undefined;
|
|
1921
1974
|
variantSelected?: {
|
|
1975
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
1922
1976
|
name: string[];
|
|
1923
1977
|
combinationKey: string;
|
|
1924
1978
|
} | null | undefined;
|
|
@@ -1963,6 +2017,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1963
2017
|
customAttributes?: Record<string, any> | null | undefined;
|
|
1964
2018
|
subCategories?: string[] | null | undefined;
|
|
1965
2019
|
shelfLife?: number | null | undefined;
|
|
2020
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1966
2021
|
name: string;
|
|
1967
2022
|
price: {
|
|
1968
2023
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -1976,6 +2031,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
1976
2031
|
amount: number;
|
|
1977
2032
|
precision: number;
|
|
1978
2033
|
} | null | undefined;
|
|
2034
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
1979
2035
|
productId?: string | null | undefined;
|
|
1980
2036
|
product?: {
|
|
1981
2037
|
code?: string | null | undefined;
|
|
@@ -2010,9 +2066,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
2010
2066
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2011
2067
|
subCategories?: string[] | null | undefined;
|
|
2012
2068
|
shelfLife?: number | null | undefined;
|
|
2069
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
2013
2070
|
name: string;
|
|
2014
2071
|
} | null | undefined;
|
|
2015
2072
|
variantSelected?: {
|
|
2073
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
2016
2074
|
name: string[];
|
|
2017
2075
|
combinationKey: string;
|
|
2018
2076
|
} | null | undefined;
|
|
@@ -2027,6 +2085,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
2027
2085
|
amount: number;
|
|
2028
2086
|
precision: number;
|
|
2029
2087
|
} | null | undefined;
|
|
2088
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
2030
2089
|
productId?: string | null | undefined;
|
|
2031
2090
|
product?: {
|
|
2032
2091
|
code?: string | null | undefined;
|
|
@@ -2061,9 +2120,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
2061
2120
|
customAttributes?: Record<string, any> | null | undefined;
|
|
2062
2121
|
subCategories?: string[] | null | undefined;
|
|
2063
2122
|
shelfLife?: number | null | undefined;
|
|
2123
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
2064
2124
|
name: string;
|
|
2065
2125
|
} | null | undefined;
|
|
2066
2126
|
variantSelected?: {
|
|
2127
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
2067
2128
|
name: string[];
|
|
2068
2129
|
combinationKey: string;
|
|
2069
2130
|
} | null | undefined;
|
|
@@ -5880,6 +5941,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
5880
5941
|
remark?: string | null | undefined;
|
|
5881
5942
|
productId?: string | null | undefined;
|
|
5882
5943
|
variantSelected?: {
|
|
5944
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
5883
5945
|
name: string[];
|
|
5884
5946
|
combinationKey: string;
|
|
5885
5947
|
} | null | undefined;
|
|
@@ -5924,6 +5986,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
5924
5986
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5925
5987
|
subCategories?: string[] | null | undefined;
|
|
5926
5988
|
shelfLife?: number | null | undefined;
|
|
5989
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
5927
5990
|
name: string;
|
|
5928
5991
|
price: {
|
|
5929
5992
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -5937,6 +6000,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
5937
6000
|
amount: number;
|
|
5938
6001
|
precision: number;
|
|
5939
6002
|
} | null | undefined;
|
|
6003
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
5940
6004
|
productId?: string | null | undefined;
|
|
5941
6005
|
product?: {
|
|
5942
6006
|
code?: string | null | undefined;
|
|
@@ -5971,9 +6035,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
5971
6035
|
customAttributes?: Record<string, any> | null | undefined;
|
|
5972
6036
|
subCategories?: string[] | null | undefined;
|
|
5973
6037
|
shelfLife?: number | null | undefined;
|
|
6038
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
5974
6039
|
name: string;
|
|
5975
6040
|
} | null | undefined;
|
|
5976
6041
|
variantSelected?: {
|
|
6042
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
5977
6043
|
name: string[];
|
|
5978
6044
|
combinationKey: string;
|
|
5979
6045
|
} | null | undefined;
|
|
@@ -5988,6 +6054,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
5988
6054
|
amount: number;
|
|
5989
6055
|
precision: number;
|
|
5990
6056
|
} | null | undefined;
|
|
6057
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
5991
6058
|
productId?: string | null | undefined;
|
|
5992
6059
|
product?: {
|
|
5993
6060
|
code?: string | null | undefined;
|
|
@@ -6022,9 +6089,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6022
6089
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6023
6090
|
subCategories?: string[] | null | undefined;
|
|
6024
6091
|
shelfLife?: number | null | undefined;
|
|
6092
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6025
6093
|
name: string;
|
|
6026
6094
|
} | null | undefined;
|
|
6027
6095
|
variantSelected?: {
|
|
6096
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
6028
6097
|
name: string[];
|
|
6029
6098
|
combinationKey: string;
|
|
6030
6099
|
} | null | undefined;
|
|
@@ -6669,6 +6738,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6669
6738
|
taxes?: Record<string, any> | undefined;
|
|
6670
6739
|
productId?: string | null | undefined;
|
|
6671
6740
|
variantSelected?: {
|
|
6741
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
6672
6742
|
name: string[];
|
|
6673
6743
|
combinationKey: string;
|
|
6674
6744
|
} | null | undefined;
|
|
@@ -6713,6 +6783,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6713
6783
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6714
6784
|
subCategories?: string[] | null | undefined;
|
|
6715
6785
|
shelfLife?: number | null | undefined;
|
|
6786
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6716
6787
|
name: string;
|
|
6717
6788
|
price: {
|
|
6718
6789
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -6726,6 +6797,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6726
6797
|
amount: number;
|
|
6727
6798
|
precision: number;
|
|
6728
6799
|
} | null | undefined;
|
|
6800
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6729
6801
|
productId?: string | null | undefined;
|
|
6730
6802
|
product?: {
|
|
6731
6803
|
code?: string | null | undefined;
|
|
@@ -6760,9 +6832,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6760
6832
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6761
6833
|
subCategories?: string[] | null | undefined;
|
|
6762
6834
|
shelfLife?: number | null | undefined;
|
|
6835
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6763
6836
|
name: string;
|
|
6764
6837
|
} | null | undefined;
|
|
6765
6838
|
variantSelected?: {
|
|
6839
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
6766
6840
|
name: string[];
|
|
6767
6841
|
combinationKey: string;
|
|
6768
6842
|
} | null | undefined;
|
|
@@ -6777,6 +6851,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6777
6851
|
amount: number;
|
|
6778
6852
|
precision: number;
|
|
6779
6853
|
} | null | undefined;
|
|
6854
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6780
6855
|
productId?: string | null | undefined;
|
|
6781
6856
|
product?: {
|
|
6782
6857
|
code?: string | null | undefined;
|
|
@@ -6811,9 +6886,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
6811
6886
|
customAttributes?: Record<string, any> | null | undefined;
|
|
6812
6887
|
subCategories?: string[] | null | undefined;
|
|
6813
6888
|
shelfLife?: number | null | undefined;
|
|
6889
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
6814
6890
|
name: string;
|
|
6815
6891
|
} | null | undefined;
|
|
6816
6892
|
variantSelected?: {
|
|
6893
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
6817
6894
|
name: string[];
|
|
6818
6895
|
combinationKey: string;
|
|
6819
6896
|
} | null | undefined;
|
|
@@ -7280,6 +7357,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7280
7357
|
remark?: string | null | undefined;
|
|
7281
7358
|
productId?: string | null | undefined;
|
|
7282
7359
|
variantSelected?: {
|
|
7360
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
7283
7361
|
name: string[];
|
|
7284
7362
|
combinationKey: string;
|
|
7285
7363
|
} | null | undefined;
|
|
@@ -7324,6 +7402,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7324
7402
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7325
7403
|
subCategories?: string[] | null | undefined;
|
|
7326
7404
|
shelfLife?: number | null | undefined;
|
|
7405
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
7327
7406
|
name: string;
|
|
7328
7407
|
price: {
|
|
7329
7408
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -7337,6 +7416,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7337
7416
|
amount: number;
|
|
7338
7417
|
precision: number;
|
|
7339
7418
|
} | null | undefined;
|
|
7419
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
7340
7420
|
productId?: string | null | undefined;
|
|
7341
7421
|
product?: {
|
|
7342
7422
|
code?: string | null | undefined;
|
|
@@ -7371,9 +7451,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7371
7451
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7372
7452
|
subCategories?: string[] | null | undefined;
|
|
7373
7453
|
shelfLife?: number | null | undefined;
|
|
7454
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
7374
7455
|
name: string;
|
|
7375
7456
|
} | null | undefined;
|
|
7376
7457
|
variantSelected?: {
|
|
7458
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
7377
7459
|
name: string[];
|
|
7378
7460
|
combinationKey: string;
|
|
7379
7461
|
} | null | undefined;
|
|
@@ -7388,6 +7470,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7388
7470
|
amount: number;
|
|
7389
7471
|
precision: number;
|
|
7390
7472
|
} | null | undefined;
|
|
7473
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
7391
7474
|
productId?: string | null | undefined;
|
|
7392
7475
|
product?: {
|
|
7393
7476
|
code?: string | null | undefined;
|
|
@@ -7422,9 +7505,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
7422
7505
|
customAttributes?: Record<string, any> | null | undefined;
|
|
7423
7506
|
subCategories?: string[] | null | undefined;
|
|
7424
7507
|
shelfLife?: number | null | undefined;
|
|
7508
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
7425
7509
|
name: string;
|
|
7426
7510
|
} | null | undefined;
|
|
7427
7511
|
variantSelected?: {
|
|
7512
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
7428
7513
|
name: string[];
|
|
7429
7514
|
combinationKey: string;
|
|
7430
7515
|
} | null | undefined;
|
|
@@ -8205,6 +8290,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8205
8290
|
taxes?: Record<string, any> | undefined;
|
|
8206
8291
|
productId?: string | null | undefined;
|
|
8207
8292
|
variantSelected?: {
|
|
8293
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
8208
8294
|
name: string[];
|
|
8209
8295
|
combinationKey: string;
|
|
8210
8296
|
} | null | undefined;
|
|
@@ -8249,6 +8335,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8249
8335
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8250
8336
|
subCategories?: string[] | null | undefined;
|
|
8251
8337
|
shelfLife?: number | null | undefined;
|
|
8338
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
8252
8339
|
name: string;
|
|
8253
8340
|
price: {
|
|
8254
8341
|
currency: "AED" | "AFN" | "ALL" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MYR" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
@@ -8262,6 +8349,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8262
8349
|
amount: number;
|
|
8263
8350
|
precision: number;
|
|
8264
8351
|
} | null | undefined;
|
|
8352
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
8265
8353
|
productId?: string | null | undefined;
|
|
8266
8354
|
product?: {
|
|
8267
8355
|
code?: string | null | undefined;
|
|
@@ -8296,9 +8384,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8296
8384
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8297
8385
|
subCategories?: string[] | null | undefined;
|
|
8298
8386
|
shelfLife?: number | null | undefined;
|
|
8387
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
8299
8388
|
name: string;
|
|
8300
8389
|
} | null | undefined;
|
|
8301
8390
|
variantSelected?: {
|
|
8391
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
8302
8392
|
name: string[];
|
|
8303
8393
|
combinationKey: string;
|
|
8304
8394
|
} | null | undefined;
|
|
@@ -8313,6 +8403,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8313
8403
|
amount: number;
|
|
8314
8404
|
precision: number;
|
|
8315
8405
|
} | null | undefined;
|
|
8406
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
8316
8407
|
productId?: string | null | undefined;
|
|
8317
8408
|
product?: {
|
|
8318
8409
|
code?: string | null | undefined;
|
|
@@ -8347,9 +8438,11 @@ export declare const RestaurantQueueDto: z.ZodObject<{
|
|
|
8347
8438
|
customAttributes?: Record<string, any> | null | undefined;
|
|
8348
8439
|
subCategories?: string[] | null | undefined;
|
|
8349
8440
|
shelfLife?: number | null | undefined;
|
|
8441
|
+
name_locale?: Record<string, string> | null | undefined;
|
|
8350
8442
|
name: string;
|
|
8351
8443
|
} | null | undefined;
|
|
8352
8444
|
variantSelected?: {
|
|
8445
|
+
name_locale?: Record<string, string[]> | null | undefined;
|
|
8353
8446
|
name: string[];
|
|
8354
8447
|
combinationKey: string;
|
|
8355
8448
|
} | null | undefined;
|