import type { ScanStatusV3 } from '../schemas/ScanStatusV3'; /** * Individual scan result item */ export interface BulkScanResultItemV3 { /** * Name of the package */ packageName?: string; /** * Scan identifier * @format uuid */ scanId?: string; scanStatus?: ScanStatusV3; /** * Version of the package */ version?: string; }