From f4aa73e2387d4cbd65fda3cdda329785e91aaee1 Mon Sep 17 00:00:00 2001 From: Aotumuri Date: Mon, 25 May 2026 15:00:59 +0900 Subject: [PATCH] removed gameid --- src/core/ApiSchemas.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/ApiSchemas.ts b/src/core/ApiSchemas.ts index 5fda4485c..35987550f 100644 --- a/src/core/ApiSchemas.ts +++ b/src/core/ApiSchemas.ts @@ -74,7 +74,6 @@ export const PlayerAchievementSchema = z.object({ playerId: z.string(), achievement: z.string(), achievedAt: z.iso.datetime(), - gameId: z.string(), game: z.string(), }); export type PlayerAchievementJson = z.infer;