@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
|
@@ -479,6 +479,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
479
479
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
480
480
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
481
481
|
enabled: z.ZodBoolean;
|
|
482
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
482
483
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
483
484
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
484
485
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -490,12 +491,14 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
490
491
|
paid?: Record<string, string> | null | undefined;
|
|
491
492
|
}>>>;
|
|
492
493
|
}, "strip", z.ZodTypeAny, {
|
|
494
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
493
495
|
submitOrderInstruction?: {
|
|
494
496
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
495
497
|
paid?: Record<string, string> | null | undefined;
|
|
496
498
|
} | null | undefined;
|
|
497
499
|
enabled: boolean;
|
|
498
500
|
}, {
|
|
501
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
499
502
|
submitOrderInstruction?: {
|
|
500
503
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
501
504
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -522,6 +525,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
522
525
|
}>;
|
|
523
526
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
524
527
|
padDigit: z.ZodNumber;
|
|
528
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
525
529
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
526
530
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
527
531
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -533,6 +537,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
533
537
|
paid?: Record<string, string> | null | undefined;
|
|
534
538
|
}>>>;
|
|
535
539
|
}, "strip", z.ZodTypeAny, {
|
|
540
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
536
541
|
submitOrderInstruction?: {
|
|
537
542
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
538
543
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -547,6 +552,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
547
552
|
}, {
|
|
548
553
|
enabled?: boolean | undefined;
|
|
549
554
|
prefix?: string | null | undefined;
|
|
555
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
550
556
|
submitOrderInstruction?: {
|
|
551
557
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
552
558
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -560,6 +566,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
560
566
|
}, "strip", z.ZodTypeAny, {
|
|
561
567
|
requiredSlot?: boolean | null | undefined;
|
|
562
568
|
pickUp?: {
|
|
569
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
563
570
|
submitOrderInstruction?: {
|
|
564
571
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
565
572
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -567,6 +574,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
567
574
|
enabled: boolean;
|
|
568
575
|
} | null | undefined;
|
|
569
576
|
displayStand?: {
|
|
577
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
570
578
|
submitOrderInstruction?: {
|
|
571
579
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
572
580
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -582,6 +590,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
582
590
|
}, {
|
|
583
591
|
requiredSlot?: boolean | null | undefined;
|
|
584
592
|
pickUp?: {
|
|
593
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
585
594
|
submitOrderInstruction?: {
|
|
586
595
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
587
596
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -591,6 +600,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
591
600
|
displayStand?: {
|
|
592
601
|
enabled?: boolean | undefined;
|
|
593
602
|
prefix?: string | null | undefined;
|
|
603
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
594
604
|
submitOrderInstruction?: {
|
|
595
605
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
596
606
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -721,6 +731,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
721
731
|
dineIn?: {
|
|
722
732
|
requiredSlot?: boolean | null | undefined;
|
|
723
733
|
pickUp?: {
|
|
734
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
724
735
|
submitOrderInstruction?: {
|
|
725
736
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
726
737
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -728,6 +739,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
728
739
|
enabled: boolean;
|
|
729
740
|
} | null | undefined;
|
|
730
741
|
displayStand?: {
|
|
742
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
731
743
|
submitOrderInstruction?: {
|
|
732
744
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
733
745
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -772,6 +784,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
772
784
|
dineIn?: {
|
|
773
785
|
requiredSlot?: boolean | null | undefined;
|
|
774
786
|
pickUp?: {
|
|
787
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
775
788
|
submitOrderInstruction?: {
|
|
776
789
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
777
790
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -781,6 +794,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
781
794
|
displayStand?: {
|
|
782
795
|
enabled?: boolean | undefined;
|
|
783
796
|
prefix?: string | null | undefined;
|
|
797
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
784
798
|
submitOrderInstruction?: {
|
|
785
799
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
786
800
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1212,6 +1226,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1212
1226
|
dineIn?: {
|
|
1213
1227
|
requiredSlot?: boolean | null | undefined;
|
|
1214
1228
|
pickUp?: {
|
|
1229
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1215
1230
|
submitOrderInstruction?: {
|
|
1216
1231
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1217
1232
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1219,6 +1234,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1219
1234
|
enabled: boolean;
|
|
1220
1235
|
} | null | undefined;
|
|
1221
1236
|
displayStand?: {
|
|
1237
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1222
1238
|
submitOrderInstruction?: {
|
|
1223
1239
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1224
1240
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1300,6 +1316,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1300
1316
|
dineIn?: {
|
|
1301
1317
|
requiredSlot?: boolean | null | undefined;
|
|
1302
1318
|
pickUp?: {
|
|
1319
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1303
1320
|
submitOrderInstruction?: {
|
|
1304
1321
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1305
1322
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1309,6 +1326,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
|
|
|
1309
1326
|
displayStand?: {
|
|
1310
1327
|
enabled?: boolean | undefined;
|
|
1311
1328
|
prefix?: string | null | undefined;
|
|
1329
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1312
1330
|
submitOrderInstruction?: {
|
|
1313
1331
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1314
1332
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1919,6 +1937,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1919
1937
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
1920
1938
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1921
1939
|
enabled: z.ZodBoolean;
|
|
1940
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
1922
1941
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1923
1942
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1924
1943
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -1930,12 +1949,14 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1930
1949
|
paid?: Record<string, string> | null | undefined;
|
|
1931
1950
|
}>>>;
|
|
1932
1951
|
}, "strip", z.ZodTypeAny, {
|
|
1952
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1933
1953
|
submitOrderInstruction?: {
|
|
1934
1954
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1935
1955
|
paid?: Record<string, string> | null | undefined;
|
|
1936
1956
|
} | null | undefined;
|
|
1937
1957
|
enabled: boolean;
|
|
1938
1958
|
}, {
|
|
1959
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1939
1960
|
submitOrderInstruction?: {
|
|
1940
1961
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1941
1962
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1962,6 +1983,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1962
1983
|
}>;
|
|
1963
1984
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1964
1985
|
padDigit: z.ZodNumber;
|
|
1986
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
1965
1987
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1966
1988
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1967
1989
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -1973,6 +1995,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1973
1995
|
paid?: Record<string, string> | null | undefined;
|
|
1974
1996
|
}>>>;
|
|
1975
1997
|
}, "strip", z.ZodTypeAny, {
|
|
1998
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1976
1999
|
submitOrderInstruction?: {
|
|
1977
2000
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1978
2001
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -1987,6 +2010,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
1987
2010
|
}, {
|
|
1988
2011
|
enabled?: boolean | undefined;
|
|
1989
2012
|
prefix?: string | null | undefined;
|
|
2013
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
1990
2014
|
submitOrderInstruction?: {
|
|
1991
2015
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
1992
2016
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2000,6 +2024,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2000
2024
|
}, "strip", z.ZodTypeAny, {
|
|
2001
2025
|
requiredSlot?: boolean | null | undefined;
|
|
2002
2026
|
pickUp?: {
|
|
2027
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2003
2028
|
submitOrderInstruction?: {
|
|
2004
2029
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2005
2030
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2007,6 +2032,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2007
2032
|
enabled: boolean;
|
|
2008
2033
|
} | null | undefined;
|
|
2009
2034
|
displayStand?: {
|
|
2035
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2010
2036
|
submitOrderInstruction?: {
|
|
2011
2037
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2012
2038
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2022,6 +2048,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2022
2048
|
}, {
|
|
2023
2049
|
requiredSlot?: boolean | null | undefined;
|
|
2024
2050
|
pickUp?: {
|
|
2051
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2025
2052
|
submitOrderInstruction?: {
|
|
2026
2053
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2027
2054
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2031,6 +2058,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2031
2058
|
displayStand?: {
|
|
2032
2059
|
enabled?: boolean | undefined;
|
|
2033
2060
|
prefix?: string | null | undefined;
|
|
2061
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2034
2062
|
submitOrderInstruction?: {
|
|
2035
2063
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2036
2064
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2161,6 +2189,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2161
2189
|
dineIn?: {
|
|
2162
2190
|
requiredSlot?: boolean | null | undefined;
|
|
2163
2191
|
pickUp?: {
|
|
2192
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2164
2193
|
submitOrderInstruction?: {
|
|
2165
2194
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2166
2195
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2168,6 +2197,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2168
2197
|
enabled: boolean;
|
|
2169
2198
|
} | null | undefined;
|
|
2170
2199
|
displayStand?: {
|
|
2200
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2171
2201
|
submitOrderInstruction?: {
|
|
2172
2202
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2173
2203
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2212,6 +2242,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2212
2242
|
dineIn?: {
|
|
2213
2243
|
requiredSlot?: boolean | null | undefined;
|
|
2214
2244
|
pickUp?: {
|
|
2245
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2215
2246
|
submitOrderInstruction?: {
|
|
2216
2247
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2217
2248
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2221,6 +2252,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2221
2252
|
displayStand?: {
|
|
2222
2253
|
enabled?: boolean | undefined;
|
|
2223
2254
|
prefix?: string | null | undefined;
|
|
2255
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2224
2256
|
submitOrderInstruction?: {
|
|
2225
2257
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2226
2258
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2651,6 +2683,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2651
2683
|
dineIn?: {
|
|
2652
2684
|
requiredSlot?: boolean | null | undefined;
|
|
2653
2685
|
pickUp?: {
|
|
2686
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2654
2687
|
submitOrderInstruction?: {
|
|
2655
2688
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2656
2689
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2658,6 +2691,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2658
2691
|
enabled: boolean;
|
|
2659
2692
|
} | null | undefined;
|
|
2660
2693
|
displayStand?: {
|
|
2694
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2661
2695
|
submitOrderInstruction?: {
|
|
2662
2696
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2663
2697
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2739,6 +2773,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2739
2773
|
dineIn?: {
|
|
2740
2774
|
requiredSlot?: boolean | null | undefined;
|
|
2741
2775
|
pickUp?: {
|
|
2776
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2742
2777
|
submitOrderInstruction?: {
|
|
2743
2778
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2744
2779
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -2748,6 +2783,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
|
|
|
2748
2783
|
displayStand?: {
|
|
2749
2784
|
enabled?: boolean | undefined;
|
|
2750
2785
|
prefix?: string | null | undefined;
|
|
2786
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
2751
2787
|
submitOrderInstruction?: {
|
|
2752
2788
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
2753
2789
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3507,6 +3507,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3507
3507
|
requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
3508
3508
|
pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3509
3509
|
enabled: z.ZodBoolean;
|
|
3510
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
3510
3511
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3511
3512
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3512
3513
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -3518,12 +3519,14 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3518
3519
|
paid?: Record<string, string> | null | undefined;
|
|
3519
3520
|
}>>>;
|
|
3520
3521
|
}, "strip", z.ZodTypeAny, {
|
|
3522
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3521
3523
|
submitOrderInstruction?: {
|
|
3522
3524
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3523
3525
|
paid?: Record<string, string> | null | undefined;
|
|
3524
3526
|
} | null | undefined;
|
|
3525
3527
|
enabled: boolean;
|
|
3526
3528
|
}, {
|
|
3529
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3527
3530
|
submitOrderInstruction?: {
|
|
3528
3531
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3529
3532
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3550,6 +3553,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3550
3553
|
}>;
|
|
3551
3554
|
prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
3552
3555
|
padDigit: z.ZodNumber;
|
|
3556
|
+
enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
|
|
3553
3557
|
submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3554
3558
|
payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
3555
3559
|
paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
@@ -3561,6 +3565,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3561
3565
|
paid?: Record<string, string> | null | undefined;
|
|
3562
3566
|
}>>>;
|
|
3563
3567
|
}, "strip", z.ZodTypeAny, {
|
|
3568
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3564
3569
|
submitOrderInstruction?: {
|
|
3565
3570
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3566
3571
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3575,6 +3580,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3575
3580
|
}, {
|
|
3576
3581
|
enabled?: boolean | undefined;
|
|
3577
3582
|
prefix?: string | null | undefined;
|
|
3583
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3578
3584
|
submitOrderInstruction?: {
|
|
3579
3585
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3580
3586
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3588,6 +3594,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3588
3594
|
}, "strip", z.ZodTypeAny, {
|
|
3589
3595
|
requiredSlot?: boolean | null | undefined;
|
|
3590
3596
|
pickUp?: {
|
|
3597
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3591
3598
|
submitOrderInstruction?: {
|
|
3592
3599
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3593
3600
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3595,6 +3602,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3595
3602
|
enabled: boolean;
|
|
3596
3603
|
} | null | undefined;
|
|
3597
3604
|
displayStand?: {
|
|
3605
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3598
3606
|
submitOrderInstruction?: {
|
|
3599
3607
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3600
3608
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3610,6 +3618,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3610
3618
|
}, {
|
|
3611
3619
|
requiredSlot?: boolean | null | undefined;
|
|
3612
3620
|
pickUp?: {
|
|
3621
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3613
3622
|
submitOrderInstruction?: {
|
|
3614
3623
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3615
3624
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3619,6 +3628,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3619
3628
|
displayStand?: {
|
|
3620
3629
|
enabled?: boolean | undefined;
|
|
3621
3630
|
prefix?: string | null | undefined;
|
|
3631
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3622
3632
|
submitOrderInstruction?: {
|
|
3623
3633
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3624
3634
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3749,6 +3759,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3749
3759
|
dineIn?: {
|
|
3750
3760
|
requiredSlot?: boolean | null | undefined;
|
|
3751
3761
|
pickUp?: {
|
|
3762
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3752
3763
|
submitOrderInstruction?: {
|
|
3753
3764
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3754
3765
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3756,6 +3767,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3756
3767
|
enabled: boolean;
|
|
3757
3768
|
} | null | undefined;
|
|
3758
3769
|
displayStand?: {
|
|
3770
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3759
3771
|
submitOrderInstruction?: {
|
|
3760
3772
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3761
3773
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3800,6 +3812,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3800
3812
|
dineIn?: {
|
|
3801
3813
|
requiredSlot?: boolean | null | undefined;
|
|
3802
3814
|
pickUp?: {
|
|
3815
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3803
3816
|
submitOrderInstruction?: {
|
|
3804
3817
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3805
3818
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -3809,6 +3822,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
3809
3822
|
displayStand?: {
|
|
3810
3823
|
enabled?: boolean | undefined;
|
|
3811
3824
|
prefix?: string | null | undefined;
|
|
3825
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
3812
3826
|
submitOrderInstruction?: {
|
|
3813
3827
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
3814
3828
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -4016,6 +4030,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
4016
4030
|
dineIn?: {
|
|
4017
4031
|
requiredSlot?: boolean | null | undefined;
|
|
4018
4032
|
pickUp?: {
|
|
4033
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
4019
4034
|
submitOrderInstruction?: {
|
|
4020
4035
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
4021
4036
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -4023,6 +4038,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
4023
4038
|
enabled: boolean;
|
|
4024
4039
|
} | null | undefined;
|
|
4025
4040
|
displayStand?: {
|
|
4041
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
4026
4042
|
submitOrderInstruction?: {
|
|
4027
4043
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
4028
4044
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -4207,6 +4223,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
4207
4223
|
dineIn?: {
|
|
4208
4224
|
requiredSlot?: boolean | null | undefined;
|
|
4209
4225
|
pickUp?: {
|
|
4226
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
4210
4227
|
submitOrderInstruction?: {
|
|
4211
4228
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
4212
4229
|
paid?: Record<string, string> | null | undefined;
|
|
@@ -4216,6 +4233,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
|
|
|
4216
4233
|
displayStand?: {
|
|
4217
4234
|
enabled?: boolean | undefined;
|
|
4218
4235
|
prefix?: string | null | undefined;
|
|
4236
|
+
enablePaxDialog?: boolean | null | undefined;
|
|
4219
4237
|
submitOrderInstruction?: {
|
|
4220
4238
|
payAtCounter?: Record<string, string> | null | undefined;
|
|
4221
4239
|
paid?: Record<string, string> | null | undefined;
|