@compassdigital/sdk.typescript 4.409.0 → 4.411.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.
@@ -404,6 +404,7 @@ export interface GlobalMenuGroupDTO {
404
404
  price_levels?: Record<string, any>;
405
405
  show_v4?: boolean;
406
406
  menu_labels?: Record<string, any>;
407
+ menuworks_unit_ids?: string[];
407
408
  id?: string;
408
409
  created_at?: string;
409
410
  updated_at?: string;
@@ -2463,6 +2464,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
2463
2464
  price_levels?: Record<string, any>;
2464
2465
  show_v4?: boolean;
2465
2466
  menu_labels?: Record<string, any>;
2467
+ menuworks_unit_ids?: string[];
2466
2468
  vendor_metadata?: VendorMetadataDTO[];
2467
2469
  permissions?: Record<string, any>;
2468
2470
  [index: string]: any;
@@ -2496,6 +2498,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
2496
2498
  price_levels?: Record<string, any>;
2497
2499
  show_v4?: boolean;
2498
2500
  menu_labels?: Record<string, any>;
2501
+ menuworks_unit_ids?: string[];
2499
2502
  id?: string;
2500
2503
  version?: number;
2501
2504
  vendor_metadata?: VendorMetadataDTO[];
@@ -2524,6 +2527,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
2524
2527
  price_levels?: Record<string, any>;
2525
2528
  show_v4?: boolean;
2526
2529
  menu_labels?: Record<string, any>;
2530
+ menuworks_unit_ids?: string[];
2527
2531
  id: string;
2528
2532
  created_at?: string;
2529
2533
  updated_at?: string;
@@ -2564,6 +2568,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
2564
2568
  price_levels?: Record<string, any>;
2565
2569
  show_v4?: boolean;
2566
2570
  menu_labels?: Record<string, any>;
2571
+ menuworks_unit_ids?: string[];
2567
2572
  vendor_metadata?: VendorMetadataDTO[];
2568
2573
  permissions?: Record<string, any>;
2569
2574
  [index: string]: any;
@@ -5545,7 +5550,7 @@ export type PostMenuV3GlobalDiffRecoverResponse = GlobalDiffDTO;
5545
5550
  export interface PostMenuV3GlobalDiffRecoverRequest extends BaseRequest, PostMenuV3GlobalDiffRecoverPath {
5546
5551
  }
5547
5552
  export interface GetMenuV3MenuworksQuery {
5548
- unit_id?: string;
5553
+ unit_ids?: string[];
5549
5554
  MRN?: string;
5550
5555
  _query?: string;
5551
5556
  }