mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-20 09:43:57 +00:00
feat: enabling gif upload
This commit is contained in:
@@ -205,6 +205,7 @@ export interface UserDetails {
|
||||
username: string;
|
||||
displayName: string;
|
||||
profileImageUrl: string | null;
|
||||
backgroundImageUrl: string | null;
|
||||
profileVisibility: ProfileVisibility;
|
||||
bio: string;
|
||||
}
|
||||
@@ -213,6 +214,7 @@ export interface UserProfile {
|
||||
id: string;
|
||||
displayName: string;
|
||||
profileImageUrl: string | null;
|
||||
backgroundImageUrl: string | null;
|
||||
profileVisibility: ProfileVisibility;
|
||||
libraryGames: UserGame[];
|
||||
recentGames: UserGame[];
|
||||
@@ -227,6 +229,7 @@ export interface UpdateProfileRequest {
|
||||
displayName?: string;
|
||||
profileVisibility?: ProfileVisibility;
|
||||
profileImageUrl?: string | null;
|
||||
backgroundImageUrl?: string | null;
|
||||
bio?: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user