import type { ArtifactType } from '../schemas/ArtifactType'; import type { PackageType } from '../schemas/PackageType'; /** * Harness Artifact Summary */ export interface ArtifactSummary { artifactType?: ArtifactType; createdAt?: string; /** * Timestamp in milliseconds when the registry was soft-deleted */ deletedAt?: string; /** * @format int64 */ downloadsCount?: number; imageName: string; labels?: string[]; modifiedAt?: string; packageType: PackageType; registryUUID: string; uuid: string; }