@zereight/mcp-gitlab 1.0.45 → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/schemas.js +2 -2
- package/package.json +1 -1
package/build/schemas.js
CHANGED
|
@@ -372,7 +372,7 @@ export const GitLabMilestoneSchema = z.object({
|
|
|
372
372
|
id: z.number(),
|
|
373
373
|
iid: z.number(), // Added to match GitLab API
|
|
374
374
|
title: z.string(),
|
|
375
|
-
description: z.string(),
|
|
375
|
+
description: z.string().nullable().default(""),
|
|
376
376
|
state: z.string(),
|
|
377
377
|
web_url: z.string(), // Changed from html_url to match GitLab API
|
|
378
378
|
});
|
|
@@ -381,7 +381,7 @@ export const GitLabIssueSchema = z.object({
|
|
|
381
381
|
iid: z.number(), // Added to match GitLab API
|
|
382
382
|
project_id: z.number(), // Added to match GitLab API
|
|
383
383
|
title: z.string(),
|
|
384
|
-
description: z.string(), // Changed from body to match GitLab API
|
|
384
|
+
description: z.string().nullable().default(""), // Changed from body to match GitLab API
|
|
385
385
|
state: z.string(),
|
|
386
386
|
author: GitLabUserSchema,
|
|
387
387
|
assignees: z.array(GitLabUserSchema),
|