@compassdigital/sdk.typescript 4.335.0 → 4.336.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 +14 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +24 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -501,6 +501,19 @@ export interface GetOneOptionsDTO {
|
|
|
501
501
|
relationships?: string[];
|
|
502
502
|
[index: string]: any;
|
|
503
503
|
}
|
|
504
|
+
export interface LocalMenuLabelGroupDTO {
|
|
505
|
+
gmg_id: string;
|
|
506
|
+
gmg_name: string;
|
|
507
|
+
labels: MenuLabelItemDTO[];
|
|
508
|
+
[index: string]: any;
|
|
509
|
+
}
|
|
510
|
+
export interface MenuLabelItemDTO {
|
|
511
|
+
id?: string;
|
|
512
|
+
text: string;
|
|
513
|
+
s3_link?: string;
|
|
514
|
+
image_data?: string;
|
|
515
|
+
[index: string]: any;
|
|
516
|
+
}
|
|
504
517
|
export interface NotFoundErrorDTO {
|
|
505
518
|
number: number;
|
|
506
519
|
message: string;
|
|
@@ -2088,6 +2101,7 @@ export interface GetMenuV3LocalMenuGroupQuery {
|
|
|
2088
2101
|
}
|
|
2089
2102
|
export interface GetMenuV3LocalMenuGroupResponse {
|
|
2090
2103
|
global_menu_groups_in_use?: string[];
|
|
2104
|
+
menu_labels?: LocalMenuLabelGroupDTO[];
|
|
2091
2105
|
name: string;
|
|
2092
2106
|
is_active?: boolean;
|
|
2093
2107
|
allowed_global_menu_groups?: GlobalMenuGroupDTO[];
|