import type { EnvironmentType } from '../schemas/EnvironmentType'; /** * Artifact deployments Detail */ export interface ArtifactDeploymentsDetail { count?: number; envIdentifier?: string; envName?: string; envType?: EnvironmentType; infraIdentifier?: string; infraName?: string; lastDeployedAt?: string; lastDeployedById?: string; lastDeployedByName?: string; lastPipelineExecutionId?: string; lastPipelineExecutionName?: string; orgIdentifier?: string; pipelineId?: string; projectIdentifier?: string; serviceIdentifier?: string; serviceName?: string; }