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.
package/lib/services/accounts.js
CHANGED
|
@@ -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;
|