@compassdigital/sdk.typescript 4.634.0 → 4.636.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 +20 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +19 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +29 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/user.d.ts +5 -1
- package/lib/interface/user.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +49 -1
- package/src/interface/menu.ts +43 -0
- package/src/interface/user.ts +11 -1
package/lib/interface/menu.d.ts
CHANGED
|
@@ -6779,6 +6779,35 @@ export interface PostMenuV4BrandIntegrationSyncResponse {
|
|
|
6779
6779
|
}
|
|
6780
6780
|
export interface PostMenuV4BrandIntegrationSyncRequest extends BaseRequest, PostMenuV4BrandIntegrationSyncPath {
|
|
6781
6781
|
}
|
|
6782
|
+
export interface PostMenuV4BrandSyncMenuworksPath {
|
|
6783
|
+
id: string;
|
|
6784
|
+
}
|
|
6785
|
+
export interface PostMenuV4BrandSyncMenuworksResponse {
|
|
6786
|
+
process_id: string;
|
|
6787
|
+
status: string;
|
|
6788
|
+
[index: string]: any;
|
|
6789
|
+
}
|
|
6790
|
+
export interface PostMenuV4BrandSyncMenuworksRequest extends BaseRequest, PostMenuV4BrandSyncMenuworksPath {
|
|
6791
|
+
}
|
|
6792
|
+
export interface PostMenuV4BrandImportMenuworksCyclePath {
|
|
6793
|
+
id: string;
|
|
6794
|
+
}
|
|
6795
|
+
export interface PostMenuV4BrandImportMenuworksCycleBody {
|
|
6796
|
+
menuworks_unit_id: string;
|
|
6797
|
+
menu_collection_id: number;
|
|
6798
|
+
menu_collection_start_date?: string;
|
|
6799
|
+
import_selections?: ImportMenuWorksSelectionDTO[];
|
|
6800
|
+
[index: string]: any;
|
|
6801
|
+
}
|
|
6802
|
+
export interface PostMenuV4BrandImportMenuworksCycleResponse {
|
|
6803
|
+
process_id: string;
|
|
6804
|
+
status: string;
|
|
6805
|
+
message?: string;
|
|
6806
|
+
[index: string]: any;
|
|
6807
|
+
}
|
|
6808
|
+
export interface PostMenuV4BrandImportMenuworksCycleRequest extends BaseRequest, PostMenuV4BrandImportMenuworksCyclePath {
|
|
6809
|
+
body: PostMenuV4BrandImportMenuworksCycleBody;
|
|
6810
|
+
}
|
|
6782
6811
|
export interface PostMenuV4BrandV3ToV4Path {
|
|
6783
6812
|
id: string;
|
|
6784
6813
|
}
|