feat(ui): new WorkflowRuns using antd
This commit is contained in:
14
ui/src/domain/workflowRun.ts
Normal file
14
ui/src/domain/workflowRun.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { type WorkflowOutput } from "./workflow";
|
||||
|
||||
export interface WorkflowRunModel extends BaseModel {
|
||||
workflow: string;
|
||||
log: WorkflowRunLog[];
|
||||
error: string;
|
||||
succeed: boolean;
|
||||
}
|
||||
|
||||
export type WorkflowRunLog = {
|
||||
nodeName: string;
|
||||
error: string;
|
||||
outputs: WorkflowOutput[];
|
||||
};
|
||||
Reference in New Issue
Block a user