feat: enabling gif upload

This commit is contained in:
Chubby Granny Chaser
2024-10-16 10:46:17 +01:00
parent 05653500b6
commit 05625e7594
36 changed files with 403 additions and 373 deletions

View File

@@ -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;
}