lemmy-js-client 0.17.0-rc.2 → 0.17.0-rc.3

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.
@@ -30,6 +30,9 @@ export interface CommunityResponse {
30
30
  community_view: CommunityView;
31
31
  }
32
32
  export interface FollowCommunityResponse {
33
+ /**
34
+ * An unfollow returns null.
35
+ */
33
36
  community_follower_view?: CommunityFollowerView;
34
37
  }
35
38
  export interface ListCommunities {
@@ -143,7 +143,7 @@ export interface ModStickyPostView {
143
143
  export interface CommunityFollowerView {
144
144
  community: CommunitySafe;
145
145
  follower: PersonSafe;
146
- pending?: boolean;
146
+ pending: boolean;
147
147
  }
148
148
  export interface CommunityBlockView {
149
149
  person: PersonSafe;
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.17.0-rc.2",
4
+ "version": "0.17.0-rc.3",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",