This commit is contained in:
Zamitto
2024-06-14 18:23:57 -03:00
parent ca21d8afe6
commit e8a1aa0616
6 changed files with 78 additions and 21 deletions

View File

@@ -25,6 +25,7 @@ const gamesArray = z.array(
export const userProfileSchema = z.object({
displayName: z.string(),
profileImageUrl: z.string().url().nullable(),
libraryGames: gamesArray,
recentGames: gamesArray,
});