You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
issue_type: z.string().optional().nullable().describe("Filter to a given type of issue. One of issue, incident, test_case or task"),
939
+
iteration_id: z.coerce.string().optional().nullable().describe("Return issues assigned to the given iteration ID. None returns issues that do not belong to an iteration. Any returns issues that belong to an iteration. "),
sha: z.string().describe("The commit hash or name of a repository branch or tag"),
1362
1364
});
1363
1365
1366
+
exportconstGroupIteration=z.object({
1367
+
id: z.coerce.string(),
1368
+
iid: z.coerce.string(),
1369
+
sequence: z.number(),
1370
+
group_id: z.coerce.string(),
1371
+
title: z.string().optional().nullable(),
1372
+
description: z.string().optional().nullable(),
1373
+
state: z.number(),
1374
+
created_at: z.string(),
1375
+
updated_at: z.string(),
1376
+
due_date: z.string().optional().nullable(),
1377
+
start_date: z.string().optional().nullable(),
1378
+
web_url: z.string().optional().nullable(),
1379
+
});
1380
+
1381
+
exportconstListGroupIterationsSchema=z.object({
1382
+
group_id: z.coerce.string().describe("Group ID or URL-encoded path"),
1383
+
state: z.enum(["opened","upcoming","current","closed","all"]).optional().describe("Return opened, upcoming, current, closed, or all iterations."),
1384
+
search: z.string().optional().describe("Return only iterations with a title matching the provided string."),
1385
+
in: z.array(z.enum(["title","cadence_title"])).optional().describe("Fields in which fuzzy search should be performed with the query given in the argument search. The available options are title and cadence_title. Default is [title]."),
1386
+
include_ancestors: flexibleBoolean.optional().describe("Include iterations for group and its ancestors. Defaults to true."),
1387
+
include_descendants: flexibleBoolean.optional().describe("Include iterations for group and its descendants. Defaults to false."),
1388
+
updated_before: z.string().optional().describe("Return only iterations updated before the given datetime. Expected in ISO 8601 format (2019-03-15T08:00:00Z)."),
1389
+
updated_after: z.string().optional().describe("Return only iterations updated after the given datetime. Expected in ISO 8601 format (2019-03-15T08:00:00Z)."),
0 commit comments