import type { BuildDetails } from '../schemas/BuildDetails'; import type { DeploymentDetails } from '../schemas/DeploymentDetails'; import type { SbomDetails } from '../schemas/SbomDetails'; import type { SlsaDetails } from '../schemas/SlsaDetails'; import type { StoDetails } from '../schemas/StoDetails'; /** * Docker Artifact Detail */ export interface DockerArtifactIntegrationDetail { buildDetails?: BuildDetails; deploymentsDetails?: DeploymentDetails; sbomDetails?: SbomDetails; slsaDetails?: SlsaDetails; stoDetails?: StoDetails; }