@feedmepos/mf-order-setting 0.0.31 → 0.0.32

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 (43) hide show
  1. package/dist/{KioskDevicesView-CWzmu0rZ.js → KioskDevicesView-D2w5MMCg.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CldPl8BW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BwxGSbuI.js} +2 -2
  3. package/dist/{KioskSettingView-BsxOiUdj.js → KioskSettingView-CUMAS8OG.js} +1 -1
  4. package/dist/{KioskView-DBnQe7Mp.js → KioskView-NetckXQx.js} +4 -4
  5. package/dist/{OrderSettingsView-BvDtRpI_.js → OrderSettingsView-CL0o1fHq.js} +5336 -5287
  6. package/dist/{app-G3iTmEHp.js → app-DnvFFLBj.js} +4 -4
  7. package/dist/app.js +1 -1
  8. package/dist/common/convertor/index.d.ts +2 -0
  9. package/dist/{dayjs.min-ChzYZzP1.js → dayjs.min-BAx2Uba9.js} +1 -1
  10. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +4 -4
  11. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  12. package/dist/{index-Bacw_1Kj.js → index-DuneL3VN.js} +2 -2
  13. package/dist/package/entity/booking/booking.do.d.ts +20 -20
  14. package/dist/package/entity/delivery/delivery.dto.d.ts +4 -4
  15. package/dist/package/entity/food-court/food-court.dto.d.ts +29 -29
  16. package/dist/package/entity/food-court/order.do.d.ts +4 -2
  17. package/dist/package/entity/food-court/order.dto.d.ts +9524 -91
  18. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +4 -4
  19. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +126 -0
  20. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +12 -12
  21. package/dist/package/entity/index.d.ts +1 -0
  22. package/dist/package/entity/kiosk/kiosk.do.d.ts +6 -6
  23. package/dist/package/entity/kiosk/kiosk.dto.d.ts +6 -6
  24. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +64 -17
  25. package/dist/package/entity/marketing/marketing.dto.d.ts +239 -0
  26. package/dist/package/entity/order/order-item/order-item.dto.d.ts +8 -0
  27. package/dist/package/entity/order/order.dto.d.ts +24 -16
  28. package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +2073 -0
  29. package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +736 -214
  30. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +3 -3
  31. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +3 -3
  32. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +4 -4
  33. package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +2 -2
  34. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +4 -4
  35. package/dist/package/entity/order-platform/menu.dto.d.ts +44 -44
  36. package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
  37. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +59 -4
  38. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +32 -0
  39. package/dist/package/entity/queue/queue.do.d.ts +12 -0
  40. package/dist/package/entity/queue/queue.dto.d.ts +9 -9
  41. package/dist/package/entity/restaurant/restaurant.dto.d.ts +9 -9
  42. package/dist/{queue.do-BtfSllT8.js → queue.do-B1npBXsB.js} +20160 -19771
  43. package/package.json +2 -2
@@ -1183,6 +1183,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1183
1183
  }>, "many">>>;
1184
1184
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1185
1185
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1186
+ subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
1186
1187
  }, "strip", z.ZodTypeAny, {
1187
1188
  unit?: string | null | undefined;
1188
1189
  categoryName?: string | null | undefined;
@@ -1228,6 +1229,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1228
1229
  systemCode: string;
1229
1230
  }[] | null | undefined;
1230
1231
  customAttributes?: Record<string, any> | null | undefined;
1232
+ subCategories?: string[] | null | undefined;
1231
1233
  code: string;
1232
1234
  name: string;
1233
1235
  price: {
@@ -1280,6 +1282,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1280
1282
  systemCode: string;
1281
1283
  }[] | null | undefined;
1282
1284
  customAttributes?: Record<string, any> | null | undefined;
1285
+ subCategories?: string[] | null | undefined;
1283
1286
  code: string;
1284
1287
  name: string;
1285
1288
  price: {
@@ -1376,6 +1379,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1376
1379
  systemCode: string;
1377
1380
  }[] | null | undefined;
1378
1381
  customAttributes?: Record<string, any> | null | undefined;
1382
+ subCategories?: string[] | null | undefined;
1379
1383
  code: string;
1380
1384
  name: string;
1381
1385
  price: {
@@ -1559,6 +1563,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1559
1563
  systemCode: string;
1560
1564
  }[] | null | undefined;
1561
1565
  customAttributes?: Record<string, any> | null | undefined;
1566
+ subCategories?: string[] | null | undefined;
1562
1567
  code: string;
1563
1568
  name: string;
1564
1569
  price: {
@@ -2525,6 +2530,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2525
2530
  }>, "many">>>;
2526
2531
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2527
2532
  customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
2533
+ subCategories: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
2528
2534
  }, "strip", z.ZodTypeAny, {
2529
2535
  unit?: string | null | undefined;
2530
2536
  categoryName?: string | null | undefined;
@@ -2570,6 +2576,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2570
2576
  systemCode: string;
2571
2577
  }[] | null | undefined;
2572
2578
  customAttributes?: Record<string, any> | null | undefined;
2579
+ subCategories?: string[] | null | undefined;
2573
2580
  code: string;
2574
2581
  name: string;
2575
2582
  price: {
@@ -2622,6 +2629,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2622
2629
  systemCode: string;
2623
2630
  }[] | null | undefined;
2624
2631
  customAttributes?: Record<string, any> | null | undefined;
2632
+ subCategories?: string[] | null | undefined;
2625
2633
  code: string;
2626
2634
  name: string;
2627
2635
  price: {
@@ -2718,6 +2726,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2718
2726
  systemCode: string;
2719
2727
  }[] | null | undefined;
2720
2728
  customAttributes?: Record<string, any> | null | undefined;
2729
+ subCategories?: string[] | null | undefined;
2721
2730
  code: string;
2722
2731
  name: string;
2723
2732
  price: {
@@ -2901,6 +2910,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2901
2910
  systemCode: string;
2902
2911
  }[] | null | undefined;
2903
2912
  customAttributes?: Record<string, any> | null | undefined;
2913
+ subCategories?: string[] | null | undefined;
2904
2914
  code: string;
2905
2915
  name: string;
2906
2916
  price: {
@@ -3105,6 +3115,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3105
3115
  systemCode: string;
3106
3116
  }[] | null | undefined;
3107
3117
  customAttributes?: Record<string, any> | null | undefined;
3118
+ subCategories?: string[] | null | undefined;
3108
3119
  code: string;
3109
3120
  name: string;
3110
3121
  price: {
@@ -3309,6 +3320,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3309
3320
  systemCode: string;
3310
3321
  }[] | null | undefined;
3311
3322
  customAttributes?: Record<string, any> | null | undefined;
3323
+ subCategories?: string[] | null | undefined;
3312
3324
  code: string;
3313
3325
  name: string;
3314
3326
  price: {
@@ -521,7 +521,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
521
521
  postcode: string;
522
522
  }>;
523
523
  phoneNo: z.ZodString;
524
- email: z.ZodString;
524
+ email: z.ZodDefault<z.ZodString>;
525
525
  regNo: z.ZodString;
526
526
  legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
527
527
  sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -891,6 +891,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
891
891
  code?: string | null | undefined;
892
892
  _id?: string | null | undefined;
893
893
  description?: string | null | undefined;
894
+ email?: string | undefined;
894
895
  discovery?: boolean | null | undefined;
895
896
  legalName?: string | null | undefined;
896
897
  sstRegNo?: string | null | undefined;
@@ -960,7 +961,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
960
961
  city: string;
961
962
  postcode: string;
962
963
  };
963
- email: string;
964
964
  phoneNo: string;
965
965
  regNo: string;
966
966
  }>;
@@ -1288,6 +1288,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1288
1288
  code?: string | null | undefined;
1289
1289
  _id?: string | null | undefined;
1290
1290
  description?: string | null | undefined;
1291
+ email?: string | undefined;
1291
1292
  discovery?: boolean | null | undefined;
1292
1293
  legalName?: string | null | undefined;
1293
1294
  sstRegNo?: string | null | undefined;
@@ -1357,7 +1358,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
1357
1358
  city: string;
1358
1359
  postcode: string;
1359
1360
  };
1360
- email: string;
1361
1361
  phoneNo: string;
1362
1362
  regNo: string;
1363
1363
  };
@@ -2132,7 +2132,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2132
2132
  postcode: string;
2133
2133
  }>;
2134
2134
  phoneNo: z.ZodString;
2135
- email: z.ZodString;
2135
+ email: z.ZodDefault<z.ZodString>;
2136
2136
  regNo: z.ZodString;
2137
2137
  legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2138
2138
  sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2502,6 +2502,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2502
2502
  code?: string | null | undefined;
2503
2503
  _id?: string | null | undefined;
2504
2504
  description?: string | null | undefined;
2505
+ email?: string | undefined;
2505
2506
  discovery?: boolean | null | undefined;
2506
2507
  legalName?: string | null | undefined;
2507
2508
  sstRegNo?: string | null | undefined;
@@ -2571,7 +2572,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2571
2572
  city: string;
2572
2573
  postcode: string;
2573
2574
  };
2574
- email: string;
2575
2575
  phoneNo: string;
2576
2576
  regNo: string;
2577
2577
  }>;
@@ -2899,6 +2899,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2899
2899
  code?: string | null | undefined;
2900
2900
  _id?: string | null | undefined;
2901
2901
  description?: string | null | undefined;
2902
+ email?: string | undefined;
2902
2903
  discovery?: boolean | null | undefined;
2903
2904
  legalName?: string | null | undefined;
2904
2905
  sstRegNo?: string | null | undefined;
@@ -2968,7 +2969,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
2968
2969
  city: string;
2969
2970
  postcode: string;
2970
2971
  };
2971
- email: string;
2972
2972
  phoneNo: string;
2973
2973
  regNo: string;
2974
2974
  };
@@ -9685,6 +9685,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
9685
9685
  code?: string | null | undefined;
9686
9686
  _id?: string | null | undefined;
9687
9687
  description?: string | null | undefined;
9688
+ email?: string | undefined;
9688
9689
  discovery?: boolean | null | undefined;
9689
9690
  legalName?: string | null | undefined;
9690
9691
  sstRegNo?: string | null | undefined;
@@ -9754,7 +9755,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
9754
9755
  city: string;
9755
9756
  postcode: string;
9756
9757
  };
9757
- email: string;
9758
9758
  phoneNo: string;
9759
9759
  regNo: string;
9760
9760
  };
@@ -11913,6 +11913,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
11913
11913
  code?: string | null | undefined;
11914
11914
  _id?: string | null | undefined;
11915
11915
  description?: string | null | undefined;
11916
+ email?: string | undefined;
11916
11917
  discovery?: boolean | null | undefined;
11917
11918
  legalName?: string | null | undefined;
11918
11919
  sstRegNo?: string | null | undefined;
@@ -11982,7 +11983,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
11982
11983
  city: string;
11983
11984
  postcode: string;
11984
11985
  };
11985
- email: string;
11986
11986
  phoneNo: string;
11987
11987
  regNo: string;
11988
11988
  };
@@ -12041,6 +12041,7 @@ export declare const RestaurantQueueDto: z.ZodObject<{
12041
12041
  code?: string | null | undefined;
12042
12042
  _id?: string | null | undefined;
12043
12043
  description?: string | null | undefined;
12044
+ email?: string | undefined;
12044
12045
  discovery?: boolean | null | undefined;
12045
12046
  legalName?: string | null | undefined;
12046
12047
  sstRegNo?: string | null | undefined;
@@ -12110,7 +12111,6 @@ export declare const RestaurantQueueDto: z.ZodObject<{
12110
12111
  city: string;
12111
12112
  postcode: string;
12112
12113
  };
12113
- email: string;
12114
12114
  phoneNo: string;
12115
12115
  regNo: string;
12116
12116
  };
@@ -33,7 +33,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
33
33
  postcode: string;
34
34
  }>;
35
35
  phoneNo: z.ZodString;
36
- email: z.ZodString;
36
+ email: z.ZodDefault<z.ZodString>;
37
37
  regNo: z.ZodString;
38
38
  legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
39
39
  sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -400,6 +400,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
400
400
  }, {
401
401
  code?: string | null | undefined;
402
402
  url?: string | null | undefined;
403
+ email?: string | undefined;
403
404
  description?: string | null | undefined;
404
405
  _id?: string | null | undefined;
405
406
  legalName?: string | null | undefined;
@@ -470,7 +471,6 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
470
471
  city: string;
471
472
  postcode: string;
472
473
  };
473
- email: string;
474
474
  phoneNo: string;
475
475
  regNo: string;
476
476
  }>;
@@ -2006,6 +2006,7 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
2006
2006
  profile: {
2007
2007
  code?: string | null | undefined;
2008
2008
  url?: string | null | undefined;
2009
+ email?: string | undefined;
2009
2010
  description?: string | null | undefined;
2010
2011
  _id?: string | null | undefined;
2011
2012
  legalName?: string | null | undefined;
@@ -2076,7 +2077,6 @@ export declare const RestaurantCustomerV2Dto: z.ZodObject<{
2076
2077
  city: string;
2077
2078
  postcode: string;
2078
2079
  };
2079
- email: string;
2080
2080
  phoneNo: string;
2081
2081
  regNo: string;
2082
2082
  };
@@ -2132,7 +2132,7 @@ export declare const RestaurantDto: z.ZodObject<{
2132
2132
  postcode: string;
2133
2133
  }>;
2134
2134
  phoneNo: z.ZodString;
2135
- email: z.ZodString;
2135
+ email: z.ZodDefault<z.ZodString>;
2136
2136
  regNo: z.ZodString;
2137
2137
  legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2138
2138
  sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2502,6 +2502,7 @@ export declare const RestaurantDto: z.ZodObject<{
2502
2502
  code?: string | null | undefined;
2503
2503
  _id?: string | null | undefined;
2504
2504
  description?: string | null | undefined;
2505
+ email?: string | undefined;
2505
2506
  discovery?: boolean | null | undefined;
2506
2507
  legalName?: string | null | undefined;
2507
2508
  sstRegNo?: string | null | undefined;
@@ -2571,7 +2572,6 @@ export declare const RestaurantDto: z.ZodObject<{
2571
2572
  city: string;
2572
2573
  postcode: string;
2573
2574
  };
2574
- email: string;
2575
2575
  phoneNo: string;
2576
2576
  regNo: string;
2577
2577
  }>;
@@ -2899,6 +2899,7 @@ export declare const RestaurantDto: z.ZodObject<{
2899
2899
  code?: string | null | undefined;
2900
2900
  _id?: string | null | undefined;
2901
2901
  description?: string | null | undefined;
2902
+ email?: string | undefined;
2902
2903
  discovery?: boolean | null | undefined;
2903
2904
  legalName?: string | null | undefined;
2904
2905
  sstRegNo?: string | null | undefined;
@@ -2968,7 +2969,6 @@ export declare const RestaurantDto: z.ZodObject<{
2968
2969
  city: string;
2969
2970
  postcode: string;
2970
2971
  };
2971
- email: string;
2972
2972
  phoneNo: string;
2973
2973
  regNo: string;
2974
2974
  };
@@ -3015,7 +3015,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3015
3015
  postcode: string;
3016
3016
  }>;
3017
3017
  phoneNo: z.ZodString;
3018
- email: z.ZodString;
3018
+ email: z.ZodDefault<z.ZodString>;
3019
3019
  regNo: z.ZodString;
3020
3020
  legalName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3021
3021
  sstRegNo: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3382,6 +3382,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3382
3382
  }, {
3383
3383
  code?: string | null | undefined;
3384
3384
  url?: string | null | undefined;
3385
+ email?: string | undefined;
3385
3386
  description?: string | null | undefined;
3386
3387
  _id?: string | null | undefined;
3387
3388
  legalName?: string | null | undefined;
@@ -3452,7 +3453,6 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
3452
3453
  city: string;
3453
3454
  postcode: string;
3454
3455
  };
3455
- email: string;
3456
3456
  phoneNo: string;
3457
3457
  regNo: string;
3458
3458
  }>;
@@ -4287,6 +4287,7 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4287
4287
  profile: {
4288
4288
  code?: string | null | undefined;
4289
4289
  url?: string | null | undefined;
4290
+ email?: string | undefined;
4290
4291
  description?: string | null | undefined;
4291
4292
  _id?: string | null | undefined;
4292
4293
  legalName?: string | null | undefined;
@@ -4357,7 +4358,6 @@ export declare const RestaurantCustomerKioskDto: z.ZodObject<{
4357
4358
  city: string;
4358
4359
  postcode: string;
4359
4360
  };
4360
- email: string;
4361
4361
  phoneNo: string;
4362
4362
  regNo: string;
4363
4363
  };