Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 3x 3x 3x 3x 3x 3x | import { z } from "zod";
import { flexibleBoolean } from "../utils";
import { ProjectParamsSchema } from "../shared";
// WRITE FILE OPERATION SCHEMAS
// File operations (write)
export const CreateOrUpdateFileSchema = ProjectParamsSchema.extend({
file_path: z.string().describe("URL-encoded full path to the file"),
branch: z.string().describe("Name of the new branch to create"),
start_branch: z.string().optional().describe("Name of the base branch to start from"),
encoding: z.enum(["text", "base64"]).optional().describe("Change encoding"),
author_email: z.string().optional().describe("Author email for the commit"),
author_name: z.string().optional().describe("Author name for the commit"),
content: z.string().describe("File content"),
commit_message: z.string().describe("Commit message"),
last_commit_id: z.string().optional().describe("Last known file commit id"),
execute_filemode: flexibleBoolean.optional().describe("Execute file mode"),
});
// Push multiple files operations (write)
export const PushFilesSchema = ProjectParamsSchema.extend({
branch: z.string().describe("Target branch name"),
commit_message: z.string().describe("Commit message"),
files: z
.array(
z.object({
file_path: z.string(),
content: z.string(),
encoding: z.enum(["text", "base64"]).optional(),
execute_filemode: flexibleBoolean.optional(),
})
)
.describe("Array of files to push"),
start_branch: z.string().optional().describe("Start branch name"),
author_email: z.string().optional().describe("Author email"),
author_name: z.string().optional().describe("Author name"),
});
// File upload operations (write)
export const MarkdownUploadSchema = ProjectParamsSchema.extend({
file: z.string().describe("Base64 encoded file content or file path"),
filename: z.string().describe("Name of the file"),
});
// Export type definitions
export type CreateOrUpdateFileOptions = z.infer<typeof CreateOrUpdateFileSchema>;
export type PushFilesOptions = z.infer<typeof PushFilesSchema>;
export type MarkdownUploadOptions = z.infer<typeof MarkdownUploadSchema>;
|