@compassdigital/sdk.typescript 4.350.0 → 4.351.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.350.0",
3
+ "version": "4.351.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -210,6 +210,11 @@ export interface Item {
210
210
  featured?: boolean;
211
211
  };
212
212
  parent_id?: string;
213
+ menu_labels?: {
214
+ id?: string;
215
+ text?: string;
216
+ s3_link?: string;
217
+ }[];
213
218
  }
214
219
 
215
220
  export interface Group {
@@ -333,6 +338,11 @@ export interface Option {
333
338
  amount_off_exclusions?: AmountOffExclusionTypes[];
334
339
  line_route?: string;
335
340
  parent_id?: string;
341
+ menu_labels?: {
342
+ id?: string;
343
+ text?: string;
344
+ s3_link?: string;
345
+ }[];
336
346
  }
337
347
 
338
348
  export interface OptionsGroup {