Files
stack/apps/orchestrator/src/api/agents/dto/agent-tree-response.dto.ts
Jason Woltje 03dd25f028
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
feat(orchestrator): MS23-P0-005 subagent tree endpoint (#714)
Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
2026-03-07 17:57:55 +00:00

10 lines
226 B
TypeScript

export class AgentTreeResponseDto {
sessionId!: string;
parentSessionId!: string | null;
status!: string;
agentType!: string | null;
taskSource!: string | null;
spawnedAt!: string;
completedAt!: string | null;
}