backlog-js 0.13.0 → 0.13.1
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/CHANGELOG.md +4 -0
- package/dist/types/entity.d.ts +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.1](https://github.com/nulab/backlog-js/compare/0.13.0...0.13.1) (2023-07-21)
|
|
4
|
+
|
|
5
|
+
* Fix Issue and PullRequest type #79 [#80](https://github.com/nulab/backlog-js/pull/80) ([mmktomato](https://github.com/mmktomato))
|
|
6
|
+
|
|
3
7
|
## [0.13.0](https://github.com/nulab/backlog-js/compare/0.12.6...0.13.0) (2023-06-02)
|
|
4
8
|
|
|
5
9
|
* add type annotation for response [#77](https://github.com/nulab/backlog-js/pull/77) ([mmktomato](https://github.com/mmktomato))
|
package/dist/types/entity.d.ts
CHANGED
|
@@ -203,14 +203,14 @@ export declare namespace Issue {
|
|
|
203
203
|
id: number;
|
|
204
204
|
projectId: number;
|
|
205
205
|
issueKey: string;
|
|
206
|
-
keyId:
|
|
206
|
+
keyId: number;
|
|
207
207
|
issueType: IssueType;
|
|
208
208
|
summary: string;
|
|
209
209
|
description: string;
|
|
210
|
-
resolution
|
|
210
|
+
resolution?: Resolution;
|
|
211
211
|
priority: Priority;
|
|
212
212
|
status: Project.ProjectStatus;
|
|
213
|
-
assignee
|
|
213
|
+
assignee?: User.User;
|
|
214
214
|
category: Project.Category[];
|
|
215
215
|
versions: Project.Version[];
|
|
216
216
|
milestone: Project.Version[];
|
|
@@ -324,7 +324,7 @@ export declare namespace PullRequest {
|
|
|
324
324
|
base: string;
|
|
325
325
|
branch: string;
|
|
326
326
|
status: Status;
|
|
327
|
-
assignee
|
|
327
|
+
assignee?: User.User;
|
|
328
328
|
issue: Issue.Issue;
|
|
329
329
|
baseCommit?: string;
|
|
330
330
|
branchCommit?: string;
|