lemmy-js-client 0.17.2-rc.12 → 0.17.2-rc.13
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 +2 -2
- package/package.json +14 -15
package/dist/http.d.ts
CHANGED
@@ -5,9 +5,9 @@ import { AddModToCommunityResponse } from "./types/AddModToCommunityResponse";
|
|
5
5
|
import { ApproveRegistrationApplication } from "./types/ApproveRegistrationApplication";
|
6
6
|
import { BanFromCommunity } from "./types/BanFromCommunity";
|
7
7
|
import { BanFromCommunityResponse } from "./types/BanFromCommunityResponse";
|
8
|
-
import { BannedPersonsResponse } from "./types/BannedPersonsResponse";
|
9
8
|
import { BanPerson } from "./types/BanPerson";
|
10
9
|
import { BanPersonResponse } from "./types/BanPersonResponse";
|
10
|
+
import { BannedPersonsResponse } from "./types/BannedPersonsResponse";
|
11
11
|
import { BlockCommunity } from "./types/BlockCommunity";
|
12
12
|
import { BlockCommunityResponse } from "./types/BlockCommunityResponse";
|
13
13
|
import { BlockPerson } from "./types/BlockPerson";
|
@@ -92,7 +92,6 @@ import { MarkCommentReplyAsRead } from "./types/MarkCommentReplyAsRead";
|
|
92
92
|
import { MarkPersonMentionAsRead } from "./types/MarkPersonMentionAsRead";
|
93
93
|
import { MarkPostAsRead } from "./types/MarkPostAsRead";
|
94
94
|
import { MarkPrivateMessageAsRead } from "./types/MarkPrivateMessageAsRead";
|
95
|
-
import { UploadImage, UploadImageResponse } from "./types/others";
|
96
95
|
import { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset";
|
97
96
|
import { PasswordReset } from "./types/PasswordReset";
|
98
97
|
import { PersonMentionResponse } from "./types/PersonMentionResponse";
|
@@ -124,6 +123,7 @@ import { SearchResponse } from "./types/SearchResponse";
|
|
124
123
|
import { SiteResponse } from "./types/SiteResponse";
|
125
124
|
import { TransferCommunity } from "./types/TransferCommunity";
|
126
125
|
import { VerifyEmail } from "./types/VerifyEmail";
|
126
|
+
import { UploadImage, UploadImageResponse } from "./types/others";
|
127
127
|
/**
|
128
128
|
* Helps build lemmy HTTP requests.
|
129
129
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
|
-
"version": "0.17.2-rc.
|
3
|
+
"version": "0.17.2-rc.13",
|
4
4
|
"description": "A javascript / typescript client for Lemmy",
|
5
5
|
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
6
6
|
"license": "AGPL-3.0",
|
@@ -12,7 +12,7 @@
|
|
12
12
|
],
|
13
13
|
"scripts": {
|
14
14
|
"build": "tsc",
|
15
|
-
"docs": "typedoc src/index.ts
|
15
|
+
"docs": "typedoc src/index.ts",
|
16
16
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check src",
|
17
17
|
"prepare": "yarn run build && husky install"
|
18
18
|
},
|
@@ -30,21 +30,20 @@
|
|
30
30
|
"form-data": "^4.0.0"
|
31
31
|
},
|
32
32
|
"devDependencies": {
|
33
|
-
"@types/node": "^
|
34
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
35
|
-
"@typescript-eslint/parser": "^5.
|
36
|
-
"eslint": "^8.
|
33
|
+
"@types/node": "^20.1.2",
|
34
|
+
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
35
|
+
"@typescript-eslint/parser": "^5.59.5",
|
36
|
+
"eslint": "^8.40.0",
|
37
37
|
"eslint-plugin-prettier": "^4.2.1",
|
38
|
-
"husky": "^8.0.
|
39
|
-
"lint-staged": "^13.
|
40
|
-
"prettier": "^2.
|
38
|
+
"husky": "^8.0.3",
|
39
|
+
"lint-staged": "^13.2.2",
|
40
|
+
"prettier": "^2.8.8",
|
41
41
|
"prettier-plugin-import-sort": "^0.0.7",
|
42
|
-
"prettier-plugin-organize-imports": "^3.
|
43
|
-
"prettier-plugin-packagejson": "^2.
|
44
|
-
"sortpack": "^2.3.
|
45
|
-
"typedoc": "^0.
|
46
|
-
"
|
47
|
-
"typescript": "^4.7.4"
|
42
|
+
"prettier-plugin-organize-imports": "^3.2.2",
|
43
|
+
"prettier-plugin-packagejson": "^2.4.3",
|
44
|
+
"sortpack": "^2.3.4",
|
45
|
+
"typedoc": "^0.24.7",
|
46
|
+
"typescript": "^5.0.4"
|
48
47
|
},
|
49
48
|
"importSort": {
|
50
49
|
".js, .jsx, .ts, .tsx": {
|