@compassdigital/sdk.typescript 4.755.0 → 4.756.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 +9 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +10 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +13 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/menu.ts +21 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -6514,6 +6514,19 @@ export interface GetMenuV4BrandGenerateBarcodeResponse {
|
|
|
6514
6514
|
}
|
|
6515
6515
|
export interface GetMenuV4BrandGenerateBarcodeRequest extends BaseRequest, GetMenuV4BrandGenerateBarcodePath {
|
|
6516
6516
|
}
|
|
6517
|
+
export interface PostMenuV4BrandGenerateBarcodesPath {
|
|
6518
|
+
id: string;
|
|
6519
|
+
}
|
|
6520
|
+
export interface PostMenuV4BrandGenerateBarcodesBody {
|
|
6521
|
+
item_ids: string[];
|
|
6522
|
+
[index: string]: any;
|
|
6523
|
+
}
|
|
6524
|
+
export interface PostMenuV4BrandGenerateBarcodesResponse {
|
|
6525
|
+
generated?: number;
|
|
6526
|
+
}
|
|
6527
|
+
export interface PostMenuV4BrandGenerateBarcodesRequest extends BaseRequest, PostMenuV4BrandGenerateBarcodesPath {
|
|
6528
|
+
body: PostMenuV4BrandGenerateBarcodesBody;
|
|
6529
|
+
}
|
|
6517
6530
|
export interface GetMenuV4BrandItemsPath {
|
|
6518
6531
|
id: string;
|
|
6519
6532
|
}
|