@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.630.0",
3
+ "version": "4.631.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -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