@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
@@ -221,9 +221,30 @@ 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>>;
225
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
226
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
227
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
228
+ }, "strip", z.ZodTypeAny, {
229
+ payAtCounter?: Record<string, string> | null | undefined;
230
+ paid?: Record<string, string> | null | undefined;
231
+ }, {
232
+ payAtCounter?: Record<string, string> | null | undefined;
233
+ paid?: Record<string, string> | null | undefined;
234
+ }>>>;
224
235
  }, "strip", z.ZodTypeAny, {
236
+ enablePaxDialog?: boolean | null | undefined;
237
+ submitOrderInstruction?: {
238
+ payAtCounter?: Record<string, string> | null | undefined;
239
+ paid?: Record<string, string> | null | undefined;
240
+ } | null | undefined;
225
241
  enabled: boolean;
226
242
  }, {
243
+ enablePaxDialog?: boolean | null | undefined;
244
+ submitOrderInstruction?: {
245
+ payAtCounter?: Record<string, string> | null | undefined;
246
+ paid?: Record<string, string> | null | undefined;
247
+ } | null | undefined;
227
248
  enabled: boolean;
228
249
  }>>>;
229
250
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -246,7 +267,23 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
246
267
  }>;
247
268
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
248
269
  padDigit: z.ZodNumber;
270
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
271
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
272
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
273
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ payAtCounter?: Record<string, string> | null | undefined;
276
+ paid?: Record<string, string> | null | undefined;
277
+ }, {
278
+ payAtCounter?: Record<string, string> | null | undefined;
279
+ paid?: Record<string, string> | null | undefined;
280
+ }>>>;
249
281
  }, "strip", z.ZodTypeAny, {
282
+ enablePaxDialog?: boolean | null | undefined;
283
+ submitOrderInstruction?: {
284
+ payAtCounter?: Record<string, string> | null | undefined;
285
+ paid?: Record<string, string> | null | undefined;
286
+ } | null | undefined;
250
287
  enabled: boolean;
251
288
  standSlotRange: {
252
289
  min: number;
@@ -257,6 +294,11 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
257
294
  }, {
258
295
  enabled?: boolean | undefined;
259
296
  prefix?: string | null | undefined;
297
+ enablePaxDialog?: boolean | null | undefined;
298
+ submitOrderInstruction?: {
299
+ payAtCounter?: Record<string, string> | null | undefined;
300
+ paid?: Record<string, string> | null | undefined;
301
+ } | null | undefined;
260
302
  standSlotRange: {
261
303
  min: number;
262
304
  max: number;
@@ -266,9 +308,19 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
266
308
  }, "strip", z.ZodTypeAny, {
267
309
  requiredSlot?: boolean | null | undefined;
268
310
  pickUp?: {
311
+ enablePaxDialog?: boolean | null | undefined;
312
+ submitOrderInstruction?: {
313
+ payAtCounter?: Record<string, string> | null | undefined;
314
+ paid?: Record<string, string> | null | undefined;
315
+ } | null | undefined;
269
316
  enabled: boolean;
270
317
  } | null | undefined;
271
318
  displayStand?: {
319
+ enablePaxDialog?: boolean | null | undefined;
320
+ submitOrderInstruction?: {
321
+ payAtCounter?: Record<string, string> | null | undefined;
322
+ paid?: Record<string, string> | null | undefined;
323
+ } | null | undefined;
272
324
  enabled: boolean;
273
325
  standSlotRange: {
274
326
  min: number;
@@ -280,11 +332,21 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
280
332
  }, {
281
333
  requiredSlot?: boolean | null | undefined;
282
334
  pickUp?: {
335
+ enablePaxDialog?: boolean | null | undefined;
336
+ submitOrderInstruction?: {
337
+ payAtCounter?: Record<string, string> | null | undefined;
338
+ paid?: Record<string, string> | null | undefined;
339
+ } | null | undefined;
283
340
  enabled: boolean;
284
341
  } | null | undefined;
285
342
  displayStand?: {
286
343
  enabled?: boolean | undefined;
287
344
  prefix?: string | null | undefined;
345
+ enablePaxDialog?: boolean | null | undefined;
346
+ submitOrderInstruction?: {
347
+ payAtCounter?: Record<string, string> | null | undefined;
348
+ paid?: Record<string, string> | null | undefined;
349
+ } | null | undefined;
288
350
  standSlotRange: {
289
351
  min: number;
290
352
  max: number;
@@ -293,6 +355,28 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
293
355
  } | null | undefined;
294
356
  }>>>;
295
357
  canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
358
+ takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
359
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
360
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
361
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
362
+ }, "strip", z.ZodTypeAny, {
363
+ payAtCounter?: Record<string, string> | null | undefined;
364
+ paid?: Record<string, string> | null | undefined;
365
+ }, {
366
+ payAtCounter?: Record<string, string> | null | undefined;
367
+ paid?: Record<string, string> | null | undefined;
368
+ }>>>;
369
+ }, "strip", z.ZodTypeAny, {
370
+ submitOrderInstruction?: {
371
+ payAtCounter?: Record<string, string> | null | undefined;
372
+ paid?: Record<string, string> | null | undefined;
373
+ } | null | undefined;
374
+ }, {
375
+ submitOrderInstruction?: {
376
+ payAtCounter?: Record<string, string> | null | undefined;
377
+ paid?: Record<string, string> | null | undefined;
378
+ } | null | undefined;
379
+ }>>>;
296
380
  paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
297
381
  paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
298
382
  offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
@@ -389,9 +473,19 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
389
473
  dineIn?: {
390
474
  requiredSlot?: boolean | null | undefined;
391
475
  pickUp?: {
476
+ enablePaxDialog?: boolean | null | undefined;
477
+ submitOrderInstruction?: {
478
+ payAtCounter?: Record<string, string> | null | undefined;
479
+ paid?: Record<string, string> | null | undefined;
480
+ } | null | undefined;
392
481
  enabled: boolean;
393
482
  } | null | undefined;
394
483
  displayStand?: {
484
+ enablePaxDialog?: boolean | null | undefined;
485
+ submitOrderInstruction?: {
486
+ payAtCounter?: Record<string, string> | null | undefined;
487
+ paid?: Record<string, string> | null | undefined;
488
+ } | null | undefined;
395
489
  enabled: boolean;
396
490
  standSlotRange: {
397
491
  min: number;
@@ -402,6 +496,12 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
402
496
  } | null | undefined;
403
497
  } | null | undefined;
404
498
  canTakeaway?: boolean | null | undefined;
499
+ takeaway?: {
500
+ submitOrderInstruction?: {
501
+ payAtCounter?: Record<string, string> | null | undefined;
502
+ paid?: Record<string, string> | null | undefined;
503
+ } | null | undefined;
504
+ } | null | undefined;
405
505
  paymentSetting?: {
406
506
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
407
507
  offlinePaymentTypes?: {
@@ -426,11 +526,21 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
426
526
  dineIn?: {
427
527
  requiredSlot?: boolean | null | undefined;
428
528
  pickUp?: {
529
+ enablePaxDialog?: boolean | null | undefined;
530
+ submitOrderInstruction?: {
531
+ payAtCounter?: Record<string, string> | null | undefined;
532
+ paid?: Record<string, string> | null | undefined;
533
+ } | null | undefined;
429
534
  enabled: boolean;
430
535
  } | null | undefined;
431
536
  displayStand?: {
432
537
  enabled?: boolean | undefined;
433
538
  prefix?: string | null | undefined;
539
+ enablePaxDialog?: boolean | null | undefined;
540
+ submitOrderInstruction?: {
541
+ payAtCounter?: Record<string, string> | null | undefined;
542
+ paid?: Record<string, string> | null | undefined;
543
+ } | null | undefined;
434
544
  standSlotRange: {
435
545
  min: number;
436
546
  max: number;
@@ -439,6 +549,12 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
439
549
  } | null | undefined;
440
550
  } | null | undefined;
441
551
  canTakeaway?: boolean | null | undefined;
552
+ takeaway?: {
553
+ submitOrderInstruction?: {
554
+ payAtCounter?: Record<string, string> | null | undefined;
555
+ paid?: Record<string, string> | null | undefined;
556
+ } | null | undefined;
557
+ } | null | undefined;
442
558
  paymentSetting?: {
443
559
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
444
560
  offlinePaymentTypes?: {
@@ -465,9 +581,19 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
465
581
  dineIn?: {
466
582
  requiredSlot?: boolean | null | undefined;
467
583
  pickUp?: {
584
+ enablePaxDialog?: boolean | null | undefined;
585
+ submitOrderInstruction?: {
586
+ payAtCounter?: Record<string, string> | null | undefined;
587
+ paid?: Record<string, string> | null | undefined;
588
+ } | null | undefined;
468
589
  enabled: boolean;
469
590
  } | null | undefined;
470
591
  displayStand?: {
592
+ enablePaxDialog?: boolean | null | undefined;
593
+ submitOrderInstruction?: {
594
+ payAtCounter?: Record<string, string> | null | undefined;
595
+ paid?: Record<string, string> | null | undefined;
596
+ } | null | undefined;
471
597
  enabled: boolean;
472
598
  standSlotRange: {
473
599
  min: number;
@@ -478,6 +604,12 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
478
604
  } | null | undefined;
479
605
  } | null | undefined;
480
606
  canTakeaway?: boolean | null | undefined;
607
+ takeaway?: {
608
+ submitOrderInstruction?: {
609
+ payAtCounter?: Record<string, string> | null | undefined;
610
+ paid?: Record<string, string> | null | undefined;
611
+ } | null | undefined;
612
+ } | null | undefined;
481
613
  paymentSetting?: {
482
614
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
483
615
  offlinePaymentTypes?: {
@@ -505,11 +637,21 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
505
637
  dineIn?: {
506
638
  requiredSlot?: boolean | null | undefined;
507
639
  pickUp?: {
640
+ enablePaxDialog?: boolean | null | undefined;
641
+ submitOrderInstruction?: {
642
+ payAtCounter?: Record<string, string> | null | undefined;
643
+ paid?: Record<string, string> | null | undefined;
644
+ } | null | undefined;
508
645
  enabled: boolean;
509
646
  } | null | undefined;
510
647
  displayStand?: {
511
648
  enabled?: boolean | undefined;
512
649
  prefix?: string | null | undefined;
650
+ enablePaxDialog?: boolean | null | undefined;
651
+ submitOrderInstruction?: {
652
+ payAtCounter?: Record<string, string> | null | undefined;
653
+ paid?: Record<string, string> | null | undefined;
654
+ } | null | undefined;
513
655
  standSlotRange: {
514
656
  min: number;
515
657
  max: number;
@@ -518,6 +660,12 @@ export declare const WebSocketEventDto: z.ZodDiscriminatedUnion<"type", z.Primit
518
660
  } | null | undefined;
519
661
  } | null | undefined;
520
662
  canTakeaway?: boolean | null | undefined;
663
+ takeaway?: {
664
+ submitOrderInstruction?: {
665
+ payAtCounter?: Record<string, string> | null | undefined;
666
+ paid?: Record<string, string> | null | undefined;
667
+ } | null | undefined;
668
+ } | null | undefined;
521
669
  paymentSetting?: {
522
670
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
523
671
  offlinePaymentTypes?: {
@@ -728,9 +876,30 @@ export declare const WebSocketReqDto: z.ZodObject<{
728
876
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
729
877
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
730
878
  enabled: z.ZodBoolean;
879
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
880
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
881
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
882
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
883
+ }, "strip", z.ZodTypeAny, {
884
+ payAtCounter?: Record<string, string> | null | undefined;
885
+ paid?: Record<string, string> | null | undefined;
886
+ }, {
887
+ payAtCounter?: Record<string, string> | null | undefined;
888
+ paid?: Record<string, string> | null | undefined;
889
+ }>>>;
731
890
  }, "strip", z.ZodTypeAny, {
891
+ enablePaxDialog?: boolean | null | undefined;
892
+ submitOrderInstruction?: {
893
+ payAtCounter?: Record<string, string> | null | undefined;
894
+ paid?: Record<string, string> | null | undefined;
895
+ } | null | undefined;
732
896
  enabled: boolean;
733
897
  }, {
898
+ enablePaxDialog?: boolean | null | undefined;
899
+ submitOrderInstruction?: {
900
+ payAtCounter?: Record<string, string> | null | undefined;
901
+ paid?: Record<string, string> | null | undefined;
902
+ } | null | undefined;
734
903
  enabled: boolean;
735
904
  }>>>;
736
905
  displayStand: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -753,7 +922,23 @@ export declare const WebSocketReqDto: z.ZodObject<{
753
922
  }>;
754
923
  prefix: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
755
924
  padDigit: z.ZodNumber;
925
+ enablePaxDialog: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
926
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
927
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
928
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
929
+ }, "strip", z.ZodTypeAny, {
930
+ payAtCounter?: Record<string, string> | null | undefined;
931
+ paid?: Record<string, string> | null | undefined;
932
+ }, {
933
+ payAtCounter?: Record<string, string> | null | undefined;
934
+ paid?: Record<string, string> | null | undefined;
935
+ }>>>;
756
936
  }, "strip", z.ZodTypeAny, {
937
+ enablePaxDialog?: boolean | null | undefined;
938
+ submitOrderInstruction?: {
939
+ payAtCounter?: Record<string, string> | null | undefined;
940
+ paid?: Record<string, string> | null | undefined;
941
+ } | null | undefined;
757
942
  enabled: boolean;
758
943
  standSlotRange: {
759
944
  min: number;
@@ -764,6 +949,11 @@ export declare const WebSocketReqDto: z.ZodObject<{
764
949
  }, {
765
950
  enabled?: boolean | undefined;
766
951
  prefix?: string | null | undefined;
952
+ enablePaxDialog?: boolean | null | undefined;
953
+ submitOrderInstruction?: {
954
+ payAtCounter?: Record<string, string> | null | undefined;
955
+ paid?: Record<string, string> | null | undefined;
956
+ } | null | undefined;
767
957
  standSlotRange: {
768
958
  min: number;
769
959
  max: number;
@@ -773,9 +963,19 @@ export declare const WebSocketReqDto: z.ZodObject<{
773
963
  }, "strip", z.ZodTypeAny, {
774
964
  requiredSlot?: boolean | null | undefined;
775
965
  pickUp?: {
966
+ enablePaxDialog?: boolean | null | undefined;
967
+ submitOrderInstruction?: {
968
+ payAtCounter?: Record<string, string> | null | undefined;
969
+ paid?: Record<string, string> | null | undefined;
970
+ } | null | undefined;
776
971
  enabled: boolean;
777
972
  } | null | undefined;
778
973
  displayStand?: {
974
+ enablePaxDialog?: boolean | null | undefined;
975
+ submitOrderInstruction?: {
976
+ payAtCounter?: Record<string, string> | null | undefined;
977
+ paid?: Record<string, string> | null | undefined;
978
+ } | null | undefined;
779
979
  enabled: boolean;
780
980
  standSlotRange: {
781
981
  min: number;
@@ -787,11 +987,21 @@ export declare const WebSocketReqDto: z.ZodObject<{
787
987
  }, {
788
988
  requiredSlot?: boolean | null | undefined;
789
989
  pickUp?: {
990
+ enablePaxDialog?: boolean | null | undefined;
991
+ submitOrderInstruction?: {
992
+ payAtCounter?: Record<string, string> | null | undefined;
993
+ paid?: Record<string, string> | null | undefined;
994
+ } | null | undefined;
790
995
  enabled: boolean;
791
996
  } | null | undefined;
792
997
  displayStand?: {
793
998
  enabled?: boolean | undefined;
794
999
  prefix?: string | null | undefined;
1000
+ enablePaxDialog?: boolean | null | undefined;
1001
+ submitOrderInstruction?: {
1002
+ payAtCounter?: Record<string, string> | null | undefined;
1003
+ paid?: Record<string, string> | null | undefined;
1004
+ } | null | undefined;
795
1005
  standSlotRange: {
796
1006
  min: number;
797
1007
  max: number;
@@ -800,6 +1010,28 @@ export declare const WebSocketReqDto: z.ZodObject<{
800
1010
  } | null | undefined;
801
1011
  }>>>;
802
1012
  canTakeaway: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
1013
+ takeaway: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1014
+ submitOrderInstruction: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1015
+ payAtCounter: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1016
+ paid: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ payAtCounter?: Record<string, string> | null | undefined;
1019
+ paid?: Record<string, string> | null | undefined;
1020
+ }, {
1021
+ payAtCounter?: Record<string, string> | null | undefined;
1022
+ paid?: Record<string, string> | null | undefined;
1023
+ }>>>;
1024
+ }, "strip", z.ZodTypeAny, {
1025
+ submitOrderInstruction?: {
1026
+ payAtCounter?: Record<string, string> | null | undefined;
1027
+ paid?: Record<string, string> | null | undefined;
1028
+ } | null | undefined;
1029
+ }, {
1030
+ submitOrderInstruction?: {
1031
+ payAtCounter?: Record<string, string> | null | undefined;
1032
+ paid?: Record<string, string> | null | undefined;
1033
+ } | null | undefined;
1034
+ }>>>;
803
1035
  paymentSetting: z.ZodNullable<z.ZodOptional<z.ZodObject<{
804
1036
  paymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodEnum<["cash", "ePayment", "ePaymentNonPayout", "credit", "ePaymentSandbox"]>>, "many">>>;
805
1037
  offlinePaymentTypes: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
@@ -896,9 +1128,19 @@ export declare const WebSocketReqDto: z.ZodObject<{
896
1128
  dineIn?: {
897
1129
  requiredSlot?: boolean | null | undefined;
898
1130
  pickUp?: {
1131
+ enablePaxDialog?: boolean | null | undefined;
1132
+ submitOrderInstruction?: {
1133
+ payAtCounter?: Record<string, string> | null | undefined;
1134
+ paid?: Record<string, string> | null | undefined;
1135
+ } | null | undefined;
899
1136
  enabled: boolean;
900
1137
  } | null | undefined;
901
1138
  displayStand?: {
1139
+ enablePaxDialog?: boolean | null | undefined;
1140
+ submitOrderInstruction?: {
1141
+ payAtCounter?: Record<string, string> | null | undefined;
1142
+ paid?: Record<string, string> | null | undefined;
1143
+ } | null | undefined;
902
1144
  enabled: boolean;
903
1145
  standSlotRange: {
904
1146
  min: number;
@@ -909,6 +1151,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
909
1151
  } | null | undefined;
910
1152
  } | null | undefined;
911
1153
  canTakeaway?: boolean | null | undefined;
1154
+ takeaway?: {
1155
+ submitOrderInstruction?: {
1156
+ payAtCounter?: Record<string, string> | null | undefined;
1157
+ paid?: Record<string, string> | null | undefined;
1158
+ } | null | undefined;
1159
+ } | null | undefined;
912
1160
  paymentSetting?: {
913
1161
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
914
1162
  offlinePaymentTypes?: {
@@ -933,11 +1181,21 @@ export declare const WebSocketReqDto: z.ZodObject<{
933
1181
  dineIn?: {
934
1182
  requiredSlot?: boolean | null | undefined;
935
1183
  pickUp?: {
1184
+ enablePaxDialog?: boolean | null | undefined;
1185
+ submitOrderInstruction?: {
1186
+ payAtCounter?: Record<string, string> | null | undefined;
1187
+ paid?: Record<string, string> | null | undefined;
1188
+ } | null | undefined;
936
1189
  enabled: boolean;
937
1190
  } | null | undefined;
938
1191
  displayStand?: {
939
1192
  enabled?: boolean | undefined;
940
1193
  prefix?: string | null | undefined;
1194
+ enablePaxDialog?: boolean | null | undefined;
1195
+ submitOrderInstruction?: {
1196
+ payAtCounter?: Record<string, string> | null | undefined;
1197
+ paid?: Record<string, string> | null | undefined;
1198
+ } | null | undefined;
941
1199
  standSlotRange: {
942
1200
  min: number;
943
1201
  max: number;
@@ -946,6 +1204,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
946
1204
  } | null | undefined;
947
1205
  } | null | undefined;
948
1206
  canTakeaway?: boolean | null | undefined;
1207
+ takeaway?: {
1208
+ submitOrderInstruction?: {
1209
+ payAtCounter?: Record<string, string> | null | undefined;
1210
+ paid?: Record<string, string> | null | undefined;
1211
+ } | null | undefined;
1212
+ } | null | undefined;
949
1213
  paymentSetting?: {
950
1214
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
951
1215
  offlinePaymentTypes?: {
@@ -972,9 +1236,19 @@ export declare const WebSocketReqDto: z.ZodObject<{
972
1236
  dineIn?: {
973
1237
  requiredSlot?: boolean | null | undefined;
974
1238
  pickUp?: {
1239
+ enablePaxDialog?: boolean | null | undefined;
1240
+ submitOrderInstruction?: {
1241
+ payAtCounter?: Record<string, string> | null | undefined;
1242
+ paid?: Record<string, string> | null | undefined;
1243
+ } | null | undefined;
975
1244
  enabled: boolean;
976
1245
  } | null | undefined;
977
1246
  displayStand?: {
1247
+ enablePaxDialog?: boolean | null | undefined;
1248
+ submitOrderInstruction?: {
1249
+ payAtCounter?: Record<string, string> | null | undefined;
1250
+ paid?: Record<string, string> | null | undefined;
1251
+ } | null | undefined;
978
1252
  enabled: boolean;
979
1253
  standSlotRange: {
980
1254
  min: number;
@@ -985,6 +1259,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
985
1259
  } | null | undefined;
986
1260
  } | null | undefined;
987
1261
  canTakeaway?: boolean | null | undefined;
1262
+ takeaway?: {
1263
+ submitOrderInstruction?: {
1264
+ payAtCounter?: Record<string, string> | null | undefined;
1265
+ paid?: Record<string, string> | null | undefined;
1266
+ } | null | undefined;
1267
+ } | null | undefined;
988
1268
  paymentSetting?: {
989
1269
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
990
1270
  offlinePaymentTypes?: {
@@ -1012,11 +1292,21 @@ export declare const WebSocketReqDto: z.ZodObject<{
1012
1292
  dineIn?: {
1013
1293
  requiredSlot?: boolean | null | undefined;
1014
1294
  pickUp?: {
1295
+ enablePaxDialog?: boolean | null | undefined;
1296
+ submitOrderInstruction?: {
1297
+ payAtCounter?: Record<string, string> | null | undefined;
1298
+ paid?: Record<string, string> | null | undefined;
1299
+ } | null | undefined;
1015
1300
  enabled: boolean;
1016
1301
  } | null | undefined;
1017
1302
  displayStand?: {
1018
1303
  enabled?: boolean | undefined;
1019
1304
  prefix?: string | null | undefined;
1305
+ enablePaxDialog?: boolean | null | undefined;
1306
+ submitOrderInstruction?: {
1307
+ payAtCounter?: Record<string, string> | null | undefined;
1308
+ paid?: Record<string, string> | null | undefined;
1309
+ } | null | undefined;
1020
1310
  standSlotRange: {
1021
1311
  min: number;
1022
1312
  max: number;
@@ -1025,6 +1315,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
1025
1315
  } | null | undefined;
1026
1316
  } | null | undefined;
1027
1317
  canTakeaway?: boolean | null | undefined;
1318
+ takeaway?: {
1319
+ submitOrderInstruction?: {
1320
+ payAtCounter?: Record<string, string> | null | undefined;
1321
+ paid?: Record<string, string> | null | undefined;
1322
+ } | null | undefined;
1323
+ } | null | undefined;
1028
1324
  paymentSetting?: {
1029
1325
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1030
1326
  offlinePaymentTypes?: {
@@ -1100,9 +1396,19 @@ export declare const WebSocketReqDto: z.ZodObject<{
1100
1396
  dineIn?: {
1101
1397
  requiredSlot?: boolean | null | undefined;
1102
1398
  pickUp?: {
1399
+ enablePaxDialog?: boolean | null | undefined;
1400
+ submitOrderInstruction?: {
1401
+ payAtCounter?: Record<string, string> | null | undefined;
1402
+ paid?: Record<string, string> | null | undefined;
1403
+ } | null | undefined;
1103
1404
  enabled: boolean;
1104
1405
  } | null | undefined;
1105
1406
  displayStand?: {
1407
+ enablePaxDialog?: boolean | null | undefined;
1408
+ submitOrderInstruction?: {
1409
+ payAtCounter?: Record<string, string> | null | undefined;
1410
+ paid?: Record<string, string> | null | undefined;
1411
+ } | null | undefined;
1106
1412
  enabled: boolean;
1107
1413
  standSlotRange: {
1108
1414
  min: number;
@@ -1113,6 +1419,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
1113
1419
  } | null | undefined;
1114
1420
  } | null | undefined;
1115
1421
  canTakeaway?: boolean | null | undefined;
1422
+ takeaway?: {
1423
+ submitOrderInstruction?: {
1424
+ payAtCounter?: Record<string, string> | null | undefined;
1425
+ paid?: Record<string, string> | null | undefined;
1426
+ } | null | undefined;
1427
+ } | null | undefined;
1116
1428
  paymentSetting?: {
1117
1429
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1118
1430
  offlinePaymentTypes?: {
@@ -1189,11 +1501,21 @@ export declare const WebSocketReqDto: z.ZodObject<{
1189
1501
  dineIn?: {
1190
1502
  requiredSlot?: boolean | null | undefined;
1191
1503
  pickUp?: {
1504
+ enablePaxDialog?: boolean | null | undefined;
1505
+ submitOrderInstruction?: {
1506
+ payAtCounter?: Record<string, string> | null | undefined;
1507
+ paid?: Record<string, string> | null | undefined;
1508
+ } | null | undefined;
1192
1509
  enabled: boolean;
1193
1510
  } | null | undefined;
1194
1511
  displayStand?: {
1195
1512
  enabled?: boolean | undefined;
1196
1513
  prefix?: string | null | undefined;
1514
+ enablePaxDialog?: boolean | null | undefined;
1515
+ submitOrderInstruction?: {
1516
+ payAtCounter?: Record<string, string> | null | undefined;
1517
+ paid?: Record<string, string> | null | undefined;
1518
+ } | null | undefined;
1197
1519
  standSlotRange: {
1198
1520
  min: number;
1199
1521
  max: number;
@@ -1202,6 +1524,12 @@ export declare const WebSocketReqDto: z.ZodObject<{
1202
1524
  } | null | undefined;
1203
1525
  } | null | undefined;
1204
1526
  canTakeaway?: boolean | null | undefined;
1527
+ takeaway?: {
1528
+ submitOrderInstruction?: {
1529
+ payAtCounter?: Record<string, string> | null | undefined;
1530
+ paid?: Record<string, string> | null | undefined;
1531
+ } | null | undefined;
1532
+ } | null | undefined;
1205
1533
  paymentSetting?: {
1206
1534
  paymentTypes?: ("cash" | "ePayment" | "ePaymentNonPayout" | "credit" | "ePaymentSandbox")[] | null | undefined;
1207
1535
  offlinePaymentTypes?: {