@compassdigital/sdk.typescript 4.433.0 → 4.434.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/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -716,6 +716,7 @@ export interface LocalMenuGroupDTO {
|
|
|
716
716
|
published_brands?: PublishedBrandDTO[];
|
|
717
717
|
price_levels?: Record<string, any>;
|
|
718
718
|
show_v4?: boolean;
|
|
719
|
+
menuworks_unit_ids?: string[];
|
|
719
720
|
id: string;
|
|
720
721
|
created_at?: string;
|
|
721
722
|
updated_at?: string;
|
|
@@ -2516,6 +2517,7 @@ export interface PostMenuV3LocalMenuGroupBody {
|
|
|
2516
2517
|
published_brands?: PublishedBrandDTO[];
|
|
2517
2518
|
price_levels?: Record<string, any>;
|
|
2518
2519
|
show_v4?: boolean;
|
|
2520
|
+
menuworks_unit_ids?: string[];
|
|
2519
2521
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2520
2522
|
permissions?: Record<string, any>;
|
|
2521
2523
|
[index: string]: any;
|
|
@@ -2529,6 +2531,7 @@ export interface PostMenuV3LocalMenuGroupResponse {
|
|
|
2529
2531
|
published_brands?: PublishedBrandDTO[];
|
|
2530
2532
|
price_levels?: Record<string, any>;
|
|
2531
2533
|
show_v4?: boolean;
|
|
2534
|
+
menuworks_unit_ids?: string[];
|
|
2532
2535
|
id: string;
|
|
2533
2536
|
created_at?: string;
|
|
2534
2537
|
updated_at?: string;
|
|
@@ -2568,6 +2571,7 @@ export interface GetMenuV3LocalMenuGroupResponse {
|
|
|
2568
2571
|
published_brands?: PublishedBrandDTO[];
|
|
2569
2572
|
price_levels?: Record<string, any>;
|
|
2570
2573
|
show_v4?: boolean;
|
|
2574
|
+
menuworks_unit_ids?: string[];
|
|
2571
2575
|
id: string;
|
|
2572
2576
|
created_at?: string;
|
|
2573
2577
|
updated_at?: string;
|
|
@@ -2597,6 +2601,7 @@ export interface PatchMenuV3LocalMenuGroupBody {
|
|
|
2597
2601
|
published_brands?: PublishedBrandDTO[];
|
|
2598
2602
|
price_levels?: Record<string, any>;
|
|
2599
2603
|
show_v4?: boolean;
|
|
2604
|
+
menuworks_unit_ids?: string[];
|
|
2600
2605
|
id?: string;
|
|
2601
2606
|
version?: number;
|
|
2602
2607
|
vendor_metadata?: VendorMetadataDTO[];
|
|
@@ -2612,6 +2617,7 @@ export interface PatchMenuV3LocalMenuGroupResponse {
|
|
|
2612
2617
|
published_brands?: PublishedBrandDTO[];
|
|
2613
2618
|
price_levels?: Record<string, any>;
|
|
2614
2619
|
show_v4?: boolean;
|
|
2620
|
+
menuworks_unit_ids?: string[];
|
|
2615
2621
|
id: string;
|
|
2616
2622
|
created_at?: string;
|
|
2617
2623
|
updated_at?: string;
|
|
@@ -2647,6 +2653,7 @@ export interface DeleteMenuV3LocalMenuGroupResponse {
|
|
|
2647
2653
|
published_brands?: PublishedBrandDTO[];
|
|
2648
2654
|
price_levels?: Record<string, any>;
|
|
2649
2655
|
show_v4?: boolean;
|
|
2656
|
+
menuworks_unit_ids?: string[];
|
|
2650
2657
|
id: string;
|
|
2651
2658
|
created_at?: string;
|
|
2652
2659
|
updated_at?: string;
|
|
@@ -2701,6 +2708,7 @@ export type PostMenuV3LocalMenuGroupsBody = {
|
|
|
2701
2708
|
published_brands?: PublishedBrandDTO[];
|
|
2702
2709
|
price_levels?: Record<string, any>;
|
|
2703
2710
|
show_v4?: boolean;
|
|
2711
|
+
menuworks_unit_ids?: string[];
|
|
2704
2712
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2705
2713
|
permissions?: Record<string, any>;
|
|
2706
2714
|
[index: string]: any;
|