@feedmepos/mf-order-setting 0.0.22 → 0.0.23

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.
Files changed (44) hide show
  1. package/dist/{KioskDevicesView-C6YmdLKc.js → KioskDevicesView-BdJCcotz.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DiLHpWbm.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-DUPfN7ti.js} +2 -2
  3. package/dist/KioskSettingView-BChhriPk.js +782 -0
  4. package/dist/KioskView-DPU-oQ1H.js +426 -0
  5. package/dist/{OrderSettingsView-D_bGK-3J.js → OrderSettingsView-BOiflwB_.js} +14 -11
  6. package/dist/{app-C5qwExhL.js → app-CaYWSLe1.js} +17 -13
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-kEC9G7bx.js → dayjs.min-8NyoNely.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +4 -0
  10. package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +13 -0
  11. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +168 -12
  12. package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +2 -1
  13. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskInstructionSection.vue.d.ts +15 -0
  14. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskPickAtCounterSection.vue.d.ts +4 -3
  15. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  16. package/dist/{index-C_53CwBa.js → index-B7GFhkAE.js} +2 -2
  17. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +16 -16
  18. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +6 -6
  19. package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +115 -0
  20. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +225 -0
  21. package/dist/package/entity/order-setting/kiosk/kiosk.enum.d.ts +3 -0
  22. package/dist/package/entity/order-setting/order-setting.do.d.ts +138 -8
  23. package/dist/package/entity/order-setting/order-setting.dto.d.ts +276 -16
  24. package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +4 -4
  25. package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +4 -4
  26. package/dist/package/entity/payment/payment.enum.d.ts +2 -0
  27. package/dist/package/entity/restaurant/restaurant.dto.d.ts +136 -6
  28. package/dist/package/entity/websocket/websocket.dto.d.ts +288 -0
  29. package/dist/{queue.do-Vog69wnQ.js → queue.do-CIyIpp22.js} +4536 -4517
  30. package/package.json +1 -1
  31. package/src/locales/en-US.json +3 -2
  32. package/src/locales/zh-CN.json +2 -0
  33. package/src/modules/order-setting/kiosk/interface.ts +16 -0
  34. package/src/stores/order-setting/mapper.ts +58 -7
  35. package/src/views/kiosk/settings/KioskDineInSection.vue +4 -5
  36. package/src/views/kiosk/settings/KioskDisplayStandSection.vue +36 -0
  37. package/src/views/kiosk/settings/KioskInstructionSection.vue +40 -0
  38. package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +30 -19
  39. package/src/views/kiosk/settings/KioskPickAtCounterSection.vue +45 -7
  40. package/src/views/kiosk/settings/KioskSettingView.vue +15 -3
  41. package/src/views/kiosk/settings/KioskTakeawaySection.vue +38 -4
  42. package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +3 -8
  43. package/dist/KioskSettingView-D-muNxlb.js +0 -649
  44. package/dist/KioskView-kcjjk4fF.js +0 -371
@@ -1,4 +1,15 @@
1
1
  import { z } from 'zod';
2
+ export declare const KioskTextSettingDto: z.ZodRecord<z.ZodString, z.ZodString>;
3
+ export declare const KioskOrderInstructionSettingDto: z.ZodObject<{
4
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
5
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
6
+ }, "strip", z.ZodTypeAny, {
7
+ payAtCounter?: Record<string, string> | null | undefined;
8
+ paid?: Record<string, string> | null | undefined;
9
+ }, {
10
+ payAtCounter?: Record<string, string> | null | undefined;
11
+ paid?: Record<string, string> | null | undefined;
12
+ }>;
2
13
  export declare const DisplayStandSettingDto: z.ZodObject<{
3
14
  enabled: z.ZodDefault<z.ZodBoolean>;
4
15
  standSlotRange: z.ZodEffects<z.ZodObject<{
@@ -19,7 +30,21 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
19
30
  }>;
20
31
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
21
32
  padDigit: z.ZodNumber;
33
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
34
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
35
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
36
+ }, "strip", z.ZodTypeAny, {
37
+ payAtCounter?: Record<string, string> | null | undefined;
38
+ paid?: Record<string, string> | null | undefined;
39
+ }, {
40
+ payAtCounter?: Record<string, string> | null | undefined;
41
+ paid?: Record<string, string> | null | undefined;
42
+ }>>>;
22
43
  }, "strip", z.ZodTypeAny, {
44
+ submitOrderInstruction?: {
45
+ payAtCounter?: Record<string, string> | null | undefined;
46
+ paid?: Record<string, string> | null | undefined;
47
+ } | null | undefined;
23
48
  enabled: boolean;
24
49
  standSlotRange: {
25
50
  min: number;
@@ -30,6 +55,10 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
30
55
  }, {
31
56
  enabled?: boolean | undefined;
32
57
  prefix?: string | null | undefined;
58
+ submitOrderInstruction?: {
59
+ payAtCounter?: Record<string, string> | null | undefined;
60
+ paid?: Record<string, string> | null | undefined;
61
+ } | null | undefined;
33
62
  standSlotRange: {
34
63
  min: number;
35
64
  max: number;
@@ -38,18 +67,54 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
38
67
  }>;
39
68
  export declare const KioskPickAtCounterSettingDto: z.ZodObject<{
40
69
  enabled: z.ZodBoolean;
70
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
71
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
72
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
73
+ }, "strip", z.ZodTypeAny, {
74
+ payAtCounter?: Record<string, string> | null | undefined;
75
+ paid?: Record<string, string> | null | undefined;
76
+ }, {
77
+ payAtCounter?: Record<string, string> | null | undefined;
78
+ paid?: Record<string, string> | null | undefined;
79
+ }>>>;
41
80
  }, "strip", z.ZodTypeAny, {
81
+ submitOrderInstruction?: {
82
+ payAtCounter?: Record<string, string> | null | undefined;
83
+ paid?: Record<string, string> | null | undefined;
84
+ } | null | undefined;
42
85
  enabled: boolean;
43
86
  }, {
87
+ submitOrderInstruction?: {
88
+ payAtCounter?: Record<string, string> | null | undefined;
89
+ paid?: Record<string, string> | null | undefined;
90
+ } | null | undefined;
44
91
  enabled: boolean;
45
92
  }>;
46
93
  export declare const OrderKioskDineIn: z.ZodObject<{
47
94
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
48
95
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
49
96
  enabled: z.ZodBoolean;
97
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
98
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
99
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
100
+ }, "strip", z.ZodTypeAny, {
101
+ payAtCounter?: Record<string, string> | null | undefined;
102
+ paid?: Record<string, string> | null | undefined;
103
+ }, {
104
+ payAtCounter?: Record<string, string> | null | undefined;
105
+ paid?: Record<string, string> | null | undefined;
106
+ }>>>;
50
107
  }, "strip", z.ZodTypeAny, {
108
+ submitOrderInstruction?: {
109
+ payAtCounter?: Record<string, string> | null | undefined;
110
+ paid?: Record<string, string> | null | undefined;
111
+ } | null | undefined;
51
112
  enabled: boolean;
52
113
  }, {
114
+ submitOrderInstruction?: {
115
+ payAtCounter?: Record<string, string> | null | undefined;
116
+ paid?: Record<string, string> | null | undefined;
117
+ } | null | undefined;
53
118
  enabled: boolean;
54
119
  }>>>;
55
120
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -72,7 +137,21 @@ export declare const OrderKioskDineIn: z.ZodObject<{
72
137
  }>;
73
138
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
74
139
  padDigit: z.ZodNumber;
140
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
141
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
142
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
143
+ }, "strip", z.ZodTypeAny, {
144
+ payAtCounter?: Record<string, string> | null | undefined;
145
+ paid?: Record<string, string> | null | undefined;
146
+ }, {
147
+ payAtCounter?: Record<string, string> | null | undefined;
148
+ paid?: Record<string, string> | null | undefined;
149
+ }>>>;
75
150
  }, "strip", z.ZodTypeAny, {
151
+ submitOrderInstruction?: {
152
+ payAtCounter?: Record<string, string> | null | undefined;
153
+ paid?: Record<string, string> | null | undefined;
154
+ } | null | undefined;
76
155
  enabled: boolean;
77
156
  standSlotRange: {
78
157
  min: number;
@@ -83,6 +162,10 @@ export declare const OrderKioskDineIn: z.ZodObject<{
83
162
  }, {
84
163
  enabled?: boolean | undefined;
85
164
  prefix?: string | null | undefined;
165
+ submitOrderInstruction?: {
166
+ payAtCounter?: Record<string, string> | null | undefined;
167
+ paid?: Record<string, string> | null | undefined;
168
+ } | null | undefined;
86
169
  standSlotRange: {
87
170
  min: number;
88
171
  max: number;
@@ -92,9 +175,17 @@ export declare const OrderKioskDineIn: z.ZodObject<{
92
175
  }, "strip", z.ZodTypeAny, {
93
176
  requiredSlot?: boolean | null | undefined;
94
177
  pickUp?: {
178
+ submitOrderInstruction?: {
179
+ payAtCounter?: Record<string, string> | null | undefined;
180
+ paid?: Record<string, string> | null | undefined;
181
+ } | null | undefined;
95
182
  enabled: boolean;
96
183
  } | null | undefined;
97
184
  displayStand?: {
185
+ submitOrderInstruction?: {
186
+ payAtCounter?: Record<string, string> | null | undefined;
187
+ paid?: Record<string, string> | null | undefined;
188
+ } | null | undefined;
98
189
  enabled: boolean;
99
190
  standSlotRange: {
100
191
  min: number;
@@ -106,11 +197,19 @@ export declare const OrderKioskDineIn: z.ZodObject<{
106
197
  }, {
107
198
  requiredSlot?: boolean | null | undefined;
108
199
  pickUp?: {
200
+ submitOrderInstruction?: {
201
+ payAtCounter?: Record<string, string> | null | undefined;
202
+ paid?: Record<string, string> | null | undefined;
203
+ } | null | undefined;
109
204
  enabled: boolean;
110
205
  } | null | undefined;
111
206
  displayStand?: {
112
207
  enabled?: boolean | undefined;
113
208
  prefix?: string | null | undefined;
209
+ submitOrderInstruction?: {
210
+ payAtCounter?: Record<string, string> | null | undefined;
211
+ paid?: Record<string, string> | null | undefined;
212
+ } | null | undefined;
114
213
  standSlotRange: {
115
214
  min: number;
116
215
  max: number;
@@ -210,14 +309,54 @@ export declare const OrderKioskMenuItemSetting: z.ZodObject<{
210
309
  }, {
211
310
  showAllOnly: boolean;
212
311
  }>;
312
+ export declare const OrderKioskTakeawaySetting: z.ZodObject<{
313
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
314
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
315
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
316
+ }, "strip", z.ZodTypeAny, {
317
+ payAtCounter?: Record<string, string> | null | undefined;
318
+ paid?: Record<string, string> | null | undefined;
319
+ }, {
320
+ payAtCounter?: Record<string, string> | null | undefined;
321
+ paid?: Record<string, string> | null | undefined;
322
+ }>>>;
323
+ }, "strip", z.ZodTypeAny, {
324
+ submitOrderInstruction?: {
325
+ payAtCounter?: Record<string, string> | null | undefined;
326
+ paid?: Record<string, string> | null | undefined;
327
+ } | null | undefined;
328
+ }, {
329
+ submitOrderInstruction?: {
330
+ payAtCounter?: Record<string, string> | null | undefined;
331
+ paid?: Record<string, string> | null | undefined;
332
+ } | null | undefined;
333
+ }>;
213
334
  export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
214
335
  dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
215
336
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
216
337
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
217
338
  enabled: z.ZodBoolean;
339
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
340
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
341
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
342
+ }, "strip", z.ZodTypeAny, {
343
+ payAtCounter?: Record<string, string> | null | undefined;
344
+ paid?: Record<string, string> | null | undefined;
345
+ }, {
346
+ payAtCounter?: Record<string, string> | null | undefined;
347
+ paid?: Record<string, string> | null | undefined;
348
+ }>>>;
218
349
  }, "strip", z.ZodTypeAny, {
350
+ submitOrderInstruction?: {
351
+ payAtCounter?: Record<string, string> | null | undefined;
352
+ paid?: Record<string, string> | null | undefined;
353
+ } | null | undefined;
219
354
  enabled: boolean;
220
355
  }, {
356
+ submitOrderInstruction?: {
357
+ payAtCounter?: Record<string, string> | null | undefined;
358
+ paid?: Record<string, string> | null | undefined;
359
+ } | null | undefined;
221
360
  enabled: boolean;
222
361
  }>>>;
223
362
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -240,7 +379,21 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
240
379
  }>;
241
380
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
242
381
  padDigit: z.ZodNumber;
382
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
383
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
384
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
385
+ }, "strip", z.ZodTypeAny, {
386
+ payAtCounter?: Record<string, string> | null | undefined;
387
+ paid?: Record<string, string> | null | undefined;
388
+ }, {
389
+ payAtCounter?: Record<string, string> | null | undefined;
390
+ paid?: Record<string, string> | null | undefined;
391
+ }>>>;
243
392
  }, "strip", z.ZodTypeAny, {
393
+ submitOrderInstruction?: {
394
+ payAtCounter?: Record<string, string> | null | undefined;
395
+ paid?: Record<string, string> | null | undefined;
396
+ } | null | undefined;
244
397
  enabled: boolean;
245
398
  standSlotRange: {
246
399
  min: number;
@@ -251,6 +404,10 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
251
404
  }, {
252
405
  enabled?: boolean | undefined;
253
406
  prefix?: string | null | undefined;
407
+ submitOrderInstruction?: {
408
+ payAtCounter?: Record<string, string> | null | undefined;
409
+ paid?: Record<string, string> | null | undefined;
410
+ } | null | undefined;
254
411
  standSlotRange: {
255
412
  min: number;
256
413
  max: number;
@@ -260,9 +417,17 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
260
417
  }, "strip", z.ZodTypeAny, {
261
418
  requiredSlot?: boolean | null | undefined;
262
419
  pickUp?: {
420
+ submitOrderInstruction?: {
421
+ payAtCounter?: Record<string, string> | null | undefined;
422
+ paid?: Record<string, string> | null | undefined;
423
+ } | null | undefined;
263
424
  enabled: boolean;
264
425
  } | null | undefined;
265
426
  displayStand?: {
427
+ submitOrderInstruction?: {
428
+ payAtCounter?: Record<string, string> | null | undefined;
429
+ paid?: Record<string, string> | null | undefined;
430
+ } | null | undefined;
266
431
  enabled: boolean;
267
432
  standSlotRange: {
268
433
  min: number;
@@ -274,11 +439,19 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
274
439
  }, {
275
440
  requiredSlot?: boolean | null | undefined;
276
441
  pickUp?: {
442
+ submitOrderInstruction?: {
443
+ payAtCounter?: Record<string, string> | null | undefined;
444
+ paid?: Record<string, string> | null | undefined;
445
+ } | null | undefined;
277
446
  enabled: boolean;
278
447
  } | null | undefined;
279
448
  displayStand?: {
280
449
  enabled?: boolean | undefined;
281
450
  prefix?: string | null | undefined;
451
+ submitOrderInstruction?: {
452
+ payAtCounter?: Record<string, string> | null | undefined;
453
+ paid?: Record<string, string> | null | undefined;
454
+ } | null | undefined;
282
455
  standSlotRange: {
283
456
  min: number;
284
457
  max: number;
@@ -287,6 +460,28 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
287
460
  } | null | undefined;
288
461
  }>>>;
289
462
  canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
463
+ takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
464
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
465
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
466
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
467
+ }, "strip", z.ZodTypeAny, {
468
+ payAtCounter?: Record<string, string> | null | undefined;
469
+ paid?: Record<string, string> | null | undefined;
470
+ }, {
471
+ payAtCounter?: Record<string, string> | null | undefined;
472
+ paid?: Record<string, string> | null | undefined;
473
+ }>>>;
474
+ }, "strip", z.ZodTypeAny, {
475
+ submitOrderInstruction?: {
476
+ payAtCounter?: Record<string, string> | null | undefined;
477
+ paid?: Record<string, string> | null | undefined;
478
+ } | null | undefined;
479
+ }, {
480
+ submitOrderInstruction?: {
481
+ payAtCounter?: Record<string, string> | null | undefined;
482
+ paid?: Record<string, string> | null | undefined;
483
+ } | null | undefined;
484
+ }>>>;
290
485
  paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
291
486
  paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
292
487
  offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
@@ -383,9 +578,17 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
383
578
  dineIn?: {
384
579
  requiredSlot?: boolean | null | undefined;
385
580
  pickUp?: {
581
+ submitOrderInstruction?: {
582
+ payAtCounter?: Record<string, string> | null | undefined;
583
+ paid?: Record<string, string> | null | undefined;
584
+ } | null | undefined;
386
585
  enabled: boolean;
387
586
  } | null | undefined;
388
587
  displayStand?: {
588
+ submitOrderInstruction?: {
589
+ payAtCounter?: Record<string, string> | null | undefined;
590
+ paid?: Record<string, string> | null | undefined;
591
+ } | null | undefined;
389
592
  enabled: boolean;
390
593
  standSlotRange: {
391
594
  min: number;
@@ -396,6 +599,12 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
396
599
  } | null | undefined;
397
600
  } | null | undefined;
398
601
  canTakeaway?: boolean | null | undefined;
602
+ takeaway?: {
603
+ submitOrderInstruction?: {
604
+ payAtCounter?: Record<string, string> | null | undefined;
605
+ paid?: Record<string, string> | null | undefined;
606
+ } | null | undefined;
607
+ } | null | undefined;
399
608
  paymentSetting?: {
400
609
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
401
610
  offlinePaymentTypes?: {
@@ -420,11 +629,19 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
420
629
  dineIn?: {
421
630
  requiredSlot?: boolean | null | undefined;
422
631
  pickUp?: {
632
+ submitOrderInstruction?: {
633
+ payAtCounter?: Record<string, string> | null | undefined;
634
+ paid?: Record<string, string> | null | undefined;
635
+ } | null | undefined;
423
636
  enabled: boolean;
424
637
  } | null | undefined;
425
638
  displayStand?: {
426
639
  enabled?: boolean | undefined;
427
640
  prefix?: string | null | undefined;
641
+ submitOrderInstruction?: {
642
+ payAtCounter?: Record<string, string> | null | undefined;
643
+ paid?: Record<string, string> | null | undefined;
644
+ } | null | undefined;
428
645
  standSlotRange: {
429
646
  min: number;
430
647
  max: number;
@@ -433,6 +650,12 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
433
650
  } | null | undefined;
434
651
  } | null | undefined;
435
652
  canTakeaway?: boolean | null | undefined;
653
+ takeaway?: {
654
+ submitOrderInstruction?: {
655
+ payAtCounter?: Record<string, string> | null | undefined;
656
+ paid?: Record<string, string> | null | undefined;
657
+ } | null | undefined;
658
+ } | null | undefined;
436
659
  paymentSetting?: {
437
660
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
438
661
  offlinePaymentTypes?: {
@@ -457,3 +680,5 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
457
680
  export type OrderKioskSettings = z.infer<typeof OrderKioskSettings>;
458
681
  export type OrderKioskDineIn = z.infer<typeof OrderKioskDineIn>;
459
682
  export type OrderKioskPaymentSetting = z.infer<typeof OrderKioskPaymentSetting>;
683
+ export type KioskTextSettingDto = z.infer<typeof KioskTextSettingDto>;
684
+ export type KioskOrderInstructionSettingDto = z.infer<typeof KioskOrderInstructionSettingDto>;
@@ -0,0 +1,3 @@
1
+ import { z } from "zod";
2
+ export declare const F_LOCALE: z.ZodString;
3
+ export type F_LOCALE = z.infer<typeof F_LOCALE>;