diff --git a/src/types/Community.ts b/src/types/Community.ts index 31f0859..7d8022d 100644 --- a/src/types/Community.ts +++ b/src/types/Community.ts @@ -16,6 +16,8 @@ export interface Community { local: boolean; icon?: string; banner?: string; + followers_url: string; + inbox_url: string; hidden: boolean; posting_restricted_to_mods: boolean; instance_id: InstanceId; diff --git a/src/types/LocalUser.ts b/src/types/LocalUser.ts index 00a1cc9..f3e7a7e 100644 --- a/src/types/LocalUser.ts +++ b/src/types/LocalUser.ts @@ -23,4 +23,5 @@ export interface LocalUser { email_verified: boolean; accepted_application: boolean; totp_2fa_url?: string; + open_links_in_new_tab: boolean; } diff --git a/src/types/Person.ts b/src/types/Person.ts index d04f114..b7a7bd2 100644 --- a/src/types/Person.ts +++ b/src/types/Person.ts @@ -15,6 +15,7 @@ export interface Person { local: boolean; banner?: string; deleted: boolean; + inbox_url: string; matrix_user_id?: string; admin: boolean; bot_account: boolean; diff --git a/src/types/SaveUserSettings.ts b/src/types/SaveUserSettings.ts index 5777734..ac81a07 100644 --- a/src/types/SaveUserSettings.ts +++ b/src/types/SaveUserSettings.ts @@ -25,4 +25,5 @@ export interface SaveUserSettings { discussion_languages?: Array; generate_totp_2fa?: boolean; auth: string; + open_links_in_new_tab?: boolean; }