faros-airbyte-common 0.16.7 → 0.16.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@ import { AxiosInstance } from 'axios';
|
|
|
2
2
|
import { IBuildApi } from 'azure-devops-node-api/BuildApi';
|
|
3
3
|
import { ICoreApi } from 'azure-devops-node-api/CoreApi';
|
|
4
4
|
import { IGitApi } from 'azure-devops-node-api/GitApi';
|
|
5
|
-
import {
|
|
5
|
+
import { BuildArtifact, BuildRepository, TimelineRecord as BaseTimelineRecord } from 'azure-devops-node-api/interfaces/BuildInterfaces';
|
|
6
6
|
import { IdentityRef } from 'azure-devops-node-api/interfaces/common/VSSInterfaces';
|
|
7
7
|
import * as GitInterfaces from 'azure-devops-node-api/interfaces/GitInterfaces';
|
|
8
8
|
import { GraphUser } from 'azure-devops-node-api/interfaces/GraphInterfaces';
|
|
@@ -50,23 +50,14 @@ export interface GraphUserResponse {
|
|
|
50
50
|
export interface Pipeline extends BasePipeline {
|
|
51
51
|
project: ProjectReference;
|
|
52
52
|
}
|
|
53
|
-
export interface Build extends Omit<BaseBuild, 'reason' | 'status' | 'result'> {
|
|
54
|
-
artifacts: BuildArtifact[];
|
|
55
|
-
coverageStats: CodeCoverageStatistics[];
|
|
56
|
-
jobs: TimelineRecord[];
|
|
57
|
-
reason: string;
|
|
58
|
-
status: string;
|
|
59
|
-
result: string;
|
|
60
|
-
}
|
|
61
53
|
export interface Run extends Omit<BaseRun, 'result' | 'state'> {
|
|
62
54
|
project: ProjectReference;
|
|
63
55
|
result: string;
|
|
64
56
|
state: string;
|
|
65
57
|
artifacts: BuildArtifact[];
|
|
66
58
|
coverageStats: CodeCoverageStatistics[];
|
|
67
|
-
jobs: TimelineRecord[];
|
|
68
59
|
stages: TimelineRecord[];
|
|
69
|
-
|
|
60
|
+
startTime?: Date;
|
|
70
61
|
repository: BuildRepository;
|
|
71
62
|
reason: string;
|
|
72
63
|
sourceBranch?: string;
|