feat: add user badges

This commit is contained in:
Zamitto 2025-02-17 21:04:33 -03:00
parent e086369b13
commit cf202c8f01
8 changed files with 97 additions and 4 deletions

View file

@ -130,6 +130,8 @@ export interface UserProfileCurrentGame extends Omit<GameRunning, "objectId"> {
export type ProfileVisibility = "PUBLIC" | "PRIVATE" | "FRIENDS";
export type UserBadge = "THEME_CREATOR";
export interface UserDetails {
id: string;
username: string;
@ -164,6 +166,7 @@ export interface UserProfile {
quirks: {
backupsPerGameLimit: number;
};
badges: UserBadge[];
}
export interface UpdateProfileRequest {