Merge pull request #55 from svengt/fix/avatar-url-nullable

fix(schemas): make avatar_url nullable in GitLabUserSchema
This commit is contained in:
zereight
2025-05-29 09:08:41 +09:00
committed by GitHub

View File

@ -399,7 +399,7 @@ export const GitLabUserSchema = z.object({
username: z.string(), // Changed from login to match GitLab API username: z.string(), // Changed from login to match GitLab API
id: z.number(), id: z.number(),
name: z.string(), name: z.string(),
avatar_url: z.string(), avatar_url: z.string().nullable(),
web_url: z.string(), // Changed from html_url to match GitLab API web_url: z.string(), // Changed from html_url to match GitLab API
}); });