@zereight/mcp-gitlab 1.0.67 → 1.0.68
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 +8 -1
- package/package.json +1 -1
package/build/schemas.js
CHANGED
|
@@ -809,7 +809,14 @@ export const UpdateMergeRequestSchema = GetMergeRequestSchema.extend({
|
|
|
809
809
|
title: z.string().optional().describe("The title of the merge request"),
|
|
810
810
|
description: z.string().optional().describe("The description of the merge request"),
|
|
811
811
|
target_branch: z.string().optional().describe("The target branch"),
|
|
812
|
-
assignee_ids: z
|
|
812
|
+
assignee_ids: z
|
|
813
|
+
.array(z.number())
|
|
814
|
+
.optional()
|
|
815
|
+
.describe("The ID of the users to assign the MR to"),
|
|
816
|
+
reviewer_ids: z
|
|
817
|
+
.array(z.number())
|
|
818
|
+
.optional()
|
|
819
|
+
.describe("The ID of the users to assign as reviewers of the MR"),
|
|
813
820
|
labels: z.array(z.string()).optional().describe("Labels for the MR"),
|
|
814
821
|
state_event: z
|
|
815
822
|
.enum(["close", "reopen"])
|