@compassdigital/sdk.typescript 4.667.0 → 4.668.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.
@@ -1915,6 +1915,19 @@ export interface CatalogBackupVersionDTO {
1915
1915
  version_id?: string;
1916
1916
  last_modified?: string;
1917
1917
  }
1918
+ export interface BrandV4WarningDTO {
1919
+ barcode?: string;
1920
+ brand_id?: string;
1921
+ brand_name?: string;
1922
+ type?: string;
1923
+ items?: BrandV4WarningItemDTO[];
1924
+ }
1925
+ export interface BrandV4WarningItemDTO {
1926
+ posid?: string;
1927
+ id?: string;
1928
+ item_name?: string;
1929
+ [index: string]: any;
1930
+ }
1918
1931
  export interface ImportMenuWorksSelectionDTO {
1919
1932
  meal_period_id?: number;
1920
1933
  station_ids?: number[];
@@ -6750,6 +6763,14 @@ export interface PostMenuV4BrandCatalogBackupRestoreResponse {
6750
6763
  export interface PostMenuV4BrandCatalogBackupRestoreRequest extends BaseRequest, PostMenuV4BrandCatalogBackupRestorePath {
6751
6764
  body: PostMenuV4BrandCatalogBackupRestoreBody;
6752
6765
  }
6766
+ export interface GetMenuV4BrandVerifyPublishPath {
6767
+ id: string;
6768
+ }
6769
+ export interface GetMenuV4BrandVerifyPublishResponse {
6770
+ warnings?: BrandV4WarningDTO[];
6771
+ }
6772
+ export interface GetMenuV4BrandVerifyPublishRequest extends BaseRequest, GetMenuV4BrandVerifyPublishPath {
6773
+ }
6753
6774
  export interface PostMenuV4BrandPublishPath {
6754
6775
  id: string;
6755
6776
  }