@feedmepos/mf-order-setting 0.0.22 → 0.0.24
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-C6YmdLKc.js → KioskDevicesView-DGkvW2mH.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DiLHpWbm.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BGZLd8T_.js} +2 -2
- package/dist/KioskSettingView-DLb5nnCu.js +821 -0
- package/dist/KioskView-kZZYSfUh.js +430 -0
- package/dist/{OrderSettingsView-D_bGK-3J.js → OrderSettingsView-Cil4j9G5.js} +14 -11
- package/dist/{app-C5qwExhL.js → app-D47VRl5B.js} +47 -39
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-kEC9G7bx.js → dayjs.min-R4180ukF.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +8 -0
- package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +17 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +192 -12
- package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +4 -2
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +9 -0
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskInstructionSection.vue.d.ts +15 -0
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskPickAtCounterSection.vue.d.ts +4 -3
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-C_53CwBa.js → index-DgLlDwJK.js} +2 -2
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +16 -16
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +6 -6
- package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +129 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +255 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.enum.d.ts +3 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +156 -8
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +312 -16
- package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +4 -4
- package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +4 -4
- package/dist/package/entity/payment/payment.enum.d.ts +2 -0
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +154 -6
- package/dist/package/entity/websocket/websocket.dto.d.ts +328 -0
- package/dist/{queue.do-Vog69wnQ.js → queue.do-CNMuossU.js} +4540 -4517
- package/package.json +1 -1
- package/src/locales/en-US.json +5 -2
- package/src/locales/zh-CN.json +4 -0
- package/src/modules/order-setting/kiosk/interface.ts +20 -0
- package/src/stores/order-setting/mapper.ts +68 -11
- package/src/views/kiosk/settings/KioskDineInSection.vue +4 -5
- package/src/views/kiosk/settings/KioskDisplayStandSection.vue +36 -0
- package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
- package/src/views/kiosk/settings/KioskInstructionSection.vue +40 -0
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +30 -19
- package/src/views/kiosk/settings/KioskPickAtCounterSection.vue +45 -7
- package/src/views/kiosk/settings/KioskSettingView.vue +41 -3
- package/src/views/kiosk/settings/KioskTakeawaySection.vue +38 -4
- package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +3 -8
- package/dist/KioskSettingView-D-muNxlb.js +0 -649
- 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,23 @@ 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
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
34
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
35
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
36
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
39
|
+
paid?: Record<string, string> | null | undefined;
|
|
40
|
+
}, {
|
|
41
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
42
|
+
paid?: Record<string, string> | null | undefined;
|
|
43
|
+
}>>>;
|
|
22
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
46
|
+
submitOrderInstruction?: {
|
|
47
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
48
|
+
paid?: Record<string, string> | null | undefined;
|
|
49
|
+
} | null | undefined;
|
|
23
50
|
enabled: boolean;
|
|
24
51
|
standSlotRange: {
|
|
25
52
|
min: number;
|
|
@@ -30,6 +57,11 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
30
57
|
}, {
|
|
31
58
|
enabled?: boolean | undefined;
|
|
32
59
|
prefix?: string | null | undefined;
|
|
60
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
61
|
+
submitOrderInstruction?: {
|
|
62
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
63
|
+
paid?: Record<string, string> | null | undefined;
|
|
64
|
+
} | null | undefined;
|
|
33
65
|
standSlotRange: {
|
|
34
66
|
min: number;
|
|
35
67
|
max: number;
|
|
@@ -38,18 +70,60 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
38
70
|
}>;
|
|
39
71
|
export declare const KioskPickAtCounterSettingDto: z.ZodObject<{
|
|
40
72
|
enabled: z.ZodBoolean;
|
|
73
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
74
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
75
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
76
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
79
|
+
paid?: Record<string, string> | null | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
82
|
+
paid?: Record<string, string> | null | undefined;
|
|
83
|
+
}>>>;
|
|
41
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
86
|
+
submitOrderInstruction?: {
|
|
87
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
88
|
+
paid?: Record<string, string> | null | undefined;
|
|
89
|
+
} | null | undefined;
|
|
42
90
|
enabled: boolean;
|
|
43
91
|
}, {
|
|
92
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
93
|
+
submitOrderInstruction?: {
|
|
94
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
95
|
+
paid?: Record<string, string> | null | undefined;
|
|
96
|
+
} | null | undefined;
|
|
44
97
|
enabled: boolean;
|
|
45
98
|
}>;
|
|
46
99
|
export declare const OrderKioskDineIn: z.ZodObject<{
|
|
47
100
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
48
101
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
49
102
|
enabled: z.ZodBoolean;
|
|
103
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
104
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
105
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
106
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
107
|
+
}, "strip", z.ZodTypeAny, {
|
|
108
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
109
|
+
paid?: Record<string, string> | null | undefined;
|
|
110
|
+
}, {
|
|
111
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
112
|
+
paid?: Record<string, string> | null | undefined;
|
|
113
|
+
}>>>;
|
|
50
114
|
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
116
|
+
submitOrderInstruction?: {
|
|
117
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
118
|
+
paid?: Record<string, string> | null | undefined;
|
|
119
|
+
} | null | undefined;
|
|
51
120
|
enabled: boolean;
|
|
52
121
|
}, {
|
|
122
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
123
|
+
submitOrderInstruction?: {
|
|
124
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
125
|
+
paid?: Record<string, string> | null | undefined;
|
|
126
|
+
} | null | undefined;
|
|
53
127
|
enabled: boolean;
|
|
54
128
|
}>>>;
|
|
55
129
|
displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -72,7 +146,23 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
72
146
|
}>;
|
|
73
147
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
74
148
|
padDigit: z.ZodNumber;
|
|
149
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
150
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
151
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
152
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
153
|
+
}, "strip", z.ZodTypeAny, {
|
|
154
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
155
|
+
paid?: Record<string, string> | null | undefined;
|
|
156
|
+
}, {
|
|
157
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
158
|
+
paid?: Record<string, string> | null | undefined;
|
|
159
|
+
}>>>;
|
|
75
160
|
}, "strip", z.ZodTypeAny, {
|
|
161
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
162
|
+
submitOrderInstruction?: {
|
|
163
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
164
|
+
paid?: Record<string, string> | null | undefined;
|
|
165
|
+
} | null | undefined;
|
|
76
166
|
enabled: boolean;
|
|
77
167
|
standSlotRange: {
|
|
78
168
|
min: number;
|
|
@@ -83,6 +173,11 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
83
173
|
}, {
|
|
84
174
|
enabled?: boolean | undefined;
|
|
85
175
|
prefix?: string | null | undefined;
|
|
176
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
177
|
+
submitOrderInstruction?: {
|
|
178
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
179
|
+
paid?: Record<string, string> | null | undefined;
|
|
180
|
+
} | null | undefined;
|
|
86
181
|
standSlotRange: {
|
|
87
182
|
min: number;
|
|
88
183
|
max: number;
|
|
@@ -92,9 +187,19 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
92
187
|
}, "strip", z.ZodTypeAny, {
|
|
93
188
|
requiredSlot?: boolean | null | undefined;
|
|
94
189
|
pickUp?: {
|
|
190
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
191
|
+
submitOrderInstruction?: {
|
|
192
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
193
|
+
paid?: Record<string, string> | null | undefined;
|
|
194
|
+
} | null | undefined;
|
|
95
195
|
enabled: boolean;
|
|
96
196
|
} | null | undefined;
|
|
97
197
|
displayStand?: {
|
|
198
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
199
|
+
submitOrderInstruction?: {
|
|
200
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
201
|
+
paid?: Record<string, string> | null | undefined;
|
|
202
|
+
} | null | undefined;
|
|
98
203
|
enabled: boolean;
|
|
99
204
|
standSlotRange: {
|
|
100
205
|
min: number;
|
|
@@ -106,11 +211,21 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
106
211
|
}, {
|
|
107
212
|
requiredSlot?: boolean | null | undefined;
|
|
108
213
|
pickUp?: {
|
|
214
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
215
|
+
submitOrderInstruction?: {
|
|
216
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
217
|
+
paid?: Record<string, string> | null | undefined;
|
|
218
|
+
} | null | undefined;
|
|
109
219
|
enabled: boolean;
|
|
110
220
|
} | null | undefined;
|
|
111
221
|
displayStand?: {
|
|
112
222
|
enabled?: boolean | undefined;
|
|
113
223
|
prefix?: string | null | undefined;
|
|
224
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
225
|
+
submitOrderInstruction?: {
|
|
226
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
227
|
+
paid?: Record<string, string> | null | undefined;
|
|
228
|
+
} | null | undefined;
|
|
114
229
|
standSlotRange: {
|
|
115
230
|
min: number;
|
|
116
231
|
max: number;
|
|
@@ -210,14 +325,57 @@ export declare const OrderKioskMenuItemSetting: z.ZodObject<{
|
|
|
210
325
|
}, {
|
|
211
326
|
showAllOnly: boolean;
|
|
212
327
|
}>;
|
|
328
|
+
export declare const OrderKioskTakeawaySetting: z.ZodObject<{
|
|
329
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
330
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
331
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
332
|
+
}, "strip", z.ZodTypeAny, {
|
|
333
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
334
|
+
paid?: Record<string, string> | null | undefined;
|
|
335
|
+
}, {
|
|
336
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
337
|
+
paid?: Record<string, string> | null | undefined;
|
|
338
|
+
}>>>;
|
|
339
|
+
}, "strip", z.ZodTypeAny, {
|
|
340
|
+
submitOrderInstruction?: {
|
|
341
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
342
|
+
paid?: Record<string, string> | null | undefined;
|
|
343
|
+
} | null | undefined;
|
|
344
|
+
}, {
|
|
345
|
+
submitOrderInstruction?: {
|
|
346
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
347
|
+
paid?: Record<string, string> | null | undefined;
|
|
348
|
+
} | null | undefined;
|
|
349
|
+
}>;
|
|
213
350
|
export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
214
351
|
dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
215
352
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
216
353
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
217
354
|
enabled: z.ZodBoolean;
|
|
355
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
356
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
357
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
358
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
359
|
+
}, "strip", z.ZodTypeAny, {
|
|
360
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
361
|
+
paid?: Record<string, string> | null | undefined;
|
|
362
|
+
}, {
|
|
363
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
364
|
+
paid?: Record<string, string> | null | undefined;
|
|
365
|
+
}>>>;
|
|
218
366
|
}, "strip", z.ZodTypeAny, {
|
|
367
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
368
|
+
submitOrderInstruction?: {
|
|
369
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
370
|
+
paid?: Record<string, string> | null | undefined;
|
|
371
|
+
} | null | undefined;
|
|
219
372
|
enabled: boolean;
|
|
220
373
|
}, {
|
|
374
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
375
|
+
submitOrderInstruction?: {
|
|
376
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
377
|
+
paid?: Record<string, string> | null | undefined;
|
|
378
|
+
} | null | undefined;
|
|
221
379
|
enabled: boolean;
|
|
222
380
|
}>>>;
|
|
223
381
|
displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -240,7 +398,23 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
240
398
|
}>;
|
|
241
399
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
242
400
|
padDigit: z.ZodNumber;
|
|
401
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
402
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
403
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
404
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
405
|
+
}, "strip", z.ZodTypeAny, {
|
|
406
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
407
|
+
paid?: Record<string, string> | null | undefined;
|
|
408
|
+
}, {
|
|
409
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
410
|
+
paid?: Record<string, string> | null | undefined;
|
|
411
|
+
}>>>;
|
|
243
412
|
}, "strip", z.ZodTypeAny, {
|
|
413
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
414
|
+
submitOrderInstruction?: {
|
|
415
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
416
|
+
paid?: Record<string, string> | null | undefined;
|
|
417
|
+
} | null | undefined;
|
|
244
418
|
enabled: boolean;
|
|
245
419
|
standSlotRange: {
|
|
246
420
|
min: number;
|
|
@@ -251,6 +425,11 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
251
425
|
}, {
|
|
252
426
|
enabled?: boolean | undefined;
|
|
253
427
|
prefix?: string | null | undefined;
|
|
428
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
429
|
+
submitOrderInstruction?: {
|
|
430
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
431
|
+
paid?: Record<string, string> | null | undefined;
|
|
432
|
+
} | null | undefined;
|
|
254
433
|
standSlotRange: {
|
|
255
434
|
min: number;
|
|
256
435
|
max: number;
|
|
@@ -260,9 +439,19 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
260
439
|
}, "strip", z.ZodTypeAny, {
|
|
261
440
|
requiredSlot?: boolean | null | undefined;
|
|
262
441
|
pickUp?: {
|
|
442
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
443
|
+
submitOrderInstruction?: {
|
|
444
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
445
|
+
paid?: Record<string, string> | null | undefined;
|
|
446
|
+
} | null | undefined;
|
|
263
447
|
enabled: boolean;
|
|
264
448
|
} | null | undefined;
|
|
265
449
|
displayStand?: {
|
|
450
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
451
|
+
submitOrderInstruction?: {
|
|
452
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
453
|
+
paid?: Record<string, string> | null | undefined;
|
|
454
|
+
} | null | undefined;
|
|
266
455
|
enabled: boolean;
|
|
267
456
|
standSlotRange: {
|
|
268
457
|
min: number;
|
|
@@ -274,11 +463,21 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
274
463
|
}, {
|
|
275
464
|
requiredSlot?: boolean | null | undefined;
|
|
276
465
|
pickUp?: {
|
|
466
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
467
|
+
submitOrderInstruction?: {
|
|
468
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
469
|
+
paid?: Record<string, string> | null | undefined;
|
|
470
|
+
} | null | undefined;
|
|
277
471
|
enabled: boolean;
|
|
278
472
|
} | null | undefined;
|
|
279
473
|
displayStand?: {
|
|
280
474
|
enabled?: boolean | undefined;
|
|
281
475
|
prefix?: string | null | undefined;
|
|
476
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
477
|
+
submitOrderInstruction?: {
|
|
478
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
479
|
+
paid?: Record<string, string> | null | undefined;
|
|
480
|
+
} | null | undefined;
|
|
282
481
|
standSlotRange: {
|
|
283
482
|
min: number;
|
|
284
483
|
max: number;
|
|
@@ -287,6 +486,28 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
287
486
|
} | null | undefined;
|
|
288
487
|
}>>>;
|
|
289
488
|
canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
489
|
+
takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
490
|
+
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
491
|
+
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
492
|
+
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
493
|
+
}, "strip", z.ZodTypeAny, {
|
|
494
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
495
|
+
paid?: Record<string, string> | null | undefined;
|
|
496
|
+
}, {
|
|
497
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
498
|
+
paid?: Record<string, string> | null | undefined;
|
|
499
|
+
}>>>;
|
|
500
|
+
}, "strip", z.ZodTypeAny, {
|
|
501
|
+
submitOrderInstruction?: {
|
|
502
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
503
|
+
paid?: Record<string, string> | null | undefined;
|
|
504
|
+
} | null | undefined;
|
|
505
|
+
}, {
|
|
506
|
+
submitOrderInstruction?: {
|
|
507
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
508
|
+
paid?: Record<string, string> | null | undefined;
|
|
509
|
+
} | null | undefined;
|
|
510
|
+
}>>>;
|
|
290
511
|
paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
291
512
|
paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
|
|
292
513
|
offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -383,9 +604,19 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
383
604
|
dineIn?: {
|
|
384
605
|
requiredSlot?: boolean | null | undefined;
|
|
385
606
|
pickUp?: {
|
|
607
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
608
|
+
submitOrderInstruction?: {
|
|
609
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
610
|
+
paid?: Record<string, string> | null | undefined;
|
|
611
|
+
} | null | undefined;
|
|
386
612
|
enabled: boolean;
|
|
387
613
|
} | null | undefined;
|
|
388
614
|
displayStand?: {
|
|
615
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
616
|
+
submitOrderInstruction?: {
|
|
617
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
618
|
+
paid?: Record<string, string> | null | undefined;
|
|
619
|
+
} | null | undefined;
|
|
389
620
|
enabled: boolean;
|
|
390
621
|
standSlotRange: {
|
|
391
622
|
min: number;
|
|
@@ -396,6 +627,12 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
396
627
|
} | null | undefined;
|
|
397
628
|
} | null | undefined;
|
|
398
629
|
canTakeaway?: boolean | null | undefined;
|
|
630
|
+
takeaway?: {
|
|
631
|
+
submitOrderInstruction?: {
|
|
632
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
633
|
+
paid?: Record<string, string> | null | undefined;
|
|
634
|
+
} | null | undefined;
|
|
635
|
+
} | null | undefined;
|
|
399
636
|
paymentSetting?: {
|
|
400
637
|
paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
401
638
|
offlinePaymentTypes?: {
|
|
@@ -420,11 +657,21 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
420
657
|
dineIn?: {
|
|
421
658
|
requiredSlot?: boolean | null | undefined;
|
|
422
659
|
pickUp?: {
|
|
660
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
661
|
+
submitOrderInstruction?: {
|
|
662
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
663
|
+
paid?: Record<string, string> | null | undefined;
|
|
664
|
+
} | null | undefined;
|
|
423
665
|
enabled: boolean;
|
|
424
666
|
} | null | undefined;
|
|
425
667
|
displayStand?: {
|
|
426
668
|
enabled?: boolean | undefined;
|
|
427
669
|
prefix?: string | null | undefined;
|
|
670
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
671
|
+
submitOrderInstruction?: {
|
|
672
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
673
|
+
paid?: Record<string, string> | null | undefined;
|
|
674
|
+
} | null | undefined;
|
|
428
675
|
standSlotRange: {
|
|
429
676
|
min: number;
|
|
430
677
|
max: number;
|
|
@@ -433,6 +680,12 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
433
680
|
} | null | undefined;
|
|
434
681
|
} | null | undefined;
|
|
435
682
|
canTakeaway?: boolean | null | undefined;
|
|
683
|
+
takeaway?: {
|
|
684
|
+
submitOrderInstruction?: {
|
|
685
|
+
payAtCounter?: Record<string, string> | null | undefined;
|
|
686
|
+
paid?: Record<string, string> | null | undefined;
|
|
687
|
+
} | null | undefined;
|
|
688
|
+
} | null | undefined;
|
|
436
689
|
paymentSetting?: {
|
|
437
690
|
paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
|
|
438
691
|
offlinePaymentTypes?: {
|
|
@@ -457,3 +710,5 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
457
710
|
export type OrderKioskSettings = z.infer<typeof OrderKioskSettings>;
|
|
458
711
|
export type OrderKioskDineIn = z.infer<typeof OrderKioskDineIn>;
|
|
459
712
|
export type OrderKioskPaymentSetting = z.infer<typeof OrderKioskPaymentSetting>;
|
|
713
|
+
export type KioskTextSettingDto = z.infer<typeof KioskTextSettingDto>;
|
|
714
|
+
export type KioskOrderInstructionSettingDto = z.infer<typeof KioskOrderInstructionSettingDto>;
|