Refactored to provide better API for Builds

Signed-off-by: Andre Wanlin <awanlin@rapidrtc.com>
This commit is contained in:
Andre Wanlin
2021-11-13 11:25:46 -06:00
parent a77526afcd
commit 868f1dae99
7 changed files with 801 additions and 406 deletions
+16
View File
@@ -251,3 +251,19 @@ export enum PullRequestVoteStatus {
WaitingForAuthor = -5,
Rejected = -10,
}
export type BuildRun = {
id?: number;
title: string;
link?: string;
status?: BuildStatus;
result?: BuildResult;
queueTime?: string;
startTime?: string;
finishTime?: string;
source: string;
uniqueName?: string;
};
export type BuildRunOptions = {
top?: number;
};