@compassdigital/sdk.typescript 4.750.0 → 4.752.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 +8 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/messages/events/FrictionlessOrderFailureEvent.d.ts +2 -0
- package/lib/messages/events/FrictionlessOrderFailureEvent.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/menu.ts +14 -0
- package/src/messages/events/FrictionlessOrderFailureEvent.ts +4 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -6506,6 +6506,14 @@ export interface PatchMenuV4BrandMenusReorderResponse {
|
|
|
6506
6506
|
export interface PatchMenuV4BrandMenusReorderRequest extends BaseRequest, PatchMenuV4BrandMenusReorderPath {
|
|
6507
6507
|
body: PatchMenuV4BrandMenusReorderBody;
|
|
6508
6508
|
}
|
|
6509
|
+
export interface GetMenuV4BrandGenerateBarcodePath {
|
|
6510
|
+
id: string;
|
|
6511
|
+
}
|
|
6512
|
+
export interface GetMenuV4BrandGenerateBarcodeResponse {
|
|
6513
|
+
barcode?: string;
|
|
6514
|
+
}
|
|
6515
|
+
export interface GetMenuV4BrandGenerateBarcodeRequest extends BaseRequest, GetMenuV4BrandGenerateBarcodePath {
|
|
6516
|
+
}
|
|
6509
6517
|
export interface GetMenuV4BrandItemsPath {
|
|
6510
6518
|
id: string;
|
|
6511
6519
|
}
|