@doist/todoist-ai 5.1.1 → 6.0.0

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.
Files changed (60) hide show
  1. package/dist/index.d.ts +279 -885
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +2 -2
  4. package/dist/main.js +1 -1
  5. package/dist/mcp-helpers.d.ts.map +1 -1
  6. package/dist/{mcp-server-BHGnG8l8.js → mcp-server-BwerBJpX.js} +182 -185
  7. package/dist/tools/add-comments.d.ts +9 -82
  8. package/dist/tools/add-comments.d.ts.map +1 -1
  9. package/dist/tools/add-projects.d.ts +11 -73
  10. package/dist/tools/add-projects.d.ts.map +1 -1
  11. package/dist/tools/add-sections.d.ts +2 -14
  12. package/dist/tools/add-sections.d.ts.map +1 -1
  13. package/dist/tools/add-tasks.d.ts +26 -71
  14. package/dist/tools/add-tasks.d.ts.map +1 -1
  15. package/dist/tools/complete-tasks.d.ts +3 -11
  16. package/dist/tools/complete-tasks.d.ts.map +1 -1
  17. package/dist/tools/delete-object.d.ts +15 -11
  18. package/dist/tools/delete-object.d.ts.map +1 -1
  19. package/dist/tools/fetch.d.ts.map +1 -1
  20. package/dist/tools/find-activity.d.ts +25 -31
  21. package/dist/tools/find-activity.d.ts.map +1 -1
  22. package/dist/tools/find-comments.d.ts +9 -74
  23. package/dist/tools/find-comments.d.ts.map +1 -1
  24. package/dist/tools/find-completed-tasks.d.ts +29 -51
  25. package/dist/tools/find-completed-tasks.d.ts.map +1 -1
  26. package/dist/tools/find-project-collaborators.d.ts +2 -18
  27. package/dist/tools/find-project-collaborators.d.ts.map +1 -1
  28. package/dist/tools/find-projects.d.ts +3 -21
  29. package/dist/tools/find-projects.d.ts.map +1 -1
  30. package/dist/tools/find-sections.d.ts +1 -7
  31. package/dist/tools/find-sections.d.ts.map +1 -1
  32. package/dist/tools/find-tasks-by-date.d.ts +35 -52
  33. package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
  34. package/dist/tools/find-tasks.d.ts +32 -53
  35. package/dist/tools/find-tasks.d.ts.map +1 -1
  36. package/dist/tools/get-overview.d.ts +8 -15
  37. package/dist/tools/get-overview.d.ts.map +1 -1
  38. package/dist/tools/manage-assignments.d.ts +9 -27
  39. package/dist/tools/manage-assignments.d.ts.map +1 -1
  40. package/dist/tools/search.d.ts +1 -9
  41. package/dist/tools/search.d.ts.map +1 -1
  42. package/dist/tools/update-comments.d.ts +10 -85
  43. package/dist/tools/update-comments.d.ts.map +1 -1
  44. package/dist/tools/update-projects.d.ts +12 -80
  45. package/dist/tools/update-projects.d.ts.map +1 -1
  46. package/dist/tools/update-sections.d.ts +4 -16
  47. package/dist/tools/update-sections.d.ts.map +1 -1
  48. package/dist/tools/update-tasks.d.ts +27 -82
  49. package/dist/tools/update-tasks.d.ts.map +1 -1
  50. package/dist/tools/user-info.d.ts +6 -2
  51. package/dist/tools/user-info.d.ts.map +1 -1
  52. package/dist/utils/labels.d.ts +5 -2
  53. package/dist/utils/labels.d.ts.map +1 -1
  54. package/dist/utils/output-schemas.d.ts +21 -174
  55. package/dist/utils/output-schemas.d.ts.map +1 -1
  56. package/dist/utils/priorities.d.ts +6 -1
  57. package/dist/utils/priorities.d.ts.map +1 -1
  58. package/dist/utils/test-helpers.d.ts.map +1 -1
  59. package/package.json +11 -11
  60. package/scripts/validate-schemas.ts +66 -65
package/dist/index.d.ts CHANGED
@@ -30,40 +30,22 @@ declare const tools: {
30
30
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
31
31
  content: import('zod').ZodString;
32
32
  description: import('zod').ZodOptional<import('zod').ZodString>;
33
- priority: import('zod').ZodOptional<import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>>;
33
+ priority: import('zod').ZodOptional<import('zod').ZodEnum<{
34
+ p1: "p1";
35
+ p2: "p2";
36
+ p3: "p3";
37
+ p4: "p4";
38
+ }>>;
34
39
  dueString: import('zod').ZodOptional<import('zod').ZodString>;
35
40
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
36
41
  duration: import('zod').ZodOptional<import('zod').ZodString>;
37
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
42
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
38
43
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
39
44
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
40
45
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
41
46
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
42
- }, "strip", import('zod').ZodTypeAny, {
43
- content: string;
44
- description?: string | undefined;
45
- parentId?: string | undefined;
46
- projectId?: string | undefined;
47
- sectionId?: string | undefined;
48
- labels?: string[] | undefined;
49
- duration?: string | undefined;
50
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
51
- deadlineDate?: string | undefined;
52
- dueString?: string | undefined;
53
- responsibleUser?: string | undefined;
54
- }, {
55
- content: string;
56
- description?: string | undefined;
57
- parentId?: string | undefined;
58
- projectId?: string | undefined;
59
- sectionId?: string | undefined;
60
- labels?: string[] | undefined;
61
- duration?: string | undefined;
62
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
63
- deadlineDate?: string | undefined;
64
- dueString?: string | undefined;
65
- responsibleUser?: string | undefined;
66
- }>, "many">;
47
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
48
+ }, import('zod/v4/core').$strip>>;
67
49
  };
68
50
  outputSchema: {
69
51
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -71,53 +53,25 @@ declare const tools: {
71
53
  content: import('zod').ZodString;
72
54
  description: import('zod').ZodString;
73
55
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
74
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
56
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
75
57
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
76
- priority: import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>;
58
+ priority: import('zod').ZodEnum<{
59
+ p1: "p1";
60
+ p2: "p2";
61
+ p3: "p3";
62
+ p4: "p4";
63
+ }>;
77
64
  projectId: import('zod').ZodString;
78
65
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
79
66
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
80
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
67
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
81
68
  duration: import('zod').ZodOptional<import('zod').ZodString>;
82
69
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
70
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
83
71
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
84
72
  checked: import('zod').ZodBoolean;
85
73
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
86
- }, "strip", import('zod').ZodTypeAny, {
87
- content: string;
88
- description: string;
89
- id: string;
90
- projectId: string;
91
- checked: boolean;
92
- priority: "p1" | "p2" | "p3" | "p4";
93
- recurring: string | boolean;
94
- parentId?: string | undefined;
95
- sectionId?: string | undefined;
96
- assignedByUid?: string | undefined;
97
- responsibleUid?: string | undefined;
98
- labels?: string[] | undefined;
99
- duration?: string | undefined;
100
- completedAt?: string | undefined;
101
- dueDate?: string | undefined;
102
- deadlineDate?: string | undefined;
103
- }, {
104
- content: string;
105
- description: string;
106
- id: string;
107
- projectId: string;
108
- checked: boolean;
109
- priority: "p1" | "p2" | "p3" | "p4";
110
- recurring: string | boolean;
111
- parentId?: string | undefined;
112
- sectionId?: string | undefined;
113
- assignedByUid?: string | undefined;
114
- responsibleUid?: string | undefined;
115
- labels?: string[] | undefined;
116
- duration?: string | undefined;
117
- completedAt?: string | undefined;
118
- dueDate?: string | undefined;
119
- deadlineDate?: string | undefined;
120
- }>, "many">;
74
+ }, import('zod/v4/core').$strip>>;
121
75
  totalCount: import('zod').ZodNumber;
122
76
  };
123
77
  mutability: "additive";
@@ -125,15 +79,16 @@ declare const tools: {
125
79
  tasks: {
126
80
  content: string;
127
81
  description?: string | undefined;
128
- parentId?: string | undefined;
129
- projectId?: string | undefined;
130
- sectionId?: string | undefined;
131
- labels?: string[] | undefined;
132
- duration?: string | undefined;
133
82
  priority?: "p1" | "p2" | "p3" | "p4" | undefined;
134
- deadlineDate?: string | undefined;
135
83
  dueString?: string | undefined;
84
+ deadlineDate?: string | undefined;
85
+ duration?: string | undefined;
86
+ labels?: string[] | undefined;
87
+ projectId?: string | undefined;
88
+ sectionId?: string | undefined;
89
+ parentId?: string | undefined;
136
90
  responsibleUser?: string | undefined;
91
+ isUncompletable?: boolean | undefined;
137
92
  }[];
138
93
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
139
94
  textContent: string;
@@ -164,23 +119,15 @@ declare const tools: {
164
119
  name: "complete-tasks";
165
120
  description: string;
166
121
  parameters: {
167
- ids: import('zod').ZodArray<import('zod').ZodString, "many">;
122
+ ids: import('zod').ZodArray<import('zod').ZodString>;
168
123
  };
169
124
  outputSchema: {
170
- completed: import('zod').ZodArray<import('zod').ZodString, "many">;
125
+ completed: import('zod').ZodArray<import('zod').ZodString>;
171
126
  failures: import('zod').ZodArray<import('zod').ZodObject<{
172
127
  item: import('zod').ZodString;
173
128
  error: import('zod').ZodString;
174
129
  code: import('zod').ZodOptional<import('zod').ZodString>;
175
- }, "strip", import('zod').ZodTypeAny, {
176
- error: string;
177
- item: string;
178
- code?: string | undefined;
179
- }, {
180
- error: string;
181
- item: string;
182
- code?: string | undefined;
183
- }>, "many">;
130
+ }, import('zod/v4/core').$strip>>;
184
131
  totalRequested: import('zod').ZodNumber;
185
132
  successCount: import('zod').ZodNumber;
186
133
  failureCount: import('zod').ZodNumber;
@@ -215,41 +162,19 @@ declare const tools: {
215
162
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
216
163
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
217
164
  order: import('zod').ZodOptional<import('zod').ZodNumber>;
218
- priority: import('zod').ZodOptional<import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>>;
165
+ priority: import('zod').ZodOptional<import('zod').ZodEnum<{
166
+ p1: "p1";
167
+ p2: "p2";
168
+ p3: "p3";
169
+ p4: "p4";
170
+ }>>;
219
171
  dueString: import('zod').ZodOptional<import('zod').ZodString>;
220
172
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
221
173
  duration: import('zod').ZodOptional<import('zod').ZodString>;
222
174
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
223
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
224
- }, "strip", import('zod').ZodTypeAny, {
225
- id: string;
226
- content?: string | undefined;
227
- description?: string | undefined;
228
- parentId?: string | undefined;
229
- projectId?: string | undefined;
230
- sectionId?: string | undefined;
231
- labels?: string[] | undefined;
232
- duration?: string | undefined;
233
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
234
- deadlineDate?: string | undefined;
235
- dueString?: string | undefined;
236
- responsibleUser?: string | undefined;
237
- order?: number | undefined;
238
- }, {
239
- id: string;
240
- content?: string | undefined;
241
- description?: string | undefined;
242
- parentId?: string | undefined;
243
- projectId?: string | undefined;
244
- sectionId?: string | undefined;
245
- labels?: string[] | undefined;
246
- duration?: string | undefined;
247
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
248
- deadlineDate?: string | undefined;
249
- dueString?: string | undefined;
250
- responsibleUser?: string | undefined;
251
- order?: number | undefined;
252
- }>, "many">;
175
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
176
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
177
+ }, import('zod/v4/core').$strip>>;
253
178
  };
254
179
  outputSchema: {
255
180
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -257,65 +182,31 @@ declare const tools: {
257
182
  content: import('zod').ZodString;
258
183
  description: import('zod').ZodString;
259
184
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
260
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
185
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
261
186
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
262
- priority: import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>;
187
+ priority: import('zod').ZodEnum<{
188
+ p1: "p1";
189
+ p2: "p2";
190
+ p3: "p3";
191
+ p4: "p4";
192
+ }>;
263
193
  projectId: import('zod').ZodString;
264
194
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
265
195
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
266
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
196
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
267
197
  duration: import('zod').ZodOptional<import('zod').ZodString>;
268
198
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
199
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
269
200
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
270
201
  checked: import('zod').ZodBoolean;
271
202
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
272
- }, "strip", import('zod').ZodTypeAny, {
273
- content: string;
274
- description: string;
275
- id: string;
276
- projectId: string;
277
- checked: boolean;
278
- priority: "p1" | "p2" | "p3" | "p4";
279
- recurring: string | boolean;
280
- parentId?: string | undefined;
281
- sectionId?: string | undefined;
282
- assignedByUid?: string | undefined;
283
- responsibleUid?: string | undefined;
284
- labels?: string[] | undefined;
285
- duration?: string | undefined;
286
- completedAt?: string | undefined;
287
- dueDate?: string | undefined;
288
- deadlineDate?: string | undefined;
289
- }, {
290
- content: string;
291
- description: string;
292
- id: string;
293
- projectId: string;
294
- checked: boolean;
295
- priority: "p1" | "p2" | "p3" | "p4";
296
- recurring: string | boolean;
297
- parentId?: string | undefined;
298
- sectionId?: string | undefined;
299
- assignedByUid?: string | undefined;
300
- responsibleUid?: string | undefined;
301
- labels?: string[] | undefined;
302
- duration?: string | undefined;
303
- completedAt?: string | undefined;
304
- dueDate?: string | undefined;
305
- deadlineDate?: string | undefined;
306
- }>, "many">;
203
+ }, import('zod/v4/core').$strip>>;
307
204
  totalCount: import('zod').ZodNumber;
308
- updatedTaskIds: import('zod').ZodArray<import('zod').ZodString, "many">;
205
+ updatedTaskIds: import('zod').ZodArray<import('zod').ZodString>;
309
206
  appliedOperations: import('zod').ZodObject<{
310
207
  updateCount: import('zod').ZodNumber;
311
208
  skippedCount: import('zod').ZodNumber;
312
- }, "strip", import('zod').ZodTypeAny, {
313
- updateCount: number;
314
- skippedCount: number;
315
- }, {
316
- updateCount: number;
317
- skippedCount: number;
318
- }>;
209
+ }, import('zod/v4/core').$strip>;
319
210
  };
320
211
  mutability: "mutating";
321
212
  execute(args: {
@@ -323,16 +214,17 @@ declare const tools: {
323
214
  id: string;
324
215
  content?: string | undefined;
325
216
  description?: string | undefined;
326
- parentId?: string | undefined;
327
217
  projectId?: string | undefined;
328
218
  sectionId?: string | undefined;
329
- labels?: string[] | undefined;
330
- duration?: string | undefined;
219
+ parentId?: string | undefined;
220
+ order?: number | undefined;
331
221
  priority?: "p1" | "p2" | "p3" | "p4" | undefined;
332
- deadlineDate?: string | undefined;
333
222
  dueString?: string | undefined;
223
+ deadlineDate?: string | undefined;
224
+ duration?: string | undefined;
334
225
  responsibleUser?: string | undefined;
335
- order?: number | undefined;
226
+ labels?: string[] | undefined;
227
+ isUncompletable?: boolean | undefined;
336
228
  }[];
337
229
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
338
230
  textContent: string;
@@ -368,14 +260,21 @@ declare const tools: {
368
260
  name: "find-tasks";
369
261
  description: string;
370
262
  parameters: {
371
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
372
- labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<["and", "or"]>>;
263
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
264
+ labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
265
+ and: "and";
266
+ or: "or";
267
+ }>>;
373
268
  searchText: import('zod').ZodOptional<import('zod').ZodString>;
374
269
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
375
270
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
376
271
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
377
272
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
378
- responsibleUserFiltering: import('zod').ZodOptional<import('zod').ZodEnum<["assigned", "unassignedOrMe", "all"]>>;
273
+ responsibleUserFiltering: import('zod').ZodOptional<import('zod').ZodEnum<{
274
+ assigned: "assigned";
275
+ unassignedOrMe: "unassignedOrMe";
276
+ all: "all";
277
+ }>>;
379
278
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
380
279
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
381
280
  };
@@ -385,53 +284,25 @@ declare const tools: {
385
284
  content: import('zod').ZodString;
386
285
  description: import('zod').ZodString;
387
286
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
388
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
287
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
389
288
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
390
- priority: import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>;
289
+ priority: import('zod').ZodEnum<{
290
+ p1: "p1";
291
+ p2: "p2";
292
+ p3: "p3";
293
+ p4: "p4";
294
+ }>;
391
295
  projectId: import('zod').ZodString;
392
296
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
393
297
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
394
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
298
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
395
299
  duration: import('zod').ZodOptional<import('zod').ZodString>;
396
300
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
301
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
397
302
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
398
303
  checked: import('zod').ZodBoolean;
399
304
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
400
- }, "strip", import('zod').ZodTypeAny, {
401
- content: string;
402
- description: string;
403
- id: string;
404
- projectId: string;
405
- checked: boolean;
406
- priority: "p1" | "p2" | "p3" | "p4";
407
- recurring: string | boolean;
408
- parentId?: string | undefined;
409
- sectionId?: string | undefined;
410
- assignedByUid?: string | undefined;
411
- responsibleUid?: string | undefined;
412
- labels?: string[] | undefined;
413
- duration?: string | undefined;
414
- completedAt?: string | undefined;
415
- dueDate?: string | undefined;
416
- deadlineDate?: string | undefined;
417
- }, {
418
- content: string;
419
- description: string;
420
- id: string;
421
- projectId: string;
422
- checked: boolean;
423
- priority: "p1" | "p2" | "p3" | "p4";
424
- recurring: string | boolean;
425
- parentId?: string | undefined;
426
- sectionId?: string | undefined;
427
- assignedByUid?: string | undefined;
428
- responsibleUid?: string | undefined;
429
- labels?: string[] | undefined;
430
- duration?: string | undefined;
431
- completedAt?: string | undefined;
432
- dueDate?: string | undefined;
433
- deadlineDate?: string | undefined;
434
- }>, "many">;
305
+ }, import('zod/v4/core').$strip>>;
435
306
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
436
307
  totalCount: import('zod').ZodNumber;
437
308
  hasMore: import('zod').ZodBoolean;
@@ -440,15 +311,15 @@ declare const tools: {
440
311
  mutability: "readonly";
441
312
  execute(args: {
442
313
  limit: number;
443
- parentId?: string | undefined;
444
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
445
- cursor?: string | undefined;
314
+ labels?: string[] | undefined;
315
+ labelsOperator?: "and" | "or" | undefined;
316
+ searchText?: string | undefined;
446
317
  projectId?: string | undefined;
447
318
  sectionId?: string | undefined;
448
- labels?: string[] | undefined;
319
+ parentId?: string | undefined;
449
320
  responsibleUser?: string | undefined;
450
- labelsOperator?: "or" | "and" | undefined;
451
- searchText?: string | undefined;
321
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
322
+ cursor?: string | undefined;
452
323
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
453
324
  textContent: string;
454
325
  structuredContent: {
@@ -475,15 +346,15 @@ declare const tools: {
475
346
  hasMore: boolean;
476
347
  appliedFilters: {
477
348
  limit: number;
478
- parentId?: string | undefined;
479
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
480
- cursor?: string | undefined;
349
+ labels?: string[] | undefined;
350
+ labelsOperator?: "and" | "or" | undefined;
351
+ searchText?: string | undefined;
481
352
  projectId?: string | undefined;
482
353
  sectionId?: string | undefined;
483
- labels?: string[] | undefined;
354
+ parentId?: string | undefined;
484
355
  responsibleUser?: string | undefined;
485
- labelsOperator?: "or" | "and" | undefined;
486
- searchText?: string | undefined;
356
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
357
+ cursor?: string | undefined;
487
358
  };
488
359
  };
489
360
  }>;
@@ -492,15 +363,26 @@ declare const tools: {
492
363
  name: "find-tasks-by-date";
493
364
  description: string;
494
365
  parameters: {
495
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
496
- labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<["and", "or"]>>;
366
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
367
+ labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
368
+ and: "and";
369
+ or: "or";
370
+ }>>;
497
371
  startDate: import('zod').ZodOptional<import('zod').ZodString>;
498
- overdueOption: import('zod').ZodOptional<import('zod').ZodEnum<["overdue-only", "include-overdue", "exclude-overdue"]>>;
372
+ overdueOption: import('zod').ZodOptional<import('zod').ZodEnum<{
373
+ "overdue-only": "overdue-only";
374
+ "include-overdue": "include-overdue";
375
+ "exclude-overdue": "exclude-overdue";
376
+ }>>;
499
377
  daysCount: import('zod').ZodDefault<import('zod').ZodNumber>;
500
378
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
501
379
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
502
380
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
503
- responsibleUserFiltering: import('zod').ZodOptional<import('zod').ZodEnum<["assigned", "unassignedOrMe", "all"]>>;
381
+ responsibleUserFiltering: import('zod').ZodOptional<import('zod').ZodEnum<{
382
+ assigned: "assigned";
383
+ unassignedOrMe: "unassignedOrMe";
384
+ all: "all";
385
+ }>>;
504
386
  };
505
387
  outputSchema: {
506
388
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -508,53 +390,25 @@ declare const tools: {
508
390
  content: import('zod').ZodString;
509
391
  description: import('zod').ZodString;
510
392
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
511
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
393
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
512
394
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
513
- priority: import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>;
395
+ priority: import('zod').ZodEnum<{
396
+ p1: "p1";
397
+ p2: "p2";
398
+ p3: "p3";
399
+ p4: "p4";
400
+ }>;
514
401
  projectId: import('zod').ZodString;
515
402
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
516
403
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
517
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
404
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
518
405
  duration: import('zod').ZodOptional<import('zod').ZodString>;
519
406
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
407
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
520
408
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
521
409
  checked: import('zod').ZodBoolean;
522
410
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
523
- }, "strip", import('zod').ZodTypeAny, {
524
- content: string;
525
- description: string;
526
- id: string;
527
- projectId: string;
528
- checked: boolean;
529
- priority: "p1" | "p2" | "p3" | "p4";
530
- recurring: string | boolean;
531
- parentId?: string | undefined;
532
- sectionId?: string | undefined;
533
- assignedByUid?: string | undefined;
534
- responsibleUid?: string | undefined;
535
- labels?: string[] | undefined;
536
- duration?: string | undefined;
537
- completedAt?: string | undefined;
538
- dueDate?: string | undefined;
539
- deadlineDate?: string | undefined;
540
- }, {
541
- content: string;
542
- description: string;
543
- id: string;
544
- projectId: string;
545
- checked: boolean;
546
- priority: "p1" | "p2" | "p3" | "p4";
547
- recurring: string | boolean;
548
- parentId?: string | undefined;
549
- sectionId?: string | undefined;
550
- assignedByUid?: string | undefined;
551
- responsibleUid?: string | undefined;
552
- labels?: string[] | undefined;
553
- duration?: string | undefined;
554
- completedAt?: string | undefined;
555
- dueDate?: string | undefined;
556
- deadlineDate?: string | undefined;
557
- }>, "many">;
411
+ }, import('zod/v4/core').$strip>>;
558
412
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
559
413
  totalCount: import('zod').ZodNumber;
560
414
  hasMore: import('zod').ZodBoolean;
@@ -562,15 +416,15 @@ declare const tools: {
562
416
  };
563
417
  mutability: "readonly";
564
418
  execute(args: {
565
- limit: number;
566
419
  daysCount: number;
567
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
568
- cursor?: string | undefined;
420
+ limit: number;
569
421
  labels?: string[] | undefined;
570
- responsibleUser?: string | undefined;
571
- labelsOperator?: "or" | "and" | undefined;
422
+ labelsOperator?: "and" | "or" | undefined;
572
423
  startDate?: string | undefined;
573
424
  overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
425
+ cursor?: string | undefined;
426
+ responsibleUser?: string | undefined;
427
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
574
428
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
575
429
  textContent: string;
576
430
  structuredContent: {
@@ -596,15 +450,15 @@ declare const tools: {
596
450
  totalCount: number;
597
451
  hasMore: boolean;
598
452
  appliedFilters: {
599
- limit: number;
600
453
  daysCount: number;
601
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
602
- cursor?: string | undefined;
454
+ limit: number;
603
455
  labels?: string[] | undefined;
604
- responsibleUser?: string | undefined;
605
- labelsOperator?: "or" | "and" | undefined;
456
+ labelsOperator?: "and" | "or" | undefined;
606
457
  startDate?: string | undefined;
607
458
  overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
459
+ cursor?: string | undefined;
460
+ responsibleUser?: string | undefined;
461
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
608
462
  };
609
463
  };
610
464
  }>;
@@ -613,9 +467,15 @@ declare const tools: {
613
467
  name: "find-completed-tasks";
614
468
  description: string;
615
469
  parameters: {
616
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
617
- labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<["and", "or"]>>;
618
- getBy: import('zod').ZodDefault<import('zod').ZodEnum<["completion", "due"]>>;
470
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
471
+ labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<{
472
+ and: "and";
473
+ or: "or";
474
+ }>>;
475
+ getBy: import('zod').ZodDefault<import('zod').ZodEnum<{
476
+ due: "due";
477
+ completion: "completion";
478
+ }>>;
619
479
  since: import('zod').ZodString;
620
480
  until: import('zod').ZodString;
621
481
  workspaceId: import('zod').ZodOptional<import('zod').ZodString>;
@@ -632,53 +492,25 @@ declare const tools: {
632
492
  content: import('zod').ZodString;
633
493
  description: import('zod').ZodString;
634
494
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
635
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
495
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
636
496
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
637
- priority: import('zod').ZodEnum<["p1", "p2", "p3", "p4"]>;
497
+ priority: import('zod').ZodEnum<{
498
+ p1: "p1";
499
+ p2: "p2";
500
+ p3: "p3";
501
+ p4: "p4";
502
+ }>;
638
503
  projectId: import('zod').ZodString;
639
504
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
640
505
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
641
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
506
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
642
507
  duration: import('zod').ZodOptional<import('zod').ZodString>;
643
508
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
509
+ isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
644
510
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
645
511
  checked: import('zod').ZodBoolean;
646
512
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
647
- }, "strip", import('zod').ZodTypeAny, {
648
- content: string;
649
- description: string;
650
- id: string;
651
- projectId: string;
652
- checked: boolean;
653
- priority: "p1" | "p2" | "p3" | "p4";
654
- recurring: string | boolean;
655
- parentId?: string | undefined;
656
- sectionId?: string | undefined;
657
- assignedByUid?: string | undefined;
658
- responsibleUid?: string | undefined;
659
- labels?: string[] | undefined;
660
- duration?: string | undefined;
661
- completedAt?: string | undefined;
662
- dueDate?: string | undefined;
663
- deadlineDate?: string | undefined;
664
- }, {
665
- content: string;
666
- description: string;
667
- id: string;
668
- projectId: string;
669
- checked: boolean;
670
- priority: "p1" | "p2" | "p3" | "p4";
671
- recurring: string | boolean;
672
- parentId?: string | undefined;
673
- sectionId?: string | undefined;
674
- assignedByUid?: string | undefined;
675
- responsibleUid?: string | undefined;
676
- labels?: string[] | undefined;
677
- duration?: string | undefined;
678
- completedAt?: string | undefined;
679
- dueDate?: string | undefined;
680
- deadlineDate?: string | undefined;
681
- }>, "many">;
513
+ }, import('zod/v4/core').$strip>>;
682
514
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
683
515
  totalCount: import('zod').ZodNumber;
684
516
  hasMore: import('zod').ZodBoolean;
@@ -686,18 +518,18 @@ declare const tools: {
686
518
  };
687
519
  mutability: "readonly";
688
520
  execute(args: {
689
- limit: number;
690
521
  getBy: "due" | "completion";
691
522
  since: string;
692
523
  until: string;
693
- parentId?: string | undefined;
524
+ limit: number;
525
+ labels?: string[] | undefined;
526
+ labelsOperator?: "and" | "or" | undefined;
694
527
  workspaceId?: string | undefined;
695
- cursor?: string | undefined;
696
528
  projectId?: string | undefined;
697
529
  sectionId?: string | undefined;
698
- labels?: string[] | undefined;
530
+ parentId?: string | undefined;
699
531
  responsibleUser?: string | undefined;
700
- labelsOperator?: "or" | "and" | undefined;
532
+ cursor?: string | undefined;
701
533
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
702
534
  textContent: string;
703
535
  structuredContent: {
@@ -723,18 +555,18 @@ declare const tools: {
723
555
  totalCount: number;
724
556
  hasMore: boolean;
725
557
  appliedFilters: {
726
- limit: number;
727
558
  getBy: "due" | "completion";
728
559
  since: string;
729
560
  until: string;
730
- parentId?: string | undefined;
561
+ limit: number;
562
+ labels?: string[] | undefined;
563
+ labelsOperator?: "and" | "or" | undefined;
731
564
  workspaceId?: string | undefined;
732
- cursor?: string | undefined;
733
565
  projectId?: string | undefined;
734
566
  sectionId?: string | undefined;
735
- labels?: string[] | undefined;
567
+ parentId?: string | undefined;
736
568
  responsibleUser?: string | undefined;
737
- labelsOperator?: "or" | "and" | undefined;
569
+ cursor?: string | undefined;
738
570
  };
739
571
  };
740
572
  }>;
@@ -747,18 +579,12 @@ declare const tools: {
747
579
  name: import('zod').ZodString;
748
580
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
749
581
  isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
750
- viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<["list", "board", "calendar"]>>;
751
- }, "strip", import('zod').ZodTypeAny, {
752
- name: string;
753
- isFavorite?: boolean | undefined;
754
- viewStyle?: "list" | "board" | "calendar" | undefined;
755
- parentId?: string | undefined;
756
- }, {
757
- name: string;
758
- isFavorite?: boolean | undefined;
759
- viewStyle?: "list" | "board" | "calendar" | undefined;
760
- parentId?: string | undefined;
761
- }>, "many">;
582
+ viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<{
583
+ list: "list";
584
+ board: "board";
585
+ calendar: "calendar";
586
+ }>>;
587
+ }, import('zod/v4/core').$strip>>;
762
588
  };
763
589
  outputSchema: {
764
590
  projects: import('zod').ZodArray<import('zod').ZodObject<{
@@ -770,86 +596,30 @@ declare const tools: {
770
596
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
771
597
  inboxProject: import('zod').ZodBoolean;
772
598
  viewStyle: import('zod').ZodString;
773
- }, "strip", import('zod').ZodTypeAny, {
774
- name: string;
775
- id: string;
776
- color: string;
777
- isFavorite: boolean;
778
- viewStyle: string;
779
- isShared: boolean;
780
- inboxProject: boolean;
781
- parentId?: string | undefined;
782
- }, {
783
- name: string;
784
- id: string;
785
- color: string;
786
- isFavorite: boolean;
787
- viewStyle: string;
788
- isShared: boolean;
789
- inboxProject: boolean;
790
- parentId?: string | undefined;
791
- }>, "many">;
599
+ }, import('zod/v4/core').$strip>>;
792
600
  totalCount: import('zod').ZodNumber;
793
601
  };
794
602
  mutability: "additive";
795
603
  execute({ projects }: {
796
604
  projects: {
797
605
  name: string;
606
+ parentId?: string | undefined;
798
607
  isFavorite?: boolean | undefined;
799
608
  viewStyle?: "list" | "board" | "calendar" | undefined;
800
- parentId?: string | undefined;
801
609
  }[];
802
610
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
803
611
  textContent: string;
804
612
  structuredContent: {
805
- projects: ({
806
- parentId: string | undefined;
807
- inboxProject: boolean;
808
- url: string;
613
+ projects: {
809
614
  id: string;
810
- canAssignTasks: boolean;
811
- childOrder: number;
615
+ name: string;
812
616
  color: string;
813
- createdAt: string | null;
814
- isArchived: boolean;
815
- isDeleted: boolean;
816
617
  isFavorite: boolean;
817
- isFrozen: boolean;
818
- name: string;
819
- updatedAt: string | null;
820
- viewStyle: string;
821
- defaultOrder: number;
822
- description: string;
823
- isCollapsed: boolean;
824
618
  isShared: boolean;
825
- } | {
826
619
  parentId: string | undefined;
827
620
  inboxProject: boolean;
828
- url: string;
829
- id: string;
830
- canAssignTasks: boolean;
831
- childOrder: number;
832
- color: string;
833
- createdAt: string | null;
834
- isArchived: boolean;
835
- isDeleted: boolean;
836
- isFavorite: boolean;
837
- isFrozen: boolean;
838
- name: string;
839
- updatedAt: string | null;
840
621
  viewStyle: string;
841
- defaultOrder: number;
842
- description: string;
843
- isCollapsed: boolean;
844
- isShared: boolean;
845
- collaboratorRoleDefault: string;
846
- folderId: string | null;
847
- isInviteOnly: boolean | null;
848
- isLinkSharingEnabled: boolean;
849
- role: string | null;
850
- status: string;
851
- workspaceId: string;
852
- })[];
622
+ }[];
853
623
  totalCount: number;
854
624
  };
855
625
  }>;
@@ -862,18 +632,12 @@ declare const tools: {
862
632
  id: import('zod').ZodString;
863
633
  name: import('zod').ZodOptional<import('zod').ZodString>;
864
634
  isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
865
- viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<["list", "board", "calendar"]>>;
866
- }, "strip", import('zod').ZodTypeAny, {
867
- id: string;
868
- name?: string | undefined;
869
- isFavorite?: boolean | undefined;
870
- viewStyle?: "list" | "board" | "calendar" | undefined;
871
- }, {
872
- id: string;
873
- name?: string | undefined;
874
- isFavorite?: boolean | undefined;
875
- viewStyle?: "list" | "board" | "calendar" | undefined;
876
- }>, "many">;
635
+ viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<{
636
+ list: "list";
637
+ board: "board";
638
+ calendar: "calendar";
639
+ }>>;
640
+ }, import('zod/v4/core').$strip>>;
877
641
  };
878
642
  outputSchema: {
879
643
  projects: import('zod').ZodArray<import('zod').ZodObject<{
@@ -885,37 +649,13 @@ declare const tools: {
885
649
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
886
650
  inboxProject: import('zod').ZodBoolean;
887
651
  viewStyle: import('zod').ZodString;
888
- }, "strip", import('zod').ZodTypeAny, {
889
- name: string;
890
- id: string;
891
- color: string;
892
- isFavorite: boolean;
893
- viewStyle: string;
894
- isShared: boolean;
895
- inboxProject: boolean;
896
- parentId?: string | undefined;
897
- }, {
898
- name: string;
899
- id: string;
900
- color: string;
901
- isFavorite: boolean;
902
- viewStyle: string;
903
- isShared: boolean;
904
- inboxProject: boolean;
905
- parentId?: string | undefined;
906
- }>, "many">;
652
+ }, import('zod/v4/core').$strip>>;
907
653
  totalCount: import('zod').ZodNumber;
908
- updatedProjectIds: import('zod').ZodArray<import('zod').ZodString, "many">;
654
+ updatedProjectIds: import('zod').ZodArray<import('zod').ZodString>;
909
655
  appliedOperations: import('zod').ZodObject<{
910
656
  updateCount: import('zod').ZodNumber;
911
657
  skippedCount: import('zod').ZodNumber;
912
- }, "strip", import('zod').ZodTypeAny, {
913
- updateCount: number;
914
- skippedCount: number;
915
- }, {
916
- updateCount: number;
917
- skippedCount: number;
918
- }>;
658
+ }, import('zod/v4/core').$strip>;
919
659
  };
920
660
  mutability: "mutating";
921
661
  execute(args: {
@@ -928,54 +668,16 @@ declare const tools: {
928
668
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
929
669
  textContent: string;
930
670
  structuredContent: {
931
- projects: ({
932
- parentId: string | undefined;
933
- inboxProject: boolean;
934
- url: string;
671
+ projects: {
935
672
  id: string;
936
- canAssignTasks: boolean;
937
- childOrder: number;
673
+ name: string;
938
674
  color: string;
939
- createdAt: string | null;
940
- isArchived: boolean;
941
- isDeleted: boolean;
942
675
  isFavorite: boolean;
943
- isFrozen: boolean;
944
- name: string;
945
- updatedAt: string | null;
946
- viewStyle: string;
947
- defaultOrder: number;
948
- description: string;
949
- isCollapsed: boolean;
950
676
  isShared: boolean;
951
- } | {
952
677
  parentId: string | undefined;
953
678
  inboxProject: boolean;
954
- url: string;
955
- id: string;
956
- canAssignTasks: boolean;
957
- childOrder: number;
958
- color: string;
959
- createdAt: string | null;
960
- isArchived: boolean;
961
- isDeleted: boolean;
962
- isFavorite: boolean;
963
- isFrozen: boolean;
964
- name: string;
965
- updatedAt: string | null;
966
679
  viewStyle: string;
967
- defaultOrder: number;
968
- description: string;
969
- isCollapsed: boolean;
970
- isShared: boolean;
971
- collaboratorRoleDefault: string;
972
- folderId: string | null;
973
- isInviteOnly: boolean | null;
974
- isLinkSharingEnabled: boolean;
975
- role: string | null;
976
- status: string;
977
- workspaceId: string;
978
- })[];
680
+ }[];
979
681
  totalCount: number;
980
682
  updatedProjectIds: string[];
981
683
  appliedOperations: {
@@ -1003,25 +705,7 @@ declare const tools: {
1003
705
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
1004
706
  inboxProject: import('zod').ZodBoolean;
1005
707
  viewStyle: import('zod').ZodString;
1006
- }, "strip", import('zod').ZodTypeAny, {
1007
- name: string;
1008
- id: string;
1009
- color: string;
1010
- isFavorite: boolean;
1011
- viewStyle: string;
1012
- isShared: boolean;
1013
- inboxProject: boolean;
1014
- parentId?: string | undefined;
1015
- }, {
1016
- name: string;
1017
- id: string;
1018
- color: string;
1019
- isFavorite: boolean;
1020
- viewStyle: string;
1021
- isShared: boolean;
1022
- inboxProject: boolean;
1023
- parentId?: string | undefined;
1024
- }>, "many">;
708
+ }, import('zod/v4/core').$strip>>;
1025
709
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1026
710
  totalCount: import('zod').ZodNumber;
1027
711
  hasMore: import('zod').ZodBoolean;
@@ -1030,8 +714,8 @@ declare const tools: {
1030
714
  mutability: "readonly";
1031
715
  execute(args: {
1032
716
  limit: number;
1033
- cursor?: string | undefined;
1034
717
  search?: string | undefined;
718
+ cursor?: string | undefined;
1035
719
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1036
720
  textContent: string;
1037
721
  structuredContent: {
@@ -1050,8 +734,8 @@ declare const tools: {
1050
734
  hasMore: boolean;
1051
735
  appliedFilters: {
1052
736
  limit: number;
1053
- cursor?: string | undefined;
1054
737
  search?: string | undefined;
738
+ cursor?: string | undefined;
1055
739
  };
1056
740
  };
1057
741
  }>;
@@ -1063,25 +747,13 @@ declare const tools: {
1063
747
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1064
748
  name: import('zod').ZodString;
1065
749
  projectId: import('zod').ZodString;
1066
- }, "strip", import('zod').ZodTypeAny, {
1067
- name: string;
1068
- projectId: string;
1069
- }, {
1070
- name: string;
1071
- projectId: string;
1072
- }>, "many">;
750
+ }, import('zod/v4/core').$strip>>;
1073
751
  };
1074
752
  outputSchema: {
1075
753
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1076
754
  id: import('zod').ZodString;
1077
755
  name: import('zod').ZodString;
1078
- }, "strip", import('zod').ZodTypeAny, {
1079
- name: string;
1080
- id: string;
1081
- }, {
1082
- name: string;
1083
- id: string;
1084
- }>, "many">;
756
+ }, import('zod/v4/core').$strip>>;
1085
757
  totalCount: import('zod').ZodNumber;
1086
758
  };
1087
759
  mutability: "additive";
@@ -1118,33 +790,21 @@ declare const tools: {
1118
790
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1119
791
  id: import('zod').ZodString;
1120
792
  name: import('zod').ZodString;
1121
- }, "strip", import('zod').ZodTypeAny, {
1122
- name: string;
1123
- id: string;
1124
- }, {
1125
- name: string;
1126
- id: string;
1127
- }>, "many">;
793
+ }, import('zod/v4/core').$strip>>;
1128
794
  };
1129
795
  outputSchema: {
1130
796
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1131
797
  id: import('zod').ZodString;
1132
798
  name: import('zod').ZodString;
1133
- }, "strip", import('zod').ZodTypeAny, {
1134
- name: string;
1135
- id: string;
1136
- }, {
1137
- name: string;
1138
- id: string;
1139
- }>, "many">;
799
+ }, import('zod/v4/core').$strip>>;
1140
800
  totalCount: import('zod').ZodNumber;
1141
- updatedSectionIds: import('zod').ZodArray<import('zod').ZodString, "many">;
801
+ updatedSectionIds: import('zod').ZodArray<import('zod').ZodString>;
1142
802
  };
1143
803
  mutability: "mutating";
1144
804
  execute({ sections }: {
1145
805
  sections: {
1146
- name: string;
1147
806
  id: string;
807
+ name: string;
1148
808
  }[];
1149
809
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1150
810
  textContent: string;
@@ -1179,13 +839,7 @@ declare const tools: {
1179
839
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1180
840
  id: import('zod').ZodString;
1181
841
  name: import('zod').ZodString;
1182
- }, "strip", import('zod').ZodTypeAny, {
1183
- name: string;
1184
- id: string;
1185
- }, {
1186
- name: string;
1187
- id: string;
1188
- }>, "many">;
842
+ }, import('zod/v4/core').$strip>>;
1189
843
  totalCount: import('zod').ZodNumber;
1190
844
  appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1191
845
  };
@@ -1216,15 +870,7 @@ declare const tools: {
1216
870
  taskId: import('zod').ZodOptional<import('zod').ZodString>;
1217
871
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1218
872
  content: import('zod').ZodString;
1219
- }, "strip", import('zod').ZodTypeAny, {
1220
- content: string;
1221
- projectId?: string | undefined;
1222
- taskId?: string | undefined;
1223
- }, {
1224
- content: string;
1225
- projectId?: string | undefined;
1226
- taskId?: string | undefined;
1227
- }>, "many">;
873
+ }, import('zod/v4/core').$strip>>;
1228
874
  };
1229
875
  outputSchema: {
1230
876
  comments: import('zod').ZodArray<import('zod').ZodObject<{
@@ -1241,91 +887,26 @@ declare const tools: {
1241
887
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1242
888
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1243
889
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1244
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
890
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
891
+ pending: "pending";
892
+ completed: "completed";
893
+ }>>;
1245
894
  url: import('zod').ZodOptional<import('zod').ZodString>;
1246
895
  title: import('zod').ZodOptional<import('zod').ZodString>;
1247
896
  image: import('zod').ZodOptional<import('zod').ZodString>;
1248
897
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1249
898
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1250
- }, "strip", import('zod').ZodTypeAny, {
1251
- resourceType: string;
1252
- title?: string | undefined;
1253
- fileName?: string | undefined;
1254
- fileSize?: number | undefined;
1255
- fileType?: string | undefined;
1256
- fileUrl?: string | undefined;
1257
- fileDuration?: number | undefined;
1258
- uploadState?: "pending" | "completed" | undefined;
1259
- image?: string | undefined;
1260
- imageWidth?: number | undefined;
1261
- imageHeight?: number | undefined;
1262
- url?: string | undefined;
1263
- }, {
1264
- resourceType: string;
1265
- title?: string | undefined;
1266
- fileName?: string | undefined;
1267
- fileSize?: number | undefined;
1268
- fileType?: string | undefined;
1269
- fileUrl?: string | undefined;
1270
- fileDuration?: number | undefined;
1271
- uploadState?: "pending" | "completed" | undefined;
1272
- image?: string | undefined;
1273
- imageWidth?: number | undefined;
1274
- imageHeight?: number | undefined;
1275
- url?: string | undefined;
1276
- }>>;
1277
- }, "strip", import('zod').ZodTypeAny, {
1278
- content: string;
1279
- id: string;
1280
- postedAt: string;
1281
- projectId?: string | undefined;
1282
- fileAttachment?: {
1283
- resourceType: string;
1284
- title?: string | undefined;
1285
- fileName?: string | undefined;
1286
- fileSize?: number | undefined;
1287
- fileType?: string | undefined;
1288
- fileUrl?: string | undefined;
1289
- fileDuration?: number | undefined;
1290
- uploadState?: "pending" | "completed" | undefined;
1291
- image?: string | undefined;
1292
- imageWidth?: number | undefined;
1293
- imageHeight?: number | undefined;
1294
- url?: string | undefined;
1295
- } | undefined;
1296
- postedUid?: string | undefined;
1297
- taskId?: string | undefined;
1298
- }, {
1299
- content: string;
1300
- id: string;
1301
- postedAt: string;
1302
- projectId?: string | undefined;
1303
- fileAttachment?: {
1304
- resourceType: string;
1305
- title?: string | undefined;
1306
- fileName?: string | undefined;
1307
- fileSize?: number | undefined;
1308
- fileType?: string | undefined;
1309
- fileUrl?: string | undefined;
1310
- fileDuration?: number | undefined;
1311
- uploadState?: "pending" | "completed" | undefined;
1312
- image?: string | undefined;
1313
- imageWidth?: number | undefined;
1314
- imageHeight?: number | undefined;
1315
- url?: string | undefined;
1316
- } | undefined;
1317
- postedUid?: string | undefined;
1318
- taskId?: string | undefined;
1319
- }>, "many">;
899
+ }, import('zod/v4/core').$strip>>;
900
+ }, import('zod/v4/core').$strip>>;
1320
901
  totalCount: import('zod').ZodNumber;
1321
- addedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
902
+ addedCommentIds: import('zod').ZodArray<import('zod').ZodString>;
1322
903
  };
1323
904
  mutability: "additive";
1324
905
  execute(args: {
1325
906
  comments: {
1326
907
  content: string;
1327
- projectId?: string | undefined;
1328
908
  taskId?: string | undefined;
909
+ projectId?: string | undefined;
1329
910
  }[];
1330
911
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1331
912
  textContent: string;
@@ -1364,13 +945,7 @@ declare const tools: {
1364
945
  comments: import('zod').ZodArray<import('zod').ZodObject<{
1365
946
  id: import('zod').ZodString;
1366
947
  content: import('zod').ZodString;
1367
- }, "strip", import('zod').ZodTypeAny, {
1368
- content: string;
1369
- id: string;
1370
- }, {
1371
- content: string;
1372
- id: string;
1373
- }>, "many">;
948
+ }, import('zod/v4/core').$strip>>;
1374
949
  };
1375
950
  outputSchema: {
1376
951
  comments: import('zod').ZodArray<import('zod').ZodObject<{
@@ -1387,97 +962,28 @@ declare const tools: {
1387
962
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1388
963
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1389
964
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1390
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
965
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
966
+ pending: "pending";
967
+ completed: "completed";
968
+ }>>;
1391
969
  url: import('zod').ZodOptional<import('zod').ZodString>;
1392
970
  title: import('zod').ZodOptional<import('zod').ZodString>;
1393
971
  image: import('zod').ZodOptional<import('zod').ZodString>;
1394
972
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1395
973
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1396
- }, "strip", import('zod').ZodTypeAny, {
1397
- resourceType: string;
1398
- title?: string | undefined;
1399
- fileName?: string | undefined;
1400
- fileSize?: number | undefined;
1401
- fileType?: string | undefined;
1402
- fileUrl?: string | undefined;
1403
- fileDuration?: number | undefined;
1404
- uploadState?: "pending" | "completed" | undefined;
1405
- image?: string | undefined;
1406
- imageWidth?: number | undefined;
1407
- imageHeight?: number | undefined;
1408
- url?: string | undefined;
1409
- }, {
1410
- resourceType: string;
1411
- title?: string | undefined;
1412
- fileName?: string | undefined;
1413
- fileSize?: number | undefined;
1414
- fileType?: string | undefined;
1415
- fileUrl?: string | undefined;
1416
- fileDuration?: number | undefined;
1417
- uploadState?: "pending" | "completed" | undefined;
1418
- image?: string | undefined;
1419
- imageWidth?: number | undefined;
1420
- imageHeight?: number | undefined;
1421
- url?: string | undefined;
1422
- }>>;
1423
- }, "strip", import('zod').ZodTypeAny, {
1424
- content: string;
1425
- id: string;
1426
- postedAt: string;
1427
- projectId?: string | undefined;
1428
- fileAttachment?: {
1429
- resourceType: string;
1430
- title?: string | undefined;
1431
- fileName?: string | undefined;
1432
- fileSize?: number | undefined;
1433
- fileType?: string | undefined;
1434
- fileUrl?: string | undefined;
1435
- fileDuration?: number | undefined;
1436
- uploadState?: "pending" | "completed" | undefined;
1437
- image?: string | undefined;
1438
- imageWidth?: number | undefined;
1439
- imageHeight?: number | undefined;
1440
- url?: string | undefined;
1441
- } | undefined;
1442
- postedUid?: string | undefined;
1443
- taskId?: string | undefined;
1444
- }, {
1445
- content: string;
1446
- id: string;
1447
- postedAt: string;
1448
- projectId?: string | undefined;
1449
- fileAttachment?: {
1450
- resourceType: string;
1451
- title?: string | undefined;
1452
- fileName?: string | undefined;
1453
- fileSize?: number | undefined;
1454
- fileType?: string | undefined;
1455
- fileUrl?: string | undefined;
1456
- fileDuration?: number | undefined;
1457
- uploadState?: "pending" | "completed" | undefined;
1458
- image?: string | undefined;
1459
- imageWidth?: number | undefined;
1460
- imageHeight?: number | undefined;
1461
- url?: string | undefined;
1462
- } | undefined;
1463
- postedUid?: string | undefined;
1464
- taskId?: string | undefined;
1465
- }>, "many">;
974
+ }, import('zod/v4/core').$strip>>;
975
+ }, import('zod/v4/core').$strip>>;
1466
976
  totalCount: import('zod').ZodNumber;
1467
- updatedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
977
+ updatedCommentIds: import('zod').ZodArray<import('zod').ZodString>;
1468
978
  appliedOperations: import('zod').ZodObject<{
1469
979
  updateCount: import('zod').ZodNumber;
1470
- }, "strip", import('zod').ZodTypeAny, {
1471
- updateCount: number;
1472
- }, {
1473
- updateCount: number;
1474
- }>;
980
+ }, import('zod/v4/core').$strip>;
1475
981
  };
1476
982
  mutability: "mutating";
1477
983
  execute(args: {
1478
984
  comments: {
1479
- content: string;
1480
985
  id: string;
986
+ content: string;
1481
987
  }[];
1482
988
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1483
989
  textContent: string;
@@ -1537,92 +1043,27 @@ declare const tools: {
1537
1043
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1538
1044
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1539
1045
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1540
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
1046
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
1047
+ pending: "pending";
1048
+ completed: "completed";
1049
+ }>>;
1541
1050
  url: import('zod').ZodOptional<import('zod').ZodString>;
1542
1051
  title: import('zod').ZodOptional<import('zod').ZodString>;
1543
1052
  image: import('zod').ZodOptional<import('zod').ZodString>;
1544
1053
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1545
1054
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1546
- }, "strip", import('zod').ZodTypeAny, {
1547
- resourceType: string;
1548
- title?: string | undefined;
1549
- fileName?: string | undefined;
1550
- fileSize?: number | undefined;
1551
- fileType?: string | undefined;
1552
- fileUrl?: string | undefined;
1553
- fileDuration?: number | undefined;
1554
- uploadState?: "pending" | "completed" | undefined;
1555
- image?: string | undefined;
1556
- imageWidth?: number | undefined;
1557
- imageHeight?: number | undefined;
1558
- url?: string | undefined;
1559
- }, {
1560
- resourceType: string;
1561
- title?: string | undefined;
1562
- fileName?: string | undefined;
1563
- fileSize?: number | undefined;
1564
- fileType?: string | undefined;
1565
- fileUrl?: string | undefined;
1566
- fileDuration?: number | undefined;
1567
- uploadState?: "pending" | "completed" | undefined;
1568
- image?: string | undefined;
1569
- imageWidth?: number | undefined;
1570
- imageHeight?: number | undefined;
1571
- url?: string | undefined;
1572
- }>>;
1573
- }, "strip", import('zod').ZodTypeAny, {
1574
- content: string;
1575
- id: string;
1576
- postedAt: string;
1577
- projectId?: string | undefined;
1578
- fileAttachment?: {
1579
- resourceType: string;
1580
- title?: string | undefined;
1581
- fileName?: string | undefined;
1582
- fileSize?: number | undefined;
1583
- fileType?: string | undefined;
1584
- fileUrl?: string | undefined;
1585
- fileDuration?: number | undefined;
1586
- uploadState?: "pending" | "completed" | undefined;
1587
- image?: string | undefined;
1588
- imageWidth?: number | undefined;
1589
- imageHeight?: number | undefined;
1590
- url?: string | undefined;
1591
- } | undefined;
1592
- postedUid?: string | undefined;
1593
- taskId?: string | undefined;
1594
- }, {
1595
- content: string;
1596
- id: string;
1597
- postedAt: string;
1598
- projectId?: string | undefined;
1599
- fileAttachment?: {
1600
- resourceType: string;
1601
- title?: string | undefined;
1602
- fileName?: string | undefined;
1603
- fileSize?: number | undefined;
1604
- fileType?: string | undefined;
1605
- fileUrl?: string | undefined;
1606
- fileDuration?: number | undefined;
1607
- uploadState?: "pending" | "completed" | undefined;
1608
- image?: string | undefined;
1609
- imageWidth?: number | undefined;
1610
- imageHeight?: number | undefined;
1611
- url?: string | undefined;
1612
- } | undefined;
1613
- postedUid?: string | undefined;
1614
- taskId?: string | undefined;
1615
- }>, "many">;
1055
+ }, import('zod/v4/core').$strip>>;
1056
+ }, import('zod/v4/core').$strip>>;
1616
1057
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1617
1058
  totalCount: import('zod').ZodNumber;
1618
1059
  };
1619
1060
  mutability: "readonly";
1620
1061
  execute(args: {
1621
- cursor?: string | undefined;
1622
- limit?: number | undefined;
1623
- projectId?: string | undefined;
1624
1062
  taskId?: string | undefined;
1063
+ projectId?: string | undefined;
1625
1064
  commentId?: string | undefined;
1065
+ cursor?: string | undefined;
1066
+ limit?: number | undefined;
1626
1067
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1627
1068
  textContent: string;
1628
1069
  structuredContent: {
@@ -1660,9 +1101,23 @@ declare const tools: {
1660
1101
  name: "find-activity";
1661
1102
  description: string;
1662
1103
  parameters: {
1663
- objectType: import('zod').ZodOptional<import('zod').ZodEnum<["task", "project", "comment"]>>;
1104
+ objectType: import('zod').ZodOptional<import('zod').ZodEnum<{
1105
+ task: "task";
1106
+ comment: "comment";
1107
+ project: "project";
1108
+ }>>;
1664
1109
  objectId: import('zod').ZodOptional<import('zod').ZodString>;
1665
- eventType: import('zod').ZodOptional<import('zod').ZodEnum<["added", "updated", "deleted", "completed", "uncompleted", "archived", "unarchived", "shared", "left"]>>;
1110
+ eventType: import('zod').ZodOptional<import('zod').ZodEnum<{
1111
+ completed: "completed";
1112
+ added: "added";
1113
+ updated: "updated";
1114
+ deleted: "deleted";
1115
+ uncompleted: "uncompleted";
1116
+ archived: "archived";
1117
+ unarchived: "unarchived";
1118
+ shared: "shared";
1119
+ left: "left";
1120
+ }>>;
1666
1121
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1667
1122
  taskId: import('zod').ZodOptional<import('zod').ZodString>;
1668
1123
  initiatorId: import('zod').ZodOptional<import('zod').ZodString>;
@@ -1680,27 +1135,7 @@ declare const tools: {
1680
1135
  parentItemId: import('zod').ZodOptional<import('zod').ZodString>;
1681
1136
  initiatorId: import('zod').ZodOptional<import('zod').ZodString>;
1682
1137
  extraData: import('zod').ZodOptional<import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>>;
1683
- }, "strip", import('zod').ZodTypeAny, {
1684
- objectType: string;
1685
- objectId: string;
1686
- eventType: string;
1687
- eventDate: string;
1688
- id?: string | undefined;
1689
- parentProjectId?: string | undefined;
1690
- parentItemId?: string | undefined;
1691
- initiatorId?: string | undefined;
1692
- extraData?: Record<string, unknown> | undefined;
1693
- }, {
1694
- objectType: string;
1695
- objectId: string;
1696
- eventType: string;
1697
- eventDate: string;
1698
- id?: string | undefined;
1699
- parentProjectId?: string | undefined;
1700
- parentItemId?: string | undefined;
1701
- initiatorId?: string | undefined;
1702
- extraData?: Record<string, unknown> | undefined;
1703
- }>, "many">;
1138
+ }, import('zod/v4/core').$strip>>;
1704
1139
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1705
1140
  totalCount: import('zod').ZodNumber;
1706
1141
  hasMore: import('zod').ZodBoolean;
@@ -1709,13 +1144,13 @@ declare const tools: {
1709
1144
  mutability: "readonly";
1710
1145
  execute(args: {
1711
1146
  limit: number;
1712
- cursor?: string | undefined;
1713
- projectId?: string | undefined;
1714
- objectType?: "comment" | "task" | "project" | undefined;
1147
+ objectType?: "task" | "comment" | "project" | undefined;
1715
1148
  objectId?: string | undefined;
1716
1149
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
1717
- initiatorId?: string | undefined;
1150
+ projectId?: string | undefined;
1718
1151
  taskId?: string | undefined;
1152
+ initiatorId?: string | undefined;
1153
+ cursor?: string | undefined;
1719
1154
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1720
1155
  textContent: string;
1721
1156
  structuredContent: {
@@ -1735,13 +1170,13 @@ declare const tools: {
1735
1170
  hasMore: boolean;
1736
1171
  appliedFilters: {
1737
1172
  limit: number;
1738
- cursor?: string | undefined;
1739
- projectId?: string | undefined;
1740
- objectType?: "comment" | "task" | "project" | undefined;
1173
+ objectType?: "task" | "comment" | "project" | undefined;
1741
1174
  objectId?: string | undefined;
1742
1175
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
1743
- initiatorId?: string | undefined;
1176
+ projectId?: string | undefined;
1744
1177
  taskId?: string | undefined;
1178
+ initiatorId?: string | undefined;
1179
+ cursor?: string | undefined;
1745
1180
  };
1746
1181
  };
1747
1182
  }>;
@@ -1753,7 +1188,10 @@ declare const tools: {
1753
1188
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1754
1189
  };
1755
1190
  outputSchema: {
1756
- type: import('zod').ZodEnum<["account_overview", "project_overview"]>;
1191
+ type: import('zod').ZodEnum<{
1192
+ account_overview: "account_overview";
1193
+ project_overview: "project_overview";
1194
+ }>;
1757
1195
  totalProjects: import('zod').ZodOptional<import('zod').ZodNumber>;
1758
1196
  totalTasks: import('zod').ZodOptional<import('zod').ZodNumber>;
1759
1197
  totalSections: import('zod').ZodOptional<import('zod').ZodNumber>;
@@ -1763,23 +1201,13 @@ declare const tools: {
1763
1201
  name: import('zod').ZodString;
1764
1202
  isShared: import('zod').ZodBoolean;
1765
1203
  isFavorite: import('zod').ZodBoolean;
1766
- }, "strip", import('zod').ZodTypeAny, {
1767
- name: string;
1768
- id: string;
1769
- isFavorite: boolean;
1770
- isShared: boolean;
1771
- }, {
1772
- name: string;
1773
- id: string;
1774
- isFavorite: boolean;
1775
- isShared: boolean;
1776
- }>>;
1204
+ }, import('zod/v4/core').$strip>>;
1777
1205
  hasNestedProjects: import('zod').ZodOptional<import('zod').ZodBoolean>;
1778
1206
  inbox: import('zod').ZodOptional<import('zod').ZodAny>;
1779
- projects: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny, "many">>;
1207
+ projects: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny>>;
1780
1208
  project: import('zod').ZodOptional<import('zod').ZodAny>;
1781
- sections: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny, "many">>;
1782
- tasks: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny, "many">>;
1209
+ sections: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny>>;
1210
+ tasks: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny>>;
1783
1211
  stats: import('zod').ZodOptional<import('zod').ZodAny>;
1784
1212
  };
1785
1213
  mutability: "readonly";
@@ -1794,31 +1222,35 @@ declare const tools: {
1794
1222
  name: "delete-object";
1795
1223
  description: string;
1796
1224
  parameters: {
1797
- type: import('zod').ZodEnum<["project", "section", "task", "comment"]>;
1225
+ type: import('zod').ZodEnum<{
1226
+ task: "task";
1227
+ comment: "comment";
1228
+ project: "project";
1229
+ section: "section";
1230
+ }>;
1798
1231
  id: import('zod').ZodString;
1799
1232
  };
1800
1233
  outputSchema: {
1801
1234
  deletedEntity: import('zod').ZodObject<{
1802
- type: import('zod').ZodEnum<["project", "section", "task", "comment"]>;
1235
+ type: import('zod').ZodEnum<{
1236
+ task: "task";
1237
+ comment: "comment";
1238
+ project: "project";
1239
+ section: "section";
1240
+ }>;
1803
1241
  id: import('zod').ZodString;
1804
- }, "strip", import('zod').ZodTypeAny, {
1805
- type: "comment" | "task" | "project" | "section";
1806
- id: string;
1807
- }, {
1808
- type: "comment" | "task" | "project" | "section";
1809
- id: string;
1810
- }>;
1242
+ }, import('zod/v4/core').$strip>;
1811
1243
  success: import('zod').ZodBoolean;
1812
1244
  };
1813
1245
  mutability: "mutating";
1814
1246
  execute(args: {
1815
- type: "comment" | "task" | "project" | "section";
1247
+ type: "task" | "comment" | "project" | "section";
1816
1248
  id: string;
1817
1249
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1818
1250
  textContent: string;
1819
1251
  structuredContent: {
1820
1252
  deletedEntity: {
1821
- type: "comment" | "task" | "project" | "section";
1253
+ type: "task" | "comment" | "project" | "section";
1822
1254
  id: string;
1823
1255
  };
1824
1256
  success: true;
@@ -1844,10 +1276,14 @@ declare const tools: {
1844
1276
  dailyGoal: import('zod').ZodNumber;
1845
1277
  weeklyGoal: import('zod').ZodNumber;
1846
1278
  email: import('zod').ZodString;
1847
- plan: import('zod').ZodEnum<["Todoist Free", "Todoist Pro", "Todoist Business"]>;
1279
+ plan: import('zod').ZodEnum<{
1280
+ "Todoist Free": "Todoist Free";
1281
+ "Todoist Pro": "Todoist Pro";
1282
+ "Todoist Business": "Todoist Business";
1283
+ }>;
1848
1284
  };
1849
1285
  mutability: "readonly";
1850
- execute(_args: {}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1286
+ execute(_args: Record<string, never>, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1851
1287
  textContent: string;
1852
1288
  structuredContent: import('./tools/user-info.js').UserInfoStructured;
1853
1289
  }>;
@@ -1864,28 +1300,12 @@ declare const tools: {
1864
1300
  id: import('zod').ZodString;
1865
1301
  name: import('zod').ZodString;
1866
1302
  email: import('zod').ZodString;
1867
- }, "strip", import('zod').ZodTypeAny, {
1868
- name: string;
1869
- id: string;
1870
- email: string;
1871
- }, {
1872
- name: string;
1873
- id: string;
1874
- email: string;
1875
- }>, "many">;
1303
+ }, import('zod/v4/core').$strip>>;
1876
1304
  projectInfo: import('zod').ZodOptional<import('zod').ZodObject<{
1877
1305
  id: import('zod').ZodString;
1878
1306
  name: import('zod').ZodString;
1879
1307
  isShared: import('zod').ZodBoolean;
1880
- }, "strip", import('zod').ZodTypeAny, {
1881
- name: string;
1882
- id: string;
1883
- isShared: boolean;
1884
- }, {
1885
- name: string;
1886
- id: string;
1887
- isShared: boolean;
1888
- }>>;
1308
+ }, import('zod/v4/core').$strip>>;
1889
1309
  totalCount: import('zod').ZodNumber;
1890
1310
  totalAvailable: import('zod').ZodOptional<import('zod').ZodNumber>;
1891
1311
  appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
@@ -1948,8 +1368,12 @@ declare const tools: {
1948
1368
  name: "manage-assignments";
1949
1369
  description: string;
1950
1370
  parameters: {
1951
- operation: import('zod').ZodEnum<["assign", "unassign", "reassign"]>;
1952
- taskIds: import('zod').ZodArray<import('zod').ZodString, "many">;
1371
+ operation: import('zod').ZodEnum<{
1372
+ assign: "assign";
1373
+ unassign: "unassign";
1374
+ reassign: "reassign";
1375
+ }>;
1376
+ taskIds: import('zod').ZodArray<import('zod').ZodString>;
1953
1377
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
1954
1378
  fromAssigneeUser: import('zod').ZodOptional<import('zod').ZodString>;
1955
1379
  dryRun: import('zod').ZodDefault<import('zod').ZodOptional<import('zod').ZodBoolean>>;
@@ -1961,41 +1385,19 @@ declare const tools: {
1961
1385
  error: import('zod').ZodOptional<import('zod').ZodString>;
1962
1386
  originalAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
1963
1387
  newAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
1964
- }, "strip", import('zod').ZodTypeAny, {
1965
- taskId: string;
1966
- success: boolean;
1967
- error?: string | undefined;
1968
- originalAssigneeId?: string | undefined;
1969
- newAssigneeId?: string | undefined;
1970
- }, {
1971
- taskId: string;
1972
- success: boolean;
1973
- error?: string | undefined;
1974
- originalAssigneeId?: string | undefined;
1975
- newAssigneeId?: string | undefined;
1976
- }>, "many">;
1388
+ }, import('zod/v4/core').$strip>>;
1977
1389
  summary: import('zod').ZodOptional<import('zod').ZodObject<{
1978
1390
  total: import('zod').ZodNumber;
1979
1391
  succeeded: import('zod').ZodNumber;
1980
1392
  failed: import('zod').ZodNumber;
1981
1393
  dryRun: import('zod').ZodBoolean;
1982
- }, "strip", import('zod').ZodTypeAny, {
1983
- total: number;
1984
- succeeded: number;
1985
- failed: number;
1986
- dryRun: boolean;
1987
- }, {
1988
- total: number;
1989
- succeeded: number;
1990
- failed: number;
1991
- dryRun: boolean;
1992
- }>>;
1394
+ }, import('zod/v4/core').$strip>>;
1993
1395
  };
1994
1396
  mutability: "mutating";
1995
1397
  execute(args: {
1996
- dryRun: boolean;
1997
1398
  operation: "assign" | "unassign" | "reassign";
1998
1399
  taskIds: string[];
1400
+ dryRun: boolean;
1999
1401
  responsibleUser?: string | undefined;
2000
1402
  fromAssigneeUser?: string | undefined;
2001
1403
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -2021,15 +1423,7 @@ declare const tools: {
2021
1423
  id: import('zod').ZodString;
2022
1424
  title: import('zod').ZodString;
2023
1425
  url: import('zod').ZodString;
2024
- }, "strip", import('zod').ZodTypeAny, {
2025
- title: string;
2026
- id: string;
2027
- url: string;
2028
- }, {
2029
- title: string;
2030
- id: string;
2031
- url: string;
2032
- }>, "many">;
1426
+ }, import('zod/v4/core').$strip>>;
2033
1427
  totalCount: import('zod').ZodNumber;
2034
1428
  };
2035
1429
  mutability: "readonly";