@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/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -1954,6 +1954,25 @@ export interface BusinessUnitDTO {
|
|
|
1954
1954
|
export interface MenuWorksMenuCollectionItemDTO {
|
|
1955
1955
|
menu_collection_id: number;
|
|
1956
1956
|
menu_collection_name: string;
|
|
1957
|
+
menu_collection_start_date?: string;
|
|
1958
|
+
menu_collection_end_date?: string;
|
|
1959
|
+
meal_periods: MenuWorksMenuCollectionMealPeriodDTO[];
|
|
1960
|
+
[index: string]: any;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
export interface MenuWorksMenuCollectionMealPeriodDTO {
|
|
1964
|
+
id: number;
|
|
1965
|
+
name: string;
|
|
1966
|
+
display_order?: number;
|
|
1967
|
+
stations: MenuWorksMenuCollectionStationDTO[];
|
|
1968
|
+
[index: string]: any;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
export interface MenuWorksMenuCollectionStationDTO {
|
|
1972
|
+
id: number;
|
|
1973
|
+
name: string;
|
|
1974
|
+
display_order?: number;
|
|
1975
|
+
is_main?: boolean;
|
|
1957
1976
|
[index: string]: any;
|
|
1958
1977
|
}
|
|
1959
1978
|
|