@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.
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -484,6 +484,7 @@ export interface GlobalMenuGroupDTO {
|
|
|
484
484
|
price_levels?: Record<string, any>;
|
|
485
485
|
show_v4?: boolean;
|
|
486
486
|
menu_labels?: Record<string, any>;
|
|
487
|
+
menuworks_unit_ids?: string[];
|
|
487
488
|
id?: string;
|
|
488
489
|
created_at?: string;
|
|
489
490
|
updated_at?: string;
|
|
@@ -3101,6 +3102,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
|
|
|
3101
3102
|
price_levels?: Record<string, any>;
|
|
3102
3103
|
show_v4?: boolean;
|
|
3103
3104
|
menu_labels?: Record<string, any>;
|
|
3105
|
+
menuworks_unit_ids?: string[];
|
|
3104
3106
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3105
3107
|
permissions?: Record<string, any>;
|
|
3106
3108
|
[index: string]: any;
|
|
@@ -3151,6 +3153,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
|
|
|
3151
3153
|
price_levels?: Record<string, any>;
|
|
3152
3154
|
show_v4?: boolean;
|
|
3153
3155
|
menu_labels?: Record<string, any>;
|
|
3156
|
+
menuworks_unit_ids?: string[];
|
|
3154
3157
|
id?: string;
|
|
3155
3158
|
version?: number;
|
|
3156
3159
|
vendor_metadata?: VendorMetadataDTO[];
|
|
@@ -3188,6 +3191,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
|
|
|
3188
3191
|
price_levels?: Record<string, any>;
|
|
3189
3192
|
show_v4?: boolean;
|
|
3190
3193
|
menu_labels?: Record<string, any>;
|
|
3194
|
+
menuworks_unit_ids?: string[];
|
|
3191
3195
|
id: string;
|
|
3192
3196
|
created_at?: string;
|
|
3193
3197
|
updated_at?: string;
|
|
@@ -3247,6 +3251,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
|
|
|
3247
3251
|
price_levels?: Record<string, any>;
|
|
3248
3252
|
show_v4?: boolean;
|
|
3249
3253
|
menu_labels?: Record<string, any>;
|
|
3254
|
+
menuworks_unit_ids?: string[];
|
|
3250
3255
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3251
3256
|
permissions?: Record<string, any>;
|
|
3252
3257
|
[index: string]: any;
|
|
@@ -7694,7 +7699,7 @@ export interface PostMenuV3GlobalDiffRecoverRequest
|
|
|
7694
7699
|
// GET /menu/v3/menuworks
|
|
7695
7700
|
|
|
7696
7701
|
export interface GetMenuV3MenuworksQuery {
|
|
7697
|
-
|
|
7702
|
+
unit_ids?: string[];
|
|
7698
7703
|
MRN?: string;
|
|
7699
7704
|
// Graphql query string
|
|
7700
7705
|
_query?: string;
|