@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.
Files changed (2) hide show
  1. package/build/schemas.js +2 -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),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zereight/mcp-gitlab",
3
- "version": "1.0.45",
3
+ "version": "1.0.46",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "zereight",