/** * Pipeline execution context. */ export interface PipelineContextV3 { /** * Execution identifier. */ executionId: string; /** * Organization identifier. */ orgId: string; /** * Pipeline identifier. */ pipelineId: string; /** * Project identifier. */ projectId: string; /** * Stage identifier. */ stageId: string; /** * Step identifier. */ stepId?: string; }