fix: add waiting_approval to Workflow status type

This commit is contained in:
Fam Zheng
2026-03-07 16:38:26 +00:00
parent 3500659e06
commit 938ba83f37

View File

@@ -10,7 +10,7 @@ export interface Workflow {
id: string
project_id: string
requirement: string
status: 'pending' | 'planning' | 'executing' | 'done' | 'failed'
status: 'pending' | 'planning' | 'executing' | 'waiting_approval' | 'done' | 'failed'
created_at: string
report: string
}