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
updatedBefore: z.string().nullable().optional().describe("Updated not later than, format: YYYY-MM-DD"),
300
300
creator: z.string().nullable().optional().describe("Creator user ID, multiple values separated by commas. Special value 'self' can be used to represent the current user"),
301
301
assignedTo: z.string().nullable().optional().describe("Assignee user ID, multiple values separated by commas. Special value 'self' can be used to represent the current user"),
302
+
sprint: z.string().nullable().optional().describe("Sprint ID, multiple values separated by commas"),
303
+
workitemType: z.string().nullable().optional().describe("Work item type ID, multiple values separated by commas"),
304
+
statusStage: z.string().nullable().optional().describe("Status stage ID, multiple values separated by commas"),
305
+
tag: z.string().nullable().optional().describe("Tag ID, multiple values separated by commas"),
306
+
priority: z.string().nullable().optional().describe("Priority ID, multiple values separated by commas"),
307
+
subjectDescription: z.string().nullable().optional().describe("Text contained in title or description"),
308
+
finishTimeAfter: z.string().nullable().optional().describe("Finish time not earlier than, format: YYYY-MM-DD"),
309
+
finishTimeBefore: z.string().nullable().optional().describe("Finish time not later than, format: YYYY-MM-DD"),
310
+
updateStatusAtAfter: z.string().nullable().optional().describe("Status update time not earlier than, format: YYYY-MM-DD"),
311
+
updateStatusAtBefore: z.string().nullable().optional().describe("Status update time not later than, format: YYYY-MM-DD"),
0 commit comments