@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/lib/interface/menu.d.ts +10 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +10 -0
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -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 {
|