feat: returning with edit profile modal

This commit is contained in:
Chubby Granny Chaser 2024-09-13 00:03:58 +01:00
commit 2304e19558
No known key found for this signature in database
78 changed files with 1810 additions and 906 deletions

View file

@ -309,7 +309,8 @@ export interface UserRelation {
updatedAt: string;
}
export interface UserProfileCurrentGame extends GameRunning {
export interface UserProfileCurrentGame extends Omit<GameRunning, "objectID"> {
objectId: string;
sessionDurationInSeconds: number;
}
@ -345,3 +346,8 @@ export interface DownloadSource {
createdAt: Date;
updatedAt: Date;
}
export interface GameStats {
downloadCount: number;
playerCount: number;
}