@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/lib/interface/menu.d.ts
CHANGED
|
@@ -182,6 +182,11 @@ export interface Item {
|
|
|
182
182
|
featured?: boolean;
|
|
183
183
|
};
|
|
184
184
|
parent_id?: string;
|
|
185
|
+
menu_labels?: {
|
|
186
|
+
id?: string;
|
|
187
|
+
text?: string;
|
|
188
|
+
s3_link?: string;
|
|
189
|
+
}[];
|
|
185
190
|
}
|
|
186
191
|
export interface Group {
|
|
187
192
|
id?: string;
|
|
@@ -287,6 +292,11 @@ export interface Option {
|
|
|
287
292
|
amount_off_exclusions?: AmountOffExclusionTypes[];
|
|
288
293
|
line_route?: string;
|
|
289
294
|
parent_id?: string;
|
|
295
|
+
menu_labels?: {
|
|
296
|
+
id?: string;
|
|
297
|
+
text?: string;
|
|
298
|
+
s3_link?: string;
|
|
299
|
+
}[];
|
|
290
300
|
}
|
|
291
301
|
export interface OptionsGroup {
|
|
292
302
|
id?: string;
|