Files
certimate/ui/src/domain/workflowRun.ts
2025-01-02 20:24:16 +08:00

20 lines
362 B
TypeScript

export interface WorkflowRunModel extends BaseModel {
workflow: string;
log: WorkflowRunLog[];
error: string;
succeed: boolean;
}
export type WorkflowRunLog = {
nodeName: string;
error: string;
outputs: WorkflowRunLogOutput[];
};
export type WorkflowRunLogOutput = {
time: ISO8601String;
title: string;
content: string;
error: string;
};