@feedmepos/mf-order-setting 0.0.22 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{KioskDevicesView-C6YmdLKc.js → KioskDevicesView-DGkvW2mH.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DiLHpWbm.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BGZLd8T_.js} +2 -2
  3. package/dist/KioskSettingView-DLb5nnCu.js +821 -0
  4. package/dist/KioskView-kZZYSfUh.js +430 -0
  5. package/dist/{OrderSettingsView-D_bGK-3J.js → OrderSettingsView-Cil4j9G5.js} +14 -11
  6. package/dist/{app-C5qwExhL.js → app-D47VRl5B.js} +47 -39
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-kEC9G7bx.js → dayjs.min-R4180ukF.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +8 -0
  10. package/dist/frontend/mf-order/src/modules/order-setting/kiosk/interface.d.ts +17 -0
  11. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +192 -12
  12. package/dist/frontend/mf-order/src/stores/order-setting/mapper.d.ts +4 -2
  13. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +9 -0
  14. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskInstructionSection.vue.d.ts +15 -0
  15. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskPickAtCounterSection.vue.d.ts +4 -3
  16. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  17. package/dist/{index-C_53CwBa.js → index-DgLlDwJK.js} +2 -2
  18. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +16 -16
  19. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +6 -6
  20. package/dist/package/entity/order-setting/kiosk/kiosk.do.d.ts +129 -0
  21. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +255 -0
  22. package/dist/package/entity/order-setting/kiosk/kiosk.enum.d.ts +3 -0
  23. package/dist/package/entity/order-setting/order-setting.do.d.ts +156 -8
  24. package/dist/package/entity/order-setting/order-setting.dto.d.ts +312 -16
  25. package/dist/package/entity/order-setting/sequence/sequence.do.d.ts +4 -4
  26. package/dist/package/entity/order-setting/sequence/sequence.dto.d.ts +4 -4
  27. package/dist/package/entity/payment/payment.enum.d.ts +2 -0
  28. package/dist/package/entity/restaurant/restaurant.dto.d.ts +154 -6
  29. package/dist/package/entity/websocket/websocket.dto.d.ts +328 -0
  30. package/dist/{queue.do-Vog69wnQ.js → queue.do-CNMuossU.js} +4540 -4517
  31. package/package.json +1 -1
  32. package/src/locales/en-US.json +5 -2
  33. package/src/locales/zh-CN.json +4 -0
  34. package/src/modules/order-setting/kiosk/interface.ts +20 -0
  35. package/src/stores/order-setting/mapper.ts +68 -11
  36. package/src/views/kiosk/settings/KioskDineInSection.vue +4 -5
  37. package/src/views/kiosk/settings/KioskDisplayStandSection.vue +36 -0
  38. package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +33 -0
  39. package/src/views/kiosk/settings/KioskInstructionSection.vue +40 -0
  40. package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +30 -19
  41. package/src/views/kiosk/settings/KioskPickAtCounterSection.vue +45 -7
  42. package/src/views/kiosk/settings/KioskSettingView.vue +41 -3
  43. package/src/views/kiosk/settings/KioskTakeawaySection.vue +38 -4
  44. package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +3 -8
  45. package/dist/KioskSettingView-D-muNxlb.js +0 -649
  46. package/dist/KioskView-kcjjk4fF.js +0 -371
@@ -479,9 +479,30 @@ 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>>;
483
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
484
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
485
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
486
+ }, "strip", z.ZodTypeAny, {
487
+ payAtCounter?: Record<string, string> | null | undefined;
488
+ paid?: Record<string, string> | null | undefined;
489
+ }, {
490
+ payAtCounter?: Record<string, string> | null | undefined;
491
+ paid?: Record<string, string> | null | undefined;
492
+ }>>>;
482
493
  }, "strip", z.ZodTypeAny, {
494
+ enablePaxDialog?: boolean | null | undefined;
495
+ submitOrderInstruction?: {
496
+ payAtCounter?: Record<string, string> | null | undefined;
497
+ paid?: Record<string, string> | null | undefined;
498
+ } | null | undefined;
483
499
  enabled: boolean;
484
500
  }, {
501
+ enablePaxDialog?: boolean | null | undefined;
502
+ submitOrderInstruction?: {
503
+ payAtCounter?: Record<string, string> | null | undefined;
504
+ paid?: Record<string, string> | null | undefined;
505
+ } | null | undefined;
485
506
  enabled: boolean;
486
507
  }>>>;
487
508
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -504,7 +525,23 @@ export declare const OrderSettingsDto: z.ZodObject<{
504
525
  }>;
505
526
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
506
527
  padDigit: z.ZodNumber;
528
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
529
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
530
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
531
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
532
+ }, "strip", z.ZodTypeAny, {
533
+ payAtCounter?: Record<string, string> | null | undefined;
534
+ paid?: Record<string, string> | null | undefined;
535
+ }, {
536
+ payAtCounter?: Record<string, string> | null | undefined;
537
+ paid?: Record<string, string> | null | undefined;
538
+ }>>>;
507
539
  }, "strip", z.ZodTypeAny, {
540
+ enablePaxDialog?: boolean | null | undefined;
541
+ submitOrderInstruction?: {
542
+ payAtCounter?: Record<string, string> | null | undefined;
543
+ paid?: Record<string, string> | null | undefined;
544
+ } | null | undefined;
508
545
  enabled: boolean;
509
546
  standSlotRange: {
510
547
  min: number;
@@ -515,6 +552,11 @@ export declare const OrderSettingsDto: z.ZodObject<{
515
552
  }, {
516
553
  enabled?: boolean | undefined;
517
554
  prefix?: string | null | undefined;
555
+ enablePaxDialog?: boolean | null | undefined;
556
+ submitOrderInstruction?: {
557
+ payAtCounter?: Record<string, string> | null | undefined;
558
+ paid?: Record<string, string> | null | undefined;
559
+ } | null | undefined;
518
560
  standSlotRange: {
519
561
  min: number;
520
562
  max: number;
@@ -524,9 +566,19 @@ export declare const OrderSettingsDto: z.ZodObject<{
524
566
  }, "strip", z.ZodTypeAny, {
525
567
  requiredSlot?: boolean | null | undefined;
526
568
  pickUp?: {
569
+ enablePaxDialog?: boolean | null | undefined;
570
+ submitOrderInstruction?: {
571
+ payAtCounter?: Record<string, string> | null | undefined;
572
+ paid?: Record<string, string> | null | undefined;
573
+ } | null | undefined;
527
574
  enabled: boolean;
528
575
  } | null | undefined;
529
576
  displayStand?: {
577
+ enablePaxDialog?: boolean | null | undefined;
578
+ submitOrderInstruction?: {
579
+ payAtCounter?: Record<string, string> | null | undefined;
580
+ paid?: Record<string, string> | null | undefined;
581
+ } | null | undefined;
530
582
  enabled: boolean;
531
583
  standSlotRange: {
532
584
  min: number;
@@ -538,11 +590,21 @@ export declare const OrderSettingsDto: z.ZodObject<{
538
590
  }, {
539
591
  requiredSlot?: boolean | null | undefined;
540
592
  pickUp?: {
593
+ enablePaxDialog?: boolean | null | undefined;
594
+ submitOrderInstruction?: {
595
+ payAtCounter?: Record<string, string> | null | undefined;
596
+ paid?: Record<string, string> | null | undefined;
597
+ } | null | undefined;
541
598
  enabled: boolean;
542
599
  } | null | undefined;
543
600
  displayStand?: {
544
601
  enabled?: boolean | undefined;
545
602
  prefix?: string | null | undefined;
603
+ enablePaxDialog?: boolean | null | undefined;
604
+ submitOrderInstruction?: {
605
+ payAtCounter?: Record<string, string> | null | undefined;
606
+ paid?: Record<string, string> | null | undefined;
607
+ } | null | undefined;
546
608
  standSlotRange: {
547
609
  min: number;
548
610
  max: number;
@@ -551,6 +613,28 @@ export declare const OrderSettingsDto: z.ZodObject<{
551
613
  } | null | undefined;
552
614
  }>>>;
553
615
  canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
616
+ takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
617
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
618
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
619
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
620
+ }, "strip", z.ZodTypeAny, {
621
+ payAtCounter?: Record<string, string> | null | undefined;
622
+ paid?: Record<string, string> | null | undefined;
623
+ }, {
624
+ payAtCounter?: Record<string, string> | null | undefined;
625
+ paid?: Record<string, string> | null | undefined;
626
+ }>>>;
627
+ }, "strip", z.ZodTypeAny, {
628
+ submitOrderInstruction?: {
629
+ payAtCounter?: Record<string, string> | null | undefined;
630
+ paid?: Record<string, string> | null | undefined;
631
+ } | null | undefined;
632
+ }, {
633
+ submitOrderInstruction?: {
634
+ payAtCounter?: Record<string, string> | null | undefined;
635
+ paid?: Record<string, string> | null | undefined;
636
+ } | null | undefined;
637
+ }>>>;
554
638
  paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
555
639
  paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
556
640
  offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
@@ -647,9 +731,19 @@ export declare const OrderSettingsDto: z.ZodObject<{
647
731
  dineIn?: {
648
732
  requiredSlot?: boolean | null | undefined;
649
733
  pickUp?: {
734
+ enablePaxDialog?: boolean | null | undefined;
735
+ submitOrderInstruction?: {
736
+ payAtCounter?: Record<string, string> | null | undefined;
737
+ paid?: Record<string, string> | null | undefined;
738
+ } | null | undefined;
650
739
  enabled: boolean;
651
740
  } | null | undefined;
652
741
  displayStand?: {
742
+ enablePaxDialog?: boolean | null | undefined;
743
+ submitOrderInstruction?: {
744
+ payAtCounter?: Record<string, string> | null | undefined;
745
+ paid?: Record<string, string> | null | undefined;
746
+ } | null | undefined;
653
747
  enabled: boolean;
654
748
  standSlotRange: {
655
749
  min: number;
@@ -660,6 +754,12 @@ export declare const OrderSettingsDto: z.ZodObject<{
660
754
  } | null | undefined;
661
755
  } | null | undefined;
662
756
  canTakeaway?: boolean | null | undefined;
757
+ takeaway?: {
758
+ submitOrderInstruction?: {
759
+ payAtCounter?: Record<string, string> | null | undefined;
760
+ paid?: Record<string, string> | null | undefined;
761
+ } | null | undefined;
762
+ } | null | undefined;
663
763
  paymentSetting?: {
664
764
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
665
765
  offlinePaymentTypes?: {
@@ -684,11 +784,21 @@ export declare const OrderSettingsDto: z.ZodObject<{
684
784
  dineIn?: {
685
785
  requiredSlot?: boolean | null | undefined;
686
786
  pickUp?: {
787
+ enablePaxDialog?: boolean | null | undefined;
788
+ submitOrderInstruction?: {
789
+ payAtCounter?: Record<string, string> | null | undefined;
790
+ paid?: Record<string, string> | null | undefined;
791
+ } | null | undefined;
687
792
  enabled: boolean;
688
793
  } | null | undefined;
689
794
  displayStand?: {
690
795
  enabled?: boolean | undefined;
691
796
  prefix?: string | null | undefined;
797
+ enablePaxDialog?: boolean | null | undefined;
798
+ submitOrderInstruction?: {
799
+ payAtCounter?: Record<string, string> | null | undefined;
800
+ paid?: Record<string, string> | null | undefined;
801
+ } | null | undefined;
692
802
  standSlotRange: {
693
803
  min: number;
694
804
  max: number;
@@ -697,6 +807,12 @@ export declare const OrderSettingsDto: z.ZodObject<{
697
807
  } | null | undefined;
698
808
  } | null | undefined;
699
809
  canTakeaway?: boolean | null | undefined;
810
+ takeaway?: {
811
+ submitOrderInstruction?: {
812
+ payAtCounter?: Record<string, string> | null | undefined;
813
+ paid?: Record<string, string> | null | undefined;
814
+ } | null | undefined;
815
+ } | null | undefined;
700
816
  paymentSetting?: {
701
817
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
702
818
  offlinePaymentTypes?: {
@@ -796,11 +912,11 @@ export declare const OrderSettingsDto: z.ZodObject<{
796
912
  prefix: string;
797
913
  current: number;
798
914
  } | undefined;
799
- inHouseDelivery?: {
915
+ takeaway?: {
800
916
  prefix: string;
801
917
  current: number;
802
918
  } | undefined;
803
- takeaway?: {
919
+ inHouseDelivery?: {
804
920
  prefix: string;
805
921
  current: number;
806
922
  } | undefined;
@@ -821,11 +937,11 @@ export declare const OrderSettingsDto: z.ZodObject<{
821
937
  prefix?: string | undefined;
822
938
  current?: number | undefined;
823
939
  } | undefined;
824
- inHouseDelivery?: {
940
+ takeaway?: {
825
941
  prefix?: string | undefined;
826
942
  current?: number | undefined;
827
943
  } | undefined;
828
- takeaway?: {
944
+ inHouseDelivery?: {
829
945
  prefix?: string | undefined;
830
946
  current?: number | undefined;
831
947
  } | undefined;
@@ -1070,11 +1186,11 @@ export declare const OrderSettingsDto: z.ZodObject<{
1070
1186
  prefix: string;
1071
1187
  current: number;
1072
1188
  } | undefined;
1073
- inHouseDelivery?: {
1189
+ takeaway?: {
1074
1190
  prefix: string;
1075
1191
  current: number;
1076
1192
  } | undefined;
1077
- takeaway?: {
1193
+ inHouseDelivery?: {
1078
1194
  prefix: string;
1079
1195
  current: number;
1080
1196
  } | undefined;
@@ -1110,9 +1226,19 @@ export declare const OrderSettingsDto: z.ZodObject<{
1110
1226
  dineIn?: {
1111
1227
  requiredSlot?: boolean | null | undefined;
1112
1228
  pickUp?: {
1229
+ enablePaxDialog?: boolean | null | undefined;
1230
+ submitOrderInstruction?: {
1231
+ payAtCounter?: Record<string, string> | null | undefined;
1232
+ paid?: Record<string, string> | null | undefined;
1233
+ } | null | undefined;
1113
1234
  enabled: boolean;
1114
1235
  } | null | undefined;
1115
1236
  displayStand?: {
1237
+ enablePaxDialog?: boolean | null | undefined;
1238
+ submitOrderInstruction?: {
1239
+ payAtCounter?: Record<string, string> | null | undefined;
1240
+ paid?: Record<string, string> | null | undefined;
1241
+ } | null | undefined;
1116
1242
  enabled: boolean;
1117
1243
  standSlotRange: {
1118
1244
  min: number;
@@ -1123,6 +1249,12 @@ export declare const OrderSettingsDto: z.ZodObject<{
1123
1249
  } | null | undefined;
1124
1250
  } | null | undefined;
1125
1251
  canTakeaway?: boolean | null | undefined;
1252
+ takeaway?: {
1253
+ submitOrderInstruction?: {
1254
+ payAtCounter?: Record<string, string> | null | undefined;
1255
+ paid?: Record<string, string> | null | undefined;
1256
+ } | null | undefined;
1257
+ } | null | undefined;
1126
1258
  paymentSetting?: {
1127
1259
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1128
1260
  offlinePaymentTypes?: {
@@ -1184,11 +1316,21 @@ export declare const OrderSettingsDto: z.ZodObject<{
1184
1316
  dineIn?: {
1185
1317
  requiredSlot?: boolean | null | undefined;
1186
1318
  pickUp?: {
1319
+ enablePaxDialog?: boolean | null | undefined;
1320
+ submitOrderInstruction?: {
1321
+ payAtCounter?: Record<string, string> | null | undefined;
1322
+ paid?: Record<string, string> | null | undefined;
1323
+ } | null | undefined;
1187
1324
  enabled: boolean;
1188
1325
  } | null | undefined;
1189
1326
  displayStand?: {
1190
1327
  enabled?: boolean | undefined;
1191
1328
  prefix?: string | null | undefined;
1329
+ enablePaxDialog?: boolean | null | undefined;
1330
+ submitOrderInstruction?: {
1331
+ payAtCounter?: Record<string, string> | null | undefined;
1332
+ paid?: Record<string, string> | null | undefined;
1333
+ } | null | undefined;
1192
1334
  standSlotRange: {
1193
1335
  min: number;
1194
1336
  max: number;
@@ -1197,6 +1339,12 @@ export declare const OrderSettingsDto: z.ZodObject<{
1197
1339
  } | null | undefined;
1198
1340
  } | null | undefined;
1199
1341
  canTakeaway?: boolean | null | undefined;
1342
+ takeaway?: {
1343
+ submitOrderInstruction?: {
1344
+ payAtCounter?: Record<string, string> | null | undefined;
1345
+ paid?: Record<string, string> | null | undefined;
1346
+ } | null | undefined;
1347
+ } | null | undefined;
1200
1348
  paymentSetting?: {
1201
1349
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1202
1350
  offlinePaymentTypes?: {
@@ -1276,11 +1424,11 @@ export declare const OrderSettingsDto: z.ZodObject<{
1276
1424
  prefix?: string | undefined;
1277
1425
  current?: number | undefined;
1278
1426
  } | undefined;
1279
- inHouseDelivery?: {
1427
+ takeaway?: {
1280
1428
  prefix?: string | undefined;
1281
1429
  current?: number | undefined;
1282
1430
  } | undefined;
1283
- takeaway?: {
1431
+ inHouseDelivery?: {
1284
1432
  prefix?: string | undefined;
1285
1433
  current?: number | undefined;
1286
1434
  } | undefined;
@@ -1789,9 +1937,30 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1789
1937
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1790
1938
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1791
1939
  enabled: z.ZodBoolean;
1940
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1941
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1942
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1943
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1944
+ }, "strip", z.ZodTypeAny, {
1945
+ payAtCounter?: Record<string, string> | null | undefined;
1946
+ paid?: Record<string, string> | null | undefined;
1947
+ }, {
1948
+ payAtCounter?: Record<string, string> | null | undefined;
1949
+ paid?: Record<string, string> | null | undefined;
1950
+ }>>>;
1792
1951
  }, "strip", z.ZodTypeAny, {
1952
+ enablePaxDialog?: boolean | null | undefined;
1953
+ submitOrderInstruction?: {
1954
+ payAtCounter?: Record<string, string> | null | undefined;
1955
+ paid?: Record<string, string> | null | undefined;
1956
+ } | null | undefined;
1793
1957
  enabled: boolean;
1794
1958
  }, {
1959
+ enablePaxDialog?: boolean | null | undefined;
1960
+ submitOrderInstruction?: {
1961
+ payAtCounter?: Record<string, string> | null | undefined;
1962
+ paid?: Record<string, string> | null | undefined;
1963
+ } | null | undefined;
1795
1964
  enabled: boolean;
1796
1965
  }>>>;
1797
1966
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -1814,7 +1983,23 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1814
1983
  }>;
1815
1984
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1816
1985
  padDigit: z.ZodNumber;
1986
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1987
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1988
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1989
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1990
+ }, "strip", z.ZodTypeAny, {
1991
+ payAtCounter?: Record<string, string> | null | undefined;
1992
+ paid?: Record<string, string> | null | undefined;
1993
+ }, {
1994
+ payAtCounter?: Record<string, string> | null | undefined;
1995
+ paid?: Record<string, string> | null | undefined;
1996
+ }>>>;
1817
1997
  }, "strip", z.ZodTypeAny, {
1998
+ enablePaxDialog?: boolean | null | undefined;
1999
+ submitOrderInstruction?: {
2000
+ payAtCounter?: Record<string, string> | null | undefined;
2001
+ paid?: Record<string, string> | null | undefined;
2002
+ } | null | undefined;
1818
2003
  enabled: boolean;
1819
2004
  standSlotRange: {
1820
2005
  min: number;
@@ -1825,6 +2010,11 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1825
2010
  }, {
1826
2011
  enabled?: boolean | undefined;
1827
2012
  prefix?: string | null | undefined;
2013
+ enablePaxDialog?: boolean | null | undefined;
2014
+ submitOrderInstruction?: {
2015
+ payAtCounter?: Record<string, string> | null | undefined;
2016
+ paid?: Record<string, string> | null | undefined;
2017
+ } | null | undefined;
1828
2018
  standSlotRange: {
1829
2019
  min: number;
1830
2020
  max: number;
@@ -1834,9 +2024,19 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1834
2024
  }, "strip", z.ZodTypeAny, {
1835
2025
  requiredSlot?: boolean | null | undefined;
1836
2026
  pickUp?: {
2027
+ enablePaxDialog?: boolean | null | undefined;
2028
+ submitOrderInstruction?: {
2029
+ payAtCounter?: Record<string, string> | null | undefined;
2030
+ paid?: Record<string, string> | null | undefined;
2031
+ } | null | undefined;
1837
2032
  enabled: boolean;
1838
2033
  } | null | undefined;
1839
2034
  displayStand?: {
2035
+ enablePaxDialog?: boolean | null | undefined;
2036
+ submitOrderInstruction?: {
2037
+ payAtCounter?: Record<string, string> | null | undefined;
2038
+ paid?: Record<string, string> | null | undefined;
2039
+ } | null | undefined;
1840
2040
  enabled: boolean;
1841
2041
  standSlotRange: {
1842
2042
  min: number;
@@ -1848,11 +2048,21 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1848
2048
  }, {
1849
2049
  requiredSlot?: boolean | null | undefined;
1850
2050
  pickUp?: {
2051
+ enablePaxDialog?: boolean | null | undefined;
2052
+ submitOrderInstruction?: {
2053
+ payAtCounter?: Record<string, string> | null | undefined;
2054
+ paid?: Record<string, string> | null | undefined;
2055
+ } | null | undefined;
1851
2056
  enabled: boolean;
1852
2057
  } | null | undefined;
1853
2058
  displayStand?: {
1854
2059
  enabled?: boolean | undefined;
1855
2060
  prefix?: string | null | undefined;
2061
+ enablePaxDialog?: boolean | null | undefined;
2062
+ submitOrderInstruction?: {
2063
+ payAtCounter?: Record<string, string> | null | undefined;
2064
+ paid?: Record<string, string> | null | undefined;
2065
+ } | null | undefined;
1856
2066
  standSlotRange: {
1857
2067
  min: number;
1858
2068
  max: number;
@@ -1861,6 +2071,28 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1861
2071
  } | null | undefined;
1862
2072
  }>>>;
1863
2073
  canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2074
+ takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2075
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2076
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
2077
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
2078
+ }, "strip", z.ZodTypeAny, {
2079
+ payAtCounter?: Record<string, string> | null | undefined;
2080
+ paid?: Record<string, string> | null | undefined;
2081
+ }, {
2082
+ payAtCounter?: Record<string, string> | null | undefined;
2083
+ paid?: Record<string, string> | null | undefined;
2084
+ }>>>;
2085
+ }, "strip", z.ZodTypeAny, {
2086
+ submitOrderInstruction?: {
2087
+ payAtCounter?: Record<string, string> | null | undefined;
2088
+ paid?: Record<string, string> | null | undefined;
2089
+ } | null | undefined;
2090
+ }, {
2091
+ submitOrderInstruction?: {
2092
+ payAtCounter?: Record<string, string> | null | undefined;
2093
+ paid?: Record<string, string> | null | undefined;
2094
+ } | null | undefined;
2095
+ }>>>;
1864
2096
  paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1865
2097
  paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
1866
2098
  offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
@@ -1957,9 +2189,19 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1957
2189
  dineIn?: {
1958
2190
  requiredSlot?: boolean | null | undefined;
1959
2191
  pickUp?: {
2192
+ enablePaxDialog?: boolean | null | undefined;
2193
+ submitOrderInstruction?: {
2194
+ payAtCounter?: Record<string, string> | null | undefined;
2195
+ paid?: Record<string, string> | null | undefined;
2196
+ } | null | undefined;
1960
2197
  enabled: boolean;
1961
2198
  } | null | undefined;
1962
2199
  displayStand?: {
2200
+ enablePaxDialog?: boolean | null | undefined;
2201
+ submitOrderInstruction?: {
2202
+ payAtCounter?: Record<string, string> | null | undefined;
2203
+ paid?: Record<string, string> | null | undefined;
2204
+ } | null | undefined;
1963
2205
  enabled: boolean;
1964
2206
  standSlotRange: {
1965
2207
  min: number;
@@ -1970,6 +2212,12 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1970
2212
  } | null | undefined;
1971
2213
  } | null | undefined;
1972
2214
  canTakeaway?: boolean | null | undefined;
2215
+ takeaway?: {
2216
+ submitOrderInstruction?: {
2217
+ payAtCounter?: Record<string, string> | null | undefined;
2218
+ paid?: Record<string, string> | null | undefined;
2219
+ } | null | undefined;
2220
+ } | null | undefined;
1973
2221
  paymentSetting?: {
1974
2222
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1975
2223
  offlinePaymentTypes?: {
@@ -1994,11 +2242,21 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
1994
2242
  dineIn?: {
1995
2243
  requiredSlot?: boolean | null | undefined;
1996
2244
  pickUp?: {
2245
+ enablePaxDialog?: boolean | null | undefined;
2246
+ submitOrderInstruction?: {
2247
+ payAtCounter?: Record<string, string> | null | undefined;
2248
+ paid?: Record<string, string> | null | undefined;
2249
+ } | null | undefined;
1997
2250
  enabled: boolean;
1998
2251
  } | null | undefined;
1999
2252
  displayStand?: {
2000
2253
  enabled?: boolean | undefined;
2001
2254
  prefix?: string | null | undefined;
2255
+ enablePaxDialog?: boolean | null | undefined;
2256
+ submitOrderInstruction?: {
2257
+ payAtCounter?: Record<string, string> | null | undefined;
2258
+ paid?: Record<string, string> | null | undefined;
2259
+ } | null | undefined;
2002
2260
  standSlotRange: {
2003
2261
  min: number;
2004
2262
  max: number;
@@ -2007,6 +2265,12 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2007
2265
  } | null | undefined;
2008
2266
  } | null | undefined;
2009
2267
  canTakeaway?: boolean | null | undefined;
2268
+ takeaway?: {
2269
+ submitOrderInstruction?: {
2270
+ payAtCounter?: Record<string, string> | null | undefined;
2271
+ paid?: Record<string, string> | null | undefined;
2272
+ } | null | undefined;
2273
+ } | null | undefined;
2010
2274
  paymentSetting?: {
2011
2275
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
2012
2276
  offlinePaymentTypes?: {
@@ -2106,11 +2370,11 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2106
2370
  prefix: string;
2107
2371
  current: number;
2108
2372
  } | undefined;
2109
- inHouseDelivery?: {
2373
+ takeaway?: {
2110
2374
  prefix: string;
2111
2375
  current: number;
2112
2376
  } | undefined;
2113
- takeaway?: {
2377
+ inHouseDelivery?: {
2114
2378
  prefix: string;
2115
2379
  current: number;
2116
2380
  } | undefined;
@@ -2131,11 +2395,11 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2131
2395
  prefix?: string | undefined;
2132
2396
  current?: number | undefined;
2133
2397
  } | undefined;
2134
- inHouseDelivery?: {
2398
+ takeaway?: {
2135
2399
  prefix?: string | undefined;
2136
2400
  current?: number | undefined;
2137
2401
  } | undefined;
2138
- takeaway?: {
2402
+ inHouseDelivery?: {
2139
2403
  prefix?: string | undefined;
2140
2404
  current?: number | undefined;
2141
2405
  } | undefined;
@@ -2380,11 +2644,11 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2380
2644
  prefix: string;
2381
2645
  current: number;
2382
2646
  } | undefined;
2383
- inHouseDelivery?: {
2647
+ takeaway?: {
2384
2648
  prefix: string;
2385
2649
  current: number;
2386
2650
  } | undefined;
2387
- takeaway?: {
2651
+ inHouseDelivery?: {
2388
2652
  prefix: string;
2389
2653
  current: number;
2390
2654
  } | undefined;
@@ -2419,9 +2683,19 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2419
2683
  dineIn?: {
2420
2684
  requiredSlot?: boolean | null | undefined;
2421
2685
  pickUp?: {
2686
+ enablePaxDialog?: boolean | null | undefined;
2687
+ submitOrderInstruction?: {
2688
+ payAtCounter?: Record<string, string> | null | undefined;
2689
+ paid?: Record<string, string> | null | undefined;
2690
+ } | null | undefined;
2422
2691
  enabled: boolean;
2423
2692
  } | null | undefined;
2424
2693
  displayStand?: {
2694
+ enablePaxDialog?: boolean | null | undefined;
2695
+ submitOrderInstruction?: {
2696
+ payAtCounter?: Record<string, string> | null | undefined;
2697
+ paid?: Record<string, string> | null | undefined;
2698
+ } | null | undefined;
2425
2699
  enabled: boolean;
2426
2700
  standSlotRange: {
2427
2701
  min: number;
@@ -2432,6 +2706,12 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2432
2706
  } | null | undefined;
2433
2707
  } | null | undefined;
2434
2708
  canTakeaway?: boolean | null | undefined;
2709
+ takeaway?: {
2710
+ submitOrderInstruction?: {
2711
+ payAtCounter?: Record<string, string> | null | undefined;
2712
+ paid?: Record<string, string> | null | undefined;
2713
+ } | null | undefined;
2714
+ } | null | undefined;
2435
2715
  paymentSetting?: {
2436
2716
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
2437
2717
  offlinePaymentTypes?: {
@@ -2493,11 +2773,21 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2493
2773
  dineIn?: {
2494
2774
  requiredSlot?: boolean | null | undefined;
2495
2775
  pickUp?: {
2776
+ enablePaxDialog?: boolean | null | undefined;
2777
+ submitOrderInstruction?: {
2778
+ payAtCounter?: Record<string, string> | null | undefined;
2779
+ paid?: Record<string, string> | null | undefined;
2780
+ } | null | undefined;
2496
2781
  enabled: boolean;
2497
2782
  } | null | undefined;
2498
2783
  displayStand?: {
2499
2784
  enabled?: boolean | undefined;
2500
2785
  prefix?: string | null | undefined;
2786
+ enablePaxDialog?: boolean | null | undefined;
2787
+ submitOrderInstruction?: {
2788
+ payAtCounter?: Record<string, string> | null | undefined;
2789
+ paid?: Record<string, string> | null | undefined;
2790
+ } | null | undefined;
2501
2791
  standSlotRange: {
2502
2792
  min: number;
2503
2793
  max: number;
@@ -2506,6 +2796,12 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2506
2796
  } | null | undefined;
2507
2797
  } | null | undefined;
2508
2798
  canTakeaway?: boolean | null | undefined;
2799
+ takeaway?: {
2800
+ submitOrderInstruction?: {
2801
+ payAtCounter?: Record<string, string> | null | undefined;
2802
+ paid?: Record<string, string> | null | undefined;
2803
+ } | null | undefined;
2804
+ } | null | undefined;
2509
2805
  paymentSetting?: {
2510
2806
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
2511
2807
  offlinePaymentTypes?: {
@@ -2585,11 +2881,11 @@ export declare const OrderSettingUpdateDto: z.ZodObject<Omit<{
2585
2881
  prefix?: string | undefined;
2586
2882
  current?: number | undefined;
2587
2883
  } | undefined;
2588
- inHouseDelivery?: {
2884
+ takeaway?: {
2589
2885
  prefix?: string | undefined;
2590
2886
  current?: number | undefined;
2591
2887
  } | undefined;
2592
- takeaway?: {
2888
+ inHouseDelivery?: {
2593
2889
  prefix?: string | undefined;
2594
2890
  current?: number | undefined;
2595
2891
  } | undefined;
@@ -157,11 +157,11 @@ export declare const FdoOrderSequenceSettings: z.ZodObject<{
157
157
  prefix: string;
158
158
  current: number;
159
159
  } | undefined;
160
- inHouseDelivery?: {
160
+ takeaway?: {
161
161
  prefix: string;
162
162
  current: number;
163
163
  } | undefined;
164
- takeaway?: {
164
+ inHouseDelivery?: {
165
165
  prefix: string;
166
166
  current: number;
167
167
  } | undefined;
@@ -182,11 +182,11 @@ export declare const FdoOrderSequenceSettings: z.ZodObject<{
182
182
  prefix?: string | undefined;
183
183
  current?: number | undefined;
184
184
  } | undefined;
185
- inHouseDelivery?: {
185
+ takeaway?: {
186
186
  prefix?: string | undefined;
187
187
  current?: number | undefined;
188
188
  } | undefined;
189
- takeaway?: {
189
+ inHouseDelivery?: {
190
190
  prefix?: string | undefined;
191
191
  current?: number | undefined;
192
192
  } | undefined;