export interface GetItemSKUOptionsQueryParams { itemNameOptions?: boolean; brandOptions?: boolean; modelOptions?: boolean; tagOptions?: boolean; } export interface CreateEditItemSKUBody { category: string; itemName: string; brand: string; model: string; sku: string; skuAlias?: string; minimumStock: number; safetyStock?: number; minimumAndSafetyStockSettings: string; allowMinimumAndSafetyStock: boolean; tagType: string; hasProductionDate: boolean; hasExpiredDate: boolean; hasBarcode: boolean; barcode?: string; imageInput?: File[]; firstImage?: File; secondImage?: File; defaultImage?: string; customFields: unknown; } export interface DeleteSKUBody { skuIds: string[]; } export interface GetItemSKUExistStatusQueryParams { sku: string; } export interface GetItemSKUDropdownQueryParams { itemName: string; withoutItemName: boolean; }