From 8cc8c6e7a788f179d57caebd0a2a2efc8f2ecd2b Mon Sep 17 00:00:00 2001 From: Raduan77 Date: Wed, 11 Dec 2024 09:14:25 +0100 Subject: [PATCH] Allow body to be nullable in GithubIssueSchema --- src/github/schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/schemas.ts b/src/github/schemas.ts index cefdc1d1..0a322328 100644 --- a/src/github/schemas.ts +++ b/src/github/schemas.ts @@ -274,7 +274,7 @@ export const GitHubIssueSchema = z.object({ created_at: z.string(), updated_at: z.string(), closed_at: z.string().nullable(), - body: z.string(), + body: z.string().nullable(), }); // Pull Request related schemas