File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -218,12 +218,12 @@ export const GitLabMergeRequestSchema = z.object({
218
218
title : z . string ( ) ,
219
219
description : z . string ( ) , // Changed from body to match GitLab API
220
220
state : z . string ( ) ,
221
- merged : z . boolean ( ) ,
221
+ merged : z . boolean ( ) . optional ( ) ,
222
222
author : GitLabUserSchema ,
223
223
assignees : z . array ( GitLabUserSchema ) ,
224
224
source_branch : z . string ( ) , // Changed from head to match GitLab API
225
225
target_branch : z . string ( ) , // Changed from base to match GitLab API
226
- diff_refs : GitLabMergeRequestDiffRefSchema ,
226
+ diff_refs : GitLabMergeRequestDiffRefSchema . nullable ( ) ,
227
227
web_url : z . string ( ) , // Changed from html_url to match GitLab API
228
228
created_at : z . string ( ) ,
229
229
updated_at : z . string ( ) ,
You can’t perform that action at this time.
0 commit comments