fix: remove duplicated project_id from schema

This commit is contained in:
Bob
2025-04-19 21:56:43 +02:00
parent a04193380d
commit f221e958d3

View File

@@ -262,7 +262,6 @@ export const CreateRepositorySchema = z.object({
});
export const GetFileContentsSchema = ProjectParamsSchema.extend({
project_id: z.string().describe("Project ID or URL-encoded path"),
file_path: z.string().describe("Path to the file or directory"),
ref: z.string().optional().describe("Branch/tag/commit to get contents from")
});