feat: add id to User

This commit is contained in:
2024-11-17 09:44:09 -05:00
parent d6a27e1fa4
commit c7d8f3ffa4
3 changed files with 4 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ export const User = z
.int() /* .openapi({ type: "integer", format: "int64" }) */,
meanScore: z.number().openapi({ type: "number", format: "float" }),
}),
id: z.number().openapi({ type: "integer", format: "int64" }),
name: z.string(),
avatar: z.object({
medium: z.string(),