@compassdigital/sdk.typescript 4.415.0 → 4.416.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/interface/menu.d.ts
CHANGED
|
@@ -886,6 +886,7 @@ export interface MenuWorksDTO {
|
|
|
886
886
|
ingredients?: string[];
|
|
887
887
|
smart_tags?: string[];
|
|
888
888
|
allergen_tags?: string[];
|
|
889
|
+
allergens?: string[];
|
|
889
890
|
[index: string]: any;
|
|
890
891
|
}
|
|
891
892
|
export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
@@ -1645,6 +1646,11 @@ export interface DraftModifierEntityDTO {
|
|
|
1645
1646
|
permissions?: Record<string, any>;
|
|
1646
1647
|
[index: string]: any;
|
|
1647
1648
|
}
|
|
1649
|
+
export interface AllergenDTO {
|
|
1650
|
+
name: string;
|
|
1651
|
+
contains: 'Yes' | 'AtRisk';
|
|
1652
|
+
[index: string]: any;
|
|
1653
|
+
}
|
|
1648
1654
|
export interface UniversalItemWithoutIdDTO {
|
|
1649
1655
|
barcode: string;
|
|
1650
1656
|
name: string;
|
|
@@ -5573,6 +5579,7 @@ export interface GetMenuV3MenuworksResponse {
|
|
|
5573
5579
|
short_name?: string;
|
|
5574
5580
|
description?: string;
|
|
5575
5581
|
portion_size: string;
|
|
5582
|
+
allergens?: AllergenDTO[];
|
|
5576
5583
|
MRN?: string;
|
|
5577
5584
|
portion_quantity?: number;
|
|
5578
5585
|
portion_unit_name?: string;
|