@compassdigital/sdk.typescript 4.765.0 → 4.766.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/interface/menu.d.ts +10 -1
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +11 -1
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -2096,6 +2096,13 @@ export interface ReorderMenuItemDTO {
|
|
|
2096
2096
|
[index: string]: any;
|
|
2097
2097
|
}
|
|
2098
2098
|
|
|
2099
|
+
export interface BulkGeneratedBarcodeDTO {
|
|
2100
|
+
item_id: string;
|
|
2101
|
+
barcode: string;
|
|
2102
|
+
generated: boolean;
|
|
2103
|
+
[index: string]: any;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2099
2106
|
export interface DraftModifierGroupEntityDTO {
|
|
2100
2107
|
parent?: DraftModifierGroupDTO;
|
|
2101
2108
|
children?: DraftModifierGroupDTO[];
|
|
@@ -8743,7 +8750,10 @@ export interface PostMenuV4BrandGenerateBarcodesBody {
|
|
|
8743
8750
|
}
|
|
8744
8751
|
|
|
8745
8752
|
export interface PostMenuV4BrandGenerateBarcodesResponse {
|
|
8746
|
-
generated
|
|
8753
|
+
generated: number;
|
|
8754
|
+
items: BulkGeneratedBarcodeDTO[];
|
|
8755
|
+
not_found: string[];
|
|
8756
|
+
[index: string]: any;
|
|
8747
8757
|
}
|
|
8748
8758
|
|
|
8749
8759
|
export interface PostMenuV4BrandGenerateBarcodesRequest
|