@compassdigital/sdk.typescript 4.629.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/index.d.ts +10 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +39 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/menu.ts +50 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1740,6 +1740,30 @@ 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;
|
|
1760
|
+
[index: string]: any;
|
|
1761
|
+
}
|
|
1762
|
+
export interface MenuWorksMenuBoardItemDTO {
|
|
1763
|
+
mrn?: string;
|
|
1764
|
+
name?: string;
|
|
1765
|
+
price?: number;
|
|
1766
|
+
description?: string;
|
|
1743
1767
|
[index: string]: any;
|
|
1744
1768
|
}
|
|
1745
1769
|
export interface MenuWorksProductDTO {
|
|
@@ -5813,6 +5837,21 @@ export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsResponse {
|
|
|
5813
5837
|
}
|
|
5814
5838
|
export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsRequest extends BaseRequest, GetMenuV3MenuworksBusinessUnitsMenuCollectionsPath {
|
|
5815
5839
|
}
|
|
5840
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardPath {
|
|
5841
|
+
unit_id: string;
|
|
5842
|
+
}
|
|
5843
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardQuery {
|
|
5844
|
+
menu_collection_id?: number;
|
|
5845
|
+
menu_collection_start_date?: string;
|
|
5846
|
+
meal_period_id?: number;
|
|
5847
|
+
station_id?: number;
|
|
5848
|
+
}
|
|
5849
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardResponse {
|
|
5850
|
+
menu_items: MenuWorksMenuBoardItemDTO[];
|
|
5851
|
+
[index: string]: any;
|
|
5852
|
+
}
|
|
5853
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardRequest extends BaseRequest, RequestQuery<GetMenuV3MenuworksBusinessUnitsMenuBoardQuery>, GetMenuV3MenuworksBusinessUnitsMenuBoardPath {
|
|
5854
|
+
}
|
|
5816
5855
|
export interface GetMenuV3MenuworksBusinessUnitsProductsPath {
|
|
5817
5856
|
unit_id: string;
|
|
5818
5857
|
}
|