@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/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -2076,6 +2076,12 @@ export interface SwappedCategoryDTO {
|
|
|
2076
2076
|
sequence?: number;
|
|
2077
2077
|
}
|
|
2078
2078
|
|
|
2079
|
+
export interface SwapOriginalStatesDTO {
|
|
2080
|
+
swap_out_was_visible: boolean;
|
|
2081
|
+
swap_in_was_visible: boolean;
|
|
2082
|
+
[index: string]: any;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2079
2085
|
export interface CatalogBackupVersionDTO {
|
|
2080
2086
|
version_id?: string;
|
|
2081
2087
|
last_modified?: string;
|
|
@@ -8843,6 +8849,7 @@ export interface PostMenuV4BrandSwapCategoryItemsBody {
|
|
|
8843
8849
|
export interface PostMenuV4BrandSwapCategoryItemsResponse {
|
|
8844
8850
|
status?: string;
|
|
8845
8851
|
swapped_categories?: SwappedCategoryDTO[];
|
|
8852
|
+
original_states?: SwapOriginalStatesDTO;
|
|
8846
8853
|
}
|
|
8847
8854
|
|
|
8848
8855
|
export interface PostMenuV4BrandSwapCategoryItemsRequest
|