faros-airbyte-common 0.9.57 → 0.9.59

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.
@@ -85,14 +85,9 @@ export interface Sprint extends AgileModels.Sprint {
85
85
  readonly activatedDate?: string;
86
86
  }
87
87
  export interface SprintReport {
88
- readonly id: number;
89
- readonly boardId?: string;
90
- readonly closedAt?: Date;
91
- readonly completedPoints?: number;
92
- readonly completedInAnotherSprintPoints?: number;
93
- readonly notCompletedPoints?: number;
94
- readonly puntedPoints?: number;
95
- readonly plannedPoints?: number;
88
+ readonly sprintId: number;
89
+ readonly boardId: string;
90
+ readonly closedAt: Date;
96
91
  readonly issues: SprintIssue[];
97
92
  }
98
93
  export interface SprintIssue {