@compassdigital/sdk.typescript 4.442.0 → 4.444.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
|
@@ -717,6 +717,7 @@ export interface LocalMenuGroupDTO {
|
|
|
717
717
|
price_levels?: Record<string, any>;
|
|
718
718
|
show_v4?: boolean;
|
|
719
719
|
menuworks_unit_ids?: string[];
|
|
720
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
720
721
|
id: string;
|
|
721
722
|
created_at?: string;
|
|
722
723
|
updated_at?: string;
|
|
@@ -2526,6 +2527,7 @@ export interface PostMenuV3LocalMenuGroupBody {
|
|
|
2526
2527
|
price_levels?: Record<string, any>;
|
|
2527
2528
|
show_v4?: boolean;
|
|
2528
2529
|
menuworks_unit_ids?: string[];
|
|
2530
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2529
2531
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2530
2532
|
permissions?: Record<string, any>;
|
|
2531
2533
|
[index: string]: any;
|
|
@@ -2540,6 +2542,7 @@ export interface PostMenuV3LocalMenuGroupResponse {
|
|
|
2540
2542
|
price_levels?: Record<string, any>;
|
|
2541
2543
|
show_v4?: boolean;
|
|
2542
2544
|
menuworks_unit_ids?: string[];
|
|
2545
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2543
2546
|
id: string;
|
|
2544
2547
|
created_at?: string;
|
|
2545
2548
|
updated_at?: string;
|
|
@@ -2580,6 +2583,7 @@ export interface GetMenuV3LocalMenuGroupResponse {
|
|
|
2580
2583
|
price_levels?: Record<string, any>;
|
|
2581
2584
|
show_v4?: boolean;
|
|
2582
2585
|
menuworks_unit_ids?: string[];
|
|
2586
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2583
2587
|
id: string;
|
|
2584
2588
|
created_at?: string;
|
|
2585
2589
|
updated_at?: string;
|
|
@@ -2610,6 +2614,7 @@ export interface PatchMenuV3LocalMenuGroupBody {
|
|
|
2610
2614
|
price_levels?: Record<string, any>;
|
|
2611
2615
|
show_v4?: boolean;
|
|
2612
2616
|
menuworks_unit_ids?: string[];
|
|
2617
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2613
2618
|
id?: string;
|
|
2614
2619
|
version?: number;
|
|
2615
2620
|
vendor_metadata?: VendorMetadataDTO[];
|
|
@@ -2626,6 +2631,7 @@ export interface PatchMenuV3LocalMenuGroupResponse {
|
|
|
2626
2631
|
price_levels?: Record<string, any>;
|
|
2627
2632
|
show_v4?: boolean;
|
|
2628
2633
|
menuworks_unit_ids?: string[];
|
|
2634
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2629
2635
|
id: string;
|
|
2630
2636
|
created_at?: string;
|
|
2631
2637
|
updated_at?: string;
|
|
@@ -2662,6 +2668,7 @@ export interface DeleteMenuV3LocalMenuGroupResponse {
|
|
|
2662
2668
|
price_levels?: Record<string, any>;
|
|
2663
2669
|
show_v4?: boolean;
|
|
2664
2670
|
menuworks_unit_ids?: string[];
|
|
2671
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2665
2672
|
id: string;
|
|
2666
2673
|
created_at?: string;
|
|
2667
2674
|
updated_at?: string;
|
|
@@ -2717,6 +2724,7 @@ export type PostMenuV3LocalMenuGroupsBody = {
|
|
|
2717
2724
|
price_levels?: Record<string, any>;
|
|
2718
2725
|
show_v4?: boolean;
|
|
2719
2726
|
menuworks_unit_ids?: string[];
|
|
2727
|
+
append_ingredients_nutrition_to_description?: boolean;
|
|
2720
2728
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2721
2729
|
permissions?: Record<string, any>;
|
|
2722
2730
|
[index: string]: any;
|