feat: add 'blocked' status to tasks and todos (#22735)

This commit is contained in:
anj-s
2026-03-17 16:24:26 -07:00
committed by GitHub
parent e1eefffcf1
commit b8719bcd47
13 changed files with 64 additions and 9 deletions
+6 -1
View File
@@ -823,7 +823,12 @@ export type ToolResultDisplay =
| TodoList
| SubagentProgress;
export type TodoStatus = 'pending' | 'in_progress' | 'completed' | 'cancelled';
export type TodoStatus =
| 'pending'
| 'in_progress'
| 'completed'
| 'cancelled'
| 'blocked';
export interface Todo {
description: string;