@feedmepos/mf-order-setting 0.0.38 → 0.0.44

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 (51) hide show
  1. package/dist/{KioskDevicesView-DoTQRyXe.js → KioskDevicesView-KBpXQJmy.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DB0dvpBG.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-taf41a-7.js} +2 -2
  3. package/dist/KioskSettingView-DG12ZvfT.js +528 -0
  4. package/dist/{KioskView-4-s6RwC6.js → KioskView-KNiT-upH.js} +125 -119
  5. package/dist/{OrderSettingsView-BqgGXVhY.js → OrderSettingsView-CEh1QUZm.js} +11407 -12610
  6. package/dist/{app-BbOgWoeI.js → app-CKeIud_f.js} +14 -11
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-COLd3dVw.js → dayjs.min-D9bsUd57.js} +232 -242
  9. package/dist/frontend/mf-order/src/app.d.ts +6 -3
  10. package/dist/frontend/mf-order/src/main.d.ts +6 -3
  11. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +3 -3
  12. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +1 -1
  13. package/dist/frontend/mf-order/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue.d.ts +5 -0
  14. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  15. package/dist/{index-BewBuJGi.js → index-D_Tmm1qL.js} +2 -2
  16. package/dist/{menu.dto-Bf0Evx6J.js → menu.dto-BY9dVf93.js} +8216 -8201
  17. package/dist/package/entity/delivery/linked-delivery.do.d.ts +9 -0
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +17 -17
  19. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +21 -21
  20. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +18 -18
  21. package/dist/package/entity/order/dine-in/dine-in.do.d.ts +11 -11
  22. package/dist/package/entity/order/dine-in/dine-in.dto.d.ts +4 -4
  23. package/dist/package/entity/order/menu/menu.dto.d.ts +4 -4
  24. package/dist/package/entity/order/order.do.d.ts +8 -8
  25. package/dist/package/entity/order/order.dto.d.ts +38 -38
  26. package/dist/package/entity/order/order.enum.d.ts +1 -1
  27. package/dist/package/entity/order-setting/order-setting.do.d.ts +5 -5
  28. package/dist/package/entity/order-setting/order-setting.dto.d.ts +10 -10
  29. package/dist/package/entity/order-setting/sms/sms.do.d.ts +3 -3
  30. package/dist/package/entity/order-setting/sms/sms.dto.d.ts +3 -3
  31. package/dist/package/entity/queue/queue.dto.d.ts +4 -4
  32. package/package.json +2 -2
  33. package/src/locales/en-US.json +2 -1
  34. package/src/locales/th-TH.json +2 -1
  35. package/src/locales/zh-CN.json +2 -1
  36. package/src/views/kiosk/KioskView.vue +16 -4
  37. package/src/views/kiosk/settings/KioskSettingView.vue +193 -122
  38. package/src/views/order-settings/OrderSettingsView.vue +10 -10
  39. package/src/views/order-settings/delivery/DeliverySetting.vue +22 -22
  40. package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +28 -7
  41. package/src/views/order-settings/delivery/delivery.ts +9 -5
  42. package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +3 -17
  43. package/dist/KioskSettingView-DRpVR7Ij.js +0 -843
  44. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskDineInSection.vue.d.ts +0 -10
  45. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue.d.ts +0 -9
  46. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskMenuItemSection.vue.d.ts +0 -9
  47. package/dist/frontend/mf-order/src/views/kiosk/settings/KioskTakeawaySection.vue.d.ts +0 -10
  48. package/src/views/kiosk/settings/KioskDineInSection.vue +0 -68
  49. package/src/views/kiosk/settings/KioskEnablePaxDialogSection.vue +0 -33
  50. package/src/views/kiosk/settings/KioskMenuItemSection.vue +0 -27
  51. package/src/views/kiosk/settings/KioskTakeawaySection.vue +0 -66
@@ -6,9 +6,15 @@ export declare const FdoLinkedDelivery: z.ZodObject<{
6
6
  slotPrefix: z.ZodString;
7
7
  paymentTypeKey: z.ZodString;
8
8
  catalogId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9
+ rounding: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
10
+ useCustomOrderNumber: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
11
+ requiredRemark: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
9
12
  }, "strip", z.ZodTypeAny, {
10
13
  _id?: string | null | undefined;
11
14
  catalogId?: string | null | undefined;
15
+ rounding?: boolean | null | undefined;
16
+ useCustomOrderNumber?: boolean | null | undefined;
17
+ requiredRemark?: boolean | null | undefined;
12
18
  name: string;
13
19
  key: string;
14
20
  slotPrefix: string;
@@ -16,6 +22,9 @@ export declare const FdoLinkedDelivery: z.ZodObject<{
16
22
  }, {
17
23
  _id?: string | null | undefined;
18
24
  catalogId?: string | null | undefined;
25
+ rounding?: boolean | null | undefined;
26
+ useCustomOrderNumber?: boolean | null | undefined;
27
+ requiredRemark?: boolean | null | undefined;
19
28
  name: string;
20
29
  key: string;
21
30
  slotPrefix: string;
@@ -928,7 +928,7 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
928
928
  type: z.ZodLiteral<"DINE_IN">;
929
929
  option: z.ZodObject<{
930
930
  platform: z.ZodString;
931
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
931
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
932
932
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
933
933
  id: z.ZodString;
934
934
  name: z.ZodString;
@@ -954,7 +954,7 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
954
954
  } | null | undefined;
955
955
  createdAt?: string | null | undefined;
956
956
  platform: string;
957
- type: "QUEUE" | "RESERVATION" | "QR";
957
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
958
958
  orderIds: string[];
959
959
  }, {
960
960
  reference?: string | null | undefined;
@@ -965,7 +965,7 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
965
965
  } | null | undefined;
966
966
  createdAt?: string | null | undefined;
967
967
  platform: string;
968
- type: "QUEUE" | "RESERVATION" | "QR";
968
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
969
969
  orderIds: string[];
970
970
  }>;
971
971
  }>, "strip", z.ZodTypeAny, {
@@ -978,7 +978,7 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
978
978
  } | null | undefined;
979
979
  createdAt?: string | null | undefined;
980
980
  platform: string;
981
- type: "QUEUE" | "RESERVATION" | "QR";
981
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
982
982
  orderIds: string[];
983
983
  };
984
984
  type: "DINE_IN";
@@ -992,7 +992,7 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
992
992
  } | null | undefined;
993
993
  createdAt?: string | null | undefined;
994
994
  platform: string;
995
- type: "QUEUE" | "RESERVATION" | "QR";
995
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
996
996
  orderIds: string[];
997
997
  };
998
998
  type: "DINE_IN";
@@ -1916,7 +1916,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1916
1916
  type: z.ZodLiteral<"DINE_IN">;
1917
1917
  option: z.ZodObject<{
1918
1918
  platform: z.ZodString;
1919
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
1919
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
1920
1920
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1921
1921
  id: z.ZodString;
1922
1922
  name: z.ZodString;
@@ -1942,7 +1942,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1942
1942
  } | null | undefined;
1943
1943
  createdAt?: string | null | undefined;
1944
1944
  platform: string;
1945
- type: "QUEUE" | "RESERVATION" | "QR";
1945
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
1946
1946
  orderIds: string[];
1947
1947
  }, {
1948
1948
  reference?: string | null | undefined;
@@ -1953,7 +1953,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1953
1953
  } | null | undefined;
1954
1954
  createdAt?: string | null | undefined;
1955
1955
  platform: string;
1956
- type: "QUEUE" | "RESERVATION" | "QR";
1956
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
1957
1957
  orderIds: string[];
1958
1958
  }>;
1959
1959
  }>, "strip", z.ZodTypeAny, {
@@ -1966,7 +1966,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1966
1966
  } | null | undefined;
1967
1967
  createdAt?: string | null | undefined;
1968
1968
  platform: string;
1969
- type: "QUEUE" | "RESERVATION" | "QR";
1969
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
1970
1970
  orderIds: string[];
1971
1971
  };
1972
1972
  type: "DINE_IN";
@@ -1980,7 +1980,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1980
1980
  } | null | undefined;
1981
1981
  createdAt?: string | null | undefined;
1982
1982
  platform: string;
1983
- type: "QUEUE" | "RESERVATION" | "QR";
1983
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
1984
1984
  orderIds: string[];
1985
1985
  };
1986
1986
  type: "DINE_IN";
@@ -4922,7 +4922,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4922
4922
  type: z.ZodLiteral<"DINE_IN">;
4923
4923
  option: z.ZodObject<{
4924
4924
  platform: z.ZodString;
4925
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
4925
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
4926
4926
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
4927
4927
  id: z.ZodString;
4928
4928
  name: z.ZodString;
@@ -4948,7 +4948,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4948
4948
  } | null | undefined;
4949
4949
  createdAt?: string | null | undefined;
4950
4950
  platform: string;
4951
- type: "QUEUE" | "RESERVATION" | "QR";
4951
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4952
4952
  orderIds: string[];
4953
4953
  }, {
4954
4954
  reference?: string | null | undefined;
@@ -4959,7 +4959,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4959
4959
  } | null | undefined;
4960
4960
  createdAt?: string | null | undefined;
4961
4961
  platform: string;
4962
- type: "QUEUE" | "RESERVATION" | "QR";
4962
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4963
4963
  orderIds: string[];
4964
4964
  }>;
4965
4965
  }>, "strip", z.ZodTypeAny, {
@@ -4972,7 +4972,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4972
4972
  } | null | undefined;
4973
4973
  createdAt?: string | null | undefined;
4974
4974
  platform: string;
4975
- type: "QUEUE" | "RESERVATION" | "QR";
4975
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4976
4976
  orderIds: string[];
4977
4977
  };
4978
4978
  type: "DINE_IN";
@@ -4986,7 +4986,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4986
4986
  } | null | undefined;
4987
4987
  createdAt?: string | null | undefined;
4988
4988
  platform: string;
4989
- type: "QUEUE" | "RESERVATION" | "QR";
4989
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4990
4990
  orderIds: string[];
4991
4991
  };
4992
4992
  type: "DINE_IN";
@@ -6447,7 +6447,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
6447
6447
  } | null | undefined;
6448
6448
  createdAt?: string | null | undefined;
6449
6449
  platform: string;
6450
- type: "QUEUE" | "RESERVATION" | "QR";
6450
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
6451
6451
  orderIds: string[];
6452
6452
  };
6453
6453
  type: "DINE_IN";
@@ -7002,7 +7002,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
7002
7002
  } | null | undefined;
7003
7003
  createdAt?: string | null | undefined;
7004
7004
  platform: string;
7005
- type: "QUEUE" | "RESERVATION" | "QR";
7005
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
7006
7006
  orderIds: string[];
7007
7007
  };
7008
7008
  type: "DINE_IN";
@@ -3207,7 +3207,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
3207
3207
  }>>>;
3208
3208
  dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3209
3209
  platform: z.ZodString;
3210
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
3210
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
3211
3211
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3212
3212
  id: z.ZodString;
3213
3213
  name: z.ZodString;
@@ -3233,7 +3233,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
3233
3233
  } | null | undefined;
3234
3234
  createdAt?: string | null | undefined;
3235
3235
  platform: string;
3236
- type: "QUEUE" | "RESERVATION" | "QR";
3236
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
3237
3237
  orderIds: string[];
3238
3238
  }, {
3239
3239
  reference?: string | null | undefined;
@@ -3244,7 +3244,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
3244
3244
  } | null | undefined;
3245
3245
  createdAt?: string | null | undefined;
3246
3246
  platform: string;
3247
- type: "QUEUE" | "RESERVATION" | "QR";
3247
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
3248
3248
  orderIds: string[];
3249
3249
  }>>>;
3250
3250
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -4243,7 +4243,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
4243
4243
  } | null | undefined;
4244
4244
  createdAt?: string | null | undefined;
4245
4245
  platform: string;
4246
- type: "QUEUE" | "RESERVATION" | "QR";
4246
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4247
4247
  orderIds: string[];
4248
4248
  } | null | undefined;
4249
4249
  roundToNearest?: number | null | undefined;
@@ -5075,7 +5075,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5075
5075
  } | null | undefined;
5076
5076
  createdAt?: string | null | undefined;
5077
5077
  platform: string;
5078
- type: "QUEUE" | "RESERVATION" | "QR";
5078
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
5079
5079
  orderIds: string[];
5080
5080
  } | null | undefined;
5081
5081
  roundToNearest?: number | null | undefined;
@@ -5963,7 +5963,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
5963
5963
  } | null | undefined;
5964
5964
  createdAt?: string | null | undefined;
5965
5965
  platform: string;
5966
- type: "QUEUE" | "RESERVATION" | "QR";
5966
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
5967
5967
  orderIds: string[];
5968
5968
  } | null | undefined;
5969
5969
  roundToNearest?: number | null | undefined;
@@ -6824,7 +6824,7 @@ export declare const FdoBaseIncomingOrder: z.ZodObject<{
6824
6824
  } | null | undefined;
6825
6825
  createdAt?: string | null | undefined;
6826
6826
  platform: string;
6827
- type: "QUEUE" | "RESERVATION" | "QR";
6827
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
6828
6828
  orderIds: string[];
6829
6829
  } | null | undefined;
6830
6830
  roundToNearest?: number | null | undefined;
@@ -10407,7 +10407,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
10407
10407
  }>>>;
10408
10408
  dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10409
10409
  platform: z.ZodString;
10410
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
10410
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
10411
10411
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10412
10412
  id: z.ZodString;
10413
10413
  name: z.ZodString;
@@ -10433,7 +10433,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
10433
10433
  } | null | undefined;
10434
10434
  createdAt?: string | null | undefined;
10435
10435
  platform: string;
10436
- type: "QUEUE" | "RESERVATION" | "QR";
10436
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
10437
10437
  orderIds: string[];
10438
10438
  }, {
10439
10439
  reference?: string | null | undefined;
@@ -10444,7 +10444,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
10444
10444
  } | null | undefined;
10445
10445
  createdAt?: string | null | undefined;
10446
10446
  platform: string;
10447
- type: "QUEUE" | "RESERVATION" | "QR";
10447
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
10448
10448
  orderIds: string[];
10449
10449
  }>>>;
10450
10450
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -11443,7 +11443,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
11443
11443
  } | null | undefined;
11444
11444
  createdAt?: string | null | undefined;
11445
11445
  platform: string;
11446
- type: "QUEUE" | "RESERVATION" | "QR";
11446
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
11447
11447
  orderIds: string[];
11448
11448
  } | null | undefined;
11449
11449
  roundToNearest?: number | null | undefined;
@@ -12275,7 +12275,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
12275
12275
  } | null | undefined;
12276
12276
  createdAt?: string | null | undefined;
12277
12277
  platform: string;
12278
- type: "QUEUE" | "RESERVATION" | "QR";
12278
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
12279
12279
  orderIds: string[];
12280
12280
  } | null | undefined;
12281
12281
  roundToNearest?: number | null | undefined;
@@ -13163,7 +13163,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
13163
13163
  } | null | undefined;
13164
13164
  createdAt?: string | null | undefined;
13165
13165
  platform: string;
13166
- type: "QUEUE" | "RESERVATION" | "QR";
13166
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
13167
13167
  orderIds: string[];
13168
13168
  } | null | undefined;
13169
13169
  roundToNearest?: number | null | undefined;
@@ -14024,7 +14024,7 @@ export declare const FdoIncomingOrder: z.ZodObject<Omit<{
14024
14024
  } | null | undefined;
14025
14025
  createdAt?: string | null | undefined;
14026
14026
  platform: string;
14027
- type: "QUEUE" | "RESERVATION" | "QR";
14027
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
14028
14028
  orderIds: string[];
14029
14029
  } | null | undefined;
14030
14030
  roundToNearest?: number | null | undefined;
@@ -17607,7 +17607,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
17607
17607
  }>>>;
17608
17608
  dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
17609
17609
  platform: z.ZodString;
17610
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
17610
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
17611
17611
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
17612
17612
  id: z.ZodString;
17613
17613
  name: z.ZodString;
@@ -17633,7 +17633,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
17633
17633
  } | null | undefined;
17634
17634
  createdAt?: string | null | undefined;
17635
17635
  platform: string;
17636
- type: "QUEUE" | "RESERVATION" | "QR";
17636
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
17637
17637
  orderIds: string[];
17638
17638
  }, {
17639
17639
  reference?: string | null | undefined;
@@ -17644,7 +17644,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
17644
17644
  } | null | undefined;
17645
17645
  createdAt?: string | null | undefined;
17646
17646
  platform: string;
17647
- type: "QUEUE" | "RESERVATION" | "QR";
17647
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
17648
17648
  orderIds: string[];
17649
17649
  }>>>;
17650
17650
  roundToNearest: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -18643,7 +18643,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
18643
18643
  } | null | undefined;
18644
18644
  createdAt?: string | null | undefined;
18645
18645
  platform: string;
18646
- type: "QUEUE" | "RESERVATION" | "QR";
18646
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
18647
18647
  orderIds: string[];
18648
18648
  } | null | undefined;
18649
18649
  roundToNearest?: number | null | undefined;
@@ -19475,7 +19475,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
19475
19475
  } | null | undefined;
19476
19476
  createdAt?: string | null | undefined;
19477
19477
  platform: string;
19478
- type: "QUEUE" | "RESERVATION" | "QR";
19478
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
19479
19479
  orderIds: string[];
19480
19480
  } | null | undefined;
19481
19481
  roundToNearest?: number | null | undefined;
@@ -20363,7 +20363,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
20363
20363
  } | null | undefined;
20364
20364
  createdAt?: string | null | undefined;
20365
20365
  platform: string;
20366
- type: "QUEUE" | "RESERVATION" | "QR";
20366
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
20367
20367
  orderIds: string[];
20368
20368
  } | null | undefined;
20369
20369
  roundToNearest?: number | null | undefined;
@@ -21224,7 +21224,7 @@ export declare const FdoIncomingOrderMongo: z.ZodObject<Omit<{
21224
21224
  } | null | undefined;
21225
21225
  createdAt?: string | null | undefined;
21226
21226
  platform: string;
21227
- type: "QUEUE" | "RESERVATION" | "QR";
21227
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
21228
21228
  orderIds: string[];
21229
21229
  } | null | undefined;
21230
21230
  roundToNearest?: number | null | undefined;
@@ -2103,7 +2103,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2103
2103
  type: z.ZodLiteral<"DINE_IN">;
2104
2104
  option: z.ZodObject<{
2105
2105
  platform: z.ZodString;
2106
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
2106
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
2107
2107
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2108
2108
  id: z.ZodString;
2109
2109
  name: z.ZodString;
@@ -2129,7 +2129,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2129
2129
  } | null | undefined;
2130
2130
  createdAt?: string | null | undefined;
2131
2131
  platform: string;
2132
- type: "QUEUE" | "RESERVATION" | "QR";
2132
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
2133
2133
  orderIds: string[];
2134
2134
  }, {
2135
2135
  reference?: string | null | undefined;
@@ -2140,7 +2140,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2140
2140
  } | null | undefined;
2141
2141
  createdAt?: string | null | undefined;
2142
2142
  platform: string;
2143
- type: "QUEUE" | "RESERVATION" | "QR";
2143
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
2144
2144
  orderIds: string[];
2145
2145
  }>;
2146
2146
  }>, "strip", z.ZodTypeAny, {
@@ -2153,7 +2153,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2153
2153
  } | null | undefined;
2154
2154
  createdAt?: string | null | undefined;
2155
2155
  platform: string;
2156
- type: "QUEUE" | "RESERVATION" | "QR";
2156
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
2157
2157
  orderIds: string[];
2158
2158
  };
2159
2159
  type: "DINE_IN";
@@ -2167,7 +2167,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2167
2167
  } | null | undefined;
2168
2168
  createdAt?: string | null | undefined;
2169
2169
  platform: string;
2170
- type: "QUEUE" | "RESERVATION" | "QR";
2170
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
2171
2171
  orderIds: string[];
2172
2172
  };
2173
2173
  type: "DINE_IN";
@@ -3628,7 +3628,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3628
3628
  } | null | undefined;
3629
3629
  createdAt?: string | null | undefined;
3630
3630
  platform: string;
3631
- type: "QUEUE" | "RESERVATION" | "QR";
3631
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
3632
3632
  orderIds: string[];
3633
3633
  };
3634
3634
  type: "DINE_IN";
@@ -4183,7 +4183,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4183
4183
  } | null | undefined;
4184
4184
  createdAt?: string | null | undefined;
4185
4185
  platform: string;
4186
- type: "QUEUE" | "RESERVATION" | "QR";
4186
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4187
4187
  orderIds: string[];
4188
4188
  };
4189
4189
  type: "DINE_IN";
@@ -4779,7 +4779,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4779
4779
  } | null | undefined;
4780
4780
  createdAt?: string | null | undefined;
4781
4781
  platform: string;
4782
- type: "QUEUE" | "RESERVATION" | "QR";
4782
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
4783
4783
  orderIds: string[];
4784
4784
  };
4785
4785
  type: "DINE_IN";
@@ -5349,7 +5349,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5349
5349
  } | null | undefined;
5350
5350
  createdAt?: string | null | undefined;
5351
5351
  platform: string;
5352
- type: "QUEUE" | "RESERVATION" | "QR";
5352
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
5353
5353
  orderIds: string[];
5354
5354
  };
5355
5355
  type: "DINE_IN";
@@ -7693,7 +7693,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7693
7693
  type: z.ZodLiteral<"DINE_IN">;
7694
7694
  option: z.ZodObject<{
7695
7695
  platform: z.ZodString;
7696
- type: z.ZodEnum<["QR", "RESERVATION", "QUEUE"]>;
7696
+ type: z.ZodIntersection<z.ZodString, z.ZodEnum<["QR", "RESERVATION", "QUEUE", "COUNTER", "KIOSK"]>>;
7697
7697
  customer: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7698
7698
  id: z.ZodString;
7699
7699
  name: z.ZodString;
@@ -7719,7 +7719,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7719
7719
  } | null | undefined;
7720
7720
  createdAt?: string | null | undefined;
7721
7721
  platform: string;
7722
- type: "QUEUE" | "RESERVATION" | "QR";
7722
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
7723
7723
  orderIds: string[];
7724
7724
  }, {
7725
7725
  reference?: string | null | undefined;
@@ -7730,7 +7730,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7730
7730
  } | null | undefined;
7731
7731
  createdAt?: string | null | undefined;
7732
7732
  platform: string;
7733
- type: "QUEUE" | "RESERVATION" | "QR";
7733
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
7734
7734
  orderIds: string[];
7735
7735
  }>;
7736
7736
  }>, "strip", z.ZodTypeAny, {
@@ -7743,7 +7743,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7743
7743
  } | null | undefined;
7744
7744
  createdAt?: string | null | undefined;
7745
7745
  platform: string;
7746
- type: "QUEUE" | "RESERVATION" | "QR";
7746
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
7747
7747
  orderIds: string[];
7748
7748
  };
7749
7749
  type: "DINE_IN";
@@ -7757,7 +7757,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7757
7757
  } | null | undefined;
7758
7758
  createdAt?: string | null | undefined;
7759
7759
  platform: string;
7760
- type: "QUEUE" | "RESERVATION" | "QR";
7760
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
7761
7761
  orderIds: string[];
7762
7762
  };
7763
7763
  type: "DINE_IN";
@@ -9218,7 +9218,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9218
9218
  } | null | undefined;
9219
9219
  createdAt?: string | null | undefined;
9220
9220
  platform: string;
9221
- type: "QUEUE" | "RESERVATION" | "QR";
9221
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
9222
9222
  orderIds: string[];
9223
9223
  };
9224
9224
  type: "DINE_IN";
@@ -9773,7 +9773,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9773
9773
  } | null | undefined;
9774
9774
  createdAt?: string | null | undefined;
9775
9775
  platform: string;
9776
- type: "QUEUE" | "RESERVATION" | "QR";
9776
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
9777
9777
  orderIds: string[];
9778
9778
  };
9779
9779
  type: "DINE_IN";
@@ -10333,7 +10333,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10333
10333
  } | null | undefined;
10334
10334
  createdAt?: string | null | undefined;
10335
10335
  platform: string;
10336
- type: "QUEUE" | "RESERVATION" | "QR";
10336
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
10337
10337
  orderIds: string[];
10338
10338
  };
10339
10339
  type: "DINE_IN";
@@ -10904,7 +10904,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10904
10904
  } | null | undefined;
10905
10905
  createdAt?: string | null | undefined;
10906
10906
  platform: string;
10907
- type: "QUEUE" | "RESERVATION" | "QR";
10907
+ type: "QUEUE" | "RESERVATION" | "QR" | "KIOSK" | "COUNTER";
10908
10908
  orderIds: string[];
10909
10909
  };
10910
10910
  type: "DINE_IN";
@@ -1,13 +1,13 @@
1
1
  import { z } from 'zod';
2
2
  export declare const FdoDineInBaseSubOption: z.ZodObject<{
3
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
3
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
4
4
  }, "strip", z.ZodTypeAny, {
5
- type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY";
5
+ type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY" | "KIOSK" | "COUNTER";
6
6
  }, {
7
- type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY";
7
+ type: "QUEUE" | "RESERVATION" | "QR" | "TAKEAWAY" | "KIOSK" | "COUNTER";
8
8
  }>;
9
9
  export declare const FdoDineInQROption: z.ZodObject<z.extendShape<{
10
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
10
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
11
11
  }, {
12
12
  type: z.ZodLiteral<"QR">;
13
13
  session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -22,7 +22,7 @@ export declare const FdoDineInQROption: z.ZodObject<z.extendShape<{
22
22
  type: "QR";
23
23
  }>;
24
24
  export declare const FdoDineInQueueOption: z.ZodObject<z.extendShape<{
25
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
25
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
26
26
  }, {
27
27
  type: z.ZodLiteral<"QUEUE">;
28
28
  queueId: z.ZodEffects<z.ZodString, string, string>;
@@ -37,7 +37,7 @@ export declare const FdoDineInQueueOption: z.ZodObject<z.extendShape<{
37
37
  queueId: string;
38
38
  }>;
39
39
  export declare const FdoDineInReservationOption: z.ZodObject<z.extendShape<{
40
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
40
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
41
41
  }, {
42
42
  type: z.ZodLiteral<"RESERVATION">;
43
43
  reservationId: z.ZodEffects<z.ZodString, string, string>;
@@ -112,7 +112,7 @@ export declare const FdoDineInReservationOption: z.ZodObject<z.extendShape<{
112
112
  reservationId: string;
113
113
  }>;
114
114
  export declare const FdoDineInTakeawayOption: z.ZodObject<z.extendShape<{
115
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
115
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
116
116
  }, {
117
117
  type: z.ZodLiteral<"TAKEAWAY">;
118
118
  slot: z.ZodString;
@@ -127,7 +127,7 @@ export declare const FdoDineInTakeawayOption: z.ZodObject<z.extendShape<{
127
127
  type: "TAKEAWAY";
128
128
  }>;
129
129
  export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
130
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
130
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
131
131
  }, {
132
132
  type: z.ZodLiteral<"QR">;
133
133
  session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -141,7 +141,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
141
141
  slot: string;
142
142
  type: "QR";
143
143
  }> | z.ZodObject<z.extendShape<{
144
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
144
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
145
145
  }, {
146
146
  type: z.ZodLiteral<"QUEUE">;
147
147
  queueId: z.ZodEffects<z.ZodString, string, string>;
@@ -155,7 +155,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
155
155
  type: "QUEUE";
156
156
  queueId: string;
157
157
  }> | z.ZodObject<z.extendShape<{
158
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
158
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
159
159
  }, {
160
160
  type: z.ZodLiteral<"RESERVATION">;
161
161
  reservationId: z.ZodEffects<z.ZodString, string, string>;
@@ -229,7 +229,7 @@ export declare const FdoDineInSubOption: z.ZodDiscriminatedUnion<"type", z.Primi
229
229
  type: "RESERVATION";
230
230
  reservationId: string;
231
231
  }> | z.ZodObject<z.extendShape<{
232
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
232
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
233
233
  }, {
234
234
  type: z.ZodLiteral<"TAKEAWAY">;
235
235
  slot: z.ZodString;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
3
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
3
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
4
4
  }, {
5
5
  type: z.ZodLiteral<"QR">;
6
6
  session: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -14,7 +14,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
14
14
  slot: string;
15
15
  type: "QR";
16
16
  }> | z.ZodObject<z.extendShape<{
17
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
17
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
18
18
  }, {
19
19
  type: z.ZodLiteral<"QUEUE">;
20
20
  queueId: z.ZodString;
@@ -28,7 +28,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
28
28
  type: "QUEUE";
29
29
  queueId: string;
30
30
  }> | z.ZodObject<z.extendShape<{
31
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
31
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
32
32
  }, {
33
33
  type: z.ZodLiteral<"RESERVATION">;
34
34
  reservationId: z.ZodString;
@@ -42,7 +42,7 @@ export declare const OrderDineInSubOptionDto: z.ZodDiscriminatedUnion<"type", z.
42
42
  type: "RESERVATION";
43
43
  reservationId: string;
44
44
  }> | z.ZodObject<z.extendShape<{
45
- type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY"]>;
45
+ type: z.ZodEnum<["QR", "QUEUE", "RESERVATION", "TAKEAWAY", "KIOSK", "COUNTER"]>;
46
46
  }, {
47
47
  type: z.ZodLiteral<"TAKEAWAY">;
48
48
  slot: z.ZodString;