@compassdigital/sdk.typescript 4.667.0 → 4.669.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 +8 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +21 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/order.d.ts +0 -1
- package/lib/interface/order.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/menu.ts +29 -0
- package/src/interface/order.ts +0 -2
package/lib/interface/menu.d.ts
CHANGED
|
@@ -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
|
}
|