@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.765.0",
3
+ "version": "4.766.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -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?: number;
8753
+ generated: number;
8754
+ items: BulkGeneratedBarcodeDTO[];
8755
+ not_found: string[];
8756
+ [index: string]: any;
8747
8757
  }
8748
8758
 
8749
8759
  export interface PostMenuV4BrandGenerateBarcodesRequest