lemmy-js-client 1.0.0-post-notifications.2 → 1.0.0-post-notifications.4
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/dist/http.js +2 -2
- package/dist/types/NotificationView.d.ts +1 -0
- package/package.json +1 -1
package/dist/http.js
CHANGED
@@ -608,7 +608,7 @@ let LemmyHttp = class LemmyHttp extends runtime_1.Controller {
|
|
608
608
|
* @summary Get your inbox (replies, comment mentions, post mentions, and messages)
|
609
609
|
*/
|
610
610
|
async listNotifications(form, options) {
|
611
|
-
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Get, "/account/
|
611
|
+
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Get, "/account/notifications", form, options);
|
612
612
|
}
|
613
613
|
/**
|
614
614
|
* @summary Verify your email
|
@@ -1628,7 +1628,7 @@ __decorate([
|
|
1628
1628
|
], LemmyHttp.prototype, "getUnreadCount", null);
|
1629
1629
|
__decorate([
|
1630
1630
|
(0, runtime_1.Security)("bearerAuth"),
|
1631
|
-
(0, runtime_1.Get)("/account/
|
1631
|
+
(0, runtime_1.Get)("/account/notifications"),
|
1632
1632
|
(0, runtime_1.Tags)("Account"),
|
1633
1633
|
__param(0, (0, runtime_1.Queries)()),
|
1634
1634
|
__param(1, (0, runtime_1.Inject)())
|
package/package.json
CHANGED