import type { StoDetails } from '../schemas/StoDetails'; /** * Harness Artifact Layers */ export interface DockerManifestDetails { createdAt?: string; digest: string; /** * @format int64 */ downloadsCount?: number; isQuarantined?: boolean; osArch: string; quarantineReason?: string; size?: string; stoDetails?: StoDetails; stoExecutionId?: string; stoPipelineId?: string; }