lemmy-js-client 0.19.4-alpha.13 → 0.19.4-alpha.16

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -35,18 +35,8 @@ let jwt = await client.login(loginForm).jwt;
35
35
 
36
36
  ## Development
37
37
 
38
- You can use [yalc](https://github.com/wclr/yalc) to develop and test changes locally:
38
+ Use `pnpm add` to develop and test changes locally:
39
39
 
40
40
  ```
41
- pnpm i --global add yalc
42
-
43
- # Go to lemmy-js-client dir
44
- yalc publish --push
45
-
46
- # Go to your client dir
47
- yalc add lemmy-js-client
48
-
49
- # To do updates, go back to the lemmy-js-client dir
50
- # This also updates it, in every dir you've added it.
51
- yalc publish --push
41
+ pnpm add path/to/lemmy-js-client
52
42
  ```
@@ -1,5 +1,6 @@
1
1
  import type { Person } from "./Person";
2
2
  export interface VoteView {
3
3
  creator: Person;
4
+ creator_banned_from_community: boolean;
4
5
  score: number;
5
6
  }
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.13",
4
+ "version": "0.19.4-alpha.16",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",