@doist/todoist-ai 5.2.0 → 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 (59) hide show
  1. package/dist/index.d.ts +272 -901
  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-D0ROki3I.js → mcp-server-BwerBJpX.js} +117 -127
  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 +24 -76
  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 +28 -53
  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 +34 -54
  33. package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
  34. package/dist/tools/find-tasks.d.ts +31 -55
  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 +25 -87
  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 +20 -176
  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/package.json +11 -11
  59. package/scripts/validate-schemas.ts +66 -65
package/dist/index.d.ts CHANGED
@@ -30,43 +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
47
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
43
- }, "strip", import('zod').ZodTypeAny, {
44
- content: string;
45
- description?: string | undefined;
46
- parentId?: string | undefined;
47
- projectId?: string | undefined;
48
- sectionId?: string | undefined;
49
- labels?: string[] | undefined;
50
- duration?: string | undefined;
51
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
52
- isUncompletable?: boolean | undefined;
53
- deadlineDate?: string | undefined;
54
- dueString?: string | undefined;
55
- responsibleUser?: string | undefined;
56
- }, {
57
- content: string;
58
- description?: string | undefined;
59
- parentId?: string | undefined;
60
- projectId?: string | undefined;
61
- sectionId?: string | undefined;
62
- labels?: string[] | undefined;
63
- duration?: string | undefined;
64
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
65
- isUncompletable?: boolean | undefined;
66
- deadlineDate?: string | undefined;
67
- dueString?: string | undefined;
68
- responsibleUser?: string | undefined;
69
- }>, "many">;
48
+ }, import('zod/v4/core').$strip>>;
70
49
  };
71
50
  outputSchema: {
72
51
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -74,56 +53,25 @@ declare const tools: {
74
53
  content: import('zod').ZodString;
75
54
  description: import('zod').ZodString;
76
55
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
77
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
56
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
78
57
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
79
- 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
+ }>;
80
64
  projectId: import('zod').ZodString;
81
65
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
82
66
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
83
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
67
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
84
68
  duration: import('zod').ZodOptional<import('zod').ZodString>;
85
69
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
86
70
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
87
71
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
88
72
  checked: import('zod').ZodBoolean;
89
73
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
90
- }, "strip", import('zod').ZodTypeAny, {
91
- content: string;
92
- description: string;
93
- id: string;
94
- projectId: string;
95
- checked: boolean;
96
- priority: "p1" | "p2" | "p3" | "p4";
97
- recurring: string | boolean;
98
- parentId?: string | undefined;
99
- sectionId?: string | undefined;
100
- assignedByUid?: string | undefined;
101
- responsibleUid?: string | undefined;
102
- labels?: string[] | undefined;
103
- duration?: string | undefined;
104
- completedAt?: string | undefined;
105
- isUncompletable?: boolean | undefined;
106
- dueDate?: string | undefined;
107
- deadlineDate?: string | undefined;
108
- }, {
109
- content: string;
110
- description: string;
111
- id: string;
112
- projectId: string;
113
- checked: boolean;
114
- priority: "p1" | "p2" | "p3" | "p4";
115
- recurring: string | boolean;
116
- parentId?: string | undefined;
117
- sectionId?: string | undefined;
118
- assignedByUid?: string | undefined;
119
- responsibleUid?: string | undefined;
120
- labels?: string[] | undefined;
121
- duration?: string | undefined;
122
- completedAt?: string | undefined;
123
- isUncompletable?: boolean | undefined;
124
- dueDate?: string | undefined;
125
- deadlineDate?: string | undefined;
126
- }>, "many">;
74
+ }, import('zod/v4/core').$strip>>;
127
75
  totalCount: import('zod').ZodNumber;
128
76
  };
129
77
  mutability: "additive";
@@ -131,16 +79,16 @@ declare const tools: {
131
79
  tasks: {
132
80
  content: string;
133
81
  description?: string | undefined;
134
- parentId?: string | undefined;
135
- projectId?: string | undefined;
136
- sectionId?: string | undefined;
137
- labels?: string[] | undefined;
138
- duration?: string | undefined;
139
82
  priority?: "p1" | "p2" | "p3" | "p4" | undefined;
140
- isUncompletable?: boolean | undefined;
141
- deadlineDate?: string | undefined;
142
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;
143
90
  responsibleUser?: string | undefined;
91
+ isUncompletable?: boolean | undefined;
144
92
  }[];
145
93
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
146
94
  textContent: string;
@@ -171,23 +119,15 @@ declare const tools: {
171
119
  name: "complete-tasks";
172
120
  description: string;
173
121
  parameters: {
174
- ids: import('zod').ZodArray<import('zod').ZodString, "many">;
122
+ ids: import('zod').ZodArray<import('zod').ZodString>;
175
123
  };
176
124
  outputSchema: {
177
- completed: import('zod').ZodArray<import('zod').ZodString, "many">;
125
+ completed: import('zod').ZodArray<import('zod').ZodString>;
178
126
  failures: import('zod').ZodArray<import('zod').ZodObject<{
179
127
  item: import('zod').ZodString;
180
128
  error: import('zod').ZodString;
181
129
  code: import('zod').ZodOptional<import('zod').ZodString>;
182
- }, "strip", import('zod').ZodTypeAny, {
183
- error: string;
184
- item: string;
185
- code?: string | undefined;
186
- }, {
187
- error: string;
188
- item: string;
189
- code?: string | undefined;
190
- }>, "many">;
130
+ }, import('zod/v4/core').$strip>>;
191
131
  totalRequested: import('zod').ZodNumber;
192
132
  successCount: import('zod').ZodNumber;
193
133
  failureCount: import('zod').ZodNumber;
@@ -222,44 +162,19 @@ declare const tools: {
222
162
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
223
163
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
224
164
  order: import('zod').ZodOptional<import('zod').ZodNumber>;
225
- 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
+ }>>;
226
171
  dueString: import('zod').ZodOptional<import('zod').ZodString>;
227
172
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
228
173
  duration: import('zod').ZodOptional<import('zod').ZodString>;
229
174
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
230
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
175
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
231
176
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
232
- }, "strip", import('zod').ZodTypeAny, {
233
- id: string;
234
- content?: string | undefined;
235
- description?: string | undefined;
236
- parentId?: string | undefined;
237
- projectId?: string | undefined;
238
- sectionId?: string | undefined;
239
- labels?: string[] | undefined;
240
- duration?: string | undefined;
241
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
242
- isUncompletable?: boolean | undefined;
243
- deadlineDate?: string | undefined;
244
- dueString?: string | undefined;
245
- responsibleUser?: string | undefined;
246
- order?: number | undefined;
247
- }, {
248
- id: string;
249
- content?: string | undefined;
250
- description?: string | undefined;
251
- parentId?: string | undefined;
252
- projectId?: string | undefined;
253
- sectionId?: string | undefined;
254
- labels?: string[] | undefined;
255
- duration?: string | undefined;
256
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
257
- isUncompletable?: boolean | undefined;
258
- deadlineDate?: string | undefined;
259
- dueString?: string | undefined;
260
- responsibleUser?: string | undefined;
261
- order?: number | undefined;
262
- }>, "many">;
177
+ }, import('zod/v4/core').$strip>>;
263
178
  };
264
179
  outputSchema: {
265
180
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -267,68 +182,31 @@ declare const tools: {
267
182
  content: import('zod').ZodString;
268
183
  description: import('zod').ZodString;
269
184
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
270
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
185
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
271
186
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
272
- 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
+ }>;
273
193
  projectId: import('zod').ZodString;
274
194
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
275
195
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
276
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
196
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
277
197
  duration: import('zod').ZodOptional<import('zod').ZodString>;
278
198
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
279
199
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
280
200
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
281
201
  checked: import('zod').ZodBoolean;
282
202
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
283
- }, "strip", import('zod').ZodTypeAny, {
284
- content: string;
285
- description: string;
286
- id: string;
287
- projectId: string;
288
- checked: boolean;
289
- priority: "p1" | "p2" | "p3" | "p4";
290
- recurring: string | boolean;
291
- parentId?: string | undefined;
292
- sectionId?: string | undefined;
293
- assignedByUid?: string | undefined;
294
- responsibleUid?: string | undefined;
295
- labels?: string[] | undefined;
296
- duration?: string | undefined;
297
- completedAt?: string | undefined;
298
- isUncompletable?: boolean | undefined;
299
- dueDate?: string | undefined;
300
- deadlineDate?: string | undefined;
301
- }, {
302
- content: string;
303
- description: string;
304
- id: string;
305
- projectId: string;
306
- checked: boolean;
307
- priority: "p1" | "p2" | "p3" | "p4";
308
- recurring: string | boolean;
309
- parentId?: string | undefined;
310
- sectionId?: string | undefined;
311
- assignedByUid?: string | undefined;
312
- responsibleUid?: string | undefined;
313
- labels?: string[] | undefined;
314
- duration?: string | undefined;
315
- completedAt?: string | undefined;
316
- isUncompletable?: boolean | undefined;
317
- dueDate?: string | undefined;
318
- deadlineDate?: string | undefined;
319
- }>, "many">;
203
+ }, import('zod/v4/core').$strip>>;
320
204
  totalCount: import('zod').ZodNumber;
321
- updatedTaskIds: import('zod').ZodArray<import('zod').ZodString, "many">;
205
+ updatedTaskIds: import('zod').ZodArray<import('zod').ZodString>;
322
206
  appliedOperations: import('zod').ZodObject<{
323
207
  updateCount: import('zod').ZodNumber;
324
208
  skippedCount: import('zod').ZodNumber;
325
- }, "strip", import('zod').ZodTypeAny, {
326
- updateCount: number;
327
- skippedCount: number;
328
- }, {
329
- updateCount: number;
330
- skippedCount: number;
331
- }>;
209
+ }, import('zod/v4/core').$strip>;
332
210
  };
333
211
  mutability: "mutating";
334
212
  execute(args: {
@@ -336,17 +214,17 @@ declare const tools: {
336
214
  id: string;
337
215
  content?: string | undefined;
338
216
  description?: string | undefined;
339
- parentId?: string | undefined;
340
217
  projectId?: string | undefined;
341
218
  sectionId?: string | undefined;
342
- labels?: string[] | undefined;
343
- duration?: string | undefined;
219
+ parentId?: string | undefined;
220
+ order?: number | undefined;
344
221
  priority?: "p1" | "p2" | "p3" | "p4" | undefined;
345
- isUncompletable?: boolean | undefined;
346
- deadlineDate?: string | undefined;
347
222
  dueString?: string | undefined;
223
+ deadlineDate?: string | undefined;
224
+ duration?: string | undefined;
348
225
  responsibleUser?: string | undefined;
349
- order?: number | undefined;
226
+ labels?: string[] | undefined;
227
+ isUncompletable?: boolean | undefined;
350
228
  }[];
351
229
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
352
230
  textContent: string;
@@ -382,14 +260,21 @@ declare const tools: {
382
260
  name: "find-tasks";
383
261
  description: string;
384
262
  parameters: {
385
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
386
- 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
+ }>>;
387
268
  searchText: import('zod').ZodOptional<import('zod').ZodString>;
388
269
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
389
270
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
390
271
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
391
272
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
392
- 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
+ }>>;
393
278
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
394
279
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
395
280
  };
@@ -399,56 +284,25 @@ declare const tools: {
399
284
  content: import('zod').ZodString;
400
285
  description: import('zod').ZodString;
401
286
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
402
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
287
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
403
288
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
404
- 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
+ }>;
405
295
  projectId: import('zod').ZodString;
406
296
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
407
297
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
408
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
298
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
409
299
  duration: import('zod').ZodOptional<import('zod').ZodString>;
410
300
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
411
301
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
412
302
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
413
303
  checked: import('zod').ZodBoolean;
414
304
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
415
- }, "strip", import('zod').ZodTypeAny, {
416
- content: string;
417
- description: string;
418
- id: string;
419
- projectId: string;
420
- checked: boolean;
421
- priority: "p1" | "p2" | "p3" | "p4";
422
- recurring: string | boolean;
423
- parentId?: string | undefined;
424
- sectionId?: string | undefined;
425
- assignedByUid?: string | undefined;
426
- responsibleUid?: string | undefined;
427
- labels?: string[] | undefined;
428
- duration?: string | undefined;
429
- completedAt?: string | undefined;
430
- isUncompletable?: boolean | undefined;
431
- dueDate?: string | undefined;
432
- deadlineDate?: string | undefined;
433
- }, {
434
- content: string;
435
- description: string;
436
- id: string;
437
- projectId: string;
438
- checked: boolean;
439
- priority: "p1" | "p2" | "p3" | "p4";
440
- recurring: string | boolean;
441
- parentId?: string | undefined;
442
- sectionId?: string | undefined;
443
- assignedByUid?: string | undefined;
444
- responsibleUid?: string | undefined;
445
- labels?: string[] | undefined;
446
- duration?: string | undefined;
447
- completedAt?: string | undefined;
448
- isUncompletable?: boolean | undefined;
449
- dueDate?: string | undefined;
450
- deadlineDate?: string | undefined;
451
- }>, "many">;
305
+ }, import('zod/v4/core').$strip>>;
452
306
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
453
307
  totalCount: import('zod').ZodNumber;
454
308
  hasMore: import('zod').ZodBoolean;
@@ -457,15 +311,15 @@ declare const tools: {
457
311
  mutability: "readonly";
458
312
  execute(args: {
459
313
  limit: number;
460
- parentId?: string | undefined;
461
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
462
- cursor?: string | undefined;
314
+ labels?: string[] | undefined;
315
+ labelsOperator?: "and" | "or" | undefined;
316
+ searchText?: string | undefined;
463
317
  projectId?: string | undefined;
464
318
  sectionId?: string | undefined;
465
- labels?: string[] | undefined;
319
+ parentId?: string | undefined;
466
320
  responsibleUser?: string | undefined;
467
- labelsOperator?: "or" | "and" | undefined;
468
- searchText?: string | undefined;
321
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
322
+ cursor?: string | undefined;
469
323
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
470
324
  textContent: string;
471
325
  structuredContent: {
@@ -492,15 +346,15 @@ declare const tools: {
492
346
  hasMore: boolean;
493
347
  appliedFilters: {
494
348
  limit: number;
495
- parentId?: string | undefined;
496
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
497
- cursor?: string | undefined;
349
+ labels?: string[] | undefined;
350
+ labelsOperator?: "and" | "or" | undefined;
351
+ searchText?: string | undefined;
498
352
  projectId?: string | undefined;
499
353
  sectionId?: string | undefined;
500
- labels?: string[] | undefined;
354
+ parentId?: string | undefined;
501
355
  responsibleUser?: string | undefined;
502
- labelsOperator?: "or" | "and" | undefined;
503
- searchText?: string | undefined;
356
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
357
+ cursor?: string | undefined;
504
358
  };
505
359
  };
506
360
  }>;
@@ -509,15 +363,26 @@ declare const tools: {
509
363
  name: "find-tasks-by-date";
510
364
  description: string;
511
365
  parameters: {
512
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
513
- 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
+ }>>;
514
371
  startDate: import('zod').ZodOptional<import('zod').ZodString>;
515
- 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
+ }>>;
516
377
  daysCount: import('zod').ZodDefault<import('zod').ZodNumber>;
517
378
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
518
379
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
519
380
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
520
- 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
+ }>>;
521
386
  };
522
387
  outputSchema: {
523
388
  tasks: import('zod').ZodArray<import('zod').ZodObject<{
@@ -525,56 +390,25 @@ declare const tools: {
525
390
  content: import('zod').ZodString;
526
391
  description: import('zod').ZodString;
527
392
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
528
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
393
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
529
394
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
530
- 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
+ }>;
531
401
  projectId: import('zod').ZodString;
532
402
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
533
403
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
534
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
404
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
535
405
  duration: import('zod').ZodOptional<import('zod').ZodString>;
536
406
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
537
407
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
538
408
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
539
409
  checked: import('zod').ZodBoolean;
540
410
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
541
- }, "strip", import('zod').ZodTypeAny, {
542
- content: string;
543
- description: string;
544
- id: string;
545
- projectId: string;
546
- checked: boolean;
547
- priority: "p1" | "p2" | "p3" | "p4";
548
- recurring: string | boolean;
549
- parentId?: string | undefined;
550
- sectionId?: string | undefined;
551
- assignedByUid?: string | undefined;
552
- responsibleUid?: string | undefined;
553
- labels?: string[] | undefined;
554
- duration?: string | undefined;
555
- completedAt?: string | undefined;
556
- isUncompletable?: boolean | undefined;
557
- dueDate?: string | undefined;
558
- deadlineDate?: string | undefined;
559
- }, {
560
- content: string;
561
- description: string;
562
- id: string;
563
- projectId: string;
564
- checked: boolean;
565
- priority: "p1" | "p2" | "p3" | "p4";
566
- recurring: string | boolean;
567
- parentId?: string | undefined;
568
- sectionId?: string | undefined;
569
- assignedByUid?: string | undefined;
570
- responsibleUid?: string | undefined;
571
- labels?: string[] | undefined;
572
- duration?: string | undefined;
573
- completedAt?: string | undefined;
574
- isUncompletable?: boolean | undefined;
575
- dueDate?: string | undefined;
576
- deadlineDate?: string | undefined;
577
- }>, "many">;
411
+ }, import('zod/v4/core').$strip>>;
578
412
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
579
413
  totalCount: import('zod').ZodNumber;
580
414
  hasMore: import('zod').ZodBoolean;
@@ -582,15 +416,15 @@ declare const tools: {
582
416
  };
583
417
  mutability: "readonly";
584
418
  execute(args: {
585
- limit: number;
586
419
  daysCount: number;
587
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
588
- cursor?: string | undefined;
420
+ limit: number;
589
421
  labels?: string[] | undefined;
590
- responsibleUser?: string | undefined;
591
- labelsOperator?: "or" | "and" | undefined;
422
+ labelsOperator?: "and" | "or" | undefined;
592
423
  startDate?: string | undefined;
593
424
  overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
425
+ cursor?: string | undefined;
426
+ responsibleUser?: string | undefined;
427
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
594
428
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
595
429
  textContent: string;
596
430
  structuredContent: {
@@ -616,15 +450,15 @@ declare const tools: {
616
450
  totalCount: number;
617
451
  hasMore: boolean;
618
452
  appliedFilters: {
619
- limit: number;
620
453
  daysCount: number;
621
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
622
- cursor?: string | undefined;
454
+ limit: number;
623
455
  labels?: string[] | undefined;
624
- responsibleUser?: string | undefined;
625
- labelsOperator?: "or" | "and" | undefined;
456
+ labelsOperator?: "and" | "or" | undefined;
626
457
  startDate?: string | undefined;
627
458
  overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
459
+ cursor?: string | undefined;
460
+ responsibleUser?: string | undefined;
461
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
628
462
  };
629
463
  };
630
464
  }>;
@@ -633,9 +467,15 @@ declare const tools: {
633
467
  name: "find-completed-tasks";
634
468
  description: string;
635
469
  parameters: {
636
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
637
- labelsOperator: import('zod').ZodOptional<import('zod').ZodEnum<["and", "or"]>>;
638
- 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
+ }>>;
639
479
  since: import('zod').ZodString;
640
480
  until: import('zod').ZodString;
641
481
  workspaceId: import('zod').ZodOptional<import('zod').ZodString>;
@@ -652,56 +492,25 @@ declare const tools: {
652
492
  content: import('zod').ZodString;
653
493
  description: import('zod').ZodString;
654
494
  dueDate: import('zod').ZodOptional<import('zod').ZodString>;
655
- recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
495
+ recurring: import('zod').ZodUnion<readonly [import('zod').ZodBoolean, import('zod').ZodString]>;
656
496
  deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
657
- 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
+ }>;
658
503
  projectId: import('zod').ZodString;
659
504
  sectionId: import('zod').ZodOptional<import('zod').ZodString>;
660
505
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
661
- labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
506
+ labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString>>;
662
507
  duration: import('zod').ZodOptional<import('zod').ZodString>;
663
508
  responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
664
509
  isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
665
510
  assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
666
511
  checked: import('zod').ZodBoolean;
667
512
  completedAt: import('zod').ZodOptional<import('zod').ZodString>;
668
- }, "strip", import('zod').ZodTypeAny, {
669
- content: string;
670
- description: string;
671
- id: string;
672
- projectId: string;
673
- checked: boolean;
674
- priority: "p1" | "p2" | "p3" | "p4";
675
- recurring: string | boolean;
676
- parentId?: string | undefined;
677
- sectionId?: string | undefined;
678
- assignedByUid?: string | undefined;
679
- responsibleUid?: string | undefined;
680
- labels?: string[] | undefined;
681
- duration?: string | undefined;
682
- completedAt?: string | undefined;
683
- isUncompletable?: boolean | undefined;
684
- dueDate?: string | undefined;
685
- deadlineDate?: string | undefined;
686
- }, {
687
- content: string;
688
- description: string;
689
- id: string;
690
- projectId: string;
691
- checked: boolean;
692
- priority: "p1" | "p2" | "p3" | "p4";
693
- recurring: string | boolean;
694
- parentId?: string | undefined;
695
- sectionId?: string | undefined;
696
- assignedByUid?: string | undefined;
697
- responsibleUid?: string | undefined;
698
- labels?: string[] | undefined;
699
- duration?: string | undefined;
700
- completedAt?: string | undefined;
701
- isUncompletable?: boolean | undefined;
702
- dueDate?: string | undefined;
703
- deadlineDate?: string | undefined;
704
- }>, "many">;
513
+ }, import('zod/v4/core').$strip>>;
705
514
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
706
515
  totalCount: import('zod').ZodNumber;
707
516
  hasMore: import('zod').ZodBoolean;
@@ -709,18 +518,18 @@ declare const tools: {
709
518
  };
710
519
  mutability: "readonly";
711
520
  execute(args: {
712
- limit: number;
713
521
  getBy: "due" | "completion";
714
522
  since: string;
715
523
  until: string;
716
- parentId?: string | undefined;
524
+ limit: number;
525
+ labels?: string[] | undefined;
526
+ labelsOperator?: "and" | "or" | undefined;
717
527
  workspaceId?: string | undefined;
718
- cursor?: string | undefined;
719
528
  projectId?: string | undefined;
720
529
  sectionId?: string | undefined;
721
- labels?: string[] | undefined;
530
+ parentId?: string | undefined;
722
531
  responsibleUser?: string | undefined;
723
- labelsOperator?: "or" | "and" | undefined;
532
+ cursor?: string | undefined;
724
533
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
725
534
  textContent: string;
726
535
  structuredContent: {
@@ -746,18 +555,18 @@ declare const tools: {
746
555
  totalCount: number;
747
556
  hasMore: boolean;
748
557
  appliedFilters: {
749
- limit: number;
750
558
  getBy: "due" | "completion";
751
559
  since: string;
752
560
  until: string;
753
- parentId?: string | undefined;
561
+ limit: number;
562
+ labels?: string[] | undefined;
563
+ labelsOperator?: "and" | "or" | undefined;
754
564
  workspaceId?: string | undefined;
755
- cursor?: string | undefined;
756
565
  projectId?: string | undefined;
757
566
  sectionId?: string | undefined;
758
- labels?: string[] | undefined;
567
+ parentId?: string | undefined;
759
568
  responsibleUser?: string | undefined;
760
- labelsOperator?: "or" | "and" | undefined;
569
+ cursor?: string | undefined;
761
570
  };
762
571
  };
763
572
  }>;
@@ -770,18 +579,12 @@ declare const tools: {
770
579
  name: import('zod').ZodString;
771
580
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
772
581
  isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
773
- viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<["list", "board", "calendar"]>>;
774
- }, "strip", import('zod').ZodTypeAny, {
775
- name: string;
776
- isFavorite?: boolean | undefined;
777
- viewStyle?: "list" | "board" | "calendar" | undefined;
778
- parentId?: string | undefined;
779
- }, {
780
- name: string;
781
- isFavorite?: boolean | undefined;
782
- viewStyle?: "list" | "board" | "calendar" | undefined;
783
- parentId?: string | undefined;
784
- }>, "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>>;
785
588
  };
786
589
  outputSchema: {
787
590
  projects: import('zod').ZodArray<import('zod').ZodObject<{
@@ -793,86 +596,30 @@ declare const tools: {
793
596
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
794
597
  inboxProject: import('zod').ZodBoolean;
795
598
  viewStyle: import('zod').ZodString;
796
- }, "strip", import('zod').ZodTypeAny, {
797
- name: string;
798
- id: string;
799
- color: string;
800
- isFavorite: boolean;
801
- viewStyle: string;
802
- isShared: boolean;
803
- inboxProject: boolean;
804
- parentId?: string | undefined;
805
- }, {
806
- name: string;
807
- id: string;
808
- color: string;
809
- isFavorite: boolean;
810
- viewStyle: string;
811
- isShared: boolean;
812
- inboxProject: boolean;
813
- parentId?: string | undefined;
814
- }>, "many">;
599
+ }, import('zod/v4/core').$strip>>;
815
600
  totalCount: import('zod').ZodNumber;
816
601
  };
817
602
  mutability: "additive";
818
603
  execute({ projects }: {
819
604
  projects: {
820
605
  name: string;
606
+ parentId?: string | undefined;
821
607
  isFavorite?: boolean | undefined;
822
608
  viewStyle?: "list" | "board" | "calendar" | undefined;
823
- parentId?: string | undefined;
824
609
  }[];
825
610
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
826
611
  textContent: string;
827
612
  structuredContent: {
828
- projects: ({
829
- parentId: string | undefined;
830
- inboxProject: boolean;
831
- url: string;
613
+ projects: {
832
614
  id: string;
833
- canAssignTasks: boolean;
834
- childOrder: number;
615
+ name: string;
835
616
  color: string;
836
- createdAt: string | null;
837
- isArchived: boolean;
838
- isDeleted: boolean;
839
617
  isFavorite: boolean;
840
- isFrozen: boolean;
841
- name: string;
842
- updatedAt: string | null;
843
- viewStyle: string;
844
- defaultOrder: number;
845
- description: string;
846
- isCollapsed: boolean;
847
618
  isShared: boolean;
848
- } | {
849
619
  parentId: string | undefined;
850
620
  inboxProject: boolean;
851
- url: string;
852
- id: string;
853
- canAssignTasks: boolean;
854
- childOrder: number;
855
- color: string;
856
- createdAt: string | null;
857
- isArchived: boolean;
858
- isDeleted: boolean;
859
- isFavorite: boolean;
860
- isFrozen: boolean;
861
- name: string;
862
- updatedAt: string | null;
863
621
  viewStyle: string;
864
- defaultOrder: number;
865
- description: string;
866
- isCollapsed: boolean;
867
- isShared: boolean;
868
- collaboratorRoleDefault: string;
869
- folderId: string | null;
870
- isInviteOnly: boolean | null;
871
- isLinkSharingEnabled: boolean;
872
- role: string | null;
873
- status: string;
874
- workspaceId: string;
875
- })[];
622
+ }[];
876
623
  totalCount: number;
877
624
  };
878
625
  }>;
@@ -885,18 +632,12 @@ declare const tools: {
885
632
  id: import('zod').ZodString;
886
633
  name: import('zod').ZodOptional<import('zod').ZodString>;
887
634
  isFavorite: import('zod').ZodOptional<import('zod').ZodBoolean>;
888
- viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<["list", "board", "calendar"]>>;
889
- }, "strip", import('zod').ZodTypeAny, {
890
- id: string;
891
- name?: string | undefined;
892
- isFavorite?: boolean | undefined;
893
- viewStyle?: "list" | "board" | "calendar" | undefined;
894
- }, {
895
- id: string;
896
- name?: string | undefined;
897
- isFavorite?: boolean | undefined;
898
- viewStyle?: "list" | "board" | "calendar" | undefined;
899
- }>, "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>>;
900
641
  };
901
642
  outputSchema: {
902
643
  projects: import('zod').ZodArray<import('zod').ZodObject<{
@@ -908,37 +649,13 @@ declare const tools: {
908
649
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
909
650
  inboxProject: import('zod').ZodBoolean;
910
651
  viewStyle: import('zod').ZodString;
911
- }, "strip", import('zod').ZodTypeAny, {
912
- name: string;
913
- id: string;
914
- color: string;
915
- isFavorite: boolean;
916
- viewStyle: string;
917
- isShared: boolean;
918
- inboxProject: boolean;
919
- parentId?: string | undefined;
920
- }, {
921
- name: string;
922
- id: string;
923
- color: string;
924
- isFavorite: boolean;
925
- viewStyle: string;
926
- isShared: boolean;
927
- inboxProject: boolean;
928
- parentId?: string | undefined;
929
- }>, "many">;
652
+ }, import('zod/v4/core').$strip>>;
930
653
  totalCount: import('zod').ZodNumber;
931
- updatedProjectIds: import('zod').ZodArray<import('zod').ZodString, "many">;
654
+ updatedProjectIds: import('zod').ZodArray<import('zod').ZodString>;
932
655
  appliedOperations: import('zod').ZodObject<{
933
656
  updateCount: import('zod').ZodNumber;
934
657
  skippedCount: import('zod').ZodNumber;
935
- }, "strip", import('zod').ZodTypeAny, {
936
- updateCount: number;
937
- skippedCount: number;
938
- }, {
939
- updateCount: number;
940
- skippedCount: number;
941
- }>;
658
+ }, import('zod/v4/core').$strip>;
942
659
  };
943
660
  mutability: "mutating";
944
661
  execute(args: {
@@ -951,54 +668,16 @@ declare const tools: {
951
668
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
952
669
  textContent: string;
953
670
  structuredContent: {
954
- projects: ({
955
- parentId: string | undefined;
956
- inboxProject: boolean;
957
- url: string;
671
+ projects: {
958
672
  id: string;
959
- canAssignTasks: boolean;
960
- childOrder: number;
673
+ name: string;
961
674
  color: string;
962
- createdAt: string | null;
963
- isArchived: boolean;
964
- isDeleted: boolean;
965
675
  isFavorite: boolean;
966
- isFrozen: boolean;
967
- name: string;
968
- updatedAt: string | null;
969
- viewStyle: string;
970
- defaultOrder: number;
971
- description: string;
972
- isCollapsed: boolean;
973
676
  isShared: boolean;
974
- } | {
975
677
  parentId: string | undefined;
976
678
  inboxProject: boolean;
977
- url: string;
978
- id: string;
979
- canAssignTasks: boolean;
980
- childOrder: number;
981
- color: string;
982
- createdAt: string | null;
983
- isArchived: boolean;
984
- isDeleted: boolean;
985
- isFavorite: boolean;
986
- isFrozen: boolean;
987
- name: string;
988
- updatedAt: string | null;
989
679
  viewStyle: string;
990
- defaultOrder: number;
991
- description: string;
992
- isCollapsed: boolean;
993
- isShared: boolean;
994
- collaboratorRoleDefault: string;
995
- folderId: string | null;
996
- isInviteOnly: boolean | null;
997
- isLinkSharingEnabled: boolean;
998
- role: string | null;
999
- status: string;
1000
- workspaceId: string;
1001
- })[];
680
+ }[];
1002
681
  totalCount: number;
1003
682
  updatedProjectIds: string[];
1004
683
  appliedOperations: {
@@ -1026,25 +705,7 @@ declare const tools: {
1026
705
  parentId: import('zod').ZodOptional<import('zod').ZodString>;
1027
706
  inboxProject: import('zod').ZodBoolean;
1028
707
  viewStyle: import('zod').ZodString;
1029
- }, "strip", import('zod').ZodTypeAny, {
1030
- name: string;
1031
- id: string;
1032
- color: string;
1033
- isFavorite: boolean;
1034
- viewStyle: string;
1035
- isShared: boolean;
1036
- inboxProject: boolean;
1037
- parentId?: string | undefined;
1038
- }, {
1039
- name: string;
1040
- id: string;
1041
- color: string;
1042
- isFavorite: boolean;
1043
- viewStyle: string;
1044
- isShared: boolean;
1045
- inboxProject: boolean;
1046
- parentId?: string | undefined;
1047
- }>, "many">;
708
+ }, import('zod/v4/core').$strip>>;
1048
709
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1049
710
  totalCount: import('zod').ZodNumber;
1050
711
  hasMore: import('zod').ZodBoolean;
@@ -1053,8 +714,8 @@ declare const tools: {
1053
714
  mutability: "readonly";
1054
715
  execute(args: {
1055
716
  limit: number;
1056
- cursor?: string | undefined;
1057
717
  search?: string | undefined;
718
+ cursor?: string | undefined;
1058
719
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1059
720
  textContent: string;
1060
721
  structuredContent: {
@@ -1073,8 +734,8 @@ declare const tools: {
1073
734
  hasMore: boolean;
1074
735
  appliedFilters: {
1075
736
  limit: number;
1076
- cursor?: string | undefined;
1077
737
  search?: string | undefined;
738
+ cursor?: string | undefined;
1078
739
  };
1079
740
  };
1080
741
  }>;
@@ -1086,25 +747,13 @@ declare const tools: {
1086
747
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1087
748
  name: import('zod').ZodString;
1088
749
  projectId: import('zod').ZodString;
1089
- }, "strip", import('zod').ZodTypeAny, {
1090
- name: string;
1091
- projectId: string;
1092
- }, {
1093
- name: string;
1094
- projectId: string;
1095
- }>, "many">;
750
+ }, import('zod/v4/core').$strip>>;
1096
751
  };
1097
752
  outputSchema: {
1098
753
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1099
754
  id: import('zod').ZodString;
1100
755
  name: import('zod').ZodString;
1101
- }, "strip", import('zod').ZodTypeAny, {
1102
- name: string;
1103
- id: string;
1104
- }, {
1105
- name: string;
1106
- id: string;
1107
- }>, "many">;
756
+ }, import('zod/v4/core').$strip>>;
1108
757
  totalCount: import('zod').ZodNumber;
1109
758
  };
1110
759
  mutability: "additive";
@@ -1141,33 +790,21 @@ declare const tools: {
1141
790
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1142
791
  id: import('zod').ZodString;
1143
792
  name: import('zod').ZodString;
1144
- }, "strip", import('zod').ZodTypeAny, {
1145
- name: string;
1146
- id: string;
1147
- }, {
1148
- name: string;
1149
- id: string;
1150
- }>, "many">;
793
+ }, import('zod/v4/core').$strip>>;
1151
794
  };
1152
795
  outputSchema: {
1153
796
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1154
797
  id: import('zod').ZodString;
1155
798
  name: import('zod').ZodString;
1156
- }, "strip", import('zod').ZodTypeAny, {
1157
- name: string;
1158
- id: string;
1159
- }, {
1160
- name: string;
1161
- id: string;
1162
- }>, "many">;
799
+ }, import('zod/v4/core').$strip>>;
1163
800
  totalCount: import('zod').ZodNumber;
1164
- updatedSectionIds: import('zod').ZodArray<import('zod').ZodString, "many">;
801
+ updatedSectionIds: import('zod').ZodArray<import('zod').ZodString>;
1165
802
  };
1166
803
  mutability: "mutating";
1167
804
  execute({ sections }: {
1168
805
  sections: {
1169
- name: string;
1170
806
  id: string;
807
+ name: string;
1171
808
  }[];
1172
809
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1173
810
  textContent: string;
@@ -1202,13 +839,7 @@ declare const tools: {
1202
839
  sections: import('zod').ZodArray<import('zod').ZodObject<{
1203
840
  id: import('zod').ZodString;
1204
841
  name: import('zod').ZodString;
1205
- }, "strip", import('zod').ZodTypeAny, {
1206
- name: string;
1207
- id: string;
1208
- }, {
1209
- name: string;
1210
- id: string;
1211
- }>, "many">;
842
+ }, import('zod/v4/core').$strip>>;
1212
843
  totalCount: import('zod').ZodNumber;
1213
844
  appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1214
845
  };
@@ -1239,15 +870,7 @@ declare const tools: {
1239
870
  taskId: import('zod').ZodOptional<import('zod').ZodString>;
1240
871
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1241
872
  content: import('zod').ZodString;
1242
- }, "strip", import('zod').ZodTypeAny, {
1243
- content: string;
1244
- projectId?: string | undefined;
1245
- taskId?: string | undefined;
1246
- }, {
1247
- content: string;
1248
- projectId?: string | undefined;
1249
- taskId?: string | undefined;
1250
- }>, "many">;
873
+ }, import('zod/v4/core').$strip>>;
1251
874
  };
1252
875
  outputSchema: {
1253
876
  comments: import('zod').ZodArray<import('zod').ZodObject<{
@@ -1264,91 +887,26 @@ declare const tools: {
1264
887
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1265
888
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1266
889
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1267
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
890
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
891
+ pending: "pending";
892
+ completed: "completed";
893
+ }>>;
1268
894
  url: import('zod').ZodOptional<import('zod').ZodString>;
1269
895
  title: import('zod').ZodOptional<import('zod').ZodString>;
1270
896
  image: import('zod').ZodOptional<import('zod').ZodString>;
1271
897
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1272
898
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1273
- }, "strip", import('zod').ZodTypeAny, {
1274
- resourceType: string;
1275
- title?: string | undefined;
1276
- fileName?: string | undefined;
1277
- fileSize?: number | undefined;
1278
- fileType?: string | undefined;
1279
- fileUrl?: string | undefined;
1280
- fileDuration?: number | undefined;
1281
- uploadState?: "pending" | "completed" | undefined;
1282
- image?: string | undefined;
1283
- imageWidth?: number | undefined;
1284
- imageHeight?: number | undefined;
1285
- url?: string | undefined;
1286
- }, {
1287
- resourceType: string;
1288
- title?: string | undefined;
1289
- fileName?: string | undefined;
1290
- fileSize?: number | undefined;
1291
- fileType?: string | undefined;
1292
- fileUrl?: string | undefined;
1293
- fileDuration?: number | undefined;
1294
- uploadState?: "pending" | "completed" | undefined;
1295
- image?: string | undefined;
1296
- imageWidth?: number | undefined;
1297
- imageHeight?: number | undefined;
1298
- url?: string | undefined;
1299
- }>>;
1300
- }, "strip", import('zod').ZodTypeAny, {
1301
- content: string;
1302
- id: string;
1303
- postedAt: string;
1304
- projectId?: string | undefined;
1305
- fileAttachment?: {
1306
- resourceType: string;
1307
- title?: string | undefined;
1308
- fileName?: string | undefined;
1309
- fileSize?: number | undefined;
1310
- fileType?: string | undefined;
1311
- fileUrl?: string | undefined;
1312
- fileDuration?: number | undefined;
1313
- uploadState?: "pending" | "completed" | undefined;
1314
- image?: string | undefined;
1315
- imageWidth?: number | undefined;
1316
- imageHeight?: number | undefined;
1317
- url?: string | undefined;
1318
- } | undefined;
1319
- postedUid?: string | undefined;
1320
- taskId?: string | undefined;
1321
- }, {
1322
- content: string;
1323
- id: string;
1324
- postedAt: string;
1325
- projectId?: string | undefined;
1326
- fileAttachment?: {
1327
- resourceType: string;
1328
- title?: string | undefined;
1329
- fileName?: string | undefined;
1330
- fileSize?: number | undefined;
1331
- fileType?: string | undefined;
1332
- fileUrl?: string | undefined;
1333
- fileDuration?: number | undefined;
1334
- uploadState?: "pending" | "completed" | undefined;
1335
- image?: string | undefined;
1336
- imageWidth?: number | undefined;
1337
- imageHeight?: number | undefined;
1338
- url?: string | undefined;
1339
- } | undefined;
1340
- postedUid?: string | undefined;
1341
- taskId?: string | undefined;
1342
- }>, "many">;
899
+ }, import('zod/v4/core').$strip>>;
900
+ }, import('zod/v4/core').$strip>>;
1343
901
  totalCount: import('zod').ZodNumber;
1344
- addedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
902
+ addedCommentIds: import('zod').ZodArray<import('zod').ZodString>;
1345
903
  };
1346
904
  mutability: "additive";
1347
905
  execute(args: {
1348
906
  comments: {
1349
907
  content: string;
1350
- projectId?: string | undefined;
1351
908
  taskId?: string | undefined;
909
+ projectId?: string | undefined;
1352
910
  }[];
1353
911
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1354
912
  textContent: string;
@@ -1387,13 +945,7 @@ declare const tools: {
1387
945
  comments: import('zod').ZodArray<import('zod').ZodObject<{
1388
946
  id: import('zod').ZodString;
1389
947
  content: import('zod').ZodString;
1390
- }, "strip", import('zod').ZodTypeAny, {
1391
- content: string;
1392
- id: string;
1393
- }, {
1394
- content: string;
1395
- id: string;
1396
- }>, "many">;
948
+ }, import('zod/v4/core').$strip>>;
1397
949
  };
1398
950
  outputSchema: {
1399
951
  comments: import('zod').ZodArray<import('zod').ZodObject<{
@@ -1410,97 +962,28 @@ declare const tools: {
1410
962
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1411
963
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1412
964
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1413
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
965
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
966
+ pending: "pending";
967
+ completed: "completed";
968
+ }>>;
1414
969
  url: import('zod').ZodOptional<import('zod').ZodString>;
1415
970
  title: import('zod').ZodOptional<import('zod').ZodString>;
1416
971
  image: import('zod').ZodOptional<import('zod').ZodString>;
1417
972
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1418
973
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1419
- }, "strip", import('zod').ZodTypeAny, {
1420
- resourceType: string;
1421
- title?: string | undefined;
1422
- fileName?: string | undefined;
1423
- fileSize?: number | undefined;
1424
- fileType?: string | undefined;
1425
- fileUrl?: string | undefined;
1426
- fileDuration?: number | undefined;
1427
- uploadState?: "pending" | "completed" | undefined;
1428
- image?: string | undefined;
1429
- imageWidth?: number | undefined;
1430
- imageHeight?: number | undefined;
1431
- url?: string | undefined;
1432
- }, {
1433
- resourceType: string;
1434
- title?: string | undefined;
1435
- fileName?: string | undefined;
1436
- fileSize?: number | undefined;
1437
- fileType?: string | undefined;
1438
- fileUrl?: string | undefined;
1439
- fileDuration?: number | undefined;
1440
- uploadState?: "pending" | "completed" | undefined;
1441
- image?: string | undefined;
1442
- imageWidth?: number | undefined;
1443
- imageHeight?: number | undefined;
1444
- url?: string | undefined;
1445
- }>>;
1446
- }, "strip", import('zod').ZodTypeAny, {
1447
- content: string;
1448
- id: string;
1449
- postedAt: string;
1450
- projectId?: string | undefined;
1451
- fileAttachment?: {
1452
- resourceType: string;
1453
- title?: string | undefined;
1454
- fileName?: string | undefined;
1455
- fileSize?: number | undefined;
1456
- fileType?: string | undefined;
1457
- fileUrl?: string | undefined;
1458
- fileDuration?: number | undefined;
1459
- uploadState?: "pending" | "completed" | undefined;
1460
- image?: string | undefined;
1461
- imageWidth?: number | undefined;
1462
- imageHeight?: number | undefined;
1463
- url?: string | undefined;
1464
- } | undefined;
1465
- postedUid?: string | undefined;
1466
- taskId?: string | undefined;
1467
- }, {
1468
- content: string;
1469
- id: string;
1470
- postedAt: string;
1471
- projectId?: string | undefined;
1472
- fileAttachment?: {
1473
- resourceType: string;
1474
- title?: string | undefined;
1475
- fileName?: string | undefined;
1476
- fileSize?: number | undefined;
1477
- fileType?: string | undefined;
1478
- fileUrl?: string | undefined;
1479
- fileDuration?: number | undefined;
1480
- uploadState?: "pending" | "completed" | undefined;
1481
- image?: string | undefined;
1482
- imageWidth?: number | undefined;
1483
- imageHeight?: number | undefined;
1484
- url?: string | undefined;
1485
- } | undefined;
1486
- postedUid?: string | undefined;
1487
- taskId?: string | undefined;
1488
- }>, "many">;
974
+ }, import('zod/v4/core').$strip>>;
975
+ }, import('zod/v4/core').$strip>>;
1489
976
  totalCount: import('zod').ZodNumber;
1490
- updatedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
977
+ updatedCommentIds: import('zod').ZodArray<import('zod').ZodString>;
1491
978
  appliedOperations: import('zod').ZodObject<{
1492
979
  updateCount: import('zod').ZodNumber;
1493
- }, "strip", import('zod').ZodTypeAny, {
1494
- updateCount: number;
1495
- }, {
1496
- updateCount: number;
1497
- }>;
980
+ }, import('zod/v4/core').$strip>;
1498
981
  };
1499
982
  mutability: "mutating";
1500
983
  execute(args: {
1501
984
  comments: {
1502
- content: string;
1503
985
  id: string;
986
+ content: string;
1504
987
  }[];
1505
988
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1506
989
  textContent: string;
@@ -1560,92 +1043,27 @@ declare const tools: {
1560
1043
  fileType: import('zod').ZodOptional<import('zod').ZodString>;
1561
1044
  fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1562
1045
  fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1563
- uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
1046
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<{
1047
+ pending: "pending";
1048
+ completed: "completed";
1049
+ }>>;
1564
1050
  url: import('zod').ZodOptional<import('zod').ZodString>;
1565
1051
  title: import('zod').ZodOptional<import('zod').ZodString>;
1566
1052
  image: import('zod').ZodOptional<import('zod').ZodString>;
1567
1053
  imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
1568
1054
  imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
1569
- }, "strip", import('zod').ZodTypeAny, {
1570
- resourceType: string;
1571
- title?: string | undefined;
1572
- fileName?: string | undefined;
1573
- fileSize?: number | undefined;
1574
- fileType?: string | undefined;
1575
- fileUrl?: string | undefined;
1576
- fileDuration?: number | undefined;
1577
- uploadState?: "pending" | "completed" | undefined;
1578
- image?: string | undefined;
1579
- imageWidth?: number | undefined;
1580
- imageHeight?: number | undefined;
1581
- url?: string | undefined;
1582
- }, {
1583
- resourceType: string;
1584
- title?: string | undefined;
1585
- fileName?: string | undefined;
1586
- fileSize?: number | undefined;
1587
- fileType?: string | undefined;
1588
- fileUrl?: string | undefined;
1589
- fileDuration?: number | undefined;
1590
- uploadState?: "pending" | "completed" | undefined;
1591
- image?: string | undefined;
1592
- imageWidth?: number | undefined;
1593
- imageHeight?: number | undefined;
1594
- url?: string | undefined;
1595
- }>>;
1596
- }, "strip", import('zod').ZodTypeAny, {
1597
- content: string;
1598
- id: string;
1599
- postedAt: string;
1600
- projectId?: string | undefined;
1601
- fileAttachment?: {
1602
- resourceType: string;
1603
- title?: string | undefined;
1604
- fileName?: string | undefined;
1605
- fileSize?: number | undefined;
1606
- fileType?: string | undefined;
1607
- fileUrl?: string | undefined;
1608
- fileDuration?: number | undefined;
1609
- uploadState?: "pending" | "completed" | undefined;
1610
- image?: string | undefined;
1611
- imageWidth?: number | undefined;
1612
- imageHeight?: number | undefined;
1613
- url?: string | undefined;
1614
- } | undefined;
1615
- postedUid?: string | undefined;
1616
- taskId?: string | undefined;
1617
- }, {
1618
- content: string;
1619
- id: string;
1620
- postedAt: string;
1621
- projectId?: string | undefined;
1622
- fileAttachment?: {
1623
- resourceType: string;
1624
- title?: string | undefined;
1625
- fileName?: string | undefined;
1626
- fileSize?: number | undefined;
1627
- fileType?: string | undefined;
1628
- fileUrl?: string | undefined;
1629
- fileDuration?: number | undefined;
1630
- uploadState?: "pending" | "completed" | undefined;
1631
- image?: string | undefined;
1632
- imageWidth?: number | undefined;
1633
- imageHeight?: number | undefined;
1634
- url?: string | undefined;
1635
- } | undefined;
1636
- postedUid?: string | undefined;
1637
- taskId?: string | undefined;
1638
- }>, "many">;
1055
+ }, import('zod/v4/core').$strip>>;
1056
+ }, import('zod/v4/core').$strip>>;
1639
1057
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1640
1058
  totalCount: import('zod').ZodNumber;
1641
1059
  };
1642
1060
  mutability: "readonly";
1643
1061
  execute(args: {
1644
- cursor?: string | undefined;
1645
- limit?: number | undefined;
1646
- projectId?: string | undefined;
1647
1062
  taskId?: string | undefined;
1063
+ projectId?: string | undefined;
1648
1064
  commentId?: string | undefined;
1065
+ cursor?: string | undefined;
1066
+ limit?: number | undefined;
1649
1067
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1650
1068
  textContent: string;
1651
1069
  structuredContent: {
@@ -1683,9 +1101,23 @@ declare const tools: {
1683
1101
  name: "find-activity";
1684
1102
  description: string;
1685
1103
  parameters: {
1686
- 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
+ }>>;
1687
1109
  objectId: import('zod').ZodOptional<import('zod').ZodString>;
1688
- 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
+ }>>;
1689
1121
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1690
1122
  taskId: import('zod').ZodOptional<import('zod').ZodString>;
1691
1123
  initiatorId: import('zod').ZodOptional<import('zod').ZodString>;
@@ -1703,27 +1135,7 @@ declare const tools: {
1703
1135
  parentItemId: import('zod').ZodOptional<import('zod').ZodString>;
1704
1136
  initiatorId: import('zod').ZodOptional<import('zod').ZodString>;
1705
1137
  extraData: import('zod').ZodOptional<import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>>;
1706
- }, "strip", import('zod').ZodTypeAny, {
1707
- objectType: string;
1708
- objectId: string;
1709
- eventType: string;
1710
- eventDate: string;
1711
- id?: string | undefined;
1712
- parentProjectId?: string | undefined;
1713
- parentItemId?: string | undefined;
1714
- initiatorId?: string | undefined;
1715
- extraData?: Record<string, unknown> | undefined;
1716
- }, {
1717
- objectType: string;
1718
- objectId: string;
1719
- eventType: string;
1720
- eventDate: string;
1721
- id?: string | undefined;
1722
- parentProjectId?: string | undefined;
1723
- parentItemId?: string | undefined;
1724
- initiatorId?: string | undefined;
1725
- extraData?: Record<string, unknown> | undefined;
1726
- }>, "many">;
1138
+ }, import('zod/v4/core').$strip>>;
1727
1139
  nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1728
1140
  totalCount: import('zod').ZodNumber;
1729
1141
  hasMore: import('zod').ZodBoolean;
@@ -1732,13 +1144,13 @@ declare const tools: {
1732
1144
  mutability: "readonly";
1733
1145
  execute(args: {
1734
1146
  limit: number;
1735
- cursor?: string | undefined;
1736
- projectId?: string | undefined;
1737
- objectType?: "comment" | "task" | "project" | undefined;
1147
+ objectType?: "task" | "comment" | "project" | undefined;
1738
1148
  objectId?: string | undefined;
1739
1149
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
1740
- initiatorId?: string | undefined;
1150
+ projectId?: string | undefined;
1741
1151
  taskId?: string | undefined;
1152
+ initiatorId?: string | undefined;
1153
+ cursor?: string | undefined;
1742
1154
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1743
1155
  textContent: string;
1744
1156
  structuredContent: {
@@ -1758,13 +1170,13 @@ declare const tools: {
1758
1170
  hasMore: boolean;
1759
1171
  appliedFilters: {
1760
1172
  limit: number;
1761
- cursor?: string | undefined;
1762
- projectId?: string | undefined;
1763
- objectType?: "comment" | "task" | "project" | undefined;
1173
+ objectType?: "task" | "comment" | "project" | undefined;
1764
1174
  objectId?: string | undefined;
1765
1175
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
1766
- initiatorId?: string | undefined;
1176
+ projectId?: string | undefined;
1767
1177
  taskId?: string | undefined;
1178
+ initiatorId?: string | undefined;
1179
+ cursor?: string | undefined;
1768
1180
  };
1769
1181
  };
1770
1182
  }>;
@@ -1776,7 +1188,10 @@ declare const tools: {
1776
1188
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1777
1189
  };
1778
1190
  outputSchema: {
1779
- type: import('zod').ZodEnum<["account_overview", "project_overview"]>;
1191
+ type: import('zod').ZodEnum<{
1192
+ account_overview: "account_overview";
1193
+ project_overview: "project_overview";
1194
+ }>;
1780
1195
  totalProjects: import('zod').ZodOptional<import('zod').ZodNumber>;
1781
1196
  totalTasks: import('zod').ZodOptional<import('zod').ZodNumber>;
1782
1197
  totalSections: import('zod').ZodOptional<import('zod').ZodNumber>;
@@ -1786,23 +1201,13 @@ declare const tools: {
1786
1201
  name: import('zod').ZodString;
1787
1202
  isShared: import('zod').ZodBoolean;
1788
1203
  isFavorite: import('zod').ZodBoolean;
1789
- }, "strip", import('zod').ZodTypeAny, {
1790
- name: string;
1791
- id: string;
1792
- isFavorite: boolean;
1793
- isShared: boolean;
1794
- }, {
1795
- name: string;
1796
- id: string;
1797
- isFavorite: boolean;
1798
- isShared: boolean;
1799
- }>>;
1204
+ }, import('zod/v4/core').$strip>>;
1800
1205
  hasNestedProjects: import('zod').ZodOptional<import('zod').ZodBoolean>;
1801
1206
  inbox: import('zod').ZodOptional<import('zod').ZodAny>;
1802
- projects: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny, "many">>;
1207
+ projects: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny>>;
1803
1208
  project: import('zod').ZodOptional<import('zod').ZodAny>;
1804
- sections: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodAny, "many">>;
1805
- 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>>;
1806
1211
  stats: import('zod').ZodOptional<import('zod').ZodAny>;
1807
1212
  };
1808
1213
  mutability: "readonly";
@@ -1817,31 +1222,35 @@ declare const tools: {
1817
1222
  name: "delete-object";
1818
1223
  description: string;
1819
1224
  parameters: {
1820
- 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
+ }>;
1821
1231
  id: import('zod').ZodString;
1822
1232
  };
1823
1233
  outputSchema: {
1824
1234
  deletedEntity: import('zod').ZodObject<{
1825
- 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
+ }>;
1826
1241
  id: import('zod').ZodString;
1827
- }, "strip", import('zod').ZodTypeAny, {
1828
- type: "comment" | "task" | "project" | "section";
1829
- id: string;
1830
- }, {
1831
- type: "comment" | "task" | "project" | "section";
1832
- id: string;
1833
- }>;
1242
+ }, import('zod/v4/core').$strip>;
1834
1243
  success: import('zod').ZodBoolean;
1835
1244
  };
1836
1245
  mutability: "mutating";
1837
1246
  execute(args: {
1838
- type: "comment" | "task" | "project" | "section";
1247
+ type: "task" | "comment" | "project" | "section";
1839
1248
  id: string;
1840
1249
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1841
1250
  textContent: string;
1842
1251
  structuredContent: {
1843
1252
  deletedEntity: {
1844
- type: "comment" | "task" | "project" | "section";
1253
+ type: "task" | "comment" | "project" | "section";
1845
1254
  id: string;
1846
1255
  };
1847
1256
  success: true;
@@ -1867,10 +1276,14 @@ declare const tools: {
1867
1276
  dailyGoal: import('zod').ZodNumber;
1868
1277
  weeklyGoal: import('zod').ZodNumber;
1869
1278
  email: import('zod').ZodString;
1870
- 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
+ }>;
1871
1284
  };
1872
1285
  mutability: "readonly";
1873
- execute(_args: {}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1286
+ execute(_args: Record<string, never>, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1874
1287
  textContent: string;
1875
1288
  structuredContent: import('./tools/user-info.js').UserInfoStructured;
1876
1289
  }>;
@@ -1887,28 +1300,12 @@ declare const tools: {
1887
1300
  id: import('zod').ZodString;
1888
1301
  name: import('zod').ZodString;
1889
1302
  email: import('zod').ZodString;
1890
- }, "strip", import('zod').ZodTypeAny, {
1891
- name: string;
1892
- id: string;
1893
- email: string;
1894
- }, {
1895
- name: string;
1896
- id: string;
1897
- email: string;
1898
- }>, "many">;
1303
+ }, import('zod/v4/core').$strip>>;
1899
1304
  projectInfo: import('zod').ZodOptional<import('zod').ZodObject<{
1900
1305
  id: import('zod').ZodString;
1901
1306
  name: import('zod').ZodString;
1902
1307
  isShared: import('zod').ZodBoolean;
1903
- }, "strip", import('zod').ZodTypeAny, {
1904
- name: string;
1905
- id: string;
1906
- isShared: boolean;
1907
- }, {
1908
- name: string;
1909
- id: string;
1910
- isShared: boolean;
1911
- }>>;
1308
+ }, import('zod/v4/core').$strip>>;
1912
1309
  totalCount: import('zod').ZodNumber;
1913
1310
  totalAvailable: import('zod').ZodOptional<import('zod').ZodNumber>;
1914
1311
  appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
@@ -1971,8 +1368,12 @@ declare const tools: {
1971
1368
  name: "manage-assignments";
1972
1369
  description: string;
1973
1370
  parameters: {
1974
- operation: import('zod').ZodEnum<["assign", "unassign", "reassign"]>;
1975
- 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>;
1976
1377
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
1977
1378
  fromAssigneeUser: import('zod').ZodOptional<import('zod').ZodString>;
1978
1379
  dryRun: import('zod').ZodDefault<import('zod').ZodOptional<import('zod').ZodBoolean>>;
@@ -1984,41 +1385,19 @@ declare const tools: {
1984
1385
  error: import('zod').ZodOptional<import('zod').ZodString>;
1985
1386
  originalAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
1986
1387
  newAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
1987
- }, "strip", import('zod').ZodTypeAny, {
1988
- taskId: string;
1989
- success: boolean;
1990
- error?: string | undefined;
1991
- originalAssigneeId?: string | undefined;
1992
- newAssigneeId?: string | undefined;
1993
- }, {
1994
- taskId: string;
1995
- success: boolean;
1996
- error?: string | undefined;
1997
- originalAssigneeId?: string | undefined;
1998
- newAssigneeId?: string | undefined;
1999
- }>, "many">;
1388
+ }, import('zod/v4/core').$strip>>;
2000
1389
  summary: import('zod').ZodOptional<import('zod').ZodObject<{
2001
1390
  total: import('zod').ZodNumber;
2002
1391
  succeeded: import('zod').ZodNumber;
2003
1392
  failed: import('zod').ZodNumber;
2004
1393
  dryRun: import('zod').ZodBoolean;
2005
- }, "strip", import('zod').ZodTypeAny, {
2006
- total: number;
2007
- succeeded: number;
2008
- failed: number;
2009
- dryRun: boolean;
2010
- }, {
2011
- total: number;
2012
- succeeded: number;
2013
- failed: number;
2014
- dryRun: boolean;
2015
- }>>;
1394
+ }, import('zod/v4/core').$strip>>;
2016
1395
  };
2017
1396
  mutability: "mutating";
2018
1397
  execute(args: {
2019
- dryRun: boolean;
2020
1398
  operation: "assign" | "unassign" | "reassign";
2021
1399
  taskIds: string[];
1400
+ dryRun: boolean;
2022
1401
  responsibleUser?: string | undefined;
2023
1402
  fromAssigneeUser?: string | undefined;
2024
1403
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -2044,15 +1423,7 @@ declare const tools: {
2044
1423
  id: import('zod').ZodString;
2045
1424
  title: import('zod').ZodString;
2046
1425
  url: import('zod').ZodString;
2047
- }, "strip", import('zod').ZodTypeAny, {
2048
- title: string;
2049
- id: string;
2050
- url: string;
2051
- }, {
2052
- title: string;
2053
- id: string;
2054
- url: string;
2055
- }>, "many">;
1426
+ }, import('zod/v4/core').$strip>>;
2056
1427
  totalCount: import('zod').ZodNumber;
2057
1428
  };
2058
1429
  mutability: "readonly";