Adding animated_images boolean.

This commit is contained in:
Dessalines 2023-10-17 13:54:56 -04:00
parent ceacfdfbe7
commit 1f4e5442bd
4 changed files with 4 additions and 2 deletions

View file

@ -29,4 +29,5 @@ export interface LocalUser {
post_listing_mode: PostListingMode; post_listing_mode: PostListingMode;
totp_2fa_enabled: boolean; totp_2fa_enabled: boolean;
enable_keyboard_navigation: boolean; enable_keyboard_navigation: boolean;
enable_animated_images: boolean;
} }

View file

@ -8,6 +8,5 @@ export interface ModRemoveCommunity {
community_id: CommunityId; community_id: CommunityId;
reason?: string; reason?: string;
removed: boolean; removed: boolean;
expires?: string;
when_: string; when_: string;
} }

View file

@ -5,5 +5,4 @@ export interface RemoveCommunity {
community_id: CommunityId; community_id: CommunityId;
removed: boolean; removed: boolean;
reason?: string; reason?: string;
expires?: /* integer */ number;
} }

View file

@ -1,6 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { LanguageId } from "./LanguageId"; import type { LanguageId } from "./LanguageId";
import type { ListingType } from "./ListingType"; import type { ListingType } from "./ListingType";
import type { PostListingMode } from "./PostListingMode";
import type { SortType } from "./SortType"; import type { SortType } from "./SortType";
export interface SaveUserSettings { export interface SaveUserSettings {
@ -27,5 +28,7 @@ export interface SaveUserSettings {
discussion_languages?: Array<LanguageId>; discussion_languages?: Array<LanguageId>;
open_links_in_new_tab?: boolean; open_links_in_new_tab?: boolean;
infinite_scroll_enabled?: boolean; infinite_scroll_enabled?: boolean;
post_listing_mode?: PostListingMode;
enable_keyboard_navigation?: boolean; enable_keyboard_navigation?: boolean;
enable_animated_images?: boolean;
} }