@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.
@@ -1868,6 +1868,12 @@ export interface ReorderMenuItemDTO {
1868
1868
  sequence: number;
1869
1869
  [index: string]: any;
1870
1870
  }
1871
+ export interface BulkGeneratedBarcodeDTO {
1872
+ item_id: string;
1873
+ barcode: string;
1874
+ generated: boolean;
1875
+ [index: string]: any;
1876
+ }
1871
1877
  export interface DraftModifierGroupEntityDTO {
1872
1878
  parent?: DraftModifierGroupDTO;
1873
1879
  children?: DraftModifierGroupDTO[];
@@ -6522,7 +6528,10 @@ export interface PostMenuV4BrandGenerateBarcodesBody {
6522
6528
  [index: string]: any;
6523
6529
  }
6524
6530
  export interface PostMenuV4BrandGenerateBarcodesResponse {
6525
- generated?: number;
6531
+ generated: number;
6532
+ items: BulkGeneratedBarcodeDTO[];
6533
+ not_found: string[];
6534
+ [index: string]: any;
6526
6535
  }
6527
6536
  export interface PostMenuV4BrandGenerateBarcodesRequest extends BaseRequest, PostMenuV4BrandGenerateBarcodesPath {
6528
6537
  body: PostMenuV4BrandGenerateBarcodesBody;