@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.
Files changed (65) hide show
  1. package/dist/{KioskDevicesView-BdJCcotz.js → KioskDevicesView-gzH9-zL_.js} +1 -1
  2. 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
  3. package/dist/KioskSettingView-D1WdpaQN.js +821 -0
  4. package/dist/{KioskView-DPU-oQ1H.js → KioskView-D6-1bn1n.js} +90 -76
  5. package/dist/{OrderSettingsView-BOiflwB_.js → OrderSettingsView-CqZREmjo.js} +6155 -6096
  6. package/dist/{app-CaYWSLe1.js → app-i4N2c7ms.js} +54 -38
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-8NyoNely.js → dayjs.min-CA-XbgTY.js} +36 -36
  9. package/dist/frontend/mf-order/src/app.d.ts +16 -0
  10. package/dist/frontend/mf-order/src/main.d.ts +797 -0
  11. package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +4 -0
  12. package/dist/frontend/mf-order/src/stores/iframe/index.d.ts +6 -6
  13. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +8 -260
  14. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +29 -710
  15. package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +3 -2
  16. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +1456 -2239
  17. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +9 -0
  18. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  19. package/dist/{index-B7GFhkAE.js → index-C4HI1NS4.js} +2 -2
  20. package/dist/package/entity/delivery/delivery.dto.d.ts +11 -6
  21. package/dist/package/entity/food-court/food-court.dto.d.ts +1 -1
  22. package/dist/package/entity/food-court/order.dto.d.ts +727 -378
  23. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +6 -6
  24. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +8 -8
  25. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +16 -16
  26. package/dist/package/entity/index.d.ts +1 -0
  27. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1337 -656
  28. package/dist/package/entity/order/order.dto.d.ts +4942 -2401
  29. package/dist/package/entity/order/order.enum.d.ts +1 -1
  30. package/dist/package/entity/order/payment/payment.dto.d.ts +2899 -1419
  31. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +9 -21
  32. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +19 -51
  33. package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +14 -0
  34. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +30 -0
  35. package/dist/package/entity/order-setting/order-setting.do.d.ts +26 -0
  36. package/dist/package/entity/order-setting/order-setting.dto.d.ts +52 -0
  37. package/dist/package/entity/order-setting/v3/v3.do.d.ts +3 -0
  38. package/dist/package/entity/order-setting/v3/v3.dto.d.ts +3 -0
  39. package/dist/package/entity/order-setting/v3/v3.enum.d.ts +3 -0
  40. package/dist/package/entity/payment/payment.dto.d.ts +3 -3
  41. package/dist/package/entity/restaurant/restaurant.dto.d.ts +37 -11
  42. package/dist/package/entity/websocket/websocket.dto.d.ts +40 -0
  43. package/dist/{queue.do-CIyIpp22.js → queue.do-DcOVgeUq.js} +17143 -16655
  44. package/package.json +3 -3
  45. package/src/Entry.vue +3 -3
  46. package/src/locales/en-US.json +8 -0
  47. package/src/locales/th-TH.json +257 -0
  48. package/src/locales/zh-CN.json +8 -0
  49. package/src/main.ts +9 -1
  50. package/src/modules/order-setting/kiosk/interface.ts +4 -0
  51. package/src/stores/iframe/index.ts +1 -1
  52. package/src/stores/kiosk/index.ts +1 -1
  53. package/src/stores/order-setting/index.ts +1 -1
  54. package/src/stores/order-setting/mapper.ts +27 -11
  55. package/src/stores/restaurant/index.ts +106 -85
  56. package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
  57. package/src/views/kiosk/settings/KioskSettingView.vue +26 -0
  58. package/src/views/order-settings/delivery/DeliverySetting.vue +12 -12
  59. package/src/views/order-settings/delivery/inhouse/InHouseDelivery.vue +39 -35
  60. package/src/views/order-settings/dine-in/DineInSetting.vue +158 -24
  61. package/src/views/order-settings/general/GeneralSetting.vue +29 -33
  62. package/src/views/order-settings/pickup/PickUpSetting.vue +4 -2
  63. package/src/views/order-settings/pickup/PickUpSettingDialogContent.vue +23 -10
  64. package/src/views/order-settings/servicecharge/ServiceChargeSetting.vue +17 -8
  65. package/dist/KioskSettingView-BChhriPk.js +0 -782
@@ -6,11 +6,14 @@ export declare const FdoOrderSettings: z.ZodObject<{
6
6
  v3Settings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7
7
  dineInCanTakeaway: z.ZodBoolean;
8
8
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
9
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
9
10
  }, "strip", z.ZodTypeAny, {
10
11
  anonymousLoginDialog?: boolean | null | undefined;
12
+ subItemDisplayMode?: "LIST" | null | undefined;
11
13
  dineInCanTakeaway: boolean;
12
14
  }, {
13
15
  anonymousLoginDialog?: boolean | null | undefined;
16
+ subItemDisplayMode?: "LIST" | null | undefined;
14
17
  dineInCanTakeaway: boolean;
15
18
  }>>>;
16
19
  upsellingSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -446,6 +449,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
446
449
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
447
450
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
448
451
  enabled: z.ZodBoolean;
452
+ enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
449
453
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
450
454
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
451
455
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -462,7 +466,9 @@ export declare const FdoOrderSettings: z.ZodObject<{
462
466
  paid?: Record<string, string> | null | undefined;
463
467
  } | null | undefined;
464
468
  enabled: boolean;
469
+ enablePaxDialog: boolean | null;
465
470
  }, {
471
+ enablePaxDialog?: boolean | null | undefined;
466
472
  submitOrderInstruction?: {
467
473
  payAtCounter?: Record<string, string> | null | undefined;
468
474
  paid?: Record<string, string> | null | undefined;
@@ -489,6 +495,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
489
495
  }>;
490
496
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
491
497
  padDigit: z.ZodNumber;
498
+ enablePaxDialog: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
492
499
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
493
500
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
494
501
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -511,9 +518,11 @@ export declare const FdoOrderSettings: z.ZodObject<{
511
518
  };
512
519
  prefix: string | null;
513
520
  padDigit: number;
521
+ enablePaxDialog: boolean | null;
514
522
  }, {
515
523
  enabled?: boolean | undefined;
516
524
  prefix?: string | null | undefined;
525
+ enablePaxDialog?: boolean | null | undefined;
517
526
  submitOrderInstruction?: {
518
527
  payAtCounter?: Record<string, string> | null | undefined;
519
528
  paid?: Record<string, string> | null | undefined;
@@ -532,6 +541,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
532
541
  paid?: Record<string, string> | null | undefined;
533
542
  } | null | undefined;
534
543
  enabled: boolean;
544
+ enablePaxDialog: boolean | null;
535
545
  } | null | undefined;
536
546
  displayStand?: {
537
547
  submitOrderInstruction?: {
@@ -545,10 +555,12 @@ export declare const FdoOrderSettings: z.ZodObject<{
545
555
  };
546
556
  prefix: string | null;
547
557
  padDigit: number;
558
+ enablePaxDialog: boolean | null;
548
559
  } | null | undefined;
549
560
  }, {
550
561
  requiredSlot?: boolean | null | undefined;
551
562
  pickUp?: {
563
+ enablePaxDialog?: boolean | null | undefined;
552
564
  submitOrderInstruction?: {
553
565
  payAtCounter?: Record<string, string> | null | undefined;
554
566
  paid?: Record<string, string> | null | undefined;
@@ -558,6 +570,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
558
570
  displayStand?: {
559
571
  enabled?: boolean | undefined;
560
572
  prefix?: string | null | undefined;
573
+ enablePaxDialog?: boolean | null | undefined;
561
574
  submitOrderInstruction?: {
562
575
  payAtCounter?: Record<string, string> | null | undefined;
563
576
  paid?: Record<string, string> | null | undefined;
@@ -693,6 +706,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
693
706
  paid?: Record<string, string> | null | undefined;
694
707
  } | null | undefined;
695
708
  enabled: boolean;
709
+ enablePaxDialog: boolean | null;
696
710
  } | null | undefined;
697
711
  displayStand?: {
698
712
  submitOrderInstruction?: {
@@ -706,6 +720,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
706
720
  };
707
721
  prefix: string | null;
708
722
  padDigit: number;
723
+ enablePaxDialog: boolean | null;
709
724
  } | null | undefined;
710
725
  } | null | undefined;
711
726
  canTakeaway?: boolean | null | undefined;
@@ -739,6 +754,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
739
754
  dineIn?: {
740
755
  requiredSlot?: boolean | null | undefined;
741
756
  pickUp?: {
757
+ enablePaxDialog?: boolean | null | undefined;
742
758
  submitOrderInstruction?: {
743
759
  payAtCounter?: Record<string, string> | null | undefined;
744
760
  paid?: Record<string, string> | null | undefined;
@@ -748,6 +764,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
748
764
  displayStand?: {
749
765
  enabled?: boolean | undefined;
750
766
  prefix?: string | null | undefined;
767
+ enablePaxDialog?: boolean | null | undefined;
751
768
  submitOrderInstruction?: {
752
769
  payAtCounter?: Record<string, string> | null | undefined;
753
770
  paid?: Record<string, string> | null | undefined;
@@ -930,6 +947,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
930
947
  buttonPrimaryChip: string;
931
948
  } | null | undefined;
932
949
  }>>>;
950
+ lastOrderMinutesBeforeClose: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
933
951
  }, "strip", z.ZodTypeAny, {
934
952
  customization?: {
935
953
  colorScheme?: {
@@ -969,6 +987,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
969
987
  paid?: Record<string, string> | null | undefined;
970
988
  } | null | undefined;
971
989
  enabled: boolean;
990
+ enablePaxDialog: boolean | null;
972
991
  } | null | undefined;
973
992
  displayStand?: {
974
993
  submitOrderInstruction?: {
@@ -982,6 +1001,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
982
1001
  };
983
1002
  prefix: string | null;
984
1003
  padDigit: number;
1004
+ enablePaxDialog: boolean | null;
985
1005
  } | null | undefined;
986
1006
  } | null | undefined;
987
1007
  canTakeaway?: boolean | null | undefined;
@@ -1016,6 +1036,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1016
1036
  autoSendKitchen?: boolean | null | undefined;
1017
1037
  v3Settings?: {
1018
1038
  anonymousLoginDialog?: boolean | null | undefined;
1039
+ subItemDisplayMode?: "LIST" | null | undefined;
1019
1040
  dineInCanTakeaway: boolean;
1020
1041
  } | null | undefined;
1021
1042
  reservationSettings?: {
@@ -1080,6 +1101,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1080
1101
  enable: boolean;
1081
1102
  action: "ACCEPT" | "SERVE";
1082
1103
  }[] | null | undefined;
1104
+ lastOrderMinutesBeforeClose?: number | null | undefined;
1083
1105
  _id: string;
1084
1106
  }, {
1085
1107
  customization?: {
@@ -1115,6 +1137,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1115
1137
  dineIn?: {
1116
1138
  requiredSlot?: boolean | null | undefined;
1117
1139
  pickUp?: {
1140
+ enablePaxDialog?: boolean | null | undefined;
1118
1141
  submitOrderInstruction?: {
1119
1142
  payAtCounter?: Record<string, string> | null | undefined;
1120
1143
  paid?: Record<string, string> | null | undefined;
@@ -1124,6 +1147,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1124
1147
  displayStand?: {
1125
1148
  enabled?: boolean | undefined;
1126
1149
  prefix?: string | null | undefined;
1150
+ enablePaxDialog?: boolean | null | undefined;
1127
1151
  submitOrderInstruction?: {
1128
1152
  payAtCounter?: Record<string, string> | null | undefined;
1129
1153
  paid?: Record<string, string> | null | undefined;
@@ -1167,6 +1191,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1167
1191
  autoSendKitchen?: boolean | null | undefined;
1168
1192
  v3Settings?: {
1169
1193
  anonymousLoginDialog?: boolean | null | undefined;
1194
+ subItemDisplayMode?: "LIST" | null | undefined;
1170
1195
  dineInCanTakeaway: boolean;
1171
1196
  } | null | undefined;
1172
1197
  reservationSettings?: {
@@ -1229,6 +1254,7 @@ export declare const FdoOrderSettings: z.ZodObject<{
1229
1254
  enable: boolean;
1230
1255
  action: "ACCEPT" | "SERVE";
1231
1256
  }[] | null | undefined;
1257
+ lastOrderMinutesBeforeClose?: number | null | undefined;
1232
1258
  _id: string;
1233
1259
  }>;
1234
1260
  export type FdoOrderSettings = z.infer<typeof FdoOrderSettings>;
@@ -6,11 +6,14 @@ export declare const OrderSettingsDto: z.ZodObject<{
6
6
  v3Settings: z.ZodDefault<z.ZodObject<{
7
7
  dineInCanTakeaway: z.ZodBoolean;
8
8
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
9
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
9
10
  }, "strip", z.ZodTypeAny, {
10
11
  anonymousLoginDialog?: boolean | null | undefined;
12
+ subItemDisplayMode?: "LIST" | null | undefined;
11
13
  dineInCanTakeaway: boolean;
12
14
  }, {
13
15
  anonymousLoginDialog?: boolean | null | undefined;
16
+ subItemDisplayMode?: "LIST" | null | undefined;
14
17
  dineInCanTakeaway: boolean;
15
18
  }>>;
16
19
  upsellingSettings: z.ZodDefault<z.ZodObject<{
@@ -479,6 +482,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
479
482
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
480
483
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
481
484
  enabled: z.ZodBoolean;
485
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
482
486
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
483
487
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
484
488
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -490,12 +494,14 @@ export declare const OrderSettingsDto: z.ZodObject<{
490
494
  paid?: Record<string, string> | null | undefined;
491
495
  }>>>;
492
496
  }, "strip", z.ZodTypeAny, {
497
+ enablePaxDialog?: boolean | null | undefined;
493
498
  submitOrderInstruction?: {
494
499
  payAtCounter?: Record<string, string> | null | undefined;
495
500
  paid?: Record<string, string> | null | undefined;
496
501
  } | null | undefined;
497
502
  enabled: boolean;
498
503
  }, {
504
+ enablePaxDialog?: boolean | null | undefined;
499
505
  submitOrderInstruction?: {
500
506
  payAtCounter?: Record<string, string> | null | undefined;
501
507
  paid?: Record<string, string> | null | undefined;
@@ -522,6 +528,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
522
528
  }>;
523
529
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
524
530
  padDigit: z.ZodNumber;
531
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
525
532
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
526
533
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
527
534
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -533,6 +540,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
533
540
  paid?: Record<string, string> | null | undefined;
534
541
  }>>>;
535
542
  }, "strip", z.ZodTypeAny, {
543
+ enablePaxDialog?: boolean | null | undefined;
536
544
  submitOrderInstruction?: {
537
545
  payAtCounter?: Record<string, string> | null | undefined;
538
546
  paid?: Record<string, string> | null | undefined;
@@ -547,6 +555,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
547
555
  }, {
548
556
  enabled?: boolean | undefined;
549
557
  prefix?: string | null | undefined;
558
+ enablePaxDialog?: boolean | null | undefined;
550
559
  submitOrderInstruction?: {
551
560
  payAtCounter?: Record<string, string> | null | undefined;
552
561
  paid?: Record<string, string> | null | undefined;
@@ -560,6 +569,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
560
569
  }, "strip", z.ZodTypeAny, {
561
570
  requiredSlot?: boolean | null | undefined;
562
571
  pickUp?: {
572
+ enablePaxDialog?: boolean | null | undefined;
563
573
  submitOrderInstruction?: {
564
574
  payAtCounter?: Record<string, string> | null | undefined;
565
575
  paid?: Record<string, string> | null | undefined;
@@ -567,6 +577,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
567
577
  enabled: boolean;
568
578
  } | null | undefined;
569
579
  displayStand?: {
580
+ enablePaxDialog?: boolean | null | undefined;
570
581
  submitOrderInstruction?: {
571
582
  payAtCounter?: Record<string, string> | null | undefined;
572
583
  paid?: Record<string, string> | null | undefined;
@@ -582,6 +593,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
582
593
  }, {
583
594
  requiredSlot?: boolean | null | undefined;
584
595
  pickUp?: {
596
+ enablePaxDialog?: boolean | null | undefined;
585
597
  submitOrderInstruction?: {
586
598
  payAtCounter?: Record<string, string> | null | undefined;
587
599
  paid?: Record<string, string> | null | undefined;
@@ -591,6 +603,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
591
603
  displayStand?: {
592
604
  enabled?: boolean | undefined;
593
605
  prefix?: string | null | undefined;
606
+ enablePaxDialog?: boolean | null | undefined;
594
607
  submitOrderInstruction?: {
595
608
  payAtCounter?: Record<string, string> | null | undefined;
596
609
  paid?: Record<string, string> | null | undefined;
@@ -721,6 +734,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
721
734
  dineIn?: {
722
735
  requiredSlot?: boolean | null | undefined;
723
736
  pickUp?: {
737
+ enablePaxDialog?: boolean | null | undefined;
724
738
  submitOrderInstruction?: {
725
739
  payAtCounter?: Record<string, string> | null | undefined;
726
740
  paid?: Record<string, string> | null | undefined;
@@ -728,6 +742,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
728
742
  enabled: boolean;
729
743
  } | null | undefined;
730
744
  displayStand?: {
745
+ enablePaxDialog?: boolean | null | undefined;
731
746
  submitOrderInstruction?: {
732
747
  payAtCounter?: Record<string, string> | null | undefined;
733
748
  paid?: Record<string, string> | null | undefined;
@@ -772,6 +787,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
772
787
  dineIn?: {
773
788
  requiredSlot?: boolean | null | undefined;
774
789
  pickUp?: {
790
+ enablePaxDialog?: boolean | null | undefined;
775
791
  submitOrderInstruction?: {
776
792
  payAtCounter?: Record<string, string> | null | undefined;
777
793
  paid?: Record<string, string> | null | undefined;
@@ -781,6 +797,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
781
797
  displayStand?: {
782
798
  enabled?: boolean | undefined;
783
799
  prefix?: string | null | undefined;
800
+ enablePaxDialog?: boolean | null | undefined;
784
801
  submitOrderInstruction?: {
785
802
  payAtCounter?: Record<string, string> | null | undefined;
786
803
  paid?: Record<string, string> | null | undefined;
@@ -1092,6 +1109,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1092
1109
  buttonPrimaryChip: string;
1093
1110
  } | null | undefined;
1094
1111
  }>>>;
1112
+ lastOrderMinutesBeforeClose: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1095
1113
  }, "strip", z.ZodTypeAny, {
1096
1114
  customization?: {
1097
1115
  colorScheme?: {
@@ -1202,6 +1220,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1202
1220
  enable: boolean;
1203
1221
  action: "ACCEPT" | "SERVE";
1204
1222
  }[] | null | undefined;
1223
+ lastOrderMinutesBeforeClose?: number | null | undefined;
1205
1224
  _id: string;
1206
1225
  upsellingSettings: {
1207
1226
  recommandation: boolean;
@@ -1212,6 +1231,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1212
1231
  dineIn?: {
1213
1232
  requiredSlot?: boolean | null | undefined;
1214
1233
  pickUp?: {
1234
+ enablePaxDialog?: boolean | null | undefined;
1215
1235
  submitOrderInstruction?: {
1216
1236
  payAtCounter?: Record<string, string> | null | undefined;
1217
1237
  paid?: Record<string, string> | null | undefined;
@@ -1219,6 +1239,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1219
1239
  enabled: boolean;
1220
1240
  } | null | undefined;
1221
1241
  displayStand?: {
1242
+ enablePaxDialog?: boolean | null | undefined;
1222
1243
  submitOrderInstruction?: {
1223
1244
  payAtCounter?: Record<string, string> | null | undefined;
1224
1245
  paid?: Record<string, string> | null | undefined;
@@ -1263,6 +1284,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1263
1284
  enableV3: boolean;
1264
1285
  v3Settings: {
1265
1286
  anonymousLoginDialog?: boolean | null | undefined;
1287
+ subItemDisplayMode?: "LIST" | null | undefined;
1266
1288
  dineInCanTakeaway: boolean;
1267
1289
  };
1268
1290
  }, {
@@ -1300,6 +1322,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1300
1322
  dineIn?: {
1301
1323
  requiredSlot?: boolean | null | undefined;
1302
1324
  pickUp?: {
1325
+ enablePaxDialog?: boolean | null | undefined;
1303
1326
  submitOrderInstruction?: {
1304
1327
  payAtCounter?: Record<string, string> | null | undefined;
1305
1328
  paid?: Record<string, string> | null | undefined;
@@ -1309,6 +1332,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1309
1332
  displayStand?: {
1310
1333
  enabled?: boolean | undefined;
1311
1334
  prefix?: string | null | undefined;
1335
+ enablePaxDialog?: boolean | null | undefined;
1312
1336
  submitOrderInstruction?: {
1313
1337
  payAtCounter?: Record<string, string> | null | undefined;
1314
1338
  paid?: Record<string, string> | null | undefined;
@@ -1352,6 +1376,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1352
1376
  autoSendKitchen?: boolean | null | undefined;
1353
1377
  v3Settings?: {
1354
1378
  anonymousLoginDialog?: boolean | null | undefined;
1379
+ subItemDisplayMode?: "LIST" | null | undefined;
1355
1380
  dineInCanTakeaway: boolean;
1356
1381
  } | undefined;
1357
1382
  reservationSettings?: {
@@ -1436,6 +1461,7 @@ export declare const OrderSettingsDto: z.ZodObject<{
1436
1461
  enable: boolean;
1437
1462
  action: "ACCEPT" | "SERVE";
1438
1463
  }[] | null | undefined;
1464
+ lastOrderMinutesBeforeClose?: number | null | undefined;
1439
1465
  _id: string;
1440
1466
  }>;
1441
1467
  export type OrderSettingsDto = z.infer<typeof OrderSettingsDto>;
@@ -1446,11 +1472,14 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1446
1472
  v3Settings: z.ZodDefault<z.ZodObject<{
1447
1473
  dineInCanTakeaway: z.ZodBoolean;
1448
1474
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1475
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
1449
1476
  }, "strip", z.ZodTypeAny, {
1450
1477
  anonymousLoginDialog?: boolean | null | undefined;
1478
+ subItemDisplayMode?: "LIST" | null | undefined;
1451
1479
  dineInCanTakeaway: boolean;
1452
1480
  }, {
1453
1481
  anonymousLoginDialog?: boolean | null | undefined;
1482
+ subItemDisplayMode?: "LIST" | null | undefined;
1454
1483
  dineInCanTakeaway: boolean;
1455
1484
  }>>;
1456
1485
  upsellingSettings: z.ZodDefault<z.ZodObject<{
@@ -1919,6 +1948,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1919
1948
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1920
1949
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1921
1950
  enabled: z.ZodBoolean;
1951
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1922
1952
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1923
1953
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1924
1954
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -1930,12 +1960,14 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1930
1960
  paid?: Record<string, string> | null | undefined;
1931
1961
  }>>>;
1932
1962
  }, "strip", z.ZodTypeAny, {
1963
+ enablePaxDialog?: boolean | null | undefined;
1933
1964
  submitOrderInstruction?: {
1934
1965
  payAtCounter?: Record<string, string> | null | undefined;
1935
1966
  paid?: Record<string, string> | null | undefined;
1936
1967
  } | null | undefined;
1937
1968
  enabled: boolean;
1938
1969
  }, {
1970
+ enablePaxDialog?: boolean | null | undefined;
1939
1971
  submitOrderInstruction?: {
1940
1972
  payAtCounter?: Record<string, string> | null | undefined;
1941
1973
  paid?: Record<string, string> | null | undefined;
@@ -1962,6 +1994,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1962
1994
  }>;
1963
1995
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1964
1996
  padDigit: z.ZodNumber;
1997
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1965
1998
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1966
1999
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1967
2000
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -1973,6 +2006,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1973
2006
  paid?: Record<string, string> | null | undefined;
1974
2007
  }>>>;
1975
2008
  }, "strip", z.ZodTypeAny, {
2009
+ enablePaxDialog?: boolean | null | undefined;
1976
2010
  submitOrderInstruction?: {
1977
2011
  payAtCounter?: Record<string, string> | null | undefined;
1978
2012
  paid?: Record<string, string> | null | undefined;
@@ -1987,6 +2021,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1987
2021
  }, {
1988
2022
  enabled?: boolean | undefined;
1989
2023
  prefix?: string | null | undefined;
2024
+ enablePaxDialog?: boolean | null | undefined;
1990
2025
  submitOrderInstruction?: {
1991
2026
  payAtCounter?: Record<string, string> | null | undefined;
1992
2027
  paid?: Record<string, string> | null | undefined;
@@ -2000,6 +2035,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2000
2035
  }, "strip", z.ZodTypeAny, {
2001
2036
  requiredSlot?: boolean | null | undefined;
2002
2037
  pickUp?: {
2038
+ enablePaxDialog?: boolean | null | undefined;
2003
2039
  submitOrderInstruction?: {
2004
2040
  payAtCounter?: Record<string, string> | null | undefined;
2005
2041
  paid?: Record<string, string> | null | undefined;
@@ -2007,6 +2043,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2007
2043
  enabled: boolean;
2008
2044
  } | null | undefined;
2009
2045
  displayStand?: {
2046
+ enablePaxDialog?: boolean | null | undefined;
2010
2047
  submitOrderInstruction?: {
2011
2048
  payAtCounter?: Record<string, string> | null | undefined;
2012
2049
  paid?: Record<string, string> | null | undefined;
@@ -2022,6 +2059,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2022
2059
  }, {
2023
2060
  requiredSlot?: boolean | null | undefined;
2024
2061
  pickUp?: {
2062
+ enablePaxDialog?: boolean | null | undefined;
2025
2063
  submitOrderInstruction?: {
2026
2064
  payAtCounter?: Record<string, string> | null | undefined;
2027
2065
  paid?: Record<string, string> | null | undefined;
@@ -2031,6 +2069,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2031
2069
  displayStand?: {
2032
2070
  enabled?: boolean | undefined;
2033
2071
  prefix?: string | null | undefined;
2072
+ enablePaxDialog?: boolean | null | undefined;
2034
2073
  submitOrderInstruction?: {
2035
2074
  payAtCounter?: Record<string, string> | null | undefined;
2036
2075
  paid?: Record<string, string> | null | undefined;
@@ -2161,6 +2200,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2161
2200
  dineIn?: {
2162
2201
  requiredSlot?: boolean | null | undefined;
2163
2202
  pickUp?: {
2203
+ enablePaxDialog?: boolean | null | undefined;
2164
2204
  submitOrderInstruction?: {
2165
2205
  payAtCounter?: Record<string, string> | null | undefined;
2166
2206
  paid?: Record<string, string> | null | undefined;
@@ -2168,6 +2208,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2168
2208
  enabled: boolean;
2169
2209
  } | null | undefined;
2170
2210
  displayStand?: {
2211
+ enablePaxDialog?: boolean | null | undefined;
2171
2212
  submitOrderInstruction?: {
2172
2213
  payAtCounter?: Record<string, string> | null | undefined;
2173
2214
  paid?: Record<string, string> | null | undefined;
@@ -2212,6 +2253,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2212
2253
  dineIn?: {
2213
2254
  requiredSlot?: boolean | null | undefined;
2214
2255
  pickUp?: {
2256
+ enablePaxDialog?: boolean | null | undefined;
2215
2257
  submitOrderInstruction?: {
2216
2258
  payAtCounter?: Record<string, string> | null | undefined;
2217
2259
  paid?: Record<string, string> | null | undefined;
@@ -2221,6 +2263,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2221
2263
  displayStand?: {
2222
2264
  enabled?: boolean | undefined;
2223
2265
  prefix?: string | null | undefined;
2266
+ enablePaxDialog?: boolean | null | undefined;
2224
2267
  submitOrderInstruction?: {
2225
2268
  payAtCounter?: Record<string, string> | null | undefined;
2226
2269
  paid?: Record<string, string> | null | undefined;
@@ -2532,6 +2575,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2532
2575
  buttonPrimaryChip: string;
2533
2576
  } | null | undefined;
2534
2577
  }>>>;
2578
+ lastOrderMinutesBeforeClose: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2535
2579
  }, "_id">, "strip", z.ZodTypeAny, {
2536
2580
  customization?: {
2537
2581
  colorScheme?: {
@@ -2642,6 +2686,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2642
2686
  enable: boolean;
2643
2687
  action: "ACCEPT" | "SERVE";
2644
2688
  }[] | null | undefined;
2689
+ lastOrderMinutesBeforeClose?: number | null | undefined;
2645
2690
  upsellingSettings: {
2646
2691
  recommandation: boolean;
2647
2692
  item: boolean;
@@ -2651,6 +2696,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2651
2696
  dineIn?: {
2652
2697
  requiredSlot?: boolean | null | undefined;
2653
2698
  pickUp?: {
2699
+ enablePaxDialog?: boolean | null | undefined;
2654
2700
  submitOrderInstruction?: {
2655
2701
  payAtCounter?: Record<string, string> | null | undefined;
2656
2702
  paid?: Record<string, string> | null | undefined;
@@ -2658,6 +2704,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2658
2704
  enabled: boolean;
2659
2705
  } | null | undefined;
2660
2706
  displayStand?: {
2707
+ enablePaxDialog?: boolean | null | undefined;
2661
2708
  submitOrderInstruction?: {
2662
2709
  payAtCounter?: Record<string, string> | null | undefined;
2663
2710
  paid?: Record<string, string> | null | undefined;
@@ -2702,6 +2749,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2702
2749
  enableV3: boolean;
2703
2750
  v3Settings: {
2704
2751
  anonymousLoginDialog?: boolean | null | undefined;
2752
+ subItemDisplayMode?: "LIST" | null | undefined;
2705
2753
  dineInCanTakeaway: boolean;
2706
2754
  };
2707
2755
  }, {
@@ -2739,6 +2787,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2739
2787
  dineIn?: {
2740
2788
  requiredSlot?: boolean | null | undefined;
2741
2789
  pickUp?: {
2790
+ enablePaxDialog?: boolean | null | undefined;
2742
2791
  submitOrderInstruction?: {
2743
2792
  payAtCounter?: Record<string, string> | null | undefined;
2744
2793
  paid?: Record<string, string> | null | undefined;
@@ -2748,6 +2797,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2748
2797
  displayStand?: {
2749
2798
  enabled?: boolean | undefined;
2750
2799
  prefix?: string | null | undefined;
2800
+ enablePaxDialog?: boolean | null | undefined;
2751
2801
  submitOrderInstruction?: {
2752
2802
  payAtCounter?: Record<string, string> | null | undefined;
2753
2803
  paid?: Record<string, string> | null | undefined;
@@ -2791,6 +2841,7 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2791
2841
  autoSendKitchen?: boolean | null | undefined;
2792
2842
  v3Settings?: {
2793
2843
  anonymousLoginDialog?: boolean | null | undefined;
2844
+ subItemDisplayMode?: "LIST" | null | undefined;
2794
2845
  dineInCanTakeaway: boolean;
2795
2846
  } | undefined;
2796
2847
  reservationSettings?: {
@@ -2875,5 +2926,6 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2875
2926
  enable: boolean;
2876
2927
  action: "ACCEPT" | "SERVE";
2877
2928
  }[] | null | undefined;
2929
+ lastOrderMinutesBeforeClose?: number | null | undefined;
2878
2930
  }>;
2879
2931
  export type OrderSettingUpdateDto = z.infer<typeof OrderSettingUpdateDto>;
@@ -2,11 +2,14 @@ import { z } from 'zod';
2
2
  export declare const FdoOrderV3Settings: z.ZodObject<{
3
3
  dineInCanTakeaway: z.ZodBoolean;
4
4
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
5
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
5
6
  }, "strip", z.ZodTypeAny, {
6
7
  anonymousLoginDialog?: boolean | null | undefined;
8
+ subItemDisplayMode?: "LIST" | null | undefined;
7
9
  dineInCanTakeaway: boolean;
8
10
  }, {
9
11
  anonymousLoginDialog?: boolean | null | undefined;
12
+ subItemDisplayMode?: "LIST" | null | undefined;
10
13
  dineInCanTakeaway: boolean;
11
14
  }>;
12
15
  export type FdoOrderV3Settings = z.infer<typeof FdoOrderV3Settings>;
@@ -2,11 +2,14 @@ import { z } from 'zod';
2
2
  export declare const OrderV3Settings: z.ZodDefault<z.ZodObject<{
3
3
  dineInCanTakeaway: z.ZodBoolean;
4
4
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
5
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
5
6
  }, "strip", z.ZodTypeAny, {
6
7
  anonymousLoginDialog?: boolean | null | undefined;
8
+ subItemDisplayMode?: "LIST" | null | undefined;
7
9
  dineInCanTakeaway: boolean;
8
10
  }, {
9
11
  anonymousLoginDialog?: boolean | null | undefined;
12
+ subItemDisplayMode?: "LIST" | null | undefined;
10
13
  dineInCanTakeaway: boolean;
11
14
  }>>;
12
15
  export type OrderV3Settings = z.infer<typeof OrderV3Settings>;
@@ -0,0 +1,3 @@
1
+ import { z } from 'zod';
2
+ export declare const F_ORDER_SUBITEM_DISPLAY_MODE: z.ZodEnum<["LIST"]>;
3
+ export type F_ORDER_SUBITEM_DISPLAY_MODE = z.infer<typeof F_ORDER_SUBITEM_DISPLAY_MODE>;
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  export declare const IdentifierDto: z.ZodObject<z.extendShape<Omit<z.extendShape<{
3
- issuer: z.ZodEnum<["ALIPAY", "BOOST", "GRABPAY", "MAYBANKQRPAY", "PRESTOPAY", "RAZERPAY", "SHOPEEPAY", "TOUCHNGO", "WECHATPAY", "CARD", "OTHER", "FEEDME", "DUITNOW", "PAYNOW", "FPX", "DEBITCARD", "CREDITCARD", "UNIONPAY", "ATOME", "VISA", "MASTER", "MYDEBIT"]>;
3
+ issuer: z.ZodEnum<["ALIPAY", "BOOST", "GRABPAY", "MAYBANKQRPAY", "PRESTOPAY", "RAZERPAY", "SHOPEEPAY", "TOUCHNGO", "WECHATPAY", "CARD", "OTHER", "FEEDME", "DUITNOW", "PAYNOW", "FPX", "DEBITCARD", "CREDITCARD", "UNIONPAY", "ATOME", "VISA", "MASTER", "MYDEBIT", "MACAU_PASS"]>;
4
4
  variant: z.ZodString;
5
5
  }, {
6
6
  rate: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -33,7 +33,7 @@ export declare const IdentifierDto: z.ZodObject<z.extendShape<Omit<z.extendShape
33
33
  } | null | undefined;
34
34
  tPlus?: number | null | undefined;
35
35
  variant: string;
36
- issuer: "OTHER" | "FEEDME" | "WECHATPAY" | "ALIPAY" | "BOOST" | "GRABPAY" | "RAZERPAY" | "SHOPEEPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "TOUCHNGO" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME" | "PAYNOW" | "VISA" | "MASTER" | "MYDEBIT";
36
+ issuer: "OTHER" | "FEEDME" | "MACAU_PASS" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "PAYNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME" | "VISA" | "MASTER" | "MYDEBIT";
37
37
  }, {
38
38
  rate?: {
39
39
  amount: number;
@@ -41,6 +41,6 @@ export declare const IdentifierDto: z.ZodObject<z.extendShape<Omit<z.extendShape
41
41
  } | null | undefined;
42
42
  tPlus?: number | null | undefined;
43
43
  variant: string;
44
- issuer: "OTHER" | "FEEDME" | "WECHATPAY" | "ALIPAY" | "BOOST" | "GRABPAY" | "RAZERPAY" | "SHOPEEPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "TOUCHNGO" | "CARD" | "DUITNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME" | "PAYNOW" | "VISA" | "MASTER" | "MYDEBIT";
44
+ issuer: "OTHER" | "FEEDME" | "MACAU_PASS" | "ALIPAY" | "BOOST" | "GRABPAY" | "MAYBANKQRPAY" | "PRESTOPAY" | "RAZERPAY" | "SHOPEEPAY" | "TOUCHNGO" | "WECHATPAY" | "CARD" | "DUITNOW" | "PAYNOW" | "FPX" | "DEBITCARD" | "CREDITCARD" | "UNIONPAY" | "ATOME" | "VISA" | "MASTER" | "MYDEBIT";
45
45
  }>;
46
46
  export type IdentifierDto = z.infer<typeof IdentifierDto>;