@feedmepos/mf-order-setting 0.0.49 → 0.0.50

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-Ch_mWJz9.js → KioskDevicesView-u14hzPbE.js} +1 -1
  2. package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DBgRDIoS.js +501 -0
  3. package/dist/{KioskSettingView-CaBhf48e.js → KioskSettingView-DmvtZcV1.js} +1 -1
  4. package/dist/KioskView-M8V91gD5.js +474 -0
  5. package/dist/{OrderSettingsView-CRgoLOD2.js → OrderSettingsView-Bl3LshG3.js} +4 -4
  6. package/dist/{app-CDTAjXj9.js → app-CLewMjcd.js} +67 -19
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-dI_j30pv.js → dayjs.min-DCTYRWyD.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +48 -0
  10. package/dist/frontend/mf-order/src/main.d.ts +48 -0
  11. package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
  12. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
  13. package/dist/frontend/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
  14. package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -2
  15. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  16. package/dist/{index-B8U5Sawr.js → index-B7LtJeBJ.js} +2 -2
  17. package/dist/{menu.dto-qVeqpSdz.js → menu.dto-Co7iXHNr.js} +6345 -6286
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +104 -12
  19. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +106 -6
  20. package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
  21. package/dist/package/entity/kiosk/kiosk.dto.d.ts +44 -0
  22. package/dist/package/entity/order/order.enum.d.ts +2 -0
  23. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +62 -0
  24. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +178 -0
  25. package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +15 -0
  26. package/dist/package/entity/order-platform/grabfood/grabfood-omni.do.d.ts +1834 -15
  27. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +13 -13
  28. package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +3 -0
  29. package/dist/package/entity/order-platform/grabfood/grabfood-webhook.dto.d.ts +528 -805
  30. package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +8 -5
  31. package/dist/package/entity/order-platform/grabfood/grabfood.enum.d.ts +1 -1
  32. package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
  33. package/dist/package/entity/queue/queue.dto.d.ts +20 -0
  34. package/package.json +1 -1
  35. package/src/locales/en-US.json +12 -0
  36. package/src/locales/ja-JP.json +12 -0
  37. package/src/locales/th-TH.json +12 -0
  38. package/src/locales/zh-CN.json +12 -0
  39. package/src/modules/kiosk/interface.ts +1 -0
  40. package/src/stores/kiosk/mapper.ts +1 -0
  41. package/src/views/kiosk/KioskSummary.vue +37 -31
  42. package/src/views/kiosk/KioskView.vue +4 -1
  43. package/src/views/kiosk/devices/KioskDeviceCard.vue +205 -89
  44. package/src/views/kiosk/devices/KioskDevicesView.vue +133 -17
  45. package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-DV2HYd8u.js +0 -306
  46. package/dist/KioskView-BGm-emCw.js +0 -452
@@ -1,14 +1,14 @@
1
1
  import { FdoBillItemRef, FdoDinero, FdoBillItemVariantSelected } from '@feedmepos/core/entity';
2
2
  import { z } from 'zod';
3
3
  export declare const FdtoBaseOrderToBillOption: z.ZodObject<{
4
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
4
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
5
5
  }, "strip", z.ZodTypeAny, {
6
- type: "DINE_IN" | "PICKUP" | "DELIVERY";
6
+ type: "DINE_IN" | "PICKUP" | "DELIVERY" | "DRIVE_THRU";
7
7
  }, {
8
- type: "DINE_IN" | "PICKUP" | "DELIVERY";
8
+ type: "DINE_IN" | "PICKUP" | "DELIVERY" | "DRIVE_THRU";
9
9
  }>;
10
10
  export declare const FdtoDeliveryOrderToBillOption: z.ZodObject<z.extendShape<{
11
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
11
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
12
12
  }, {
13
13
  type: z.ZodLiteral<"DELIVERY">;
14
14
  option: z.ZodObject<{
@@ -632,7 +632,7 @@ export declare const FdtoDeliveryOrderToBillOption: z.ZodObject<z.extendShape<{
632
632
  type: "DELIVERY";
633
633
  }>;
634
634
  export declare const FdtoPickupOrderToBillOption: z.ZodObject<z.extendShape<{
635
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
635
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
636
636
  }, {
637
637
  type: z.ZodLiteral<"PICKUP">;
638
638
  option: z.ZodObject<{
@@ -923,7 +923,7 @@ export declare const FdtoPickupOrderToBillOption: z.ZodObject<z.extendShape<{
923
923
  type: "PICKUP";
924
924
  }>;
925
925
  export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
926
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
926
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
927
927
  }, {
928
928
  type: z.ZodLiteral<"DINE_IN">;
929
929
  option: z.ZodObject<{
@@ -997,8 +997,35 @@ export declare const FdtoDineInOrderToBillOption: z.ZodObject<z.extendShape<{
997
997
  };
998
998
  type: "DINE_IN";
999
999
  }>;
1000
+ export declare const FdtoDriveThruOrderToBillOption: z.ZodObject<z.extendShape<{
1001
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1002
+ }, {
1003
+ type: z.ZodLiteral<"DRIVE_THRU">;
1004
+ option: z.ZodObject<{
1005
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1006
+ licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1007
+ }, "strip", z.ZodTypeAny, {
1008
+ platform?: string | null | undefined;
1009
+ licensePlate?: string | null | undefined;
1010
+ }, {
1011
+ platform?: string | null | undefined;
1012
+ licensePlate?: string | null | undefined;
1013
+ }>;
1014
+ }>, "strip", z.ZodTypeAny, {
1015
+ option: {
1016
+ platform?: string | null | undefined;
1017
+ licensePlate?: string | null | undefined;
1018
+ };
1019
+ type: "DRIVE_THRU";
1020
+ }, {
1021
+ option: {
1022
+ platform?: string | null | undefined;
1023
+ licensePlate?: string | null | undefined;
1024
+ };
1025
+ type: "DRIVE_THRU";
1026
+ }>;
1000
1027
  export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
1001
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
1028
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1002
1029
  }, {
1003
1030
  type: z.ZodLiteral<"DELIVERY">;
1004
1031
  option: z.ZodObject<{
@@ -1621,7 +1648,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1621
1648
  };
1622
1649
  type: "DELIVERY";
1623
1650
  }> | z.ZodObject<z.extendShape<{
1624
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
1651
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1625
1652
  }, {
1626
1653
  type: z.ZodLiteral<"PICKUP">;
1627
1654
  option: z.ZodObject<{
@@ -1911,7 +1938,7 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1911
1938
  };
1912
1939
  type: "PICKUP";
1913
1940
  }> | z.ZodObject<z.extendShape<{
1914
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
1941
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1915
1942
  }, {
1916
1943
  type: z.ZodLiteral<"DINE_IN">;
1917
1944
  option: z.ZodObject<{
@@ -1984,6 +2011,32 @@ export declare const FdtoOrderToBillOption: z.ZodDiscriminatedUnion<"type", z.Pr
1984
2011
  orderIds: string[];
1985
2012
  };
1986
2013
  type: "DINE_IN";
2014
+ }> | z.ZodObject<z.extendShape<{
2015
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
2016
+ }, {
2017
+ type: z.ZodLiteral<"DRIVE_THRU">;
2018
+ option: z.ZodObject<{
2019
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2020
+ licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2021
+ }, "strip", z.ZodTypeAny, {
2022
+ platform?: string | null | undefined;
2023
+ licensePlate?: string | null | undefined;
2024
+ }, {
2025
+ platform?: string | null | undefined;
2026
+ licensePlate?: string | null | undefined;
2027
+ }>;
2028
+ }>, "strip", z.ZodTypeAny, {
2029
+ option: {
2030
+ platform?: string | null | undefined;
2031
+ licensePlate?: string | null | undefined;
2032
+ };
2033
+ type: "DRIVE_THRU";
2034
+ }, {
2035
+ option: {
2036
+ platform?: string | null | undefined;
2037
+ licensePlate?: string | null | undefined;
2038
+ };
2039
+ type: "DRIVE_THRU";
1987
2040
  }>>;
1988
2041
  export declare const FdtoOrderPayment: z.ZodObject<{
1989
2042
  type: z.ZodEnum<["cash", "ePayment", "credit", "ePaymentSandbox"]>;
@@ -4023,7 +4076,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4023
4076
  referenceId: string;
4024
4077
  }>, "many">>>;
4025
4078
  option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
4026
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
4079
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
4027
4080
  }, {
4028
4081
  type: z.ZodLiteral<"DELIVERY">;
4029
4082
  option: z.ZodObject<{
@@ -4646,7 +4699,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4646
4699
  };
4647
4700
  type: "DELIVERY";
4648
4701
  }> | z.ZodObject<z.extendShape<{
4649
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
4702
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
4650
4703
  }, {
4651
4704
  type: z.ZodLiteral<"PICKUP">;
4652
4705
  option: z.ZodObject<{
@@ -4936,7 +4989,7 @@ export declare const FdtoOrderToBill: z.ZodObject<{
4936
4989
  };
4937
4990
  type: "PICKUP";
4938
4991
  }> | z.ZodObject<z.extendShape<{
4939
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
4992
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
4940
4993
  }, {
4941
4994
  type: z.ZodLiteral<"DINE_IN">;
4942
4995
  option: z.ZodObject<{
@@ -5009,6 +5062,32 @@ export declare const FdtoOrderToBill: z.ZodObject<{
5009
5062
  orderIds: string[];
5010
5063
  };
5011
5064
  type: "DINE_IN";
5065
+ }> | z.ZodObject<z.extendShape<{
5066
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
5067
+ }, {
5068
+ type: z.ZodLiteral<"DRIVE_THRU">;
5069
+ option: z.ZodObject<{
5070
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5071
+ licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5072
+ }, "strip", z.ZodTypeAny, {
5073
+ platform?: string | null | undefined;
5074
+ licensePlate?: string | null | undefined;
5075
+ }, {
5076
+ platform?: string | null | undefined;
5077
+ licensePlate?: string | null | undefined;
5078
+ }>;
5079
+ }>, "strip", z.ZodTypeAny, {
5080
+ option: {
5081
+ platform?: string | null | undefined;
5082
+ licensePlate?: string | null | undefined;
5083
+ };
5084
+ type: "DRIVE_THRU";
5085
+ }, {
5086
+ option: {
5087
+ platform?: string | null | undefined;
5088
+ licensePlate?: string | null | undefined;
5089
+ };
5090
+ type: "DRIVE_THRU";
5012
5091
  }>>;
5013
5092
  person: z.ZodNumber;
5014
5093
  slot: z.ZodString;
@@ -6470,6 +6549,12 @@ export declare const FdtoOrderToBill: z.ZodObject<{
6470
6549
  orderIds: string[];
6471
6550
  };
6472
6551
  type: "DINE_IN";
6552
+ } | {
6553
+ option: {
6554
+ platform?: string | null | undefined;
6555
+ licensePlate?: string | null | undefined;
6556
+ };
6557
+ type: "DRIVE_THRU";
6473
6558
  };
6474
6559
  slot: string;
6475
6560
  adjustments: Record<string, {
@@ -7027,6 +7112,12 @@ export declare const FdtoOrderToBill: z.ZodObject<{
7027
7112
  orderIds: string[];
7028
7113
  };
7029
7114
  type: "DINE_IN";
7115
+ } | {
7116
+ option: {
7117
+ platform?: string | null | undefined;
7118
+ licensePlate?: string | null | undefined;
7119
+ };
7120
+ type: "DRIVE_THRU";
7030
7121
  };
7031
7122
  slot: string;
7032
7123
  adjustments: Record<string, {
@@ -7218,6 +7309,7 @@ export type FdtoBaseOrderToBillOption = z.infer<typeof FdtoBaseOrderToBillOption
7218
7309
  export type FdtoDeliveryOrderToBillOption = z.infer<typeof FdtoDeliveryOrderToBillOption>;
7219
7310
  export type FdtoPickupOrderToBillOption = z.infer<typeof FdtoPickupOrderToBillOption>;
7220
7311
  export type FdtoDineInOrderToBillOption = z.infer<typeof FdtoDineInOrderToBillOption>;
7312
+ export type FdtoDriveThruOrderToBillOption = z.infer<typeof FdtoDriveThruOrderToBillOption>;
7221
7313
  export type FdtoOrderToBillOption = z.infer<typeof FdtoOrderToBillOption>;
7222
7314
  export type FdtoOrderPayment = z.infer<typeof FdtoOrderPayment>;
7223
7315
  export type FdtoPosOrderPayment = z.infer<typeof FdtoPosOrderPayment>;
@@ -1193,7 +1193,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1193
1193
  referenceId: string;
1194
1194
  }>, "many">>>;
1195
1195
  option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
1196
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
1196
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1197
1197
  }, {
1198
1198
  type: z.ZodLiteral<"DELIVERY">;
1199
1199
  option: z.ZodObject<{
@@ -1816,7 +1816,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1816
1816
  };
1817
1817
  type: "DELIVERY";
1818
1818
  }> | z.ZodObject<z.extendShape<{
1819
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
1819
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
1820
1820
  }, {
1821
1821
  type: z.ZodLiteral<"PICKUP">;
1822
1822
  option: z.ZodObject<{
@@ -2106,7 +2106,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2106
2106
  };
2107
2107
  type: "PICKUP";
2108
2108
  }> | z.ZodObject<z.extendShape<{
2109
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
2109
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
2110
2110
  }, {
2111
2111
  type: z.ZodLiteral<"DINE_IN">;
2112
2112
  option: z.ZodObject<{
@@ -2179,6 +2179,32 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2179
2179
  orderIds: string[];
2180
2180
  };
2181
2181
  type: "DINE_IN";
2182
+ }> | z.ZodObject<z.extendShape<{
2183
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
2184
+ }, {
2185
+ type: z.ZodLiteral<"DRIVE_THRU">;
2186
+ option: z.ZodObject<{
2187
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2188
+ licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2189
+ }, "strip", z.ZodTypeAny, {
2190
+ platform?: string | null | undefined;
2191
+ licensePlate?: string | null | undefined;
2192
+ }, {
2193
+ platform?: string | null | undefined;
2194
+ licensePlate?: string | null | undefined;
2195
+ }>;
2196
+ }>, "strip", z.ZodTypeAny, {
2197
+ option: {
2198
+ platform?: string | null | undefined;
2199
+ licensePlate?: string | null | undefined;
2200
+ };
2201
+ type: "DRIVE_THRU";
2202
+ }, {
2203
+ option: {
2204
+ platform?: string | null | undefined;
2205
+ licensePlate?: string | null | undefined;
2206
+ };
2207
+ type: "DRIVE_THRU";
2182
2208
  }>>;
2183
2209
  person: z.ZodNumber;
2184
2210
  slot: z.ZodString;
@@ -3640,6 +3666,12 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3640
3666
  orderIds: string[];
3641
3667
  };
3642
3668
  type: "DINE_IN";
3669
+ } | {
3670
+ option: {
3671
+ platform?: string | null | undefined;
3672
+ licensePlate?: string | null | undefined;
3673
+ };
3674
+ type: "DRIVE_THRU";
3643
3675
  };
3644
3676
  slot: string;
3645
3677
  adjustments: Record<string, {
@@ -4197,6 +4229,12 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4197
4229
  orderIds: string[];
4198
4230
  };
4199
4231
  type: "DINE_IN";
4232
+ } | {
4233
+ option: {
4234
+ platform?: string | null | undefined;
4235
+ licensePlate?: string | null | undefined;
4236
+ };
4237
+ type: "DRIVE_THRU";
4200
4238
  };
4201
4239
  slot: string;
4202
4240
  adjustments: Record<string, {
@@ -4801,6 +4839,12 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4801
4839
  orderIds: string[];
4802
4840
  };
4803
4841
  type: "DINE_IN";
4842
+ } | {
4843
+ option: {
4844
+ platform?: string | null | undefined;
4845
+ licensePlate?: string | null | undefined;
4846
+ };
4847
+ type: "DRIVE_THRU";
4804
4848
  };
4805
4849
  slot: string;
4806
4850
  adjustments: Record<string, {
@@ -5375,6 +5419,12 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5375
5419
  orderIds: string[];
5376
5420
  };
5377
5421
  type: "DINE_IN";
5422
+ } | {
5423
+ option: {
5424
+ platform?: string | null | undefined;
5425
+ licensePlate?: string | null | undefined;
5426
+ };
5427
+ type: "DRIVE_THRU";
5378
5428
  };
5379
5429
  slot: string;
5380
5430
  adjustments: Record<string, {
@@ -6815,7 +6865,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
6815
6865
  referenceId: string;
6816
6866
  }>, "many">>>>;
6817
6867
  option: z.ZodOptional<z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
6818
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
6868
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
6819
6869
  }, {
6820
6870
  type: z.ZodLiteral<"DELIVERY">;
6821
6871
  option: z.ZodObject<{
@@ -7438,7 +7488,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7438
7488
  };
7439
7489
  type: "DELIVERY";
7440
7490
  }> | z.ZodObject<z.extendShape<{
7441
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
7491
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
7442
7492
  }, {
7443
7493
  type: z.ZodLiteral<"PICKUP">;
7444
7494
  option: z.ZodObject<{
@@ -7728,7 +7778,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7728
7778
  };
7729
7779
  type: "PICKUP";
7730
7780
  }> | z.ZodObject<z.extendShape<{
7731
- type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY"]>;
7781
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
7732
7782
  }, {
7733
7783
  type: z.ZodLiteral<"DINE_IN">;
7734
7784
  option: z.ZodObject<{
@@ -7801,6 +7851,32 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
7801
7851
  orderIds: string[];
7802
7852
  };
7803
7853
  type: "DINE_IN";
7854
+ }> | z.ZodObject<z.extendShape<{
7855
+ type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
7856
+ }, {
7857
+ type: z.ZodLiteral<"DRIVE_THRU">;
7858
+ option: z.ZodObject<{
7859
+ platform: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7860
+ licensePlate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7861
+ }, "strip", z.ZodTypeAny, {
7862
+ platform?: string | null | undefined;
7863
+ licensePlate?: string | null | undefined;
7864
+ }, {
7865
+ platform?: string | null | undefined;
7866
+ licensePlate?: string | null | undefined;
7867
+ }>;
7868
+ }>, "strip", z.ZodTypeAny, {
7869
+ option: {
7870
+ platform?: string | null | undefined;
7871
+ licensePlate?: string | null | undefined;
7872
+ };
7873
+ type: "DRIVE_THRU";
7874
+ }, {
7875
+ option: {
7876
+ platform?: string | null | undefined;
7877
+ licensePlate?: string | null | undefined;
7878
+ };
7879
+ type: "DRIVE_THRU";
7804
7880
  }>>>;
7805
7881
  person: z.ZodOptional<z.ZodNumber>;
7806
7882
  slot: z.ZodOptional<z.ZodString>;
@@ -9035,6 +9111,12 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9035
9111
  orderIds: string[];
9036
9112
  };
9037
9113
  type: "DINE_IN";
9114
+ } | {
9115
+ option: {
9116
+ platform?: string | null | undefined;
9117
+ licensePlate?: string | null | undefined;
9118
+ };
9119
+ type: "DRIVE_THRU";
9038
9120
  } | undefined;
9039
9121
  slot?: string | undefined;
9040
9122
  remark?: string | null | undefined;
@@ -9592,6 +9674,12 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9592
9674
  orderIds: string[];
9593
9675
  };
9594
9676
  type: "DINE_IN";
9677
+ } | {
9678
+ option: {
9679
+ platform?: string | null | undefined;
9680
+ licensePlate?: string | null | undefined;
9681
+ };
9682
+ type: "DRIVE_THRU";
9595
9683
  } | undefined;
9596
9684
  slot?: string | undefined;
9597
9685
  remark?: string | null | undefined;
@@ -10167,6 +10255,12 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10167
10255
  orderIds: string[];
10168
10256
  };
10169
10257
  type: "DINE_IN";
10258
+ } | {
10259
+ option: {
10260
+ platform?: string | null | undefined;
10261
+ licensePlate?: string | null | undefined;
10262
+ };
10263
+ type: "DRIVE_THRU";
10170
10264
  } | undefined;
10171
10265
  slot?: string | undefined;
10172
10266
  remark?: string | null | undefined;
@@ -10742,6 +10836,12 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10742
10836
  orderIds: string[];
10743
10837
  };
10744
10838
  type: "DINE_IN";
10839
+ } | {
10840
+ option: {
10841
+ platform?: string | null | undefined;
10842
+ licensePlate?: string | null | undefined;
10843
+ };
10844
+ type: "DRIVE_THRU";
10745
10845
  } | undefined;
10746
10846
  slot?: string | undefined;
10747
10847
  remark?: string | null | undefined;
@@ -446,6 +446,8 @@ export declare const FdoKioskDevice: z.ZodObject<{
446
446
  pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
447
447
  deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
448
448
  deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
449
+ webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
450
+ lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
449
451
  }, "strip", z.ZodTypeAny, {
450
452
  name?: string | null | undefined;
451
453
  scannerInfo?: {
@@ -526,6 +528,8 @@ export declare const FdoKioskDevice: z.ZodObject<{
526
528
  pinInfo?: string | null | undefined;
527
529
  deviceAppVersion?: string | null | undefined;
528
530
  deviceAppOTAVersion?: string | null | undefined;
531
+ webviewVersion?: string | null | undefined;
532
+ lastStartup?: string | null | undefined;
529
533
  machineId: string;
530
534
  token: string;
531
535
  }, {
@@ -608,6 +612,8 @@ export declare const FdoKioskDevice: z.ZodObject<{
608
612
  pinInfo?: string | null | undefined;
609
613
  deviceAppVersion?: string | null | undefined;
610
614
  deviceAppOTAVersion?: string | null | undefined;
615
+ webviewVersion?: string | null | undefined;
616
+ lastStartup?: string | null | undefined;
611
617
  machineId: string;
612
618
  token: string;
613
619
  }>;
@@ -1037,6 +1043,8 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1037
1043
  pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1038
1044
  deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1039
1045
  deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1046
+ webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1047
+ lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
1040
1048
  }, "strip", z.ZodTypeAny, {
1041
1049
  name?: string | null | undefined;
1042
1050
  scannerInfo?: {
@@ -1117,6 +1125,8 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1117
1125
  pinInfo?: string | null | undefined;
1118
1126
  deviceAppVersion?: string | null | undefined;
1119
1127
  deviceAppOTAVersion?: string | null | undefined;
1128
+ webviewVersion?: string | null | undefined;
1129
+ lastStartup?: string | null | undefined;
1120
1130
  machineId: string;
1121
1131
  token: string;
1122
1132
  }, {
@@ -1199,6 +1209,8 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1199
1209
  pinInfo?: string | null | undefined;
1200
1210
  deviceAppVersion?: string | null | undefined;
1201
1211
  deviceAppOTAVersion?: string | null | undefined;
1212
+ webviewVersion?: string | null | undefined;
1213
+ lastStartup?: string | null | undefined;
1202
1214
  machineId: string;
1203
1215
  token: string;
1204
1216
  }>, "many">>>;
@@ -1297,6 +1309,8 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1297
1309
  pinInfo?: string | null | undefined;
1298
1310
  deviceAppVersion?: string | null | undefined;
1299
1311
  deviceAppOTAVersion?: string | null | undefined;
1312
+ webviewVersion?: string | null | undefined;
1313
+ lastStartup?: string | null | undefined;
1300
1314
  machineId: string;
1301
1315
  token: string;
1302
1316
  }[] | null | undefined;
@@ -1386,6 +1400,8 @@ export declare const FdoRestaurantKioskSettings: z.ZodObject<{
1386
1400
  pinInfo?: string | null | undefined;
1387
1401
  deviceAppVersion?: string | null | undefined;
1388
1402
  deviceAppOTAVersion?: string | null | undefined;
1403
+ webviewVersion?: string | null | undefined;
1404
+ lastStartup?: string | null | undefined;
1389
1405
  machineId: string;
1390
1406
  token: string;
1391
1407
  }[] | null | undefined;
@@ -1817,6 +1833,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1817
1833
  pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1818
1834
  deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1819
1835
  deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1836
+ webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1837
+ lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
1820
1838
  }, "strip", z.ZodTypeAny, {
1821
1839
  name?: string | null | undefined;
1822
1840
  scannerInfo?: {
@@ -1897,6 +1915,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1897
1915
  pinInfo?: string | null | undefined;
1898
1916
  deviceAppVersion?: string | null | undefined;
1899
1917
  deviceAppOTAVersion?: string | null | undefined;
1918
+ webviewVersion?: string | null | undefined;
1919
+ lastStartup?: string | null | undefined;
1900
1920
  machineId: string;
1901
1921
  token: string;
1902
1922
  }, {
@@ -1979,6 +1999,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
1979
1999
  pinInfo?: string | null | undefined;
1980
2000
  deviceAppVersion?: string | null | undefined;
1981
2001
  deviceAppOTAVersion?: string | null | undefined;
2002
+ webviewVersion?: string | null | undefined;
2003
+ lastStartup?: string | null | undefined;
1982
2004
  machineId: string;
1983
2005
  token: string;
1984
2006
  }>, "many">>>;
@@ -2417,6 +2439,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2417
2439
  pinInfo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2418
2440
  deviceAppVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2419
2441
  deviceAppOTAVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2442
+ webviewVersion: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2443
+ lastStartup: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
2420
2444
  }, "strip", z.ZodTypeAny, {
2421
2445
  name?: string | null | undefined;
2422
2446
  scannerInfo?: {
@@ -2497,6 +2521,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2497
2521
  pinInfo?: string | null | undefined;
2498
2522
  deviceAppVersion?: string | null | undefined;
2499
2523
  deviceAppOTAVersion?: string | null | undefined;
2524
+ webviewVersion?: string | null | undefined;
2525
+ lastStartup?: string | null | undefined;
2500
2526
  machineId: string;
2501
2527
  token: string;
2502
2528
  }, {
@@ -2579,6 +2605,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2579
2605
  pinInfo?: string | null | undefined;
2580
2606
  deviceAppVersion?: string | null | undefined;
2581
2607
  deviceAppOTAVersion?: string | null | undefined;
2608
+ webviewVersion?: string | null | undefined;
2609
+ lastStartup?: string | null | undefined;
2582
2610
  machineId: string;
2583
2611
  token: string;
2584
2612
  }>;
@@ -2664,6 +2692,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2664
2692
  pinInfo?: string | null | undefined;
2665
2693
  deviceAppVersion?: string | null | undefined;
2666
2694
  deviceAppOTAVersion?: string | null | undefined;
2695
+ webviewVersion?: string | null | undefined;
2696
+ lastStartup?: string | null | undefined;
2667
2697
  machineId: string;
2668
2698
  token: string;
2669
2699
  };
@@ -2749,6 +2779,8 @@ export declare const FdoRestaurantKioskSettingByToken: z.ZodObject<z.extendShape
2749
2779
  pinInfo?: string | null | undefined;
2750
2780
  deviceAppVersion?: string | null | undefined;
2751
2781
  deviceAppOTAVersion?: string | null | undefined;
2782
+ webviewVersion?: string | null | undefined;
2783
+ lastStartup?: string | null | undefined;
2752
2784
  machineId: string;
2753
2785
  token: string;
2754
2786
  };