fix(server): add paused property to JobCountsDto (#2112)

This commit is contained in:
Michel Heusschen 2023-03-29 17:33:03 +02:00 committed by GitHub
parent 76a07a3ebc
commit eda9e580c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 45 additions and 65 deletions

View file

@ -1284,6 +1284,12 @@ export interface JobCountsDto {
* @memberof JobCountsDto
*/
'waiting': number;
/**
*
* @type {number}
* @memberof JobCountsDto
*/
'paused': number;
}
/**
*