Merge pull request #413 from usual2970/feat/dashboard

refine the dashboard
This commit is contained in:
Yoan.liu
2025-01-12 20:45:42 +08:00
committed by GitHub
5 changed files with 218 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
import type { WorkflowModel } from "./workflow";
export interface WorkflowRunModel extends BaseModel {
workflowId: string;
status: string;
@@ -6,6 +8,9 @@ export interface WorkflowRunModel extends BaseModel {
endedAt: ISO8601String;
logs: WorkflowRunLog[];
error: string;
expand?: {
workflowId?: WorkflowModel;
};
}
export type WorkflowRunLog = {