lemmy-js-client 0.20.0-api-v4.15 → 0.20.0-api-v4.17
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.d.ts +1 -1
- package/dist/http.js +2 -2
- package/dist/types/AuthenticateWithOauth.d.ts +1 -0
- package/dist/types/CommentAggregates.d.ts +2 -0
- package/dist/types/CreateOAuthProvider.d.ts +1 -0
- package/dist/types/EditOAuthProvider.d.ts +1 -0
- package/dist/types/LemmyErrorType.d.ts +2 -0
- package/dist/types/OAuthProvider.d.ts +4 -0
- package/dist/types/PostAggregates.d.ts +2 -0
- package/package.json +3 -3
package/dist/http.d.ts
CHANGED
@@ -691,7 +691,7 @@ export declare class LemmyHttp {
|
|
691
691
|
/**
|
692
692
|
* Mark all replies as read.
|
693
693
|
*
|
694
|
-
* `HTTP.POST /account/mention/
|
694
|
+
* `HTTP.POST /account/mention/mark_as_read/all`
|
695
695
|
*/
|
696
696
|
markAllAsRead(options?: RequestOptions): Promise<GetRepliesResponse>;
|
697
697
|
/**
|
package/dist/http.js
CHANGED
@@ -745,10 +745,10 @@ class LemmyHttp {
|
|
745
745
|
/**
|
746
746
|
* Mark all replies as read.
|
747
747
|
*
|
748
|
-
* `HTTP.POST /account/mention/
|
748
|
+
* `HTTP.POST /account/mention/mark_as_read/all`
|
749
749
|
*/
|
750
750
|
markAllAsRead(options) {
|
751
|
-
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Post, "/account/mention/
|
751
|
+
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Post, "/account/mention/mark_as_read/all", {}, options);
|
752
752
|
}
|
753
753
|
/**
|
754
754
|
* Save your user settings.
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
3
|
"description": "A javascript / typescript client for Lemmy",
|
4
|
-
"version": "0.20.0-api-v4.
|
4
|
+
"version": "0.20.0-api-v4.17",
|
5
5
|
"author": "Dessalines <tyhou13@gmx.com>",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|
@@ -31,11 +31,11 @@
|
|
31
31
|
"prettier-plugin-organize-imports": "^4.0.0",
|
32
32
|
"prettier-plugin-packagejson": "^2.5.1",
|
33
33
|
"sortpack": "^2.4.0",
|
34
|
-
"typedoc": "^0.
|
34
|
+
"typedoc": "^0.27.0",
|
35
35
|
"typescript": "^5.5.4",
|
36
36
|
"typescript-eslint": "^8.7.0"
|
37
37
|
},
|
38
|
-
"packageManager": "pnpm@9.
|
38
|
+
"packageManager": "pnpm@9.15.0",
|
39
39
|
"types": "./dist/index.d.ts",
|
40
40
|
"lint-staged": {
|
41
41
|
"*.{ts,tsx,js}": [
|