@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
@@ -474,6 +474,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
474
474
  phoneNo: string;
475
475
  regNo: string;
476
476
  }>;
477
+ posHeartbeat: z.ZodNullable<z.ZodOptional<z.ZodString>>;
477
478
  paxDialog: z.ZodBoolean;
478
479
  acceptDineIn: z.ZodBoolean;
479
480
  acceptDelivery: z.ZodBoolean;
@@ -1404,11 +1405,14 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
1404
1405
  v3Setting: z.ZodDefault<z.ZodDefault<z.ZodObject<{
1405
1406
  dineInCanTakeaway: z.ZodBoolean;
1406
1407
  anonymousLoginDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1408
+ subItemDisplayMode: z.ZodNullable<z.ZodOptional<z.ZodEnum<["LIST"]>>>;
1407
1409
  }, "strip", z.ZodTypeAny, {
1408
1410
  anonymousLoginDialog?: boolean | null | undefined;
1411
+ subItemDisplayMode?: "LIST" | null | undefined;
1409
1412
  dineInCanTakeaway: boolean;
1410
1413
  }, {
1411
1414
  anonymousLoginDialog?: boolean | null | undefined;
1415
+ subItemDisplayMode?: "LIST" | null | undefined;
1412
1416
  dineInCanTakeaway: boolean;
1413
1417
  }>>>;
1414
1418
  isMembershipEnabled: z.ZodBoolean;
@@ -1571,6 +1575,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
1571
1575
  takeaway?: {
1572
1576
  catalogId?: string | null | undefined;
1573
1577
  } | null | undefined;
1578
+ posHeartbeat?: string | null | undefined;
1574
1579
  acceptQueue?: boolean | null | undefined;
1575
1580
  inHouseDelivery?: {
1576
1581
  taxes?: Record<string, {
@@ -1800,6 +1805,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
1800
1805
  acceptPickup: boolean;
1801
1806
  v3Setting: {
1802
1807
  anonymousLoginDialog?: boolean | null | undefined;
1808
+ subItemDisplayMode?: "LIST" | null | undefined;
1803
1809
  dineInCanTakeaway: boolean;
1804
1810
  };
1805
1811
  isMembershipEnabled: boolean;
@@ -1845,6 +1851,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
1845
1851
  takeaway?: {
1846
1852
  catalogId?: string | null | undefined;
1847
1853
  } | null | undefined;
1854
+ posHeartbeat?: string | null | undefined;
1848
1855
  acceptQueue?: boolean | null | undefined;
1849
1856
  inHouseDelivery?: {
1850
1857
  taxes?: Record<string, {
@@ -1966,6 +1973,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
1966
1973
  } | null | undefined;
1967
1974
  v3Setting?: {
1968
1975
  anonymousLoginDialog?: boolean | null | undefined;
1976
+ subItemDisplayMode?: "LIST" | null | undefined;
1969
1977
  dineInCanTakeaway: boolean;
1970
1978
  } | undefined;
1971
1979
  customization?: {
@@ -3507,6 +3515,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3507
3515
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3508
3516
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3509
3517
  enabled: z.ZodBoolean;
3518
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3510
3519
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3511
3520
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
3512
3521
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -3518,12 +3527,14 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3518
3527
  paid?: Record<string, string> | null | undefined;
3519
3528
  }>>>;
3520
3529
  }, "strip", z.ZodTypeAny, {
3530
+ enablePaxDialog?: boolean | null | undefined;
3521
3531
  submitOrderInstruction?: {
3522
3532
  payAtCounter?: Record<string, string> | null | undefined;
3523
3533
  paid?: Record<string, string> | null | undefined;
3524
3534
  } | null | undefined;
3525
3535
  enabled: boolean;
3526
3536
  }, {
3537
+ enablePaxDialog?: boolean | null | undefined;
3527
3538
  submitOrderInstruction?: {
3528
3539
  payAtCounter?: Record<string, string> | null | undefined;
3529
3540
  paid?: Record<string, string> | null | undefined;
@@ -3550,6 +3561,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3550
3561
  }>;
3551
3562
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3552
3563
  padDigit: z.ZodNumber;
3564
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
3553
3565
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3554
3566
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
3555
3567
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -3561,6 +3573,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3561
3573
  paid?: Record<string, string> | null | undefined;
3562
3574
  }>>>;
3563
3575
  }, "strip", z.ZodTypeAny, {
3576
+ enablePaxDialog?: boolean | null | undefined;
3564
3577
  submitOrderInstruction?: {
3565
3578
  payAtCounter?: Record<string, string> | null | undefined;
3566
3579
  paid?: Record<string, string> | null | undefined;
@@ -3575,6 +3588,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3575
3588
  }, {
3576
3589
  enabled?: boolean | undefined;
3577
3590
  prefix?: string | null | undefined;
3591
+ enablePaxDialog?: boolean | null | undefined;
3578
3592
  submitOrderInstruction?: {
3579
3593
  payAtCounter?: Record<string, string> | null | undefined;
3580
3594
  paid?: Record<string, string> | null | undefined;
@@ -3588,6 +3602,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3588
3602
  }, "strip", z.ZodTypeAny, {
3589
3603
  requiredSlot?: boolean | null | undefined;
3590
3604
  pickUp?: {
3605
+ enablePaxDialog?: boolean | null | undefined;
3591
3606
  submitOrderInstruction?: {
3592
3607
  payAtCounter?: Record<string, string> | null | undefined;
3593
3608
  paid?: Record<string, string> | null | undefined;
@@ -3595,6 +3610,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3595
3610
  enabled: boolean;
3596
3611
  } | null | undefined;
3597
3612
  displayStand?: {
3613
+ enablePaxDialog?: boolean | null | undefined;
3598
3614
  submitOrderInstruction?: {
3599
3615
  payAtCounter?: Record<string, string> | null | undefined;
3600
3616
  paid?: Record<string, string> | null | undefined;
@@ -3610,6 +3626,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3610
3626
  }, {
3611
3627
  requiredSlot?: boolean | null | undefined;
3612
3628
  pickUp?: {
3629
+ enablePaxDialog?: boolean | null | undefined;
3613
3630
  submitOrderInstruction?: {
3614
3631
  payAtCounter?: Record<string, string> | null | undefined;
3615
3632
  paid?: Record<string, string> | null | undefined;
@@ -3619,6 +3636,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3619
3636
  displayStand?: {
3620
3637
  enabled?: boolean | undefined;
3621
3638
  prefix?: string | null | undefined;
3639
+ enablePaxDialog?: boolean | null | undefined;
3622
3640
  submitOrderInstruction?: {
3623
3641
  payAtCounter?: Record<string, string> | null | undefined;
3624
3642
  paid?: Record<string, string> | null | undefined;
@@ -3749,6 +3767,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3749
3767
  dineIn?: {
3750
3768
  requiredSlot?: boolean | null | undefined;
3751
3769
  pickUp?: {
3770
+ enablePaxDialog?: boolean | null | undefined;
3752
3771
  submitOrderInstruction?: {
3753
3772
  payAtCounter?: Record<string, string> | null | undefined;
3754
3773
  paid?: Record<string, string> | null | undefined;
@@ -3756,6 +3775,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3756
3775
  enabled: boolean;
3757
3776
  } | null | undefined;
3758
3777
  displayStand?: {
3778
+ enablePaxDialog?: boolean | null | undefined;
3759
3779
  submitOrderInstruction?: {
3760
3780
  payAtCounter?: Record<string, string> | null | undefined;
3761
3781
  paid?: Record<string, string> | null | undefined;
@@ -3800,6 +3820,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3800
3820
  dineIn?: {
3801
3821
  requiredSlot?: boolean | null | undefined;
3802
3822
  pickUp?: {
3823
+ enablePaxDialog?: boolean | null | undefined;
3803
3824
  submitOrderInstruction?: {
3804
3825
  payAtCounter?: Record<string, string> | null | undefined;
3805
3826
  paid?: Record<string, string> | null | undefined;
@@ -3809,6 +3830,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3809
3830
  displayStand?: {
3810
3831
  enabled?: boolean | undefined;
3811
3832
  prefix?: string | null | undefined;
3833
+ enablePaxDialog?: boolean | null | undefined;
3812
3834
  submitOrderInstruction?: {
3813
3835
  payAtCounter?: Record<string, string> | null | undefined;
3814
3836
  paid?: Record<string, string> | null | undefined;
@@ -3851,7 +3873,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3851
3873
  paymentGateways: z.ZodArray<z.ZodDiscriminatedUnion<"paymentGateway", z.Primitive, z.ZodObject<z.extendShape<{
3852
3874
  _id: z.ZodString;
3853
3875
  _rev: z.ZodString;
3854
- paymentGateway: z.ZodEnum<["FEEDME", "REVENUE_MONSTER", "RAZER_MERCHANT_SERVICE", "E_GHL", "MACAU_PASS", "FEEDME_TERMINAL"]>;
3876
+ paymentGateway: z.ZodEnum<["FEEDME", "FEEDME_TERMINAL", "REVENUE_MONSTER", "E_GHL", "RAZER_MERCHANT_SERVICE", "MACAU_PASS"]>;
3855
3877
  active: z.ZodBoolean;
3856
3878
  }, {
3857
3879
  paymentGateway: z.ZodLiteral<"REVENUE_MONSTER">;
@@ -3896,7 +3918,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3896
3918
  }> | z.ZodObject<z.extendShape<{
3897
3919
  _id: z.ZodString;
3898
3920
  _rev: z.ZodString;
3899
- paymentGateway: z.ZodEnum<["FEEDME", "REVENUE_MONSTER", "RAZER_MERCHANT_SERVICE", "E_GHL", "MACAU_PASS", "FEEDME_TERMINAL"]>;
3921
+ paymentGateway: z.ZodEnum<["FEEDME", "FEEDME_TERMINAL", "REVENUE_MONSTER", "E_GHL", "RAZER_MERCHANT_SERVICE", "MACAU_PASS"]>;
3900
3922
  active: z.ZodBoolean;
3901
3923
  }, {
3902
3924
  paymentGateway: z.ZodLiteral<"RAZER_MERCHANT_SERVICE">;
@@ -3951,7 +3973,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3951
3973
  }> | z.ZodObject<z.extendShape<{
3952
3974
  _id: z.ZodString;
3953
3975
  _rev: z.ZodString;
3954
- paymentGateway: z.ZodEnum<["FEEDME", "REVENUE_MONSTER", "RAZER_MERCHANT_SERVICE", "E_GHL", "MACAU_PASS", "FEEDME_TERMINAL"]>;
3976
+ paymentGateway: z.ZodEnum<["FEEDME", "FEEDME_TERMINAL", "REVENUE_MONSTER", "E_GHL", "RAZER_MERCHANT_SERVICE", "MACAU_PASS"]>;
3955
3977
  active: z.ZodBoolean;
3956
3978
  }, {
3957
3979
  paymentGateway: z.ZodLiteral<"E_GHL">;
@@ -3960,12 +3982,12 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3960
3982
  terminalId: z.ZodString;
3961
3983
  privateKey: z.ZodString;
3962
3984
  }, "strip", z.ZodTypeAny, {
3963
- terminalId: string;
3964
3985
  merchantId: string;
3986
+ terminalId: string;
3965
3987
  privateKey: string;
3966
3988
  }, {
3967
- terminalId: string;
3968
3989
  merchantId: string;
3990
+ terminalId: string;
3969
3991
  privateKey: string;
3970
3992
  }>;
3971
3993
  }>, "strip", z.ZodTypeAny, {
@@ -3974,8 +3996,8 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3974
3996
  paymentGateway: "E_GHL";
3975
3997
  active: boolean;
3976
3998
  config: {
3977
- terminalId: string;
3978
3999
  merchantId: string;
4000
+ terminalId: string;
3979
4001
  privateKey: string;
3980
4002
  };
3981
4003
  }, {
@@ -3984,8 +4006,8 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3984
4006
  paymentGateway: "E_GHL";
3985
4007
  active: boolean;
3986
4008
  config: {
3987
- terminalId: string;
3988
4009
  merchantId: string;
4010
+ terminalId: string;
3989
4011
  privateKey: string;
3990
4012
  };
3991
4013
  }>>, "many">;
@@ -4007,6 +4029,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4007
4029
  takeaway?: {
4008
4030
  catalogId?: string | null | undefined;
4009
4031
  } | null | undefined;
4032
+ posHeartbeat?: string | null | undefined;
4010
4033
  upsellingSettings?: {
4011
4034
  recommandation: boolean;
4012
4035
  item: boolean;
@@ -4016,6 +4039,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4016
4039
  dineIn?: {
4017
4040
  requiredSlot?: boolean | null | undefined;
4018
4041
  pickUp?: {
4042
+ enablePaxDialog?: boolean | null | undefined;
4019
4043
  submitOrderInstruction?: {
4020
4044
  payAtCounter?: Record<string, string> | null | undefined;
4021
4045
  paid?: Record<string, string> | null | undefined;
@@ -4023,6 +4047,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4023
4047
  enabled: boolean;
4024
4048
  } | null | undefined;
4025
4049
  displayStand?: {
4050
+ enablePaxDialog?: boolean | null | undefined;
4026
4051
  submitOrderInstruction?: {
4027
4052
  payAtCounter?: Record<string, string> | null | undefined;
4028
4053
  paid?: Record<string, string> | null | undefined;
@@ -4064,7 +4089,6 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4064
4089
  showAllOnly: boolean;
4065
4090
  } | null | undefined;
4066
4091
  } | null | undefined;
4067
- posHeartbeat?: string | null | undefined;
4068
4092
  _id: string;
4069
4093
  businessId: string;
4070
4094
  profile: {
@@ -4176,8 +4200,8 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4176
4200
  paymentGateway: "E_GHL";
4177
4201
  active: boolean;
4178
4202
  config: {
4179
- terminalId: string;
4180
4203
  merchantId: string;
4204
+ terminalId: string;
4181
4205
  privateKey: string;
4182
4206
  };
4183
4207
  })[];
@@ -4198,6 +4222,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4198
4222
  takeaway?: {
4199
4223
  catalogId?: string | null | undefined;
4200
4224
  } | null | undefined;
4225
+ posHeartbeat?: string | null | undefined;
4201
4226
  upsellingSettings?: {
4202
4227
  recommandation: boolean;
4203
4228
  item: boolean;
@@ -4207,6 +4232,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4207
4232
  dineIn?: {
4208
4233
  requiredSlot?: boolean | null | undefined;
4209
4234
  pickUp?: {
4235
+ enablePaxDialog?: boolean | null | undefined;
4210
4236
  submitOrderInstruction?: {
4211
4237
  payAtCounter?: Record<string, string> | null | undefined;
4212
4238
  paid?: Record<string, string> | null | undefined;
@@ -4216,6 +4242,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4216
4242
  displayStand?: {
4217
4243
  enabled?: boolean | undefined;
4218
4244
  prefix?: string | null | undefined;
4245
+ enablePaxDialog?: boolean | null | undefined;
4219
4246
  submitOrderInstruction?: {
4220
4247
  payAtCounter?: Record<string, string> | null | undefined;
4221
4248
  paid?: Record<string, string> | null | undefined;
@@ -4255,7 +4282,6 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4255
4282
  showAllOnly: boolean;
4256
4283
  } | null | undefined;
4257
4284
  } | null | undefined;
4258
- posHeartbeat?: string | null | undefined;
4259
4285
  _id: string;
4260
4286
  businessId: string;
4261
4287
  profile: {
@@ -4367,8 +4393,8 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4367
4393
  paymentGateway: "E_GHL";
4368
4394
  active: boolean;
4369
4395
  config: {
4370
- terminalId: string;
4371
4396
  merchantId: string;
4397
+ terminalId: string;
4372
4398
  privateKey: string;
4373
4399
  };
4374
4400
  })[];
@@ -221,6 +221,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
221
221
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
222
222
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
223
223
  enabled: z.ZodBoolean;
224
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
224
225
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
225
226
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
226
227
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -232,12 +233,14 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
232
233
  paid?: Record<string, string> | null | undefined;
233
234
  }>>>;
234
235
  }, "strip", z.ZodTypeAny, {
236
+ enablePaxDialog?: boolean | null | undefined;
235
237
  submitOrderInstruction?: {
236
238
  payAtCounter?: Record<string, string> | null | undefined;
237
239
  paid?: Record<string, string> | null | undefined;
238
240
  } | null | undefined;
239
241
  enabled: boolean;
240
242
  }, {
243
+ enablePaxDialog?: boolean | null | undefined;
241
244
  submitOrderInstruction?: {
242
245
  payAtCounter?: Record<string, string> | null | undefined;
243
246
  paid?: Record<string, string> | null | undefined;
@@ -264,6 +267,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
264
267
  }>;
265
268
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
266
269
  padDigit: z.ZodNumber;
270
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
267
271
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
268
272
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
269
273
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -275,6 +279,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
275
279
  paid?: Record<string, string> | null | undefined;
276
280
  }>>>;
277
281
  }, "strip", z.ZodTypeAny, {
282
+ enablePaxDialog?: boolean | null | undefined;
278
283
  submitOrderInstruction?: {
279
284
  payAtCounter?: Record<string, string> | null | undefined;
280
285
  paid?: Record<string, string> | null | undefined;
@@ -289,6 +294,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
289
294
  }, {
290
295
  enabled?: boolean | undefined;
291
296
  prefix?: string | null | undefined;
297
+ enablePaxDialog?: boolean | null | undefined;
292
298
  submitOrderInstruction?: {
293
299
  payAtCounter?: Record<string, string> | null | undefined;
294
300
  paid?: Record<string, string> | null | undefined;
@@ -302,6 +308,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
302
308
  }, "strip", z.ZodTypeAny, {
303
309
  requiredSlot?: boolean | null | undefined;
304
310
  pickUp?: {
311
+ enablePaxDialog?: boolean | null | undefined;
305
312
  submitOrderInstruction?: {
306
313
  payAtCounter?: Record<string, string> | null | undefined;
307
314
  paid?: Record<string, string> | null | undefined;
@@ -309,6 +316,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
309
316
  enabled: boolean;
310
317
  } | null | undefined;
311
318
  displayStand?: {
319
+ enablePaxDialog?: boolean | null | undefined;
312
320
  submitOrderInstruction?: {
313
321
  payAtCounter?: Record<string, string> | null | undefined;
314
322
  paid?: Record<string, string> | null | undefined;
@@ -324,6 +332,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
324
332
  }, {
325
333
  requiredSlot?: boolean | null | undefined;
326
334
  pickUp?: {
335
+ enablePaxDialog?: boolean | null | undefined;
327
336
  submitOrderInstruction?: {
328
337
  payAtCounter?: Record<string, string> | null | undefined;
329
338
  paid?: Record<string, string> | null | undefined;
@@ -333,6 +342,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
333
342
  displayStand?: {
334
343
  enabled?: boolean | undefined;
335
344
  prefix?: string | null | undefined;
345
+ enablePaxDialog?: boolean | null | undefined;
336
346
  submitOrderInstruction?: {
337
347
  payAtCounter?: Record<string, string> | null | undefined;
338
348
  paid?: Record<string, string> | null | undefined;
@@ -463,6 +473,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
463
473
  dineIn?: {
464
474
  requiredSlot?: boolean | null | undefined;
465
475
  pickUp?: {
476
+ enablePaxDialog?: boolean | null | undefined;
466
477
  submitOrderInstruction?: {
467
478
  payAtCounter?: Record<string, string> | null | undefined;
468
479
  paid?: Record<string, string> | null | undefined;
@@ -470,6 +481,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
470
481
  enabled: boolean;
471
482
  } | null | undefined;
472
483
  displayStand?: {
484
+ enablePaxDialog?: boolean | null | undefined;
473
485
  submitOrderInstruction?: {
474
486
  payAtCounter?: Record<string, string> | null | undefined;
475
487
  paid?: Record<string, string> | null | undefined;
@@ -514,6 +526,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
514
526
  dineIn?: {
515
527
  requiredSlot?: boolean | null | undefined;
516
528
  pickUp?: {
529
+ enablePaxDialog?: boolean | null | undefined;
517
530
  submitOrderInstruction?: {
518
531
  payAtCounter?: Record<string, string> | null | undefined;
519
532
  paid?: Record<string, string> | null | undefined;
@@ -523,6 +536,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
523
536
  displayStand?: {
524
537
  enabled?: boolean | undefined;
525
538
  prefix?: string | null | undefined;
539
+ enablePaxDialog?: boolean | null | undefined;
526
540
  submitOrderInstruction?: {
527
541
  payAtCounter?: Record<string, string> | null | undefined;
528
542
  paid?: Record<string, string> | null | undefined;
@@ -567,6 +581,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
567
581
  dineIn?: {
568
582
  requiredSlot?: boolean | null | undefined;
569
583
  pickUp?: {
584
+ enablePaxDialog?: boolean | null | undefined;
570
585
  submitOrderInstruction?: {
571
586
  payAtCounter?: Record<string, string> | null | undefined;
572
587
  paid?: Record<string, string> | null | undefined;
@@ -574,6 +589,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
574
589
  enabled: boolean;
575
590
  } | null | undefined;
576
591
  displayStand?: {
592
+ enablePaxDialog?: boolean | null | undefined;
577
593
  submitOrderInstruction?: {
578
594
  payAtCounter?: Record<string, string> | null | undefined;
579
595
  paid?: Record<string, string> | null | undefined;
@@ -621,6 +637,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
621
637
  dineIn?: {
622
638
  requiredSlot?: boolean | null | undefined;
623
639
  pickUp?: {
640
+ enablePaxDialog?: boolean | null | undefined;
624
641
  submitOrderInstruction?: {
625
642
  payAtCounter?: Record<string, string> | null | undefined;
626
643
  paid?: Record<string, string> | null | undefined;
@@ -630,6 +647,7 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
630
647
  displayStand?: {
631
648
  enabled?: boolean | undefined;
632
649
  prefix?: string | null | undefined;
650
+ enablePaxDialog?: boolean | null | undefined;
633
651
  submitOrderInstruction?: {
634
652
  payAtCounter?: Record<string, string> | null | undefined;
635
653
  paid?: Record<string, string> | null | undefined;
@@ -858,6 +876,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
858
876
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
859
877
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
860
878
  enabled: z.ZodBoolean;
879
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
861
880
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
862
881
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
863
882
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -869,12 +888,14 @@ export declare const WebSocketReqDto: z.ZodObject<{
869
888
  paid?: Record<string, string> | null | undefined;
870
889
  }>>>;
871
890
  }, "strip", z.ZodTypeAny, {
891
+ enablePaxDialog?: boolean | null | undefined;
872
892
  submitOrderInstruction?: {
873
893
  payAtCounter?: Record<string, string> | null | undefined;
874
894
  paid?: Record<string, string> | null | undefined;
875
895
  } | null | undefined;
876
896
  enabled: boolean;
877
897
  }, {
898
+ enablePaxDialog?: boolean | null | undefined;
878
899
  submitOrderInstruction?: {
879
900
  payAtCounter?: Record<string, string> | null | undefined;
880
901
  paid?: Record<string, string> | null | undefined;
@@ -901,6 +922,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
901
922
  }>;
902
923
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
903
924
  padDigit: z.ZodNumber;
925
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
904
926
  submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
905
927
  payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
906
928
  paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
@@ -912,6 +934,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
912
934
  paid?: Record<string, string> | null | undefined;
913
935
  }>>>;
914
936
  }, "strip", z.ZodTypeAny, {
937
+ enablePaxDialog?: boolean | null | undefined;
915
938
  submitOrderInstruction?: {
916
939
  payAtCounter?: Record<string, string> | null | undefined;
917
940
  paid?: Record<string, string> | null | undefined;
@@ -926,6 +949,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
926
949
  }, {
927
950
  enabled?: boolean | undefined;
928
951
  prefix?: string | null | undefined;
952
+ enablePaxDialog?: boolean | null | undefined;
929
953
  submitOrderInstruction?: {
930
954
  payAtCounter?: Record<string, string> | null | undefined;
931
955
  paid?: Record<string, string> | null | undefined;
@@ -939,6 +963,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
939
963
  }, "strip", z.ZodTypeAny, {
940
964
  requiredSlot?: boolean | null | undefined;
941
965
  pickUp?: {
966
+ enablePaxDialog?: boolean | null | undefined;
942
967
  submitOrderInstruction?: {
943
968
  payAtCounter?: Record<string, string> | null | undefined;
944
969
  paid?: Record<string, string> | null | undefined;
@@ -946,6 +971,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
946
971
  enabled: boolean;
947
972
  } | null | undefined;
948
973
  displayStand?: {
974
+ enablePaxDialog?: boolean | null | undefined;
949
975
  submitOrderInstruction?: {
950
976
  payAtCounter?: Record<string, string> | null | undefined;
951
977
  paid?: Record<string, string> | null | undefined;
@@ -961,6 +987,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
961
987
  }, {
962
988
  requiredSlot?: boolean | null | undefined;
963
989
  pickUp?: {
990
+ enablePaxDialog?: boolean | null | undefined;
964
991
  submitOrderInstruction?: {
965
992
  payAtCounter?: Record<string, string> | null | undefined;
966
993
  paid?: Record<string, string> | null | undefined;
@@ -970,6 +997,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
970
997
  displayStand?: {
971
998
  enabled?: boolean | undefined;
972
999
  prefix?: string | null | undefined;
1000
+ enablePaxDialog?: boolean | null | undefined;
973
1001
  submitOrderInstruction?: {
974
1002
  payAtCounter?: Record<string, string> | null | undefined;
975
1003
  paid?: Record<string, string> | null | undefined;
@@ -1100,6 +1128,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1100
1128
  dineIn?: {
1101
1129
  requiredSlot?: boolean | null | undefined;
1102
1130
  pickUp?: {
1131
+ enablePaxDialog?: boolean | null | undefined;
1103
1132
  submitOrderInstruction?: {
1104
1133
  payAtCounter?: Record<string, string> | null | undefined;
1105
1134
  paid?: Record<string, string> | null | undefined;
@@ -1107,6 +1136,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1107
1136
  enabled: boolean;
1108
1137
  } | null | undefined;
1109
1138
  displayStand?: {
1139
+ enablePaxDialog?: boolean | null | undefined;
1110
1140
  submitOrderInstruction?: {
1111
1141
  payAtCounter?: Record<string, string> | null | undefined;
1112
1142
  paid?: Record<string, string> | null | undefined;
@@ -1151,6 +1181,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1151
1181
  dineIn?: {
1152
1182
  requiredSlot?: boolean | null | undefined;
1153
1183
  pickUp?: {
1184
+ enablePaxDialog?: boolean | null | undefined;
1154
1185
  submitOrderInstruction?: {
1155
1186
  payAtCounter?: Record<string, string> | null | undefined;
1156
1187
  paid?: Record<string, string> | null | undefined;
@@ -1160,6 +1191,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1160
1191
  displayStand?: {
1161
1192
  enabled?: boolean | undefined;
1162
1193
  prefix?: string | null | undefined;
1194
+ enablePaxDialog?: boolean | null | undefined;
1163
1195
  submitOrderInstruction?: {
1164
1196
  payAtCounter?: Record<string, string> | null | undefined;
1165
1197
  paid?: Record<string, string> | null | undefined;
@@ -1204,6 +1236,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1204
1236
  dineIn?: {
1205
1237
  requiredSlot?: boolean | null | undefined;
1206
1238
  pickUp?: {
1239
+ enablePaxDialog?: boolean | null | undefined;
1207
1240
  submitOrderInstruction?: {
1208
1241
  payAtCounter?: Record<string, string> | null | undefined;
1209
1242
  paid?: Record<string, string> | null | undefined;
@@ -1211,6 +1244,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1211
1244
  enabled: boolean;
1212
1245
  } | null | undefined;
1213
1246
  displayStand?: {
1247
+ enablePaxDialog?: boolean | null | undefined;
1214
1248
  submitOrderInstruction?: {
1215
1249
  payAtCounter?: Record<string, string> | null | undefined;
1216
1250
  paid?: Record<string, string> | null | undefined;
@@ -1258,6 +1292,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1258
1292
  dineIn?: {
1259
1293
  requiredSlot?: boolean | null | undefined;
1260
1294
  pickUp?: {
1295
+ enablePaxDialog?: boolean | null | undefined;
1261
1296
  submitOrderInstruction?: {
1262
1297
  payAtCounter?: Record<string, string> | null | undefined;
1263
1298
  paid?: Record<string, string> | null | undefined;
@@ -1267,6 +1302,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1267
1302
  displayStand?: {
1268
1303
  enabled?: boolean | undefined;
1269
1304
  prefix?: string | null | undefined;
1305
+ enablePaxDialog?: boolean | null | undefined;
1270
1306
  submitOrderInstruction?: {
1271
1307
  payAtCounter?: Record<string, string> | null | undefined;
1272
1308
  paid?: Record<string, string> | null | undefined;
@@ -1360,6 +1396,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1360
1396
  dineIn?: {
1361
1397
  requiredSlot?: boolean | null | undefined;
1362
1398
  pickUp?: {
1399
+ enablePaxDialog?: boolean | null | undefined;
1363
1400
  submitOrderInstruction?: {
1364
1401
  payAtCounter?: Record<string, string> | null | undefined;
1365
1402
  paid?: Record<string, string> | null | undefined;
@@ -1367,6 +1404,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1367
1404
  enabled: boolean;
1368
1405
  } | null | undefined;
1369
1406
  displayStand?: {
1407
+ enablePaxDialog?: boolean | null | undefined;
1370
1408
  submitOrderInstruction?: {
1371
1409
  payAtCounter?: Record<string, string> | null | undefined;
1372
1410
  paid?: Record<string, string> | null | undefined;
@@ -1463,6 +1501,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1463
1501
  dineIn?: {
1464
1502
  requiredSlot?: boolean | null | undefined;
1465
1503
  pickUp?: {
1504
+ enablePaxDialog?: boolean | null | undefined;
1466
1505
  submitOrderInstruction?: {
1467
1506
  payAtCounter?: Record<string, string> | null | undefined;
1468
1507
  paid?: Record<string, string> | null | undefined;
@@ -1472,6 +1511,7 @@ export declare const WebSocketReqDto: z.ZodObject<{
1472
1511
  displayStand?: {
1473
1512
  enabled?: boolean | undefined;
1474
1513
  prefix?: string | null | undefined;
1514
+ enablePaxDialog?: boolean | null | undefined;
1475
1515
  submitOrderInstruction?: {
1476
1516
  payAtCounter?: Record<string, string> | null | undefined;
1477
1517
  paid?: Record<string, string> | null | undefined;