github-pr-automation
Version:
MCP server and CLI for automated GitHub PR management, review resolution, and workflow optimization
19 lines • 758 B
TypeScript
import { z } from "zod";
export declare const ResolveReviewThreadInputSchema: z.ZodObject<{
pr: z.ZodString;
thread_id: z.ZodOptional<z.ZodString>;
comment_id: z.ZodOptional<z.ZodString>;
prefer: z.ZodDefault<z.ZodEnum<{
thread: "thread";
comment: "comment";
}>>;
}, z.core.$strip>;
export type ResolveReviewThreadInput = z.infer<typeof ResolveReviewThreadInputSchema>;
export declare const ResolveReviewThreadOutputSchema: z.ZodObject<{
ok: z.ZodBoolean;
thread_id: z.ZodString;
alreadyResolved: z.ZodDefault<z.ZodBoolean>;
message: z.ZodOptional<z.ZodString>;
}, z.core.$strip>;
export type ResolveReviewThreadOutput = z.infer<typeof ResolveReviewThreadOutputSchema>;
//# sourceMappingURL=schema.d.ts.map