Skip to content

Commit e141fb8

Browse files
author
Shailesh Jagannath Padave
committed
Code cleanup
1 parent 1ed1362 commit e141fb8

6 files changed

Lines changed: 1438 additions & 1475 deletions

File tree

src/common/open-api/models/TaskRun.ts

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/common/open-api/models/WorkflowRun.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
/* eslint-disable */
44

55
import { Task } from './Task';
6-
import {SignalResponse} from "./SignalResponse";
76

8-
export interface WorkflowRun extends SignalResponse {
9-
priority?: number;
10-
variables?: Record<string, any>;
11-
tasks?: Array<Task>;
12-
createdBy?: string;
7+
export type WorkflowRun = {
8+
correlationId?: string;
139
createTime?: number;
10+
createdBy?: string;
11+
priority?: number;
12+
requestId?: string;
1413
status?: string;
14+
tasks?: Array<Task>;
1515
updateTime?: number;
16-
}
16+
workflowId?: string;
17+
variables?: Record<string, object>;
18+
input?: Record<string, object>;
19+
output?: Record<string, object>;
20+
}

0 commit comments

Comments
 (0)