Skip to content

Commit f3030df

Browse files
authored
Fix changelog typings in issueBean.ts (both v2 and v3) (#126)
1 parent de7b2a1 commit f3030df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/version2/models/issueBean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface IssueBean {
2828
/** The metadata for the fields on the issue that can be amended. */
2929
editmeta?: IssueUpdateMetadata[];
3030
/** Details of changelogs associated with the issue. */
31-
changelog?: PageOfChangelogs[];
31+
changelog?: PageOfChangelogs;
3232
/** The versions of each field on the issue. */
3333
versionedRepresentations?: {};
3434
fieldsToInclude?: IncludedFields;

src/version3/models/issueBean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface IssueBean {
2828
/** The metadata for the fields on the issue that can be amended. */
2929
editmeta?: IssueUpdateMetadata[];
3030
/** Details of changelogs associated with the issue. */
31-
changelog?: PageOfChangelogs[];
31+
changelog?: PageOfChangelogs;
3232
/** The versions of each field on the issue. */
3333
versionedRepresentations?: {};
3434
fieldsToInclude?: IncludedFields;

0 commit comments

Comments
 (0)