Allow body to be nullable in GithubIssueSchema

This commit is contained in:
Raduan77
2024-12-11 09:14:25 +01:00
parent 0968e431f3
commit 8cc8c6e7a7

View File

@@ -274,7 +274,7 @@ export const GitHubIssueSchema = z.object({
created_at: z.string(), created_at: z.string(),
updated_at: z.string(), updated_at: z.string(),
closed_at: z.string().nullable(), closed_at: z.string().nullable(),
body: z.string(), body: z.string().nullable(),
}); });
// Pull Request related schemas // Pull Request related schemas