faros-airbyte-common 0.10.18 → 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.
- package/lib/jira/types.d.ts +2 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/lib/jira/types.d.ts
CHANGED
|
@@ -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 {
|