@compassdigital/sdk.typescript 4.631.0 → 4.632.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/index.d.ts +8 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +17 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/menu.ts +21 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -8708,6 +8708,23 @@ export interface PostMenuV4StationItemsSearchResponse {
|
|
|
8708
8708
|
export interface PostMenuV4StationItemsSearchRequest extends BaseRequest {
|
|
8709
8709
|
body: PostMenuV4StationItemsSearchBody;
|
|
8710
8710
|
}
|
|
8711
|
+
export interface GetMenuV4MenuGraphPath {
|
|
8712
|
+
menu_id: string;
|
|
8713
|
+
}
|
|
8714
|
+
export interface GetMenuV4MenuGraphResponse {
|
|
8715
|
+
menu_id: string;
|
|
8716
|
+
brand_id: string;
|
|
8717
|
+
revision: string;
|
|
8718
|
+
updated_at: string;
|
|
8719
|
+
menu?: Record<string, any>;
|
|
8720
|
+
categories?: Record<string, any>[];
|
|
8721
|
+
items?: Record<string, any>[];
|
|
8722
|
+
modifier_groups?: Record<string, any>[];
|
|
8723
|
+
modifiers?: Record<string, any>[];
|
|
8724
|
+
[index: string]: any;
|
|
8725
|
+
}
|
|
8726
|
+
export interface GetMenuV4MenuGraphRequest extends BaseRequest, GetMenuV4MenuGraphPath {
|
|
8727
|
+
}
|
|
8711
8728
|
export interface GetMenuV3PingResponse {
|
|
8712
8729
|
status: string;
|
|
8713
8730
|
message: string;
|