@feedmepos/mf-order-setting 0.0.34 → 0.0.36
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.
- package/dist/{KioskDevicesView-BHzBoF_O.js → KioskDevicesView-wPKewwAS.js} +1 -1
- package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-C5JpMDP_.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BCJPU2la.js} +2 -2
- package/dist/{KioskSettingView-i8tgH3dF.js → KioskSettingView-CV54HpY2.js} +142 -140
- package/dist/{KioskView-DW7vX6rJ.js → KioskView-B4mggCt0.js} +4 -4
- package/dist/OrderSettingsView-CKGRFx_2.js +50624 -0
- package/dist/{app-C15xKXga.js → app-D4exdzAx.js} +20 -15
- package/dist/app.js +1 -1
- package/dist/{dayjs.min-KE7XM_kc.js → dayjs.min-C_sCJHuD.js} +1 -1
- package/dist/frontend/mf-order/src/app.d.ts +5 -0
- package/dist/frontend/mf-order/src/main.d.ts +5 -0
- package/dist/frontend/mf-order/src/stores/menu/menu.d.ts +393 -393
- package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +75 -75
- package/dist/frontend/mf-order/src/stores/table-settings.d.ts +2 -0
- package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +50 -50
- package/dist/frontend/mf-order/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue.d.ts +5 -0
- package/dist/frontend/mf-order/src/views/order-settings/servicecharge/ServiceChargeRule.vue.d.ts +2 -0
- package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{index-DGfFxIZo.js → index-Cvhc_ltu.js} +2 -2
- package/dist/menu.dto-CeUdKgTW.js +103445 -0
- package/dist/package/entity/booking/booking.do.d.ts +502 -502
- package/dist/package/entity/delivery/delivery.dto.d.ts +100 -100
- package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +17 -0
- package/dist/package/entity/incoming-order/incoming-order.do.d.ts +1973 -836
- package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +32 -0
- package/dist/package/entity/kiosk/marketing/marketing.dto.d.ts +555 -555
- package/dist/package/entity/order/order-item/order-item.dto.d.ts +15 -0
- package/dist/package/entity/order/order.do.d.ts +5 -0
- package/dist/package/entity/order/order.dto.d.ts +208 -200
- package/dist/package/entity/order-platform/external/menu/external-master-menu.do.d.ts +4 -4
- package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +100 -100
- package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +100 -100
- package/dist/package/entity/order-platform/menu.dto.d.ts +410 -410
- package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +100 -100
- package/dist/package/entity/queue/queue.do.d.ts +34 -34
- package/package.json +3 -3
- package/src/locales/en-US.json +2 -0
- package/src/locales/th-TH.json +2 -0
- package/src/locales/zh-CN.json +1 -0
- package/src/stores/menu/menu.ts +1 -1
- package/src/views/kiosk/settings/KioskPaymentTypeSection.vue +11 -1
- package/src/views/order-settings/delivery/DeliverySetting.vue +11 -16
- package/src/views/order-settings/delivery/components/ManualIntegratedDeliverySetting.vue +26 -9
- package/src/views/order-settings/delivery/integrated-delivery/DeliverooSetting.vue +12 -1
- package/dist/OrderSettingsView-D3SQHET3.js +0 -74796
- package/dist/menu.dto-CLARGRsi.js +0 -126428
|
@@ -70,30 +70,30 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
70
70
|
start: z.ZodString;
|
|
71
71
|
end: z.ZodString;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
start: string;
|
|
74
73
|
end: string;
|
|
75
|
-
}, {
|
|
76
74
|
start: string;
|
|
75
|
+
}, {
|
|
77
76
|
end: string;
|
|
77
|
+
start: string;
|
|
78
78
|
}>, "many">;
|
|
79
79
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
80
80
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
81
81
|
}, "strip", z.ZodTypeAny, {
|
|
82
82
|
repeat: "daily" | "weekly";
|
|
83
|
-
_id: string;
|
|
84
83
|
name: string;
|
|
84
|
+
_id: string;
|
|
85
85
|
timePeriod: {
|
|
86
|
-
start: string;
|
|
87
86
|
end: string;
|
|
87
|
+
start: string;
|
|
88
88
|
}[];
|
|
89
89
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
90
90
|
}, {
|
|
91
91
|
repeat: "daily" | "weekly";
|
|
92
|
-
_id: string;
|
|
93
92
|
name: string;
|
|
93
|
+
_id: string;
|
|
94
94
|
timePeriod: {
|
|
95
|
-
start: string;
|
|
96
95
|
end: string;
|
|
96
|
+
start: string;
|
|
97
97
|
}[];
|
|
98
98
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
99
99
|
}>>>;
|
|
@@ -485,8 +485,8 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
485
485
|
};
|
|
486
486
|
}[] | null | undefined;
|
|
487
487
|
isDefault?: boolean | null | undefined;
|
|
488
|
-
combinationKey: string;
|
|
489
488
|
active: boolean;
|
|
489
|
+
combinationKey: string;
|
|
490
490
|
selectionName: string[];
|
|
491
491
|
}, {
|
|
492
492
|
code?: string | null | undefined;
|
|
@@ -514,8 +514,8 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
514
514
|
};
|
|
515
515
|
}[] | null | undefined;
|
|
516
516
|
isDefault?: boolean | null | undefined;
|
|
517
|
-
combinationKey: string;
|
|
518
517
|
active: boolean;
|
|
518
|
+
combinationKey: string;
|
|
519
519
|
selectionName: string[];
|
|
520
520
|
}>, "many">;
|
|
521
521
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -626,11 +626,11 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
626
626
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
627
627
|
scheduler?: {
|
|
628
628
|
repeat: "daily" | "weekly";
|
|
629
|
-
_id: string;
|
|
630
629
|
name: string;
|
|
630
|
+
_id: string;
|
|
631
631
|
timePeriod: {
|
|
632
|
-
start: string;
|
|
633
632
|
end: string;
|
|
633
|
+
start: string;
|
|
634
634
|
}[];
|
|
635
635
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
636
636
|
} | null | undefined;
|
|
@@ -734,8 +734,8 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
734
734
|
};
|
|
735
735
|
}[] | null | undefined;
|
|
736
736
|
isDefault?: boolean | null | undefined;
|
|
737
|
-
combinationKey: string;
|
|
738
737
|
active: boolean;
|
|
738
|
+
combinationKey: string;
|
|
739
739
|
selectionName: string[];
|
|
740
740
|
}[];
|
|
741
741
|
}, {
|
|
@@ -768,11 +768,11 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
768
768
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
769
769
|
scheduler?: {
|
|
770
770
|
repeat: "daily" | "weekly";
|
|
771
|
-
_id: string;
|
|
772
771
|
name: string;
|
|
772
|
+
_id: string;
|
|
773
773
|
timePeriod: {
|
|
774
|
-
start: string;
|
|
775
774
|
end: string;
|
|
775
|
+
start: string;
|
|
776
776
|
}[];
|
|
777
777
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
778
778
|
} | null | undefined;
|
|
@@ -876,8 +876,8 @@ export declare const FdtoMergedProduct: z.ZodObject<{
|
|
|
876
876
|
};
|
|
877
877
|
}[] | null | undefined;
|
|
878
878
|
isDefault?: boolean | null | undefined;
|
|
879
|
-
combinationKey: string;
|
|
880
879
|
active: boolean;
|
|
880
|
+
combinationKey: string;
|
|
881
881
|
selectionName: string[];
|
|
882
882
|
}[];
|
|
883
883
|
}>;
|
|
@@ -1032,8 +1032,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1032
1032
|
};
|
|
1033
1033
|
}[] | null | undefined;
|
|
1034
1034
|
isDefault?: boolean | null | undefined;
|
|
1035
|
-
combinationKey: string;
|
|
1036
1035
|
active: boolean;
|
|
1036
|
+
combinationKey: string;
|
|
1037
1037
|
selectionName: string[];
|
|
1038
1038
|
}, {
|
|
1039
1039
|
code?: string | null | undefined;
|
|
@@ -1061,8 +1061,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1061
1061
|
};
|
|
1062
1062
|
}[] | null | undefined;
|
|
1063
1063
|
isDefault?: boolean | null | undefined;
|
|
1064
|
-
combinationKey: string;
|
|
1065
1064
|
active: boolean;
|
|
1065
|
+
combinationKey: string;
|
|
1066
1066
|
selectionName: string[];
|
|
1067
1067
|
}>, "many">>>;
|
|
1068
1068
|
inventoryBindings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1157,30 +1157,30 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1157
1157
|
start: z.ZodString;
|
|
1158
1158
|
end: z.ZodString;
|
|
1159
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1160
|
-
start: string;
|
|
1161
1160
|
end: string;
|
|
1162
|
-
}, {
|
|
1163
1161
|
start: string;
|
|
1162
|
+
}, {
|
|
1164
1163
|
end: string;
|
|
1164
|
+
start: string;
|
|
1165
1165
|
}>, "many">;
|
|
1166
1166
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
1167
1167
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
1168
1168
|
}, "strip", z.ZodTypeAny, {
|
|
1169
1169
|
repeat: "daily" | "weekly";
|
|
1170
|
-
_id: string;
|
|
1171
1170
|
name: string;
|
|
1171
|
+
_id: string;
|
|
1172
1172
|
timePeriod: {
|
|
1173
|
-
start: string;
|
|
1174
1173
|
end: string;
|
|
1174
|
+
start: string;
|
|
1175
1175
|
}[];
|
|
1176
1176
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
1177
1177
|
}, {
|
|
1178
1178
|
repeat: "daily" | "weekly";
|
|
1179
|
-
_id: string;
|
|
1180
1179
|
name: string;
|
|
1180
|
+
_id: string;
|
|
1181
1181
|
timePeriod: {
|
|
1182
|
-
start: string;
|
|
1183
1182
|
end: string;
|
|
1183
|
+
start: string;
|
|
1184
1184
|
}[];
|
|
1185
1185
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
1186
1186
|
}>>>;
|
|
@@ -1572,8 +1572,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1572
1572
|
};
|
|
1573
1573
|
}[] | null | undefined;
|
|
1574
1574
|
isDefault?: boolean | null | undefined;
|
|
1575
|
-
combinationKey: string;
|
|
1576
1575
|
active: boolean;
|
|
1576
|
+
combinationKey: string;
|
|
1577
1577
|
selectionName: string[];
|
|
1578
1578
|
}, {
|
|
1579
1579
|
code?: string | null | undefined;
|
|
@@ -1601,8 +1601,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1601
1601
|
};
|
|
1602
1602
|
}[] | null | undefined;
|
|
1603
1603
|
isDefault?: boolean | null | undefined;
|
|
1604
|
-
combinationKey: string;
|
|
1605
1604
|
active: boolean;
|
|
1605
|
+
combinationKey: string;
|
|
1606
1606
|
selectionName: string[];
|
|
1607
1607
|
}>, "many">;
|
|
1608
1608
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1713,11 +1713,11 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1713
1713
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
1714
1714
|
scheduler?: {
|
|
1715
1715
|
repeat: "daily" | "weekly";
|
|
1716
|
-
_id: string;
|
|
1717
1716
|
name: string;
|
|
1717
|
+
_id: string;
|
|
1718
1718
|
timePeriod: {
|
|
1719
|
-
start: string;
|
|
1720
1719
|
end: string;
|
|
1720
|
+
start: string;
|
|
1721
1721
|
}[];
|
|
1722
1722
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
1723
1723
|
} | null | undefined;
|
|
@@ -1821,8 +1821,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1821
1821
|
};
|
|
1822
1822
|
}[] | null | undefined;
|
|
1823
1823
|
isDefault?: boolean | null | undefined;
|
|
1824
|
-
combinationKey: string;
|
|
1825
1824
|
active: boolean;
|
|
1825
|
+
combinationKey: string;
|
|
1826
1826
|
selectionName: string[];
|
|
1827
1827
|
}[];
|
|
1828
1828
|
}, {
|
|
@@ -1855,11 +1855,11 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1855
1855
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
1856
1856
|
scheduler?: {
|
|
1857
1857
|
repeat: "daily" | "weekly";
|
|
1858
|
-
_id: string;
|
|
1859
1858
|
name: string;
|
|
1859
|
+
_id: string;
|
|
1860
1860
|
timePeriod: {
|
|
1861
|
-
start: string;
|
|
1862
1861
|
end: string;
|
|
1862
|
+
start: string;
|
|
1863
1863
|
}[];
|
|
1864
1864
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
1865
1865
|
} | null | undefined;
|
|
@@ -1963,8 +1963,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
}[] | null | undefined;
|
|
1965
1965
|
isDefault?: boolean | null | undefined;
|
|
1966
|
-
combinationKey: string;
|
|
1967
1966
|
active: boolean;
|
|
1967
|
+
combinationKey: string;
|
|
1968
1968
|
selectionName: string[];
|
|
1969
1969
|
}[];
|
|
1970
1970
|
}>>>;
|
|
@@ -2021,11 +2021,11 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2021
2021
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
2022
2022
|
scheduler?: {
|
|
2023
2023
|
repeat: "daily" | "weekly";
|
|
2024
|
-
_id: string;
|
|
2025
2024
|
name: string;
|
|
2025
|
+
_id: string;
|
|
2026
2026
|
timePeriod: {
|
|
2027
|
-
start: string;
|
|
2028
2027
|
end: string;
|
|
2028
|
+
start: string;
|
|
2029
2029
|
}[];
|
|
2030
2030
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
2031
2031
|
} | null | undefined;
|
|
@@ -2129,8 +2129,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2129
2129
|
};
|
|
2130
2130
|
}[] | null | undefined;
|
|
2131
2131
|
isDefault?: boolean | null | undefined;
|
|
2132
|
-
combinationKey: string;
|
|
2133
2132
|
active: boolean;
|
|
2133
|
+
combinationKey: string;
|
|
2134
2134
|
selectionName: string[];
|
|
2135
2135
|
}[];
|
|
2136
2136
|
} | null | undefined;
|
|
@@ -2169,8 +2169,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2169
2169
|
};
|
|
2170
2170
|
}[] | null | undefined;
|
|
2171
2171
|
isDefault?: boolean | null | undefined;
|
|
2172
|
-
combinationKey: string;
|
|
2173
2172
|
active: boolean;
|
|
2173
|
+
combinationKey: string;
|
|
2174
2174
|
selectionName: string[];
|
|
2175
2175
|
}[] | null | undefined;
|
|
2176
2176
|
inventoryBindings?: {
|
|
@@ -2231,11 +2231,11 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2231
2231
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
2232
2232
|
scheduler?: {
|
|
2233
2233
|
repeat: "daily" | "weekly";
|
|
2234
|
-
_id: string;
|
|
2235
2234
|
name: string;
|
|
2235
|
+
_id: string;
|
|
2236
2236
|
timePeriod: {
|
|
2237
|
-
start: string;
|
|
2238
2237
|
end: string;
|
|
2238
|
+
start: string;
|
|
2239
2239
|
}[];
|
|
2240
2240
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
2241
2241
|
} | null | undefined;
|
|
@@ -2339,8 +2339,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2339
2339
|
};
|
|
2340
2340
|
}[] | null | undefined;
|
|
2341
2341
|
isDefault?: boolean | null | undefined;
|
|
2342
|
-
combinationKey: string;
|
|
2343
2342
|
active: boolean;
|
|
2343
|
+
combinationKey: string;
|
|
2344
2344
|
selectionName: string[];
|
|
2345
2345
|
}[];
|
|
2346
2346
|
} | null | undefined;
|
|
@@ -2379,8 +2379,8 @@ export declare const FdtoMergedAddon: z.ZodObject<z.extendShape<{
|
|
|
2379
2379
|
};
|
|
2380
2380
|
}[] | null | undefined;
|
|
2381
2381
|
isDefault?: boolean | null | undefined;
|
|
2382
|
-
combinationKey: string;
|
|
2383
2382
|
active: boolean;
|
|
2383
|
+
combinationKey: string;
|
|
2384
2384
|
selectionName: string[];
|
|
2385
2385
|
}[] | null | undefined;
|
|
2386
2386
|
inventoryBindings?: {
|
|
@@ -2553,8 +2553,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
2553
2553
|
};
|
|
2554
2554
|
}[] | null | undefined;
|
|
2555
2555
|
isDefault?: boolean | null | undefined;
|
|
2556
|
-
combinationKey: string;
|
|
2557
2556
|
active: boolean;
|
|
2557
|
+
combinationKey: string;
|
|
2558
2558
|
selectionName: string[];
|
|
2559
2559
|
}, {
|
|
2560
2560
|
code?: string | null | undefined;
|
|
@@ -2582,8 +2582,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
2582
2582
|
};
|
|
2583
2583
|
}[] | null | undefined;
|
|
2584
2584
|
isDefault?: boolean | null | undefined;
|
|
2585
|
-
combinationKey: string;
|
|
2586
2585
|
active: boolean;
|
|
2586
|
+
combinationKey: string;
|
|
2587
2587
|
selectionName: string[];
|
|
2588
2588
|
}>, "many">>>;
|
|
2589
2589
|
inventoryBindings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2678,30 +2678,30 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
2678
2678
|
start: z.ZodString;
|
|
2679
2679
|
end: z.ZodString;
|
|
2680
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2681
|
-
start: string;
|
|
2682
2681
|
end: string;
|
|
2683
|
-
}, {
|
|
2684
2682
|
start: string;
|
|
2683
|
+
}, {
|
|
2685
2684
|
end: string;
|
|
2685
|
+
start: string;
|
|
2686
2686
|
}>, "many">;
|
|
2687
2687
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
2688
2688
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
2689
2689
|
}, "strip", z.ZodTypeAny, {
|
|
2690
2690
|
repeat: "daily" | "weekly";
|
|
2691
|
-
_id: string;
|
|
2692
2691
|
name: string;
|
|
2692
|
+
_id: string;
|
|
2693
2693
|
timePeriod: {
|
|
2694
|
-
start: string;
|
|
2695
2694
|
end: string;
|
|
2695
|
+
start: string;
|
|
2696
2696
|
}[];
|
|
2697
2697
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
2698
2698
|
}, {
|
|
2699
2699
|
repeat: "daily" | "weekly";
|
|
2700
|
-
_id: string;
|
|
2701
2700
|
name: string;
|
|
2701
|
+
_id: string;
|
|
2702
2702
|
timePeriod: {
|
|
2703
|
-
start: string;
|
|
2704
2703
|
end: string;
|
|
2704
|
+
start: string;
|
|
2705
2705
|
}[];
|
|
2706
2706
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
2707
2707
|
}>>>;
|
|
@@ -3093,8 +3093,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3093
3093
|
};
|
|
3094
3094
|
}[] | null | undefined;
|
|
3095
3095
|
isDefault?: boolean | null | undefined;
|
|
3096
|
-
combinationKey: string;
|
|
3097
3096
|
active: boolean;
|
|
3097
|
+
combinationKey: string;
|
|
3098
3098
|
selectionName: string[];
|
|
3099
3099
|
}, {
|
|
3100
3100
|
code?: string | null | undefined;
|
|
@@ -3122,8 +3122,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3122
3122
|
};
|
|
3123
3123
|
}[] | null | undefined;
|
|
3124
3124
|
isDefault?: boolean | null | undefined;
|
|
3125
|
-
combinationKey: string;
|
|
3126
3125
|
active: boolean;
|
|
3126
|
+
combinationKey: string;
|
|
3127
3127
|
selectionName: string[];
|
|
3128
3128
|
}>, "many">;
|
|
3129
3129
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3234,11 +3234,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3234
3234
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
3235
3235
|
scheduler?: {
|
|
3236
3236
|
repeat: "daily" | "weekly";
|
|
3237
|
-
_id: string;
|
|
3238
3237
|
name: string;
|
|
3238
|
+
_id: string;
|
|
3239
3239
|
timePeriod: {
|
|
3240
|
-
start: string;
|
|
3241
3240
|
end: string;
|
|
3241
|
+
start: string;
|
|
3242
3242
|
}[];
|
|
3243
3243
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
3244
3244
|
} | null | undefined;
|
|
@@ -3342,8 +3342,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3342
3342
|
};
|
|
3343
3343
|
}[] | null | undefined;
|
|
3344
3344
|
isDefault?: boolean | null | undefined;
|
|
3345
|
-
combinationKey: string;
|
|
3346
3345
|
active: boolean;
|
|
3346
|
+
combinationKey: string;
|
|
3347
3347
|
selectionName: string[];
|
|
3348
3348
|
}[];
|
|
3349
3349
|
}, {
|
|
@@ -3376,11 +3376,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3376
3376
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
3377
3377
|
scheduler?: {
|
|
3378
3378
|
repeat: "daily" | "weekly";
|
|
3379
|
-
_id: string;
|
|
3380
3379
|
name: string;
|
|
3380
|
+
_id: string;
|
|
3381
3381
|
timePeriod: {
|
|
3382
|
-
start: string;
|
|
3383
3382
|
end: string;
|
|
3383
|
+
start: string;
|
|
3384
3384
|
}[];
|
|
3385
3385
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
3386
3386
|
} | null | undefined;
|
|
@@ -3484,8 +3484,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3484
3484
|
};
|
|
3485
3485
|
}[] | null | undefined;
|
|
3486
3486
|
isDefault?: boolean | null | undefined;
|
|
3487
|
-
combinationKey: string;
|
|
3488
3487
|
active: boolean;
|
|
3488
|
+
combinationKey: string;
|
|
3489
3489
|
selectionName: string[];
|
|
3490
3490
|
}[];
|
|
3491
3491
|
}>>>;
|
|
@@ -3542,11 +3542,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3542
3542
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
3543
3543
|
scheduler?: {
|
|
3544
3544
|
repeat: "daily" | "weekly";
|
|
3545
|
-
_id: string;
|
|
3546
3545
|
name: string;
|
|
3546
|
+
_id: string;
|
|
3547
3547
|
timePeriod: {
|
|
3548
|
-
start: string;
|
|
3549
3548
|
end: string;
|
|
3549
|
+
start: string;
|
|
3550
3550
|
}[];
|
|
3551
3551
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
3552
3552
|
} | null | undefined;
|
|
@@ -3650,8 +3650,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3650
3650
|
};
|
|
3651
3651
|
}[] | null | undefined;
|
|
3652
3652
|
isDefault?: boolean | null | undefined;
|
|
3653
|
-
combinationKey: string;
|
|
3654
3653
|
active: boolean;
|
|
3654
|
+
combinationKey: string;
|
|
3655
3655
|
selectionName: string[];
|
|
3656
3656
|
}[];
|
|
3657
3657
|
} | null | undefined;
|
|
@@ -3690,8 +3690,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3690
3690
|
};
|
|
3691
3691
|
}[] | null | undefined;
|
|
3692
3692
|
isDefault?: boolean | null | undefined;
|
|
3693
|
-
combinationKey: string;
|
|
3694
3693
|
active: boolean;
|
|
3694
|
+
combinationKey: string;
|
|
3695
3695
|
selectionName: string[];
|
|
3696
3696
|
}[] | null | undefined;
|
|
3697
3697
|
inventoryBindings?: {
|
|
@@ -3752,11 +3752,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3752
3752
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
3753
3753
|
scheduler?: {
|
|
3754
3754
|
repeat: "daily" | "weekly";
|
|
3755
|
-
_id: string;
|
|
3756
3755
|
name: string;
|
|
3756
|
+
_id: string;
|
|
3757
3757
|
timePeriod: {
|
|
3758
|
-
start: string;
|
|
3759
3758
|
end: string;
|
|
3759
|
+
start: string;
|
|
3760
3760
|
}[];
|
|
3761
3761
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
3762
3762
|
} | null | undefined;
|
|
@@ -3860,8 +3860,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3860
3860
|
};
|
|
3861
3861
|
}[] | null | undefined;
|
|
3862
3862
|
isDefault?: boolean | null | undefined;
|
|
3863
|
-
combinationKey: string;
|
|
3864
3863
|
active: boolean;
|
|
3864
|
+
combinationKey: string;
|
|
3865
3865
|
selectionName: string[];
|
|
3866
3866
|
}[];
|
|
3867
3867
|
} | null | undefined;
|
|
@@ -3900,8 +3900,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3900
3900
|
};
|
|
3901
3901
|
}[] | null | undefined;
|
|
3902
3902
|
isDefault?: boolean | null | undefined;
|
|
3903
|
-
combinationKey: string;
|
|
3904
3903
|
active: boolean;
|
|
3904
|
+
combinationKey: string;
|
|
3905
3905
|
selectionName: string[];
|
|
3906
3906
|
}[] | null | undefined;
|
|
3907
3907
|
inventoryBindings?: {
|
|
@@ -3978,11 +3978,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
3978
3978
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
3979
3979
|
scheduler?: {
|
|
3980
3980
|
repeat: "daily" | "weekly";
|
|
3981
|
-
_id: string;
|
|
3982
3981
|
name: string;
|
|
3982
|
+
_id: string;
|
|
3983
3983
|
timePeriod: {
|
|
3984
|
-
start: string;
|
|
3985
3984
|
end: string;
|
|
3985
|
+
start: string;
|
|
3986
3986
|
}[];
|
|
3987
3987
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
3988
3988
|
} | null | undefined;
|
|
@@ -4086,8 +4086,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4086
4086
|
};
|
|
4087
4087
|
}[] | null | undefined;
|
|
4088
4088
|
isDefault?: boolean | null | undefined;
|
|
4089
|
-
combinationKey: string;
|
|
4090
4089
|
active: boolean;
|
|
4090
|
+
combinationKey: string;
|
|
4091
4091
|
selectionName: string[];
|
|
4092
4092
|
}[];
|
|
4093
4093
|
} | null | undefined;
|
|
@@ -4126,8 +4126,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4126
4126
|
};
|
|
4127
4127
|
}[] | null | undefined;
|
|
4128
4128
|
isDefault?: boolean | null | undefined;
|
|
4129
|
-
combinationKey: string;
|
|
4130
4129
|
active: boolean;
|
|
4130
|
+
combinationKey: string;
|
|
4131
4131
|
selectionName: string[];
|
|
4132
4132
|
}[] | null | undefined;
|
|
4133
4133
|
inventoryBindings?: {
|
|
@@ -4198,11 +4198,11 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4198
4198
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
4199
4199
|
scheduler?: {
|
|
4200
4200
|
repeat: "daily" | "weekly";
|
|
4201
|
-
_id: string;
|
|
4202
4201
|
name: string;
|
|
4202
|
+
_id: string;
|
|
4203
4203
|
timePeriod: {
|
|
4204
|
-
start: string;
|
|
4205
4204
|
end: string;
|
|
4205
|
+
start: string;
|
|
4206
4206
|
}[];
|
|
4207
4207
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
4208
4208
|
} | null | undefined;
|
|
@@ -4306,8 +4306,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4306
4306
|
};
|
|
4307
4307
|
}[] | null | undefined;
|
|
4308
4308
|
isDefault?: boolean | null | undefined;
|
|
4309
|
-
combinationKey: string;
|
|
4310
4309
|
active: boolean;
|
|
4310
|
+
combinationKey: string;
|
|
4311
4311
|
selectionName: string[];
|
|
4312
4312
|
}[];
|
|
4313
4313
|
} | null | undefined;
|
|
@@ -4346,8 +4346,8 @@ export declare const FdtoMergedAddonGroup: z.ZodObject<{
|
|
|
4346
4346
|
};
|
|
4347
4347
|
}[] | null | undefined;
|
|
4348
4348
|
isDefault?: boolean | null | undefined;
|
|
4349
|
-
combinationKey: string;
|
|
4350
4349
|
active: boolean;
|
|
4350
|
+
combinationKey: string;
|
|
4351
4351
|
selectionName: string[];
|
|
4352
4352
|
}[] | null | undefined;
|
|
4353
4353
|
inventoryBindings?: {
|
|
@@ -4384,12 +4384,12 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4384
4384
|
position: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4385
4385
|
}, "strip", z.ZodTypeAny, {
|
|
4386
4386
|
position?: number | null | undefined;
|
|
4387
|
-
_id: string;
|
|
4388
4387
|
name: string;
|
|
4388
|
+
_id: string;
|
|
4389
4389
|
}, {
|
|
4390
4390
|
position?: number | null | undefined;
|
|
4391
|
-
_id: string;
|
|
4392
4391
|
name: string;
|
|
4392
|
+
_id: string;
|
|
4393
4393
|
}>, "many">;
|
|
4394
4394
|
product: z.ZodArray<z.ZodObject<{
|
|
4395
4395
|
perXUnit: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
@@ -4403,30 +4403,30 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4403
4403
|
start: z.ZodString;
|
|
4404
4404
|
end: z.ZodString;
|
|
4405
4405
|
}, "strip", z.ZodTypeAny, {
|
|
4406
|
-
start: string;
|
|
4407
4406
|
end: string;
|
|
4408
|
-
}, {
|
|
4409
4407
|
start: string;
|
|
4408
|
+
}, {
|
|
4410
4409
|
end: string;
|
|
4410
|
+
start: string;
|
|
4411
4411
|
}>, "many">;
|
|
4412
4412
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
4413
4413
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
4414
4414
|
}, "strip", z.ZodTypeAny, {
|
|
4415
4415
|
repeat: "daily" | "weekly";
|
|
4416
|
-
_id: string;
|
|
4417
4416
|
name: string;
|
|
4417
|
+
_id: string;
|
|
4418
4418
|
timePeriod: {
|
|
4419
|
-
start: string;
|
|
4420
4419
|
end: string;
|
|
4420
|
+
start: string;
|
|
4421
4421
|
}[];
|
|
4422
4422
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
4423
4423
|
}, {
|
|
4424
4424
|
repeat: "daily" | "weekly";
|
|
4425
|
-
_id: string;
|
|
4426
4425
|
name: string;
|
|
4426
|
+
_id: string;
|
|
4427
4427
|
timePeriod: {
|
|
4428
|
-
start: string;
|
|
4429
4428
|
end: string;
|
|
4429
|
+
start: string;
|
|
4430
4430
|
}[];
|
|
4431
4431
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
4432
4432
|
}>>>;
|
|
@@ -4818,8 +4818,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4818
4818
|
};
|
|
4819
4819
|
}[] | null | undefined;
|
|
4820
4820
|
isDefault?: boolean | null | undefined;
|
|
4821
|
-
combinationKey: string;
|
|
4822
4821
|
active: boolean;
|
|
4822
|
+
combinationKey: string;
|
|
4823
4823
|
selectionName: string[];
|
|
4824
4824
|
}, {
|
|
4825
4825
|
code?: string | null | undefined;
|
|
@@ -4847,8 +4847,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4847
4847
|
};
|
|
4848
4848
|
}[] | null | undefined;
|
|
4849
4849
|
isDefault?: boolean | null | undefined;
|
|
4850
|
-
combinationKey: string;
|
|
4851
4850
|
active: boolean;
|
|
4851
|
+
combinationKey: string;
|
|
4852
4852
|
selectionName: string[];
|
|
4853
4853
|
}>, "many">;
|
|
4854
4854
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4959,11 +4959,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
4959
4959
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
4960
4960
|
scheduler?: {
|
|
4961
4961
|
repeat: "daily" | "weekly";
|
|
4962
|
-
_id: string;
|
|
4963
4962
|
name: string;
|
|
4963
|
+
_id: string;
|
|
4964
4964
|
timePeriod: {
|
|
4965
|
-
start: string;
|
|
4966
4965
|
end: string;
|
|
4966
|
+
start: string;
|
|
4967
4967
|
}[];
|
|
4968
4968
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
4969
4969
|
} | null | undefined;
|
|
@@ -5067,8 +5067,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5067
5067
|
};
|
|
5068
5068
|
}[] | null | undefined;
|
|
5069
5069
|
isDefault?: boolean | null | undefined;
|
|
5070
|
-
combinationKey: string;
|
|
5071
5070
|
active: boolean;
|
|
5071
|
+
combinationKey: string;
|
|
5072
5072
|
selectionName: string[];
|
|
5073
5073
|
}[];
|
|
5074
5074
|
}, {
|
|
@@ -5101,11 +5101,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5101
5101
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
5102
5102
|
scheduler?: {
|
|
5103
5103
|
repeat: "daily" | "weekly";
|
|
5104
|
-
_id: string;
|
|
5105
5104
|
name: string;
|
|
5105
|
+
_id: string;
|
|
5106
5106
|
timePeriod: {
|
|
5107
|
-
start: string;
|
|
5108
5107
|
end: string;
|
|
5108
|
+
start: string;
|
|
5109
5109
|
}[];
|
|
5110
5110
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
5111
5111
|
} | null | undefined;
|
|
@@ -5209,8 +5209,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5209
5209
|
};
|
|
5210
5210
|
}[] | null | undefined;
|
|
5211
5211
|
isDefault?: boolean | null | undefined;
|
|
5212
|
-
combinationKey: string;
|
|
5213
5212
|
active: boolean;
|
|
5213
|
+
combinationKey: string;
|
|
5214
5214
|
selectionName: string[];
|
|
5215
5215
|
}[];
|
|
5216
5216
|
}>, "many">;
|
|
@@ -5358,8 +5358,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5358
5358
|
};
|
|
5359
5359
|
}[] | null | undefined;
|
|
5360
5360
|
isDefault?: boolean | null | undefined;
|
|
5361
|
-
combinationKey: string;
|
|
5362
5361
|
active: boolean;
|
|
5362
|
+
combinationKey: string;
|
|
5363
5363
|
selectionName: string[];
|
|
5364
5364
|
}, {
|
|
5365
5365
|
code?: string | null | undefined;
|
|
@@ -5387,8 +5387,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5387
5387
|
};
|
|
5388
5388
|
}[] | null | undefined;
|
|
5389
5389
|
isDefault?: boolean | null | undefined;
|
|
5390
|
-
combinationKey: string;
|
|
5391
5390
|
active: boolean;
|
|
5391
|
+
combinationKey: string;
|
|
5392
5392
|
selectionName: string[];
|
|
5393
5393
|
}>, "many">>>;
|
|
5394
5394
|
inventoryBindings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5483,30 +5483,30 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5483
5483
|
start: z.ZodString;
|
|
5484
5484
|
end: z.ZodString;
|
|
5485
5485
|
}, "strip", z.ZodTypeAny, {
|
|
5486
|
-
start: string;
|
|
5487
5486
|
end: string;
|
|
5488
|
-
}, {
|
|
5489
5487
|
start: string;
|
|
5488
|
+
}, {
|
|
5490
5489
|
end: string;
|
|
5490
|
+
start: string;
|
|
5491
5491
|
}>, "many">;
|
|
5492
5492
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
5493
5493
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
5494
5494
|
}, "strip", z.ZodTypeAny, {
|
|
5495
5495
|
repeat: "daily" | "weekly";
|
|
5496
|
-
_id: string;
|
|
5497
5496
|
name: string;
|
|
5497
|
+
_id: string;
|
|
5498
5498
|
timePeriod: {
|
|
5499
|
-
start: string;
|
|
5500
5499
|
end: string;
|
|
5500
|
+
start: string;
|
|
5501
5501
|
}[];
|
|
5502
5502
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
5503
5503
|
}, {
|
|
5504
5504
|
repeat: "daily" | "weekly";
|
|
5505
|
-
_id: string;
|
|
5506
5505
|
name: string;
|
|
5506
|
+
_id: string;
|
|
5507
5507
|
timePeriod: {
|
|
5508
|
-
start: string;
|
|
5509
5508
|
end: string;
|
|
5509
|
+
start: string;
|
|
5510
5510
|
}[];
|
|
5511
5511
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
5512
5512
|
}>>>;
|
|
@@ -5898,8 +5898,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5898
5898
|
};
|
|
5899
5899
|
}[] | null | undefined;
|
|
5900
5900
|
isDefault?: boolean | null | undefined;
|
|
5901
|
-
combinationKey: string;
|
|
5902
5901
|
active: boolean;
|
|
5902
|
+
combinationKey: string;
|
|
5903
5903
|
selectionName: string[];
|
|
5904
5904
|
}, {
|
|
5905
5905
|
code?: string | null | undefined;
|
|
@@ -5927,8 +5927,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
5927
5927
|
};
|
|
5928
5928
|
}[] | null | undefined;
|
|
5929
5929
|
isDefault?: boolean | null | undefined;
|
|
5930
|
-
combinationKey: string;
|
|
5931
5930
|
active: boolean;
|
|
5931
|
+
combinationKey: string;
|
|
5932
5932
|
selectionName: string[];
|
|
5933
5933
|
}>, "many">;
|
|
5934
5934
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6039,11 +6039,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6039
6039
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
6040
6040
|
scheduler?: {
|
|
6041
6041
|
repeat: "daily" | "weekly";
|
|
6042
|
-
_id: string;
|
|
6043
6042
|
name: string;
|
|
6043
|
+
_id: string;
|
|
6044
6044
|
timePeriod: {
|
|
6045
|
-
start: string;
|
|
6046
6045
|
end: string;
|
|
6046
|
+
start: string;
|
|
6047
6047
|
}[];
|
|
6048
6048
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
6049
6049
|
} | null | undefined;
|
|
@@ -6147,8 +6147,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6147
6147
|
};
|
|
6148
6148
|
}[] | null | undefined;
|
|
6149
6149
|
isDefault?: boolean | null | undefined;
|
|
6150
|
-
combinationKey: string;
|
|
6151
6150
|
active: boolean;
|
|
6151
|
+
combinationKey: string;
|
|
6152
6152
|
selectionName: string[];
|
|
6153
6153
|
}[];
|
|
6154
6154
|
}, {
|
|
@@ -6181,11 +6181,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6181
6181
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
6182
6182
|
scheduler?: {
|
|
6183
6183
|
repeat: "daily" | "weekly";
|
|
6184
|
-
_id: string;
|
|
6185
6184
|
name: string;
|
|
6185
|
+
_id: string;
|
|
6186
6186
|
timePeriod: {
|
|
6187
|
-
start: string;
|
|
6188
6187
|
end: string;
|
|
6188
|
+
start: string;
|
|
6189
6189
|
}[];
|
|
6190
6190
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
6191
6191
|
} | null | undefined;
|
|
@@ -6289,8 +6289,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6289
6289
|
};
|
|
6290
6290
|
}[] | null | undefined;
|
|
6291
6291
|
isDefault?: boolean | null | undefined;
|
|
6292
|
-
combinationKey: string;
|
|
6293
6292
|
active: boolean;
|
|
6293
|
+
combinationKey: string;
|
|
6294
6294
|
selectionName: string[];
|
|
6295
6295
|
}[];
|
|
6296
6296
|
}>>>;
|
|
@@ -6347,11 +6347,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6347
6347
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
6348
6348
|
scheduler?: {
|
|
6349
6349
|
repeat: "daily" | "weekly";
|
|
6350
|
-
_id: string;
|
|
6351
6350
|
name: string;
|
|
6351
|
+
_id: string;
|
|
6352
6352
|
timePeriod: {
|
|
6353
|
-
start: string;
|
|
6354
6353
|
end: string;
|
|
6354
|
+
start: string;
|
|
6355
6355
|
}[];
|
|
6356
6356
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
6357
6357
|
} | null | undefined;
|
|
@@ -6455,8 +6455,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6455
6455
|
};
|
|
6456
6456
|
}[] | null | undefined;
|
|
6457
6457
|
isDefault?: boolean | null | undefined;
|
|
6458
|
-
combinationKey: string;
|
|
6459
6458
|
active: boolean;
|
|
6459
|
+
combinationKey: string;
|
|
6460
6460
|
selectionName: string[];
|
|
6461
6461
|
}[];
|
|
6462
6462
|
} | null | undefined;
|
|
@@ -6495,8 +6495,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6495
6495
|
};
|
|
6496
6496
|
}[] | null | undefined;
|
|
6497
6497
|
isDefault?: boolean | null | undefined;
|
|
6498
|
-
combinationKey: string;
|
|
6499
6498
|
active: boolean;
|
|
6499
|
+
combinationKey: string;
|
|
6500
6500
|
selectionName: string[];
|
|
6501
6501
|
}[] | null | undefined;
|
|
6502
6502
|
inventoryBindings?: {
|
|
@@ -6557,11 +6557,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6557
6557
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
6558
6558
|
scheduler?: {
|
|
6559
6559
|
repeat: "daily" | "weekly";
|
|
6560
|
-
_id: string;
|
|
6561
6560
|
name: string;
|
|
6561
|
+
_id: string;
|
|
6562
6562
|
timePeriod: {
|
|
6563
|
-
start: string;
|
|
6564
6563
|
end: string;
|
|
6564
|
+
start: string;
|
|
6565
6565
|
}[];
|
|
6566
6566
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
6567
6567
|
} | null | undefined;
|
|
@@ -6665,8 +6665,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6665
6665
|
};
|
|
6666
6666
|
}[] | null | undefined;
|
|
6667
6667
|
isDefault?: boolean | null | undefined;
|
|
6668
|
-
combinationKey: string;
|
|
6669
6668
|
active: boolean;
|
|
6669
|
+
combinationKey: string;
|
|
6670
6670
|
selectionName: string[];
|
|
6671
6671
|
}[];
|
|
6672
6672
|
} | null | undefined;
|
|
@@ -6705,8 +6705,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6705
6705
|
};
|
|
6706
6706
|
}[] | null | undefined;
|
|
6707
6707
|
isDefault?: boolean | null | undefined;
|
|
6708
|
-
combinationKey: string;
|
|
6709
6708
|
active: boolean;
|
|
6709
|
+
combinationKey: string;
|
|
6710
6710
|
selectionName: string[];
|
|
6711
6711
|
}[] | null | undefined;
|
|
6712
6712
|
inventoryBindings?: {
|
|
@@ -6783,11 +6783,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6783
6783
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
6784
6784
|
scheduler?: {
|
|
6785
6785
|
repeat: "daily" | "weekly";
|
|
6786
|
-
_id: string;
|
|
6787
6786
|
name: string;
|
|
6787
|
+
_id: string;
|
|
6788
6788
|
timePeriod: {
|
|
6789
|
-
start: string;
|
|
6790
6789
|
end: string;
|
|
6790
|
+
start: string;
|
|
6791
6791
|
}[];
|
|
6792
6792
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
6793
6793
|
} | null | undefined;
|
|
@@ -6891,8 +6891,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6891
6891
|
};
|
|
6892
6892
|
}[] | null | undefined;
|
|
6893
6893
|
isDefault?: boolean | null | undefined;
|
|
6894
|
-
combinationKey: string;
|
|
6895
6894
|
active: boolean;
|
|
6895
|
+
combinationKey: string;
|
|
6896
6896
|
selectionName: string[];
|
|
6897
6897
|
}[];
|
|
6898
6898
|
} | null | undefined;
|
|
@@ -6931,8 +6931,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
6931
6931
|
};
|
|
6932
6932
|
}[] | null | undefined;
|
|
6933
6933
|
isDefault?: boolean | null | undefined;
|
|
6934
|
-
combinationKey: string;
|
|
6935
6934
|
active: boolean;
|
|
6935
|
+
combinationKey: string;
|
|
6936
6936
|
selectionName: string[];
|
|
6937
6937
|
}[] | null | undefined;
|
|
6938
6938
|
inventoryBindings?: {
|
|
@@ -7003,11 +7003,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7003
7003
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
7004
7004
|
scheduler?: {
|
|
7005
7005
|
repeat: "daily" | "weekly";
|
|
7006
|
-
_id: string;
|
|
7007
7006
|
name: string;
|
|
7007
|
+
_id: string;
|
|
7008
7008
|
timePeriod: {
|
|
7009
|
-
start: string;
|
|
7010
7009
|
end: string;
|
|
7010
|
+
start: string;
|
|
7011
7011
|
}[];
|
|
7012
7012
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
7013
7013
|
} | null | undefined;
|
|
@@ -7111,8 +7111,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7111
7111
|
};
|
|
7112
7112
|
}[] | null | undefined;
|
|
7113
7113
|
isDefault?: boolean | null | undefined;
|
|
7114
|
-
combinationKey: string;
|
|
7115
7114
|
active: boolean;
|
|
7115
|
+
combinationKey: string;
|
|
7116
7116
|
selectionName: string[];
|
|
7117
7117
|
}[];
|
|
7118
7118
|
} | null | undefined;
|
|
@@ -7151,8 +7151,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7151
7151
|
};
|
|
7152
7152
|
}[] | null | undefined;
|
|
7153
7153
|
isDefault?: boolean | null | undefined;
|
|
7154
|
-
combinationKey: string;
|
|
7155
7154
|
active: boolean;
|
|
7155
|
+
combinationKey: string;
|
|
7156
7156
|
selectionName: string[];
|
|
7157
7157
|
}[] | null | undefined;
|
|
7158
7158
|
inventoryBindings?: {
|
|
@@ -7196,19 +7196,19 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7196
7196
|
id: string;
|
|
7197
7197
|
}>, "many">;
|
|
7198
7198
|
}, "strip", z.ZodTypeAny, {
|
|
7199
|
+
name: string;
|
|
7199
7200
|
options: {
|
|
7200
7201
|
name: string;
|
|
7201
7202
|
id: string;
|
|
7202
7203
|
}[];
|
|
7203
7204
|
_id: string;
|
|
7204
|
-
name: string;
|
|
7205
7205
|
}, {
|
|
7206
|
+
name: string;
|
|
7206
7207
|
options: {
|
|
7207
7208
|
name: string;
|
|
7208
7209
|
id: string;
|
|
7209
7210
|
}[];
|
|
7210
7211
|
_id: string;
|
|
7211
|
-
name: string;
|
|
7212
7212
|
}>, "many">;
|
|
7213
7213
|
addonProduct: z.ZodArray<z.ZodObject<{
|
|
7214
7214
|
perXUnit: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
|
|
@@ -7222,30 +7222,30 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7222
7222
|
start: z.ZodString;
|
|
7223
7223
|
end: z.ZodString;
|
|
7224
7224
|
}, "strip", z.ZodTypeAny, {
|
|
7225
|
-
start: string;
|
|
7226
7225
|
end: string;
|
|
7227
|
-
}, {
|
|
7228
7226
|
start: string;
|
|
7227
|
+
}, {
|
|
7229
7228
|
end: string;
|
|
7229
|
+
start: string;
|
|
7230
7230
|
}>, "many">;
|
|
7231
7231
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
7232
7232
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
7233
7233
|
}, "strip", z.ZodTypeAny, {
|
|
7234
7234
|
repeat: "daily" | "weekly";
|
|
7235
|
-
_id: string;
|
|
7236
7235
|
name: string;
|
|
7236
|
+
_id: string;
|
|
7237
7237
|
timePeriod: {
|
|
7238
|
-
start: string;
|
|
7239
7238
|
end: string;
|
|
7239
|
+
start: string;
|
|
7240
7240
|
}[];
|
|
7241
7241
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
7242
7242
|
}, {
|
|
7243
7243
|
repeat: "daily" | "weekly";
|
|
7244
|
-
_id: string;
|
|
7245
7244
|
name: string;
|
|
7245
|
+
_id: string;
|
|
7246
7246
|
timePeriod: {
|
|
7247
|
-
start: string;
|
|
7248
7247
|
end: string;
|
|
7248
|
+
start: string;
|
|
7249
7249
|
}[];
|
|
7250
7250
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
7251
7251
|
}>>>;
|
|
@@ -7637,8 +7637,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7637
7637
|
};
|
|
7638
7638
|
}[] | null | undefined;
|
|
7639
7639
|
isDefault?: boolean | null | undefined;
|
|
7640
|
-
combinationKey: string;
|
|
7641
7640
|
active: boolean;
|
|
7641
|
+
combinationKey: string;
|
|
7642
7642
|
selectionName: string[];
|
|
7643
7643
|
}, {
|
|
7644
7644
|
code?: string | null | undefined;
|
|
@@ -7666,8 +7666,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7666
7666
|
};
|
|
7667
7667
|
}[] | null | undefined;
|
|
7668
7668
|
isDefault?: boolean | null | undefined;
|
|
7669
|
-
combinationKey: string;
|
|
7670
7669
|
active: boolean;
|
|
7670
|
+
combinationKey: string;
|
|
7671
7671
|
selectionName: string[];
|
|
7672
7672
|
}>, "many">;
|
|
7673
7673
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -7778,11 +7778,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7778
7778
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
7779
7779
|
scheduler?: {
|
|
7780
7780
|
repeat: "daily" | "weekly";
|
|
7781
|
-
_id: string;
|
|
7782
7781
|
name: string;
|
|
7782
|
+
_id: string;
|
|
7783
7783
|
timePeriod: {
|
|
7784
|
-
start: string;
|
|
7785
7784
|
end: string;
|
|
7785
|
+
start: string;
|
|
7786
7786
|
}[];
|
|
7787
7787
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
7788
7788
|
} | null | undefined;
|
|
@@ -7886,8 +7886,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7886
7886
|
};
|
|
7887
7887
|
}[] | null | undefined;
|
|
7888
7888
|
isDefault?: boolean | null | undefined;
|
|
7889
|
-
combinationKey: string;
|
|
7890
7889
|
active: boolean;
|
|
7890
|
+
combinationKey: string;
|
|
7891
7891
|
selectionName: string[];
|
|
7892
7892
|
}[];
|
|
7893
7893
|
}, {
|
|
@@ -7920,11 +7920,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
7920
7920
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
7921
7921
|
scheduler?: {
|
|
7922
7922
|
repeat: "daily" | "weekly";
|
|
7923
|
-
_id: string;
|
|
7924
7923
|
name: string;
|
|
7924
|
+
_id: string;
|
|
7925
7925
|
timePeriod: {
|
|
7926
|
-
start: string;
|
|
7927
7926
|
end: string;
|
|
7927
|
+
start: string;
|
|
7928
7928
|
}[];
|
|
7929
7929
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
7930
7930
|
} | null | undefined;
|
|
@@ -8028,8 +8028,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8028
8028
|
};
|
|
8029
8029
|
}[] | null | undefined;
|
|
8030
8030
|
isDefault?: boolean | null | undefined;
|
|
8031
|
-
combinationKey: string;
|
|
8032
8031
|
active: boolean;
|
|
8032
|
+
combinationKey: string;
|
|
8033
8033
|
selectionName: string[];
|
|
8034
8034
|
}[];
|
|
8035
8035
|
}>, "many">;
|
|
@@ -8078,11 +8078,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8078
8078
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8079
8079
|
scheduler?: {
|
|
8080
8080
|
repeat: "daily" | "weekly";
|
|
8081
|
-
_id: string;
|
|
8082
8081
|
name: string;
|
|
8082
|
+
_id: string;
|
|
8083
8083
|
timePeriod: {
|
|
8084
|
-
start: string;
|
|
8085
8084
|
end: string;
|
|
8085
|
+
start: string;
|
|
8086
8086
|
}[];
|
|
8087
8087
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8088
8088
|
} | null | undefined;
|
|
@@ -8186,23 +8186,23 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8186
8186
|
};
|
|
8187
8187
|
}[] | null | undefined;
|
|
8188
8188
|
isDefault?: boolean | null | undefined;
|
|
8189
|
-
combinationKey: string;
|
|
8190
8189
|
active: boolean;
|
|
8190
|
+
combinationKey: string;
|
|
8191
8191
|
selectionName: string[];
|
|
8192
8192
|
}[];
|
|
8193
8193
|
}[];
|
|
8194
8194
|
variant: {
|
|
8195
|
+
name: string;
|
|
8195
8196
|
options: {
|
|
8196
8197
|
name: string;
|
|
8197
8198
|
id: string;
|
|
8198
8199
|
}[];
|
|
8199
8200
|
_id: string;
|
|
8200
|
-
name: string;
|
|
8201
8201
|
}[];
|
|
8202
8202
|
category: {
|
|
8203
8203
|
position?: number | null | undefined;
|
|
8204
|
-
_id: string;
|
|
8205
8204
|
name: string;
|
|
8205
|
+
_id: string;
|
|
8206
8206
|
}[];
|
|
8207
8207
|
addonGroup: {
|
|
8208
8208
|
priority?: string | number | null | undefined;
|
|
@@ -8246,11 +8246,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8246
8246
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8247
8247
|
scheduler?: {
|
|
8248
8248
|
repeat: "daily" | "weekly";
|
|
8249
|
-
_id: string;
|
|
8250
8249
|
name: string;
|
|
8250
|
+
_id: string;
|
|
8251
8251
|
timePeriod: {
|
|
8252
|
-
start: string;
|
|
8253
8252
|
end: string;
|
|
8253
|
+
start: string;
|
|
8254
8254
|
}[];
|
|
8255
8255
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8256
8256
|
} | null | undefined;
|
|
@@ -8354,8 +8354,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8354
8354
|
};
|
|
8355
8355
|
}[] | null | undefined;
|
|
8356
8356
|
isDefault?: boolean | null | undefined;
|
|
8357
|
-
combinationKey: string;
|
|
8358
8357
|
active: boolean;
|
|
8358
|
+
combinationKey: string;
|
|
8359
8359
|
selectionName: string[];
|
|
8360
8360
|
}[];
|
|
8361
8361
|
} | null | undefined;
|
|
@@ -8394,8 +8394,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8394
8394
|
};
|
|
8395
8395
|
}[] | null | undefined;
|
|
8396
8396
|
isDefault?: boolean | null | undefined;
|
|
8397
|
-
combinationKey: string;
|
|
8398
8397
|
active: boolean;
|
|
8398
|
+
combinationKey: string;
|
|
8399
8399
|
selectionName: string[];
|
|
8400
8400
|
}[] | null | undefined;
|
|
8401
8401
|
inventoryBindings?: {
|
|
@@ -8455,11 +8455,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8455
8455
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8456
8456
|
scheduler?: {
|
|
8457
8457
|
repeat: "daily" | "weekly";
|
|
8458
|
-
_id: string;
|
|
8459
8458
|
name: string;
|
|
8459
|
+
_id: string;
|
|
8460
8460
|
timePeriod: {
|
|
8461
|
-
start: string;
|
|
8462
8461
|
end: string;
|
|
8462
|
+
start: string;
|
|
8463
8463
|
}[];
|
|
8464
8464
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8465
8465
|
} | null | undefined;
|
|
@@ -8563,8 +8563,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8563
8563
|
};
|
|
8564
8564
|
}[] | null | undefined;
|
|
8565
8565
|
isDefault?: boolean | null | undefined;
|
|
8566
|
-
combinationKey: string;
|
|
8567
8566
|
active: boolean;
|
|
8567
|
+
combinationKey: string;
|
|
8568
8568
|
selectionName: string[];
|
|
8569
8569
|
}[];
|
|
8570
8570
|
}[];
|
|
@@ -8605,11 +8605,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8605
8605
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8606
8606
|
scheduler?: {
|
|
8607
8607
|
repeat: "daily" | "weekly";
|
|
8608
|
-
_id: string;
|
|
8609
8608
|
name: string;
|
|
8609
|
+
_id: string;
|
|
8610
8610
|
timePeriod: {
|
|
8611
|
-
start: string;
|
|
8612
8611
|
end: string;
|
|
8612
|
+
start: string;
|
|
8613
8613
|
}[];
|
|
8614
8614
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8615
8615
|
} | null | undefined;
|
|
@@ -8713,23 +8713,23 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8713
8713
|
};
|
|
8714
8714
|
}[] | null | undefined;
|
|
8715
8715
|
isDefault?: boolean | null | undefined;
|
|
8716
|
-
combinationKey: string;
|
|
8717
8716
|
active: boolean;
|
|
8717
|
+
combinationKey: string;
|
|
8718
8718
|
selectionName: string[];
|
|
8719
8719
|
}[];
|
|
8720
8720
|
}[];
|
|
8721
8721
|
variant: {
|
|
8722
|
+
name: string;
|
|
8722
8723
|
options: {
|
|
8723
8724
|
name: string;
|
|
8724
8725
|
id: string;
|
|
8725
8726
|
}[];
|
|
8726
8727
|
_id: string;
|
|
8727
|
-
name: string;
|
|
8728
8728
|
}[];
|
|
8729
8729
|
category: {
|
|
8730
8730
|
position?: number | null | undefined;
|
|
8731
|
-
_id: string;
|
|
8732
8731
|
name: string;
|
|
8732
|
+
_id: string;
|
|
8733
8733
|
}[];
|
|
8734
8734
|
addonGroup: {
|
|
8735
8735
|
priority?: string | number | null | undefined;
|
|
@@ -8773,11 +8773,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8773
8773
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8774
8774
|
scheduler?: {
|
|
8775
8775
|
repeat: "daily" | "weekly";
|
|
8776
|
-
_id: string;
|
|
8777
8776
|
name: string;
|
|
8777
|
+
_id: string;
|
|
8778
8778
|
timePeriod: {
|
|
8779
|
-
start: string;
|
|
8780
8779
|
end: string;
|
|
8780
|
+
start: string;
|
|
8781
8781
|
}[];
|
|
8782
8782
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8783
8783
|
} | null | undefined;
|
|
@@ -8881,8 +8881,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8881
8881
|
};
|
|
8882
8882
|
}[] | null | undefined;
|
|
8883
8883
|
isDefault?: boolean | null | undefined;
|
|
8884
|
-
combinationKey: string;
|
|
8885
8884
|
active: boolean;
|
|
8885
|
+
combinationKey: string;
|
|
8886
8886
|
selectionName: string[];
|
|
8887
8887
|
}[];
|
|
8888
8888
|
} | null | undefined;
|
|
@@ -8921,8 +8921,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8921
8921
|
};
|
|
8922
8922
|
}[] | null | undefined;
|
|
8923
8923
|
isDefault?: boolean | null | undefined;
|
|
8924
|
-
combinationKey: string;
|
|
8925
8924
|
active: boolean;
|
|
8925
|
+
combinationKey: string;
|
|
8926
8926
|
selectionName: string[];
|
|
8927
8927
|
}[] | null | undefined;
|
|
8928
8928
|
inventoryBindings?: {
|
|
@@ -8982,11 +8982,11 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
8982
8982
|
variant?: IFdtoVariantSelectionGroup | null | undefined;
|
|
8983
8983
|
scheduler?: {
|
|
8984
8984
|
repeat: "daily" | "weekly";
|
|
8985
|
-
_id: string;
|
|
8986
8985
|
name: string;
|
|
8986
|
+
_id: string;
|
|
8987
8987
|
timePeriod: {
|
|
8988
|
-
start: string;
|
|
8989
8988
|
end: string;
|
|
8989
|
+
start: string;
|
|
8990
8990
|
}[];
|
|
8991
8991
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
8992
8992
|
} | null | undefined;
|
|
@@ -9090,8 +9090,8 @@ export declare const FdtoMergedMenuRes: z.ZodObject<{
|
|
|
9090
9090
|
};
|
|
9091
9091
|
}[] | null | undefined;
|
|
9092
9092
|
isDefault?: boolean | null | undefined;
|
|
9093
|
-
combinationKey: string;
|
|
9094
9093
|
active: boolean;
|
|
9094
|
+
combinationKey: string;
|
|
9095
9095
|
selectionName: string[];
|
|
9096
9096
|
}[];
|
|
9097
9097
|
}[];
|
|
@@ -9416,8 +9416,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9416
9416
|
};
|
|
9417
9417
|
}[] | null | undefined;
|
|
9418
9418
|
isDefault?: boolean | null | undefined;
|
|
9419
|
-
combinationKey: string;
|
|
9420
9419
|
active: boolean;
|
|
9420
|
+
combinationKey: string;
|
|
9421
9421
|
selectionName: string[];
|
|
9422
9422
|
}, {
|
|
9423
9423
|
code?: string | null | undefined;
|
|
@@ -9445,8 +9445,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9445
9445
|
};
|
|
9446
9446
|
}[] | null | undefined;
|
|
9447
9447
|
isDefault?: boolean | null | undefined;
|
|
9448
|
-
combinationKey: string;
|
|
9449
9448
|
active: boolean;
|
|
9449
|
+
combinationKey: string;
|
|
9450
9450
|
selectionName: string[];
|
|
9451
9451
|
}>, "many">;
|
|
9452
9452
|
schedulerUsed: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -9530,6 +9530,7 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9530
9530
|
printDepartments: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
9531
9531
|
customAttributes: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
9532
9532
|
}, "strip", z.ZodTypeAny, {
|
|
9533
|
+
unit?: string | null | undefined;
|
|
9533
9534
|
description?: string | null | undefined;
|
|
9534
9535
|
name2?: string | null | undefined;
|
|
9535
9536
|
noSst?: boolean | null | undefined;
|
|
@@ -9539,7 +9540,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9539
9540
|
systemCode: string;
|
|
9540
9541
|
taxCode: string;
|
|
9541
9542
|
}[] | null | undefined;
|
|
9542
|
-
unit?: string | null | undefined;
|
|
9543
9543
|
customAttributes?: Record<string, any> | null | undefined;
|
|
9544
9544
|
thumbnail?: string | null | undefined;
|
|
9545
9545
|
inventoryBindings?: {
|
|
@@ -9591,8 +9591,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9591
9591
|
schedulerUsed?: string | null | undefined;
|
|
9592
9592
|
printDepartments?: string[] | null | undefined;
|
|
9593
9593
|
code: string;
|
|
9594
|
-
_id: string;
|
|
9595
9594
|
name: string;
|
|
9595
|
+
_id: string;
|
|
9596
9596
|
price: {
|
|
9597
9597
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
9598
9598
|
amount: number;
|
|
@@ -9628,11 +9628,12 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9628
9628
|
};
|
|
9629
9629
|
}[] | null | undefined;
|
|
9630
9630
|
isDefault?: boolean | null | undefined;
|
|
9631
|
-
combinationKey: string;
|
|
9632
9631
|
active: boolean;
|
|
9632
|
+
combinationKey: string;
|
|
9633
9633
|
selectionName: string[];
|
|
9634
9634
|
}[];
|
|
9635
9635
|
}, {
|
|
9636
|
+
unit?: string | null | undefined;
|
|
9636
9637
|
description?: string | null | undefined;
|
|
9637
9638
|
name2?: string | null | undefined;
|
|
9638
9639
|
noSst?: boolean | null | undefined;
|
|
@@ -9642,7 +9643,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9642
9643
|
systemCode: string;
|
|
9643
9644
|
taxCode: string;
|
|
9644
9645
|
}[] | null | undefined;
|
|
9645
|
-
unit?: string | null | undefined;
|
|
9646
9646
|
customAttributes?: Record<string, any> | null | undefined;
|
|
9647
9647
|
thumbnail?: string | null | undefined;
|
|
9648
9648
|
inventoryBindings?: {
|
|
@@ -9694,8 +9694,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9694
9694
|
schedulerUsed?: string | null | undefined;
|
|
9695
9695
|
printDepartments?: string[] | null | undefined;
|
|
9696
9696
|
code: string;
|
|
9697
|
-
_id: string;
|
|
9698
9697
|
name: string;
|
|
9698
|
+
_id: string;
|
|
9699
9699
|
price: {
|
|
9700
9700
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
9701
9701
|
amount: number;
|
|
@@ -9731,8 +9731,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9731
9731
|
};
|
|
9732
9732
|
}[] | null | undefined;
|
|
9733
9733
|
isDefault?: boolean | null | undefined;
|
|
9734
|
-
combinationKey: string;
|
|
9735
9734
|
active: boolean;
|
|
9735
|
+
combinationKey: string;
|
|
9736
9736
|
selectionName: string[];
|
|
9737
9737
|
}[];
|
|
9738
9738
|
}>, "many">;
|
|
@@ -9742,12 +9742,12 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9742
9742
|
position: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
9743
9743
|
}, "strip", z.ZodTypeAny, {
|
|
9744
9744
|
position?: number | null | undefined;
|
|
9745
|
-
_id: string;
|
|
9746
9745
|
name: string;
|
|
9746
|
+
_id: string;
|
|
9747
9747
|
}, {
|
|
9748
9748
|
position?: number | null | undefined;
|
|
9749
|
-
_id: string;
|
|
9750
9749
|
name: string;
|
|
9750
|
+
_id: string;
|
|
9751
9751
|
}>, "many">;
|
|
9752
9752
|
scheduler: z.ZodArray<z.ZodObject<{
|
|
9753
9753
|
_id: z.ZodString;
|
|
@@ -9756,30 +9756,30 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9756
9756
|
start: z.ZodString;
|
|
9757
9757
|
end: z.ZodString;
|
|
9758
9758
|
}, "strip", z.ZodTypeAny, {
|
|
9759
|
-
start: string;
|
|
9760
9759
|
end: string;
|
|
9761
|
-
}, {
|
|
9762
9760
|
start: string;
|
|
9761
|
+
}, {
|
|
9763
9762
|
end: string;
|
|
9763
|
+
start: string;
|
|
9764
9764
|
}>, "many">;
|
|
9765
9765
|
weekDay: z.ZodArray<z.ZodEnum<["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"]>, "many">;
|
|
9766
9766
|
repeat: z.ZodEnum<["daily", "weekly"]>;
|
|
9767
9767
|
}, "strip", z.ZodTypeAny, {
|
|
9768
9768
|
repeat: "daily" | "weekly";
|
|
9769
|
-
_id: string;
|
|
9770
9769
|
name: string;
|
|
9770
|
+
_id: string;
|
|
9771
9771
|
timePeriod: {
|
|
9772
|
-
start: string;
|
|
9773
9772
|
end: string;
|
|
9773
|
+
start: string;
|
|
9774
9774
|
}[];
|
|
9775
9775
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
9776
9776
|
}, {
|
|
9777
9777
|
repeat: "daily" | "weekly";
|
|
9778
|
-
_id: string;
|
|
9779
9778
|
name: string;
|
|
9779
|
+
_id: string;
|
|
9780
9780
|
timePeriod: {
|
|
9781
|
-
start: string;
|
|
9782
9781
|
end: string;
|
|
9782
|
+
start: string;
|
|
9783
9783
|
}[];
|
|
9784
9784
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
9785
9785
|
}>, "many">;
|
|
@@ -9927,8 +9927,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9927
9927
|
};
|
|
9928
9928
|
}[] | null | undefined;
|
|
9929
9929
|
isDefault?: boolean | null | undefined;
|
|
9930
|
-
combinationKey: string;
|
|
9931
9930
|
active: boolean;
|
|
9931
|
+
combinationKey: string;
|
|
9932
9932
|
selectionName: string[];
|
|
9933
9933
|
}, {
|
|
9934
9934
|
code?: string | null | undefined;
|
|
@@ -9956,8 +9956,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
9956
9956
|
};
|
|
9957
9957
|
}[] | null | undefined;
|
|
9958
9958
|
isDefault?: boolean | null | undefined;
|
|
9959
|
-
combinationKey: string;
|
|
9960
9959
|
active: boolean;
|
|
9960
|
+
combinationKey: string;
|
|
9961
9961
|
selectionName: string[];
|
|
9962
9962
|
}>, "many">>>;
|
|
9963
9963
|
inventoryBindings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10087,17 +10087,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10087
10087
|
};
|
|
10088
10088
|
}[] | null | undefined;
|
|
10089
10089
|
isDefault?: boolean | null | undefined;
|
|
10090
|
-
combinationKey: string;
|
|
10091
10090
|
active: boolean;
|
|
10091
|
+
combinationKey: string;
|
|
10092
10092
|
selectionName: string[];
|
|
10093
10093
|
}[] | null | undefined;
|
|
10094
10094
|
name: string;
|
|
10095
|
+
id: string;
|
|
10095
10096
|
price: {
|
|
10096
10097
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10097
10098
|
amount: number;
|
|
10098
10099
|
precision: number;
|
|
10099
10100
|
};
|
|
10100
|
-
id: string;
|
|
10101
10101
|
}, {
|
|
10102
10102
|
name2?: string | null | undefined;
|
|
10103
10103
|
productId?: string | null | undefined;
|
|
@@ -10146,17 +10146,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10146
10146
|
};
|
|
10147
10147
|
}[] | null | undefined;
|
|
10148
10148
|
isDefault?: boolean | null | undefined;
|
|
10149
|
-
combinationKey: string;
|
|
10150
10149
|
active: boolean;
|
|
10150
|
+
combinationKey: string;
|
|
10151
10151
|
selectionName: string[];
|
|
10152
10152
|
}[] | null | undefined;
|
|
10153
10153
|
name: string;
|
|
10154
|
+
id: string;
|
|
10154
10155
|
price: {
|
|
10155
10156
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10156
10157
|
amount: number;
|
|
10157
10158
|
precision: number;
|
|
10158
10159
|
};
|
|
10159
|
-
id: string;
|
|
10160
10160
|
}>, "many">;
|
|
10161
10161
|
min: z.ZodNumber;
|
|
10162
10162
|
max: z.ZodNumber;
|
|
@@ -10167,10 +10167,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10167
10167
|
}, "strip", z.ZodTypeAny, {
|
|
10168
10168
|
priority?: string | number | null | undefined;
|
|
10169
10169
|
position?: number | null | undefined;
|
|
10170
|
-
|
|
10170
|
+
name: string;
|
|
10171
10171
|
max: number;
|
|
10172
|
+
min: number;
|
|
10172
10173
|
_id: string;
|
|
10173
|
-
name: string;
|
|
10174
10174
|
addons: {
|
|
10175
10175
|
name2?: string | null | undefined;
|
|
10176
10176
|
productId?: string | null | undefined;
|
|
@@ -10219,27 +10219,27 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10219
10219
|
};
|
|
10220
10220
|
}[] | null | undefined;
|
|
10221
10221
|
isDefault?: boolean | null | undefined;
|
|
10222
|
-
combinationKey: string;
|
|
10223
10222
|
active: boolean;
|
|
10223
|
+
combinationKey: string;
|
|
10224
10224
|
selectionName: string[];
|
|
10225
10225
|
}[] | null | undefined;
|
|
10226
10226
|
name: string;
|
|
10227
|
+
id: string;
|
|
10227
10228
|
price: {
|
|
10228
10229
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10229
10230
|
amount: number;
|
|
10230
10231
|
precision: number;
|
|
10231
10232
|
};
|
|
10232
|
-
id: string;
|
|
10233
10233
|
}[];
|
|
10234
10234
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
10235
10235
|
stackable: boolean;
|
|
10236
10236
|
}, {
|
|
10237
10237
|
priority?: string | number | null | undefined;
|
|
10238
10238
|
position?: number | null | undefined;
|
|
10239
|
-
|
|
10239
|
+
name: string;
|
|
10240
10240
|
max: number;
|
|
10241
|
+
min: number;
|
|
10241
10242
|
_id: string;
|
|
10242
|
-
name: string;
|
|
10243
10243
|
addons: {
|
|
10244
10244
|
name2?: string | null | undefined;
|
|
10245
10245
|
productId?: string | null | undefined;
|
|
@@ -10288,17 +10288,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10288
10288
|
};
|
|
10289
10289
|
}[] | null | undefined;
|
|
10290
10290
|
isDefault?: boolean | null | undefined;
|
|
10291
|
-
combinationKey: string;
|
|
10292
10291
|
active: boolean;
|
|
10292
|
+
combinationKey: string;
|
|
10293
10293
|
selectionName: string[];
|
|
10294
10294
|
}[] | null | undefined;
|
|
10295
10295
|
name: string;
|
|
10296
|
+
id: string;
|
|
10296
10297
|
price: {
|
|
10297
10298
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10298
10299
|
amount: number;
|
|
10299
10300
|
precision: number;
|
|
10300
10301
|
};
|
|
10301
|
-
id: string;
|
|
10302
10302
|
}[];
|
|
10303
10303
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
10304
10304
|
stackable: boolean;
|
|
@@ -10317,19 +10317,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10317
10317
|
id: string;
|
|
10318
10318
|
}>, "many">;
|
|
10319
10319
|
}, "strip", z.ZodTypeAny, {
|
|
10320
|
+
name: string;
|
|
10320
10321
|
options: {
|
|
10321
10322
|
name: string;
|
|
10322
10323
|
id: string;
|
|
10323
10324
|
}[];
|
|
10324
10325
|
_id: string;
|
|
10325
|
-
name: string;
|
|
10326
10326
|
}, {
|
|
10327
|
+
name: string;
|
|
10327
10328
|
options: {
|
|
10328
10329
|
name: string;
|
|
10329
10330
|
id: string;
|
|
10330
10331
|
}[];
|
|
10331
10332
|
_id: string;
|
|
10332
|
-
name: string;
|
|
10333
10333
|
}>, "many">;
|
|
10334
10334
|
takeaway: z.ZodArray<z.ZodObject<{
|
|
10335
10335
|
_id: z.ZodString;
|
|
@@ -10348,16 +10348,16 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10348
10348
|
precision: number;
|
|
10349
10349
|
}>;
|
|
10350
10350
|
}, "strip", z.ZodTypeAny, {
|
|
10351
|
-
_id: string;
|
|
10352
10351
|
name: string;
|
|
10352
|
+
_id: string;
|
|
10353
10353
|
price: {
|
|
10354
10354
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10355
10355
|
amount: number;
|
|
10356
10356
|
precision: number;
|
|
10357
10357
|
};
|
|
10358
10358
|
}, {
|
|
10359
|
-
_id: string;
|
|
10360
10359
|
name: string;
|
|
10360
|
+
_id: string;
|
|
10361
10361
|
price: {
|
|
10362
10362
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
10363
10363
|
amount: number;
|
|
@@ -10771,8 +10771,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10771
10771
|
inclusive: boolean;
|
|
10772
10772
|
systemCode: string;
|
|
10773
10773
|
}[] | null | undefined;
|
|
10774
|
-
_id: string;
|
|
10775
10774
|
name: string;
|
|
10775
|
+
_id: string;
|
|
10776
10776
|
productAvailable: string[];
|
|
10777
10777
|
override: {
|
|
10778
10778
|
product: Record<string, ({
|
|
@@ -10847,8 +10847,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10847
10847
|
inclusive: boolean;
|
|
10848
10848
|
systemCode: string;
|
|
10849
10849
|
}[] | null | undefined;
|
|
10850
|
-
_id: string;
|
|
10851
10850
|
name: string;
|
|
10851
|
+
_id: string;
|
|
10852
10852
|
productAvailable: string[];
|
|
10853
10853
|
override: {
|
|
10854
10854
|
product: Record<string, ({
|
|
@@ -10956,9 +10956,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10956
10956
|
};
|
|
10957
10957
|
}>, "many">;
|
|
10958
10958
|
}, "strip", z.ZodTypeAny, {
|
|
10959
|
+
name: string;
|
|
10959
10960
|
_id: string;
|
|
10960
10961
|
precision: number;
|
|
10961
|
-
name: string;
|
|
10962
10962
|
abbrev: string;
|
|
10963
10963
|
measurements: {
|
|
10964
10964
|
name: string;
|
|
@@ -10970,9 +10970,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
10970
10970
|
};
|
|
10971
10971
|
}[];
|
|
10972
10972
|
}, {
|
|
10973
|
+
name: string;
|
|
10973
10974
|
_id: string;
|
|
10974
10975
|
precision: number;
|
|
10975
|
-
name: string;
|
|
10976
10976
|
abbrev: string;
|
|
10977
10977
|
measurements: {
|
|
10978
10978
|
name: string;
|
|
@@ -11025,9 +11025,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11025
11025
|
};
|
|
11026
11026
|
}>, "many">;
|
|
11027
11027
|
}, "strip", z.ZodTypeAny, {
|
|
11028
|
+
name: string;
|
|
11028
11029
|
_id: string;
|
|
11029
11030
|
precision: number;
|
|
11030
|
-
name: string;
|
|
11031
11031
|
abbrev: string;
|
|
11032
11032
|
measurements: {
|
|
11033
11033
|
name: string;
|
|
@@ -11039,9 +11039,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11039
11039
|
};
|
|
11040
11040
|
}[];
|
|
11041
11041
|
}, {
|
|
11042
|
+
name: string;
|
|
11042
11043
|
_id: string;
|
|
11043
11044
|
precision: number;
|
|
11044
|
-
name: string;
|
|
11045
11045
|
abbrev: string;
|
|
11046
11046
|
measurements: {
|
|
11047
11047
|
name: string;
|
|
@@ -11194,13 +11194,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11194
11194
|
};
|
|
11195
11195
|
}[] | null | undefined;
|
|
11196
11196
|
} | null | undefined;
|
|
11197
|
-
code: string;
|
|
11198
|
-
_id: string;
|
|
11199
|
-
name: string;
|
|
11200
11197
|
unit: {
|
|
11198
|
+
name: string;
|
|
11201
11199
|
_id: string;
|
|
11202
11200
|
precision: number;
|
|
11203
|
-
name: string;
|
|
11204
11201
|
abbrev: string;
|
|
11205
11202
|
measurements: {
|
|
11206
11203
|
name: string;
|
|
@@ -11212,6 +11209,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11212
11209
|
};
|
|
11213
11210
|
}[];
|
|
11214
11211
|
};
|
|
11212
|
+
code: string;
|
|
11213
|
+
name: string;
|
|
11214
|
+
_id: string;
|
|
11215
11215
|
}, {
|
|
11216
11216
|
trackingMeasurement?: string | null | undefined;
|
|
11217
11217
|
convert?: {
|
|
@@ -11234,13 +11234,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11234
11234
|
};
|
|
11235
11235
|
}[] | null | undefined;
|
|
11236
11236
|
} | null | undefined;
|
|
11237
|
-
code: string;
|
|
11238
|
-
_id: string;
|
|
11239
|
-
name: string;
|
|
11240
11237
|
unit: {
|
|
11238
|
+
name: string;
|
|
11241
11239
|
_id: string;
|
|
11242
11240
|
precision: number;
|
|
11243
|
-
name: string;
|
|
11244
11241
|
abbrev: string;
|
|
11245
11242
|
measurements: {
|
|
11246
11243
|
name: string;
|
|
@@ -11252,6 +11249,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11252
11249
|
};
|
|
11253
11250
|
}[];
|
|
11254
11251
|
};
|
|
11252
|
+
code: string;
|
|
11253
|
+
name: string;
|
|
11254
|
+
_id: string;
|
|
11255
11255
|
}>, "many">>>;
|
|
11256
11256
|
recipe: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11257
11257
|
_id: z.ZodString;
|
|
@@ -11334,7 +11334,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11334
11334
|
};
|
|
11335
11335
|
}>, "many">;
|
|
11336
11336
|
}, "strip", z.ZodTypeAny, {
|
|
11337
|
-
_id: string;
|
|
11338
11337
|
name: string;
|
|
11339
11338
|
contains: {
|
|
11340
11339
|
measurement?: {
|
|
@@ -11353,8 +11352,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11353
11352
|
precision: number;
|
|
11354
11353
|
};
|
|
11355
11354
|
}[];
|
|
11356
|
-
}, {
|
|
11357
11355
|
_id: string;
|
|
11356
|
+
}, {
|
|
11358
11357
|
name: string;
|
|
11359
11358
|
contains: {
|
|
11360
11359
|
measurement?: {
|
|
@@ -11373,16 +11372,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11373
11372
|
precision: number;
|
|
11374
11373
|
};
|
|
11375
11374
|
}[];
|
|
11375
|
+
_id: string;
|
|
11376
11376
|
}>, "many">>>;
|
|
11377
11377
|
printDepartment: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11378
11378
|
_id: z.ZodString;
|
|
11379
11379
|
name: z.ZodString;
|
|
11380
11380
|
}, "strip", z.ZodTypeAny, {
|
|
11381
|
-
_id: string;
|
|
11382
11381
|
name: string;
|
|
11383
|
-
}, {
|
|
11384
11382
|
_id: string;
|
|
11383
|
+
}, {
|
|
11385
11384
|
name: string;
|
|
11385
|
+
_id: string;
|
|
11386
11386
|
}>, "many">>>;
|
|
11387
11387
|
cookingGuide: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11388
11388
|
_id: z.ZodString;
|
|
@@ -11429,8 +11429,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11429
11429
|
}[];
|
|
11430
11430
|
}>, "many">;
|
|
11431
11431
|
}, "strip", z.ZodTypeAny, {
|
|
11432
|
-
_id: string;
|
|
11433
11432
|
name: string;
|
|
11433
|
+
_id: string;
|
|
11434
11434
|
bindings: {
|
|
11435
11435
|
combinationKey?: string | null | undefined;
|
|
11436
11436
|
productId: string;
|
|
@@ -11445,8 +11445,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11445
11445
|
variables: Record<string, string>;
|
|
11446
11446
|
}[];
|
|
11447
11447
|
}, {
|
|
11448
|
-
_id: string;
|
|
11449
11448
|
name: string;
|
|
11449
|
+
_id: string;
|
|
11450
11450
|
bindings: {
|
|
11451
11451
|
combinationKey?: string | null | undefined;
|
|
11452
11452
|
productId: string;
|
|
@@ -11463,9 +11463,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11463
11463
|
}>, "many">>>;
|
|
11464
11464
|
}, "strip", z.ZodTypeAny, {
|
|
11465
11465
|
unit?: {
|
|
11466
|
+
name: string;
|
|
11466
11467
|
_id: string;
|
|
11467
11468
|
precision: number;
|
|
11468
|
-
name: string;
|
|
11469
11469
|
abbrev: string;
|
|
11470
11470
|
measurements: {
|
|
11471
11471
|
name: string;
|
|
@@ -11499,13 +11499,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11499
11499
|
};
|
|
11500
11500
|
}[] | null | undefined;
|
|
11501
11501
|
} | null | undefined;
|
|
11502
|
-
code: string;
|
|
11503
|
-
_id: string;
|
|
11504
|
-
name: string;
|
|
11505
11502
|
unit: {
|
|
11503
|
+
name: string;
|
|
11506
11504
|
_id: string;
|
|
11507
11505
|
precision: number;
|
|
11508
|
-
name: string;
|
|
11509
11506
|
abbrev: string;
|
|
11510
11507
|
measurements: {
|
|
11511
11508
|
name: string;
|
|
@@ -11517,14 +11514,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11517
11514
|
};
|
|
11518
11515
|
}[];
|
|
11519
11516
|
};
|
|
11517
|
+
code: string;
|
|
11518
|
+
name: string;
|
|
11519
|
+
_id: string;
|
|
11520
11520
|
}[] | null | undefined;
|
|
11521
11521
|
catalog?: {
|
|
11522
11522
|
inclusiveTaxes?: {
|
|
11523
11523
|
inclusive: boolean;
|
|
11524
11524
|
systemCode: string;
|
|
11525
11525
|
}[] | null | undefined;
|
|
11526
|
-
_id: string;
|
|
11527
11526
|
name: string;
|
|
11527
|
+
_id: string;
|
|
11528
11528
|
productAvailable: string[];
|
|
11529
11529
|
override: {
|
|
11530
11530
|
product: Record<string, ({
|
|
@@ -11596,7 +11596,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11596
11596
|
};
|
|
11597
11597
|
}[] | null | undefined;
|
|
11598
11598
|
recipe?: {
|
|
11599
|
-
_id: string;
|
|
11600
11599
|
name: string;
|
|
11601
11600
|
contains: {
|
|
11602
11601
|
measurement?: {
|
|
@@ -11615,10 +11614,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11615
11614
|
precision: number;
|
|
11616
11615
|
};
|
|
11617
11616
|
}[];
|
|
11617
|
+
_id: string;
|
|
11618
11618
|
}[] | null | undefined;
|
|
11619
11619
|
cookingGuide?: {
|
|
11620
|
-
_id: string;
|
|
11621
11620
|
name: string;
|
|
11621
|
+
_id: string;
|
|
11622
11622
|
bindings: {
|
|
11623
11623
|
combinationKey?: string | null | undefined;
|
|
11624
11624
|
productId: string;
|
|
@@ -11634,19 +11634,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11634
11634
|
}[];
|
|
11635
11635
|
}[] | null | undefined;
|
|
11636
11636
|
printDepartment?: {
|
|
11637
|
-
_id: string;
|
|
11638
11637
|
name: string;
|
|
11639
|
-
}[] | null | undefined;
|
|
11640
|
-
takeaway: {
|
|
11641
11638
|
_id: string;
|
|
11639
|
+
}[] | null | undefined;
|
|
11640
|
+
variant: {
|
|
11642
11641
|
name: string;
|
|
11643
|
-
|
|
11644
|
-
|
|
11645
|
-
|
|
11646
|
-
|
|
11647
|
-
|
|
11642
|
+
options: {
|
|
11643
|
+
name: string;
|
|
11644
|
+
id: string;
|
|
11645
|
+
}[];
|
|
11646
|
+
_id: string;
|
|
11648
11647
|
}[];
|
|
11649
11648
|
product: {
|
|
11649
|
+
unit?: string | null | undefined;
|
|
11650
11650
|
description?: string | null | undefined;
|
|
11651
11651
|
name2?: string | null | undefined;
|
|
11652
11652
|
noSst?: boolean | null | undefined;
|
|
@@ -11656,7 +11656,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11656
11656
|
systemCode: string;
|
|
11657
11657
|
taxCode: string;
|
|
11658
11658
|
}[] | null | undefined;
|
|
11659
|
-
unit?: string | null | undefined;
|
|
11660
11659
|
customAttributes?: Record<string, any> | null | undefined;
|
|
11661
11660
|
thumbnail?: string | null | undefined;
|
|
11662
11661
|
inventoryBindings?: {
|
|
@@ -11708,8 +11707,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11708
11707
|
schedulerUsed?: string | null | undefined;
|
|
11709
11708
|
printDepartments?: string[] | null | undefined;
|
|
11710
11709
|
code: string;
|
|
11711
|
-
_id: string;
|
|
11712
11710
|
name: string;
|
|
11711
|
+
_id: string;
|
|
11713
11712
|
price: {
|
|
11714
11713
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
11715
11714
|
amount: number;
|
|
@@ -11745,41 +11744,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11745
11744
|
};
|
|
11746
11745
|
}[] | null | undefined;
|
|
11747
11746
|
isDefault?: boolean | null | undefined;
|
|
11748
|
-
combinationKey: string;
|
|
11749
11747
|
active: boolean;
|
|
11748
|
+
combinationKey: string;
|
|
11750
11749
|
selectionName: string[];
|
|
11751
11750
|
}[];
|
|
11752
11751
|
}[];
|
|
11752
|
+
takeaway: {
|
|
11753
|
+
name: string;
|
|
11754
|
+
_id: string;
|
|
11755
|
+
price: {
|
|
11756
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
11757
|
+
amount: number;
|
|
11758
|
+
precision: number;
|
|
11759
|
+
};
|
|
11760
|
+
}[];
|
|
11753
11761
|
scheduler: {
|
|
11754
11762
|
repeat: "daily" | "weekly";
|
|
11755
|
-
_id: string;
|
|
11756
11763
|
name: string;
|
|
11764
|
+
_id: string;
|
|
11757
11765
|
timePeriod: {
|
|
11758
|
-
start: string;
|
|
11759
11766
|
end: string;
|
|
11767
|
+
start: string;
|
|
11760
11768
|
}[];
|
|
11761
11769
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
11762
11770
|
}[];
|
|
11763
11771
|
category: {
|
|
11764
11772
|
position?: number | null | undefined;
|
|
11765
|
-
_id: string;
|
|
11766
11773
|
name: string;
|
|
11767
|
-
}[];
|
|
11768
|
-
variant: {
|
|
11769
|
-
options: {
|
|
11770
|
-
name: string;
|
|
11771
|
-
id: string;
|
|
11772
|
-
}[];
|
|
11773
11774
|
_id: string;
|
|
11774
|
-
name: string;
|
|
11775
11775
|
}[];
|
|
11776
11776
|
addonGroup: {
|
|
11777
11777
|
priority?: string | number | null | undefined;
|
|
11778
11778
|
position?: number | null | undefined;
|
|
11779
|
-
|
|
11779
|
+
name: string;
|
|
11780
11780
|
max: number;
|
|
11781
|
+
min: number;
|
|
11781
11782
|
_id: string;
|
|
11782
|
-
name: string;
|
|
11783
11783
|
addons: {
|
|
11784
11784
|
name2?: string | null | undefined;
|
|
11785
11785
|
productId?: string | null | undefined;
|
|
@@ -11828,26 +11828,26 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11828
11828
|
};
|
|
11829
11829
|
}[] | null | undefined;
|
|
11830
11830
|
isDefault?: boolean | null | undefined;
|
|
11831
|
-
combinationKey: string;
|
|
11832
11831
|
active: boolean;
|
|
11832
|
+
combinationKey: string;
|
|
11833
11833
|
selectionName: string[];
|
|
11834
11834
|
}[] | null | undefined;
|
|
11835
11835
|
name: string;
|
|
11836
|
+
id: string;
|
|
11836
11837
|
price: {
|
|
11837
11838
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
11838
11839
|
amount: number;
|
|
11839
11840
|
precision: number;
|
|
11840
11841
|
};
|
|
11841
|
-
id: string;
|
|
11842
11842
|
}[];
|
|
11843
11843
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
11844
11844
|
stackable: boolean;
|
|
11845
11845
|
}[];
|
|
11846
11846
|
}, {
|
|
11847
11847
|
unit?: {
|
|
11848
|
+
name: string;
|
|
11848
11849
|
_id: string;
|
|
11849
11850
|
precision: number;
|
|
11850
|
-
name: string;
|
|
11851
11851
|
abbrev: string;
|
|
11852
11852
|
measurements: {
|
|
11853
11853
|
name: string;
|
|
@@ -11881,13 +11881,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11881
11881
|
};
|
|
11882
11882
|
}[] | null | undefined;
|
|
11883
11883
|
} | null | undefined;
|
|
11884
|
-
code: string;
|
|
11885
|
-
_id: string;
|
|
11886
|
-
name: string;
|
|
11887
11884
|
unit: {
|
|
11885
|
+
name: string;
|
|
11888
11886
|
_id: string;
|
|
11889
11887
|
precision: number;
|
|
11890
|
-
name: string;
|
|
11891
11888
|
abbrev: string;
|
|
11892
11889
|
measurements: {
|
|
11893
11890
|
name: string;
|
|
@@ -11899,14 +11896,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11899
11896
|
};
|
|
11900
11897
|
}[];
|
|
11901
11898
|
};
|
|
11899
|
+
code: string;
|
|
11900
|
+
name: string;
|
|
11901
|
+
_id: string;
|
|
11902
11902
|
}[] | null | undefined;
|
|
11903
11903
|
catalog?: {
|
|
11904
11904
|
inclusiveTaxes?: {
|
|
11905
11905
|
inclusive: boolean;
|
|
11906
11906
|
systemCode: string;
|
|
11907
11907
|
}[] | null | undefined;
|
|
11908
|
-
_id: string;
|
|
11909
11908
|
name: string;
|
|
11909
|
+
_id: string;
|
|
11910
11910
|
productAvailable: string[];
|
|
11911
11911
|
override: {
|
|
11912
11912
|
product: Record<string, ({
|
|
@@ -11978,7 +11978,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11978
11978
|
};
|
|
11979
11979
|
}[] | null | undefined;
|
|
11980
11980
|
recipe?: {
|
|
11981
|
-
_id: string;
|
|
11982
11981
|
name: string;
|
|
11983
11982
|
contains: {
|
|
11984
11983
|
measurement?: {
|
|
@@ -11997,10 +11996,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
11997
11996
|
precision: number;
|
|
11998
11997
|
};
|
|
11999
11998
|
}[];
|
|
11999
|
+
_id: string;
|
|
12000
12000
|
}[] | null | undefined;
|
|
12001
12001
|
cookingGuide?: {
|
|
12002
|
-
_id: string;
|
|
12003
12002
|
name: string;
|
|
12003
|
+
_id: string;
|
|
12004
12004
|
bindings: {
|
|
12005
12005
|
combinationKey?: string | null | undefined;
|
|
12006
12006
|
productId: string;
|
|
@@ -12016,19 +12016,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12016
12016
|
}[];
|
|
12017
12017
|
}[] | null | undefined;
|
|
12018
12018
|
printDepartment?: {
|
|
12019
|
-
_id: string;
|
|
12020
12019
|
name: string;
|
|
12021
|
-
}[] | null | undefined;
|
|
12022
|
-
takeaway: {
|
|
12023
12020
|
_id: string;
|
|
12021
|
+
}[] | null | undefined;
|
|
12022
|
+
variant: {
|
|
12024
12023
|
name: string;
|
|
12025
|
-
|
|
12026
|
-
|
|
12027
|
-
|
|
12028
|
-
|
|
12029
|
-
|
|
12024
|
+
options: {
|
|
12025
|
+
name: string;
|
|
12026
|
+
id: string;
|
|
12027
|
+
}[];
|
|
12028
|
+
_id: string;
|
|
12030
12029
|
}[];
|
|
12031
12030
|
product: {
|
|
12031
|
+
unit?: string | null | undefined;
|
|
12032
12032
|
description?: string | null | undefined;
|
|
12033
12033
|
name2?: string | null | undefined;
|
|
12034
12034
|
noSst?: boolean | null | undefined;
|
|
@@ -12038,7 +12038,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12038
12038
|
systemCode: string;
|
|
12039
12039
|
taxCode: string;
|
|
12040
12040
|
}[] | null | undefined;
|
|
12041
|
-
unit?: string | null | undefined;
|
|
12042
12041
|
customAttributes?: Record<string, any> | null | undefined;
|
|
12043
12042
|
thumbnail?: string | null | undefined;
|
|
12044
12043
|
inventoryBindings?: {
|
|
@@ -12090,8 +12089,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12090
12089
|
schedulerUsed?: string | null | undefined;
|
|
12091
12090
|
printDepartments?: string[] | null | undefined;
|
|
12092
12091
|
code: string;
|
|
12093
|
-
_id: string;
|
|
12094
12092
|
name: string;
|
|
12093
|
+
_id: string;
|
|
12095
12094
|
price: {
|
|
12096
12095
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12097
12096
|
amount: number;
|
|
@@ -12127,41 +12126,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12127
12126
|
};
|
|
12128
12127
|
}[] | null | undefined;
|
|
12129
12128
|
isDefault?: boolean | null | undefined;
|
|
12130
|
-
combinationKey: string;
|
|
12131
12129
|
active: boolean;
|
|
12130
|
+
combinationKey: string;
|
|
12132
12131
|
selectionName: string[];
|
|
12133
12132
|
}[];
|
|
12134
12133
|
}[];
|
|
12134
|
+
takeaway: {
|
|
12135
|
+
name: string;
|
|
12136
|
+
_id: string;
|
|
12137
|
+
price: {
|
|
12138
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12139
|
+
amount: number;
|
|
12140
|
+
precision: number;
|
|
12141
|
+
};
|
|
12142
|
+
}[];
|
|
12135
12143
|
scheduler: {
|
|
12136
12144
|
repeat: "daily" | "weekly";
|
|
12137
|
-
_id: string;
|
|
12138
12145
|
name: string;
|
|
12146
|
+
_id: string;
|
|
12139
12147
|
timePeriod: {
|
|
12140
|
-
start: string;
|
|
12141
12148
|
end: string;
|
|
12149
|
+
start: string;
|
|
12142
12150
|
}[];
|
|
12143
12151
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
12144
12152
|
}[];
|
|
12145
12153
|
category: {
|
|
12146
12154
|
position?: number | null | undefined;
|
|
12147
|
-
_id: string;
|
|
12148
12155
|
name: string;
|
|
12149
|
-
}[];
|
|
12150
|
-
variant: {
|
|
12151
|
-
options: {
|
|
12152
|
-
name: string;
|
|
12153
|
-
id: string;
|
|
12154
|
-
}[];
|
|
12155
12156
|
_id: string;
|
|
12156
|
-
name: string;
|
|
12157
12157
|
}[];
|
|
12158
12158
|
addonGroup: {
|
|
12159
12159
|
priority?: string | number | null | undefined;
|
|
12160
12160
|
position?: number | null | undefined;
|
|
12161
|
-
|
|
12161
|
+
name: string;
|
|
12162
12162
|
max: number;
|
|
12163
|
+
min: number;
|
|
12163
12164
|
_id: string;
|
|
12164
|
-
name: string;
|
|
12165
12165
|
addons: {
|
|
12166
12166
|
name2?: string | null | undefined;
|
|
12167
12167
|
productId?: string | null | undefined;
|
|
@@ -12210,17 +12210,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12210
12210
|
};
|
|
12211
12211
|
}[] | null | undefined;
|
|
12212
12212
|
isDefault?: boolean | null | undefined;
|
|
12213
|
-
combinationKey: string;
|
|
12214
12213
|
active: boolean;
|
|
12214
|
+
combinationKey: string;
|
|
12215
12215
|
selectionName: string[];
|
|
12216
12216
|
}[] | null | undefined;
|
|
12217
12217
|
name: string;
|
|
12218
|
+
id: string;
|
|
12218
12219
|
price: {
|
|
12219
12220
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12220
12221
|
amount: number;
|
|
12221
12222
|
precision: number;
|
|
12222
12223
|
};
|
|
12223
|
-
id: string;
|
|
12224
12224
|
}[];
|
|
12225
12225
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
12226
12226
|
stackable: boolean;
|
|
@@ -12262,9 +12262,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12262
12262
|
_id: string;
|
|
12263
12263
|
subModule: {
|
|
12264
12264
|
unit?: {
|
|
12265
|
+
name: string;
|
|
12265
12266
|
_id: string;
|
|
12266
12267
|
precision: number;
|
|
12267
|
-
name: string;
|
|
12268
12268
|
abbrev: string;
|
|
12269
12269
|
measurements: {
|
|
12270
12270
|
name: string;
|
|
@@ -12298,13 +12298,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12298
12298
|
};
|
|
12299
12299
|
}[] | null | undefined;
|
|
12300
12300
|
} | null | undefined;
|
|
12301
|
-
code: string;
|
|
12302
|
-
_id: string;
|
|
12303
|
-
name: string;
|
|
12304
12301
|
unit: {
|
|
12302
|
+
name: string;
|
|
12305
12303
|
_id: string;
|
|
12306
12304
|
precision: number;
|
|
12307
|
-
name: string;
|
|
12308
12305
|
abbrev: string;
|
|
12309
12306
|
measurements: {
|
|
12310
12307
|
name: string;
|
|
@@ -12316,14 +12313,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12316
12313
|
};
|
|
12317
12314
|
}[];
|
|
12318
12315
|
};
|
|
12316
|
+
code: string;
|
|
12317
|
+
name: string;
|
|
12318
|
+
_id: string;
|
|
12319
12319
|
}[] | null | undefined;
|
|
12320
12320
|
catalog?: {
|
|
12321
12321
|
inclusiveTaxes?: {
|
|
12322
12322
|
inclusive: boolean;
|
|
12323
12323
|
systemCode: string;
|
|
12324
12324
|
}[] | null | undefined;
|
|
12325
|
-
_id: string;
|
|
12326
12325
|
name: string;
|
|
12326
|
+
_id: string;
|
|
12327
12327
|
productAvailable: string[];
|
|
12328
12328
|
override: {
|
|
12329
12329
|
product: Record<string, ({
|
|
@@ -12395,7 +12395,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12395
12395
|
};
|
|
12396
12396
|
}[] | null | undefined;
|
|
12397
12397
|
recipe?: {
|
|
12398
|
-
_id: string;
|
|
12399
12398
|
name: string;
|
|
12400
12399
|
contains: {
|
|
12401
12400
|
measurement?: {
|
|
@@ -12414,10 +12413,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12414
12413
|
precision: number;
|
|
12415
12414
|
};
|
|
12416
12415
|
}[];
|
|
12416
|
+
_id: string;
|
|
12417
12417
|
}[] | null | undefined;
|
|
12418
12418
|
cookingGuide?: {
|
|
12419
|
-
_id: string;
|
|
12420
12419
|
name: string;
|
|
12420
|
+
_id: string;
|
|
12421
12421
|
bindings: {
|
|
12422
12422
|
combinationKey?: string | null | undefined;
|
|
12423
12423
|
productId: string;
|
|
@@ -12433,19 +12433,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12433
12433
|
}[];
|
|
12434
12434
|
}[] | null | undefined;
|
|
12435
12435
|
printDepartment?: {
|
|
12436
|
-
_id: string;
|
|
12437
12436
|
name: string;
|
|
12438
|
-
}[] | null | undefined;
|
|
12439
|
-
takeaway: {
|
|
12440
12437
|
_id: string;
|
|
12438
|
+
}[] | null | undefined;
|
|
12439
|
+
variant: {
|
|
12441
12440
|
name: string;
|
|
12442
|
-
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
|
|
12441
|
+
options: {
|
|
12442
|
+
name: string;
|
|
12443
|
+
id: string;
|
|
12444
|
+
}[];
|
|
12445
|
+
_id: string;
|
|
12447
12446
|
}[];
|
|
12448
12447
|
product: {
|
|
12448
|
+
unit?: string | null | undefined;
|
|
12449
12449
|
description?: string | null | undefined;
|
|
12450
12450
|
name2?: string | null | undefined;
|
|
12451
12451
|
noSst?: boolean | null | undefined;
|
|
@@ -12455,7 +12455,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12455
12455
|
systemCode: string;
|
|
12456
12456
|
taxCode: string;
|
|
12457
12457
|
}[] | null | undefined;
|
|
12458
|
-
unit?: string | null | undefined;
|
|
12459
12458
|
customAttributes?: Record<string, any> | null | undefined;
|
|
12460
12459
|
thumbnail?: string | null | undefined;
|
|
12461
12460
|
inventoryBindings?: {
|
|
@@ -12507,8 +12506,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12507
12506
|
schedulerUsed?: string | null | undefined;
|
|
12508
12507
|
printDepartments?: string[] | null | undefined;
|
|
12509
12508
|
code: string;
|
|
12510
|
-
_id: string;
|
|
12511
12509
|
name: string;
|
|
12510
|
+
_id: string;
|
|
12512
12511
|
price: {
|
|
12513
12512
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12514
12513
|
amount: number;
|
|
@@ -12544,41 +12543,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12544
12543
|
};
|
|
12545
12544
|
}[] | null | undefined;
|
|
12546
12545
|
isDefault?: boolean | null | undefined;
|
|
12547
|
-
combinationKey: string;
|
|
12548
12546
|
active: boolean;
|
|
12547
|
+
combinationKey: string;
|
|
12549
12548
|
selectionName: string[];
|
|
12550
12549
|
}[];
|
|
12551
12550
|
}[];
|
|
12551
|
+
takeaway: {
|
|
12552
|
+
name: string;
|
|
12553
|
+
_id: string;
|
|
12554
|
+
price: {
|
|
12555
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12556
|
+
amount: number;
|
|
12557
|
+
precision: number;
|
|
12558
|
+
};
|
|
12559
|
+
}[];
|
|
12552
12560
|
scheduler: {
|
|
12553
12561
|
repeat: "daily" | "weekly";
|
|
12554
|
-
_id: string;
|
|
12555
12562
|
name: string;
|
|
12563
|
+
_id: string;
|
|
12556
12564
|
timePeriod: {
|
|
12557
|
-
start: string;
|
|
12558
12565
|
end: string;
|
|
12566
|
+
start: string;
|
|
12559
12567
|
}[];
|
|
12560
12568
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
12561
12569
|
}[];
|
|
12562
12570
|
category: {
|
|
12563
12571
|
position?: number | null | undefined;
|
|
12564
|
-
_id: string;
|
|
12565
12572
|
name: string;
|
|
12566
|
-
}[];
|
|
12567
|
-
variant: {
|
|
12568
|
-
options: {
|
|
12569
|
-
name: string;
|
|
12570
|
-
id: string;
|
|
12571
|
-
}[];
|
|
12572
12573
|
_id: string;
|
|
12573
|
-
name: string;
|
|
12574
12574
|
}[];
|
|
12575
12575
|
addonGroup: {
|
|
12576
12576
|
priority?: string | number | null | undefined;
|
|
12577
12577
|
position?: number | null | undefined;
|
|
12578
|
-
|
|
12578
|
+
name: string;
|
|
12579
12579
|
max: number;
|
|
12580
|
+
min: number;
|
|
12580
12581
|
_id: string;
|
|
12581
|
-
name: string;
|
|
12582
12582
|
addons: {
|
|
12583
12583
|
name2?: string | null | undefined;
|
|
12584
12584
|
productId?: string | null | undefined;
|
|
@@ -12627,17 +12627,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12627
12627
|
};
|
|
12628
12628
|
}[] | null | undefined;
|
|
12629
12629
|
isDefault?: boolean | null | undefined;
|
|
12630
|
-
combinationKey: string;
|
|
12631
12630
|
active: boolean;
|
|
12631
|
+
combinationKey: string;
|
|
12632
12632
|
selectionName: string[];
|
|
12633
12633
|
}[] | null | undefined;
|
|
12634
12634
|
name: string;
|
|
12635
|
+
id: string;
|
|
12635
12636
|
price: {
|
|
12636
12637
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12637
12638
|
amount: number;
|
|
12638
12639
|
precision: number;
|
|
12639
12640
|
};
|
|
12640
|
-
id: string;
|
|
12641
12641
|
}[];
|
|
12642
12642
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
12643
12643
|
stackable: boolean;
|
|
@@ -12655,9 +12655,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12655
12655
|
_id: string;
|
|
12656
12656
|
subModule: {
|
|
12657
12657
|
unit?: {
|
|
12658
|
+
name: string;
|
|
12658
12659
|
_id: string;
|
|
12659
12660
|
precision: number;
|
|
12660
|
-
name: string;
|
|
12661
12661
|
abbrev: string;
|
|
12662
12662
|
measurements: {
|
|
12663
12663
|
name: string;
|
|
@@ -12691,13 +12691,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12691
12691
|
};
|
|
12692
12692
|
}[] | null | undefined;
|
|
12693
12693
|
} | null | undefined;
|
|
12694
|
-
code: string;
|
|
12695
|
-
_id: string;
|
|
12696
|
-
name: string;
|
|
12697
12694
|
unit: {
|
|
12695
|
+
name: string;
|
|
12698
12696
|
_id: string;
|
|
12699
12697
|
precision: number;
|
|
12700
|
-
name: string;
|
|
12701
12698
|
abbrev: string;
|
|
12702
12699
|
measurements: {
|
|
12703
12700
|
name: string;
|
|
@@ -12709,14 +12706,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12709
12706
|
};
|
|
12710
12707
|
}[];
|
|
12711
12708
|
};
|
|
12709
|
+
code: string;
|
|
12710
|
+
name: string;
|
|
12711
|
+
_id: string;
|
|
12712
12712
|
}[] | null | undefined;
|
|
12713
12713
|
catalog?: {
|
|
12714
12714
|
inclusiveTaxes?: {
|
|
12715
12715
|
inclusive: boolean;
|
|
12716
12716
|
systemCode: string;
|
|
12717
12717
|
}[] | null | undefined;
|
|
12718
|
-
_id: string;
|
|
12719
12718
|
name: string;
|
|
12719
|
+
_id: string;
|
|
12720
12720
|
productAvailable: string[];
|
|
12721
12721
|
override: {
|
|
12722
12722
|
product: Record<string, ({
|
|
@@ -12788,7 +12788,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12788
12788
|
};
|
|
12789
12789
|
}[] | null | undefined;
|
|
12790
12790
|
recipe?: {
|
|
12791
|
-
_id: string;
|
|
12792
12791
|
name: string;
|
|
12793
12792
|
contains: {
|
|
12794
12793
|
measurement?: {
|
|
@@ -12807,10 +12806,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12807
12806
|
precision: number;
|
|
12808
12807
|
};
|
|
12809
12808
|
}[];
|
|
12809
|
+
_id: string;
|
|
12810
12810
|
}[] | null | undefined;
|
|
12811
12811
|
cookingGuide?: {
|
|
12812
|
-
_id: string;
|
|
12813
12812
|
name: string;
|
|
12813
|
+
_id: string;
|
|
12814
12814
|
bindings: {
|
|
12815
12815
|
combinationKey?: string | null | undefined;
|
|
12816
12816
|
productId: string;
|
|
@@ -12826,19 +12826,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12826
12826
|
}[];
|
|
12827
12827
|
}[] | null | undefined;
|
|
12828
12828
|
printDepartment?: {
|
|
12829
|
-
_id: string;
|
|
12830
12829
|
name: string;
|
|
12831
|
-
}[] | null | undefined;
|
|
12832
|
-
takeaway: {
|
|
12833
12830
|
_id: string;
|
|
12831
|
+
}[] | null | undefined;
|
|
12832
|
+
variant: {
|
|
12834
12833
|
name: string;
|
|
12835
|
-
|
|
12836
|
-
|
|
12837
|
-
|
|
12838
|
-
|
|
12839
|
-
|
|
12834
|
+
options: {
|
|
12835
|
+
name: string;
|
|
12836
|
+
id: string;
|
|
12837
|
+
}[];
|
|
12838
|
+
_id: string;
|
|
12840
12839
|
}[];
|
|
12841
12840
|
product: {
|
|
12841
|
+
unit?: string | null | undefined;
|
|
12842
12842
|
description?: string | null | undefined;
|
|
12843
12843
|
name2?: string | null | undefined;
|
|
12844
12844
|
noSst?: boolean | null | undefined;
|
|
@@ -12848,7 +12848,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12848
12848
|
systemCode: string;
|
|
12849
12849
|
taxCode: string;
|
|
12850
12850
|
}[] | null | undefined;
|
|
12851
|
-
unit?: string | null | undefined;
|
|
12852
12851
|
customAttributes?: Record<string, any> | null | undefined;
|
|
12853
12852
|
thumbnail?: string | null | undefined;
|
|
12854
12853
|
inventoryBindings?: {
|
|
@@ -12900,8 +12899,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12900
12899
|
schedulerUsed?: string | null | undefined;
|
|
12901
12900
|
printDepartments?: string[] | null | undefined;
|
|
12902
12901
|
code: string;
|
|
12903
|
-
_id: string;
|
|
12904
12902
|
name: string;
|
|
12903
|
+
_id: string;
|
|
12905
12904
|
price: {
|
|
12906
12905
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12907
12906
|
amount: number;
|
|
@@ -12937,41 +12936,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
12937
12936
|
};
|
|
12938
12937
|
}[] | null | undefined;
|
|
12939
12938
|
isDefault?: boolean | null | undefined;
|
|
12940
|
-
combinationKey: string;
|
|
12941
12939
|
active: boolean;
|
|
12940
|
+
combinationKey: string;
|
|
12942
12941
|
selectionName: string[];
|
|
12943
12942
|
}[];
|
|
12944
12943
|
}[];
|
|
12944
|
+
takeaway: {
|
|
12945
|
+
name: string;
|
|
12946
|
+
_id: string;
|
|
12947
|
+
price: {
|
|
12948
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
12949
|
+
amount: number;
|
|
12950
|
+
precision: number;
|
|
12951
|
+
};
|
|
12952
|
+
}[];
|
|
12945
12953
|
scheduler: {
|
|
12946
12954
|
repeat: "daily" | "weekly";
|
|
12947
|
-
_id: string;
|
|
12948
12955
|
name: string;
|
|
12956
|
+
_id: string;
|
|
12949
12957
|
timePeriod: {
|
|
12950
|
-
start: string;
|
|
12951
12958
|
end: string;
|
|
12959
|
+
start: string;
|
|
12952
12960
|
}[];
|
|
12953
12961
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
12954
12962
|
}[];
|
|
12955
12963
|
category: {
|
|
12956
12964
|
position?: number | null | undefined;
|
|
12957
|
-
_id: string;
|
|
12958
12965
|
name: string;
|
|
12959
|
-
}[];
|
|
12960
|
-
variant: {
|
|
12961
|
-
options: {
|
|
12962
|
-
name: string;
|
|
12963
|
-
id: string;
|
|
12964
|
-
}[];
|
|
12965
12966
|
_id: string;
|
|
12966
|
-
name: string;
|
|
12967
12967
|
}[];
|
|
12968
12968
|
addonGroup: {
|
|
12969
12969
|
priority?: string | number | null | undefined;
|
|
12970
12970
|
position?: number | null | undefined;
|
|
12971
|
-
|
|
12971
|
+
name: string;
|
|
12972
12972
|
max: number;
|
|
12973
|
+
min: number;
|
|
12973
12974
|
_id: string;
|
|
12974
|
-
name: string;
|
|
12975
12975
|
addons: {
|
|
12976
12976
|
name2?: string | null | undefined;
|
|
12977
12977
|
productId?: string | null | undefined;
|
|
@@ -13020,17 +13020,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13020
13020
|
};
|
|
13021
13021
|
}[] | null | undefined;
|
|
13022
13022
|
isDefault?: boolean | null | undefined;
|
|
13023
|
-
combinationKey: string;
|
|
13024
13023
|
active: boolean;
|
|
13024
|
+
combinationKey: string;
|
|
13025
13025
|
selectionName: string[];
|
|
13026
13026
|
}[] | null | undefined;
|
|
13027
13027
|
name: string;
|
|
13028
|
+
id: string;
|
|
13028
13029
|
price: {
|
|
13029
13030
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
13030
13031
|
amount: number;
|
|
13031
13032
|
precision: number;
|
|
13032
13033
|
};
|
|
13033
|
-
id: string;
|
|
13034
13034
|
}[];
|
|
13035
13035
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
13036
13036
|
stackable: boolean;
|
|
@@ -13678,9 +13678,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13678
13678
|
_id: string;
|
|
13679
13679
|
subModule: {
|
|
13680
13680
|
unit?: {
|
|
13681
|
+
name: string;
|
|
13681
13682
|
_id: string;
|
|
13682
13683
|
precision: number;
|
|
13683
|
-
name: string;
|
|
13684
13684
|
abbrev: string;
|
|
13685
13685
|
measurements: {
|
|
13686
13686
|
name: string;
|
|
@@ -13714,13 +13714,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13714
13714
|
};
|
|
13715
13715
|
}[] | null | undefined;
|
|
13716
13716
|
} | null | undefined;
|
|
13717
|
-
code: string;
|
|
13718
|
-
_id: string;
|
|
13719
|
-
name: string;
|
|
13720
13717
|
unit: {
|
|
13718
|
+
name: string;
|
|
13721
13719
|
_id: string;
|
|
13722
13720
|
precision: number;
|
|
13723
|
-
name: string;
|
|
13724
13721
|
abbrev: string;
|
|
13725
13722
|
measurements: {
|
|
13726
13723
|
name: string;
|
|
@@ -13732,14 +13729,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13732
13729
|
};
|
|
13733
13730
|
}[];
|
|
13734
13731
|
};
|
|
13732
|
+
code: string;
|
|
13733
|
+
name: string;
|
|
13734
|
+
_id: string;
|
|
13735
13735
|
}[] | null | undefined;
|
|
13736
13736
|
catalog?: {
|
|
13737
13737
|
inclusiveTaxes?: {
|
|
13738
13738
|
inclusive: boolean;
|
|
13739
13739
|
systemCode: string;
|
|
13740
13740
|
}[] | null | undefined;
|
|
13741
|
-
_id: string;
|
|
13742
13741
|
name: string;
|
|
13742
|
+
_id: string;
|
|
13743
13743
|
productAvailable: string[];
|
|
13744
13744
|
override: {
|
|
13745
13745
|
product: Record<string, ({
|
|
@@ -13811,7 +13811,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13811
13811
|
};
|
|
13812
13812
|
}[] | null | undefined;
|
|
13813
13813
|
recipe?: {
|
|
13814
|
-
_id: string;
|
|
13815
13814
|
name: string;
|
|
13816
13815
|
contains: {
|
|
13817
13816
|
measurement?: {
|
|
@@ -13830,10 +13829,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13830
13829
|
precision: number;
|
|
13831
13830
|
};
|
|
13832
13831
|
}[];
|
|
13832
|
+
_id: string;
|
|
13833
13833
|
}[] | null | undefined;
|
|
13834
13834
|
cookingGuide?: {
|
|
13835
|
-
_id: string;
|
|
13836
13835
|
name: string;
|
|
13836
|
+
_id: string;
|
|
13837
13837
|
bindings: {
|
|
13838
13838
|
combinationKey?: string | null | undefined;
|
|
13839
13839
|
productId: string;
|
|
@@ -13849,19 +13849,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13849
13849
|
}[];
|
|
13850
13850
|
}[] | null | undefined;
|
|
13851
13851
|
printDepartment?: {
|
|
13852
|
-
_id: string;
|
|
13853
13852
|
name: string;
|
|
13854
|
-
}[] | null | undefined;
|
|
13855
|
-
takeaway: {
|
|
13856
13853
|
_id: string;
|
|
13854
|
+
}[] | null | undefined;
|
|
13855
|
+
variant: {
|
|
13857
13856
|
name: string;
|
|
13858
|
-
|
|
13859
|
-
|
|
13860
|
-
|
|
13861
|
-
|
|
13862
|
-
|
|
13857
|
+
options: {
|
|
13858
|
+
name: string;
|
|
13859
|
+
id: string;
|
|
13860
|
+
}[];
|
|
13861
|
+
_id: string;
|
|
13863
13862
|
}[];
|
|
13864
13863
|
product: {
|
|
13864
|
+
unit?: string | null | undefined;
|
|
13865
13865
|
description?: string | null | undefined;
|
|
13866
13866
|
name2?: string | null | undefined;
|
|
13867
13867
|
noSst?: boolean | null | undefined;
|
|
@@ -13871,7 +13871,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13871
13871
|
systemCode: string;
|
|
13872
13872
|
taxCode: string;
|
|
13873
13873
|
}[] | null | undefined;
|
|
13874
|
-
unit?: string | null | undefined;
|
|
13875
13874
|
customAttributes?: Record<string, any> | null | undefined;
|
|
13876
13875
|
thumbnail?: string | null | undefined;
|
|
13877
13876
|
inventoryBindings?: {
|
|
@@ -13923,8 +13922,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13923
13922
|
schedulerUsed?: string | null | undefined;
|
|
13924
13923
|
printDepartments?: string[] | null | undefined;
|
|
13925
13924
|
code: string;
|
|
13926
|
-
_id: string;
|
|
13927
13925
|
name: string;
|
|
13926
|
+
_id: string;
|
|
13928
13927
|
price: {
|
|
13929
13928
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
13930
13929
|
amount: number;
|
|
@@ -13960,41 +13959,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
13960
13959
|
};
|
|
13961
13960
|
}[] | null | undefined;
|
|
13962
13961
|
isDefault?: boolean | null | undefined;
|
|
13963
|
-
combinationKey: string;
|
|
13964
13962
|
active: boolean;
|
|
13963
|
+
combinationKey: string;
|
|
13965
13964
|
selectionName: string[];
|
|
13966
13965
|
}[];
|
|
13967
13966
|
}[];
|
|
13967
|
+
takeaway: {
|
|
13968
|
+
name: string;
|
|
13969
|
+
_id: string;
|
|
13970
|
+
price: {
|
|
13971
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
13972
|
+
amount: number;
|
|
13973
|
+
precision: number;
|
|
13974
|
+
};
|
|
13975
|
+
}[];
|
|
13968
13976
|
scheduler: {
|
|
13969
13977
|
repeat: "daily" | "weekly";
|
|
13970
|
-
_id: string;
|
|
13971
13978
|
name: string;
|
|
13979
|
+
_id: string;
|
|
13972
13980
|
timePeriod: {
|
|
13973
|
-
start: string;
|
|
13974
13981
|
end: string;
|
|
13982
|
+
start: string;
|
|
13975
13983
|
}[];
|
|
13976
13984
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
13977
13985
|
}[];
|
|
13978
13986
|
category: {
|
|
13979
13987
|
position?: number | null | undefined;
|
|
13980
|
-
_id: string;
|
|
13981
13988
|
name: string;
|
|
13982
|
-
}[];
|
|
13983
|
-
variant: {
|
|
13984
|
-
options: {
|
|
13985
|
-
name: string;
|
|
13986
|
-
id: string;
|
|
13987
|
-
}[];
|
|
13988
13989
|
_id: string;
|
|
13989
|
-
name: string;
|
|
13990
13990
|
}[];
|
|
13991
13991
|
addonGroup: {
|
|
13992
13992
|
priority?: string | number | null | undefined;
|
|
13993
13993
|
position?: number | null | undefined;
|
|
13994
|
-
|
|
13994
|
+
name: string;
|
|
13995
13995
|
max: number;
|
|
13996
|
+
min: number;
|
|
13996
13997
|
_id: string;
|
|
13997
|
-
name: string;
|
|
13998
13998
|
addons: {
|
|
13999
13999
|
name2?: string | null | undefined;
|
|
14000
14000
|
productId?: string | null | undefined;
|
|
@@ -14043,17 +14043,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14043
14043
|
};
|
|
14044
14044
|
}[] | null | undefined;
|
|
14045
14045
|
isDefault?: boolean | null | undefined;
|
|
14046
|
-
combinationKey: string;
|
|
14047
14046
|
active: boolean;
|
|
14047
|
+
combinationKey: string;
|
|
14048
14048
|
selectionName: string[];
|
|
14049
14049
|
}[] | null | undefined;
|
|
14050
14050
|
name: string;
|
|
14051
|
+
id: string;
|
|
14051
14052
|
price: {
|
|
14052
14053
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14053
14054
|
amount: number;
|
|
14054
14055
|
precision: number;
|
|
14055
14056
|
};
|
|
14056
|
-
id: string;
|
|
14057
14057
|
}[];
|
|
14058
14058
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
14059
14059
|
stackable: boolean;
|
|
@@ -14150,9 +14150,9 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14150
14150
|
_id: string;
|
|
14151
14151
|
subModule: {
|
|
14152
14152
|
unit?: {
|
|
14153
|
+
name: string;
|
|
14153
14154
|
_id: string;
|
|
14154
14155
|
precision: number;
|
|
14155
|
-
name: string;
|
|
14156
14156
|
abbrev: string;
|
|
14157
14157
|
measurements: {
|
|
14158
14158
|
name: string;
|
|
@@ -14186,13 +14186,10 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14186
14186
|
};
|
|
14187
14187
|
}[] | null | undefined;
|
|
14188
14188
|
} | null | undefined;
|
|
14189
|
-
code: string;
|
|
14190
|
-
_id: string;
|
|
14191
|
-
name: string;
|
|
14192
14189
|
unit: {
|
|
14190
|
+
name: string;
|
|
14193
14191
|
_id: string;
|
|
14194
14192
|
precision: number;
|
|
14195
|
-
name: string;
|
|
14196
14193
|
abbrev: string;
|
|
14197
14194
|
measurements: {
|
|
14198
14195
|
name: string;
|
|
@@ -14204,14 +14201,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14204
14201
|
};
|
|
14205
14202
|
}[];
|
|
14206
14203
|
};
|
|
14204
|
+
code: string;
|
|
14205
|
+
name: string;
|
|
14206
|
+
_id: string;
|
|
14207
14207
|
}[] | null | undefined;
|
|
14208
14208
|
catalog?: {
|
|
14209
14209
|
inclusiveTaxes?: {
|
|
14210
14210
|
inclusive: boolean;
|
|
14211
14211
|
systemCode: string;
|
|
14212
14212
|
}[] | null | undefined;
|
|
14213
|
-
_id: string;
|
|
14214
14213
|
name: string;
|
|
14214
|
+
_id: string;
|
|
14215
14215
|
productAvailable: string[];
|
|
14216
14216
|
override: {
|
|
14217
14217
|
product: Record<string, ({
|
|
@@ -14283,7 +14283,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14283
14283
|
};
|
|
14284
14284
|
}[] | null | undefined;
|
|
14285
14285
|
recipe?: {
|
|
14286
|
-
_id: string;
|
|
14287
14286
|
name: string;
|
|
14288
14287
|
contains: {
|
|
14289
14288
|
measurement?: {
|
|
@@ -14302,10 +14301,11 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14302
14301
|
precision: number;
|
|
14303
14302
|
};
|
|
14304
14303
|
}[];
|
|
14304
|
+
_id: string;
|
|
14305
14305
|
}[] | null | undefined;
|
|
14306
14306
|
cookingGuide?: {
|
|
14307
|
-
_id: string;
|
|
14308
14307
|
name: string;
|
|
14308
|
+
_id: string;
|
|
14309
14309
|
bindings: {
|
|
14310
14310
|
combinationKey?: string | null | undefined;
|
|
14311
14311
|
productId: string;
|
|
@@ -14321,19 +14321,19 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14321
14321
|
}[];
|
|
14322
14322
|
}[] | null | undefined;
|
|
14323
14323
|
printDepartment?: {
|
|
14324
|
-
_id: string;
|
|
14325
14324
|
name: string;
|
|
14326
|
-
}[] | null | undefined;
|
|
14327
|
-
takeaway: {
|
|
14328
14325
|
_id: string;
|
|
14326
|
+
}[] | null | undefined;
|
|
14327
|
+
variant: {
|
|
14329
14328
|
name: string;
|
|
14330
|
-
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14329
|
+
options: {
|
|
14330
|
+
name: string;
|
|
14331
|
+
id: string;
|
|
14332
|
+
}[];
|
|
14333
|
+
_id: string;
|
|
14335
14334
|
}[];
|
|
14336
14335
|
product: {
|
|
14336
|
+
unit?: string | null | undefined;
|
|
14337
14337
|
description?: string | null | undefined;
|
|
14338
14338
|
name2?: string | null | undefined;
|
|
14339
14339
|
noSst?: boolean | null | undefined;
|
|
@@ -14343,7 +14343,6 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14343
14343
|
systemCode: string;
|
|
14344
14344
|
taxCode: string;
|
|
14345
14345
|
}[] | null | undefined;
|
|
14346
|
-
unit?: string | null | undefined;
|
|
14347
14346
|
customAttributes?: Record<string, any> | null | undefined;
|
|
14348
14347
|
thumbnail?: string | null | undefined;
|
|
14349
14348
|
inventoryBindings?: {
|
|
@@ -14395,8 +14394,8 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14395
14394
|
schedulerUsed?: string | null | undefined;
|
|
14396
14395
|
printDepartments?: string[] | null | undefined;
|
|
14397
14396
|
code: string;
|
|
14398
|
-
_id: string;
|
|
14399
14397
|
name: string;
|
|
14398
|
+
_id: string;
|
|
14400
14399
|
price: {
|
|
14401
14400
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14402
14401
|
amount: number;
|
|
@@ -14432,41 +14431,42 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14432
14431
|
};
|
|
14433
14432
|
}[] | null | undefined;
|
|
14434
14433
|
isDefault?: boolean | null | undefined;
|
|
14435
|
-
combinationKey: string;
|
|
14436
14434
|
active: boolean;
|
|
14435
|
+
combinationKey: string;
|
|
14437
14436
|
selectionName: string[];
|
|
14438
14437
|
}[];
|
|
14439
14438
|
}[];
|
|
14439
|
+
takeaway: {
|
|
14440
|
+
name: string;
|
|
14441
|
+
_id: string;
|
|
14442
|
+
price: {
|
|
14443
|
+
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14444
|
+
amount: number;
|
|
14445
|
+
precision: number;
|
|
14446
|
+
};
|
|
14447
|
+
}[];
|
|
14440
14448
|
scheduler: {
|
|
14441
14449
|
repeat: "daily" | "weekly";
|
|
14442
|
-
_id: string;
|
|
14443
14450
|
name: string;
|
|
14451
|
+
_id: string;
|
|
14444
14452
|
timePeriod: {
|
|
14445
|
-
start: string;
|
|
14446
14453
|
end: string;
|
|
14454
|
+
start: string;
|
|
14447
14455
|
}[];
|
|
14448
14456
|
weekDay: ("monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday" | "sunday")[];
|
|
14449
14457
|
}[];
|
|
14450
14458
|
category: {
|
|
14451
14459
|
position?: number | null | undefined;
|
|
14452
|
-
_id: string;
|
|
14453
14460
|
name: string;
|
|
14454
|
-
}[];
|
|
14455
|
-
variant: {
|
|
14456
|
-
options: {
|
|
14457
|
-
name: string;
|
|
14458
|
-
id: string;
|
|
14459
|
-
}[];
|
|
14460
14461
|
_id: string;
|
|
14461
|
-
name: string;
|
|
14462
14462
|
}[];
|
|
14463
14463
|
addonGroup: {
|
|
14464
14464
|
priority?: string | number | null | undefined;
|
|
14465
14465
|
position?: number | null | undefined;
|
|
14466
|
-
|
|
14466
|
+
name: string;
|
|
14467
14467
|
max: number;
|
|
14468
|
+
min: number;
|
|
14468
14469
|
_id: string;
|
|
14469
|
-
name: string;
|
|
14470
14470
|
addons: {
|
|
14471
14471
|
name2?: string | null | undefined;
|
|
14472
14472
|
productId?: string | null | undefined;
|
|
@@ -14515,17 +14515,17 @@ export declare const FdtoMergeMenuReq: z.ZodObject<{
|
|
|
14515
14515
|
};
|
|
14516
14516
|
}[] | null | undefined;
|
|
14517
14517
|
isDefault?: boolean | null | undefined;
|
|
14518
|
-
combinationKey: string;
|
|
14519
14518
|
active: boolean;
|
|
14519
|
+
combinationKey: string;
|
|
14520
14520
|
selectionName: string[];
|
|
14521
14521
|
}[] | null | undefined;
|
|
14522
14522
|
name: string;
|
|
14523
|
+
id: string;
|
|
14523
14524
|
price: {
|
|
14524
14525
|
currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
|
|
14525
14526
|
amount: number;
|
|
14526
14527
|
precision: number;
|
|
14527
14528
|
};
|
|
14528
|
-
id: string;
|
|
14529
14529
|
}[];
|
|
14530
14530
|
addonGroupType: "DYNAMIC" | "NORMAL" | "PRODUCT";
|
|
14531
14531
|
stackable: boolean;
|