faros-airbyte-common 0.18.8 → 0.18.10

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.
@@ -308,6 +308,7 @@ export interface PullRequest {
308
308
  readonly state: string;
309
309
  readonly reason: string;
310
310
  readonly updatedOn: string;
311
+ readonly closedOn?: string;
311
312
  readonly closeSourceBranch: boolean;
312
313
  readonly id: number;
313
314
  readonly commentCount: number;
@@ -47,7 +47,7 @@ export type FarosMergeRequestOutput = {
47
47
  id: string;
48
48
  };
49
49
  };
50
- } & Pick<Camelize<MergeRequestSchema>, 'iid' | 'title' | 'description' | 'state' | 'webUrl' | 'createdAt' | 'updatedAt' | 'mergedAt' | 'commitCount' | 'userNotesCount' | 'diffStatsSummary' | 'mergeCommitSha'>;
50
+ } & Pick<Camelize<MergeRequestSchema>, 'iid' | 'title' | 'description' | 'state' | 'webUrl' | 'createdAt' | 'updatedAt' | 'mergedAt' | 'closedAt' | 'commitCount' | 'userNotesCount' | 'diffStatsSummary' | 'mergeCommitSha'>;
51
51
  export type FarosMergeRequestReviewOutput = {
52
52
  readonly __brand: 'FarosMergeRequestReview';
53
53
  group_id: string;