@zereight/mcp-gitlab 1.0.37 → 1.0.38

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
@@ -400,13 +400,13 @@ export const GitLabDiscussionNoteSchema = z.object({
400
400
  .object({
401
401
  start: z.object({
402
402
  line_code: z.string(),
403
- type: z.enum(["new", "old"]),
403
+ type: z.enum(["new", "old", "expanded"]),
404
404
  old_line: z.number().nullable(),
405
405
  new_line: z.number().nullable(),
406
406
  }),
407
407
  end: z.object({
408
408
  line_code: z.string(),
409
- type: z.enum(["new", "old"]),
409
+ type: z.enum(["new", "old", "expanded"]),
410
410
  old_line: z.number().nullable(),
411
411
  new_line: z.number().nullable(),
412
412
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zereight/mcp-gitlab",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "zereight",