@feedmepos/mf-order-setting 0.0.21-beta.2 → 0.0.22

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 (88) hide show
  1. package/dist/{KioskDevicesView-TgyDh8aI.js → KioskDevicesView-C6YmdLKc.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CiYEoMoW.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-DiLHpWbm.js} +2 -2
  3. package/dist/{KioskSettingView-fbOxH9m8.js → KioskSettingView-D-muNxlb.js} +1 -1
  4. package/dist/KioskView-kcjjk4fF.js +371 -0
  5. package/dist/{OrderSettingsView-mYvRn7u9.js → OrderSettingsView-D_bGK-3J.js} +34007 -32820
  6. package/dist/{app-A306cfER.js → app-C5qwExhL.js} +41 -23
  7. package/dist/app.js +1 -1
  8. package/dist/common/convertor/index.d.ts +2 -0
  9. package/dist/common/sms/index.d.ts +1 -1
  10. package/dist/common/util/index.d.ts +6 -0
  11. package/dist/{dayjs.min-CLR5r0qf.js → dayjs.min-kEC9G7bx.js} +36 -36
  12. package/dist/frontend/mf-order/src/api/remoteOrder/index.d.ts +5 -2
  13. package/dist/frontend/mf-order/src/app.d.ts +18 -0
  14. package/dist/frontend/mf-order/src/helpers/menu.d.ts +1 -1
  15. package/dist/frontend/mf-order/src/stores/app/index.d.ts +14 -4
  16. package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +45 -35
  17. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +581 -716
  18. package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +140 -174
  19. package/dist/frontend/mf-order/src/views/kiosk/KioskSummary.vue.d.ts +1 -0
  20. package/dist/frontend/mf-order/src/views/order-settings/delivery/DeliverySetting.vue.d.ts +2 -2
  21. package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.d.ts +2 -1
  22. package/dist/frontend/mf-order/src/views/order-settings/delivery/delivery.data.d.ts +3 -0
  23. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue.d.ts +97 -0
  24. package/dist/frontend/mf-order/src/views/order-settings/delivery/integrated-delivery/ShopeefoodSetting.vue.d.ts +3 -3
  25. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  26. package/dist/{index-BJuGDir8.js → index-C_53CwBa.js} +2 -2
  27. package/dist/package/entity/booking/booking.do.d.ts +1516 -1276
  28. package/dist/package/entity/delivery/delivery.dto.d.ts +298 -251
  29. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +539 -0
  30. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +114 -9
  31. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +865 -4
  32. package/dist/package/entity/incoming-order/incoming-order.enum.d.ts +1 -1
  33. package/dist/package/entity/index.d.ts +34 -22
  34. package/dist/package/entity/kiosk/kiosk.do.d.ts +12 -12
  35. package/dist/package/entity/kiosk/kiosk.dto.d.ts +12 -12
  36. package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +1942 -1642
  37. package/dist/package/entity/member/member.dto.d.ts +33 -0
  38. package/dist/package/entity/order/order-item/order-item.dto.d.ts +15 -0
  39. package/dist/package/entity/order/order.do.d.ts +37 -0
  40. package/dist/package/entity/order/order.dto.d.ts +808 -17435
  41. package/dist/package/entity/order/order.enum.d.ts +2 -0
  42. package/dist/package/entity/order-platform/external/auth/external-auth.do.d.ts +12 -0
  43. package/dist/package/entity/order-platform/external/auth/external-auth.dto.d.ts +27 -0
  44. package/dist/package/entity/order-platform/external/menu/external-menu.do.d.ts +2868 -0
  45. package/dist/package/entity/order-platform/external/menu/external-menu.dto.d.ts +21 -0
  46. package/dist/package/entity/order-platform/external/menu/external-menu.enum.d.ts +3 -0
  47. package/dist/package/entity/order-platform/external/order/external-order.do.d.ts +1373 -0
  48. package/dist/package/entity/order-platform/external/order/external-order.dto.d.ts +2834 -0
  49. package/dist/package/entity/order-platform/external/order/external-order.enum.d.ts +9 -0
  50. package/dist/package/entity/order-platform/external/setting/external-setting.do.d.ts +127 -0
  51. package/dist/package/entity/order-platform/external/setting/external-setting.dto.d.ts +95 -0
  52. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.do.d.ts +175 -82
  53. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +372 -291
  54. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.do.d.ts +4 -4
  55. package/dist/package/entity/order-platform/foodpanda/foodpanda-settings.dto.d.ts +3 -3
  56. package/dist/package/entity/order-platform/grabfood/grabfood-menu.do.d.ts +66 -65
  57. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +435 -263
  58. package/dist/package/entity/order-platform/grabfood/grabfood-settings.do.d.ts +2 -2
  59. package/dist/package/entity/order-platform/grabfood/grabfood.dto.d.ts +47 -7
  60. package/dist/package/entity/order-platform/menu.dto.d.ts +126 -0
  61. package/dist/package/entity/order-platform/order-platform.dto.d.ts +4 -4
  62. package/dist/package/entity/order-platform/order-platform.enum.d.ts +1 -1
  63. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +298 -250
  64. package/dist/package/entity/order-setting/kiosk/kiosk.dto.d.ts +0 -41
  65. package/dist/package/entity/printer/printer.do.d.ts +2 -2
  66. package/dist/package/entity/pubsub/ably/ably.do.d.ts +60 -9
  67. package/dist/package/entity/pubsub/ably/ably.enum.d.ts +1 -1
  68. package/dist/package/entity/queue/queue.do.d.ts +40 -0
  69. package/dist/{auth.dto-C5PLip9a.js → queue.do-Vog69wnQ.js} +34049 -33284
  70. package/package.json +4 -3
  71. package/src/api/remoteOrder/index.ts +13 -2
  72. package/src/helpers/menu.ts +2 -2
  73. package/src/locales/en-US.json +11 -1
  74. package/src/locales/zh-CN.json +10 -1
  75. package/src/stores/restaurant/index.ts +4 -1
  76. package/src/views/kiosk/KioskSummary.vue +4 -3
  77. package/src/views/kiosk/KioskView.vue +36 -3
  78. package/src/views/order-settings/delivery/DeliverySetting.vue +83 -6
  79. package/src/views/order-settings/delivery/delivery.data.ts +16 -1
  80. package/src/views/order-settings/delivery/delivery.ts +1 -0
  81. package/src/views/order-settings/delivery/integrated-delivery/ExternalSetting.vue +114 -0
  82. package/src/views/order-settings/delivery/integrated-delivery/FoodpandaSetting.vue +23 -6
  83. package/src/views/order-settings/delivery/integrated-delivery/GrabfoodSetting.vue +21 -16
  84. package/src/views/order-settings/delivery/integrated-delivery/ShopeefoodSetting.vue +58 -59
  85. package/src/views/order-settings/pickup/PickUpSetting.vue +1 -1
  86. package/src/views/order-settings/servicecharge/ServiceChargeRule.vue +214 -158
  87. package/src/views/order-settings/servicecharge/ServiceChargeSetting.vue +1 -0
  88. package/dist/KioskView-C0Vn5S89.js +0 -334
@@ -43,46 +43,6 @@ export declare const KioskPickAtCounterSettingDto: z.ZodObject<{
43
43
  }, {
44
44
  enabled: boolean;
45
45
  }>;
46
- export declare const FdoEPaymentMethod: z.ZodObject<{
47
- card: z.ZodObject<{
48
- terminal: z.ZodDefault<z.ZodBoolean>;
49
- nfc: z.ZodDefault<z.ZodBoolean>;
50
- }, "strip", z.ZodTypeAny, {
51
- terminal: boolean;
52
- nfc: boolean;
53
- }, {
54
- terminal?: boolean | undefined;
55
- nfc?: boolean | undefined;
56
- }>;
57
- eWallet: z.ZodObject<{
58
- qrPay: z.ZodDefault<z.ZodBoolean>;
59
- scanPay: z.ZodDefault<z.ZodBoolean>;
60
- }, "strip", z.ZodTypeAny, {
61
- qrPay: boolean;
62
- scanPay: boolean;
63
- }, {
64
- qrPay?: boolean | undefined;
65
- scanPay?: boolean | undefined;
66
- }>;
67
- }, "strip", z.ZodTypeAny, {
68
- card: {
69
- terminal: boolean;
70
- nfc: boolean;
71
- };
72
- eWallet: {
73
- qrPay: boolean;
74
- scanPay: boolean;
75
- };
76
- }, {
77
- card: {
78
- terminal?: boolean | undefined;
79
- nfc?: boolean | undefined;
80
- };
81
- eWallet: {
82
- qrPay?: boolean | undefined;
83
- scanPay?: boolean | undefined;
84
- };
85
- }>;
86
46
  export declare const OrderKioskDineIn: z.ZodObject<{
87
47
  requiredSlot: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
88
48
  pickUp: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -497,4 +457,3 @@ export declare const OrderKioskSettings: z.ZodDefault<z.ZodObject<{
497
457
  export type OrderKioskSettings = z.infer<typeof OrderKioskSettings>;
498
458
  export type OrderKioskDineIn = z.infer<typeof OrderKioskDineIn>;
499
459
  export type OrderKioskPaymentSetting = z.infer<typeof OrderKioskPaymentSetting>;
500
- export type FdoEPaymentMethod = z.infer<typeof FdoEPaymentMethod>;
@@ -143,9 +143,9 @@ export declare const PrinterEncoderConfig: z.ZodDiscriminatedUnion<"type", z.Pri
143
143
  export declare const PrinterConnectionBase: z.ZodObject<{
144
144
  type: z.ZodEnum<["BLUETOOTH", "DRIVER", "IP", "STAR", "USB"]>;
145
145
  }, "strip", z.ZodTypeAny, {
146
- type: "STAR" | "BLUETOOTH" | "DRIVER" | "IP" | "USB";
146
+ type: "USB" | "STAR" | "BLUETOOTH" | "DRIVER" | "IP";
147
147
  }, {
148
- type: "STAR" | "BLUETOOTH" | "DRIVER" | "IP" | "USB";
148
+ type: "USB" | "STAR" | "BLUETOOTH" | "DRIVER" | "IP";
149
149
  }>;
150
150
  export declare const PrinterConnectionBluetooth: z.ZodObject<z.extendShape<{
151
151
  type: z.ZodEnum<["BLUETOOTH", "DRIVER", "IP", "STAR", "USB"]>;
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export declare const FdoAblyMenuUpdateData: z.ZodObject<{
2
+ export declare const FdoAblyUpdateData: z.ZodObject<{
3
3
  createdAt: z.ZodEffects<z.ZodString, string, string>;
4
4
  }, "strip", z.ZodTypeAny, {
5
5
  createdAt: string;
@@ -7,20 +7,20 @@ export declare const FdoAblyMenuUpdateData: z.ZodObject<{
7
7
  createdAt: string;
8
8
  }>;
9
9
  export declare const FdoAblyPublishBase: z.ZodObject<{
10
- channelName: z.ZodEnum<["MENU:UPDATE"]>;
10
+ channelName: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
11
11
  data: z.ZodUnknown;
12
12
  publisher: z.ZodString;
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  data?: unknown;
15
- channelName: "MENU:UPDATE";
15
+ channelName: "MENU:UPDATE" | "KIOSK_ORDER_SETTING:UPDATE";
16
16
  publisher: string;
17
17
  }, {
18
18
  data?: unknown;
19
- channelName: "MENU:UPDATE";
19
+ channelName: "MENU:UPDATE" | "KIOSK_ORDER_SETTING:UPDATE";
20
20
  publisher: string;
21
21
  }>;
22
22
  export declare const FdoAblyPublishMenuUpdate: z.ZodObject<z.extendShape<{
23
- channelName: z.ZodEnum<["MENU:UPDATE"]>;
23
+ channelName: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
24
24
  data: z.ZodUnknown;
25
25
  publisher: z.ZodString;
26
26
  }, {
@@ -45,8 +45,34 @@ export declare const FdoAblyPublishMenuUpdate: z.ZodObject<z.extendShape<{
45
45
  channelName: "MENU:UPDATE";
46
46
  publisher: string;
47
47
  }>;
48
- export declare const FdoAblyPublishPayload: z.ZodObject<z.extendShape<{
49
- channelName: z.ZodEnum<["MENU:UPDATE"]>;
48
+ export declare const FdoAblyPublishKioskOrderSettingUpdate: z.ZodObject<z.extendShape<{
49
+ channelName: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
50
+ data: z.ZodUnknown;
51
+ publisher: z.ZodString;
52
+ }, {
53
+ channelName: z.ZodLiteral<"KIOSK_ORDER_SETTING:UPDATE">;
54
+ data: z.ZodObject<{
55
+ createdAt: z.ZodEffects<z.ZodString, string, string>;
56
+ }, "strip", z.ZodTypeAny, {
57
+ createdAt: string;
58
+ }, {
59
+ createdAt: string;
60
+ }>;
61
+ }>, "strip", z.ZodTypeAny, {
62
+ data: {
63
+ createdAt: string;
64
+ };
65
+ channelName: "KIOSK_ORDER_SETTING:UPDATE";
66
+ publisher: string;
67
+ }, {
68
+ data: {
69
+ createdAt: string;
70
+ };
71
+ channelName: "KIOSK_ORDER_SETTING:UPDATE";
72
+ publisher: string;
73
+ }>;
74
+ export declare const FdoAblyPublishPayload: z.ZodDiscriminatedUnion<"channelName", z.Primitive, z.ZodObject<z.extendShape<{
75
+ channelName: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
50
76
  data: z.ZodUnknown;
51
77
  publisher: z.ZodString;
52
78
  }, {
@@ -70,7 +96,32 @@ export declare const FdoAblyPublishPayload: z.ZodObject<z.extendShape<{
70
96
  };
71
97
  channelName: "MENU:UPDATE";
72
98
  publisher: string;
73
- }>;
99
+ }> | z.ZodObject<z.extendShape<{
100
+ channelName: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
101
+ data: z.ZodUnknown;
102
+ publisher: z.ZodString;
103
+ }, {
104
+ channelName: z.ZodLiteral<"KIOSK_ORDER_SETTING:UPDATE">;
105
+ data: z.ZodObject<{
106
+ createdAt: z.ZodEffects<z.ZodString, string, string>;
107
+ }, "strip", z.ZodTypeAny, {
108
+ createdAt: string;
109
+ }, {
110
+ createdAt: string;
111
+ }>;
112
+ }>, "strip", z.ZodTypeAny, {
113
+ data: {
114
+ createdAt: string;
115
+ };
116
+ channelName: "KIOSK_ORDER_SETTING:UPDATE";
117
+ publisher: string;
118
+ }, {
119
+ data: {
120
+ createdAt: string;
121
+ };
122
+ channelName: "KIOSK_ORDER_SETTING:UPDATE";
123
+ publisher: string;
124
+ }>>;
74
125
  export type FdoAblyPublishMenuUpdate = z.infer<typeof FdoAblyPublishMenuUpdate>;
75
- export type FdoAblyMenuUpdateData = z.infer<typeof FdoAblyMenuUpdateData>;
126
+ export type FdoAblyUpdateData = z.infer<typeof FdoAblyUpdateData>;
76
127
  export type FdoAblyPublishPayload = z.infer<typeof FdoAblyPublishPayload>;
@@ -1,3 +1,3 @@
1
1
  import { z } from "zod";
2
- export declare const F_ABLY_CHANNEL: z.ZodEnum<["MENU:UPDATE"]>;
2
+ export declare const F_ABLY_CHANNEL: z.ZodEnum<["MENU:UPDATE", "KIOSK_ORDER_SETTING:UPDATE"]>;
3
3
  export type F_ABLY_CHANNEL = z.infer<typeof F_ABLY_CHANNEL>;
@@ -706,6 +706,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
706
706
  precision: number;
707
707
  };
708
708
  }>, "many">>>;
709
+ isDefault: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
709
710
  }, "strip", z.ZodTypeAny, {
710
711
  code?: string | null | undefined;
711
712
  price?: {
@@ -731,6 +732,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
731
732
  precision: number;
732
733
  };
733
734
  }[] | null | undefined;
735
+ isDefault?: boolean | null | undefined;
734
736
  combinationKey: string;
735
737
  active: boolean;
736
738
  selectionName: string[];
@@ -759,6 +761,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
759
761
  precision: number;
760
762
  };
761
763
  }[] | null | undefined;
764
+ isDefault?: boolean | null | undefined;
762
765
  combinationKey: string;
763
766
  active: boolean;
764
767
  selectionName: string[];
@@ -842,6 +845,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
842
845
  };
843
846
  }>, "many">>>;
844
847
  printDepartments: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
848
+ customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
845
849
  }, "strip", z.ZodTypeAny, {
846
850
  description?: string | null | undefined;
847
851
  name2?: string | null | undefined;
@@ -853,6 +857,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
853
857
  taxCode: string;
854
858
  }[] | null | undefined;
855
859
  unit?: string | null | undefined;
860
+ customAttributes?: Record<string, any> | null | undefined;
856
861
  thumbnail?: string | null | undefined;
857
862
  inventoryBindings?: {
858
863
  measurement?: {
@@ -939,6 +944,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
939
944
  precision: number;
940
945
  };
941
946
  }[] | null | undefined;
947
+ isDefault?: boolean | null | undefined;
942
948
  combinationKey: string;
943
949
  active: boolean;
944
950
  selectionName: string[];
@@ -954,6 +960,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
954
960
  taxCode: string;
955
961
  }[] | null | undefined;
956
962
  unit?: string | null | undefined;
963
+ customAttributes?: Record<string, any> | null | undefined;
957
964
  thumbnail?: string | null | undefined;
958
965
  inventoryBindings?: {
959
966
  measurement?: {
@@ -1040,6 +1047,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1040
1047
  precision: number;
1041
1048
  };
1042
1049
  }[] | null | undefined;
1050
+ isDefault?: boolean | null | undefined;
1043
1051
  combinationKey: string;
1044
1052
  active: boolean;
1045
1053
  selectionName: string[];
@@ -1174,6 +1182,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1174
1182
  systemCode: string;
1175
1183
  }>, "many">>>;
1176
1184
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1185
+ customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1177
1186
  }, "strip", z.ZodTypeAny, {
1178
1187
  unit?: string | null | undefined;
1179
1188
  categoryName?: string | null | undefined;
@@ -1218,6 +1227,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1218
1227
  taxCode: string;
1219
1228
  systemCode: string;
1220
1229
  }[] | null | undefined;
1230
+ customAttributes?: Record<string, any> | null | undefined;
1221
1231
  code: string;
1222
1232
  name: string;
1223
1233
  price: {
@@ -1269,6 +1279,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1269
1279
  taxCode: string;
1270
1280
  systemCode: string;
1271
1281
  }[] | null | undefined;
1282
+ customAttributes?: Record<string, any> | null | undefined;
1272
1283
  code: string;
1273
1284
  name: string;
1274
1285
  price: {
@@ -1364,6 +1375,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1364
1375
  taxCode: string;
1365
1376
  systemCode: string;
1366
1377
  }[] | null | undefined;
1378
+ customAttributes?: Record<string, any> | null | undefined;
1367
1379
  code: string;
1368
1380
  name: string;
1369
1381
  price: {
@@ -1388,6 +1400,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1388
1400
  taxCode: string;
1389
1401
  }[] | null | undefined;
1390
1402
  unit?: string | null | undefined;
1403
+ customAttributes?: Record<string, any> | null | undefined;
1391
1404
  thumbnail?: string | null | undefined;
1392
1405
  inventoryBindings?: {
1393
1406
  measurement?: {
@@ -1474,6 +1487,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1474
1487
  precision: number;
1475
1488
  };
1476
1489
  }[] | null | undefined;
1490
+ isDefault?: boolean | null | undefined;
1477
1491
  combinationKey: string;
1478
1492
  active: boolean;
1479
1493
  selectionName: string[];
@@ -1544,6 +1558,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1544
1558
  taxCode: string;
1545
1559
  systemCode: string;
1546
1560
  }[] | null | undefined;
1561
+ customAttributes?: Record<string, any> | null | undefined;
1547
1562
  code: string;
1548
1563
  name: string;
1549
1564
  price: {
@@ -1568,6 +1583,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1568
1583
  taxCode: string;
1569
1584
  }[] | null | undefined;
1570
1585
  unit?: string | null | undefined;
1586
+ customAttributes?: Record<string, any> | null | undefined;
1571
1587
  thumbnail?: string | null | undefined;
1572
1588
  inventoryBindings?: {
1573
1589
  measurement?: {
@@ -1654,6 +1670,7 @@ export declare const FdoRestaurantQueueProduct: z.ZodObject<{
1654
1670
  precision: number;
1655
1671
  };
1656
1672
  }[] | null | undefined;
1673
+ isDefault?: boolean | null | undefined;
1657
1674
  combinationKey: string;
1658
1675
  active: boolean;
1659
1676
  selectionName: string[];
@@ -2031,6 +2048,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2031
2048
  precision: number;
2032
2049
  };
2033
2050
  }>, "many">>>;
2051
+ isDefault: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2034
2052
  }, "strip", z.ZodTypeAny, {
2035
2053
  code?: string | null | undefined;
2036
2054
  price?: {
@@ -2056,6 +2074,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2056
2074
  precision: number;
2057
2075
  };
2058
2076
  }[] | null | undefined;
2077
+ isDefault?: boolean | null | undefined;
2059
2078
  combinationKey: string;
2060
2079
  active: boolean;
2061
2080
  selectionName: string[];
@@ -2084,6 +2103,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2084
2103
  precision: number;
2085
2104
  };
2086
2105
  }[] | null | undefined;
2106
+ isDefault?: boolean | null | undefined;
2087
2107
  combinationKey: string;
2088
2108
  active: boolean;
2089
2109
  selectionName: string[];
@@ -2167,6 +2187,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2167
2187
  };
2168
2188
  }>, "many">>>;
2169
2189
  printDepartments: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
2190
+ customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
2170
2191
  }, "strip", z.ZodTypeAny, {
2171
2192
  description?: string | null | undefined;
2172
2193
  name2?: string | null | undefined;
@@ -2178,6 +2199,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2178
2199
  taxCode: string;
2179
2200
  }[] | null | undefined;
2180
2201
  unit?: string | null | undefined;
2202
+ customAttributes?: Record<string, any> | null | undefined;
2181
2203
  thumbnail?: string | null | undefined;
2182
2204
  inventoryBindings?: {
2183
2205
  measurement?: {
@@ -2264,6 +2286,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2264
2286
  precision: number;
2265
2287
  };
2266
2288
  }[] | null | undefined;
2289
+ isDefault?: boolean | null | undefined;
2267
2290
  combinationKey: string;
2268
2291
  active: boolean;
2269
2292
  selectionName: string[];
@@ -2279,6 +2302,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2279
2302
  taxCode: string;
2280
2303
  }[] | null | undefined;
2281
2304
  unit?: string | null | undefined;
2305
+ customAttributes?: Record<string, any> | null | undefined;
2282
2306
  thumbnail?: string | null | undefined;
2283
2307
  inventoryBindings?: {
2284
2308
  measurement?: {
@@ -2365,6 +2389,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2365
2389
  precision: number;
2366
2390
  };
2367
2391
  }[] | null | undefined;
2392
+ isDefault?: boolean | null | undefined;
2368
2393
  combinationKey: string;
2369
2394
  active: boolean;
2370
2395
  selectionName: string[];
@@ -2499,6 +2524,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2499
2524
  systemCode: string;
2500
2525
  }>, "many">>>;
2501
2526
  unit: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2527
+ customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
2502
2528
  }, "strip", z.ZodTypeAny, {
2503
2529
  unit?: string | null | undefined;
2504
2530
  categoryName?: string | null | undefined;
@@ -2543,6 +2569,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2543
2569
  taxCode: string;
2544
2570
  systemCode: string;
2545
2571
  }[] | null | undefined;
2572
+ customAttributes?: Record<string, any> | null | undefined;
2546
2573
  code: string;
2547
2574
  name: string;
2548
2575
  price: {
@@ -2594,6 +2621,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2594
2621
  taxCode: string;
2595
2622
  systemCode: string;
2596
2623
  }[] | null | undefined;
2624
+ customAttributes?: Record<string, any> | null | undefined;
2597
2625
  code: string;
2598
2626
  name: string;
2599
2627
  price: {
@@ -2689,6 +2717,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2689
2717
  taxCode: string;
2690
2718
  systemCode: string;
2691
2719
  }[] | null | undefined;
2720
+ customAttributes?: Record<string, any> | null | undefined;
2692
2721
  code: string;
2693
2722
  name: string;
2694
2723
  price: {
@@ -2713,6 +2742,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2713
2742
  taxCode: string;
2714
2743
  }[] | null | undefined;
2715
2744
  unit?: string | null | undefined;
2745
+ customAttributes?: Record<string, any> | null | undefined;
2716
2746
  thumbnail?: string | null | undefined;
2717
2747
  inventoryBindings?: {
2718
2748
  measurement?: {
@@ -2799,6 +2829,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2799
2829
  precision: number;
2800
2830
  };
2801
2831
  }[] | null | undefined;
2832
+ isDefault?: boolean | null | undefined;
2802
2833
  combinationKey: string;
2803
2834
  active: boolean;
2804
2835
  selectionName: string[];
@@ -2869,6 +2900,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2869
2900
  taxCode: string;
2870
2901
  systemCode: string;
2871
2902
  }[] | null | undefined;
2903
+ customAttributes?: Record<string, any> | null | undefined;
2872
2904
  code: string;
2873
2905
  name: string;
2874
2906
  price: {
@@ -2893,6 +2925,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2893
2925
  taxCode: string;
2894
2926
  }[] | null | undefined;
2895
2927
  unit?: string | null | undefined;
2928
+ customAttributes?: Record<string, any> | null | undefined;
2896
2929
  thumbnail?: string | null | undefined;
2897
2930
  inventoryBindings?: {
2898
2931
  measurement?: {
@@ -2979,6 +3012,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
2979
3012
  precision: number;
2980
3013
  };
2981
3014
  }[] | null | undefined;
3015
+ isDefault?: boolean | null | undefined;
2982
3016
  combinationKey: string;
2983
3017
  active: boolean;
2984
3018
  selectionName: string[];
@@ -3070,6 +3104,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3070
3104
  taxCode: string;
3071
3105
  systemCode: string;
3072
3106
  }[] | null | undefined;
3107
+ customAttributes?: Record<string, any> | null | undefined;
3073
3108
  code: string;
3074
3109
  name: string;
3075
3110
  price: {
@@ -3094,6 +3129,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3094
3129
  taxCode: string;
3095
3130
  }[] | null | undefined;
3096
3131
  unit?: string | null | undefined;
3132
+ customAttributes?: Record<string, any> | null | undefined;
3097
3133
  thumbnail?: string | null | undefined;
3098
3134
  inventoryBindings?: {
3099
3135
  measurement?: {
@@ -3180,6 +3216,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3180
3216
  precision: number;
3181
3217
  };
3182
3218
  }[] | null | undefined;
3219
+ isDefault?: boolean | null | undefined;
3183
3220
  combinationKey: string;
3184
3221
  active: boolean;
3185
3222
  selectionName: string[];
@@ -3271,6 +3308,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3271
3308
  taxCode: string;
3272
3309
  systemCode: string;
3273
3310
  }[] | null | undefined;
3311
+ customAttributes?: Record<string, any> | null | undefined;
3274
3312
  code: string;
3275
3313
  name: string;
3276
3314
  price: {
@@ -3295,6 +3333,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3295
3333
  taxCode: string;
3296
3334
  }[] | null | undefined;
3297
3335
  unit?: string | null | undefined;
3336
+ customAttributes?: Record<string, any> | null | undefined;
3298
3337
  thumbnail?: string | null | undefined;
3299
3338
  inventoryBindings?: {
3300
3339
  measurement?: {
@@ -3381,6 +3420,7 @@ export declare const FdoRestaurantQueueCart: z.ZodObject<{
3381
3420
  precision: number;
3382
3421
  };
3383
3422
  }[] | null | undefined;
3423
+ isDefault?: boolean | null | undefined;
3384
3424
  combinationKey: string;
3385
3425
  active: boolean;
3386
3426
  selectionName: string[];