@feedmepos/mf-order-setting 0.0.48 → 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 (71) hide show
  1. package/dist/{KioskDevicesView-iZTQ--DO.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-mN7UPNYu.js → KioskSettingView-DmvtZcV1.js} +34 -33
  4. package/dist/KioskView-M8V91gD5.js +474 -0
  5. package/dist/{OrderSettingsView-B5Nq_u9Z.js → OrderSettingsView-Bl3LshG3.js} +15016 -14688
  6. package/dist/{app-B3KtJhiw.js → app-CLewMjcd.js} +89 -25
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-GjkM9dM2.js → dayjs.min-DCTYRWyD.js} +1 -1
  9. package/dist/frontend/mf-order/src/api/restaurant-setting/index.d.ts +2 -1
  10. package/dist/frontend/mf-order/src/app.d.ts +64 -0
  11. package/dist/frontend/mf-order/src/main.d.ts +64 -0
  12. package/dist/frontend/mf-order/src/modules/kiosk/interface.d.ts +1 -0
  13. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +3 -0
  14. package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +1 -0
  15. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +5 -2
  16. package/dist/frontend/mf-order/src/views/kiosk/devices/KioskDevicesView.vue.d.ts +6 -3
  17. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +8 -0
  18. package/dist/frontend/mf-order/src/views/order-settings/drive-thru/DriveThruSetting.vue.d.ts +2 -0
  19. package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -2
  20. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  21. package/dist/{index-Dwzta1U-.js → index-B7LtJeBJ.js} +2 -2
  22. package/dist/{menu.dto-DgPhiIVk.js → menu.dto-Co7iXHNr.js} +25558 -25019
  23. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +108 -16
  24. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +63 -18
  25. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +118 -18
  26. package/dist/package/entity/kiosk/kiosk.do.d.ts +32 -0
  27. package/dist/package/entity/kiosk/kiosk.dto.d.ts +44 -0
  28. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1071 -0
  29. package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
  30. package/dist/package/entity/order/order.dto.d.ts +16 -8
  31. package/dist/package/entity/order/order.enum.d.ts +2 -0
  32. package/dist/package/entity/order-platform/deliveroo/deliveroo-dto.d.ts +2 -2
  33. package/dist/package/entity/order-platform/deliveroo/deliveroo-setting.do.d.ts +2 -2
  34. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +62 -0
  35. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +178 -0
  36. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +6 -0
  37. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +6 -0
  38. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
  39. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +5 -5
  40. package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +15 -0
  41. package/dist/package/entity/order-platform/grabfood/grabfood-omni.do.d.ts +1834 -15
  42. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +13 -13
  43. package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +5 -2
  44. package/dist/package/entity/order-platform/grabfood/grabfood-webhook.dto.d.ts +528 -805
  45. package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +14 -11
  46. package/dist/package/entity/order-platform/grabfood/grabfood.enum.d.ts +1 -1
  47. package/dist/package/entity/order-platform/order-platform.dto.d.ts +0 -20
  48. package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.do.d.ts +2 -2
  49. package/dist/package/entity/order-platform/shopeefood/shopeefood-settings.dto.d.ts +2 -2
  50. package/dist/package/entity/queue/queue.do.d.ts +12 -0
  51. package/dist/package/entity/queue/queue.dto.d.ts +26 -6
  52. package/package.json +4 -4
  53. package/src/api/restaurant-setting/index.ts +6 -0
  54. package/src/locales/en-US.json +16 -0
  55. package/src/locales/ja-JP.json +16 -0
  56. package/src/locales/th-TH.json +16 -0
  57. package/src/locales/zh-CN.json +16 -0
  58. package/src/main.ts +2 -2
  59. package/src/modules/kiosk/interface.ts +1 -0
  60. package/src/stores/kiosk/mapper.ts +1 -0
  61. package/src/stores/restaurant/index.ts +6 -0
  62. package/src/views/kiosk/KioskSummary.vue +37 -31
  63. package/src/views/kiosk/KioskView.vue +4 -1
  64. package/src/views/kiosk/devices/KioskDeviceCard.vue +205 -89
  65. package/src/views/kiosk/devices/KioskDevicesView.vue +133 -17
  66. package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +8 -3
  67. package/src/views/order-settings/OrderSettingsView.vue +6 -1
  68. package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +22 -1
  69. package/src/views/order-settings/drive-thru/DriveThruSetting.vue +101 -0
  70. package/dist/KioskDevicesView.vue_vue_type_script_setup_true_lang-CPDemTBj.js +0 -306
  71. package/dist/KioskView-NEpc7Ivb.js +0 -452
@@ -142,6 +142,32 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
142
142
  pickupAt: string;
143
143
  customerName: string;
144
144
  }>>>;
145
+ dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
146
+ contactNumber: z.ZodString;
147
+ customerName: z.ZodString;
148
+ pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
149
+ tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
150
+ }, "strip", z.ZodTypeAny, {
151
+ pax?: number | null | undefined;
152
+ tableNumber?: string | null | undefined;
153
+ contactNumber: string;
154
+ customerName: string;
155
+ }, {
156
+ pax?: number | null | undefined;
157
+ tableNumber?: string | null | undefined;
158
+ contactNumber: string;
159
+ customerName: string;
160
+ }>>>;
161
+ driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
162
+ contactNumber: z.ZodString;
163
+ licensePlate: z.ZodString;
164
+ }, "strip", z.ZodTypeAny, {
165
+ licensePlate: string;
166
+ contactNumber: string;
167
+ }, {
168
+ licensePlate: string;
169
+ contactNumber: string;
170
+ }>>>;
145
171
  integrationInfo: z.ZodObject<{
146
172
  partnerStoreId: z.ZodString;
147
173
  partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
@@ -536,6 +562,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
536
562
  };
537
563
  deliveryAt: string;
538
564
  } | null | undefined;
565
+ dineIn?: {
566
+ pax?: number | null | undefined;
567
+ tableNumber?: string | null | undefined;
568
+ contactNumber: string;
569
+ customerName: string;
570
+ } | null | undefined;
571
+ driveThru?: {
572
+ licensePlate: string;
573
+ contactNumber: string;
574
+ } | null | undefined;
539
575
  price: {
540
576
  roundToNearest?: number | null | undefined;
541
577
  totalAmount: {
@@ -656,6 +692,16 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
656
692
  };
657
693
  deliveryAt: string;
658
694
  } | null | undefined;
695
+ dineIn?: {
696
+ pax?: number | null | undefined;
697
+ tableNumber?: string | null | undefined;
698
+ contactNumber: string;
699
+ customerName: string;
700
+ } | null | undefined;
701
+ driveThru?: {
702
+ licensePlate: string;
703
+ contactNumber: string;
704
+ } | null | undefined;
659
705
  price: {
660
706
  roundToNearest?: number | null | undefined;
661
707
  totalAmount: {
@@ -990,6 +1036,22 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
990
1036
  };
991
1037
  deliveryAt: string;
992
1038
  }>>>>;
1039
+ dineIn: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
1040
+ contactNumber: z.ZodString;
1041
+ customerName: z.ZodString;
1042
+ pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1043
+ tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1044
+ }, "strip", z.ZodTypeAny, {
1045
+ pax?: number | null | undefined;
1046
+ tableNumber?: string | null | undefined;
1047
+ contactNumber: string;
1048
+ customerName: string;
1049
+ }, {
1050
+ pax?: number | null | undefined;
1051
+ tableNumber?: string | null | undefined;
1052
+ contactNumber: string;
1053
+ customerName: string;
1054
+ }>>>>;
993
1055
  items: z.ZodOptional<z.ZodArray<z.ZodObject<{
994
1056
  productId: z.ZodString;
995
1057
  subItems: z.ZodArray<z.ZodType<import("./external-order.do").FdoExternalOrderSubItem, z.ZodTypeDef, import("./external-order.do").FdoExternalOrderSubItem>, "many">;
@@ -1231,6 +1293,16 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1231
1293
  }>, "many">>;
1232
1294
  orderTime: z.ZodOptional<z.ZodString>;
1233
1295
  shortCode: z.ZodOptional<z.ZodString>;
1296
+ driveThru: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodObject<{
1297
+ contactNumber: z.ZodString;
1298
+ licensePlate: z.ZodString;
1299
+ }, "strip", z.ZodTypeAny, {
1300
+ licensePlate: string;
1301
+ contactNumber: string;
1302
+ }, {
1303
+ licensePlate: string;
1304
+ contactNumber: string;
1305
+ }>>>>;
1234
1306
  integrationInfo: z.ZodOptional<z.ZodObject<{
1235
1307
  partnerStoreId: z.ZodString;
1236
1308
  partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
@@ -1301,6 +1373,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1301
1373
  };
1302
1374
  deliveryAt: string;
1303
1375
  } | null | undefined;
1376
+ dineIn?: {
1377
+ pax?: number | null | undefined;
1378
+ tableNumber?: string | null | undefined;
1379
+ contactNumber: string;
1380
+ customerName: string;
1381
+ } | null | undefined;
1304
1382
  items?: {
1305
1383
  remark?: string | null | undefined;
1306
1384
  takeawayPrice?: {
@@ -1358,6 +1436,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1358
1436
  }[] | undefined;
1359
1437
  orderTime?: string | undefined;
1360
1438
  shortCode?: string | undefined;
1439
+ driveThru?: {
1440
+ licensePlate: string;
1441
+ contactNumber: string;
1442
+ } | null | undefined;
1361
1443
  integrationInfo?: {
1362
1444
  partnerStoreId: string;
1363
1445
  partnerName: "ZUS_COFFEE";
@@ -1421,6 +1503,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1421
1503
  };
1422
1504
  deliveryAt: string;
1423
1505
  } | null | undefined;
1506
+ dineIn?: {
1507
+ pax?: number | null | undefined;
1508
+ tableNumber?: string | null | undefined;
1509
+ contactNumber: string;
1510
+ customerName: string;
1511
+ } | null | undefined;
1424
1512
  items?: {
1425
1513
  remark?: string | null | undefined;
1426
1514
  takeawayPrice?: {
@@ -1478,6 +1566,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1478
1566
  }[] | undefined;
1479
1567
  orderTime?: string | undefined;
1480
1568
  shortCode?: string | undefined;
1569
+ driveThru?: {
1570
+ licensePlate: string;
1571
+ contactNumber: string;
1572
+ } | null | undefined;
1481
1573
  integrationInfo?: {
1482
1574
  partnerStoreId: string;
1483
1575
  partnerName: "ZUS_COFFEE";
@@ -1544,6 +1636,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1544
1636
  };
1545
1637
  deliveryAt: string;
1546
1638
  } | null | undefined;
1639
+ dineIn?: {
1640
+ pax?: number | null | undefined;
1641
+ tableNumber?: string | null | undefined;
1642
+ contactNumber: string;
1643
+ customerName: string;
1644
+ } | null | undefined;
1547
1645
  items?: {
1548
1646
  remark?: string | null | undefined;
1549
1647
  takeawayPrice?: {
@@ -1601,6 +1699,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1601
1699
  }[] | undefined;
1602
1700
  orderTime?: string | undefined;
1603
1701
  shortCode?: string | undefined;
1702
+ driveThru?: {
1703
+ licensePlate: string;
1704
+ contactNumber: string;
1705
+ } | null | undefined;
1604
1706
  integrationInfo?: {
1605
1707
  partnerStoreId: string;
1606
1708
  partnerName: "ZUS_COFFEE";
@@ -1667,6 +1769,12 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1667
1769
  };
1668
1770
  deliveryAt: string;
1669
1771
  } | null | undefined;
1772
+ dineIn?: {
1773
+ pax?: number | null | undefined;
1774
+ tableNumber?: string | null | undefined;
1775
+ contactNumber: string;
1776
+ customerName: string;
1777
+ } | null | undefined;
1670
1778
  items?: {
1671
1779
  remark?: string | null | undefined;
1672
1780
  takeawayPrice?: {
@@ -1724,6 +1832,10 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1724
1832
  }[] | undefined;
1725
1833
  orderTime?: string | undefined;
1726
1834
  shortCode?: string | undefined;
1835
+ driveThru?: {
1836
+ licensePlate: string;
1837
+ contactNumber: string;
1838
+ } | null | undefined;
1727
1839
  integrationInfo?: {
1728
1840
  partnerStoreId: string;
1729
1841
  partnerName: "ZUS_COFFEE";
@@ -1935,6 +2047,32 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
1935
2047
  pickupAt: string;
1936
2048
  customerName: string;
1937
2049
  }>>>;
2050
+ dineIn: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2051
+ contactNumber: z.ZodString;
2052
+ customerName: z.ZodString;
2053
+ pax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
2054
+ tableNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2055
+ }, "strip", z.ZodTypeAny, {
2056
+ pax?: number | null | undefined;
2057
+ tableNumber?: string | null | undefined;
2058
+ contactNumber: string;
2059
+ customerName: string;
2060
+ }, {
2061
+ pax?: number | null | undefined;
2062
+ tableNumber?: string | null | undefined;
2063
+ contactNumber: string;
2064
+ customerName: string;
2065
+ }>>>;
2066
+ driveThru: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2067
+ contactNumber: z.ZodString;
2068
+ licensePlate: z.ZodString;
2069
+ }, "strip", z.ZodTypeAny, {
2070
+ licensePlate: string;
2071
+ contactNumber: string;
2072
+ }, {
2073
+ licensePlate: string;
2074
+ contactNumber: string;
2075
+ }>>>;
1938
2076
  integrationInfo: z.ZodObject<{
1939
2077
  partnerStoreId: z.ZodString;
1940
2078
  partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
@@ -2329,7 +2467,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2329
2467
  };
2330
2468
  deliveryAt: string;
2331
2469
  } | null | undefined;
2470
+ dineIn?: {
2471
+ pax?: number | null | undefined;
2472
+ tableNumber?: string | null | undefined;
2473
+ contactNumber: string;
2474
+ customerName: string;
2475
+ } | null | undefined;
2332
2476
  billId?: string | null | undefined;
2477
+ driveThru?: {
2478
+ licensePlate: string;
2479
+ contactNumber: string;
2480
+ } | null | undefined;
2333
2481
  eInvoiceUrl?: string | null | undefined;
2334
2482
  _id: string;
2335
2483
  price: {
@@ -2456,7 +2604,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2456
2604
  };
2457
2605
  deliveryAt: string;
2458
2606
  } | null | undefined;
2607
+ dineIn?: {
2608
+ pax?: number | null | undefined;
2609
+ tableNumber?: string | null | undefined;
2610
+ contactNumber: string;
2611
+ customerName: string;
2612
+ } | null | undefined;
2459
2613
  billId?: string | null | undefined;
2614
+ driveThru?: {
2615
+ licensePlate: string;
2616
+ contactNumber: string;
2617
+ } | null | undefined;
2460
2618
  eInvoiceUrl?: string | null | undefined;
2461
2619
  _id: string;
2462
2620
  price: {
@@ -2586,7 +2744,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2586
2744
  };
2587
2745
  deliveryAt: string;
2588
2746
  } | null | undefined;
2747
+ dineIn?: {
2748
+ pax?: number | null | undefined;
2749
+ tableNumber?: string | null | undefined;
2750
+ contactNumber: string;
2751
+ customerName: string;
2752
+ } | null | undefined;
2589
2753
  billId?: string | null | undefined;
2754
+ driveThru?: {
2755
+ licensePlate: string;
2756
+ contactNumber: string;
2757
+ } | null | undefined;
2590
2758
  eInvoiceUrl?: string | null | undefined;
2591
2759
  _id: string;
2592
2760
  price: {
@@ -2716,7 +2884,17 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2716
2884
  };
2717
2885
  deliveryAt: string;
2718
2886
  } | null | undefined;
2887
+ dineIn?: {
2888
+ pax?: number | null | undefined;
2889
+ tableNumber?: string | null | undefined;
2890
+ contactNumber: string;
2891
+ customerName: string;
2892
+ } | null | undefined;
2719
2893
  billId?: string | null | undefined;
2894
+ driveThru?: {
2895
+ licensePlate: string;
2896
+ contactNumber: string;
2897
+ } | null | undefined;
2720
2898
  eInvoiceUrl?: string | null | undefined;
2721
2899
  _id: string;
2722
2900
  price: {
@@ -86,6 +86,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
86
86
  }, {
87
87
  catalogId?: string | null | undefined;
88
88
  }>>>;
89
+ updatedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
90
+ lastSynchronize: z.ZodNullable<z.ZodOptional<z.ZodString>>;
89
91
  }, "strip", z.ZodTypeAny, {
90
92
  pickup?: {
91
93
  catalogId?: string | null | undefined;
@@ -98,6 +100,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
98
100
  systemCode: string;
99
101
  } | null | undefined;
100
102
  } | null | undefined;
103
+ updatedAt?: string | null | undefined;
104
+ lastSynchronize?: string | null | undefined;
101
105
  _id: string;
102
106
  enable: boolean;
103
107
  platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
@@ -119,6 +123,8 @@ export declare const FdoExternalSetting: z.ZodObject<{
119
123
  systemCode: string;
120
124
  } | null | undefined;
121
125
  } | null | undefined;
126
+ updatedAt?: string | null | undefined;
127
+ lastSynchronize?: string | null | undefined;
122
128
  _id: string;
123
129
  enable: boolean;
124
130
  platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
@@ -56,6 +56,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
56
56
  }, {
57
57
  catalogId?: string | null | undefined;
58
58
  }>>>;
59
+ updatedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
60
+ lastSynchronize: z.ZodNullable<z.ZodOptional<z.ZodString>>;
59
61
  }, "_id">, "strip", z.ZodTypeAny, {
60
62
  pickup?: {
61
63
  catalogId?: string | null | undefined;
@@ -68,6 +70,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
68
70
  systemCode: string;
69
71
  } | null | undefined;
70
72
  } | null | undefined;
73
+ updatedAt?: string | null | undefined;
74
+ lastSynchronize?: string | null | undefined;
71
75
  enable: boolean;
72
76
  platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
73
77
  config: {
@@ -88,6 +92,8 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
88
92
  systemCode: string;
89
93
  } | null | undefined;
90
94
  } | null | undefined;
95
+ updatedAt?: string | null | undefined;
96
+ lastSynchronize?: string | null | undefined;
91
97
  enable: boolean;
92
98
  platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
93
99
  config: {
@@ -153,8 +153,9 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
153
153
  catalogId?: string | null | undefined;
154
154
  autoAccept?: boolean | null | undefined;
155
155
  printReceiptAfterClose?: boolean | null | undefined;
156
- commissionRate?: number | null | undefined;
156
+ updatedAt?: string | null | undefined;
157
157
  lastSynchronize?: string | null | undefined;
158
+ commissionRate?: number | null | undefined;
158
159
  showProductAddon?: boolean | null | undefined;
159
160
  reportConfig?: {
160
161
  commissionRate: number;
@@ -169,7 +170,6 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
169
170
  } | null | undefined;
170
171
  hasSst?: boolean | null | undefined;
171
172
  ignoreDiscount?: boolean | null | undefined;
172
- updatedAt?: string | null | undefined;
173
173
  menuSyncError?: string | null | undefined;
174
174
  sstInclusive?: boolean | null | undefined;
175
175
  enable: boolean;
@@ -181,8 +181,9 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
181
181
  catalogId?: string | null | undefined;
182
182
  autoAccept?: boolean | null | undefined;
183
183
  printReceiptAfterClose?: boolean | null | undefined;
184
- commissionRate?: number | null | undefined;
184
+ updatedAt?: string | null | undefined;
185
185
  lastSynchronize?: string | null | undefined;
186
+ commissionRate?: number | null | undefined;
186
187
  showProductAddon?: boolean | null | undefined;
187
188
  reportConfig?: {
188
189
  commissionRate: number;
@@ -197,7 +198,6 @@ export declare const FdoFoodpandaSettings: z.ZodObject<z.extendShape<{
197
198
  } | null | undefined;
198
199
  hasSst?: boolean | null | undefined;
199
200
  ignoreDiscount?: boolean | null | undefined;
200
- updatedAt?: string | null | undefined;
201
201
  menuSyncError?: string | null | undefined;
202
202
  sstInclusive?: boolean | null | undefined;
203
203
  enable: boolean;
@@ -5,9 +5,9 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
5
5
  enable: z.ZodOptional<z.ZodBoolean>;
6
6
  autoCloseBill: z.ZodOptional<z.ZodBoolean>;
7
7
  printReceiptAfterClose: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
8
+ lastSynchronize: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
8
9
  commissionRate: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNumber>>>;
9
10
  remoteId: z.ZodOptional<z.ZodString>;
10
- lastSynchronize: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
11
11
  showProductAddon: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
12
12
  menuSyncError: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
13
13
  partnerMerchantID: z.ZodOptional<z.ZodString>;
@@ -73,9 +73,10 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
73
73
  enable?: boolean | undefined;
74
74
  autoCloseBill?: boolean | undefined;
75
75
  printReceiptAfterClose?: boolean | null | undefined;
76
+ updatedAt?: string | null | undefined;
77
+ lastSynchronize?: string | null | undefined;
76
78
  commissionRate?: number | null | undefined;
77
79
  remoteId?: string | undefined;
78
- lastSynchronize?: string | null | undefined;
79
80
  showProductAddon?: boolean | null | undefined;
80
81
  reportConfig?: {
81
82
  commissionRate: number;
@@ -89,7 +90,6 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
89
90
  }[];
90
91
  } | null | undefined;
91
92
  ignoreDiscount?: boolean | null | undefined;
92
- updatedAt?: string | null | undefined;
93
93
  menuSyncError?: string | null | undefined;
94
94
  sstInclusive?: boolean | null | undefined;
95
95
  partnerMerchantID?: string | undefined;
@@ -100,9 +100,10 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
100
100
  enable?: boolean | undefined;
101
101
  autoCloseBill?: boolean | undefined;
102
102
  printReceiptAfterClose?: boolean | null | undefined;
103
+ updatedAt?: string | null | undefined;
104
+ lastSynchronize?: string | null | undefined;
103
105
  commissionRate?: number | null | undefined;
104
106
  remoteId?: string | undefined;
105
- lastSynchronize?: string | null | undefined;
106
107
  showProductAddon?: boolean | null | undefined;
107
108
  reportConfig?: {
108
109
  commissionRate: number;
@@ -116,7 +117,6 @@ export declare const FPdtoCreateOrUpdateSetting: z.ZodObject<{
116
117
  }[];
117
118
  } | null | undefined;
118
119
  ignoreDiscount?: boolean | null | undefined;
119
- updatedAt?: string | null | undefined;
120
120
  menuSyncError?: string | null | undefined;
121
121
  sstInclusive?: boolean | null | undefined;
122
122
  partnerMerchantID?: string | undefined;
@@ -891,6 +891,7 @@ export declare const GFItemV2: z.ZodObject<{
891
891
  specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
892
892
  barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
893
893
  sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
894
+ grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
894
895
  /** Currently Not Applicable */
895
896
  advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
896
897
  Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -1060,6 +1061,7 @@ export declare const GFItemV2: z.ZodObject<{
1060
1061
  description?: string | null | undefined;
1061
1062
  price?: number | null | undefined;
1062
1063
  photos?: string[] | null | undefined;
1064
+ grabItemID?: string | null | undefined;
1063
1065
  barcode?: string | null | undefined;
1064
1066
  advancedPricing?: {
1065
1067
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1111,6 +1113,7 @@ export declare const GFItemV2: z.ZodObject<{
1111
1113
  description?: string | null | undefined;
1112
1114
  price?: number | null | undefined;
1113
1115
  photos?: string[] | null | undefined;
1116
+ grabItemID?: string | null | undefined;
1114
1117
  barcode?: string | null | undefined;
1115
1118
  advancedPricing?: {
1116
1119
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1175,6 +1178,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
1175
1178
  specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
1176
1179
  barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1177
1180
  sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1181
+ grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1178
1182
  /** Currently Not Applicable */
1179
1183
  advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1180
1184
  Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -1344,6 +1348,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
1344
1348
  description?: string | null | undefined;
1345
1349
  price?: number | null | undefined;
1346
1350
  photos?: string[] | null | undefined;
1351
+ grabItemID?: string | null | undefined;
1347
1352
  barcode?: string | null | undefined;
1348
1353
  advancedPricing?: {
1349
1354
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1395,6 +1400,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
1395
1400
  description?: string | null | undefined;
1396
1401
  price?: number | null | undefined;
1397
1402
  photos?: string[] | null | undefined;
1403
+ grabItemID?: string | null | undefined;
1398
1404
  barcode?: string | null | undefined;
1399
1405
  advancedPricing?: {
1400
1406
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1450,6 +1456,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
1450
1456
  description?: string | null | undefined;
1451
1457
  price?: number | null | undefined;
1452
1458
  photos?: string[] | null | undefined;
1459
+ grabItemID?: string | null | undefined;
1453
1460
  barcode?: string | null | undefined;
1454
1461
  advancedPricing?: {
1455
1462
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1508,6 +1515,7 @@ export declare const GFMenuCategoryV2: z.ZodObject<{
1508
1515
  description?: string | null | undefined;
1509
1516
  price?: number | null | undefined;
1510
1517
  photos?: string[] | null | undefined;
1518
+ grabItemID?: string | null | undefined;
1511
1519
  barcode?: string | null | undefined;
1512
1520
  advancedPricing?: {
1513
1521
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -1986,6 +1994,7 @@ declare const GFMenuV2: z.ZodObject<{
1986
1994
  specialType: z.ZodNullable<z.ZodOptional<z.ZodEnum<["alcohol"]>>>;
1987
1995
  barcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1988
1996
  sellingTimeID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1997
+ grabItemID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1989
1998
  /** Currently Not Applicable */
1990
1999
  advancedPricing: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1991
2000
  Delivery_OnDemand_GrabApp: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -2155,6 +2164,7 @@ declare const GFMenuV2: z.ZodObject<{
2155
2164
  description?: string | null | undefined;
2156
2165
  price?: number | null | undefined;
2157
2166
  photos?: string[] | null | undefined;
2167
+ grabItemID?: string | null | undefined;
2158
2168
  barcode?: string | null | undefined;
2159
2169
  advancedPricing?: {
2160
2170
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -2206,6 +2216,7 @@ declare const GFMenuV2: z.ZodObject<{
2206
2216
  description?: string | null | undefined;
2207
2217
  price?: number | null | undefined;
2208
2218
  photos?: string[] | null | undefined;
2219
+ grabItemID?: string | null | undefined;
2209
2220
  barcode?: string | null | undefined;
2210
2221
  advancedPricing?: {
2211
2222
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -2261,6 +2272,7 @@ declare const GFMenuV2: z.ZodObject<{
2261
2272
  description?: string | null | undefined;
2262
2273
  price?: number | null | undefined;
2263
2274
  photos?: string[] | null | undefined;
2275
+ grabItemID?: string | null | undefined;
2264
2276
  barcode?: string | null | undefined;
2265
2277
  advancedPricing?: {
2266
2278
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -2319,6 +2331,7 @@ declare const GFMenuV2: z.ZodObject<{
2319
2331
  description?: string | null | undefined;
2320
2332
  price?: number | null | undefined;
2321
2333
  photos?: string[] | null | undefined;
2334
+ grabItemID?: string | null | undefined;
2322
2335
  barcode?: string | null | undefined;
2323
2336
  advancedPricing?: {
2324
2337
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -2386,6 +2399,7 @@ declare const GFMenuV2: z.ZodObject<{
2386
2399
  description?: string | null | undefined;
2387
2400
  price?: number | null | undefined;
2388
2401
  photos?: string[] | null | undefined;
2402
+ grabItemID?: string | null | undefined;
2389
2403
  barcode?: string | null | undefined;
2390
2404
  advancedPricing?: {
2391
2405
  Delivery_OnDemand_GrabApp?: number | null | undefined;
@@ -2510,6 +2524,7 @@ declare const GFMenuV2: z.ZodObject<{
2510
2524
  description?: string | null | undefined;
2511
2525
  price?: number | null | undefined;
2512
2526
  photos?: string[] | null | undefined;
2527
+ grabItemID?: string | null | undefined;
2513
2528
  barcode?: string | null | undefined;
2514
2529
  advancedPricing?: {
2515
2530
  Delivery_OnDemand_GrabApp?: number | null | undefined;