@doist/todoist-ai 5.1.0 → 5.2.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.
- package/dist/index.d.ts +41 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/main.js +1 -1
- package/dist/{mcp-server-BHGnG8l8.js → mcp-server-D0ROki3I.js} +66 -59
- package/dist/tools/add-comments.d.ts +4 -4
- package/dist/tools/add-tasks.d.ts +7 -0
- package/dist/tools/add-tasks.d.ts.map +1 -1
- package/dist/tools/find-comments.d.ts +4 -4
- package/dist/tools/find-completed-tasks.d.ts +5 -2
- package/dist/tools/find-completed-tasks.d.ts.map +1 -1
- package/dist/tools/find-tasks-by-date.d.ts +5 -2
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/find-tasks.d.ts +5 -2
- package/dist/tools/find-tasks.d.ts.map +1 -1
- package/dist/tools/update-comments.d.ts +4 -4
- package/dist/tools/update-tasks.d.ts +7 -0
- package/dist/tools/update-tasks.d.ts.map +1 -1
- package/dist/utils/output-schemas.d.ts +7 -4
- package/dist/utils/output-schemas.d.ts.map +1 -1
- package/dist/utils/test-helpers.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ declare const tools: {
|
|
|
39
39
|
sectionId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
40
40
|
parentId: import('zod').ZodOptional<import('zod').ZodString>;
|
|
41
41
|
responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
|
|
42
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
42
43
|
}, "strip", import('zod').ZodTypeAny, {
|
|
43
44
|
content: string;
|
|
44
45
|
description?: string | undefined;
|
|
@@ -48,6 +49,7 @@ declare const tools: {
|
|
|
48
49
|
labels?: string[] | undefined;
|
|
49
50
|
duration?: string | undefined;
|
|
50
51
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
52
|
+
isUncompletable?: boolean | undefined;
|
|
51
53
|
deadlineDate?: string | undefined;
|
|
52
54
|
dueString?: string | undefined;
|
|
53
55
|
responsibleUser?: string | undefined;
|
|
@@ -60,6 +62,7 @@ declare const tools: {
|
|
|
60
62
|
labels?: string[] | undefined;
|
|
61
63
|
duration?: string | undefined;
|
|
62
64
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
65
|
+
isUncompletable?: boolean | undefined;
|
|
63
66
|
deadlineDate?: string | undefined;
|
|
64
67
|
dueString?: string | undefined;
|
|
65
68
|
responsibleUser?: string | undefined;
|
|
@@ -80,6 +83,7 @@ declare const tools: {
|
|
|
80
83
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
81
84
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
82
85
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
86
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
83
87
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
84
88
|
checked: import('zod').ZodBoolean;
|
|
85
89
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -98,6 +102,7 @@ declare const tools: {
|
|
|
98
102
|
labels?: string[] | undefined;
|
|
99
103
|
duration?: string | undefined;
|
|
100
104
|
completedAt?: string | undefined;
|
|
105
|
+
isUncompletable?: boolean | undefined;
|
|
101
106
|
dueDate?: string | undefined;
|
|
102
107
|
deadlineDate?: string | undefined;
|
|
103
108
|
}, {
|
|
@@ -115,6 +120,7 @@ declare const tools: {
|
|
|
115
120
|
labels?: string[] | undefined;
|
|
116
121
|
duration?: string | undefined;
|
|
117
122
|
completedAt?: string | undefined;
|
|
123
|
+
isUncompletable?: boolean | undefined;
|
|
118
124
|
dueDate?: string | undefined;
|
|
119
125
|
deadlineDate?: string | undefined;
|
|
120
126
|
}>, "many">;
|
|
@@ -131,6 +137,7 @@ declare const tools: {
|
|
|
131
137
|
labels?: string[] | undefined;
|
|
132
138
|
duration?: string | undefined;
|
|
133
139
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
140
|
+
isUncompletable?: boolean | undefined;
|
|
134
141
|
deadlineDate?: string | undefined;
|
|
135
142
|
dueString?: string | undefined;
|
|
136
143
|
responsibleUser?: string | undefined;
|
|
@@ -221,6 +228,7 @@ declare const tools: {
|
|
|
221
228
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
222
229
|
responsibleUser: import('zod').ZodOptional<import('zod').ZodString>;
|
|
223
230
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
231
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
224
232
|
}, "strip", import('zod').ZodTypeAny, {
|
|
225
233
|
id: string;
|
|
226
234
|
content?: string | undefined;
|
|
@@ -231,6 +239,7 @@ declare const tools: {
|
|
|
231
239
|
labels?: string[] | undefined;
|
|
232
240
|
duration?: string | undefined;
|
|
233
241
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
242
|
+
isUncompletable?: boolean | undefined;
|
|
234
243
|
deadlineDate?: string | undefined;
|
|
235
244
|
dueString?: string | undefined;
|
|
236
245
|
responsibleUser?: string | undefined;
|
|
@@ -245,6 +254,7 @@ declare const tools: {
|
|
|
245
254
|
labels?: string[] | undefined;
|
|
246
255
|
duration?: string | undefined;
|
|
247
256
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
257
|
+
isUncompletable?: boolean | undefined;
|
|
248
258
|
deadlineDate?: string | undefined;
|
|
249
259
|
dueString?: string | undefined;
|
|
250
260
|
responsibleUser?: string | undefined;
|
|
@@ -266,6 +276,7 @@ declare const tools: {
|
|
|
266
276
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
267
277
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
268
278
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
279
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
269
280
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
270
281
|
checked: import('zod').ZodBoolean;
|
|
271
282
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -284,6 +295,7 @@ declare const tools: {
|
|
|
284
295
|
labels?: string[] | undefined;
|
|
285
296
|
duration?: string | undefined;
|
|
286
297
|
completedAt?: string | undefined;
|
|
298
|
+
isUncompletable?: boolean | undefined;
|
|
287
299
|
dueDate?: string | undefined;
|
|
288
300
|
deadlineDate?: string | undefined;
|
|
289
301
|
}, {
|
|
@@ -301,6 +313,7 @@ declare const tools: {
|
|
|
301
313
|
labels?: string[] | undefined;
|
|
302
314
|
duration?: string | undefined;
|
|
303
315
|
completedAt?: string | undefined;
|
|
316
|
+
isUncompletable?: boolean | undefined;
|
|
304
317
|
dueDate?: string | undefined;
|
|
305
318
|
deadlineDate?: string | undefined;
|
|
306
319
|
}>, "many">;
|
|
@@ -329,6 +342,7 @@ declare const tools: {
|
|
|
329
342
|
labels?: string[] | undefined;
|
|
330
343
|
duration?: string | undefined;
|
|
331
344
|
priority?: "p1" | "p2" | "p3" | "p4" | undefined;
|
|
345
|
+
isUncompletable?: boolean | undefined;
|
|
332
346
|
deadlineDate?: string | undefined;
|
|
333
347
|
dueString?: string | undefined;
|
|
334
348
|
responsibleUser?: string | undefined;
|
|
@@ -394,6 +408,7 @@ declare const tools: {
|
|
|
394
408
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
395
409
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
396
410
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
411
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
397
412
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
398
413
|
checked: import('zod').ZodBoolean;
|
|
399
414
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -412,6 +427,7 @@ declare const tools: {
|
|
|
412
427
|
labels?: string[] | undefined;
|
|
413
428
|
duration?: string | undefined;
|
|
414
429
|
completedAt?: string | undefined;
|
|
430
|
+
isUncompletable?: boolean | undefined;
|
|
415
431
|
dueDate?: string | undefined;
|
|
416
432
|
deadlineDate?: string | undefined;
|
|
417
433
|
}, {
|
|
@@ -429,6 +445,7 @@ declare const tools: {
|
|
|
429
445
|
labels?: string[] | undefined;
|
|
430
446
|
duration?: string | undefined;
|
|
431
447
|
completedAt?: string | undefined;
|
|
448
|
+
isUncompletable?: boolean | undefined;
|
|
432
449
|
dueDate?: string | undefined;
|
|
433
450
|
deadlineDate?: string | undefined;
|
|
434
451
|
}>, "many">;
|
|
@@ -447,7 +464,7 @@ declare const tools: {
|
|
|
447
464
|
sectionId?: string | undefined;
|
|
448
465
|
labels?: string[] | undefined;
|
|
449
466
|
responsibleUser?: string | undefined;
|
|
450
|
-
labelsOperator?: "
|
|
467
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
451
468
|
searchText?: string | undefined;
|
|
452
469
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
453
470
|
textContent: string;
|
|
@@ -482,7 +499,7 @@ declare const tools: {
|
|
|
482
499
|
sectionId?: string | undefined;
|
|
483
500
|
labels?: string[] | undefined;
|
|
484
501
|
responsibleUser?: string | undefined;
|
|
485
|
-
labelsOperator?: "
|
|
502
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
486
503
|
searchText?: string | undefined;
|
|
487
504
|
};
|
|
488
505
|
};
|
|
@@ -517,6 +534,7 @@ declare const tools: {
|
|
|
517
534
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
518
535
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
519
536
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
537
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
520
538
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
521
539
|
checked: import('zod').ZodBoolean;
|
|
522
540
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -535,6 +553,7 @@ declare const tools: {
|
|
|
535
553
|
labels?: string[] | undefined;
|
|
536
554
|
duration?: string | undefined;
|
|
537
555
|
completedAt?: string | undefined;
|
|
556
|
+
isUncompletable?: boolean | undefined;
|
|
538
557
|
dueDate?: string | undefined;
|
|
539
558
|
deadlineDate?: string | undefined;
|
|
540
559
|
}, {
|
|
@@ -552,6 +571,7 @@ declare const tools: {
|
|
|
552
571
|
labels?: string[] | undefined;
|
|
553
572
|
duration?: string | undefined;
|
|
554
573
|
completedAt?: string | undefined;
|
|
574
|
+
isUncompletable?: boolean | undefined;
|
|
555
575
|
dueDate?: string | undefined;
|
|
556
576
|
deadlineDate?: string | undefined;
|
|
557
577
|
}>, "many">;
|
|
@@ -568,7 +588,7 @@ declare const tools: {
|
|
|
568
588
|
cursor?: string | undefined;
|
|
569
589
|
labels?: string[] | undefined;
|
|
570
590
|
responsibleUser?: string | undefined;
|
|
571
|
-
labelsOperator?: "
|
|
591
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
572
592
|
startDate?: string | undefined;
|
|
573
593
|
overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
|
|
574
594
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
@@ -602,7 +622,7 @@ declare const tools: {
|
|
|
602
622
|
cursor?: string | undefined;
|
|
603
623
|
labels?: string[] | undefined;
|
|
604
624
|
responsibleUser?: string | undefined;
|
|
605
|
-
labelsOperator?: "
|
|
625
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
606
626
|
startDate?: string | undefined;
|
|
607
627
|
overdueOption?: "overdue-only" | "include-overdue" | "exclude-overdue" | undefined;
|
|
608
628
|
};
|
|
@@ -641,6 +661,7 @@ declare const tools: {
|
|
|
641
661
|
labels: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
642
662
|
duration: import('zod').ZodOptional<import('zod').ZodString>;
|
|
643
663
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
664
|
+
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
644
665
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
645
666
|
checked: import('zod').ZodBoolean;
|
|
646
667
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -659,6 +680,7 @@ declare const tools: {
|
|
|
659
680
|
labels?: string[] | undefined;
|
|
660
681
|
duration?: string | undefined;
|
|
661
682
|
completedAt?: string | undefined;
|
|
683
|
+
isUncompletable?: boolean | undefined;
|
|
662
684
|
dueDate?: string | undefined;
|
|
663
685
|
deadlineDate?: string | undefined;
|
|
664
686
|
}, {
|
|
@@ -676,6 +698,7 @@ declare const tools: {
|
|
|
676
698
|
labels?: string[] | undefined;
|
|
677
699
|
duration?: string | undefined;
|
|
678
700
|
completedAt?: string | undefined;
|
|
701
|
+
isUncompletable?: boolean | undefined;
|
|
679
702
|
dueDate?: string | undefined;
|
|
680
703
|
deadlineDate?: string | undefined;
|
|
681
704
|
}>, "many">;
|
|
@@ -697,7 +720,7 @@ declare const tools: {
|
|
|
697
720
|
sectionId?: string | undefined;
|
|
698
721
|
labels?: string[] | undefined;
|
|
699
722
|
responsibleUser?: string | undefined;
|
|
700
|
-
labelsOperator?: "
|
|
723
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
701
724
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
702
725
|
textContent: string;
|
|
703
726
|
structuredContent: {
|
|
@@ -734,7 +757,7 @@ declare const tools: {
|
|
|
734
757
|
sectionId?: string | undefined;
|
|
735
758
|
labels?: string[] | undefined;
|
|
736
759
|
responsibleUser?: string | undefined;
|
|
737
|
-
labelsOperator?: "
|
|
760
|
+
labelsOperator?: "or" | "and" | undefined;
|
|
738
761
|
};
|
|
739
762
|
};
|
|
740
763
|
}>;
|
|
@@ -1249,7 +1272,6 @@ declare const tools: {
|
|
|
1249
1272
|
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1250
1273
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1251
1274
|
resourceType: string;
|
|
1252
|
-
image?: string | undefined;
|
|
1253
1275
|
title?: string | undefined;
|
|
1254
1276
|
fileName?: string | undefined;
|
|
1255
1277
|
fileSize?: number | undefined;
|
|
@@ -1257,12 +1279,12 @@ declare const tools: {
|
|
|
1257
1279
|
fileUrl?: string | undefined;
|
|
1258
1280
|
fileDuration?: number | undefined;
|
|
1259
1281
|
uploadState?: "pending" | "completed" | undefined;
|
|
1282
|
+
image?: string | undefined;
|
|
1260
1283
|
imageWidth?: number | undefined;
|
|
1261
1284
|
imageHeight?: number | undefined;
|
|
1262
1285
|
url?: string | undefined;
|
|
1263
1286
|
}, {
|
|
1264
1287
|
resourceType: string;
|
|
1265
|
-
image?: string | undefined;
|
|
1266
1288
|
title?: string | undefined;
|
|
1267
1289
|
fileName?: string | undefined;
|
|
1268
1290
|
fileSize?: number | undefined;
|
|
@@ -1270,6 +1292,7 @@ declare const tools: {
|
|
|
1270
1292
|
fileUrl?: string | undefined;
|
|
1271
1293
|
fileDuration?: number | undefined;
|
|
1272
1294
|
uploadState?: "pending" | "completed" | undefined;
|
|
1295
|
+
image?: string | undefined;
|
|
1273
1296
|
imageWidth?: number | undefined;
|
|
1274
1297
|
imageHeight?: number | undefined;
|
|
1275
1298
|
url?: string | undefined;
|
|
@@ -1281,7 +1304,6 @@ declare const tools: {
|
|
|
1281
1304
|
projectId?: string | undefined;
|
|
1282
1305
|
fileAttachment?: {
|
|
1283
1306
|
resourceType: string;
|
|
1284
|
-
image?: string | undefined;
|
|
1285
1307
|
title?: string | undefined;
|
|
1286
1308
|
fileName?: string | undefined;
|
|
1287
1309
|
fileSize?: number | undefined;
|
|
@@ -1289,6 +1311,7 @@ declare const tools: {
|
|
|
1289
1311
|
fileUrl?: string | undefined;
|
|
1290
1312
|
fileDuration?: number | undefined;
|
|
1291
1313
|
uploadState?: "pending" | "completed" | undefined;
|
|
1314
|
+
image?: string | undefined;
|
|
1292
1315
|
imageWidth?: number | undefined;
|
|
1293
1316
|
imageHeight?: number | undefined;
|
|
1294
1317
|
url?: string | undefined;
|
|
@@ -1302,7 +1325,6 @@ declare const tools: {
|
|
|
1302
1325
|
projectId?: string | undefined;
|
|
1303
1326
|
fileAttachment?: {
|
|
1304
1327
|
resourceType: string;
|
|
1305
|
-
image?: string | undefined;
|
|
1306
1328
|
title?: string | undefined;
|
|
1307
1329
|
fileName?: string | undefined;
|
|
1308
1330
|
fileSize?: number | undefined;
|
|
@@ -1310,6 +1332,7 @@ declare const tools: {
|
|
|
1310
1332
|
fileUrl?: string | undefined;
|
|
1311
1333
|
fileDuration?: number | undefined;
|
|
1312
1334
|
uploadState?: "pending" | "completed" | undefined;
|
|
1335
|
+
image?: string | undefined;
|
|
1313
1336
|
imageWidth?: number | undefined;
|
|
1314
1337
|
imageHeight?: number | undefined;
|
|
1315
1338
|
url?: string | undefined;
|
|
@@ -1395,7 +1418,6 @@ declare const tools: {
|
|
|
1395
1418
|
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1396
1419
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1397
1420
|
resourceType: string;
|
|
1398
|
-
image?: string | undefined;
|
|
1399
1421
|
title?: string | undefined;
|
|
1400
1422
|
fileName?: string | undefined;
|
|
1401
1423
|
fileSize?: number | undefined;
|
|
@@ -1403,12 +1425,12 @@ declare const tools: {
|
|
|
1403
1425
|
fileUrl?: string | undefined;
|
|
1404
1426
|
fileDuration?: number | undefined;
|
|
1405
1427
|
uploadState?: "pending" | "completed" | undefined;
|
|
1428
|
+
image?: string | undefined;
|
|
1406
1429
|
imageWidth?: number | undefined;
|
|
1407
1430
|
imageHeight?: number | undefined;
|
|
1408
1431
|
url?: string | undefined;
|
|
1409
1432
|
}, {
|
|
1410
1433
|
resourceType: string;
|
|
1411
|
-
image?: string | undefined;
|
|
1412
1434
|
title?: string | undefined;
|
|
1413
1435
|
fileName?: string | undefined;
|
|
1414
1436
|
fileSize?: number | undefined;
|
|
@@ -1416,6 +1438,7 @@ declare const tools: {
|
|
|
1416
1438
|
fileUrl?: string | undefined;
|
|
1417
1439
|
fileDuration?: number | undefined;
|
|
1418
1440
|
uploadState?: "pending" | "completed" | undefined;
|
|
1441
|
+
image?: string | undefined;
|
|
1419
1442
|
imageWidth?: number | undefined;
|
|
1420
1443
|
imageHeight?: number | undefined;
|
|
1421
1444
|
url?: string | undefined;
|
|
@@ -1427,7 +1450,6 @@ declare const tools: {
|
|
|
1427
1450
|
projectId?: string | undefined;
|
|
1428
1451
|
fileAttachment?: {
|
|
1429
1452
|
resourceType: string;
|
|
1430
|
-
image?: string | undefined;
|
|
1431
1453
|
title?: string | undefined;
|
|
1432
1454
|
fileName?: string | undefined;
|
|
1433
1455
|
fileSize?: number | undefined;
|
|
@@ -1435,6 +1457,7 @@ declare const tools: {
|
|
|
1435
1457
|
fileUrl?: string | undefined;
|
|
1436
1458
|
fileDuration?: number | undefined;
|
|
1437
1459
|
uploadState?: "pending" | "completed" | undefined;
|
|
1460
|
+
image?: string | undefined;
|
|
1438
1461
|
imageWidth?: number | undefined;
|
|
1439
1462
|
imageHeight?: number | undefined;
|
|
1440
1463
|
url?: string | undefined;
|
|
@@ -1448,7 +1471,6 @@ declare const tools: {
|
|
|
1448
1471
|
projectId?: string | undefined;
|
|
1449
1472
|
fileAttachment?: {
|
|
1450
1473
|
resourceType: string;
|
|
1451
|
-
image?: string | undefined;
|
|
1452
1474
|
title?: string | undefined;
|
|
1453
1475
|
fileName?: string | undefined;
|
|
1454
1476
|
fileSize?: number | undefined;
|
|
@@ -1456,6 +1478,7 @@ declare const tools: {
|
|
|
1456
1478
|
fileUrl?: string | undefined;
|
|
1457
1479
|
fileDuration?: number | undefined;
|
|
1458
1480
|
uploadState?: "pending" | "completed" | undefined;
|
|
1481
|
+
image?: string | undefined;
|
|
1459
1482
|
imageWidth?: number | undefined;
|
|
1460
1483
|
imageHeight?: number | undefined;
|
|
1461
1484
|
url?: string | undefined;
|
|
@@ -1545,7 +1568,6 @@ declare const tools: {
|
|
|
1545
1568
|
imageHeight: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
1546
1569
|
}, "strip", import('zod').ZodTypeAny, {
|
|
1547
1570
|
resourceType: string;
|
|
1548
|
-
image?: string | undefined;
|
|
1549
1571
|
title?: string | undefined;
|
|
1550
1572
|
fileName?: string | undefined;
|
|
1551
1573
|
fileSize?: number | undefined;
|
|
@@ -1553,12 +1575,12 @@ declare const tools: {
|
|
|
1553
1575
|
fileUrl?: string | undefined;
|
|
1554
1576
|
fileDuration?: number | undefined;
|
|
1555
1577
|
uploadState?: "pending" | "completed" | undefined;
|
|
1578
|
+
image?: string | undefined;
|
|
1556
1579
|
imageWidth?: number | undefined;
|
|
1557
1580
|
imageHeight?: number | undefined;
|
|
1558
1581
|
url?: string | undefined;
|
|
1559
1582
|
}, {
|
|
1560
1583
|
resourceType: string;
|
|
1561
|
-
image?: string | undefined;
|
|
1562
1584
|
title?: string | undefined;
|
|
1563
1585
|
fileName?: string | undefined;
|
|
1564
1586
|
fileSize?: number | undefined;
|
|
@@ -1566,6 +1588,7 @@ declare const tools: {
|
|
|
1566
1588
|
fileUrl?: string | undefined;
|
|
1567
1589
|
fileDuration?: number | undefined;
|
|
1568
1590
|
uploadState?: "pending" | "completed" | undefined;
|
|
1591
|
+
image?: string | undefined;
|
|
1569
1592
|
imageWidth?: number | undefined;
|
|
1570
1593
|
imageHeight?: number | undefined;
|
|
1571
1594
|
url?: string | undefined;
|
|
@@ -1577,7 +1600,6 @@ declare const tools: {
|
|
|
1577
1600
|
projectId?: string | undefined;
|
|
1578
1601
|
fileAttachment?: {
|
|
1579
1602
|
resourceType: string;
|
|
1580
|
-
image?: string | undefined;
|
|
1581
1603
|
title?: string | undefined;
|
|
1582
1604
|
fileName?: string | undefined;
|
|
1583
1605
|
fileSize?: number | undefined;
|
|
@@ -1585,6 +1607,7 @@ declare const tools: {
|
|
|
1585
1607
|
fileUrl?: string | undefined;
|
|
1586
1608
|
fileDuration?: number | undefined;
|
|
1587
1609
|
uploadState?: "pending" | "completed" | undefined;
|
|
1610
|
+
image?: string | undefined;
|
|
1588
1611
|
imageWidth?: number | undefined;
|
|
1589
1612
|
imageHeight?: number | undefined;
|
|
1590
1613
|
url?: string | undefined;
|
|
@@ -1598,7 +1621,6 @@ declare const tools: {
|
|
|
1598
1621
|
projectId?: string | undefined;
|
|
1599
1622
|
fileAttachment?: {
|
|
1600
1623
|
resourceType: string;
|
|
1601
|
-
image?: string | undefined;
|
|
1602
1624
|
title?: string | undefined;
|
|
1603
1625
|
fileName?: string | undefined;
|
|
1604
1626
|
fileSize?: number | undefined;
|
|
@@ -1606,6 +1628,7 @@ declare const tools: {
|
|
|
1606
1628
|
fileUrl?: string | undefined;
|
|
1607
1629
|
fileDuration?: number | undefined;
|
|
1608
1630
|
uploadState?: "pending" | "completed" | undefined;
|
|
1631
|
+
image?: string | undefined;
|
|
1609
1632
|
imageWidth?: number | undefined;
|
|
1610
1633
|
imageHeight?: number | undefined;
|
|
1611
1634
|
url?: string | undefined;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAA;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAEpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAA;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAA;AACjE,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAE/C,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAE9C,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAErD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAA;AAExC,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAA;AAEpE,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAA;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAA;AACjE,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAA;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAE/C,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCV,CAAA;AAED,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,CAAA;AAE9B,OAAO,EAEH,QAAQ,EACR,aAAa,EACb,WAAW,EACX,SAAS,EACT,eAAe,EACf,kBAAkB,EAElB,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,WAAW,EACX,cAAc,EACd,YAAY,EAEZ,YAAY,EAEZ,WAAW,EACX,YAAY,EACZ,QAAQ,EAER,wBAAwB,EACxB,iBAAiB,EAEjB,MAAM,EACN,KAAK,GACR,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { f as s, s as a, m as e, a as t, u as o, d, b as n, c as i, e as r, h as c, i as m, j as f, k as p, l as k, n as l, o as j, p as u, q as T, r as g, t as v, v as C, w as P, x as S } from "./mcp-server-
|
|
2
|
-
import { g as y } from "./mcp-server-
|
|
1
|
+
import { f as s, s as a, m as e, a as t, u as o, d, b as n, c as i, e as r, h as c, i as m, j as f, k as p, l as k, n as l, o as j, p as u, q as T, r as g, t as v, v as C, w as P, x as S } from "./mcp-server-D0ROki3I.js";
|
|
2
|
+
import { g as y } from "./mcp-server-D0ROki3I.js";
|
|
3
3
|
const h = {
|
|
4
4
|
// Task management tools
|
|
5
5
|
addTasks: S,
|
package/dist/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { StdioServerTransport as s } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
3
3
|
import c from "dotenv";
|
|
4
|
-
import { g as i } from "./mcp-server-
|
|
4
|
+
import { g as i } from "./mcp-server-D0ROki3I.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const o = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|