faros-airbyte-common 0.10.30 → 0.10.31

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.
@@ -149,11 +149,6 @@ export interface DeploymentsState {
149
149
  readonly name: string;
150
150
  };
151
151
  }
152
- export interface DiffStat {
153
- readonly linesAdded: number;
154
- readonly linesDeleted: number;
155
- readonly filesChanged: number;
156
- }
157
152
  export interface Environment {
158
153
  readonly name: string;
159
154
  readonly environmentLockEnabled: boolean;
@@ -317,7 +312,7 @@ export interface PullRequest {
317
312
  readonly id: number;
318
313
  readonly commentCount: number;
319
314
  readonly taskCount: number;
320
- readonly diffStat?: DiffStat;
315
+ readonly diffStats?: ReadonlyArray<PRDiffStat>;
321
316
  readonly calculatedActivity?: CalculatedActivity;
322
317
  readonly links: {
323
318
  readonly declineUrl: string;
@@ -495,15 +490,16 @@ export interface PRActivity {
495
490
  }
496
491
  export interface PRDiffStat {
497
492
  readonly status: string;
498
- readonly old: any;
499
493
  readonly linesRemoved: number;
500
494
  readonly linesAdded: number;
501
- readonly type: string;
495
+ readonly old: {
496
+ readonly path: string;
497
+ readonly escapedPath: string;
498
+ } | null;
502
499
  readonly new: {
503
500
  readonly path: string;
504
501
  readonly escapedPath: string;
505
- readonly type: string;
506
- };
502
+ } | null;
507
503
  }
508
504
  export interface Repository {
509
505
  workspace: string;