@doist/todoist-ai 8.7.1 → 8.8.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 +3 -3
- package/dist/index.js +2 -2
- package/dist/main-http.js +1 -1
- package/dist/main.js +1 -1
- package/dist/{mcp-server-CWvR4g_x.js → mcp-server-C8iKL_qZ.js} +767 -757
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/tool-helpers.d.ts +2 -0
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tools/add-reminders.d.ts +7 -0
- package/dist/tools/add-reminders.d.ts.map +1 -1
- package/dist/tools/find-reminders.d.ts +3 -0
- package/dist/tools/find-reminders.d.ts.map +1 -1
- package/dist/tools/list-workspaces.d.ts +5 -5
- package/dist/tools/list-workspaces.d.ts.map +1 -1
- package/dist/tools/update-reminders.d.ts +7 -0
- package/dist/tools/update-reminders.d.ts.map +1 -1
- package/dist/utils/output-schemas.d.ts +1 -0
- package/dist/utils/output-schemas.d.ts.map +1 -1
- package/dist/utils/reminder-schemas.d.ts +4 -0
- package/dist/utils/reminder-schemas.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2775,14 +2775,14 @@ declare const tools: {
|
|
|
2775
2775
|
STARTER: "STARTER";
|
|
2776
2776
|
BUSINESS: "BUSINESS";
|
|
2777
2777
|
}>;
|
|
2778
|
-
role: import('zod').ZodEnum<{
|
|
2778
|
+
role: import('zod').ZodOptional<import('zod').ZodEnum<{
|
|
2779
2779
|
ADMIN: "ADMIN";
|
|
2780
2780
|
MEMBER: "MEMBER";
|
|
2781
2781
|
GUEST: "GUEST";
|
|
2782
|
-
}
|
|
2782
|
+
}>>;
|
|
2783
2783
|
isLinkSharingEnabled: import('zod').ZodBoolean;
|
|
2784
2784
|
isGuestAllowed: import('zod').ZodBoolean;
|
|
2785
|
-
createdAt: import('zod').ZodString
|
|
2785
|
+
createdAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
2786
2786
|
creatorId: import('zod').ZodString;
|
|
2787
2787
|
}, import('zod/v4/core').$strip>>;
|
|
2788
2788
|
count: import('zod').ZodNumber;
|
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, r, d as i, b as c, c as n, e as l, h as m, i as f, j as p, k, n as g, o as j, p as u, q as T, t as h, v, w as P, x as A, y as S, z as b, A as y, B as C, C as F, D as E, E as w, F as x, G as H, H as I, I as L, J as M, K as O, L as z, M as B } from "./mcp-server-
|
|
2
|
-
import { N as G, g as J } from "./mcp-server-
|
|
1
|
+
import { f as s, s as a, l as e, m as t, a as d, u as o, r, d as i, b as c, c as n, e as l, h as m, i as f, j as p, k, n as g, o as j, p as u, q as T, t as h, v, w as P, x as A, y as S, z as b, A as y, B as C, C as F, D as E, E as w, F as x, G as H, H as I, I as L, J as M, K as O, L as z, M as B } from "./mcp-server-C8iKL_qZ.js";
|
|
2
|
+
import { N as G, g as J } from "./mcp-server-C8iKL_qZ.js";
|
|
3
3
|
const N = {
|
|
4
4
|
// Task management tools
|
|
5
5
|
addTasks: B,
|
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-C8iKL_qZ.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-C8iKL_qZ.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|