@doist/todoist-ai 4.16.1 → 4.17.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 +882 -34
  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 +1 -1
  6. package/dist/mcp-helpers.d.ts.map +1 -1
  7. package/dist/mcp-server-BADReNAy.js +3092 -0
  8. package/dist/todoist-tool.d.ts +7 -1
  9. package/dist/todoist-tool.d.ts.map +1 -1
  10. package/dist/tools/add-comments.d.ts +68 -2
  11. package/dist/tools/add-comments.d.ts.map +1 -1
  12. package/dist/tools/add-projects.d.ts +31 -0
  13. package/dist/tools/add-projects.d.ts.map +1 -1
  14. package/dist/tools/add-sections.d.ts +13 -0
  15. package/dist/tools/add-sections.d.ts.map +1 -1
  16. package/dist/tools/add-tasks.d.ts +64 -9
  17. package/dist/tools/add-tasks.d.ts.map +1 -1
  18. package/dist/tools/complete-tasks.d.ts +19 -0
  19. package/dist/tools/complete-tasks.d.ts.map +1 -1
  20. package/dist/tools/delete-object.d.ts +13 -0
  21. package/dist/tools/delete-object.d.ts.map +1 -1
  22. package/dist/tools/fetch.d.ts +7 -0
  23. package/dist/tools/fetch.d.ts.map +1 -1
  24. package/dist/tools/find-activity.d.ts +39 -2
  25. package/dist/tools/find-activity.d.ts.map +1 -1
  26. package/dist/tools/find-comments.d.ts +67 -1
  27. package/dist/tools/find-comments.d.ts.map +1 -1
  28. package/dist/tools/find-completed-tasks.d.ts +62 -4
  29. package/dist/tools/find-completed-tasks.d.ts.map +1 -1
  30. package/dist/tools/find-project-collaborators.d.ts +31 -0
  31. package/dist/tools/find-project-collaborators.d.ts.map +1 -1
  32. package/dist/tools/find-projects.d.ts +34 -0
  33. package/dist/tools/find-projects.d.ts.map +1 -1
  34. package/dist/tools/find-sections.d.ts +14 -0
  35. package/dist/tools/find-sections.d.ts.map +1 -1
  36. package/dist/tools/find-tasks-by-date.d.ts +60 -2
  37. package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
  38. package/dist/tools/find-tasks.d.ts +62 -4
  39. package/dist/tools/find-tasks.d.ts.map +1 -1
  40. package/dist/tools/get-overview.d.ts +23 -0
  41. package/dist/tools/get-overview.d.ts.map +1 -1
  42. package/dist/tools/manage-assignments.d.ts +38 -1
  43. package/dist/tools/manage-assignments.d.ts.map +1 -1
  44. package/dist/tools/search.d.ts +16 -0
  45. package/dist/tools/search.d.ts.map +1 -1
  46. package/dist/tools/update-comments.d.ts +73 -0
  47. package/dist/tools/update-comments.d.ts.map +1 -1
  48. package/dist/tools/update-projects.d.ts +42 -0
  49. package/dist/tools/update-projects.d.ts.map +1 -1
  50. package/dist/tools/update-sections.d.ts +14 -0
  51. package/dist/tools/update-sections.d.ts.map +1 -1
  52. package/dist/tools/update-tasks.d.ts +75 -9
  53. package/dist/tools/update-tasks.d.ts.map +1 -1
  54. package/dist/tools/user-info.d.ts +18 -0
  55. package/dist/tools/user-info.d.ts.map +1 -1
  56. package/dist/utils/output-schemas.d.ts +233 -0
  57. package/dist/utils/output-schemas.d.ts.map +1 -0
  58. package/package.json +1 -1
  59. package/dist/mcp-server-6tm7Rhyz.js +0 -2840
package/dist/index.d.ts CHANGED
@@ -42,41 +42,96 @@ declare const tools: {
42
42
  }, "strip", import('zod').ZodTypeAny, {
43
43
  content: string;
44
44
  description?: string | undefined;
45
+ deadlineDate?: string | undefined;
46
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
45
47
  projectId?: string | undefined;
46
- parentId?: string | undefined;
47
48
  sectionId?: string | undefined;
49
+ parentId?: string | undefined;
48
50
  labels?: string[] | undefined;
49
51
  duration?: string | undefined;
50
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
51
52
  dueString?: string | undefined;
52
- deadlineDate?: string | undefined;
53
53
  responsibleUser?: string | undefined;
54
54
  }, {
55
55
  content: string;
56
56
  description?: string | undefined;
57
+ deadlineDate?: string | undefined;
58
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
57
59
  projectId?: string | undefined;
58
- parentId?: string | undefined;
59
60
  sectionId?: string | undefined;
61
+ parentId?: string | undefined;
60
62
  labels?: string[] | undefined;
61
63
  duration?: string | undefined;
62
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
63
64
  dueString?: string | undefined;
64
- deadlineDate?: string | undefined;
65
65
  responsibleUser?: string | undefined;
66
66
  }>, "many">;
67
67
  };
68
+ outputSchema: {
69
+ tasks: import('zod').ZodArray<import('zod').ZodObject<{
70
+ id: import('zod').ZodString;
71
+ content: import('zod').ZodString;
72
+ description: import('zod').ZodString;
73
+ dueDate: import('zod').ZodOptional<import('zod').ZodString>;
74
+ recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
75
+ deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
76
+ priority: import('zod').ZodNumber;
77
+ projectId: import('zod').ZodString;
78
+ sectionId: import('zod').ZodOptional<import('zod').ZodString>;
79
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
80
+ labels: import('zod').ZodArray<import('zod').ZodString, "many">;
81
+ duration: import('zod').ZodOptional<import('zod').ZodString>;
82
+ responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
83
+ assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
84
+ checked: import('zod').ZodBoolean;
85
+ completedAt: import('zod').ZodOptional<import('zod').ZodString>;
86
+ }, "strip", import('zod').ZodTypeAny, {
87
+ content: string;
88
+ description: string;
89
+ id: string;
90
+ recurring: string | boolean;
91
+ priority: number;
92
+ projectId: string;
93
+ labels: string[];
94
+ checked: boolean;
95
+ dueDate?: string | undefined;
96
+ deadlineDate?: string | undefined;
97
+ sectionId?: string | undefined;
98
+ parentId?: string | undefined;
99
+ duration?: string | undefined;
100
+ responsibleUid?: string | undefined;
101
+ assignedByUid?: string | undefined;
102
+ completedAt?: string | undefined;
103
+ }, {
104
+ content: string;
105
+ description: string;
106
+ id: string;
107
+ recurring: string | boolean;
108
+ priority: number;
109
+ projectId: string;
110
+ labels: string[];
111
+ checked: boolean;
112
+ dueDate?: string | undefined;
113
+ deadlineDate?: string | undefined;
114
+ sectionId?: string | undefined;
115
+ parentId?: string | undefined;
116
+ duration?: string | undefined;
117
+ responsibleUid?: string | undefined;
118
+ assignedByUid?: string | undefined;
119
+ completedAt?: string | undefined;
120
+ }>, "many">;
121
+ totalCount: import('zod').ZodNumber;
122
+ };
68
123
  execute({ tasks }: {
69
124
  tasks: {
70
125
  content: string;
71
126
  description?: string | undefined;
127
+ deadlineDate?: string | undefined;
128
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
72
129
  projectId?: string | undefined;
73
- parentId?: string | undefined;
74
130
  sectionId?: string | undefined;
131
+ parentId?: string | undefined;
75
132
  labels?: string[] | undefined;
76
133
  duration?: string | undefined;
77
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
78
134
  dueString?: string | undefined;
79
- deadlineDate?: string | undefined;
80
135
  responsibleUser?: string | undefined;
81
136
  }[];
82
137
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -124,6 +179,25 @@ declare const tools: {
124
179
  parameters: {
125
180
  ids: import('zod').ZodArray<import('zod').ZodString, "many">;
126
181
  };
182
+ outputSchema: {
183
+ completed: import('zod').ZodArray<import('zod').ZodString, "many">;
184
+ failures: import('zod').ZodArray<import('zod').ZodObject<{
185
+ item: import('zod').ZodString;
186
+ error: import('zod').ZodString;
187
+ code: import('zod').ZodOptional<import('zod').ZodString>;
188
+ }, "strip", import('zod').ZodTypeAny, {
189
+ item: string;
190
+ error: string;
191
+ code?: string | undefined;
192
+ }, {
193
+ item: string;
194
+ error: string;
195
+ code?: string | undefined;
196
+ }>, "many">;
197
+ totalRequested: import('zod').ZodNumber;
198
+ successCount: import('zod').ZodNumber;
199
+ failureCount: import('zod').ZodNumber;
200
+ };
127
201
  execute(args: {
128
202
  ids: string[];
129
203
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -177,45 +251,111 @@ declare const tools: {
177
251
  id: string;
178
252
  content?: string | undefined;
179
253
  description?: string | undefined;
254
+ deadlineDate?: string | undefined;
255
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
180
256
  projectId?: string | undefined;
181
- parentId?: string | undefined;
182
257
  sectionId?: string | undefined;
258
+ parentId?: string | undefined;
183
259
  labels?: string[] | undefined;
184
260
  duration?: string | undefined;
185
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
186
261
  dueString?: string | undefined;
187
- deadlineDate?: string | undefined;
188
262
  responsibleUser?: string | undefined;
189
263
  order?: number | undefined;
190
264
  }, {
191
265
  id: string;
192
266
  content?: string | undefined;
193
267
  description?: string | undefined;
268
+ deadlineDate?: string | undefined;
269
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
194
270
  projectId?: string | undefined;
195
- parentId?: string | undefined;
196
271
  sectionId?: string | undefined;
272
+ parentId?: string | undefined;
197
273
  labels?: string[] | undefined;
198
274
  duration?: string | undefined;
199
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
200
275
  dueString?: string | undefined;
201
- deadlineDate?: string | undefined;
202
276
  responsibleUser?: string | undefined;
203
277
  order?: number | undefined;
204
278
  }>, "many">;
205
279
  };
280
+ outputSchema: {
281
+ tasks: import('zod').ZodArray<import('zod').ZodObject<{
282
+ id: import('zod').ZodString;
283
+ content: import('zod').ZodString;
284
+ description: import('zod').ZodString;
285
+ dueDate: import('zod').ZodOptional<import('zod').ZodString>;
286
+ recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
287
+ deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
288
+ priority: import('zod').ZodNumber;
289
+ projectId: import('zod').ZodString;
290
+ sectionId: import('zod').ZodOptional<import('zod').ZodString>;
291
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
292
+ labels: import('zod').ZodArray<import('zod').ZodString, "many">;
293
+ duration: import('zod').ZodOptional<import('zod').ZodString>;
294
+ responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
295
+ assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
296
+ checked: import('zod').ZodBoolean;
297
+ completedAt: import('zod').ZodOptional<import('zod').ZodString>;
298
+ }, "strip", import('zod').ZodTypeAny, {
299
+ content: string;
300
+ description: string;
301
+ id: string;
302
+ recurring: string | boolean;
303
+ priority: number;
304
+ projectId: string;
305
+ labels: string[];
306
+ checked: boolean;
307
+ dueDate?: string | undefined;
308
+ deadlineDate?: string | undefined;
309
+ sectionId?: string | undefined;
310
+ parentId?: string | undefined;
311
+ duration?: string | undefined;
312
+ responsibleUid?: string | undefined;
313
+ assignedByUid?: string | undefined;
314
+ completedAt?: string | undefined;
315
+ }, {
316
+ content: string;
317
+ description: string;
318
+ id: string;
319
+ recurring: string | boolean;
320
+ priority: number;
321
+ projectId: string;
322
+ labels: string[];
323
+ checked: boolean;
324
+ dueDate?: string | undefined;
325
+ deadlineDate?: string | undefined;
326
+ sectionId?: string | undefined;
327
+ parentId?: string | undefined;
328
+ duration?: string | undefined;
329
+ responsibleUid?: string | undefined;
330
+ assignedByUid?: string | undefined;
331
+ completedAt?: string | undefined;
332
+ }>, "many">;
333
+ totalCount: import('zod').ZodNumber;
334
+ updatedTaskIds: import('zod').ZodArray<import('zod').ZodString, "many">;
335
+ appliedOperations: import('zod').ZodObject<{
336
+ updateCount: import('zod').ZodNumber;
337
+ skippedCount: import('zod').ZodNumber;
338
+ }, "strip", import('zod').ZodTypeAny, {
339
+ updateCount: number;
340
+ skippedCount: number;
341
+ }, {
342
+ updateCount: number;
343
+ skippedCount: number;
344
+ }>;
345
+ };
206
346
  execute(args: {
207
347
  tasks: {
208
348
  id: string;
209
349
  content?: string | undefined;
210
350
  description?: string | undefined;
351
+ deadlineDate?: string | undefined;
352
+ priority?: "p1" | "p2" | "p3" | "p4" | undefined;
211
353
  projectId?: string | undefined;
212
- parentId?: string | undefined;
213
354
  sectionId?: string | undefined;
355
+ parentId?: string | undefined;
214
356
  labels?: string[] | undefined;
215
357
  duration?: string | undefined;
216
- priority?: "p1" | "p2" | "p3" | "p4" | undefined;
217
358
  dueString?: string | undefined;
218
- deadlineDate?: string | undefined;
219
359
  responsibleUser?: string | undefined;
220
360
  order?: number | undefined;
221
361
  }[];
@@ -278,13 +418,71 @@ declare const tools: {
278
418
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
279
419
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
280
420
  };
421
+ outputSchema: {
422
+ tasks: import('zod').ZodArray<import('zod').ZodObject<{
423
+ id: import('zod').ZodString;
424
+ content: import('zod').ZodString;
425
+ description: import('zod').ZodString;
426
+ dueDate: import('zod').ZodOptional<import('zod').ZodString>;
427
+ recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
428
+ deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
429
+ priority: import('zod').ZodNumber;
430
+ projectId: import('zod').ZodString;
431
+ sectionId: import('zod').ZodOptional<import('zod').ZodString>;
432
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
433
+ labels: import('zod').ZodArray<import('zod').ZodString, "many">;
434
+ duration: import('zod').ZodOptional<import('zod').ZodString>;
435
+ responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
436
+ assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
437
+ checked: import('zod').ZodBoolean;
438
+ completedAt: import('zod').ZodOptional<import('zod').ZodString>;
439
+ }, "strip", import('zod').ZodTypeAny, {
440
+ content: string;
441
+ description: string;
442
+ id: string;
443
+ recurring: string | boolean;
444
+ priority: number;
445
+ projectId: string;
446
+ labels: string[];
447
+ checked: boolean;
448
+ dueDate?: string | undefined;
449
+ deadlineDate?: string | undefined;
450
+ sectionId?: string | undefined;
451
+ parentId?: string | undefined;
452
+ duration?: string | undefined;
453
+ responsibleUid?: string | undefined;
454
+ assignedByUid?: string | undefined;
455
+ completedAt?: string | undefined;
456
+ }, {
457
+ content: string;
458
+ description: string;
459
+ id: string;
460
+ recurring: string | boolean;
461
+ priority: number;
462
+ projectId: string;
463
+ labels: string[];
464
+ checked: boolean;
465
+ dueDate?: string | undefined;
466
+ deadlineDate?: string | undefined;
467
+ sectionId?: string | undefined;
468
+ parentId?: string | undefined;
469
+ duration?: string | undefined;
470
+ responsibleUid?: string | undefined;
471
+ assignedByUid?: string | undefined;
472
+ completedAt?: string | undefined;
473
+ }>, "many">;
474
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
475
+ totalCount: import('zod').ZodNumber;
476
+ hasMore: import('zod').ZodBoolean;
477
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
478
+ };
281
479
  execute(args: {
282
480
  limit: number;
283
481
  projectId?: string | undefined;
284
- parentId?: string | undefined;
285
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
286
482
  sectionId?: string | undefined;
483
+ parentId?: string | undefined;
287
484
  labels?: string[] | undefined;
485
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
288
486
  cursor?: string | undefined;
289
487
  responsibleUser?: string | undefined;
290
488
  labelsOperator?: "and" | "or" | undefined;
@@ -319,10 +517,10 @@ declare const tools: {
319
517
  appliedFilters: {
320
518
  limit: number;
321
519
  projectId?: string | undefined;
322
- parentId?: string | undefined;
323
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
324
520
  sectionId?: string | undefined;
521
+ parentId?: string | undefined;
325
522
  labels?: string[] | undefined;
523
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
326
524
  cursor?: string | undefined;
327
525
  responsibleUser?: string | undefined;
328
526
  labelsOperator?: "and" | "or" | undefined;
@@ -356,11 +554,69 @@ declare const tools: {
356
554
  responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
357
555
  responsibleUserFiltering: import('zod').ZodOptional<import('zod').ZodEnum<["assigned", "unassignedOrMe", "all"]>>;
358
556
  };
557
+ outputSchema: {
558
+ tasks: import('zod').ZodArray<import('zod').ZodObject<{
559
+ id: import('zod').ZodString;
560
+ content: import('zod').ZodString;
561
+ description: import('zod').ZodString;
562
+ dueDate: import('zod').ZodOptional<import('zod').ZodString>;
563
+ recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
564
+ deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
565
+ priority: import('zod').ZodNumber;
566
+ projectId: import('zod').ZodString;
567
+ sectionId: import('zod').ZodOptional<import('zod').ZodString>;
568
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
569
+ labels: import('zod').ZodArray<import('zod').ZodString, "many">;
570
+ duration: import('zod').ZodOptional<import('zod').ZodString>;
571
+ responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
572
+ assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
573
+ checked: import('zod').ZodBoolean;
574
+ completedAt: import('zod').ZodOptional<import('zod').ZodString>;
575
+ }, "strip", import('zod').ZodTypeAny, {
576
+ content: string;
577
+ description: string;
578
+ id: string;
579
+ recurring: string | boolean;
580
+ priority: number;
581
+ projectId: string;
582
+ labels: string[];
583
+ checked: boolean;
584
+ dueDate?: string | undefined;
585
+ deadlineDate?: string | undefined;
586
+ sectionId?: string | undefined;
587
+ parentId?: string | undefined;
588
+ duration?: string | undefined;
589
+ responsibleUid?: string | undefined;
590
+ assignedByUid?: string | undefined;
591
+ completedAt?: string | undefined;
592
+ }, {
593
+ content: string;
594
+ description: string;
595
+ id: string;
596
+ recurring: string | boolean;
597
+ priority: number;
598
+ projectId: string;
599
+ labels: string[];
600
+ checked: boolean;
601
+ dueDate?: string | undefined;
602
+ deadlineDate?: string | undefined;
603
+ sectionId?: string | undefined;
604
+ parentId?: string | undefined;
605
+ duration?: string | undefined;
606
+ responsibleUid?: string | undefined;
607
+ assignedByUid?: string | undefined;
608
+ completedAt?: string | undefined;
609
+ }>, "many">;
610
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
611
+ totalCount: import('zod').ZodNumber;
612
+ hasMore: import('zod').ZodBoolean;
613
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
614
+ };
359
615
  execute(args: {
360
616
  limit: number;
361
617
  daysCount: number;
362
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
363
618
  labels?: string[] | undefined;
619
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
364
620
  cursor?: string | undefined;
365
621
  responsibleUser?: string | undefined;
366
622
  labelsOperator?: "and" | "or" | undefined;
@@ -396,8 +652,8 @@ declare const tools: {
396
652
  appliedFilters: {
397
653
  limit: number;
398
654
  daysCount: number;
399
- responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
400
655
  labels?: string[] | undefined;
656
+ responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
401
657
  cursor?: string | undefined;
402
658
  responsibleUser?: string | undefined;
403
659
  labelsOperator?: "and" | "or" | undefined;
@@ -435,16 +691,74 @@ declare const tools: {
435
691
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
436
692
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
437
693
  };
694
+ outputSchema: {
695
+ tasks: import('zod').ZodArray<import('zod').ZodObject<{
696
+ id: import('zod').ZodString;
697
+ content: import('zod').ZodString;
698
+ description: import('zod').ZodString;
699
+ dueDate: import('zod').ZodOptional<import('zod').ZodString>;
700
+ recurring: import('zod').ZodUnion<[import('zod').ZodBoolean, import('zod').ZodString]>;
701
+ deadlineDate: import('zod').ZodOptional<import('zod').ZodString>;
702
+ priority: import('zod').ZodNumber;
703
+ projectId: import('zod').ZodString;
704
+ sectionId: import('zod').ZodOptional<import('zod').ZodString>;
705
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
706
+ labels: import('zod').ZodArray<import('zod').ZodString, "many">;
707
+ duration: import('zod').ZodOptional<import('zod').ZodString>;
708
+ responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
709
+ assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
710
+ checked: import('zod').ZodBoolean;
711
+ completedAt: import('zod').ZodOptional<import('zod').ZodString>;
712
+ }, "strip", import('zod').ZodTypeAny, {
713
+ content: string;
714
+ description: string;
715
+ id: string;
716
+ recurring: string | boolean;
717
+ priority: number;
718
+ projectId: string;
719
+ labels: string[];
720
+ checked: boolean;
721
+ dueDate?: string | undefined;
722
+ deadlineDate?: string | undefined;
723
+ sectionId?: string | undefined;
724
+ parentId?: string | undefined;
725
+ duration?: string | undefined;
726
+ responsibleUid?: string | undefined;
727
+ assignedByUid?: string | undefined;
728
+ completedAt?: string | undefined;
729
+ }, {
730
+ content: string;
731
+ description: string;
732
+ id: string;
733
+ recurring: string | boolean;
734
+ priority: number;
735
+ projectId: string;
736
+ labels: string[];
737
+ checked: boolean;
738
+ dueDate?: string | undefined;
739
+ deadlineDate?: string | undefined;
740
+ sectionId?: string | undefined;
741
+ parentId?: string | undefined;
742
+ duration?: string | undefined;
743
+ responsibleUid?: string | undefined;
744
+ assignedByUid?: string | undefined;
745
+ completedAt?: string | undefined;
746
+ }>, "many">;
747
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
748
+ totalCount: import('zod').ZodNumber;
749
+ hasMore: import('zod').ZodBoolean;
750
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
751
+ };
438
752
  execute(args: {
439
753
  limit: number;
440
754
  getBy: "due" | "completion";
441
755
  since: string;
442
756
  until: string;
443
757
  projectId?: string | undefined;
444
- parentId?: string | undefined;
445
- workspaceId?: string | undefined;
446
758
  sectionId?: string | undefined;
759
+ parentId?: string | undefined;
447
760
  labels?: string[] | undefined;
761
+ workspaceId?: string | undefined;
448
762
  cursor?: string | undefined;
449
763
  responsibleUser?: string | undefined;
450
764
  labelsOperator?: "and" | "or" | undefined;
@@ -481,10 +795,10 @@ declare const tools: {
481
795
  since: string;
482
796
  until: string;
483
797
  projectId?: string | undefined;
484
- parentId?: string | undefined;
485
- workspaceId?: string | undefined;
486
798
  sectionId?: string | undefined;
799
+ parentId?: string | undefined;
487
800
  labels?: string[] | undefined;
801
+ workspaceId?: string | undefined;
488
802
  cursor?: string | undefined;
489
803
  responsibleUser?: string | undefined;
490
804
  labelsOperator?: "and" | "or" | undefined;
@@ -524,6 +838,37 @@ declare const tools: {
524
838
  viewStyle?: "list" | "board" | "calendar" | undefined;
525
839
  }>, "many">;
526
840
  };
841
+ outputSchema: {
842
+ projects: import('zod').ZodArray<import('zod').ZodObject<{
843
+ id: import('zod').ZodString;
844
+ name: import('zod').ZodString;
845
+ color: import('zod').ZodString;
846
+ isFavorite: import('zod').ZodBoolean;
847
+ isShared: import('zod').ZodBoolean;
848
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
849
+ inboxProject: import('zod').ZodBoolean;
850
+ viewStyle: import('zod').ZodString;
851
+ }, "strip", import('zod').ZodTypeAny, {
852
+ name: string;
853
+ id: string;
854
+ color: string;
855
+ isFavorite: boolean;
856
+ isShared: boolean;
857
+ inboxProject: boolean;
858
+ viewStyle: string;
859
+ parentId?: string | undefined;
860
+ }, {
861
+ name: string;
862
+ id: string;
863
+ color: string;
864
+ isFavorite: boolean;
865
+ isShared: boolean;
866
+ inboxProject: boolean;
867
+ viewStyle: string;
868
+ parentId?: string | undefined;
869
+ }>, "many">;
870
+ totalCount: import('zod').ZodNumber;
871
+ };
527
872
  execute({ projects }: {
528
873
  projects: {
529
874
  name: string;
@@ -619,6 +964,48 @@ declare const tools: {
619
964
  viewStyle?: "list" | "board" | "calendar" | undefined;
620
965
  }>, "many">;
621
966
  };
967
+ outputSchema: {
968
+ projects: import('zod').ZodArray<import('zod').ZodObject<{
969
+ id: import('zod').ZodString;
970
+ name: import('zod').ZodString;
971
+ color: import('zod').ZodString;
972
+ isFavorite: import('zod').ZodBoolean;
973
+ isShared: import('zod').ZodBoolean;
974
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
975
+ inboxProject: import('zod').ZodBoolean;
976
+ viewStyle: import('zod').ZodString;
977
+ }, "strip", import('zod').ZodTypeAny, {
978
+ name: string;
979
+ id: string;
980
+ color: string;
981
+ isFavorite: boolean;
982
+ isShared: boolean;
983
+ inboxProject: boolean;
984
+ viewStyle: string;
985
+ parentId?: string | undefined;
986
+ }, {
987
+ name: string;
988
+ id: string;
989
+ color: string;
990
+ isFavorite: boolean;
991
+ isShared: boolean;
992
+ inboxProject: boolean;
993
+ viewStyle: string;
994
+ parentId?: string | undefined;
995
+ }>, "many">;
996
+ totalCount: import('zod').ZodNumber;
997
+ updatedProjectIds: import('zod').ZodArray<import('zod').ZodString, "many">;
998
+ appliedOperations: import('zod').ZodObject<{
999
+ updateCount: import('zod').ZodNumber;
1000
+ skippedCount: import('zod').ZodNumber;
1001
+ }, "strip", import('zod').ZodTypeAny, {
1002
+ updateCount: number;
1003
+ skippedCount: number;
1004
+ }, {
1005
+ updateCount: number;
1006
+ skippedCount: number;
1007
+ }>;
1008
+ };
622
1009
  execute(args: {
623
1010
  projects: {
624
1011
  id: string;
@@ -706,6 +1093,40 @@ declare const tools: {
706
1093
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
707
1094
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
708
1095
  };
1096
+ outputSchema: {
1097
+ projects: import('zod').ZodArray<import('zod').ZodObject<{
1098
+ id: import('zod').ZodString;
1099
+ name: import('zod').ZodString;
1100
+ color: import('zod').ZodString;
1101
+ isFavorite: import('zod').ZodBoolean;
1102
+ isShared: import('zod').ZodBoolean;
1103
+ parentId: import('zod').ZodOptional<import('zod').ZodString>;
1104
+ inboxProject: import('zod').ZodBoolean;
1105
+ viewStyle: import('zod').ZodString;
1106
+ }, "strip", import('zod').ZodTypeAny, {
1107
+ name: string;
1108
+ id: string;
1109
+ color: string;
1110
+ isFavorite: boolean;
1111
+ isShared: boolean;
1112
+ inboxProject: boolean;
1113
+ viewStyle: string;
1114
+ parentId?: string | undefined;
1115
+ }, {
1116
+ name: string;
1117
+ id: string;
1118
+ color: string;
1119
+ isFavorite: boolean;
1120
+ isShared: boolean;
1121
+ inboxProject: boolean;
1122
+ viewStyle: string;
1123
+ parentId?: string | undefined;
1124
+ }>, "many">;
1125
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1126
+ totalCount: import('zod').ZodNumber;
1127
+ hasMore: import('zod').ZodBoolean;
1128
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1129
+ };
709
1130
  execute(args: {
710
1131
  limit: number;
711
1132
  search?: string | undefined;
@@ -763,6 +1184,19 @@ declare const tools: {
763
1184
  projectId: string;
764
1185
  }>, "many">;
765
1186
  };
1187
+ outputSchema: {
1188
+ sections: import('zod').ZodArray<import('zod').ZodObject<{
1189
+ id: import('zod').ZodString;
1190
+ name: import('zod').ZodString;
1191
+ }, "strip", import('zod').ZodTypeAny, {
1192
+ name: string;
1193
+ id: string;
1194
+ }, {
1195
+ name: string;
1196
+ id: string;
1197
+ }>, "many">;
1198
+ totalCount: import('zod').ZodNumber;
1199
+ };
766
1200
  execute({ sections }: {
767
1201
  sections: {
768
1202
  name: string;
@@ -818,6 +1252,20 @@ declare const tools: {
818
1252
  id: string;
819
1253
  }>, "many">;
820
1254
  };
1255
+ outputSchema: {
1256
+ sections: import('zod').ZodArray<import('zod').ZodObject<{
1257
+ id: import('zod').ZodString;
1258
+ name: import('zod').ZodString;
1259
+ }, "strip", import('zod').ZodTypeAny, {
1260
+ name: string;
1261
+ id: string;
1262
+ }, {
1263
+ name: string;
1264
+ id: string;
1265
+ }>, "many">;
1266
+ totalCount: import('zod').ZodNumber;
1267
+ updatedSectionIds: import('zod').ZodArray<import('zod').ZodString, "many">;
1268
+ };
821
1269
  execute({ sections }: {
822
1270
  sections: {
823
1271
  name: string;
@@ -866,6 +1314,20 @@ declare const tools: {
866
1314
  projectId: import('zod').ZodString;
867
1315
  search: import('zod').ZodOptional<import('zod').ZodString>;
868
1316
  };
1317
+ outputSchema: {
1318
+ sections: import('zod').ZodArray<import('zod').ZodObject<{
1319
+ id: import('zod').ZodString;
1320
+ name: import('zod').ZodString;
1321
+ }, "strip", import('zod').ZodTypeAny, {
1322
+ name: string;
1323
+ id: string;
1324
+ }, {
1325
+ name: string;
1326
+ id: string;
1327
+ }>, "many">;
1328
+ totalCount: import('zod').ZodNumber;
1329
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1330
+ };
869
1331
  execute(args: {
870
1332
  projectId: string;
871
1333
  search?: string | undefined;
@@ -908,19 +1370,85 @@ declare const tools: {
908
1370
  content: import('zod').ZodString;
909
1371
  }, "strip", import('zod').ZodTypeAny, {
910
1372
  content: string;
911
- taskId?: string | undefined;
912
1373
  projectId?: string | undefined;
1374
+ taskId?: string | undefined;
913
1375
  }, {
914
1376
  content: string;
1377
+ projectId?: string | undefined;
915
1378
  taskId?: string | undefined;
1379
+ }>, "many">;
1380
+ };
1381
+ outputSchema: {
1382
+ comments: import('zod').ZodArray<import('zod').ZodObject<{
1383
+ id: import('zod').ZodString;
1384
+ taskId: import('zod').ZodOptional<import('zod').ZodString>;
1385
+ projectId: import('zod').ZodOptional<import('zod').ZodString>;
1386
+ content: import('zod').ZodString;
1387
+ postedAt: import('zod').ZodString;
1388
+ attachment: import('zod').ZodOptional<import('zod').ZodObject<{
1389
+ resourceType: import('zod').ZodString;
1390
+ fileName: import('zod').ZodOptional<import('zod').ZodString>;
1391
+ fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
1392
+ fileType: import('zod').ZodOptional<import('zod').ZodString>;
1393
+ fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1394
+ fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1395
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
1396
+ }, "strip", import('zod').ZodTypeAny, {
1397
+ resourceType: string;
1398
+ fileName?: string | undefined;
1399
+ fileSize?: number | undefined;
1400
+ fileType?: string | undefined;
1401
+ fileUrl?: string | undefined;
1402
+ fileDuration?: number | undefined;
1403
+ uploadState?: "pending" | "completed" | undefined;
1404
+ }, {
1405
+ resourceType: string;
1406
+ fileName?: string | undefined;
1407
+ fileSize?: number | undefined;
1408
+ fileType?: string | undefined;
1409
+ fileUrl?: string | undefined;
1410
+ fileDuration?: number | undefined;
1411
+ uploadState?: "pending" | "completed" | undefined;
1412
+ }>>;
1413
+ }, "strip", import('zod').ZodTypeAny, {
1414
+ content: string;
1415
+ id: string;
1416
+ postedAt: string;
1417
+ projectId?: string | undefined;
1418
+ taskId?: string | undefined;
1419
+ attachment?: {
1420
+ resourceType: string;
1421
+ fileName?: string | undefined;
1422
+ fileSize?: number | undefined;
1423
+ fileType?: string | undefined;
1424
+ fileUrl?: string | undefined;
1425
+ fileDuration?: number | undefined;
1426
+ uploadState?: "pending" | "completed" | undefined;
1427
+ } | undefined;
1428
+ }, {
1429
+ content: string;
1430
+ id: string;
1431
+ postedAt: string;
916
1432
  projectId?: string | undefined;
1433
+ taskId?: string | undefined;
1434
+ attachment?: {
1435
+ resourceType: string;
1436
+ fileName?: string | undefined;
1437
+ fileSize?: number | undefined;
1438
+ fileType?: string | undefined;
1439
+ fileUrl?: string | undefined;
1440
+ fileDuration?: number | undefined;
1441
+ uploadState?: "pending" | "completed" | undefined;
1442
+ } | undefined;
917
1443
  }>, "many">;
1444
+ totalCount: import('zod').ZodNumber;
1445
+ addedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
918
1446
  };
919
1447
  execute(args: {
920
1448
  comments: {
921
1449
  content: string;
922
- taskId?: string | undefined;
923
1450
  projectId?: string | undefined;
1451
+ taskId?: string | undefined;
924
1452
  }[];
925
1453
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
926
1454
  content: {
@@ -984,6 +1512,79 @@ declare const tools: {
984
1512
  id: string;
985
1513
  }>, "many">;
986
1514
  };
1515
+ outputSchema: {
1516
+ comments: import('zod').ZodArray<import('zod').ZodObject<{
1517
+ id: import('zod').ZodString;
1518
+ taskId: import('zod').ZodOptional<import('zod').ZodString>;
1519
+ projectId: import('zod').ZodOptional<import('zod').ZodString>;
1520
+ content: import('zod').ZodString;
1521
+ postedAt: import('zod').ZodString;
1522
+ attachment: import('zod').ZodOptional<import('zod').ZodObject<{
1523
+ resourceType: import('zod').ZodString;
1524
+ fileName: import('zod').ZodOptional<import('zod').ZodString>;
1525
+ fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
1526
+ fileType: import('zod').ZodOptional<import('zod').ZodString>;
1527
+ fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1528
+ fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1529
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
1530
+ }, "strip", import('zod').ZodTypeAny, {
1531
+ resourceType: string;
1532
+ fileName?: string | undefined;
1533
+ fileSize?: number | undefined;
1534
+ fileType?: string | undefined;
1535
+ fileUrl?: string | undefined;
1536
+ fileDuration?: number | undefined;
1537
+ uploadState?: "pending" | "completed" | undefined;
1538
+ }, {
1539
+ resourceType: string;
1540
+ fileName?: string | undefined;
1541
+ fileSize?: number | undefined;
1542
+ fileType?: string | undefined;
1543
+ fileUrl?: string | undefined;
1544
+ fileDuration?: number | undefined;
1545
+ uploadState?: "pending" | "completed" | undefined;
1546
+ }>>;
1547
+ }, "strip", import('zod').ZodTypeAny, {
1548
+ content: string;
1549
+ id: string;
1550
+ postedAt: string;
1551
+ projectId?: string | undefined;
1552
+ taskId?: string | undefined;
1553
+ attachment?: {
1554
+ resourceType: string;
1555
+ fileName?: string | undefined;
1556
+ fileSize?: number | undefined;
1557
+ fileType?: string | undefined;
1558
+ fileUrl?: string | undefined;
1559
+ fileDuration?: number | undefined;
1560
+ uploadState?: "pending" | "completed" | undefined;
1561
+ } | undefined;
1562
+ }, {
1563
+ content: string;
1564
+ id: string;
1565
+ postedAt: string;
1566
+ projectId?: string | undefined;
1567
+ taskId?: string | undefined;
1568
+ attachment?: {
1569
+ resourceType: string;
1570
+ fileName?: string | undefined;
1571
+ fileSize?: number | undefined;
1572
+ fileType?: string | undefined;
1573
+ fileUrl?: string | undefined;
1574
+ fileDuration?: number | undefined;
1575
+ uploadState?: "pending" | "completed" | undefined;
1576
+ } | undefined;
1577
+ }>, "many">;
1578
+ totalCount: import('zod').ZodNumber;
1579
+ updatedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
1580
+ appliedOperations: import('zod').ZodObject<{
1581
+ updateCount: import('zod').ZodNumber;
1582
+ }, "strip", import('zod').ZodTypeAny, {
1583
+ updateCount: number;
1584
+ }, {
1585
+ updateCount: number;
1586
+ }>;
1587
+ };
987
1588
  execute(args: {
988
1589
  comments: {
989
1590
  content: string;
@@ -1049,9 +1650,75 @@ declare const tools: {
1049
1650
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
1050
1651
  limit: import('zod').ZodOptional<import('zod').ZodNumber>;
1051
1652
  };
1653
+ outputSchema: {
1654
+ comments: import('zod').ZodArray<import('zod').ZodObject<{
1655
+ id: import('zod').ZodString;
1656
+ taskId: import('zod').ZodOptional<import('zod').ZodString>;
1657
+ projectId: import('zod').ZodOptional<import('zod').ZodString>;
1658
+ content: import('zod').ZodString;
1659
+ postedAt: import('zod').ZodString;
1660
+ attachment: import('zod').ZodOptional<import('zod').ZodObject<{
1661
+ resourceType: import('zod').ZodString;
1662
+ fileName: import('zod').ZodOptional<import('zod').ZodString>;
1663
+ fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
1664
+ fileType: import('zod').ZodOptional<import('zod').ZodString>;
1665
+ fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
1666
+ fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
1667
+ uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
1668
+ }, "strip", import('zod').ZodTypeAny, {
1669
+ resourceType: string;
1670
+ fileName?: string | undefined;
1671
+ fileSize?: number | undefined;
1672
+ fileType?: string | undefined;
1673
+ fileUrl?: string | undefined;
1674
+ fileDuration?: number | undefined;
1675
+ uploadState?: "pending" | "completed" | undefined;
1676
+ }, {
1677
+ resourceType: string;
1678
+ fileName?: string | undefined;
1679
+ fileSize?: number | undefined;
1680
+ fileType?: string | undefined;
1681
+ fileUrl?: string | undefined;
1682
+ fileDuration?: number | undefined;
1683
+ uploadState?: "pending" | "completed" | undefined;
1684
+ }>>;
1685
+ }, "strip", import('zod').ZodTypeAny, {
1686
+ content: string;
1687
+ id: string;
1688
+ postedAt: string;
1689
+ projectId?: string | undefined;
1690
+ taskId?: string | undefined;
1691
+ attachment?: {
1692
+ resourceType: string;
1693
+ fileName?: string | undefined;
1694
+ fileSize?: number | undefined;
1695
+ fileType?: string | undefined;
1696
+ fileUrl?: string | undefined;
1697
+ fileDuration?: number | undefined;
1698
+ uploadState?: "pending" | "completed" | undefined;
1699
+ } | undefined;
1700
+ }, {
1701
+ content: string;
1702
+ id: string;
1703
+ postedAt: string;
1704
+ projectId?: string | undefined;
1705
+ taskId?: string | undefined;
1706
+ attachment?: {
1707
+ resourceType: string;
1708
+ fileName?: string | undefined;
1709
+ fileSize?: number | undefined;
1710
+ fileType?: string | undefined;
1711
+ fileUrl?: string | undefined;
1712
+ fileDuration?: number | undefined;
1713
+ uploadState?: "pending" | "completed" | undefined;
1714
+ } | undefined;
1715
+ }>, "many">;
1716
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1717
+ totalCount: import('zod').ZodNumber;
1718
+ };
1052
1719
  execute(args: {
1053
- taskId?: string | undefined;
1054
1720
  projectId?: string | undefined;
1721
+ taskId?: string | undefined;
1055
1722
  limit?: number | undefined;
1056
1723
  cursor?: string | undefined;
1057
1724
  commentId?: string | undefined;
@@ -1118,10 +1785,47 @@ declare const tools: {
1118
1785
  limit: import('zod').ZodDefault<import('zod').ZodNumber>;
1119
1786
  cursor: import('zod').ZodOptional<import('zod').ZodString>;
1120
1787
  };
1788
+ outputSchema: {
1789
+ events: import('zod').ZodArray<import('zod').ZodObject<{
1790
+ id: import('zod').ZodString;
1791
+ objectType: import('zod').ZodString;
1792
+ objectId: import('zod').ZodString;
1793
+ eventType: import('zod').ZodString;
1794
+ eventDate: import('zod').ZodString;
1795
+ parentProjectId: import('zod').ZodOptional<import('zod').ZodString>;
1796
+ parentItemId: import('zod').ZodOptional<import('zod').ZodString>;
1797
+ initiatorId: import('zod').ZodOptional<import('zod').ZodString>;
1798
+ extraData: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1799
+ }, "strip", import('zod').ZodTypeAny, {
1800
+ id: string;
1801
+ objectType: string;
1802
+ objectId: string;
1803
+ eventType: string;
1804
+ eventDate: string;
1805
+ extraData: Record<string, unknown>;
1806
+ parentProjectId?: string | undefined;
1807
+ parentItemId?: string | undefined;
1808
+ initiatorId?: string | undefined;
1809
+ }, {
1810
+ id: string;
1811
+ objectType: string;
1812
+ objectId: string;
1813
+ eventType: string;
1814
+ eventDate: string;
1815
+ extraData: Record<string, unknown>;
1816
+ parentProjectId?: string | undefined;
1817
+ parentItemId?: string | undefined;
1818
+ initiatorId?: string | undefined;
1819
+ }>, "many">;
1820
+ nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
1821
+ totalCount: import('zod').ZodNumber;
1822
+ hasMore: import('zod').ZodBoolean;
1823
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
1824
+ };
1121
1825
  execute(args: {
1122
1826
  limit: number;
1123
- taskId?: string | undefined;
1124
1827
  projectId?: string | undefined;
1828
+ taskId?: string | undefined;
1125
1829
  objectType?: "comment" | "task" | "project" | undefined;
1126
1830
  objectId?: string | undefined;
1127
1831
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
@@ -1149,8 +1853,8 @@ declare const tools: {
1149
1853
  hasMore: boolean;
1150
1854
  appliedFilters: {
1151
1855
  limit: number;
1152
- taskId?: string | undefined;
1153
1856
  projectId?: string | undefined;
1857
+ taskId?: string | undefined;
1154
1858
  objectType?: "comment" | "task" | "project" | undefined;
1155
1859
  objectId?: string | undefined;
1156
1860
  eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
@@ -1177,6 +1881,29 @@ declare const tools: {
1177
1881
  parameters: {
1178
1882
  projectId: import('zod').ZodOptional<import('zod').ZodString>;
1179
1883
  };
1884
+ outputSchema: {
1885
+ type: import('zod').ZodEnum<["account_overview", "project_overview"]>;
1886
+ totalProjects: import('zod').ZodOptional<import('zod').ZodNumber>;
1887
+ totalTasks: import('zod').ZodNumber;
1888
+ totalSections: import('zod').ZodOptional<import('zod').ZodNumber>;
1889
+ tasksWithoutSection: import('zod').ZodOptional<import('zod').ZodNumber>;
1890
+ projectInfo: import('zod').ZodOptional<import('zod').ZodObject<{
1891
+ id: import('zod').ZodString;
1892
+ name: import('zod').ZodString;
1893
+ isShared: import('zod').ZodBoolean;
1894
+ isFavorite: import('zod').ZodBoolean;
1895
+ }, "strip", import('zod').ZodTypeAny, {
1896
+ name: string;
1897
+ id: string;
1898
+ isFavorite: boolean;
1899
+ isShared: boolean;
1900
+ }, {
1901
+ name: string;
1902
+ id: string;
1903
+ isFavorite: boolean;
1904
+ isShared: boolean;
1905
+ }>>;
1906
+ };
1180
1907
  execute(args: {
1181
1908
  projectId?: string | undefined;
1182
1909
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -1205,6 +1932,19 @@ declare const tools: {
1205
1932
  type: import('zod').ZodEnum<["project", "section", "task", "comment"]>;
1206
1933
  id: import('zod').ZodString;
1207
1934
  };
1935
+ outputSchema: {
1936
+ deletedEntity: import('zod').ZodObject<{
1937
+ type: import('zod').ZodEnum<["project", "section", "task", "comment"]>;
1938
+ id: import('zod').ZodString;
1939
+ }, "strip", import('zod').ZodTypeAny, {
1940
+ type: "comment" | "task" | "project" | "section";
1941
+ id: string;
1942
+ }, {
1943
+ type: "comment" | "task" | "project" | "section";
1944
+ id: string;
1945
+ }>;
1946
+ success: import('zod').ZodBoolean;
1947
+ };
1208
1948
  execute(args: {
1209
1949
  type: "comment" | "task" | "project" | "section";
1210
1950
  id: string;
@@ -1237,6 +1977,23 @@ declare const tools: {
1237
1977
  name: "user-info";
1238
1978
  description: string;
1239
1979
  parameters: {};
1980
+ outputSchema: {
1981
+ type: import('zod').ZodLiteral<"user_info">;
1982
+ userId: import('zod').ZodString;
1983
+ fullName: import('zod').ZodString;
1984
+ timezone: import('zod').ZodString;
1985
+ currentLocalTime: import('zod').ZodString;
1986
+ startDay: import('zod').ZodNumber;
1987
+ startDayName: import('zod').ZodString;
1988
+ weekStartDate: import('zod').ZodString;
1989
+ weekEndDate: import('zod').ZodString;
1990
+ currentWeekNumber: import('zod').ZodNumber;
1991
+ completedToday: import('zod').ZodNumber;
1992
+ dailyGoal: import('zod').ZodNumber;
1993
+ weeklyGoal: import('zod').ZodNumber;
1994
+ email: import('zod').ZodString;
1995
+ plan: import('zod').ZodEnum<["Todoist Free", "Todoist Pro", "Todoist Business"]>;
1996
+ };
1240
1997
  execute(_args: {}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
1241
1998
  content: {
1242
1999
  type: "text";
@@ -1263,6 +2020,37 @@ declare const tools: {
1263
2020
  projectId: import('zod').ZodString;
1264
2021
  searchTerm: import('zod').ZodOptional<import('zod').ZodString>;
1265
2022
  };
2023
+ outputSchema: {
2024
+ collaborators: import('zod').ZodArray<import('zod').ZodObject<{
2025
+ id: import('zod').ZodString;
2026
+ name: import('zod').ZodString;
2027
+ email: import('zod').ZodString;
2028
+ }, "strip", import('zod').ZodTypeAny, {
2029
+ name: string;
2030
+ id: string;
2031
+ email: string;
2032
+ }, {
2033
+ name: string;
2034
+ id: string;
2035
+ email: string;
2036
+ }>, "many">;
2037
+ projectInfo: import('zod').ZodOptional<import('zod').ZodObject<{
2038
+ id: import('zod').ZodString;
2039
+ name: import('zod').ZodString;
2040
+ isShared: import('zod').ZodBoolean;
2041
+ }, "strip", import('zod').ZodTypeAny, {
2042
+ name: string;
2043
+ id: string;
2044
+ isShared: boolean;
2045
+ }, {
2046
+ name: string;
2047
+ id: string;
2048
+ isShared: boolean;
2049
+ }>>;
2050
+ totalCount: import('zod').ZodNumber;
2051
+ totalAvailable: import('zod').ZodOptional<import('zod').ZodNumber>;
2052
+ appliedFilters: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>;
2053
+ };
1266
2054
  execute(args: {
1267
2055
  projectId: string;
1268
2056
  searchTerm?: string | undefined;
@@ -1326,10 +2114,47 @@ declare const tools: {
1326
2114
  fromAssigneeUser: import('zod').ZodOptional<import('zod').ZodString>;
1327
2115
  dryRun: import('zod').ZodDefault<import('zod').ZodOptional<import('zod').ZodBoolean>>;
1328
2116
  };
2117
+ outputSchema: {
2118
+ results: import('zod').ZodArray<import('zod').ZodObject<{
2119
+ taskId: import('zod').ZodString;
2120
+ success: import('zod').ZodBoolean;
2121
+ error: import('zod').ZodOptional<import('zod').ZodString>;
2122
+ originalAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
2123
+ newAssigneeId: import('zod').ZodOptional<import('zod').ZodString>;
2124
+ }, "strip", import('zod').ZodTypeAny, {
2125
+ taskId: string;
2126
+ success: boolean;
2127
+ error?: string | undefined;
2128
+ originalAssigneeId?: string | undefined;
2129
+ newAssigneeId?: string | undefined;
2130
+ }, {
2131
+ taskId: string;
2132
+ success: boolean;
2133
+ error?: string | undefined;
2134
+ originalAssigneeId?: string | undefined;
2135
+ newAssigneeId?: string | undefined;
2136
+ }>, "many">;
2137
+ summary: import('zod').ZodObject<{
2138
+ total: import('zod').ZodNumber;
2139
+ succeeded: import('zod').ZodNumber;
2140
+ failed: import('zod').ZodNumber;
2141
+ dryRun: import('zod').ZodBoolean;
2142
+ }, "strip", import('zod').ZodTypeAny, {
2143
+ total: number;
2144
+ succeeded: number;
2145
+ failed: number;
2146
+ dryRun: boolean;
2147
+ }, {
2148
+ total: number;
2149
+ succeeded: number;
2150
+ failed: number;
2151
+ dryRun: boolean;
2152
+ }>;
2153
+ };
1329
2154
  execute(args: {
2155
+ dryRun: boolean;
1330
2156
  operation: "assign" | "unassign" | "reassign";
1331
2157
  taskIds: string[];
1332
- dryRun: boolean;
1333
2158
  responsibleUser?: string | undefined;
1334
2159
  fromAssigneeUser?: string | undefined;
1335
2160
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -1364,6 +2189,22 @@ declare const tools: {
1364
2189
  parameters: {
1365
2190
  query: import('zod').ZodString;
1366
2191
  };
2192
+ outputSchema: {
2193
+ results: import('zod').ZodArray<import('zod').ZodObject<{
2194
+ id: import('zod').ZodString;
2195
+ title: import('zod').ZodString;
2196
+ url: import('zod').ZodString;
2197
+ }, "strip", import('zod').ZodTypeAny, {
2198
+ title: string;
2199
+ id: string;
2200
+ url: string;
2201
+ }, {
2202
+ title: string;
2203
+ id: string;
2204
+ url: string;
2205
+ }>, "many">;
2206
+ totalCount: import('zod').ZodNumber;
2207
+ };
1367
2208
  execute(args: {
1368
2209
  query: string;
1369
2210
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
@@ -1380,6 +2221,13 @@ declare const tools: {
1380
2221
  parameters: {
1381
2222
  id: import('zod').ZodString;
1382
2223
  };
2224
+ outputSchema: {
2225
+ id: import('zod').ZodString;
2226
+ title: import('zod').ZodString;
2227
+ text: import('zod').ZodString;
2228
+ url: import('zod').ZodString;
2229
+ metadata: import('zod').ZodOptional<import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodUnknown>>;
2230
+ };
1383
2231
  execute(args: {
1384
2232
  id: string;
1385
2233
  }, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{