Feat/workflow retry (#11885)

This commit is contained in:
zxhlyh 2024-12-20 15:44:37 +08:00 committed by GitHub
commit 0c0120ef27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 690 additions and 51 deletions

View file

@ -52,10 +52,12 @@ export type NodeTracing = {
extras?: any
expand?: boolean // for UI
details?: NodeTracing[][] // iteration detail
retryDetail?: NodeTracing[] // retry detail
parallel_id?: string
parallel_start_node_id?: string
parent_parallel_id?: string
parent_parallel_start_node_id?: string
retry_index?: number
}
export type FetchWorkflowDraftResponse = {
@ -178,6 +180,7 @@ export type NodeFinishedResponse = {
}
created_at: number
files?: FileResponse[]
retry_index?: number
}
}