@doist/todoist-ai 7.17.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -10
- package/dist/index.js +2 -2
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/{mcp-server-DqAX_RqB.js → mcp-server-BhctkyAa.js} +25 -25
- package/dist/tool-helpers.d.ts +2 -1
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tools/find-labels.d.ts +4 -4
- package/dist/tools/find-projects.d.ts +3 -3
- package/dist/tools/find-sections.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -951,7 +951,7 @@ declare const tools: {
|
|
|
951
951
|
name: "find-projects";
|
|
952
952
|
description: string;
|
|
953
953
|
parameters: {
|
|
954
|
-
|
|
954
|
+
searchText: import('zod').ZodOptional<import('zod').ZodString>;
|
|
955
955
|
limit: import('zod').ZodDefault<import('zod').ZodNumber>;
|
|
956
956
|
cursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
957
957
|
};
|
|
@@ -1002,7 +1002,7 @@ declare const tools: {
|
|
|
1002
1002
|
};
|
|
1003
1003
|
execute(args: {
|
|
1004
1004
|
limit: number;
|
|
1005
|
-
|
|
1005
|
+
searchText?: string | undefined;
|
|
1006
1006
|
cursor?: string | undefined;
|
|
1007
1007
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1008
1008
|
textContent: string;
|
|
@@ -1025,7 +1025,7 @@ declare const tools: {
|
|
|
1025
1025
|
hasMore: boolean;
|
|
1026
1026
|
appliedFilters: {
|
|
1027
1027
|
limit: number;
|
|
1028
|
-
|
|
1028
|
+
searchText?: string | undefined;
|
|
1029
1029
|
cursor?: string | undefined;
|
|
1030
1030
|
};
|
|
1031
1031
|
};
|
|
@@ -1132,7 +1132,7 @@ declare const tools: {
|
|
|
1132
1132
|
description: string;
|
|
1133
1133
|
parameters: {
|
|
1134
1134
|
projectId: import('zod').ZodString;
|
|
1135
|
-
|
|
1135
|
+
searchText: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1136
1136
|
};
|
|
1137
1137
|
outputSchema: {
|
|
1138
1138
|
sections: import('zod').ZodArray<import('zod').ZodObject<{
|
|
@@ -1149,7 +1149,7 @@ declare const tools: {
|
|
|
1149
1149
|
};
|
|
1150
1150
|
execute(args: {
|
|
1151
1151
|
projectId: string;
|
|
1152
|
-
|
|
1152
|
+
searchText?: string | undefined;
|
|
1153
1153
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1154
1154
|
textContent: string;
|
|
1155
1155
|
structuredContent: {
|
|
@@ -1160,7 +1160,7 @@ declare const tools: {
|
|
|
1160
1160
|
totalCount: number;
|
|
1161
1161
|
appliedFilters: {
|
|
1162
1162
|
projectId: string;
|
|
1163
|
-
|
|
1163
|
+
searchText?: string | undefined;
|
|
1164
1164
|
};
|
|
1165
1165
|
};
|
|
1166
1166
|
}>;
|
|
@@ -1508,7 +1508,7 @@ declare const tools: {
|
|
|
1508
1508
|
name: "find-labels";
|
|
1509
1509
|
description: string;
|
|
1510
1510
|
parameters: {
|
|
1511
|
-
|
|
1511
|
+
searchText: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1512
1512
|
limit: import('zod').ZodDefault<import('zod').ZodNumber>;
|
|
1513
1513
|
cursor: import('zod').ZodOptional<import('zod').ZodString>;
|
|
1514
1514
|
};
|
|
@@ -1554,7 +1554,7 @@ declare const tools: {
|
|
|
1554
1554
|
};
|
|
1555
1555
|
execute(args: {
|
|
1556
1556
|
limit: number;
|
|
1557
|
-
|
|
1557
|
+
searchText?: string | undefined;
|
|
1558
1558
|
cursor?: string | undefined;
|
|
1559
1559
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
1560
1560
|
textContent: string;
|
|
@@ -1571,13 +1571,13 @@ declare const tools: {
|
|
|
1571
1571
|
hasMore: boolean;
|
|
1572
1572
|
sharedLabels: string[];
|
|
1573
1573
|
appliedFilters: {
|
|
1574
|
-
|
|
1574
|
+
searchText: string;
|
|
1575
1575
|
limit?: undefined;
|
|
1576
1576
|
cursor?: undefined;
|
|
1577
1577
|
} | {
|
|
1578
1578
|
limit: number;
|
|
1579
1579
|
cursor: string | undefined;
|
|
1580
|
-
|
|
1580
|
+
searchText?: undefined;
|
|
1581
1581
|
};
|
|
1582
1582
|
};
|
|
1583
1583
|
}>;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { f as s, s as a, l as e, m as t, a as d, u as o, d as n, b as i, c as r, e as c, h as m, i as f, j as p, k as l, n as k, o as T, p as u, q as j, r as C, t as b, v as g, w as v, x as A, y as S, z as h, A as P, B as x, C as y } from "./mcp-server-
|
|
2
|
-
import { F as L, g as M } from "./mcp-server-
|
|
1
|
+
import { f as s, s as a, l as e, m as t, a as d, u as o, d as n, b as i, c as r, e as c, h as m, i as f, j as p, k as l, n as k, o as T, p as u, q as j, r as C, t as b, v as g, w as v, x as A, y as S, z as h, A as P, B as x, C as y } from "./mcp-server-BhctkyAa.js";
|
|
2
|
+
import { F as L, g as M } from "./mcp-server-BhctkyAa.js";
|
|
3
3
|
const w = {
|
|
4
4
|
// Task management tools
|
|
5
5
|
addTasks: y,
|
package/dist/main-http.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { StreamableHTTPServerTransport as i } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
|
|
3
3
|
import l from "dotenv";
|
|
4
4
|
import a from "express";
|
|
5
|
-
import { g as p } from "./mcp-server-
|
|
5
|
+
import { g as p } from "./mcp-server-BhctkyAa.js";
|
|
6
6
|
l.config({ quiet: !0 });
|
|
7
7
|
const s = Number.parseInt(process.env.PORT || "3000", 10);
|
|
8
8
|
function d() {
|
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-BhctkyAa.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|