Fixes 47563: Provide an API to fetch running task executions

This commit is contained in:
Dirk Baeumer
2018-04-20 11:48:11 +02:00
parent 54322a1ea1
commit bcfb7d4f16
10 changed files with 103 additions and 58 deletions

View File

@@ -86,4 +86,9 @@ export interface TaskDTO {
export interface TaskExecutionDTO {
id: string;
task: TaskDTO;
}
export interface TaskFilterDTO {
version?: string;
type?: string;
}