We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94a29d9 + 60d0f08 commit 507f524Copy full SHA for 507f524
src/gitlab/schemas.ts
@@ -22,10 +22,10 @@ export const GitLabRepositorySchema = z.object({
22
name: z.string(),
23
path_with_namespace: z.string(), // Changed from full_name to match GitLab API
24
visibility: z.string(), // Changed from private to match GitLab API
25
- owner: GitLabOwnerSchema,
+ owner: GitLabOwnerSchema.optional(),
26
web_url: z.string(), // Changed from html_url to match GitLab API
27
description: z.string().nullable(),
28
- fork: z.boolean(),
+ fork: z.boolean().optional(),
29
ssh_url_to_repo: z.string(), // Changed from ssh_url to match GitLab API
30
http_url_to_repo: z.string(), // Changed from clone_url to match GitLab API
31
created_at: z.string(),
0 commit comments