@compassdigital/sdk.typescript 4.563.0 → 4.564.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/interface/menu.d.ts
CHANGED
|
@@ -1854,6 +1854,11 @@ export interface SwappedCategoryDTO {
|
|
|
1854
1854
|
category_id?: string;
|
|
1855
1855
|
sequence?: number;
|
|
1856
1856
|
}
|
|
1857
|
+
export interface SwapOriginalStatesDTO {
|
|
1858
|
+
swap_out_was_visible: boolean;
|
|
1859
|
+
swap_in_was_visible: boolean;
|
|
1860
|
+
[index: string]: any;
|
|
1861
|
+
}
|
|
1857
1862
|
export interface CatalogBackupVersionDTO {
|
|
1858
1863
|
version_id?: string;
|
|
1859
1864
|
last_modified?: string;
|
|
@@ -6589,6 +6594,7 @@ export interface PostMenuV4BrandSwapCategoryItemsBody {
|
|
|
6589
6594
|
export interface PostMenuV4BrandSwapCategoryItemsResponse {
|
|
6590
6595
|
status?: string;
|
|
6591
6596
|
swapped_categories?: SwappedCategoryDTO[];
|
|
6597
|
+
original_states?: SwapOriginalStatesDTO;
|
|
6592
6598
|
}
|
|
6593
6599
|
export interface PostMenuV4BrandSwapCategoryItemsRequest extends BaseRequest, PostMenuV4BrandSwapCategoryItemsPath {
|
|
6594
6600
|
body: PostMenuV4BrandSwapCategoryItemsBody;
|