Merge pull request #305 from 0xRaduan/fix-gh-issue-schema

fix(github): Allow body to be nullable in GithubIssueSchema
This commit is contained in:
David Soria Parra
2024-12-12 22:50:00 +00:00
committed by GitHub

View File

@@ -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