chore: try to add stop task more info #75

This commit is contained in:
duorameng
2026-04-30 16:08:22 +08:00
parent cfdf186b93
commit 40e37b797c
6 changed files with 91 additions and 22 deletions
+10 -6
View File
@@ -387,12 +387,16 @@ export interface RepoConfig {
}
export interface ExecutionResult {
TaskID: string
Success: boolean
Output: string
Error: string
Start: string
End: string
task_id: string
log_id?: string
success: boolean
status?: string
output?: string
error?: string
duration?: number
exit_code?: number
start_time?: string
end_time?: string
}
export interface TaskListResponse {