@compassdigital/sdk.typescript 4.519.0 → 4.521.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
CHANGED
|
@@ -422,6 +422,7 @@ export interface GlobalMenuGroupDTO {
|
|
|
422
422
|
show_v4?: boolean;
|
|
423
423
|
menu_labels?: Record<string, any>;
|
|
424
424
|
menuworks_unit_ids?: string[];
|
|
425
|
+
visibility?: Record<string, any>;
|
|
425
426
|
id?: string;
|
|
426
427
|
created_at?: string;
|
|
427
428
|
updated_at?: string;
|
|
@@ -2651,6 +2652,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
|
|
|
2651
2652
|
show_v4?: boolean;
|
|
2652
2653
|
menu_labels?: Record<string, any>;
|
|
2653
2654
|
menuworks_unit_ids?: string[];
|
|
2655
|
+
visibility?: Record<string, any>;
|
|
2654
2656
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2655
2657
|
permissions?: Record<string, any>;
|
|
2656
2658
|
[index: string]: any;
|
|
@@ -2684,6 +2686,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
|
|
|
2684
2686
|
show_v4?: boolean;
|
|
2685
2687
|
menu_labels?: Record<string, any>;
|
|
2686
2688
|
menuworks_unit_ids?: string[];
|
|
2689
|
+
visibility?: Record<string, any>;
|
|
2687
2690
|
id?: string;
|
|
2688
2691
|
version?: number;
|
|
2689
2692
|
vendor_metadata?: VendorMetadataDTO[];
|
|
@@ -2713,6 +2716,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
|
|
|
2713
2716
|
show_v4?: boolean;
|
|
2714
2717
|
menu_labels?: Record<string, any>;
|
|
2715
2718
|
menuworks_unit_ids?: string[];
|
|
2719
|
+
visibility?: Record<string, any>;
|
|
2716
2720
|
id: string;
|
|
2717
2721
|
created_at?: string;
|
|
2718
2722
|
updated_at?: string;
|
|
@@ -2753,6 +2757,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
|
|
|
2753
2757
|
show_v4?: boolean;
|
|
2754
2758
|
menu_labels?: Record<string, any>;
|
|
2755
2759
|
menuworks_unit_ids?: string[];
|
|
2760
|
+
visibility?: Record<string, any>;
|
|
2756
2761
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2757
2762
|
permissions?: Record<string, any>;
|
|
2758
2763
|
[index: string]: any;
|