@compassdigital/sdk.typescript 4.622.0 → 4.624.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 +8 -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 +14 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/menu.ts +22 -1
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1737,6 +1737,11 @@ export interface BusinessUnitDTO {
|
|
|
1737
1737
|
sector_name: string;
|
|
1738
1738
|
[index: string]: any;
|
|
1739
1739
|
}
|
|
1740
|
+
export interface MenuWorksMenuTemplateCollectionItemDTO {
|
|
1741
|
+
menu_collection_id: number;
|
|
1742
|
+
menu_collection_name: string;
|
|
1743
|
+
[index: string]: any;
|
|
1744
|
+
}
|
|
1740
1745
|
export interface MenuWorksProductDTO {
|
|
1741
1746
|
mrn: string;
|
|
1742
1747
|
product_type?: string;
|
|
@@ -5799,6 +5804,15 @@ export interface GetMenuV3MenuworksBusinessUnitsResponse {
|
|
|
5799
5804
|
}
|
|
5800
5805
|
export interface GetMenuV3MenuworksBusinessUnitsRequest extends BaseRequest {
|
|
5801
5806
|
}
|
|
5807
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesPath {
|
|
5808
|
+
unit_id: string;
|
|
5809
|
+
}
|
|
5810
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesResponse {
|
|
5811
|
+
results: MenuWorksMenuTemplateCollectionItemDTO[];
|
|
5812
|
+
[index: string]: any;
|
|
5813
|
+
}
|
|
5814
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesRequest extends BaseRequest, GetMenuV3MenuworksBusinessUnitsMenuTemplatesPath {
|
|
5815
|
+
}
|
|
5802
5816
|
export interface GetMenuV3MenuworksBusinessUnitsProductsPath {
|
|
5803
5817
|
unit_id: string;
|
|
5804
5818
|
}
|