faros-airbyte-common 0.9.83 → 0.9.85
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 +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/lib/jira/types.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export interface IssueCompact {
|
|
|
8
8
|
readonly updated?: Date;
|
|
9
9
|
readonly boardId?: string;
|
|
10
10
|
readonly additionalFields?: ReadonlyArray<[string, string]>;
|
|
11
|
+
readonly updateAdditionalFields?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export interface Issue extends IssueCompact {
|
|
13
14
|
readonly type: string;
|
|
@@ -29,7 +30,6 @@ export interface Issue extends IssueCompact {
|
|
|
29
30
|
readonly points?: number;
|
|
30
31
|
readonly epic?: string;
|
|
31
32
|
readonly sprintInfo?: SprintInfo;
|
|
32
|
-
readonly additionalFields: ReadonlyArray<[string, string]>;
|
|
33
33
|
readonly url: string;
|
|
34
34
|
readonly resolution: string;
|
|
35
35
|
readonly resolutionDate: Date;
|