@doist/todoist-ai 4.17.1 → 4.17.3
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.
- package/dist/index.d.ts +273 -198
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/main.js +1 -1
- package/dist/{mcp-server-BMGcSL1c.js → mcp-server-BSQxi0xQ.js} +627 -596
- package/dist/tool-helpers.d.ts +29 -2
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tools/add-comments.d.ts +48 -23
- package/dist/tools/add-comments.d.ts.map +1 -1
- package/dist/tools/add-projects.d.ts +5 -5
- package/dist/tools/add-tasks.d.ts +26 -26
- package/dist/tools/complete-tasks.d.ts +2 -2
- package/dist/tools/find-activity.d.ts +2 -2
- package/dist/tools/find-comments.d.ts +49 -24
- package/dist/tools/find-comments.d.ts.map +1 -1
- package/dist/tools/find-completed-tasks.d.ts +21 -21
- package/dist/tools/find-projects.d.ts +4 -4
- package/dist/tools/find-tasks-by-date.d.ts +19 -19
- package/dist/tools/find-tasks.d.ts +21 -21
- package/dist/tools/update-comments.d.ts +48 -23
- package/dist/tools/update-comments.d.ts.map +1 -1
- package/dist/tools/update-projects.d.ts +2 -2
- package/dist/tools/update-tasks.d.ts +26 -26
- package/dist/utils/output-schemas.d.ts +54 -26
- package/dist/utils/output-schemas.d.ts.map +1 -1
- package/dist/utils/sanitize-data.d.ts +3 -2
- package/dist/utils/sanitize-data.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -42,25 +42,25 @@ declare const tools: {
|
|
|
42
42
|
}, "strip", import('zod').ZodTypeAny, {
|
|
43
43
|
content: string;
|
|
44
44
|
description?: string | undefined;
|
|
45
|
-
|
|
46
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
45
|
+
parentId?: string | undefined;
|
|
47
46
|
projectId?: string | undefined;
|
|
48
47
|
sectionId?: string | undefined;
|
|
49
|
-
parentId?: string | undefined;
|
|
50
48
|
labels?: string[] | undefined;
|
|
51
49
|
duration?: string | undefined;
|
|
50
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
51
|
+
deadlineDate?: string | undefined;
|
|
52
52
|
dueString?: string | undefined;
|
|
53
53
|
responsibleUser?: string | undefined;
|
|
54
54
|
}, {
|
|
55
55
|
content: string;
|
|
56
56
|
description?: string | undefined;
|
|
57
|
-
|
|
58
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
57
|
+
parentId?: string | undefined;
|
|
59
58
|
projectId?: string | undefined;
|
|
60
59
|
sectionId?: string | undefined;
|
|
61
|
-
parentId?: string | undefined;
|
|
62
60
|
labels?: string[] | undefined;
|
|
63
61
|
duration?: string | undefined;
|
|
62
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
63
|
+
deadlineDate?: string | undefined;
|
|
64
64
|
dueString?: string | undefined;
|
|
65
65
|
responsibleUser?: string | undefined;
|
|
66
66
|
}>, "many">;
|
|
@@ -77,7 +77,7 @@ declare const tools: {
|
|
|
77
77
|
projectId: import('zod').ZodString;
|
|
78
78
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
79
79
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
80
|
-
labels: import('zod').ZodArray<import('zod').ZodString, "many"
|
|
80
|
+
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
81
81
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
82
82
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
83
83
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -87,36 +87,36 @@ declare const tools: {
|
|
|
87
87
|
content: string;
|
|
88
88
|
description: string;
|
|
89
89
|
id: string;
|
|
90
|
-
recurring: string | boolean;
|
|
91
|
-
priority: number;
|
|
92
90
|
projectId: string;
|
|
93
|
-
labels: string[];
|
|
94
91
|
checked: boolean;
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
sectionId?: string | undefined;
|
|
92
|
+
priority: number;
|
|
93
|
+
recurring: string | boolean;
|
|
98
94
|
parentId?: string | undefined;
|
|
99
|
-
|
|
100
|
-
responsibleUid?: string | undefined;
|
|
95
|
+
sectionId?: string | undefined;
|
|
101
96
|
assignedByUid?: string | undefined;
|
|
97
|
+
responsibleUid?: string | undefined;
|
|
98
|
+
labels?: string[] | undefined;
|
|
99
|
+
duration?: string | undefined;
|
|
102
100
|
completedAt?: string | undefined;
|
|
101
|
+
dueDate?: string | undefined;
|
|
102
|
+
deadlineDate?: string | undefined;
|
|
103
103
|
}, {
|
|
104
104
|
content: string;
|
|
105
105
|
description: string;
|
|
106
106
|
id: string;
|
|
107
|
-
recurring: string | boolean;
|
|
108
|
-
priority: number;
|
|
109
107
|
projectId: string;
|
|
110
|
-
labels: string[];
|
|
111
108
|
checked: boolean;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
sectionId?: string | undefined;
|
|
109
|
+
priority: number;
|
|
110
|
+
recurring: string | boolean;
|
|
115
111
|
parentId?: string | undefined;
|
|
116
|
-
|
|
117
|
-
responsibleUid?: string | undefined;
|
|
112
|
+
sectionId?: string | undefined;
|
|
118
113
|
assignedByUid?: string | undefined;
|
|
114
|
+
responsibleUid?: string | undefined;
|
|
115
|
+
labels?: string[] | undefined;
|
|
116
|
+
duration?: string | undefined;
|
|
119
117
|
completedAt?: string | undefined;
|
|
118
|
+
dueDate?: string | undefined;
|
|
119
|
+
deadlineDate?: string | undefined;
|
|
120
120
|
}>, "many">;
|
|
121
121
|
totalCount: import('zod').ZodNumber;
|
|
122
122
|
};
|
|
@@ -124,13 +124,13 @@ declare const tools: {
|
|
|
124
124
|
tasks: {
|
|
125
125
|
content: string;
|
|
126
126
|
description?: string | undefined;
|
|
127
|
-
|
|
128
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
127
|
+
parentId?: string | undefined;
|
|
129
128
|
projectId?: string | undefined;
|
|
130
129
|
sectionId?: string | undefined;
|
|
131
|
-
parentId?: string | undefined;
|
|
132
130
|
labels?: string[] | undefined;
|
|
133
131
|
duration?: string | undefined;
|
|
132
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
133
|
+
deadlineDate?: string | undefined;
|
|
134
134
|
dueString?: string | undefined;
|
|
135
135
|
responsibleUser?: string | undefined;
|
|
136
136
|
}[];
|
|
@@ -172,12 +172,12 @@ declare const tools: {
|
|
|
172
172
|
error: import('zod').ZodString;
|
|
173
173
|
code: import('zod').ZodOptional<import('zod').ZodString>;
|
|
174
174
|
}, "strip", import('zod').ZodTypeAny, {
|
|
175
|
-
item: string;
|
|
176
175
|
error: string;
|
|
176
|
+
item: string;
|
|
177
177
|
code?: string | undefined;
|
|
178
178
|
}, {
|
|
179
|
-
item: string;
|
|
180
179
|
error: string;
|
|
180
|
+
item: string;
|
|
181
181
|
code?: string | undefined;
|
|
182
182
|
}>, "many">;
|
|
183
183
|
totalRequested: import('zod').ZodNumber;
|
|
@@ -223,13 +223,13 @@ declare const tools: {
|
|
|
223
223
|
id: string;
|
|
224
224
|
content?: string | undefined;
|
|
225
225
|
description?: string | undefined;
|
|
226
|
-
|
|
227
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
226
|
+
parentId?: string | undefined;
|
|
228
227
|
projectId?: string | undefined;
|
|
229
228
|
sectionId?: string | undefined;
|
|
230
|
-
parentId?: string | undefined;
|
|
231
229
|
labels?: string[] | undefined;
|
|
232
230
|
duration?: string | undefined;
|
|
231
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
232
|
+
deadlineDate?: string | undefined;
|
|
233
233
|
dueString?: string | undefined;
|
|
234
234
|
responsibleUser?: string | undefined;
|
|
235
235
|
order?: number | undefined;
|
|
@@ -237,13 +237,13 @@ declare const tools: {
|
|
|
237
237
|
id: string;
|
|
238
238
|
content?: string | undefined;
|
|
239
239
|
description?: string | undefined;
|
|
240
|
-
|
|
241
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
240
|
+
parentId?: string | undefined;
|
|
242
241
|
projectId?: string | undefined;
|
|
243
242
|
sectionId?: string | undefined;
|
|
244
|
-
parentId?: string | undefined;
|
|
245
243
|
labels?: string[] | undefined;
|
|
246
244
|
duration?: string | undefined;
|
|
245
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
246
|
+
deadlineDate?: string | undefined;
|
|
247
247
|
dueString?: string | undefined;
|
|
248
248
|
responsibleUser?: string | undefined;
|
|
249
249
|
order?: number | undefined;
|
|
@@ -261,7 +261,7 @@ declare const tools: {
|
|
|
261
261
|
projectId: import('zod').ZodString;
|
|
262
262
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
263
263
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
264
|
-
labels: import('zod').ZodArray<import('zod').ZodString, "many"
|
|
264
|
+
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
265
265
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
266
266
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
267
267
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -271,36 +271,36 @@ declare const tools: {
|
|
|
271
271
|
content: string;
|
|
272
272
|
description: string;
|
|
273
273
|
id: string;
|
|
274
|
-
recurring: string | boolean;
|
|
275
|
-
priority: number;
|
|
276
274
|
projectId: string;
|
|
277
|
-
labels: string[];
|
|
278
275
|
checked: boolean;
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
sectionId?: string | undefined;
|
|
276
|
+
priority: number;
|
|
277
|
+
recurring: string | boolean;
|
|
282
278
|
parentId?: string | undefined;
|
|
283
|
-
|
|
284
|
-
responsibleUid?: string | undefined;
|
|
279
|
+
sectionId?: string | undefined;
|
|
285
280
|
assignedByUid?: string | undefined;
|
|
281
|
+
responsibleUid?: string | undefined;
|
|
282
|
+
labels?: string[] | undefined;
|
|
283
|
+
duration?: string | undefined;
|
|
286
284
|
completedAt?: string | undefined;
|
|
285
|
+
dueDate?: string | undefined;
|
|
286
|
+
deadlineDate?: string | undefined;
|
|
287
287
|
}, {
|
|
288
288
|
content: string;
|
|
289
289
|
description: string;
|
|
290
290
|
id: string;
|
|
291
|
-
recurring: string | boolean;
|
|
292
|
-
priority: number;
|
|
293
291
|
projectId: string;
|
|
294
|
-
labels: string[];
|
|
295
292
|
checked: boolean;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
sectionId?: string | undefined;
|
|
293
|
+
priority: number;
|
|
294
|
+
recurring: string | boolean;
|
|
299
295
|
parentId?: string | undefined;
|
|
300
|
-
|
|
301
|
-
responsibleUid?: string | undefined;
|
|
296
|
+
sectionId?: string | undefined;
|
|
302
297
|
assignedByUid?: string | undefined;
|
|
298
|
+
responsibleUid?: string | undefined;
|
|
299
|
+
labels?: string[] | undefined;
|
|
300
|
+
duration?: string | undefined;
|
|
303
301
|
completedAt?: string | undefined;
|
|
302
|
+
dueDate?: string | undefined;
|
|
303
|
+
deadlineDate?: string | undefined;
|
|
304
304
|
}>, "many">;
|
|
305
305
|
totalCount: import('zod').ZodNumber;
|
|
306
306
|
updatedTaskIds: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
@@ -320,13 +320,13 @@ declare const tools: {
|
|
|
320
320
|
id: string;
|
|
321
321
|
content?: string | undefined;
|
|
322
322
|
description?: string | undefined;
|
|
323
|
-
|
|
324
|
-
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
323
|
+
parentId?: string | undefined;
|
|
325
324
|
projectId?: string | undefined;
|
|
326
325
|
sectionId?: string | undefined;
|
|
327
|
-
parentId?: string | undefined;
|
|
328
326
|
labels?: string[] | undefined;
|
|
329
327
|
duration?: string | undefined;
|
|
328
|
+
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
329
|
+
deadlineDate?: string | undefined;
|
|
330
330
|
dueString?: string | undefined;
|
|
331
331
|
responsibleUser?: string | undefined;
|
|
332
332
|
order?: number | undefined;
|
|
@@ -388,7 +388,7 @@ declare const tools: {
|
|
|
388
388
|
projectId: import('zod').ZodString;
|
|
389
389
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
390
390
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
391
|
-
labels: import('zod').ZodArray<import('zod').ZodString, "many"
|
|
391
|
+
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
392
392
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
393
393
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
394
394
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -398,36 +398,36 @@ declare const tools: {
|
|
|
398
398
|
content: string;
|
|
399
399
|
description: string;
|
|
400
400
|
id: string;
|
|
401
|
-
recurring: string | boolean;
|
|
402
|
-
priority: number;
|
|
403
401
|
projectId: string;
|
|
404
|
-
labels: string[];
|
|
405
402
|
checked: boolean;
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
sectionId?: string | undefined;
|
|
403
|
+
priority: number;
|
|
404
|
+
recurring: string | boolean;
|
|
409
405
|
parentId?: string | undefined;
|
|
410
|
-
|
|
411
|
-
responsibleUid?: string | undefined;
|
|
406
|
+
sectionId?: string | undefined;
|
|
412
407
|
assignedByUid?: string | undefined;
|
|
408
|
+
responsibleUid?: string | undefined;
|
|
409
|
+
labels?: string[] | undefined;
|
|
410
|
+
duration?: string | undefined;
|
|
413
411
|
completedAt?: string | undefined;
|
|
412
|
+
dueDate?: string | undefined;
|
|
413
|
+
deadlineDate?: string | undefined;
|
|
414
414
|
}, {
|
|
415
415
|
content: string;
|
|
416
416
|
description: string;
|
|
417
417
|
id: string;
|
|
418
|
-
recurring: string | boolean;
|
|
419
|
-
priority: number;
|
|
420
418
|
projectId: string;
|
|
421
|
-
labels: string[];
|
|
422
419
|
checked: boolean;
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
sectionId?: string | undefined;
|
|
420
|
+
priority: number;
|
|
421
|
+
recurring: string | boolean;
|
|
426
422
|
parentId?: string | undefined;
|
|
427
|
-
|
|
428
|
-
responsibleUid?: string | undefined;
|
|
423
|
+
sectionId?: string | undefined;
|
|
429
424
|
assignedByUid?: string | undefined;
|
|
425
|
+
responsibleUid?: string | undefined;
|
|
426
|
+
labels?: string[] | undefined;
|
|
427
|
+
duration?: string | undefined;
|
|
430
428
|
completedAt?: string | undefined;
|
|
429
|
+
dueDate?: string | undefined;
|
|
430
|
+
deadlineDate?: string | undefined;
|
|
431
431
|
}>, "many">;
|
|
432
432
|
nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
433
433
|
totalCount: import('zod').ZodNumber;
|
|
@@ -436,11 +436,11 @@ declare const tools: {
|
|
|
436
436
|
};
|
|
437
437
|
execute(args: {
|
|
438
438
|
limit: number;
|
|
439
|
+
parentId?: string | undefined;
|
|
440
|
+
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
439
441
|
projectId?: string | undefined;
|
|
440
442
|
sectionId?: string | undefined;
|
|
441
|
-
parentId?: string | undefined;
|
|
442
443
|
labels?: string[] | undefined;
|
|
443
|
-
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
444
444
|
cursor?: string | undefined;
|
|
445
445
|
responsibleUser?: string | undefined;
|
|
446
446
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -471,11 +471,11 @@ declare const tools: {
|
|
|
471
471
|
hasMore: boolean;
|
|
472
472
|
appliedFilters: {
|
|
473
473
|
limit: number;
|
|
474
|
+
parentId?: string | undefined;
|
|
475
|
+
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
474
476
|
projectId?: string | undefined;
|
|
475
477
|
sectionId?: string | undefined;
|
|
476
|
-
parentId?: string | undefined;
|
|
477
478
|
labels?: string[] | undefined;
|
|
478
|
-
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
479
479
|
cursor?: string | undefined;
|
|
480
480
|
responsibleUser?: string | undefined;
|
|
481
481
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -510,7 +510,7 @@ declare const tools: {
|
|
|
510
510
|
projectId: import('zod').ZodString;
|
|
511
511
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
512
512
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
513
|
-
labels: import('zod').ZodArray<import('zod').ZodString, "many"
|
|
513
|
+
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
514
514
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
515
515
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
516
516
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -520,36 +520,36 @@ declare const tools: {
|
|
|
520
520
|
content: string;
|
|
521
521
|
description: string;
|
|
522
522
|
id: string;
|
|
523
|
-
recurring: string | boolean;
|
|
524
|
-
priority: number;
|
|
525
523
|
projectId: string;
|
|
526
|
-
labels: string[];
|
|
527
524
|
checked: boolean;
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
sectionId?: string | undefined;
|
|
525
|
+
priority: number;
|
|
526
|
+
recurring: string | boolean;
|
|
531
527
|
parentId?: string | undefined;
|
|
532
|
-
|
|
533
|
-
responsibleUid?: string | undefined;
|
|
528
|
+
sectionId?: string | undefined;
|
|
534
529
|
assignedByUid?: string | undefined;
|
|
530
|
+
responsibleUid?: string | undefined;
|
|
531
|
+
labels?: string[] | undefined;
|
|
532
|
+
duration?: string | undefined;
|
|
535
533
|
completedAt?: string | undefined;
|
|
534
|
+
dueDate?: string | undefined;
|
|
535
|
+
deadlineDate?: string | undefined;
|
|
536
536
|
}, {
|
|
537
537
|
content: string;
|
|
538
538
|
description: string;
|
|
539
539
|
id: string;
|
|
540
|
-
recurring: string | boolean;
|
|
541
|
-
priority: number;
|
|
542
540
|
projectId: string;
|
|
543
|
-
labels: string[];
|
|
544
541
|
checked: boolean;
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
sectionId?: string | undefined;
|
|
542
|
+
priority: number;
|
|
543
|
+
recurring: string | boolean;
|
|
548
544
|
parentId?: string | undefined;
|
|
549
|
-
|
|
550
|
-
responsibleUid?: string | undefined;
|
|
545
|
+
sectionId?: string | undefined;
|
|
551
546
|
assignedByUid?: string | undefined;
|
|
547
|
+
responsibleUid?: string | undefined;
|
|
548
|
+
labels?: string[] | undefined;
|
|
549
|
+
duration?: string | undefined;
|
|
552
550
|
completedAt?: string | undefined;
|
|
551
|
+
dueDate?: string | undefined;
|
|
552
|
+
deadlineDate?: string | undefined;
|
|
553
553
|
}>, "many">;
|
|
554
554
|
nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
555
555
|
totalCount: import('zod').ZodNumber;
|
|
@@ -559,8 +559,8 @@ declare const tools: {
|
|
|
559
559
|
execute(args: {
|
|
560
560
|
limit: number;
|
|
561
561
|
daysCount: number;
|
|
562
|
-
labels?: string[] | undefined;
|
|
563
562
|
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
563
|
+
labels?: string[] | undefined;
|
|
564
564
|
cursor?: string | undefined;
|
|
565
565
|
responsibleUser?: string | undefined;
|
|
566
566
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -593,8 +593,8 @@ declare const tools: {
|
|
|
593
593
|
appliedFilters: {
|
|
594
594
|
limit: number;
|
|
595
595
|
daysCount: number;
|
|
596
|
-
labels?: string[] | undefined;
|
|
597
596
|
responsibleUserFiltering?: "assigned" | "unassignedOrMe" | "all" | undefined;
|
|
597
|
+
labels?: string[] | undefined;
|
|
598
598
|
cursor?: string | undefined;
|
|
599
599
|
responsibleUser?: string | undefined;
|
|
600
600
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -633,7 +633,7 @@ declare const tools: {
|
|
|
633
633
|
projectId: import('zod').ZodString;
|
|
634
634
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
635
635
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
636
|
-
labels: import('zod').ZodArray<import('zod').ZodString, "many"
|
|
636
|
+
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
637
637
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
638
638
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
639
639
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -643,36 +643,36 @@ declare const tools: {
|
|
|
643
643
|
content: string;
|
|
644
644
|
description: string;
|
|
645
645
|
id: string;
|
|
646
|
-
recurring: string | boolean;
|
|
647
|
-
priority: number;
|
|
648
646
|
projectId: string;
|
|
649
|
-
labels: string[];
|
|
650
647
|
checked: boolean;
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
sectionId?: string | undefined;
|
|
648
|
+
priority: number;
|
|
649
|
+
recurring: string | boolean;
|
|
654
650
|
parentId?: string | undefined;
|
|
655
|
-
|
|
656
|
-
responsibleUid?: string | undefined;
|
|
651
|
+
sectionId?: string | undefined;
|
|
657
652
|
assignedByUid?: string | undefined;
|
|
653
|
+
responsibleUid?: string | undefined;
|
|
654
|
+
labels?: string[] | undefined;
|
|
655
|
+
duration?: string | undefined;
|
|
658
656
|
completedAt?: string | undefined;
|
|
657
|
+
dueDate?: string | undefined;
|
|
658
|
+
deadlineDate?: string | undefined;
|
|
659
659
|
}, {
|
|
660
660
|
content: string;
|
|
661
661
|
description: string;
|
|
662
662
|
id: string;
|
|
663
|
-
recurring: string | boolean;
|
|
664
|
-
priority: number;
|
|
665
663
|
projectId: string;
|
|
666
|
-
labels: string[];
|
|
667
664
|
checked: boolean;
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
sectionId?: string | undefined;
|
|
665
|
+
priority: number;
|
|
666
|
+
recurring: string | boolean;
|
|
671
667
|
parentId?: string | undefined;
|
|
672
|
-
|
|
673
|
-
responsibleUid?: string | undefined;
|
|
668
|
+
sectionId?: string | undefined;
|
|
674
669
|
assignedByUid?: string | undefined;
|
|
670
|
+
responsibleUid?: string | undefined;
|
|
671
|
+
labels?: string[] | undefined;
|
|
672
|
+
duration?: string | undefined;
|
|
675
673
|
completedAt?: string | undefined;
|
|
674
|
+
dueDate?: string | undefined;
|
|
675
|
+
deadlineDate?: string | undefined;
|
|
676
676
|
}>, "many">;
|
|
677
677
|
nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
678
678
|
totalCount: import('zod').ZodNumber;
|
|
@@ -684,11 +684,11 @@ declare const tools: {
|
|
|
684
684
|
getBy: "due" | "completion";
|
|
685
685
|
since: string;
|
|
686
686
|
until: string;
|
|
687
|
+
parentId?: string | undefined;
|
|
688
|
+
workspaceId?: string | undefined;
|
|
687
689
|
projectId?: string | undefined;
|
|
688
690
|
sectionId?: string | undefined;
|
|
689
|
-
parentId?: string | undefined;
|
|
690
691
|
labels?: string[] | undefined;
|
|
691
|
-
workspaceId?: string | undefined;
|
|
692
692
|
cursor?: string | undefined;
|
|
693
693
|
responsibleUser?: string | undefined;
|
|
694
694
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -721,11 +721,11 @@ declare const tools: {
|
|
|
721
721
|
getBy: "due" | "completion";
|
|
722
722
|
since: string;
|
|
723
723
|
until: string;
|
|
724
|
+
parentId?: string | undefined;
|
|
725
|
+
workspaceId?: string | undefined;
|
|
724
726
|
projectId?: string | undefined;
|
|
725
727
|
sectionId?: string | undefined;
|
|
726
|
-
parentId?: string | undefined;
|
|
727
728
|
labels?: string[] | undefined;
|
|
728
|
-
workspaceId?: string | undefined;
|
|
729
729
|
cursor?: string | undefined;
|
|
730
730
|
responsibleUser?: string | undefined;
|
|
731
731
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -744,14 +744,14 @@ declare const tools: {
|
|
|
744
744
|
viewStyle: import('zod').ZodOptional<import('zod').ZodEnum<["list", "board", "calendar"]>>;
|
|
745
745
|
}, "strip", import('zod').ZodTypeAny, {
|
|
746
746
|
name: string;
|
|
747
|
-
parentId?: string | undefined;
|
|
748
747
|
isFavorite?: boolean | undefined;
|
|
749
748
|
viewStyle?: "list" | "board" | "calendar" | undefined;
|
|
749
|
+
parentId?: string | undefined;
|
|
750
750
|
}, {
|
|
751
751
|
name: string;
|
|
752
|
-
parentId?: string | undefined;
|
|
753
752
|
isFavorite?: boolean | undefined;
|
|
754
753
|
viewStyle?: "list" | "board" | "calendar" | undefined;
|
|
754
|
+
parentId?: string | undefined;
|
|
755
755
|
}>, "many">;
|
|
756
756
|
};
|
|
757
757
|
outputSchema: {
|
|
@@ -769,18 +769,18 @@ declare const tools: {
|
|
|
769
769
|
id: string;
|
|
770
770
|
color: string;
|
|
771
771
|
isFavorite: boolean;
|
|
772
|
+
viewStyle: string;
|
|
772
773
|
isShared: boolean;
|
|
773
774
|
inboxProject: boolean;
|
|
774
|
-
viewStyle: string;
|
|
775
775
|
parentId?: string | undefined;
|
|
776
776
|
}, {
|
|
777
777
|
name: string;
|
|
778
778
|
id: string;
|
|
779
779
|
color: string;
|
|
780
780
|
isFavorite: boolean;
|
|
781
|
+
viewStyle: string;
|
|
781
782
|
isShared: boolean;
|
|
782
783
|
inboxProject: boolean;
|
|
783
|
-
viewStyle: string;
|
|
784
784
|
parentId?: string | undefined;
|
|
785
785
|
}>, "many">;
|
|
786
786
|
totalCount: import('zod').ZodNumber;
|
|
@@ -788,9 +788,9 @@ declare const tools: {
|
|
|
788
788
|
execute({ projects }: {
|
|
789
789
|
projects: {
|
|
790
790
|
name: string;
|
|
791
|
-
parentId?: string | undefined;
|
|
792
791
|
isFavorite?: boolean | undefined;
|
|
793
792
|
viewStyle?: "list" | "board" | "calendar" | undefined;
|
|
793
|
+
parentId?: string | undefined;
|
|
794
794
|
}[];
|
|
795
795
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
796
796
|
textContent: string;
|
|
@@ -883,18 +883,18 @@ declare const tools: {
|
|
|
883
883
|
id: string;
|
|
884
884
|
color: string;
|
|
885
885
|
isFavorite: boolean;
|
|
886
|
+
viewStyle: string;
|
|
886
887
|
isShared: boolean;
|
|
887
888
|
inboxProject: boolean;
|
|
888
|
-
viewStyle: string;
|
|
889
889
|
parentId?: string | undefined;
|
|
890
890
|
}, {
|
|
891
891
|
name: string;
|
|
892
892
|
id: string;
|
|
893
893
|
color: string;
|
|
894
894
|
isFavorite: boolean;
|
|
895
|
+
viewStyle: string;
|
|
895
896
|
isShared: boolean;
|
|
896
897
|
inboxProject: boolean;
|
|
897
|
-
viewStyle: string;
|
|
898
898
|
parentId?: string | undefined;
|
|
899
899
|
}>, "many">;
|
|
900
900
|
totalCount: import('zod').ZodNumber;
|
|
@@ -1000,18 +1000,18 @@ declare const tools: {
|
|
|
1000
1000
|
id: string;
|
|
1001
1001
|
color: string;
|
|
1002
1002
|
isFavorite: boolean;
|
|
1003
|
+
viewStyle: string;
|
|
1003
1004
|
isShared: boolean;
|
|
1004
1005
|
inboxProject: boolean;
|
|
1005
|
-
viewStyle: string;
|
|
1006
1006
|
parentId?: string | undefined;
|
|
1007
1007
|
}, {
|
|
1008
1008
|
name: string;
|
|
1009
1009
|
id: string;
|
|
1010
1010
|
color: string;
|
|
1011
1011
|
isFavorite: boolean;
|
|
1012
|
+
viewStyle: string;
|
|
1012
1013
|
isShared: boolean;
|
|
1013
1014
|
inboxProject: boolean;
|
|
1014
|
-
viewStyle: string;
|
|
1015
1015
|
parentId?: string | undefined;
|
|
1016
1016
|
}>, "many">;
|
|
1017
1017
|
nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -1021,8 +1021,8 @@ declare const tools: {
|
|
|
1021
1021
|
};
|
|
1022
1022
|
execute(args: {
|
|
1023
1023
|
limit: number;
|
|
1024
|
-
search?: string | undefined;
|
|
1025
1024
|
cursor?: string | undefined;
|
|
1025
|
+
search?: string | undefined;
|
|
1026
1026
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1027
1027
|
textContent: string;
|
|
1028
1028
|
structuredContent: {
|
|
@@ -1041,8 +1041,8 @@ declare const tools: {
|
|
|
1041
1041
|
hasMore: boolean;
|
|
1042
1042
|
appliedFilters: {
|
|
1043
1043
|
limit: number;
|
|
1044
|
-
search?: string | undefined;
|
|
1045
1044
|
cursor?: string | undefined;
|
|
1045
|
+
search?: string | undefined;
|
|
1046
1046
|
};
|
|
1047
1047
|
};
|
|
1048
1048
|
}>;
|
|
@@ -1221,7 +1221,8 @@ declare const tools: {
|
|
|
1221
1221
|
projectId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1222
1222
|
content: import('zod').ZodString;
|
|
1223
1223
|
postedAt: import('zod').ZodString;
|
|
1224
|
-
|
|
1224
|
+
postedUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1225
|
+
fileAttachment: import('zod').ZodOptional<import('zod').ZodObject<{
|
|
1225
1226
|
resourceType: import('zod').ZodString;
|
|
1226
1227
|
fileName: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1227
1228
|
fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
@@ -1229,53 +1230,80 @@ declare const tools: {
|
|
|
1229
1230
|
fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1230
1231
|
fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1231
1232
|
uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
|
|
1233
|
+
url: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1234
|
+
title: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1235
|
+
image: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1236
|
+
imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1237
|
+
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1232
1238
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1233
1239
|
resourceType: string;
|
|
1240
|
+
image?: string | undefined;
|
|
1241
|
+
title?: string | undefined;
|
|
1234
1242
|
fileName?: string | undefined;
|
|
1235
1243
|
fileSize?: number | undefined;
|
|
1236
1244
|
fileType?: string | undefined;
|
|
1237
1245
|
fileUrl?: string | undefined;
|
|
1238
1246
|
fileDuration?: number | undefined;
|
|
1239
1247
|
uploadState?: "pending" | "completed" | undefined;
|
|
1248
|
+
imageWidth?: number | undefined;
|
|
1249
|
+
imageHeight?: number | undefined;
|
|
1250
|
+
url?: string | undefined;
|
|
1240
1251
|
}, {
|
|
1241
1252
|
resourceType: string;
|
|
1253
|
+
image?: string | undefined;
|
|
1254
|
+
title?: string | undefined;
|
|
1242
1255
|
fileName?: string | undefined;
|
|
1243
1256
|
fileSize?: number | undefined;
|
|
1244
1257
|
fileType?: string | undefined;
|
|
1245
1258
|
fileUrl?: string | undefined;
|
|
1246
1259
|
fileDuration?: number | undefined;
|
|
1247
1260
|
uploadState?: "pending" | "completed" | undefined;
|
|
1261
|
+
imageWidth?: number | undefined;
|
|
1262
|
+
imageHeight?: number | undefined;
|
|
1263
|
+
url?: string | undefined;
|
|
1248
1264
|
}>>;
|
|
1249
1265
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1250
1266
|
content: string;
|
|
1251
1267
|
id: string;
|
|
1252
1268
|
postedAt: string;
|
|
1253
1269
|
projectId?: string | undefined;
|
|
1254
|
-
|
|
1255
|
-
attachment?: {
|
|
1270
|
+
fileAttachment?: {
|
|
1256
1271
|
resourceType: string;
|
|
1272
|
+
image?: string | undefined;
|
|
1273
|
+
title?: string | undefined;
|
|
1257
1274
|
fileName?: string | undefined;
|
|
1258
1275
|
fileSize?: number | undefined;
|
|
1259
1276
|
fileType?: string | undefined;
|
|
1260
1277
|
fileUrl?: string | undefined;
|
|
1261
1278
|
fileDuration?: number | undefined;
|
|
1262
1279
|
uploadState?: "pending" | "completed" | undefined;
|
|
1280
|
+
imageWidth?: number | undefined;
|
|
1281
|
+
imageHeight?: number | undefined;
|
|
1282
|
+
url?: string | undefined;
|
|
1263
1283
|
} | undefined;
|
|
1284
|
+
postedUid?: string | undefined;
|
|
1285
|
+
taskId?: string | undefined;
|
|
1264
1286
|
}, {
|
|
1265
1287
|
content: string;
|
|
1266
1288
|
id: string;
|
|
1267
1289
|
postedAt: string;
|
|
1268
1290
|
projectId?: string | undefined;
|
|
1269
|
-
|
|
1270
|
-
attachment?: {
|
|
1291
|
+
fileAttachment?: {
|
|
1271
1292
|
resourceType: string;
|
|
1293
|
+
image?: string | undefined;
|
|
1294
|
+
title?: string | undefined;
|
|
1272
1295
|
fileName?: string | undefined;
|
|
1273
1296
|
fileSize?: number | undefined;
|
|
1274
1297
|
fileType?: string | undefined;
|
|
1275
1298
|
fileUrl?: string | undefined;
|
|
1276
1299
|
fileDuration?: number | undefined;
|
|
1277
1300
|
uploadState?: "pending" | "completed" | undefined;
|
|
1301
|
+
imageWidth?: number | undefined;
|
|
1302
|
+
imageHeight?: number | undefined;
|
|
1303
|
+
url?: string | undefined;
|
|
1278
1304
|
} | undefined;
|
|
1305
|
+
postedUid?: string | undefined;
|
|
1306
|
+
taskId?: string | undefined;
|
|
1279
1307
|
}>, "many">;
|
|
1280
1308
|
totalCount: import('zod').ZodNumber;
|
|
1281
1309
|
addedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
@@ -1290,29 +1318,26 @@ declare const tools: {
|
|
|
1290
1318
|
textContent: string;
|
|
1291
1319
|
structuredContent: {
|
|
1292
1320
|
comments: {
|
|
1293
|
-
taskId: string | undefined;
|
|
1294
1321
|
id: string;
|
|
1322
|
+
taskId: string | undefined;
|
|
1323
|
+
projectId: string | undefined;
|
|
1295
1324
|
content: string;
|
|
1296
1325
|
postedAt: string;
|
|
1326
|
+
postedUid: string;
|
|
1297
1327
|
fileAttachment: {
|
|
1298
1328
|
resourceType: string;
|
|
1299
|
-
fileName
|
|
1300
|
-
fileSize
|
|
1301
|
-
fileType
|
|
1302
|
-
fileUrl
|
|
1303
|
-
fileDuration
|
|
1304
|
-
uploadState
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
} |
|
|
1311
|
-
postedUid: string;
|
|
1312
|
-
uidsToNotify: string[] | null;
|
|
1313
|
-
reactions: Record<string, string[]> | null;
|
|
1314
|
-
isDeleted: boolean;
|
|
1315
|
-
projectId?: 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
|
+
url: string | undefined;
|
|
1336
|
+
title: string | undefined;
|
|
1337
|
+
image: string | undefined;
|
|
1338
|
+
imageWidth: number | undefined;
|
|
1339
|
+
imageHeight: number | undefined;
|
|
1340
|
+
} | undefined;
|
|
1316
1341
|
}[];
|
|
1317
1342
|
totalCount: number;
|
|
1318
1343
|
addedCommentIds: string[];
|
|
@@ -1341,7 +1366,8 @@ declare const tools: {
|
|
|
1341
1366
|
projectId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1342
1367
|
content: import('zod').ZodString;
|
|
1343
1368
|
postedAt: import('zod').ZodString;
|
|
1344
|
-
|
|
1369
|
+
postedUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1370
|
+
fileAttachment: import('zod').ZodOptional<import('zod').ZodObject<{
|
|
1345
1371
|
resourceType: import('zod').ZodString;
|
|
1346
1372
|
fileName: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1347
1373
|
fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
@@ -1349,53 +1375,80 @@ declare const tools: {
|
|
|
1349
1375
|
fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1350
1376
|
fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1351
1377
|
uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
|
|
1378
|
+
url: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1379
|
+
title: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1380
|
+
image: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1381
|
+
imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1382
|
+
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1352
1383
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1353
1384
|
resourceType: string;
|
|
1385
|
+
image?: string | undefined;
|
|
1386
|
+
title?: string | undefined;
|
|
1354
1387
|
fileName?: string | undefined;
|
|
1355
1388
|
fileSize?: number | undefined;
|
|
1356
1389
|
fileType?: string | undefined;
|
|
1357
1390
|
fileUrl?: string | undefined;
|
|
1358
1391
|
fileDuration?: number | undefined;
|
|
1359
1392
|
uploadState?: "pending" | "completed" | undefined;
|
|
1393
|
+
imageWidth?: number | undefined;
|
|
1394
|
+
imageHeight?: number | undefined;
|
|
1395
|
+
url?: string | undefined;
|
|
1360
1396
|
}, {
|
|
1361
1397
|
resourceType: string;
|
|
1398
|
+
image?: string | undefined;
|
|
1399
|
+
title?: string | undefined;
|
|
1362
1400
|
fileName?: string | undefined;
|
|
1363
1401
|
fileSize?: number | undefined;
|
|
1364
1402
|
fileType?: string | undefined;
|
|
1365
1403
|
fileUrl?: string | undefined;
|
|
1366
1404
|
fileDuration?: number | undefined;
|
|
1367
1405
|
uploadState?: "pending" | "completed" | undefined;
|
|
1406
|
+
imageWidth?: number | undefined;
|
|
1407
|
+
imageHeight?: number | undefined;
|
|
1408
|
+
url?: string | undefined;
|
|
1368
1409
|
}>>;
|
|
1369
1410
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1370
1411
|
content: string;
|
|
1371
1412
|
id: string;
|
|
1372
1413
|
postedAt: string;
|
|
1373
1414
|
projectId?: string | undefined;
|
|
1374
|
-
|
|
1375
|
-
attachment?: {
|
|
1415
|
+
fileAttachment?: {
|
|
1376
1416
|
resourceType: string;
|
|
1417
|
+
image?: string | undefined;
|
|
1418
|
+
title?: string | undefined;
|
|
1377
1419
|
fileName?: string | undefined;
|
|
1378
1420
|
fileSize?: number | undefined;
|
|
1379
1421
|
fileType?: string | undefined;
|
|
1380
1422
|
fileUrl?: string | undefined;
|
|
1381
1423
|
fileDuration?: number | undefined;
|
|
1382
1424
|
uploadState?: "pending" | "completed" | undefined;
|
|
1425
|
+
imageWidth?: number | undefined;
|
|
1426
|
+
imageHeight?: number | undefined;
|
|
1427
|
+
url?: string | undefined;
|
|
1383
1428
|
} | undefined;
|
|
1429
|
+
postedUid?: string | undefined;
|
|
1430
|
+
taskId?: string | undefined;
|
|
1384
1431
|
}, {
|
|
1385
1432
|
content: string;
|
|
1386
1433
|
id: string;
|
|
1387
1434
|
postedAt: string;
|
|
1388
1435
|
projectId?: string | undefined;
|
|
1389
|
-
|
|
1390
|
-
attachment?: {
|
|
1436
|
+
fileAttachment?: {
|
|
1391
1437
|
resourceType: string;
|
|
1438
|
+
image?: string | undefined;
|
|
1439
|
+
title?: string | undefined;
|
|
1392
1440
|
fileName?: string | undefined;
|
|
1393
1441
|
fileSize?: number | undefined;
|
|
1394
1442
|
fileType?: string | undefined;
|
|
1395
1443
|
fileUrl?: string | undefined;
|
|
1396
1444
|
fileDuration?: number | undefined;
|
|
1397
1445
|
uploadState?: "pending" | "completed" | undefined;
|
|
1446
|
+
imageWidth?: number | undefined;
|
|
1447
|
+
imageHeight?: number | undefined;
|
|
1448
|
+
url?: string | undefined;
|
|
1398
1449
|
} | undefined;
|
|
1450
|
+
postedUid?: string | undefined;
|
|
1451
|
+
taskId?: string | undefined;
|
|
1399
1452
|
}>, "many">;
|
|
1400
1453
|
totalCount: import('zod').ZodNumber;
|
|
1401
1454
|
updatedCommentIds: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
@@ -1416,29 +1469,26 @@ declare const tools: {
|
|
|
1416
1469
|
textContent: string;
|
|
1417
1470
|
structuredContent: {
|
|
1418
1471
|
comments: {
|
|
1419
|
-
taskId: string | undefined;
|
|
1420
1472
|
id: string;
|
|
1473
|
+
taskId: string | undefined;
|
|
1474
|
+
projectId: string | undefined;
|
|
1421
1475
|
content: string;
|
|
1422
1476
|
postedAt: string;
|
|
1477
|
+
postedUid: string;
|
|
1423
1478
|
fileAttachment: {
|
|
1424
1479
|
resourceType: string;
|
|
1425
|
-
fileName
|
|
1426
|
-
fileSize
|
|
1427
|
-
fileType
|
|
1428
|
-
fileUrl
|
|
1429
|
-
fileDuration
|
|
1430
|
-
uploadState
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
} |
|
|
1437
|
-
postedUid: string;
|
|
1438
|
-
uidsToNotify: string[] | null;
|
|
1439
|
-
reactions: Record<string, string[]> | null;
|
|
1440
|
-
isDeleted: boolean;
|
|
1441
|
-
projectId?: string | undefined;
|
|
1480
|
+
fileName: string | undefined;
|
|
1481
|
+
fileSize: number | undefined;
|
|
1482
|
+
fileType: string | undefined;
|
|
1483
|
+
fileUrl: string | undefined;
|
|
1484
|
+
fileDuration: number | undefined;
|
|
1485
|
+
uploadState: "pending" | "completed" | undefined;
|
|
1486
|
+
url: string | undefined;
|
|
1487
|
+
title: string | undefined;
|
|
1488
|
+
image: string | undefined;
|
|
1489
|
+
imageWidth: number | undefined;
|
|
1490
|
+
imageHeight: number | undefined;
|
|
1491
|
+
} | undefined;
|
|
1442
1492
|
}[];
|
|
1443
1493
|
totalCount: number;
|
|
1444
1494
|
updatedCommentIds: string[];
|
|
@@ -1465,7 +1515,8 @@ declare const tools: {
|
|
|
1465
1515
|
projectId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1466
1516
|
content: import('zod').ZodString;
|
|
1467
1517
|
postedAt: import('zod').ZodString;
|
|
1468
|
-
|
|
1518
|
+
postedUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1519
|
+
fileAttachment: import('zod').ZodOptional<import('zod').ZodObject<{
|
|
1469
1520
|
resourceType: import('zod').ZodString;
|
|
1470
1521
|
fileName: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1471
1522
|
fileSize: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
@@ -1473,90 +1524,114 @@ declare const tools: {
|
|
|
1473
1524
|
fileUrl: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1474
1525
|
fileDuration: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1475
1526
|
uploadState: import('zod').ZodOptional<import('zod').ZodEnum<["pending", "completed"]>>;
|
|
1527
|
+
url: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1528
|
+
title: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1529
|
+
image: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1530
|
+
imageWidth: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1531
|
+
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1476
1532
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1477
1533
|
resourceType: string;
|
|
1534
|
+
image?: string | undefined;
|
|
1535
|
+
title?: string | undefined;
|
|
1478
1536
|
fileName?: string | undefined;
|
|
1479
1537
|
fileSize?: number | undefined;
|
|
1480
1538
|
fileType?: string | undefined;
|
|
1481
1539
|
fileUrl?: string | undefined;
|
|
1482
1540
|
fileDuration?: number | undefined;
|
|
1483
1541
|
uploadState?: "pending" | "completed" | undefined;
|
|
1542
|
+
imageWidth?: number | undefined;
|
|
1543
|
+
imageHeight?: number | undefined;
|
|
1544
|
+
url?: string | undefined;
|
|
1484
1545
|
}, {
|
|
1485
1546
|
resourceType: string;
|
|
1547
|
+
image?: string | undefined;
|
|
1548
|
+
title?: string | undefined;
|
|
1486
1549
|
fileName?: string | undefined;
|
|
1487
1550
|
fileSize?: number | undefined;
|
|
1488
1551
|
fileType?: string | undefined;
|
|
1489
1552
|
fileUrl?: string | undefined;
|
|
1490
1553
|
fileDuration?: number | undefined;
|
|
1491
1554
|
uploadState?: "pending" | "completed" | undefined;
|
|
1555
|
+
imageWidth?: number | undefined;
|
|
1556
|
+
imageHeight?: number | undefined;
|
|
1557
|
+
url?: string | undefined;
|
|
1492
1558
|
}>>;
|
|
1493
1559
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1494
1560
|
content: string;
|
|
1495
1561
|
id: string;
|
|
1496
1562
|
postedAt: string;
|
|
1497
1563
|
projectId?: string | undefined;
|
|
1498
|
-
|
|
1499
|
-
attachment?: {
|
|
1564
|
+
fileAttachment?: {
|
|
1500
1565
|
resourceType: string;
|
|
1566
|
+
image?: string | undefined;
|
|
1567
|
+
title?: string | undefined;
|
|
1501
1568
|
fileName?: string | undefined;
|
|
1502
1569
|
fileSize?: number | undefined;
|
|
1503
1570
|
fileType?: string | undefined;
|
|
1504
1571
|
fileUrl?: string | undefined;
|
|
1505
1572
|
fileDuration?: number | undefined;
|
|
1506
1573
|
uploadState?: "pending" | "completed" | undefined;
|
|
1574
|
+
imageWidth?: number | undefined;
|
|
1575
|
+
imageHeight?: number | undefined;
|
|
1576
|
+
url?: string | undefined;
|
|
1507
1577
|
} | undefined;
|
|
1578
|
+
postedUid?: string | undefined;
|
|
1579
|
+
taskId?: string | undefined;
|
|
1508
1580
|
}, {
|
|
1509
1581
|
content: string;
|
|
1510
1582
|
id: string;
|
|
1511
1583
|
postedAt: string;
|
|
1512
1584
|
projectId?: string | undefined;
|
|
1513
|
-
|
|
1514
|
-
attachment?: {
|
|
1585
|
+
fileAttachment?: {
|
|
1515
1586
|
resourceType: string;
|
|
1587
|
+
image?: string | undefined;
|
|
1588
|
+
title?: string | undefined;
|
|
1516
1589
|
fileName?: string | undefined;
|
|
1517
1590
|
fileSize?: number | undefined;
|
|
1518
1591
|
fileType?: string | undefined;
|
|
1519
1592
|
fileUrl?: string | undefined;
|
|
1520
1593
|
fileDuration?: number | undefined;
|
|
1521
1594
|
uploadState?: "pending" | "completed" | undefined;
|
|
1595
|
+
imageWidth?: number | undefined;
|
|
1596
|
+
imageHeight?: number | undefined;
|
|
1597
|
+
url?: string | undefined;
|
|
1522
1598
|
} | undefined;
|
|
1599
|
+
postedUid?: string | undefined;
|
|
1600
|
+
taskId?: string | undefined;
|
|
1523
1601
|
}>, "many">;
|
|
1524
1602
|
nextCursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1525
1603
|
totalCount: import('zod').ZodNumber;
|
|
1526
1604
|
};
|
|
1527
1605
|
execute(args: {
|
|
1528
1606
|
projectId?: string | undefined;
|
|
1529
|
-
taskId?: string | undefined;
|
|
1530
1607
|
limit?: number | undefined;
|
|
1531
1608
|
cursor?: string | undefined;
|
|
1609
|
+
taskId?: string | undefined;
|
|
1532
1610
|
commentId?: string | undefined;
|
|
1533
1611
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1534
1612
|
textContent: string;
|
|
1535
1613
|
structuredContent: {
|
|
1536
1614
|
comments: {
|
|
1537
|
-
taskId: string | undefined;
|
|
1538
1615
|
id: string;
|
|
1616
|
+
taskId: string | undefined;
|
|
1617
|
+
projectId: string | undefined;
|
|
1539
1618
|
content: string;
|
|
1540
1619
|
postedAt: string;
|
|
1620
|
+
postedUid: string;
|
|
1541
1621
|
fileAttachment: {
|
|
1542
1622
|
resourceType: string;
|
|
1543
|
-
fileName
|
|
1544
|
-
fileSize
|
|
1545
|
-
fileType
|
|
1546
|
-
fileUrl
|
|
1547
|
-
fileDuration
|
|
1548
|
-
uploadState
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
} |
|
|
1555
|
-
postedUid: string;
|
|
1556
|
-
uidsToNotify: string[] | null;
|
|
1557
|
-
reactions: Record<string, string[]> | null;
|
|
1558
|
-
isDeleted: boolean;
|
|
1559
|
-
projectId?: string | undefined;
|
|
1623
|
+
fileName: string | undefined;
|
|
1624
|
+
fileSize: number | undefined;
|
|
1625
|
+
fileType: string | undefined;
|
|
1626
|
+
fileUrl: string | undefined;
|
|
1627
|
+
fileDuration: number | undefined;
|
|
1628
|
+
uploadState: "pending" | "completed" | undefined;
|
|
1629
|
+
url: string | undefined;
|
|
1630
|
+
title: string | undefined;
|
|
1631
|
+
image: string | undefined;
|
|
1632
|
+
imageWidth: number | undefined;
|
|
1633
|
+
imageHeight: number | undefined;
|
|
1634
|
+
} | undefined;
|
|
1560
1635
|
}[];
|
|
1561
1636
|
searchType: string;
|
|
1562
1637
|
searchId: string;
|
|
@@ -1619,12 +1694,12 @@ declare const tools: {
|
|
|
1619
1694
|
execute(args: {
|
|
1620
1695
|
limit: number;
|
|
1621
1696
|
projectId?: string | undefined;
|
|
1622
|
-
taskId?: string | undefined;
|
|
1623
1697
|
objectType?: "comment" | "task" | "project" | undefined;
|
|
1624
1698
|
objectId?: string | undefined;
|
|
1625
1699
|
eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
|
|
1626
1700
|
initiatorId?: string | undefined;
|
|
1627
1701
|
cursor?: string | undefined;
|
|
1702
|
+
taskId?: string | undefined;
|
|
1628
1703
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1629
1704
|
textContent: string;
|
|
1630
1705
|
structuredContent: {
|
|
@@ -1645,12 +1720,12 @@ declare const tools: {
|
|
|
1645
1720
|
appliedFilters: {
|
|
1646
1721
|
limit: number;
|
|
1647
1722
|
projectId?: string | undefined;
|
|
1648
|
-
taskId?: string | undefined;
|
|
1649
1723
|
objectType?: "comment" | "task" | "project" | undefined;
|
|
1650
1724
|
objectId?: string | undefined;
|
|
1651
1725
|
eventType?: "completed" | "added" | "updated" | "deleted" | "uncompleted" | "archived" | "unarchived" | "shared" | "left" | undefined;
|
|
1652
1726
|
initiatorId?: string | undefined;
|
|
1653
1727
|
cursor?: string | undefined;
|
|
1728
|
+
taskId?: string | undefined;
|
|
1654
1729
|
};
|
|
1655
1730
|
};
|
|
1656
1731
|
}>;
|