@doist/todoist-ai 7.11.0 → 7.11.2
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/{LICENSE.txt → LICENSE} +1 -1
- package/README.md +20 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.js +2 -2
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/mcp-helpers.d.ts.map +1 -1
- package/dist/{mcp-server-BTYWubVl.js → mcp-server-BxHvudlC.js} +1369 -1088
- package/dist/tool-execution-error.d.ts +7 -0
- package/dist/tool-execution-error.d.ts.map +1 -0
- package/dist/tools/add-projects.d.ts +2 -2
- package/dist/tools/add-tasks.d.ts.map +1 -1
- package/dist/tools/fetch-object.d.ts +2 -2
- package/dist/tools/find-completed-tasks.d.ts +5 -5
- package/dist/tools/find-completed-tasks.d.ts.map +1 -1
- package/dist/tools/find-projects.d.ts +2 -2
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/project-management.d.ts +2 -2
- package/dist/tools/project-move.d.ts +2 -2
- package/dist/tools/update-projects.d.ts +2 -2
- package/dist/tools/update-tasks.d.ts.map +1 -1
- package/dist/utils/colors.d.ts +22 -0
- package/dist/utils/colors.d.ts.map +1 -1
- package/dist/utils/date.d.ts +18 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/output-schemas.d.ts +2 -2
- package/dist/utils/priorities.d.ts +1 -0
- package/dist/utils/priorities.d.ts.map +1 -1
- package/package.json +7 -5
- package/scripts/run-tool.ts +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tool-execution-error.d.ts","sourceRoot":"","sources":["../src/tool-execution-error.ts"],"names":[],"mappings":"AAwbA;;;;GAIG;AACH,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,CAW/D"}
|
|
@@ -40,7 +40,7 @@ declare const addProjects: {
|
|
|
40
40
|
projects: z.ZodArray<z.ZodObject<{
|
|
41
41
|
id: z.ZodString;
|
|
42
42
|
name: z.ZodString;
|
|
43
|
-
color: z.ZodEnum<{
|
|
43
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
44
44
|
berry_red: "berry_red";
|
|
45
45
|
red: "red";
|
|
46
46
|
orange: "orange";
|
|
@@ -61,7 +61,7 @@ declare const addProjects: {
|
|
|
61
61
|
charcoal: "charcoal";
|
|
62
62
|
gray: "gray";
|
|
63
63
|
taupe: "taupe";
|
|
64
|
-
}
|
|
64
|
+
}>>>;
|
|
65
65
|
isFavorite: z.ZodBoolean;
|
|
66
66
|
isShared: z.ZodBoolean;
|
|
67
67
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/add-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAqB,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAClF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"add-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/add-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAqB,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAClF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA6EvB,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BiD,CAAA;AAqJ/D,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -45,7 +45,7 @@ declare const fetchObject: {
|
|
|
45
45
|
}, z.core.$strip>, z.ZodObject<{
|
|
46
46
|
id: z.ZodString;
|
|
47
47
|
name: z.ZodString;
|
|
48
|
-
color: z.ZodEnum<{
|
|
48
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
49
49
|
berry_red: "berry_red";
|
|
50
50
|
red: "red";
|
|
51
51
|
orange: "orange";
|
|
@@ -66,7 +66,7 @@ declare const fetchObject: {
|
|
|
66
66
|
charcoal: "charcoal";
|
|
67
67
|
gray: "gray";
|
|
68
68
|
taupe: "taupe";
|
|
69
|
-
}
|
|
69
|
+
}>>>;
|
|
70
70
|
isFavorite: z.ZodBoolean;
|
|
71
71
|
isShared: z.ZodBoolean;
|
|
72
72
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -12,8 +12,8 @@ declare const findCompletedTasks: {
|
|
|
12
12
|
due: "due";
|
|
13
13
|
completion: "completion";
|
|
14
14
|
}>>;
|
|
15
|
-
since: z.ZodString
|
|
16
|
-
until: z.ZodString
|
|
15
|
+
since: z.ZodOptional<z.ZodString>;
|
|
16
|
+
until: z.ZodOptional<z.ZodString>;
|
|
17
17
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
18
18
|
projectId: z.ZodOptional<z.ZodString>;
|
|
19
19
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -59,11 +59,11 @@ declare const findCompletedTasks: {
|
|
|
59
59
|
};
|
|
60
60
|
execute(args: {
|
|
61
61
|
getBy: "due" | "completion";
|
|
62
|
-
since: string;
|
|
63
|
-
until: string;
|
|
64
62
|
limit: number;
|
|
65
63
|
labels?: string[] | undefined;
|
|
66
64
|
labelsOperator?: "and" | "or" | undefined;
|
|
65
|
+
since?: string | undefined;
|
|
66
|
+
until?: string | undefined;
|
|
67
67
|
workspaceId?: string | undefined;
|
|
68
68
|
projectId?: string | undefined;
|
|
69
69
|
sectionId?: string | undefined;
|
|
@@ -95,9 +95,9 @@ declare const findCompletedTasks: {
|
|
|
95
95
|
totalCount: number;
|
|
96
96
|
hasMore: boolean;
|
|
97
97
|
appliedFilters: {
|
|
98
|
-
getBy: "due" | "completion";
|
|
99
98
|
since: string;
|
|
100
99
|
until: string;
|
|
100
|
+
getBy: "due" | "completion";
|
|
101
101
|
limit: number;
|
|
102
102
|
labels?: string[] | undefined;
|
|
103
103
|
labelsOperator?: "and" | "or" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-completed-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/find-completed-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"find-completed-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/find-completed-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAgHvB,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkGuC,CAAA;AAkE/D,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
|
|
@@ -11,7 +11,7 @@ declare const findProjects: {
|
|
|
11
11
|
projects: z.ZodArray<z.ZodObject<{
|
|
12
12
|
id: z.ZodString;
|
|
13
13
|
name: z.ZodString;
|
|
14
|
-
color: z.ZodEnum<{
|
|
14
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
15
15
|
berry_red: "berry_red";
|
|
16
16
|
red: "red";
|
|
17
17
|
orange: "orange";
|
|
@@ -32,7 +32,7 @@ declare const findProjects: {
|
|
|
32
32
|
charcoal: "charcoal";
|
|
33
33
|
gray: "gray";
|
|
34
34
|
taupe: "taupe";
|
|
35
|
-
}
|
|
35
|
+
}>>>;
|
|
36
36
|
isFavorite: z.ZodBoolean;
|
|
37
37
|
isShared: z.ZodBoolean;
|
|
38
38
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-tasks-by-date.d.ts","sourceRoot":"","sources":["../../src/tools/find-tasks-by-date.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"find-tasks-by-date.d.ts","sourceRoot":"","sources":["../../src/tools/find-tasks-by-date.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAiFvB,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqF0C,CAAA;AAyF/D,OAAO,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -13,7 +13,7 @@ declare const projectManagement: {
|
|
|
13
13
|
project: z.ZodObject<{
|
|
14
14
|
id: z.ZodString;
|
|
15
15
|
name: z.ZodString;
|
|
16
|
-
color: z.ZodEnum<{
|
|
16
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
17
17
|
berry_red: "berry_red";
|
|
18
18
|
red: "red";
|
|
19
19
|
orange: "orange";
|
|
@@ -34,7 +34,7 @@ declare const projectManagement: {
|
|
|
34
34
|
charcoal: "charcoal";
|
|
35
35
|
gray: "gray";
|
|
36
36
|
taupe: "taupe";
|
|
37
|
-
}
|
|
37
|
+
}>>>;
|
|
38
38
|
isFavorite: z.ZodBoolean;
|
|
39
39
|
isShared: z.ZodBoolean;
|
|
40
40
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -20,7 +20,7 @@ declare const projectMove: {
|
|
|
20
20
|
project: z.ZodObject<{
|
|
21
21
|
id: z.ZodString;
|
|
22
22
|
name: z.ZodString;
|
|
23
|
-
color: z.ZodEnum<{
|
|
23
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
24
24
|
berry_red: "berry_red";
|
|
25
25
|
red: "red";
|
|
26
26
|
orange: "orange";
|
|
@@ -41,7 +41,7 @@ declare const projectMove: {
|
|
|
41
41
|
charcoal: "charcoal";
|
|
42
42
|
gray: "gray";
|
|
43
43
|
taupe: "taupe";
|
|
44
|
-
}
|
|
44
|
+
}>>>;
|
|
45
45
|
isFavorite: z.ZodBoolean;
|
|
46
46
|
isShared: z.ZodBoolean;
|
|
47
47
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -40,7 +40,7 @@ declare const updateProjects: {
|
|
|
40
40
|
projects: z.ZodArray<z.ZodObject<{
|
|
41
41
|
id: z.ZodString;
|
|
42
42
|
name: z.ZodString;
|
|
43
|
-
color: z.ZodEnum<{
|
|
43
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
44
44
|
berry_red: "berry_red";
|
|
45
45
|
red: "red";
|
|
46
46
|
orange: "orange";
|
|
@@ -61,7 +61,7 @@ declare const updateProjects: {
|
|
|
61
61
|
charcoal: "charcoal";
|
|
62
62
|
gray: "gray";
|
|
63
63
|
taupe: "taupe";
|
|
64
|
-
}
|
|
64
|
+
}>>>;
|
|
65
65
|
isFavorite: z.ZodBoolean;
|
|
66
66
|
isShared: z.ZodBoolean;
|
|
67
67
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/update-tasks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"update-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/update-tasks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA0FvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsI8C,CAAA;AA4B/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
package/dist/utils/colors.d.ts
CHANGED
|
@@ -43,4 +43,26 @@ export declare const ColorKeySchema: z.ZodEnum<{
|
|
|
43
43
|
gray: "gray";
|
|
44
44
|
taupe: "taupe";
|
|
45
45
|
}>;
|
|
46
|
+
export declare const ColorOutputSchema: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
47
|
+
berry_red: "berry_red";
|
|
48
|
+
red: "red";
|
|
49
|
+
orange: "orange";
|
|
50
|
+
yellow: "yellow";
|
|
51
|
+
olive_green: "olive_green";
|
|
52
|
+
lime_green: "lime_green";
|
|
53
|
+
green: "green";
|
|
54
|
+
mint_green: "mint_green";
|
|
55
|
+
turquoise: "turquoise";
|
|
56
|
+
sky_blue: "sky_blue";
|
|
57
|
+
light_blue: "light_blue";
|
|
58
|
+
blue: "blue";
|
|
59
|
+
grape: "grape";
|
|
60
|
+
violet: "violet";
|
|
61
|
+
lavender: "lavender";
|
|
62
|
+
magenta: "magenta";
|
|
63
|
+
salmon: "salmon";
|
|
64
|
+
charcoal: "charcoal";
|
|
65
|
+
gray: "gray";
|
|
66
|
+
taupe: "taupe";
|
|
67
|
+
}>>>;
|
|
46
68
|
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/utils/colors.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAmBvB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;IAEO,CAAA;AAG/B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAA6D,CAAA"}
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../src/utils/colors.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAmBvB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;IAEO,CAAA;AAG/B,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAA6D,CAAA;AASxF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;IAIe,CAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Format a Date using UTC calendar components (YYYY-MM-DD).
|
|
3
|
+
*/
|
|
4
|
+
export declare function formatUtcDate(date: Date): string;
|
|
5
|
+
/**
|
|
6
|
+
* Parse a GMT offset string (+HH:MM or -HH:MM) to total minutes.
|
|
7
|
+
* Falls back to 0 for malformed offsets.
|
|
8
|
+
*/
|
|
9
|
+
export declare function parseGmtOffsetToMinutes(gmtOffset: string): number;
|
|
10
|
+
/**
|
|
11
|
+
* Return the date string (YYYY-MM-DD) in a provided GMT offset.
|
|
12
|
+
*/
|
|
13
|
+
export declare function getDateInOffset(date: Date, offsetMinutes: number): string;
|
|
14
|
+
/**
|
|
15
|
+
* Shift a YYYY-MM-DD date string by the specified number of days in UTC.
|
|
16
|
+
*/
|
|
17
|
+
export declare function shiftDateStringByDays(dateString: string, days: number): string;
|
|
18
|
+
//# sourceMappingURL=date.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../src/utils/date.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM,CAKhD;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CASjE;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,GAAG,MAAM,CAGzE;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAa9E"}
|
|
@@ -32,7 +32,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
32
32
|
declare const ProjectSchema: z.ZodObject<{
|
|
33
33
|
id: z.ZodString;
|
|
34
34
|
name: z.ZodString;
|
|
35
|
-
color: z.ZodEnum<{
|
|
35
|
+
color: z.ZodCatch<z.ZodOptional<z.ZodEnum<{
|
|
36
36
|
berry_red: "berry_red";
|
|
37
37
|
red: "red";
|
|
38
38
|
orange: "orange";
|
|
@@ -53,7 +53,7 @@ declare const ProjectSchema: z.ZodObject<{
|
|
|
53
53
|
charcoal: "charcoal";
|
|
54
54
|
gray: "gray";
|
|
55
55
|
taupe: "taupe";
|
|
56
|
-
}
|
|
56
|
+
}>>>;
|
|
57
57
|
isFavorite: z.ZodBoolean;
|
|
58
58
|
isShared: z.ZodBoolean;
|
|
59
59
|
parentId: z.ZodOptional<z.ZodString>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
declare const PRIORITY_VALUES: readonly ["p1", "p2", "p3", "p4"];
|
|
3
3
|
export type Priority = (typeof PRIORITY_VALUES)[number];
|
|
4
|
+
export declare const PRIORITY_INPUT_DESCRIPTION = "Task priority as a string: \"p1\" (highest), \"p2\" (high), \"p3\" (medium), or \"p4\" (lowest/default). Integers like 1, 2, 3, or 4 are not accepted.";
|
|
4
5
|
export declare const PrioritySchema: z.ZodEnum<{
|
|
5
6
|
p1: "p1";
|
|
6
7
|
p2: "p2";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"priorities.d.ts","sourceRoot":"","sources":["../../src/utils/priorities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,QAAA,MAAM,eAAe,mCAAoC,CAAA;AACzD,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,eAAO,MAAM,cAAc;;;;;
|
|
1
|
+
{"version":3,"file":"priorities.d.ts","sourceRoot":"","sources":["../../src/utils/priorities.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,QAAA,MAAM,eAAe,mCAAoC,CAAA;AACzD,MAAM,MAAM,QAAQ,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAA;AAEvD,eAAO,MAAM,0BAA0B,2JAC6G,CAAA;AAEpJ,eAAO,MAAM,cAAc;;;;;EAA+D,CAAA;AAE1F,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,CAIlE;AAED,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,GAAG,SAAS,CAI9E"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doist/todoist-ai",
|
|
3
|
-
"version": "7.11.
|
|
3
|
+
"version": "7.11.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"!dist/dev",
|
|
15
15
|
"scripts",
|
|
16
16
|
"package.json",
|
|
17
|
-
"LICENSE
|
|
17
|
+
"LICENSE",
|
|
18
18
|
"README.md"
|
|
19
19
|
],
|
|
20
20
|
"license": "MIT",
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"start:http": "npm run build && node dist/main-http.js",
|
|
41
41
|
"dev:widget": "vite build --watch --minify false",
|
|
42
42
|
"setup": "cp .env.example .env && npm install && npm run build",
|
|
43
|
+
"tool": "tsx scripts/run-tool.ts",
|
|
44
|
+
"tool:list": "tsx scripts/run-tool.ts --list",
|
|
43
45
|
"test:executable": "npm run build && node scripts/test-executable.cjs",
|
|
44
46
|
"type-check": "npx tsc --noEmit",
|
|
45
47
|
"biome:sort-imports": "biome check --formatter-enabled=false --linter-enabled=false --organize-imports-enabled=true --write .",
|
|
@@ -64,7 +66,7 @@
|
|
|
64
66
|
"@modelcontextprotocol/sdk": "^1.25.0"
|
|
65
67
|
},
|
|
66
68
|
"devDependencies": {
|
|
67
|
-
"@biomejs/biome": "2.4.
|
|
69
|
+
"@biomejs/biome": "2.4.4",
|
|
68
70
|
"@types/dompurify": "3.2.0",
|
|
69
71
|
"@types/express": "5.0.6",
|
|
70
72
|
"@types/morgan": "1.9.10",
|
|
@@ -75,7 +77,7 @@
|
|
|
75
77
|
"husky": "9.1.7",
|
|
76
78
|
"lint-staged": "16.2.7",
|
|
77
79
|
"morgan": "1.10.1",
|
|
78
|
-
"nodemon": "3.1.
|
|
80
|
+
"nodemon": "3.1.14",
|
|
79
81
|
"react": "19.2.4",
|
|
80
82
|
"react-dom": "19.2.4",
|
|
81
83
|
"rimraf": "6.1.3",
|
|
@@ -84,7 +86,7 @@
|
|
|
84
86
|
"typescript": "5.9.3",
|
|
85
87
|
"vite": "7.3.1",
|
|
86
88
|
"vite-plugin-dts": "4.5.4",
|
|
87
|
-
"vitest": "
|
|
89
|
+
"vitest": "4.0.18"
|
|
88
90
|
},
|
|
89
91
|
"lint-staged": {
|
|
90
92
|
"*": [
|
package/scripts/run-tool.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*
|
|
10
10
|
* Examples:
|
|
11
11
|
* npx tsx scripts/run-tool.ts add-tasks '{"tasks":[{"content":"Test task","order":1}]}'
|
|
12
|
-
* npx tsx scripts/run-tool.ts find-tasks '{"
|
|
12
|
+
* npx tsx scripts/run-tool.ts find-tasks '{"searchText":"meeting"}'
|
|
13
13
|
* npx tsx scripts/run-tool.ts get-overview '{}'
|
|
14
14
|
*
|
|
15
15
|
* Requires TODOIST_API_KEY in .env file (and optionally TODOIST_BASE_URL).
|