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 | 
| 146 | 
            +
                pending: boolean;
         | 
| 147 147 | 
             
            }
         | 
| 148 148 | 
             
            export interface CommunityBlockView {
         | 
| 149 149 | 
             
                person: PersonSafe;
         | 
    
        package/package.json
    CHANGED