lemmy-js-client 0.17.0-rc.2 → 0.17.0-rc.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
146
|
+
pending: boolean;
|
147
147
|
}
|
148
148
|
export interface CommunityBlockView {
|
149
149
|
person: PersonSafe;
|
package/package.json
CHANGED