Skip to content

Commit

Permalink
Merge pull request #80 from nulab/79/fix-issue-pr-type
Browse files Browse the repository at this point in the history
Fix Issue and PullRequest type #79
  • Loading branch information
mmktomato authored Jul 21, 2023
2 parents 5095779 + ea96f39 commit e46422f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/types/entity.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,14 @@ export declare namespace Issue {
id: number;
projectId: number;
issueKey: string;
keyId: 1;
keyId: number;
issueType: IssueType;
summary: string;
description: string;
resolution: Resolution;
resolution?: Resolution;
priority: Priority;
status: Project.ProjectStatus;
assignee: User.User;
assignee?: User.User;
category: Project.Category[];
versions: Project.Version[];
milestone: Project.Version[];
Expand Down Expand Up @@ -324,7 +324,7 @@ export declare namespace PullRequest {
base: string;
branch: string;
status: Status;
assignee: User.User;
assignee?: User.User;
issue: Issue.Issue;
baseCommit?: string;
branchCommit?: string;
Expand Down
8 changes: 4 additions & 4 deletions src/entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,14 +234,14 @@ export namespace Issue {
id: number;
projectId: number;
issueKey: string;
keyId: 1;
keyId: number;
issueType: IssueType;
summary: string;
description: string;
resolution: Resolution;
resolution?: Resolution;
priority: Priority;
status: Project.ProjectStatus;
assignee: User.User;
assignee?: User.User;
category: Project.Category[];
versions: Project.Version[];
milestone: Project.Version[];
Expand Down Expand Up @@ -369,7 +369,7 @@ export namespace PullRequest {
base: string;
branch: string;
status: Status;
assignee: User.User;
assignee?: User.User;
issue: Issue.Issue;
baseCommit?: string;
branchCommit?: string;
Expand Down

0 comments on commit e46422f

Please sign in to comment.