From 1f1b611a6ff1d3ad13870485349d05023b6c690e Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 18 Mar 2025 02:24:46 -0700 Subject: [PATCH] Fix GitLabIssueSchema to allow null values for discussion_locked field --- schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas.ts b/schemas.ts index 2727644..3d68f38 100644 --- a/schemas.ts +++ b/schemas.ts @@ -276,7 +276,7 @@ export const GitLabIssueSchema = z.object({ }).optional(), confidential: z.boolean().optional(), due_date: z.string().nullable().optional(), - discussion_locked: z.boolean().optional(), + discussion_locked: z.boolean().nullable().optional(), weight: z.number().nullable().optional(), });