@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.415.0",
3
+ "version": "4.416.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -1019,6 +1019,7 @@ export interface MenuWorksDTO {
1019
1019
  ingredients?: string[];
1020
1020
  smart_tags?: string[];
1021
1021
  allergen_tags?: string[];
1022
+ allergens?: string[];
1022
1023
  [index: string]: any;
1023
1024
  }
1024
1025
 
@@ -1845,6 +1846,12 @@ export interface DraftModifierEntityDTO {
1845
1846
  [index: string]: any;
1846
1847
  }
1847
1848
 
1849
+ export interface AllergenDTO {
1850
+ name: string;
1851
+ contains: 'Yes' | 'AtRisk';
1852
+ [index: string]: any;
1853
+ }
1854
+
1848
1855
  export interface UniversalItemWithoutIdDTO {
1849
1856
  barcode: string;
1850
1857
  name: string;
@@ -7732,6 +7739,7 @@ export interface GetMenuV3MenuworksResponse {
7732
7739
  short_name?: string;
7733
7740
  description?: string;
7734
7741
  portion_size: string;
7742
+ allergens?: AllergenDTO[];
7735
7743
  MRN?: string;
7736
7744
  portion_quantity?: number;
7737
7745
  portion_unit_name?: string;