@compassdigital/sdk.typescript 4.630.0 → 4.631.0
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/lib/interface/menu.d.ts +17 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +19 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1740,6 +1740,23 @@ export interface BusinessUnitDTO {
|
|
|
1740
1740
|
export interface MenuWorksMenuCollectionItemDTO {
|
|
1741
1741
|
menu_collection_id: number;
|
|
1742
1742
|
menu_collection_name: string;
|
|
1743
|
+
menu_collection_start_date?: string;
|
|
1744
|
+
menu_collection_end_date?: string;
|
|
1745
|
+
meal_periods: MenuWorksMenuCollectionMealPeriodDTO[];
|
|
1746
|
+
[index: string]: any;
|
|
1747
|
+
}
|
|
1748
|
+
export interface MenuWorksMenuCollectionMealPeriodDTO {
|
|
1749
|
+
id: number;
|
|
1750
|
+
name: string;
|
|
1751
|
+
display_order?: number;
|
|
1752
|
+
stations: MenuWorksMenuCollectionStationDTO[];
|
|
1753
|
+
[index: string]: any;
|
|
1754
|
+
}
|
|
1755
|
+
export interface MenuWorksMenuCollectionStationDTO {
|
|
1756
|
+
id: number;
|
|
1757
|
+
name: string;
|
|
1758
|
+
display_order?: number;
|
|
1759
|
+
is_main?: boolean;
|
|
1743
1760
|
[index: string]: any;
|
|
1744
1761
|
}
|
|
1745
1762
|
export interface MenuWorksMenuBoardItemDTO {
|