starta.apiclient 1.37.1063 → 1.37.1069

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.
@@ -64,4 +64,5 @@ export default class Accounts {
64
64
  executor: undefined;
65
65
  } | undefined;
66
66
  }): Promise<import("../types").StartaResponse>;
67
+ getNotifications(login: string): Promise<import("../types").StartaResponse>;
67
68
  }
@@ -167,6 +167,12 @@ var Accounts = /** @class */ (function () {
167
167
  method: 'GET',
168
168
  });
169
169
  };
170
+ Accounts.prototype.getNotifications = function (login) {
171
+ return this._requestRunner.performRequest({
172
+ url: "comm/accounts/".concat(login, "/notifications"),
173
+ method: 'GET',
174
+ });
175
+ };
170
176
  return Accounts;
171
177
  }());
172
178
  exports.default = Accounts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starta.apiclient",
3
- "version": "1.37.1063",
3
+ "version": "1.37.1069",
4
4
  "main": "./lib/index.js",
5
5
  "description": "Wrapper for starta.one api",
6
6
  "author": "Collaboracia OÜ",