faros-airbyte-common 0.10.29 → 0.10.30
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.
- package/lib/bitbucket/types.d.ts +15 -54
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/lib/bitbucket/types.d.ts
CHANGED
|
@@ -180,55 +180,6 @@ export interface Environment {
|
|
|
180
180
|
readonly rank: number;
|
|
181
181
|
};
|
|
182
182
|
}
|
|
183
|
-
export interface Issue {
|
|
184
|
-
readonly priority: string;
|
|
185
|
-
readonly kind: string;
|
|
186
|
-
readonly title: string;
|
|
187
|
-
readonly state: string;
|
|
188
|
-
readonly createdOn: string;
|
|
189
|
-
readonly updatedOn: string;
|
|
190
|
-
readonly type: string;
|
|
191
|
-
readonly votes: number;
|
|
192
|
-
readonly watches: number;
|
|
193
|
-
readonly id: number;
|
|
194
|
-
readonly component: any;
|
|
195
|
-
readonly version: any;
|
|
196
|
-
readonly editedOn: any;
|
|
197
|
-
readonly milestone: any;
|
|
198
|
-
readonly repository: {
|
|
199
|
-
readonly type: string;
|
|
200
|
-
readonly name: string;
|
|
201
|
-
readonly fullName: string;
|
|
202
|
-
readonly uuid: string;
|
|
203
|
-
readonly links: {
|
|
204
|
-
readonly htmlUrl: string;
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
readonly links: {
|
|
208
|
-
readonly attachmentsUrl: string;
|
|
209
|
-
readonly watchUrl: string;
|
|
210
|
-
readonly commentsUrl: string;
|
|
211
|
-
readonly htmlUrl: string;
|
|
212
|
-
readonly voteUrl: string;
|
|
213
|
-
};
|
|
214
|
-
readonly reporter: {
|
|
215
|
-
readonly displayName: string;
|
|
216
|
-
readonly uuid: string;
|
|
217
|
-
readonly type: string;
|
|
218
|
-
readonly nickname: string;
|
|
219
|
-
readonly accountId: string;
|
|
220
|
-
readonly links: {
|
|
221
|
-
readonly htmlUrl: string;
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
|
-
readonly content: {
|
|
225
|
-
readonly raw: string;
|
|
226
|
-
readonly markup: string;
|
|
227
|
-
readonly html: string;
|
|
228
|
-
readonly type: string;
|
|
229
|
-
};
|
|
230
|
-
assignee: User;
|
|
231
|
-
}
|
|
232
183
|
export interface User {
|
|
233
184
|
readonly displayName: string;
|
|
234
185
|
readonly emailAddress?: string;
|
|
@@ -349,6 +300,11 @@ export interface PipelineStepState {
|
|
|
349
300
|
readonly name: string;
|
|
350
301
|
};
|
|
351
302
|
}
|
|
303
|
+
export interface PullRequestOrActivity {
|
|
304
|
+
readonly type: 'PullRequest' | 'PullRequestActivity';
|
|
305
|
+
readonly pullRequest?: PullRequest;
|
|
306
|
+
readonly activity?: PRActivity;
|
|
307
|
+
}
|
|
352
308
|
export interface PullRequest {
|
|
353
309
|
readonly description: string;
|
|
354
310
|
readonly title: string;
|
|
@@ -426,10 +382,6 @@ export interface PullRequest {
|
|
|
426
382
|
readonly author: User;
|
|
427
383
|
readonly mergeCommit: null | {
|
|
428
384
|
readonly hash: string;
|
|
429
|
-
readonly type: string;
|
|
430
|
-
readonly links: {
|
|
431
|
-
readonly htmlUrl: string;
|
|
432
|
-
};
|
|
433
385
|
};
|
|
434
386
|
readonly closedBy: null | User;
|
|
435
387
|
}
|
|
@@ -565,7 +517,16 @@ export interface Repository {
|
|
|
565
517
|
createdOn: string;
|
|
566
518
|
updatedOn: string;
|
|
567
519
|
mainBranch: string;
|
|
568
|
-
|
|
520
|
+
}
|
|
521
|
+
export interface Tag {
|
|
522
|
+
name: string;
|
|
523
|
+
message: string;
|
|
524
|
+
target: {
|
|
525
|
+
hash: string;
|
|
526
|
+
};
|
|
527
|
+
repository: {
|
|
528
|
+
fullName: string;
|
|
529
|
+
};
|
|
569
530
|
}
|
|
570
531
|
export interface WorkspaceUser {
|
|
571
532
|
readonly user: User;
|