faros-airbyte-common 0.10.17 → 0.10.19

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.
@@ -111,6 +111,7 @@ export declare enum GitHubTool {
111
111
  }
112
112
  export type CopilotUsageSummary = {
113
113
  org: string;
114
+ team: string | null;
114
115
  } & GetResponseDataTypeFromEndpointMethod<typeof octokit.copilot.usageMetricsForOrg>[0];
115
116
  export type LanguageEditorBreakdown = CopilotUsageSummary['breakdown'][0];
116
117
  export type ContributorStats = {
@@ -95,7 +95,9 @@ export interface SprintReport {
95
95
  export interface SprintIssue {
96
96
  readonly key: string;
97
97
  readonly points: number;
98
+ readonly plannedPoints: number;
98
99
  readonly status: string;
100
+ readonly classification: string;
99
101
  readonly addedDuringSprint?: boolean;
100
102
  }
101
103
  export interface IssueField {