Skip to content

Commit 84c8b77

Browse files
committed
feat: add API Response types for Workflow execution
1 parent fb7b4cf commit 84c8b77

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/types.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,17 @@ export interface APIWorkflowItem {
163163
operations: WorkflowOperationItem[] | null;
164164
}
165165

166+
/**
167+
* Workflow Run Schema
168+
*/
169+
export interface APIWorkflowRunItem {
170+
status: string;
171+
started: string;
172+
finished: string;
173+
completed: string;
174+
result: { success: boolean; message: string };
175+
}
176+
166177
/**
167178
* Error object as defined in the OpenAPI schema
168179
*/

0 commit comments

Comments
 (0)