lemmy-js-client 0.19.0-alpha.10 → 0.19.0-alpha.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -27,4 +27,5 @@ export interface LocalUser {
27
27
  post_listing_mode: PostListingMode;
28
28
  totp_2fa_enabled: boolean;
29
29
  enable_keyboard_navigation: boolean;
30
+ enable_animated_images: boolean;
30
31
  }
@@ -6,6 +6,5 @@ export interface ModRemoveCommunity {
6
6
  community_id: CommunityId;
7
7
  reason?: string;
8
8
  removed: boolean;
9
- expires?: string;
10
9
  when_: string;
11
10
  }
@@ -3,5 +3,4 @@ export interface RemoveCommunity {
3
3
  community_id: CommunityId;
4
4
  removed: boolean;
5
5
  reason?: string;
6
- expires?: number;
7
6
  }
@@ -1,5 +1,6 @@
1
1
  import type { LanguageId } from "./LanguageId";
2
2
  import type { ListingType } from "./ListingType";
3
+ import type { PostListingMode } from "./PostListingMode";
3
4
  import type { SortType } from "./SortType";
4
5
  export interface SaveUserSettings {
5
6
  show_nsfw?: boolean;
@@ -25,5 +26,7 @@ export interface SaveUserSettings {
25
26
  discussion_languages?: Array<LanguageId>;
26
27
  open_links_in_new_tab?: boolean;
27
28
  infinite_scroll_enabled?: boolean;
29
+ post_listing_mode?: PostListingMode;
28
30
  enable_keyboard_navigation?: boolean;
31
+ enable_animated_images?: boolean;
29
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
- "version": "0.19.0-alpha.10",
3
+ "version": "0.19.0-alpha.11",
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",