@feedmepos/mf-order-setting 0.0.23 → 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-BdJCcotz.js → KioskDevicesView-DGkvW2mH.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DUPfN7ti.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BGZLd8T_.js} +2 -2
- package/dist/KioskSettingView-DLb5nnCu.js +821 -0
- package/dist/{KioskView-DPU-oQ1H.js → KioskView-kZZYSfUh.js} +74 -70
- package/dist/{OrderSettingsView-BOiflwB_.js → OrderSettingsView-Cil4j9G5.js} +4 -4
- package/dist/{app-CaYWSLe1.js → app-D47VRl5B.js} +37 -33
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-8NyoNely.js → dayjs.min-R4180ukF.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +4 -0
- package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +4 -0
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +24 -0
- package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -2
- package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +9 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-B7GFhkAE.js → index-DgLlDwJK.js} +2 -2
- package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +14 -0
- package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +30 -0
- package/dist/package/entity/order-setting/order-setting.do.d.ts +18 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +36 -0
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +18 -0
- package/dist/package/entity/websocket/websocket.dto.d.ts +40 -0
- package/dist/{queue.do-CIyIpp22.js → queue.do-CNMuossU.js} +5 -1
- package/package.json +1 -1
- package/src/locales/en-US.json +2 -0
- package/src/locales/zh-CN.json +2 -0
- package/src/modules/order-setting/kiosk/interface.ts +4 -0
- package/src/stores/order-setting/mapper.ts +15 -9
- package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
- package/src/views/kiosk/settings/KioskSettingView.vue +26 -0
- package/dist/KioskSettingView-BChhriPk.js +0 -782
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as i, s as _, S as p, r as o } from "./dayjs.min-
|
|
2
|
-
import "./queue.do-
|
|
1
|
+
import { g as i, s as _, S as p, r as o } from "./dayjs.min-R4180ukF.js";
|
|
2
|
+
import "./queue.do-CNMuossU.js";
|
|
3
3
|
async function C() {
|
|
4
4
|
const r = await o().get("/order-settings");
|
|
5
5
|
return i(r);
|
|
@@ -140,6 +140,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
140
140
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
141
141
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
142
142
|
enabled: z.ZodBoolean;
|
|
143
|
+
enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
143
144
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
144
145
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
145
146
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -156,7 +157,9 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
156
157
|
paid?: Record<string, string> | null | undefined;
|
|
157
158
|
} | null | undefined;
|
|
158
159
|
enabled: boolean;
|
|
160
|
+
enablePaxDialog: boolean | null;
|
|
159
161
|
}, {
|
|
162
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
160
163
|
submitOrderInstruction?: {
|
|
161
164
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
162
165
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -183,6 +186,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
183
186
|
}>;
|
|
184
187
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
185
188
|
padDigit: z.ZodNumber;
|
|
189
|
+
enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
186
190
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
187
191
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
188
192
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -205,9 +209,11 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
205
209
|
};
|
|
206
210
|
prefix: string | null;
|
|
207
211
|
padDigit: number;
|
|
212
|
+
enablePaxDialog: boolean | null;
|
|
208
213
|
}, {
|
|
209
214
|
enabled?: boolean | undefined;
|
|
210
215
|
prefix?: string | null | undefined;
|
|
216
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
211
217
|
submitOrderInstruction?: {
|
|
212
218
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
213
219
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -226,6 +232,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
226
232
|
paid?: Record<string, string> | null | undefined;
|
|
227
233
|
} | null | undefined;
|
|
228
234
|
enabled: boolean;
|
|
235
|
+
enablePaxDialog: boolean | null;
|
|
229
236
|
} | null | undefined;
|
|
230
237
|
displayStand?: {
|
|
231
238
|
submitOrderInstruction?: {
|
|
@@ -239,10 +246,12 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
239
246
|
};
|
|
240
247
|
prefix: string | null;
|
|
241
248
|
padDigit: number;
|
|
249
|
+
enablePaxDialog: boolean | null;
|
|
242
250
|
} | null | undefined;
|
|
243
251
|
}, {
|
|
244
252
|
requiredSlot?: boolean | null | undefined;
|
|
245
253
|
pickUp?: {
|
|
254
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
246
255
|
submitOrderInstruction?: {
|
|
247
256
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
248
257
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -252,6 +261,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
252
261
|
displayStand?: {
|
|
253
262
|
enabled?: boolean | undefined;
|
|
254
263
|
prefix?: string | null | undefined;
|
|
264
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
255
265
|
submitOrderInstruction?: {
|
|
256
266
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
257
267
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -387,6 +397,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
387
397
|
paid?: Record<string, string> | null | undefined;
|
|
388
398
|
} | null | undefined;
|
|
389
399
|
enabled: boolean;
|
|
400
|
+
enablePaxDialog: boolean | null;
|
|
390
401
|
} | null | undefined;
|
|
391
402
|
displayStand?: {
|
|
392
403
|
submitOrderInstruction?: {
|
|
@@ -400,6 +411,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
400
411
|
};
|
|
401
412
|
prefix: string | null;
|
|
402
413
|
padDigit: number;
|
|
414
|
+
enablePaxDialog: boolean | null;
|
|
403
415
|
} | null | undefined;
|
|
404
416
|
} | null | undefined;
|
|
405
417
|
canTakeaway?: boolean | null | undefined;
|
|
@@ -433,6 +445,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
433
445
|
dineIn?: {
|
|
434
446
|
requiredSlot?: boolean | null | undefined;
|
|
435
447
|
pickUp?: {
|
|
448
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
436
449
|
submitOrderInstruction?: {
|
|
437
450
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
438
451
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -442,6 +455,7 @@ export declare const FdoOrderKioskSettings: z.ZodObject<{
|
|
|
442
455
|
displayStand?: {
|
|
443
456
|
enabled?: boolean | undefined;
|
|
444
457
|
prefix?: string | null | undefined;
|
|
458
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
445
459
|
submitOrderInstruction?: {
|
|
446
460
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
447
461
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -30,6 +30,7 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
30
30
|
}>;
|
|
31
31
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
32
32
|
padDigit: z.ZodNumber;
|
|
33
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
33
34
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
34
35
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
35
36
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -41,6 +42,7 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
41
42
|
paid?: Record<string, string> | null | undefined;
|
|
42
43
|
}>>>;
|
|
43
44
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
44
46
|
submitOrderInstruction?: {
|
|
45
47
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
46
48
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -55,6 +57,7 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
55
57
|
}, {
|
|
56
58
|
enabled?: boolean | undefined;
|
|
57
59
|
prefix?: string | null | undefined;
|
|
60
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
58
61
|
submitOrderInstruction?: {
|
|
59
62
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
60
63
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -67,6 +70,7 @@ export declare const DisplayStandSettingDto: z.ZodObject<{
|
|
|
67
70
|
}>;
|
|
68
71
|
export declare const KioskPickAtCounterSettingDto: z.ZodObject<{
|
|
69
72
|
enabled: z.ZodBoolean;
|
|
73
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
70
74
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
71
75
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
72
76
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -78,12 +82,14 @@ export declare const KioskPickAtCounterSettingDto: z.ZodObject<{
|
|
|
78
82
|
paid?: Record<string, string> | null | undefined;
|
|
79
83
|
}>>>;
|
|
80
84
|
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
81
86
|
submitOrderInstruction?: {
|
|
82
87
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
83
88
|
paid?: Record<string, string> | null | undefined;
|
|
84
89
|
} | null | undefined;
|
|
85
90
|
enabled: boolean;
|
|
86
91
|
}, {
|
|
92
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
87
93
|
submitOrderInstruction?: {
|
|
88
94
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
89
95
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -94,6 +100,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
94
100
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
95
101
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
96
102
|
enabled: z.ZodBoolean;
|
|
103
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
97
104
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
98
105
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
99
106
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -105,12 +112,14 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
105
112
|
paid?: Record<string, string> | null | undefined;
|
|
106
113
|
}>>>;
|
|
107
114
|
}, "strip", z.ZodTypeAny, {
|
|
115
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
108
116
|
submitOrderInstruction?: {
|
|
109
117
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
110
118
|
paid?: Record<string, string> | null | undefined;
|
|
111
119
|
} | null | undefined;
|
|
112
120
|
enabled: boolean;
|
|
113
121
|
}, {
|
|
122
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
114
123
|
submitOrderInstruction?: {
|
|
115
124
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
116
125
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -137,6 +146,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
137
146
|
}>;
|
|
138
147
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
139
148
|
padDigit: z.ZodNumber;
|
|
149
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
140
150
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
141
151
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
142
152
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -148,6 +158,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
148
158
|
paid?: Record<string, string> | null | undefined;
|
|
149
159
|
}>>>;
|
|
150
160
|
}, "strip", z.ZodTypeAny, {
|
|
161
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
151
162
|
submitOrderInstruction?: {
|
|
152
163
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
153
164
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -162,6 +173,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
162
173
|
}, {
|
|
163
174
|
enabled?: boolean | undefined;
|
|
164
175
|
prefix?: string | null | undefined;
|
|
176
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
165
177
|
submitOrderInstruction?: {
|
|
166
178
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
167
179
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -175,6 +187,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
175
187
|
}, "strip", z.ZodTypeAny, {
|
|
176
188
|
requiredSlot?: boolean | null | undefined;
|
|
177
189
|
pickUp?: {
|
|
190
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
178
191
|
submitOrderInstruction?: {
|
|
179
192
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
180
193
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -182,6 +195,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
182
195
|
enabled: boolean;
|
|
183
196
|
} | null | undefined;
|
|
184
197
|
displayStand?: {
|
|
198
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
185
199
|
submitOrderInstruction?: {
|
|
186
200
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
187
201
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -197,6 +211,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
197
211
|
}, {
|
|
198
212
|
requiredSlot?: boolean | null | undefined;
|
|
199
213
|
pickUp?: {
|
|
214
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
200
215
|
submitOrderInstruction?: {
|
|
201
216
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
202
217
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -206,6 +221,7 @@ export declare const OrderKioskDineIn: z.ZodObject<{
|
|
|
206
221
|
displayStand?: {
|
|
207
222
|
enabled?: boolean | undefined;
|
|
208
223
|
prefix?: string | null | undefined;
|
|
224
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
209
225
|
submitOrderInstruction?: {
|
|
210
226
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
211
227
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -336,6 +352,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
336
352
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
337
353
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
338
354
|
enabled: z.ZodBoolean;
|
|
355
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
339
356
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
340
357
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
341
358
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -347,12 +364,14 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
347
364
|
paid?: Record<string, string> | null | undefined;
|
|
348
365
|
}>>>;
|
|
349
366
|
}, "strip", z.ZodTypeAny, {
|
|
367
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
350
368
|
submitOrderInstruction?: {
|
|
351
369
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
352
370
|
paid?: Record<string, string> | null | undefined;
|
|
353
371
|
} | null | undefined;
|
|
354
372
|
enabled: boolean;
|
|
355
373
|
}, {
|
|
374
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
356
375
|
submitOrderInstruction?: {
|
|
357
376
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
358
377
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -379,6 +398,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
379
398
|
}>;
|
|
380
399
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
381
400
|
padDigit: z.ZodNumber;
|
|
401
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
382
402
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
383
403
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
384
404
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -390,6 +410,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
390
410
|
paid?: Record<string, string> | null | undefined;
|
|
391
411
|
}>>>;
|
|
392
412
|
}, "strip", z.ZodTypeAny, {
|
|
413
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
393
414
|
submitOrderInstruction?: {
|
|
394
415
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
395
416
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -404,6 +425,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
404
425
|
}, {
|
|
405
426
|
enabled?: boolean | undefined;
|
|
406
427
|
prefix?: string | null | undefined;
|
|
428
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
407
429
|
submitOrderInstruction?: {
|
|
408
430
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
409
431
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -417,6 +439,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
417
439
|
}, "strip", z.ZodTypeAny, {
|
|
418
440
|
requiredSlot?: boolean | null | undefined;
|
|
419
441
|
pickUp?: {
|
|
442
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
420
443
|
submitOrderInstruction?: {
|
|
421
444
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
422
445
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -424,6 +447,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
424
447
|
enabled: boolean;
|
|
425
448
|
} | null | undefined;
|
|
426
449
|
displayStand?: {
|
|
450
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
427
451
|
submitOrderInstruction?: {
|
|
428
452
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
429
453
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -439,6 +463,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
439
463
|
}, {
|
|
440
464
|
requiredSlot?: boolean | null | undefined;
|
|
441
465
|
pickUp?: {
|
|
466
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
442
467
|
submitOrderInstruction?: {
|
|
443
468
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
444
469
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -448,6 +473,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
448
473
|
displayStand?: {
|
|
449
474
|
enabled?: boolean | undefined;
|
|
450
475
|
prefix?: string | null | undefined;
|
|
476
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
451
477
|
submitOrderInstruction?: {
|
|
452
478
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
453
479
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -578,6 +604,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
578
604
|
dineIn?: {
|
|
579
605
|
requiredSlot?: boolean | null | undefined;
|
|
580
606
|
pickUp?: {
|
|
607
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
581
608
|
submitOrderInstruction?: {
|
|
582
609
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
583
610
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -585,6 +612,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
585
612
|
enabled: boolean;
|
|
586
613
|
} | null | undefined;
|
|
587
614
|
displayStand?: {
|
|
615
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
588
616
|
submitOrderInstruction?: {
|
|
589
617
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
590
618
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -629,6 +657,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
629
657
|
dineIn?: {
|
|
630
658
|
requiredSlot?: boolean | null | undefined;
|
|
631
659
|
pickUp?: {
|
|
660
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
632
661
|
submitOrderInstruction?: {
|
|
633
662
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
634
663
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -638,6 +667,7 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
|
|
|
638
667
|
displayStand?: {
|
|
639
668
|
enabled?: boolean | undefined;
|
|
640
669
|
prefix?: string | null | undefined;
|
|
670
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
641
671
|
submitOrderInstruction?: {
|
|
642
672
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
643
673
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -446,6 +446,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
446
446
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
447
447
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
448
448
|
enabled: z.ZodBoolean;
|
|
449
|
+
enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
449
450
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
450
451
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
451
452
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -462,7 +463,9 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
462
463
|
paid?: Record<string, string> | null | undefined;
|
|
463
464
|
} | null | undefined;
|
|
464
465
|
enabled: boolean;
|
|
466
|
+
enablePaxDialog: boolean | null;
|
|
465
467
|
}, {
|
|
468
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
466
469
|
submitOrderInstruction?: {
|
|
467
470
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
468
471
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -489,6 +492,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
489
492
|
}>;
|
|
490
493
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
491
494
|
padDigit: z.ZodNumber;
|
|
495
|
+
enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
|
|
492
496
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
493
497
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
494
498
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -511,9 +515,11 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
511
515
|
};
|
|
512
516
|
prefix: string | null;
|
|
513
517
|
padDigit: number;
|
|
518
|
+
enablePaxDialog: boolean | null;
|
|
514
519
|
}, {
|
|
515
520
|
enabled?: boolean | undefined;
|
|
516
521
|
prefix?: string | null | undefined;
|
|
522
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
517
523
|
submitOrderInstruction?: {
|
|
518
524
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
519
525
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -532,6 +538,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
532
538
|
paid?: Record<string, string> | null | undefined;
|
|
533
539
|
} | null | undefined;
|
|
534
540
|
enabled: boolean;
|
|
541
|
+
enablePaxDialog: boolean | null;
|
|
535
542
|
} | null | undefined;
|
|
536
543
|
displayStand?: {
|
|
537
544
|
submitOrderInstruction?: {
|
|
@@ -545,10 +552,12 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
545
552
|
};
|
|
546
553
|
prefix: string | null;
|
|
547
554
|
padDigit: number;
|
|
555
|
+
enablePaxDialog: boolean | null;
|
|
548
556
|
} | null | undefined;
|
|
549
557
|
}, {
|
|
550
558
|
requiredSlot?: boolean | null | undefined;
|
|
551
559
|
pickUp?: {
|
|
560
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
552
561
|
submitOrderInstruction?: {
|
|
553
562
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
554
563
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -558,6 +567,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
558
567
|
displayStand?: {
|
|
559
568
|
enabled?: boolean | undefined;
|
|
560
569
|
prefix?: string | null | undefined;
|
|
570
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
561
571
|
submitOrderInstruction?: {
|
|
562
572
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
563
573
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -693,6 +703,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
693
703
|
paid?: Record<string, string> | null | undefined;
|
|
694
704
|
} | null | undefined;
|
|
695
705
|
enabled: boolean;
|
|
706
|
+
enablePaxDialog: boolean | null;
|
|
696
707
|
} | null | undefined;
|
|
697
708
|
displayStand?: {
|
|
698
709
|
submitOrderInstruction?: {
|
|
@@ -706,6 +717,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
706
717
|
};
|
|
707
718
|
prefix: string | null;
|
|
708
719
|
padDigit: number;
|
|
720
|
+
enablePaxDialog: boolean | null;
|
|
709
721
|
} | null | undefined;
|
|
710
722
|
} | null | undefined;
|
|
711
723
|
canTakeaway?: boolean | null | undefined;
|
|
@@ -739,6 +751,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
739
751
|
dineIn?: {
|
|
740
752
|
requiredSlot?: boolean | null | undefined;
|
|
741
753
|
pickUp?: {
|
|
754
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
742
755
|
submitOrderInstruction?: {
|
|
743
756
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
744
757
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -748,6 +761,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
748
761
|
displayStand?: {
|
|
749
762
|
enabled?: boolean | undefined;
|
|
750
763
|
prefix?: string | null | undefined;
|
|
764
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
751
765
|
submitOrderInstruction?: {
|
|
752
766
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
753
767
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -969,6 +983,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
969
983
|
paid?: Record<string, string> | null | undefined;
|
|
970
984
|
} | null | undefined;
|
|
971
985
|
enabled: boolean;
|
|
986
|
+
enablePaxDialog: boolean | null;
|
|
972
987
|
} | null | undefined;
|
|
973
988
|
displayStand?: {
|
|
974
989
|
submitOrderInstruction?: {
|
|
@@ -982,6 +997,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
982
997
|
};
|
|
983
998
|
prefix: string | null;
|
|
984
999
|
padDigit: number;
|
|
1000
|
+
enablePaxDialog: boolean | null;
|
|
985
1001
|
} | null | undefined;
|
|
986
1002
|
} | null | undefined;
|
|
987
1003
|
canTakeaway?: boolean | null | undefined;
|
|
@@ -1115,6 +1131,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
1115
1131
|
dineIn?: {
|
|
1116
1132
|
requiredSlot?: boolean | null | undefined;
|
|
1117
1133
|
pickUp?: {
|
|
1134
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1118
1135
|
submitOrderInstruction?: {
|
|
1119
1136
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1120
1137
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1124,6 +1141,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
|
|
|
1124
1141
|
displayStand?: {
|
|
1125
1142
|
enabled?: boolean | undefined;
|
|
1126
1143
|
prefix?: string | null | undefined;
|
|
1144
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1127
1145
|
submitOrderInstruction?: {
|
|
1128
1146
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1129
1147
|
paid?: Record<string, string> | null | undefined;
|