@feedmepos/mf-order-setting 0.0.23 → 0.0.25
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-gzH9-zL_.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DUPfN7ti.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-CLpClo-r.js} +3 -3
- package/dist/KioskSettingView-D1WdpaQN.js +821 -0
- package/dist/{KioskView-DPU-oQ1H.js → KioskView-D6-1bn1n.js} +90 -76
- package/dist/{OrderSettingsView-BOiflwB_.js → OrderSettingsView-CqZREmjo.js} +6155 -6096
- package/dist/{app-CaYWSLe1.js → app-i4N2c7ms.js} +54 -38
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-8NyoNely.js → dayjs.min-CA-XbgTY.js} +36 -36
- package/dist/frontend/mf-order/src/app.d.ts +16 -0
- package/dist/frontend/mf-order/src/main.d.ts +797 -0
- package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +4 -0
- package/dist/frontend/mf-order/src/stores/iframe/index.d.ts +6 -6
- package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +8 -260
- package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +29 -710
- package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -2
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +1456 -2239
- 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-C4HI1NS4.js} +2 -2
- package/dist/package/entity/delivery/delivery.dto.d.ts +11 -6
- package/dist/package/entity/food-court/food-court.dto.d.ts +1 -1
- package/dist/package/entity/food-court/order.dto.d.ts +727 -378
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +6 -6
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +8 -8
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +16 -16
- package/dist/package/entity/index.d.ts +1 -0
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1337 -656
- package/dist/package/entity/order/order.dto.d.ts +4942 -2401
- package/dist/package/entity/order/order.enum.d.ts +1 -1
- package/dist/package/entity/order/payment/payment.dto.d.ts +2899 -1419
- package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +9 -21
- package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +19 -51
- 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 +26 -0
- package/dist/package/entity/order-setting/order-setting.dto.d.ts +52 -0
- package/dist/package/entity/order-setting/v3/v3.do.d.ts +3 -0
- package/dist/package/entity/order-setting/v3/v3.dto.d.ts +3 -0
- package/dist/package/entity/order-setting/v3/v3.enum.d.ts +3 -0
- package/dist/package/entity/payment/payment.dto.d.ts +3 -3
- package/dist/package/entity/restaurant/restaurant.dto.d.ts +37 -11
- package/dist/package/entity/websocket/websocket.dto.d.ts +40 -0
- package/dist/{queue.do-CIyIpp22.js → queue.do-DcOVgeUq.js} +17143 -16655
- package/package.json +3 -3
- package/src/Entry.vue +3 -3
- package/src/locales/en-US.json +8 -0
- package/src/locales/th-TH.json +257 -0
- package/src/locales/zh-CN.json +8 -0
- package/src/main.ts +9 -1
- package/src/modules/order-setting/kiosk/interface.ts +4 -0
- package/src/stores/iframe/index.ts +1 -1
- package/src/stores/kiosk/index.ts +1 -1
- package/src/stores/order-setting/index.ts +1 -1
- package/src/stores/order-setting/mapper.ts +27 -11
- package/src/stores/restaurant/index.ts +106 -85
- package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
- package/src/views/kiosk/settings/KioskSettingView.vue +26 -0
- package/src/views/order-settings/delivery/DeliverySetting.vue +12 -12
- package/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue +39 -35
- package/src/views/order-settings/dine-in/DineInSetting.vue +158 -24
- package/src/views/order-settings/general/GeneralSetting.vue +29 -33
- package/src/views/order-settings/pickup/PickUpSetting.vue +4 -2
- package/src/views/order-settings/pickup/PickUpSettingDialogContent.vue +23 -10
- package/src/views/order-settings/servicecharge/ServiceChargeSetting.vue +17 -8
- package/dist/KioskSettingView-BChhriPk.js +0 -782
|
@@ -418,10 +418,10 @@ export type FdoExternalOrderSubItem = {
|
|
|
418
418
|
variantSelected?: FdoExternalVariantSelected | null | undefined;
|
|
419
419
|
subItems: FdoExternalOrderSubItem[];
|
|
420
420
|
};
|
|
421
|
-
export declare const FdoExternalOrderSubItem: z.
|
|
421
|
+
export declare const FdoExternalOrderSubItem: z.ZodType<FdoExternalOrderSubItem>;
|
|
422
422
|
export declare const FdoExternalOrderItem: z.ZodObject<{
|
|
423
423
|
productId: z.ZodString;
|
|
424
|
-
subItems: z.ZodArray<z.
|
|
424
|
+
subItems: z.ZodArray<z.ZodType<FdoExternalOrderSubItem, z.ZodTypeDef, FdoExternalOrderSubItem>, "many">;
|
|
425
425
|
quantity: z.ZodNumber;
|
|
426
426
|
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
427
427
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -538,9 +538,7 @@ export declare const FdoExternalOrderItem: z.ZodObject<{
|
|
|
538
538
|
precision: number;
|
|
539
539
|
};
|
|
540
540
|
productId: string;
|
|
541
|
-
subItems:
|
|
542
|
-
[x: string]: any;
|
|
543
|
-
}[];
|
|
541
|
+
subItems: FdoExternalOrderSubItem[];
|
|
544
542
|
discounts: {
|
|
545
543
|
reference?: string | null | undefined;
|
|
546
544
|
name: string;
|
|
@@ -575,9 +573,7 @@ export declare const FdoExternalOrderItem: z.ZodObject<{
|
|
|
575
573
|
precision: number;
|
|
576
574
|
};
|
|
577
575
|
productId: string;
|
|
578
|
-
subItems:
|
|
579
|
-
[x: string]: any;
|
|
580
|
-
}[];
|
|
576
|
+
subItems: FdoExternalOrderSubItem[];
|
|
581
577
|
discounts: {
|
|
582
578
|
reference?: string | null | undefined;
|
|
583
579
|
name: string;
|
|
@@ -824,7 +820,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
824
820
|
}>, "many">;
|
|
825
821
|
items: z.ZodArray<z.ZodObject<{
|
|
826
822
|
productId: z.ZodString;
|
|
827
|
-
subItems: z.ZodArray<z.
|
|
823
|
+
subItems: z.ZodArray<z.ZodType<FdoExternalOrderSubItem, z.ZodTypeDef, FdoExternalOrderSubItem>, "many">;
|
|
828
824
|
quantity: z.ZodNumber;
|
|
829
825
|
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
830
826
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -941,9 +937,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
941
937
|
precision: number;
|
|
942
938
|
};
|
|
943
939
|
productId: string;
|
|
944
|
-
subItems:
|
|
945
|
-
[x: string]: any;
|
|
946
|
-
}[];
|
|
940
|
+
subItems: FdoExternalOrderSubItem[];
|
|
947
941
|
discounts: {
|
|
948
942
|
reference?: string | null | undefined;
|
|
949
943
|
name: string;
|
|
@@ -978,9 +972,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
978
972
|
precision: number;
|
|
979
973
|
};
|
|
980
974
|
productId: string;
|
|
981
|
-
subItems:
|
|
982
|
-
[x: string]: any;
|
|
983
|
-
}[];
|
|
975
|
+
subItems: FdoExternalOrderSubItem[];
|
|
984
976
|
discounts: {
|
|
985
977
|
reference?: string | null | undefined;
|
|
986
978
|
name: string;
|
|
@@ -1193,9 +1185,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1193
1185
|
precision: number;
|
|
1194
1186
|
};
|
|
1195
1187
|
productId: string;
|
|
1196
|
-
subItems:
|
|
1197
|
-
[x: string]: any;
|
|
1198
|
-
}[];
|
|
1188
|
+
subItems: FdoExternalOrderSubItem[];
|
|
1199
1189
|
discounts: {
|
|
1200
1190
|
reference?: string | null | undefined;
|
|
1201
1191
|
name: string;
|
|
@@ -1321,9 +1311,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
|
|
|
1321
1311
|
precision: number;
|
|
1322
1312
|
};
|
|
1323
1313
|
productId: string;
|
|
1324
|
-
subItems:
|
|
1325
|
-
[x: string]: any;
|
|
1326
|
-
}[];
|
|
1314
|
+
subItems: FdoExternalOrderSubItem[];
|
|
1327
1315
|
discounts: {
|
|
1328
1316
|
reference?: string | null | undefined;
|
|
1329
1317
|
name: string;
|
|
@@ -220,7 +220,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
220
220
|
}>, "many">;
|
|
221
221
|
items: z.ZodArray<z.ZodObject<{
|
|
222
222
|
productId: z.ZodString;
|
|
223
|
-
subItems: z.ZodArray<z.
|
|
223
|
+
subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
|
|
224
224
|
quantity: z.ZodNumber;
|
|
225
225
|
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
226
226
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -337,9 +337,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
337
337
|
precision: number;
|
|
338
338
|
};
|
|
339
339
|
productId: string;
|
|
340
|
-
subItems:
|
|
341
|
-
[x: string]: any;
|
|
342
|
-
}[];
|
|
340
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
343
341
|
discounts: {
|
|
344
342
|
reference?: string | null | undefined;
|
|
345
343
|
name: string;
|
|
@@ -374,9 +372,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
374
372
|
precision: number;
|
|
375
373
|
};
|
|
376
374
|
productId: string;
|
|
377
|
-
subItems:
|
|
378
|
-
[x: string]: any;
|
|
379
|
-
}[];
|
|
375
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
380
376
|
discounts: {
|
|
381
377
|
reference?: string | null | undefined;
|
|
382
378
|
name: string;
|
|
@@ -582,9 +578,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
582
578
|
precision: number;
|
|
583
579
|
};
|
|
584
580
|
productId: string;
|
|
585
|
-
subItems:
|
|
586
|
-
[x: string]: any;
|
|
587
|
-
}[];
|
|
581
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
588
582
|
discounts: {
|
|
589
583
|
reference?: string | null | undefined;
|
|
590
584
|
name: string;
|
|
@@ -703,9 +697,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
|
|
|
703
697
|
precision: number;
|
|
704
698
|
};
|
|
705
699
|
productId: string;
|
|
706
|
-
subItems:
|
|
707
|
-
[x: string]: any;
|
|
708
|
-
}[];
|
|
700
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
709
701
|
discounts: {
|
|
710
702
|
reference?: string | null | undefined;
|
|
711
703
|
name: string;
|
|
@@ -995,7 +987,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
995
987
|
}>>>>;
|
|
996
988
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
997
989
|
productId: z.ZodString;
|
|
998
|
-
subItems: z.ZodArray<z.
|
|
990
|
+
subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
|
|
999
991
|
quantity: z.ZodNumber;
|
|
1000
992
|
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1001
993
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1112,9 +1104,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1112
1104
|
precision: number;
|
|
1113
1105
|
};
|
|
1114
1106
|
productId: string;
|
|
1115
|
-
subItems:
|
|
1116
|
-
[x: string]: any;
|
|
1117
|
-
}[];
|
|
1107
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1118
1108
|
discounts: {
|
|
1119
1109
|
reference?: string | null | undefined;
|
|
1120
1110
|
name: string;
|
|
@@ -1149,9 +1139,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1149
1139
|
precision: number;
|
|
1150
1140
|
};
|
|
1151
1141
|
productId: string;
|
|
1152
|
-
subItems:
|
|
1153
|
-
[x: string]: any;
|
|
1154
|
-
}[];
|
|
1142
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1155
1143
|
discounts: {
|
|
1156
1144
|
reference?: string | null | undefined;
|
|
1157
1145
|
name: string;
|
|
@@ -1325,9 +1313,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1325
1313
|
precision: number;
|
|
1326
1314
|
};
|
|
1327
1315
|
productId: string;
|
|
1328
|
-
subItems:
|
|
1329
|
-
[x: string]: any;
|
|
1330
|
-
}[];
|
|
1316
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1331
1317
|
discounts: {
|
|
1332
1318
|
reference?: string | null | undefined;
|
|
1333
1319
|
name: string;
|
|
@@ -1446,9 +1432,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1446
1432
|
precision: number;
|
|
1447
1433
|
};
|
|
1448
1434
|
productId: string;
|
|
1449
|
-
subItems:
|
|
1450
|
-
[x: string]: any;
|
|
1451
|
-
}[];
|
|
1435
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1452
1436
|
discounts: {
|
|
1453
1437
|
reference?: string | null | undefined;
|
|
1454
1438
|
name: string;
|
|
@@ -1570,9 +1554,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1570
1554
|
precision: number;
|
|
1571
1555
|
};
|
|
1572
1556
|
productId: string;
|
|
1573
|
-
subItems:
|
|
1574
|
-
[x: string]: any;
|
|
1575
|
-
}[];
|
|
1557
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1576
1558
|
discounts: {
|
|
1577
1559
|
reference?: string | null | undefined;
|
|
1578
1560
|
name: string;
|
|
@@ -1694,9 +1676,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
|
|
|
1694
1676
|
precision: number;
|
|
1695
1677
|
};
|
|
1696
1678
|
productId: string;
|
|
1697
|
-
subItems:
|
|
1698
|
-
[x: string]: any;
|
|
1699
|
-
}[];
|
|
1679
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
1700
1680
|
discounts: {
|
|
1701
1681
|
reference?: string | null | undefined;
|
|
1702
1682
|
name: string;
|
|
@@ -2021,7 +2001,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2021
2001
|
}>, "many">;
|
|
2022
2002
|
items: z.ZodArray<z.ZodObject<{
|
|
2023
2003
|
productId: z.ZodString;
|
|
2024
|
-
subItems: z.ZodArray<z.
|
|
2004
|
+
subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
|
|
2025
2005
|
quantity: z.ZodNumber;
|
|
2026
2006
|
remark: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2027
2007
|
variantSelected: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -2138,9 +2118,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2138
2118
|
precision: number;
|
|
2139
2119
|
};
|
|
2140
2120
|
productId: string;
|
|
2141
|
-
subItems:
|
|
2142
|
-
[x: string]: any;
|
|
2143
|
-
}[];
|
|
2121
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2144
2122
|
discounts: {
|
|
2145
2123
|
reference?: string | null | undefined;
|
|
2146
2124
|
name: string;
|
|
@@ -2175,9 +2153,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2175
2153
|
precision: number;
|
|
2176
2154
|
};
|
|
2177
2155
|
productId: string;
|
|
2178
|
-
subItems:
|
|
2179
|
-
[x: string]: any;
|
|
2180
|
-
}[];
|
|
2156
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2181
2157
|
discounts: {
|
|
2182
2158
|
reference?: string | null | undefined;
|
|
2183
2159
|
name: string;
|
|
@@ -2390,9 +2366,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2390
2366
|
precision: number;
|
|
2391
2367
|
};
|
|
2392
2368
|
productId: string;
|
|
2393
|
-
subItems:
|
|
2394
|
-
[x: string]: any;
|
|
2395
|
-
}[];
|
|
2369
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2396
2370
|
discounts: {
|
|
2397
2371
|
reference?: string | null | undefined;
|
|
2398
2372
|
name: string;
|
|
@@ -2518,9 +2492,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2518
2492
|
precision: number;
|
|
2519
2493
|
};
|
|
2520
2494
|
productId: string;
|
|
2521
|
-
subItems:
|
|
2522
|
-
[x: string]: any;
|
|
2523
|
-
}[];
|
|
2495
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2524
2496
|
discounts: {
|
|
2525
2497
|
reference?: string | null | undefined;
|
|
2526
2498
|
name: string;
|
|
@@ -2649,9 +2621,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2649
2621
|
precision: number;
|
|
2650
2622
|
};
|
|
2651
2623
|
productId: string;
|
|
2652
|
-
subItems:
|
|
2653
|
-
[x: string]: any;
|
|
2654
|
-
}[];
|
|
2624
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2655
2625
|
discounts: {
|
|
2656
2626
|
reference?: string | null | undefined;
|
|
2657
2627
|
name: string;
|
|
@@ -2780,9 +2750,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
|
|
|
2780
2750
|
precision: number;
|
|
2781
2751
|
};
|
|
2782
2752
|
productId: string;
|
|
2783
|
-
subItems:
|
|
2784
|
-
[x: string]: any;
|
|
2785
|
-
}[];
|
|
2753
|
+
subItems: import("./external-order.do").FdoExternalOrderSubItem[];
|
|
2786
2754
|
discounts: {
|
|
2787
2755
|
reference?: string | null | undefined;
|
|
2788
2756
|
name: string;
|
|
@@ -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;
|