@feedmepos/mf-order-setting 0.0.67-dev → 0.0.68-dev

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-mu33XbDe.js → KioskDevicesView-BmMMjoeA.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-DnnwwP5B.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-Hyy3Df9q.js} +3 -3
  3. package/dist/{KioskSettingView-CAwO1SeK.js → KioskSettingView-DiH4FW0p.js} +3 -3
  4. package/dist/{KioskView-pvtKqW3e.js → KioskView-CPQXJGNr.js} +4 -4
  5. package/dist/OrderSettingsView-Crt8n2mi.js +32126 -0
  6. package/dist/{app-MjAVO4M6.js → app-DkD1jT4J.js} +20 -6
  7. package/dist/app.js +1 -1
  8. package/dist/{dayjs.min-ClRk0CwC.js → dayjs.min-BD7tcEKV.js} +1 -1
  9. package/dist/frontend/mf-order/src/app.d.ts +11 -0
  10. package/dist/frontend/mf-order/src/main.d.ts +11 -0
  11. package/dist/frontend/mf-order/src/stores/kiosk/index.d.ts +45 -0
  12. package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +22 -0
  13. package/dist/frontend/mf-order/src/stores/order-setting/index.d.ts +15 -0
  14. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +2 -2
  15. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  16. package/dist/{index-D7iNmBKX.js → index-CFTZXoFP.js} +6 -6
  17. package/dist/{index-BWDduW_i.js → index-CYlX1z6-.js} +2 -2
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +36 -18
  19. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +7 -2
  20. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +92 -60
  21. package/dist/package/entity/kiosk/kiosk.do.d.ts +464 -0
  22. package/dist/package/entity/kiosk/kiosk.dto.d.ts +565 -0
  23. package/dist/package/entity/order/order-item/order-item.dto.d.ts +125 -0
  24. package/dist/package/entity/order/order.do.d.ts +18 -0
  25. package/dist/package/entity/order/order.dto.d.ts +433 -0
  26. package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +5 -0
  27. package/dist/package/entity/order-platform/external/menu/external-menu.dto.d.ts +3 -3
  28. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +8 -8
  29. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +19 -19
  30. package/dist/package/entity/order-platform/external/order/external-order.enum.d.ts +1 -1
  31. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
  32. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
  33. package/dist/package/entity/order-platform/menu.dto.d.ts +0 -67
  34. package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
  35. package/dist/package/entity/order-setting/dine-in/dine-in.do.d.ts +29 -0
  36. package/dist/package/entity/order-setting/dine-in/dine-in.dto.d.ts +29 -0
  37. package/dist/package/entity/order-setting/order-setting.do.d.ts +29 -0
  38. package/dist/package/entity/order-setting/order-setting.dto.d.ts +58 -0
  39. package/dist/package/entity/printer/printer.do.d.ts +114 -0
  40. package/dist/package/entity/queue/queue.dto.d.ts +93 -0
  41. package/dist/package/entity/restaurant/restaurant.dto.d.ts +3 -0
  42. package/dist/queue-transfer.dto-BUAF-sBn.js +70184 -0
  43. package/package.json +5 -3
  44. package/src/locales/en-US.json +8 -0
  45. package/src/locales/ja-JP.json +1 -0
  46. package/src/locales/th-TH.json +1 -0
  47. package/src/locales/zh-CN.json +1 -0
  48. package/src/views/order-settings/dine-in/DineInSetting.vue +75 -0
  49. package/src/views/order-settings/general/GeneralSetting.vue +12 -0
  50. package/dist/OrderSettingsView-DgLwwgzb.js +0 -31258
  51. package/dist/queue-transfer.dto-CXRjYyMe.js +0 -45343
@@ -1522,13 +1522,16 @@ export declare const FdtoMasterExternalMenu: z.ZodObject<{
1522
1522
  subCategory: z.ZodArray<z.ZodObject<{
1523
1523
  _id: z.ZodString;
1524
1524
  name: z.ZodString;
1525
+ name_locale: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1525
1526
  position: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
1526
1527
  }, "strip", z.ZodTypeAny, {
1527
1528
  position?: number | null | undefined;
1529
+ name_locale?: Record<string, string> | null | undefined;
1528
1530
  name: string;
1529
1531
  _id: string;
1530
1532
  }, {
1531
1533
  position?: number | null | undefined;
1534
+ name_locale?: Record<string, string> | null | undefined;
1532
1535
  name: string;
1533
1536
  _id: string;
1534
1537
  }>, "many">;
@@ -1982,6 +1985,7 @@ export declare const FdtoMasterExternalMenu: z.ZodObject<{
1982
1985
  }[];
1983
1986
  subCategory: {
1984
1987
  position?: number | null | undefined;
1988
+ name_locale?: Record<string, string> | null | undefined;
1985
1989
  name: string;
1986
1990
  _id: string;
1987
1991
  }[];
@@ -2130,6 +2134,7 @@ export declare const FdtoMasterExternalMenu: z.ZodObject<{
2130
2134
  }[];
2131
2135
  subCategory: {
2132
2136
  position?: number | null | undefined;
2137
+ name_locale?: Record<string, string> | null | undefined;
2133
2138
  name: string;
2134
2139
  _id: string;
2135
2140
  }[];
@@ -18,11 +18,11 @@ export declare const FdtoExternalTransformMenu: z.ZodObject<{
18
18
  menu: FdtoOverridedMenu;
19
19
  }>;
20
20
  export declare const FdtoExternalMenuVerify: z.ZodObject<{
21
- platform: z.ZodEnum<["ZUS_COFFEE"]>;
21
+ platform: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
22
22
  }, "strip", z.ZodTypeAny, {
23
- platform: "ZUS_COFFEE";
23
+ platform: "ZUS_COFFEE" | "HAKSHAN";
24
24
  }, {
25
- platform: "ZUS_COFFEE";
25
+ platform: "ZUS_COFFEE" | "HAKSHAN";
26
26
  }>;
27
27
  export type FdtoExternalTransformMenu = z.infer<typeof FdtoExternalTransformMenu>;
28
28
  export type FdtoExternalGetMenu = z.infer<typeof FdtoExternalGetMenu>;
@@ -184,13 +184,13 @@ export declare const FdoExternalOrderDineIn: z.ZodObject<{
184
184
  }>;
185
185
  export declare const FdoExternalOrderIntegrationInfo: z.ZodObject<{
186
186
  partnerStoreId: z.ZodString;
187
- partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
187
+ partnerName: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
188
188
  }, "strip", z.ZodTypeAny, {
189
189
  partnerStoreId: string;
190
- partnerName: "ZUS_COFFEE";
190
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
191
191
  }, {
192
192
  partnerStoreId: string;
193
- partnerName: "ZUS_COFFEE";
193
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
194
194
  }>;
195
195
  export declare const FdoExternalOrderPickupPoint: z.ZodObject<{
196
196
  name: z.ZodString;
@@ -790,13 +790,13 @@ export declare const FdoExternalOrder: z.ZodObject<{
790
790
  }>>>;
791
791
  integrationInfo: z.ZodObject<{
792
792
  partnerStoreId: z.ZodString;
793
- partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
793
+ partnerName: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
794
794
  }, "strip", z.ZodTypeAny, {
795
795
  partnerStoreId: string;
796
- partnerName: "ZUS_COFFEE";
796
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
797
797
  }, {
798
798
  partnerStoreId: string;
799
- partnerName: "ZUS_COFFEE";
799
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
800
800
  }>;
801
801
  payment: z.ZodObject<{
802
802
  paymentType: z.ZodEnum<["ePayment", "Cash"]>;
@@ -1283,7 +1283,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
1283
1283
  shortCode: string;
1284
1284
  integrationInfo: {
1285
1285
  partnerStoreId: string;
1286
- partnerName: "ZUS_COFFEE";
1286
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1287
1287
  };
1288
1288
  }, {
1289
1289
  pickup?: {
@@ -1420,7 +1420,7 @@ export declare const FdoExternalOrder: z.ZodObject<{
1420
1420
  shortCode: string;
1421
1421
  integrationInfo: {
1422
1422
  partnerStoreId: string;
1423
- partnerName: "ZUS_COFFEE";
1423
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1424
1424
  };
1425
1425
  }>;
1426
1426
  export type FdoExternalOrder = z.infer<typeof FdoExternalOrder>;
@@ -170,13 +170,13 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
170
170
  }>>>;
171
171
  integrationInfo: z.ZodObject<{
172
172
  partnerStoreId: z.ZodString;
173
- partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
173
+ partnerName: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
174
174
  }, "strip", z.ZodTypeAny, {
175
175
  partnerStoreId: string;
176
- partnerName: "ZUS_COFFEE";
176
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
177
177
  }, {
178
178
  partnerStoreId: string;
179
- partnerName: "ZUS_COFFEE";
179
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
180
180
  }>;
181
181
  payment: z.ZodObject<{
182
182
  paymentType: z.ZodEnum<["ePayment", "Cash"]>;
@@ -656,7 +656,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
656
656
  shortCode: string;
657
657
  integrationInfo: {
658
658
  partnerStoreId: string;
659
- partnerName: "ZUS_COFFEE";
659
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
660
660
  };
661
661
  }, {
662
662
  pickup?: {
@@ -786,7 +786,7 @@ export declare const FdtoExternalOrderCreate: z.ZodObject<Omit<{
786
786
  shortCode: string;
787
787
  integrationInfo: {
788
788
  partnerStoreId: string;
789
- partnerName: "ZUS_COFFEE";
789
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
790
790
  };
791
791
  }>;
792
792
  export declare const FdtoExternalOrderCreateRes: z.ZodObject<{
@@ -1305,13 +1305,13 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1305
1305
  }>>>>;
1306
1306
  integrationInfo: z.ZodOptional<z.ZodObject<{
1307
1307
  partnerStoreId: z.ZodString;
1308
- partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
1308
+ partnerName: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
1309
1309
  }, "strip", z.ZodTypeAny, {
1310
1310
  partnerStoreId: string;
1311
- partnerName: "ZUS_COFFEE";
1311
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1312
1312
  }, {
1313
1313
  partnerStoreId: string;
1314
- partnerName: "ZUS_COFFEE";
1314
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1315
1315
  }>>;
1316
1316
  }, {
1317
1317
  restaurantId: z.ZodString;
@@ -1442,7 +1442,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1442
1442
  } | null | undefined;
1443
1443
  integrationInfo?: {
1444
1444
  partnerStoreId: string;
1445
- partnerName: "ZUS_COFFEE";
1445
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1446
1446
  } | undefined;
1447
1447
  restaurantId: string;
1448
1448
  }, {
@@ -1572,7 +1572,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1572
1572
  } | null | undefined;
1573
1573
  integrationInfo?: {
1574
1574
  partnerStoreId: string;
1575
- partnerName: "ZUS_COFFEE";
1575
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1576
1576
  } | undefined;
1577
1577
  restaurantId: string;
1578
1578
  }>;
@@ -1705,7 +1705,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1705
1705
  } | null | undefined;
1706
1706
  integrationInfo?: {
1707
1707
  partnerStoreId: string;
1708
- partnerName: "ZUS_COFFEE";
1708
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1709
1709
  } | undefined;
1710
1710
  restaurantId: string;
1711
1711
  };
@@ -1838,7 +1838,7 @@ export declare const FdtoExternalOrderUpdate: z.ZodObject<{
1838
1838
  } | null | undefined;
1839
1839
  integrationInfo?: {
1840
1840
  partnerStoreId: string;
1841
- partnerName: "ZUS_COFFEE";
1841
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
1842
1842
  } | undefined;
1843
1843
  restaurantId: string;
1844
1844
  };
@@ -2075,13 +2075,13 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2075
2075
  }>>>;
2076
2076
  integrationInfo: z.ZodObject<{
2077
2077
  partnerStoreId: z.ZodString;
2078
- partnerName: z.ZodEnum<["ZUS_COFFEE"]>;
2078
+ partnerName: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
2079
2079
  }, "strip", z.ZodTypeAny, {
2080
2080
  partnerStoreId: string;
2081
- partnerName: "ZUS_COFFEE";
2081
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2082
2082
  }, {
2083
2083
  partnerStoreId: string;
2084
- partnerName: "ZUS_COFFEE";
2084
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2085
2085
  }>;
2086
2086
  payment: z.ZodObject<{
2087
2087
  paymentType: z.ZodEnum<["ePayment", "Cash"]>;
@@ -2568,7 +2568,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2568
2568
  shortCode: string;
2569
2569
  integrationInfo: {
2570
2570
  partnerStoreId: string;
2571
- partnerName: "ZUS_COFFEE";
2571
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2572
2572
  };
2573
2573
  }, {
2574
2574
  pickup?: {
@@ -2705,7 +2705,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2705
2705
  shortCode: string;
2706
2706
  integrationInfo: {
2707
2707
  partnerStoreId: string;
2708
- partnerName: "ZUS_COFFEE";
2708
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2709
2709
  };
2710
2710
  }>, "many">;
2711
2711
  hasMore: z.ZodBoolean;
@@ -2845,7 +2845,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2845
2845
  shortCode: string;
2846
2846
  integrationInfo: {
2847
2847
  partnerStoreId: string;
2848
- partnerName: "ZUS_COFFEE";
2848
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2849
2849
  };
2850
2850
  }[];
2851
2851
  hasMore: boolean;
@@ -2985,7 +2985,7 @@ export declare const FdtoExternalOrderGetRes: z.ZodObject<{
2985
2985
  shortCode: string;
2986
2986
  integrationInfo: {
2987
2987
  partnerStoreId: string;
2988
- partnerName: "ZUS_COFFEE";
2988
+ partnerName: "ZUS_COFFEE" | "HAKSHAN";
2989
2989
  };
2990
2990
  }[];
2991
2991
  hasMore: boolean;
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const F_EXTERNAL_PAYMENT_TYPE: z.ZodEnum<["ePayment", "Cash"]>;
3
- export declare const F_EXTERNAL_ORDER_PLATFORM: z.ZodEnum<["ZUS_COFFEE"]>;
3
+ export declare const F_EXTERNAL_ORDER_PLATFORM: z.ZodEnum<["ZUS_COFFEE", "HAKSHAN"]>;
4
4
  export declare const F_EXTERNAL_ORDER_STATE: z.ZodEnum<["READY", "COLLECTED"]>;
5
5
  export declare const F_EXTERNAL_ORDER_STATUS: z.ZodEnum<["PENDING", "ACCEPTED", "REJECTED"]>;
6
6
  export type F_EXTERNAL_ORDER_PLATFORM = z.infer<typeof F_EXTERNAL_ORDER_PLATFORM>;
@@ -62,7 +62,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
62
62
  autoSend: boolean;
63
63
  autoCloseBill: boolean;
64
64
  }>;
65
- platform: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
65
+ platform: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS", "HAKSHAN"]>;
66
66
  delivery: z.ZodNullable<z.ZodOptional<z.ZodObject<{
67
67
  catalogId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
68
68
  deliveryFeeTax: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -118,7 +118,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
118
118
  lastSynchronize?: string | null | undefined;
119
119
  _id: string;
120
120
  enable: boolean;
121
- platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
121
+ platform: "IN_HOUSE" | "FEEDME" | "HAKSHAN" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
122
122
  config: {
123
123
  printReceiptAfterClose?: boolean | null | undefined;
124
124
  bypass?: boolean | null | undefined;
@@ -143,7 +143,7 @@ export declare const FdoExternalSetting: z.ZodObject<{
143
143
  lastSynchronize?: string | null | undefined;
144
144
  _id: string;
145
145
  enable: boolean;
146
- platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
146
+ platform: "IN_HOUSE" | "FEEDME" | "HAKSHAN" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
147
147
  config: {
148
148
  printReceiptAfterClose?: boolean | null | undefined;
149
149
  bypass?: boolean | null | undefined;
@@ -24,7 +24,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
24
24
  autoSend: boolean;
25
25
  autoCloseBill: boolean;
26
26
  }>;
27
- platform: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
27
+ platform: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS", "HAKSHAN"]>;
28
28
  delivery: z.ZodNullable<z.ZodOptional<z.ZodObject<{
29
29
  catalogId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
30
30
  deliveryFeeTax: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -79,7 +79,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
79
79
  updatedAt?: string | null | undefined;
80
80
  lastSynchronize?: string | null | undefined;
81
81
  enable: boolean;
82
- platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
82
+ platform: "IN_HOUSE" | "FEEDME" | "HAKSHAN" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
83
83
  config: {
84
84
  printReceiptAfterClose?: boolean | null | undefined;
85
85
  bypass?: boolean | null | undefined;
@@ -103,7 +103,7 @@ export declare const FdtoExternalSettingCreateOrUpdate: z.ZodObject<Omit<{
103
103
  updatedAt?: string | null | undefined;
104
104
  lastSynchronize?: string | null | undefined;
105
105
  enable: boolean;
106
- platform: "IN_HOUSE" | "FEEDME" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
106
+ platform: "IN_HOUSE" | "FEEDME" | "HAKSHAN" | "DELIVEROO" | "FOOD_PANDA" | "GRAB_FOOD" | "SHOPEE_FOOD" | "ZUS";
107
107
  config: {
108
108
  printReceiptAfterClose?: boolean | null | undefined;
109
109
  bypass?: boolean | null | undefined;
@@ -13551,37 +13551,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
13551
13551
  time: string[];
13552
13552
  }>>>;
13553
13553
  lastResetAvailabilityAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13554
- auditLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
13555
- timestamp: z.ZodString;
13556
- changeBy: z.ZodObject<{
13557
- id: z.ZodString;
13558
- name: z.ZodString;
13559
- }, "strip", z.ZodTypeAny, {
13560
- name: string;
13561
- id: string;
13562
- }, {
13563
- name: string;
13564
- id: string;
13565
- }>;
13566
- subject: z.ZodString;
13567
- changes: z.ZodRecord<z.ZodString, z.ZodAny>;
13568
- }, "strip", z.ZodTypeAny, {
13569
- subject: string;
13570
- timestamp: string;
13571
- changeBy: {
13572
- name: string;
13573
- id: string;
13574
- };
13575
- changes: Record<string, any>;
13576
- }, {
13577
- subject: string;
13578
- timestamp: string;
13579
- changeBy: {
13580
- name: string;
13581
- id: string;
13582
- };
13583
- changes: Record<string, any>;
13584
- }>, "many">>>;
13585
13554
  }, "strip", z.ZodTypeAny, {
13586
13555
  visibility?: Record<string, {
13587
13556
  app?: {
@@ -13590,15 +13559,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
13590
13559
  } | null | undefined;
13591
13560
  }> | null | undefined;
13592
13561
  _id?: string | undefined;
13593
- auditLogs?: {
13594
- subject: string;
13595
- timestamp: string;
13596
- changeBy: {
13597
- name: string;
13598
- id: string;
13599
- };
13600
- changes: Record<string, any>;
13601
- }[] | null | undefined;
13602
13562
  thresholdAdjustments?: Record<string, {
13603
13563
  from?: "ALL" | "POS_ONLY" | "NONE" | null | undefined;
13604
13564
  to: "ALL" | "POS_ONLY" | "NONE";
@@ -13684,15 +13644,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
13684
13644
  } | null | undefined;
13685
13645
  }> | null | undefined;
13686
13646
  _id?: string | undefined;
13687
- auditLogs?: {
13688
- subject: string;
13689
- timestamp: string;
13690
- changeBy: {
13691
- name: string;
13692
- id: string;
13693
- };
13694
- changes: Record<string, any>;
13695
- }[] | null | undefined;
13696
13647
  thresholdAdjustments?: Record<string, {
13697
13648
  from?: "ALL" | "POS_ONLY" | "NONE" | null | undefined;
13698
13649
  to: "ALL" | "POS_ONLY" | "NONE";
@@ -13782,15 +13733,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
13782
13733
  } | null | undefined;
13783
13734
  }> | null | undefined;
13784
13735
  _id?: string | undefined;
13785
- auditLogs?: {
13786
- subject: string;
13787
- timestamp: string;
13788
- changeBy: {
13789
- name: string;
13790
- id: string;
13791
- };
13792
- changes: Record<string, any>;
13793
- }[] | null | undefined;
13794
13736
  thresholdAdjustments?: Record<string, {
13795
13737
  from?: "ALL" | "POS_ONLY" | "NONE" | null | undefined;
13796
13738
  to: "ALL" | "POS_ONLY" | "NONE";
@@ -14275,15 +14217,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
14275
14217
  } | null | undefined;
14276
14218
  }> | null | undefined;
14277
14219
  _id?: string | undefined;
14278
- auditLogs?: {
14279
- subject: string;
14280
- timestamp: string;
14281
- changeBy: {
14282
- name: string;
14283
- id: string;
14284
- };
14285
- changes: Record<string, any>;
14286
- }[] | null | undefined;
14287
14220
  thresholdAdjustments?: Record<string, {
14288
14221
  from?: "ALL" | "POS_ONLY" | "NONE" | null | undefined;
14289
14222
  to: "ALL" | "POS_ONLY" | "NONE";
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  export declare const F_ORDER_PLATFORM_ACTION: z.ZodEnum<["SYNC_MENU", "UPDATE_ORDER", "GET_OR_UPDATE_SETTING"]>;
3
- export declare const F_ORDER_PLATFORM: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS"]>;
3
+ export declare const F_ORDER_PLATFORM: z.ZodEnum<["DELIVEROO", "FOOD_PANDA", "GRAB_FOOD", "SHOPEE_FOOD", "DELIVEROO", "FEEDME", "IN_HOUSE", "ZUS", "HAKSHAN"]>;
4
4
  export declare const F_MENU_SYNCING_STATUS: z.ZodEnum<["SUCCESS", "FAILED", "PROCESSING"]>;
5
5
  export declare const F_SF_MENU_SYNCING_STATUS: z.ZodNativeEnum<{
6
6
  readonly SUCCESS: 0;
@@ -1,12 +1,41 @@
1
1
  import { z } from 'zod';
2
+ export declare const FdoOrderDineInRemarkSettings: z.ZodObject<{
3
+ enabled: z.ZodDefault<z.ZodBoolean>;
4
+ mergeAction: z.ZodDefault<z.ZodEnum<["keep", "override", "concat"]>>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ enabled: boolean;
7
+ mergeAction: "concat" | "override" | "keep";
8
+ }, {
9
+ enabled?: boolean | undefined;
10
+ mergeAction?: "concat" | "override" | "keep" | undefined;
11
+ }>;
2
12
  export declare const FdoOrderDineInSettings: z.ZodObject<{
3
13
  printChecklist: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
4
14
  overridePax: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
15
+ remark: z.ZodNullable<z.ZodOptional<z.ZodObject<{
16
+ enabled: z.ZodDefault<z.ZodBoolean>;
17
+ mergeAction: z.ZodDefault<z.ZodEnum<["keep", "override", "concat"]>>;
18
+ }, "strip", z.ZodTypeAny, {
19
+ enabled: boolean;
20
+ mergeAction: "concat" | "override" | "keep";
21
+ }, {
22
+ enabled?: boolean | undefined;
23
+ mergeAction?: "concat" | "override" | "keep" | undefined;
24
+ }>>>;
5
25
  }, "strip", z.ZodTypeAny, {
26
+ remark?: {
27
+ enabled: boolean;
28
+ mergeAction: "concat" | "override" | "keep";
29
+ } | null | undefined;
6
30
  printChecklist?: boolean | null | undefined;
7
31
  overridePax: boolean | null;
8
32
  }, {
33
+ remark?: {
34
+ enabled?: boolean | undefined;
35
+ mergeAction?: "concat" | "override" | "keep" | undefined;
36
+ } | null | undefined;
9
37
  printChecklist?: boolean | null | undefined;
10
38
  overridePax?: boolean | null | undefined;
11
39
  }>;
40
+ export type FdoOrderDineInRemarkSettings = z.infer<typeof FdoOrderDineInRemarkSettings>;
12
41
  export type FdoOrderDineInSettings = z.infer<typeof FdoOrderDineInSettings>;
@@ -1,12 +1,41 @@
1
1
  import { z } from "zod";
2
+ export declare const OrderDineInRemarkSettingsDto: z.ZodObject<{
3
+ enabled: z.ZodDefault<z.ZodBoolean>;
4
+ mergeAction: z.ZodDefault<z.ZodEnum<["keep", "override", "concat"]>>;
5
+ }, "strip", z.ZodTypeAny, {
6
+ enabled: boolean;
7
+ mergeAction: "concat" | "override" | "keep";
8
+ }, {
9
+ enabled?: boolean | undefined;
10
+ mergeAction?: "concat" | "override" | "keep" | undefined;
11
+ }>;
2
12
  export declare const OrderDineInSettingsDto: z.ZodObject<{
3
13
  printChecklist: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
4
14
  overridePax: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
15
+ remark: z.ZodNullable<z.ZodOptional<z.ZodObject<{
16
+ enabled: z.ZodDefault<z.ZodBoolean>;
17
+ mergeAction: z.ZodDefault<z.ZodEnum<["keep", "override", "concat"]>>;
18
+ }, "strip", z.ZodTypeAny, {
19
+ enabled: boolean;
20
+ mergeAction: "concat" | "override" | "keep";
21
+ }, {
22
+ enabled?: boolean | undefined;
23
+ mergeAction?: "concat" | "override" | "keep" | undefined;
24
+ }>>>;
5
25
  }, "strip", z.ZodTypeAny, {
26
+ remark?: {
27
+ enabled: boolean;
28
+ mergeAction: "concat" | "override" | "keep";
29
+ } | null | undefined;
6
30
  printChecklist?: boolean | null | undefined;
7
31
  overridePax: boolean | null;
8
32
  }, {
33
+ remark?: {
34
+ enabled?: boolean | undefined;
35
+ mergeAction?: "concat" | "override" | "keep" | undefined;
36
+ } | null | undefined;
9
37
  printChecklist?: boolean | null | undefined;
10
38
  overridePax?: boolean | null | undefined;
11
39
  }>;
40
+ export type OrderDineInRemarkSettingsDto = z.infer<typeof OrderDineInRemarkSettingsDto>;
12
41
  export type OrderDineInSettingsDto = z.infer<typeof OrderDineInSettingsDto>;
@@ -3,13 +3,32 @@ export declare const FdoOrderSettings: z.ZodObject<{
3
3
  _id: z.ZodEffects<z.ZodString, string, string>;
4
4
  enableV3: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
5
5
  autoSendKitchen: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
6
+ hideProductCode: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
6
7
  dineInSettings: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7
8
  printChecklist: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
8
9
  overridePax: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodBoolean>>>;
10
+ remark: z.ZodNullable<z.ZodOptional<z.ZodObject<{
11
+ enabled: z.ZodDefault<z.ZodBoolean>;
12
+ mergeAction: z.ZodDefault<z.ZodEnum<["keep", "override", "concat"]>>;
13
+ }, "strip", z.ZodTypeAny, {
14
+ enabled: boolean;
15
+ mergeAction: "concat" | "override" | "keep";
16
+ }, {
17
+ enabled?: boolean | undefined;
18
+ mergeAction?: "concat" | "override" | "keep" | undefined;
19
+ }>>>;
9
20
  }, "strip", z.ZodTypeAny, {
21
+ remark?: {
22
+ enabled: boolean;
23
+ mergeAction: "concat" | "override" | "keep";
24
+ } | null | undefined;
10
25
  printChecklist?: boolean | null | undefined;
11
26
  overridePax: boolean | null;
12
27
  }, {
28
+ remark?: {
29
+ enabled?: boolean | undefined;
30
+ mergeAction?: "concat" | "override" | "keep" | undefined;
31
+ } | null | undefined;
13
32
  printChecklist?: boolean | null | undefined;
14
33
  overridePax?: boolean | null | undefined;
15
34
  }>>>;
@@ -1188,8 +1207,13 @@ export declare const FdoOrderSettings: z.ZodObject<{
1188
1207
  autoCalledLimit: number;
1189
1208
  duration: number;
1190
1209
  } | null | undefined;
1210
+ hideProductCode?: boolean | null | undefined;
1191
1211
  enableV3?: boolean | null | undefined;
1192
1212
  dineInSettings?: {
1213
+ remark?: {
1214
+ enabled: boolean;
1215
+ mergeAction: "concat" | "override" | "keep";
1216
+ } | null | undefined;
1193
1217
  printChecklist?: boolean | null | undefined;
1194
1218
  overridePax: boolean | null;
1195
1219
  } | null | undefined;
@@ -1384,8 +1408,13 @@ export declare const FdoOrderSettings: z.ZodObject<{
1384
1408
  autoCalledLimit: number;
1385
1409
  duration: number;
1386
1410
  } | null | undefined;
1411
+ hideProductCode?: boolean | null | undefined;
1387
1412
  enableV3?: boolean | null | undefined;
1388
1413
  dineInSettings?: {
1414
+ remark?: {
1415
+ enabled?: boolean | undefined;
1416
+ mergeAction?: "concat" | "override" | "keep" | undefined;
1417
+ } | null | undefined;
1389
1418
  printChecklist?: boolean | null | undefined;
1390
1419
  overridePax?: boolean | null | undefined;
1391
1420
  } | null | undefined;