FIX: bug get issues

This commit is contained in:
iwakitakuma33
2025-06-03 22:57:08 +09:00
parent 8cb7703aa1
commit 66d53f508c
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"),