@compassdigital/sdk.typescript 4.538.0 → 4.539.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
package/src/interface/menu.ts
CHANGED
|
@@ -1054,6 +1054,7 @@ export interface MenuWorksDTO {
|
|
|
1054
1054
|
allergen_tags?: string[];
|
|
1055
1055
|
allergens?: AllergenDTO[];
|
|
1056
1056
|
nutrition?: NutritionDTO;
|
|
1057
|
+
icons?: MenuWorksIconDTO[];
|
|
1057
1058
|
updated_at?: string;
|
|
1058
1059
|
[index: string]: any;
|
|
1059
1060
|
}
|
|
@@ -1085,6 +1086,14 @@ export interface NutritionValueDTO {
|
|
|
1085
1086
|
[index: string]: any;
|
|
1086
1087
|
}
|
|
1087
1088
|
|
|
1089
|
+
export interface MenuWorksIconDTO {
|
|
1090
|
+
id: number;
|
|
1091
|
+
name: string;
|
|
1092
|
+
url: string;
|
|
1093
|
+
rank?: number;
|
|
1094
|
+
[index: string]: any;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1088
1097
|
export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
1089
1098
|
id?: string;
|
|
1090
1099
|
created_at?: string;
|
|
@@ -7798,6 +7807,7 @@ export interface GetMenuV3MenuworksResponse {
|
|
|
7798
7807
|
portion_size: string;
|
|
7799
7808
|
allergens?: AllergenDTO[];
|
|
7800
7809
|
nutrition?: NutritionDTO;
|
|
7810
|
+
icons?: MenuWorksIconDTO[];
|
|
7801
7811
|
MRN?: string;
|
|
7802
7812
|
portion_quantity?: number;
|
|
7803
7813
|
portion_unit_name?: string;
|