lemmy-js-client 0.18.1 → 0.18.3-rc.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,5 +9,6 @@ export interface GetPosts {
9
9
  community_id?: CommunityId;
10
10
  community_name?: string;
11
11
  saved_only?: boolean;
12
+ moderator_view?: boolean;
12
13
  auth?: string;
13
14
  }
@@ -7,6 +7,8 @@ export interface LocalUser {
7
7
  person_id: PersonId;
8
8
  email?: string;
9
9
  show_nsfw: boolean;
10
+ blur_nsfw: boolean;
11
+ auto_expand: boolean;
10
12
  theme: string;
11
13
  default_sort_type: SortType;
12
14
  default_listing_type: ListingType;
@@ -3,6 +3,8 @@ import type { ListingType } from "./ListingType";
3
3
  import type { SortType } from "./SortType";
4
4
  export interface SaveUserSettings {
5
5
  show_nsfw?: boolean;
6
+ blur_nsfw?: boolean;
7
+ auto_expand?: boolean;
6
8
  show_scores?: boolean;
7
9
  theme?: string;
8
10
  default_sort_type?: SortType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
- "version": "0.18.1",
3
+ "version": "0.18.3-rc.2",
4
4
  "description": "A javascript / typescript client for Lemmy",
5
5
  "repository": "https://github.com/LemmyNet/lemmy-js-client",
6
6
  "license": "AGPL-3.0",