FIX: bug get issues (#83)

This commit is contained in:
Iwaki Takuma
2025-06-04 21:37:14 +09:00
committed by GitHub
parent 8cb7703aa1
commit 511d2d9c06
2 changed files with 11 additions and 7 deletions

View File

@ -916,7 +916,7 @@ export const CreateNoteSchema = z.object({
export const ListIssuesSchema = z.object({
project_id: z.string().describe("Project ID or URL-encoded path"),
assignee_id: z.number().optional().describe("Return issues assigned to the given user ID"),
assignee_username: z.string().optional().describe("Return issues assigned to the given username"),
assignee_username: z.array(z.string()).optional().describe("Return issues assigned to the given username"),
author_id: z.number().optional().describe("Return issues created by the given user ID"),
author_username: z.string().optional().describe("Return issues created by the given username"),
confidential: z.boolean().optional().describe("Filter confidential or public issues"),