Skip to content

Commit 2424226

Browse files
committed
run npm run build
1 parent 5f98090 commit 2424226

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

dist/backlog.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,13 @@ var Backlog = /** @class */ (function (_super) {
676676
Backlog.prototype.postStar = function (params) {
677677
return this.post('stars', params);
678678
};
679+
/**
680+
* https://developer.nulab.com/docs/backlog/api/2/remove-star/
681+
*/
682+
Backlog.prototype.removeStar = function (starId) {
683+
var endpoint = "stars/".concat(starId);
684+
return this.delete(endpoint);
685+
};
679686
/**
680687
* https://developer.nulab.com/docs/backlog/api/2/get-notification/
681688
*/

dist/backlog.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/backlog.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,10 @@ export default class Backlog extends Request {
444444
* https://developer.nulab.com/docs/backlog/api/2/add-star/
445445
*/
446446
postStar(params: Option.Project.PostStarParams): Promise<void>;
447+
/**
448+
* https://developer.nulab.com/docs/backlog/api/2/remove-star/
449+
*/
450+
removeStar(starId: number): Promise<void>;
447451
/**
448452
* https://developer.nulab.com/docs/backlog/api/2/get-notification/
449453
*/

0 commit comments

Comments
 (0)