@compassdigital/sdk.typescript 4.629.0 → 4.630.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 +22 -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 +31 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1742,6 +1742,13 @@ export interface MenuWorksMenuCollectionItemDTO {
|
|
|
1742
1742
|
menu_collection_name: string;
|
|
1743
1743
|
[index: string]: any;
|
|
1744
1744
|
}
|
|
1745
|
+
export interface MenuWorksMenuBoardItemDTO {
|
|
1746
|
+
mrn?: string;
|
|
1747
|
+
name?: string;
|
|
1748
|
+
price?: number;
|
|
1749
|
+
description?: string;
|
|
1750
|
+
[index: string]: any;
|
|
1751
|
+
}
|
|
1745
1752
|
export interface MenuWorksProductDTO {
|
|
1746
1753
|
mrn: string;
|
|
1747
1754
|
product_type?: string;
|
|
@@ -5813,6 +5820,21 @@ export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsResponse {
|
|
|
5813
5820
|
}
|
|
5814
5821
|
export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsRequest extends BaseRequest, GetMenuV3MenuworksBusinessUnitsMenuCollectionsPath {
|
|
5815
5822
|
}
|
|
5823
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardPath {
|
|
5824
|
+
unit_id: string;
|
|
5825
|
+
}
|
|
5826
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardQuery {
|
|
5827
|
+
menu_collection_id?: number;
|
|
5828
|
+
menu_collection_start_date?: string;
|
|
5829
|
+
meal_period_id?: number;
|
|
5830
|
+
station_id?: number;
|
|
5831
|
+
}
|
|
5832
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardResponse {
|
|
5833
|
+
menu_items: MenuWorksMenuBoardItemDTO[];
|
|
5834
|
+
[index: string]: any;
|
|
5835
|
+
}
|
|
5836
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuBoardRequest extends BaseRequest, RequestQuery<GetMenuV3MenuworksBusinessUnitsMenuBoardQuery>, GetMenuV3MenuworksBusinessUnitsMenuBoardPath {
|
|
5837
|
+
}
|
|
5816
5838
|
export interface GetMenuV3MenuworksBusinessUnitsProductsPath {
|
|
5817
5839
|
unit_id: string;
|
|
5818
5840
|
}
|