@compassdigital/sdk.typescript 4.621.0 → 4.623.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.
@@ -1951,6 +1951,12 @@ export interface BusinessUnitDTO {
1951
1951
  [index: string]: any;
1952
1952
  }
1953
1953
 
1954
+ export interface MenuWorksMenuTemplateCollectionItemDTO {
1955
+ menu_collection_id: number;
1956
+ menu_collection_name: string;
1957
+ [index: string]: any;
1958
+ }
1959
+
1954
1960
  export interface MenuWorksProductDTO {
1955
1961
  mrn: string;
1956
1962
  product_type?: string;
@@ -7873,6 +7879,21 @@ export interface GetMenuV3MenuworksBusinessUnitsResponse {
7873
7879
 
7874
7880
  export interface GetMenuV3MenuworksBusinessUnitsRequest extends BaseRequest {}
7875
7881
 
7882
+ // GET /menu/v3/menuworks/business_units/{unit_id}/menu_templates
7883
+
7884
+ export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesPath {
7885
+ unit_id: string;
7886
+ }
7887
+
7888
+ export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesResponse {
7889
+ results: MenuWorksMenuTemplateCollectionItemDTO[];
7890
+ [index: string]: any;
7891
+ }
7892
+
7893
+ export interface GetMenuV3MenuworksBusinessUnitsMenuTemplatesRequest
7894
+ extends BaseRequest,
7895
+ GetMenuV3MenuworksBusinessUnitsMenuTemplatesPath {}
7896
+
7876
7897
  // GET /menu/v3/menuworks/business_units/{unit_id}/products
7877
7898
 
7878
7899
  export interface GetMenuV3MenuworksBusinessUnitsProductsPath {