Generated by Spark: Add workflow filtering by status (success, failed, running)

This commit is contained in:
2026-01-17 10:06:37 +00:00
committed by GitHub
parent be1f1d0959
commit eb895f70f5
3 changed files with 323 additions and 3 deletions

View File

@@ -237,6 +237,8 @@ export interface Workflow {
nodes: WorkflowNode[]
connections: WorkflowConnection[]
isActive: boolean
status?: 'success' | 'failed' | 'running'
lastRun?: number
createdAt: number
updatedAt: number
}