@compassdigital/sdk.typescript 4.505.0 → 4.507.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
|
@@ -1024,8 +1024,8 @@ export interface PostMenuStationsMenusFetchResponseDTO {
|
|
|
1024
1024
|
export interface SwapListRequestDto {
|
|
1025
1025
|
// Menu Brand ID
|
|
1026
1026
|
brand_id: string;
|
|
1027
|
-
// Site
|
|
1028
|
-
|
|
1027
|
+
// Array of Site IDs
|
|
1028
|
+
site_ids: string[];
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
export interface ProjectedRevenue {
|
package/src/interface/menu.ts
CHANGED
|
@@ -4146,6 +4146,7 @@ export interface GetMenuV3DraftBrandExportPath {
|
|
|
4146
4146
|
|
|
4147
4147
|
export interface GetMenuV3DraftBrandExportQuery {
|
|
4148
4148
|
format?: 'xlsx';
|
|
4149
|
+
version_id?: string;
|
|
4149
4150
|
}
|
|
4150
4151
|
|
|
4151
4152
|
export interface GetMenuV3DraftBrandExportResponse {
|
|
@@ -8981,6 +8982,7 @@ export interface GetMenuV4BrandExportPath {
|
|
|
8981
8982
|
|
|
8982
8983
|
export interface GetMenuV4BrandExportQuery {
|
|
8983
8984
|
format?: 'xlsx';
|
|
8985
|
+
version_id?: string;
|
|
8984
8986
|
}
|
|
8985
8987
|
|
|
8986
8988
|
export interface GetMenuV4BrandExportResponse {
|