Merge branch 'next' into feat/new-workflow

This commit is contained in:
Fu Diwei
2025-01-12 21:27:35 +08:00
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 = {