lemmy-js-client 0.19.4-alpha.2 → 0.19.4-alpha.3

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -244,4 +244,3 @@ export { UpdateTotp } from "./types/UpdateTotp";
244
244
  export { UpdateTotpResponse } from "./types/UpdateTotpResponse";
245
245
  export { VerifyEmail } from "./types/VerifyEmail";
246
246
  export { VoteView } from "./types/VoteView";
247
- export { UploadImage, UploadImageResponse, ImageFile, DeleteImage, } from "./other_types";
@@ -6,4 +6,5 @@ export interface CommunityView {
6
6
  subscribed: SubscribedType;
7
7
  blocked: boolean;
8
8
  counts: CommunityAggregates;
9
+ banned_from_community: boolean;
9
10
  }
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.19.4-alpha.2",
4
+ "version": "0.19.4-alpha.3",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",
@@ -19,24 +19,24 @@
19
19
  "url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
20
20
  },
21
21
  "dependencies": {
22
- "cross-fetch": "^3.1.5",
22
+ "cross-fetch": "^4.0.0",
23
23
  "form-data": "^4.0.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^20.11.19",
27
27
  "@typescript-eslint/eslint-plugin": "^7.0.1",
28
28
  "@typescript-eslint/parser": "^7.0.1",
29
- "eslint": "^8.54.0",
30
- "eslint-plugin-prettier": "^5.0.1",
29
+ "eslint": "^8.56.0",
30
+ "eslint-plugin-prettier": "^5.1.3",
31
31
  "husky": "^9.0.11",
32
32
  "lint-staged": "^15.2.2",
33
33
  "prettier": "^3.2.5",
34
34
  "prettier-plugin-import-sort": "^0.0.7",
35
35
  "prettier-plugin-organize-imports": "^3.2.4",
36
36
  "prettier-plugin-packagejson": "^2.4.11",
37
- "sortpack": "^2.3.5",
38
- "typedoc": "^0.25.7",
39
- "typescript": "^5.3.2"
37
+ "sortpack": "^2.4.0",
38
+ "typedoc": "^0.25.8",
39
+ "typescript": "^5.3.3"
40
40
  },
41
41
  "types": "./dist/index.d.ts",
42
42
  "lint-staged": {