@doist/todoist-mcp 13.2.6 → 13.2.7
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 +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/main-http.js +2 -2
- package/dist/main.js +1 -1
- package/dist/{mcp-server-DqhbVB72.js → mcp-server-8HYbbbyS.js} +96 -89
- package/dist/{require-valid-todoist-token-DTxQw9Dk.js → require-valid-todoist-token-Cy3lFEOp.js} +1 -1
- package/dist/tool-helpers.d.ts +2 -0
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tool-registry.d.ts +16 -0
- package/dist/tool-registry.d.ts.map +1 -1
- package/dist/tools/add-tasks.d.ts +2 -0
- package/dist/tools/add-tasks.d.ts.map +1 -1
- package/dist/tools/fetch-object.d.ts +2 -0
- package/dist/tools/fetch-object.d.ts.map +1 -1
- package/dist/tools/fetch.d.ts.map +1 -1
- package/dist/tools/find-completed-tasks.d.ts +2 -0
- package/dist/tools/find-completed-tasks.d.ts.map +1 -1
- package/dist/tools/find-tasks-by-date.d.ts +2 -0
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/find-tasks.d.ts +2 -0
- package/dist/tools/find-tasks.d.ts.map +1 -1
- package/dist/tools/import-project-template.d.ts +2 -0
- package/dist/tools/import-project-template.d.ts.map +1 -1
- package/dist/tools/reschedule-tasks.d.ts +2 -0
- package/dist/tools/reschedule-tasks.d.ts.map +1 -1
- package/dist/tools/update-tasks.d.ts +2 -0
- package/dist/tools/update-tasks.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/test-helpers.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ declare const tools: {
|
|
|
103
103
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
104
104
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
105
105
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
106
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
106
107
|
checked: import('zod').ZodBoolean;
|
|
107
108
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
108
109
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -156,6 +157,7 @@ declare const tools: {
|
|
|
156
157
|
duration: string | undefined;
|
|
157
158
|
responsibleUid: string | undefined;
|
|
158
159
|
assignedByUid: string | undefined;
|
|
160
|
+
isDeleted: true | undefined;
|
|
159
161
|
checked: boolean;
|
|
160
162
|
completedAt: string | undefined;
|
|
161
163
|
addedAt: string | undefined;
|
|
@@ -297,6 +299,7 @@ declare const tools: {
|
|
|
297
299
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
298
300
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
299
301
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
302
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
300
303
|
checked: import('zod').ZodBoolean;
|
|
301
304
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
302
305
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -355,6 +358,7 @@ declare const tools: {
|
|
|
355
358
|
duration: string | undefined;
|
|
356
359
|
responsibleUid: string | undefined;
|
|
357
360
|
assignedByUid: string | undefined;
|
|
361
|
+
isDeleted: true | undefined;
|
|
358
362
|
checked: boolean;
|
|
359
363
|
completedAt: string | undefined;
|
|
360
364
|
addedAt: string | undefined;
|
|
@@ -406,6 +410,7 @@ declare const tools: {
|
|
|
406
410
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
407
411
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
408
412
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
413
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
409
414
|
checked: import('zod').ZodBoolean;
|
|
410
415
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
411
416
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -441,6 +446,7 @@ declare const tools: {
|
|
|
441
446
|
duration: string | undefined;
|
|
442
447
|
responsibleUid: string | undefined;
|
|
443
448
|
assignedByUid: string | undefined;
|
|
449
|
+
isDeleted: true | undefined;
|
|
444
450
|
checked: boolean;
|
|
445
451
|
completedAt: string | undefined;
|
|
446
452
|
addedAt: string | undefined;
|
|
@@ -496,6 +502,7 @@ declare const tools: {
|
|
|
496
502
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
497
503
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
498
504
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
505
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
499
506
|
checked: import('zod').ZodBoolean;
|
|
500
507
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
501
508
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -541,6 +548,7 @@ declare const tools: {
|
|
|
541
548
|
duration: string | undefined;
|
|
542
549
|
responsibleUid: string | undefined;
|
|
543
550
|
assignedByUid: string | undefined;
|
|
551
|
+
isDeleted: true | undefined;
|
|
544
552
|
checked: boolean;
|
|
545
553
|
completedAt: string | undefined;
|
|
546
554
|
addedAt: string | undefined;
|
|
@@ -617,6 +625,7 @@ declare const tools: {
|
|
|
617
625
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
618
626
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
619
627
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
628
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
620
629
|
checked: import('zod').ZodBoolean;
|
|
621
630
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
622
631
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -659,6 +668,7 @@ declare const tools: {
|
|
|
659
668
|
duration: string | undefined;
|
|
660
669
|
responsibleUid: string | undefined;
|
|
661
670
|
assignedByUid: string | undefined;
|
|
671
|
+
isDeleted: true | undefined;
|
|
662
672
|
checked: boolean;
|
|
663
673
|
completedAt: string | undefined;
|
|
664
674
|
addedAt: string | undefined;
|
|
@@ -725,6 +735,7 @@ declare const tools: {
|
|
|
725
735
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
726
736
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
727
737
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
738
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
728
739
|
checked: import('zod').ZodBoolean;
|
|
729
740
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
730
741
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -770,6 +781,7 @@ declare const tools: {
|
|
|
770
781
|
duration: string | undefined;
|
|
771
782
|
responsibleUid: string | undefined;
|
|
772
783
|
assignedByUid: string | undefined;
|
|
784
|
+
isDeleted: true | undefined;
|
|
773
785
|
checked: boolean;
|
|
774
786
|
completedAt: string | undefined;
|
|
775
787
|
addedAt: string | undefined;
|
|
@@ -3360,6 +3372,7 @@ declare const tools: {
|
|
|
3360
3372
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3361
3373
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3362
3374
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3375
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3363
3376
|
checked: import('zod').ZodBoolean;
|
|
3364
3377
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3365
3378
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -3459,6 +3472,7 @@ declare const tools: {
|
|
|
3459
3472
|
duration: string | undefined;
|
|
3460
3473
|
responsibleUid: string | undefined;
|
|
3461
3474
|
assignedByUid: string | undefined;
|
|
3475
|
+
isDeleted: true | undefined;
|
|
3462
3476
|
checked: boolean;
|
|
3463
3477
|
completedAt: string | undefined;
|
|
3464
3478
|
addedAt: string | undefined;
|
|
@@ -3862,6 +3876,7 @@ declare const tools: {
|
|
|
3862
3876
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3863
3877
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3864
3878
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3879
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3865
3880
|
checked: import('zod').ZodBoolean;
|
|
3866
3881
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3867
3882
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -3928,6 +3943,7 @@ declare const tools: {
|
|
|
3928
3943
|
duration: string | undefined;
|
|
3929
3944
|
responsibleUid: string | undefined;
|
|
3930
3945
|
assignedByUid: string | undefined;
|
|
3946
|
+
isDeleted: true | undefined;
|
|
3931
3947
|
checked: boolean;
|
|
3932
3948
|
completedAt: string | undefined;
|
|
3933
3949
|
addedAt: 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":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAe,CAAA;AAE1B,OAAO,EAEH,QAAQ,EACR,aAAa,EACb,SAAS,EACT,eAAe,EACf,kBAAkB,EAClB,eAAe,EAEf,WAAW,EACX,YAAY,EACZ,oBAAoB,EACpB,iBAAiB,EACjB,WAAW,EAEX,WAAW,EACX,YAAY,EAEZ,WAAW,EACX,YAAY,EAEZ,YAAY,EACZ,aAAa,EACb,eAAe,EAEf,SAAS,EACT,UAAU,EACV,YAAY,EAEZ,UAAU,EACV,WAAW,EAEX,YAAY,EACZ,oBAAoB,EAEpB,gBAAgB,EAChB,uBAAuB,EACvB,oBAAoB,EAEpB,wBAAwB,EACxB,iBAAiB,EAEjB,qBAAqB,EACrB,qBAAqB,EAErB,cAAc,EAEd,cAAc,EAEd,YAAY,EACZ,WAAW,EACX,WAAW,EACX,cAAc,EACd,QAAQ,EACR,eAAe,EACf,cAAc,EACd,aAAa,EACb,cAAc,EACd,cAAc,EACd,WAAW,EAEX,MAAM,EACN,KAAK,EAEL,YAAY,EACZ,KAAK,EACL,eAAe,EACf,aAAa,EACb,KAAK,OAAO,EACZ,KAAK,WAAW,EAChB,KAAK,QAAQ,EAEb,wBAAwB,EACxB,KAAK,+BAA+B,EAEpC,oBAAoB,GACvB,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { t as s } from "./mcp-server-
|
|
2
|
-
import { F as r, a as d, b as i, c as n, d as c, e as l, f as m, h as p, i as f, j as T, k as j, l as g, m as k, n as u, o as v, p as P, q as h, r as b, s as S, u as y, v as A, w as C, x as R, y as x, z as F, g as M, A as O, B as E, C as L, D as w, E as H, G as I, H as W, I as q, J as z, K as B, L as D, M as N, N as U, O as V, P as G, Q as J, R as K, S as Q, T as X, U as Y, V as _, W as Z, X as $, Y as ss } from "./mcp-server-
|
|
3
|
-
import { r as es, v as ts } from "./require-valid-todoist-token-
|
|
1
|
+
import { t as s } from "./mcp-server-8HYbbbyS.js";
|
|
2
|
+
import { F as r, a as d, b as i, c as n, d as c, e as l, f as m, h as p, i as f, j as T, k as j, l as g, m as k, n as u, o as v, p as P, q as h, r as b, s as S, u as y, v as A, w as C, x as R, y as x, z as F, g as M, A as O, B as E, C as L, D as w, E as H, G as I, H as W, I as q, J as z, K as B, L as D, M as N, N as U, O as V, P as G, Q as J, R as K, S as Q, T as X, U as Y, V as _, W as Z, X as $, Y as ss } from "./mcp-server-8HYbbbyS.js";
|
|
3
|
+
import { r as es, v as ts } from "./require-valid-todoist-token-Cy3lFEOp.js";
|
|
4
4
|
const e = s;
|
|
5
5
|
export {
|
|
6
6
|
r as FEATURE_NAMES,
|
package/dist/main-http.js
CHANGED
|
@@ -3,8 +3,8 @@ import { isIP as p } from "node:net";
|
|
|
3
3
|
import O from "dotenv";
|
|
4
4
|
import { NodeStreamableHTTPServerTransport as S } from "@modelcontextprotocol/node";
|
|
5
5
|
import m from "express";
|
|
6
|
-
import { g as v } from "./mcp-server-
|
|
7
|
-
import { r as w } from "./require-valid-todoist-token-
|
|
6
|
+
import { g as v } from "./mcp-server-8HYbbbyS.js";
|
|
7
|
+
import { r as w } from "./require-valid-todoist-token-Cy3lFEOp.js";
|
|
8
8
|
function f(t) {
|
|
9
9
|
return t.startsWith("[") && t.endsWith("]") ? t.slice(1, -1) : t;
|
|
10
10
|
}
|
package/dist/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { StdioServerTransport as s } from "@modelcontextprotocol/server/stdio";
|
|
3
3
|
import c from "dotenv";
|
|
4
|
-
import { g as i } from "./mcp-server-
|
|
4
|
+
import { g as i } from "./mcp-server-8HYbbbyS.js";
|
|
5
5
|
function p() {
|
|
6
6
|
const e = process.env.TODOIST_BASE_URL, r = process.env.TODOIST_API_KEY;
|
|
7
7
|
if (!r)
|
|
@@ -371,7 +371,7 @@ function Tr(e) {
|
|
|
371
371
|
const t = st(e);
|
|
372
372
|
return t ? gr(t) : ss(e);
|
|
373
373
|
}
|
|
374
|
-
const kr = "13.2.
|
|
374
|
+
const kr = "13.2.7", wr = {
|
|
375
375
|
version: kr
|
|
376
376
|
}, j = {
|
|
377
377
|
/** Default limit for task listings */
|
|
@@ -500,13 +500,13 @@ function St() {
|
|
|
500
500
|
function $r(e) {
|
|
501
501
|
return Gt("sha256").update(e).digest("hex");
|
|
502
502
|
}
|
|
503
|
-
function
|
|
503
|
+
function Dr({ moves: e, writes: t }) {
|
|
504
504
|
return e.isIdle() && t.isIdle();
|
|
505
505
|
}
|
|
506
506
|
function is(e) {
|
|
507
|
-
return e.leases === 0 &&
|
|
507
|
+
return e.leases === 0 && Dr(e.limiters);
|
|
508
508
|
}
|
|
509
|
-
function
|
|
509
|
+
function Ar(e, t, r) {
|
|
510
510
|
W.delete(e), t.lastUsedAt = r, W.set(e, t);
|
|
511
511
|
}
|
|
512
512
|
function xr(e) {
|
|
@@ -527,7 +527,7 @@ function as(e, t) {
|
|
|
527
527
|
return;
|
|
528
528
|
const r = W.get(e);
|
|
529
529
|
if (r)
|
|
530
|
-
return
|
|
530
|
+
return Ar(e, r, t), r;
|
|
531
531
|
if (xr(t), W.size >= Cr && !Er())
|
|
532
532
|
return;
|
|
533
533
|
const o = { limiters: rt(), lastUsedAt: t, leases: 0 };
|
|
@@ -846,8 +846,8 @@ const g = {
|
|
|
846
846
|
* Affects: find-project-collaborators, find-completed-tasks
|
|
847
847
|
*/
|
|
848
848
|
STRIP_EMAILS: "strip_emails"
|
|
849
|
-
}, no = process.env.USE_STRUCTURED_CONTENT === "true" || process.env.NODE_ENV === "test",
|
|
850
|
-
function
|
|
849
|
+
}, no = process.env.USE_STRUCTURED_CONTENT === "true" || process.env.NODE_ENV === "test", Dt = /* @__PURE__ */ new WeakMap();
|
|
850
|
+
function At(e, t) {
|
|
851
851
|
const r = s.toJSONSchema(e, { target: "draft-2020-12", io: t }), o = e["~standard"];
|
|
852
852
|
return {
|
|
853
853
|
"~standard": {
|
|
@@ -860,14 +860,14 @@ function Dt(e, t) {
|
|
|
860
860
|
};
|
|
861
861
|
}
|
|
862
862
|
function io(e) {
|
|
863
|
-
const t =
|
|
863
|
+
const t = Dt.get(e);
|
|
864
864
|
if (t)
|
|
865
865
|
return t;
|
|
866
866
|
const r = {
|
|
867
|
-
input:
|
|
868
|
-
...e.outputSchema ? { output:
|
|
867
|
+
input: At(s.object(e.parameters), "input"),
|
|
868
|
+
...e.outputSchema ? { output: At(s.object(e.outputSchema), "output") } : {}
|
|
869
869
|
};
|
|
870
|
-
return
|
|
870
|
+
return Dt.set(e, r), r;
|
|
871
871
|
}
|
|
872
872
|
function ao({
|
|
873
873
|
textContent: e,
|
|
@@ -1146,7 +1146,7 @@ function ps(e) {
|
|
|
1146
1146
|
function jo(e) {
|
|
1147
1147
|
return { 4: "p1", 3: "p2", 2: "p3", 1: "p4" }[e];
|
|
1148
1148
|
}
|
|
1149
|
-
const hs = 300 * 1e3, $o = 1e4,
|
|
1149
|
+
const hs = 300 * 1e3, $o = 1e4, Do = 1e3;
|
|
1150
1150
|
class ms {
|
|
1151
1151
|
constructor(t, r) {
|
|
1152
1152
|
this.maxEntries = t, this.ttl = r, this.entries = /* @__PURE__ */ new Map();
|
|
@@ -1184,10 +1184,10 @@ const Ue = new ms(
|
|
|
1184
1184
|
$o,
|
|
1185
1185
|
hs
|
|
1186
1186
|
), le = new ms(
|
|
1187
|
-
|
|
1187
|
+
Do,
|
|
1188
1188
|
hs
|
|
1189
1189
|
), fs = "me";
|
|
1190
|
-
class
|
|
1190
|
+
class Ao {
|
|
1191
1191
|
/**
|
|
1192
1192
|
* Resolve a user name or ID to a user ID by looking up collaborators across all shared projects.
|
|
1193
1193
|
* Supports exact name matches, partial matches, email matches, and the "me" keyword.
|
|
@@ -1322,7 +1322,7 @@ class Do {
|
|
|
1322
1322
|
Ue.clear(), le.clear();
|
|
1323
1323
|
}
|
|
1324
1324
|
}
|
|
1325
|
-
const H = new
|
|
1325
|
+
const H = new Ao();
|
|
1326
1326
|
async function xo(e, t) {
|
|
1327
1327
|
return H.resolveUser(e, t);
|
|
1328
1328
|
}
|
|
@@ -1475,6 +1475,9 @@ function P(e) {
|
|
|
1475
1475
|
duration: e.duration ? So(e.duration.amount) : void 0,
|
|
1476
1476
|
responsibleUid: e.responsibleUid ?? void 0,
|
|
1477
1477
|
assignedByUid: e.assignedByUid ?? void 0,
|
|
1478
|
+
// Only emitted when true: a deleted task is the exception, and every list
|
|
1479
|
+
// response would otherwise carry `isDeleted: false` on every task.
|
|
1480
|
+
isDeleted: e.isDeleted || void 0,
|
|
1478
1481
|
checked: e.checked,
|
|
1479
1482
|
completedAt: e.completedAt?.toISOString() ?? void 0,
|
|
1480
1483
|
addedAt: e.addedAt?.toISOString() ?? void 0
|
|
@@ -1543,7 +1546,7 @@ const Mo = ce.object({
|
|
|
1543
1546
|
errorTag: ce.string()
|
|
1544
1547
|
})
|
|
1545
1548
|
});
|
|
1546
|
-
function
|
|
1549
|
+
function De(e) {
|
|
1547
1550
|
const t = e?.trim();
|
|
1548
1551
|
return t && t !== "0" ? e : void 0;
|
|
1549
1552
|
}
|
|
@@ -1647,15 +1650,15 @@ function Et(e, t) {
|
|
|
1647
1650
|
o && o !== t && r.add(o);
|
|
1648
1651
|
return [...r];
|
|
1649
1652
|
}
|
|
1650
|
-
const
|
|
1653
|
+
const Ae = He.map((e) => e.key);
|
|
1651
1654
|
function Bo(e) {
|
|
1652
1655
|
if (typeof e != "string") return;
|
|
1653
1656
|
const t = e.toLowerCase();
|
|
1654
1657
|
return (He.find((o) => o.key === t) ?? He.find((o) => o.displayName.toLowerCase() === t))?.key;
|
|
1655
1658
|
}
|
|
1656
|
-
const zo = `Color for the entity. Accepts a color key (e.g. "berry_red") or display name (e.g. "Berry Red"). Valid colors: ${
|
|
1657
|
-
s.enum(
|
|
1658
|
-
const be = s.enum(
|
|
1659
|
+
const zo = `Color for the entity. Accepts a color key (e.g. "berry_red") or display name (e.g. "Berry Red"). Valid colors: ${Ae.join(", ")}. Unrecognized colors are omitted and charcoal will be used as the default.`, fe = s.preprocess(Bo, s.enum(Ae).optional()).describe(zo);
|
|
1660
|
+
s.enum(Ae);
|
|
1661
|
+
const be = s.enum(Ae).optional().catch(void 0), K = s.object({
|
|
1659
1662
|
id: s.string(),
|
|
1660
1663
|
content: s.string().describe("Task title."),
|
|
1661
1664
|
description: s.string(),
|
|
@@ -1671,6 +1674,7 @@ const be = s.enum(De).optional().catch(void 0), K = s.object({
|
|
|
1671
1674
|
responsibleUid: s.string().optional(),
|
|
1672
1675
|
isUncompletable: s.boolean().optional().describe("An organizational header, not a real task."),
|
|
1673
1676
|
assignedByUid: s.string().optional(),
|
|
1677
|
+
isDeleted: s.boolean().optional().describe("True when deleted; absent otherwise."),
|
|
1674
1678
|
checked: s.boolean().describe("Whether the task is completed."),
|
|
1675
1679
|
completedAt: s.string().optional().describe("ISO 8601."),
|
|
1676
1680
|
addedAt: s.string().optional().describe("ISO 8601.")
|
|
@@ -2278,7 +2282,7 @@ const je = 25, Ee = s.enum(Zs), Ss = s.object({
|
|
|
2278
2282
|
'Delivery method: "email" or "push" notification. Defaults to push.'
|
|
2279
2283
|
),
|
|
2280
2284
|
isUrgent: Oe
|
|
2281
|
-
}),
|
|
2285
|
+
}), Dn = s.object({
|
|
2282
2286
|
type: s.literal("absolute"),
|
|
2283
2287
|
taskId: s.string().min(1).describe("The ID of the task to set a reminder for."),
|
|
2284
2288
|
due: Ss.describe("The specific date/time for the reminder."),
|
|
@@ -2286,7 +2290,7 @@ const je = 25, Ee = s.enum(Zs), Ss = s.object({
|
|
|
2286
2290
|
'Delivery method: "email" or "push" notification. Defaults to push.'
|
|
2287
2291
|
),
|
|
2288
2292
|
isUrgent: Oe
|
|
2289
|
-
}),
|
|
2293
|
+
}), An = s.object({
|
|
2290
2294
|
type: s.literal("location"),
|
|
2291
2295
|
taskId: s.string().min(1).describe("The ID of the task to set a reminder for."),
|
|
2292
2296
|
name: s.string().min(1).describe('Name of the location, e.g. "Office", "Home".'),
|
|
@@ -2298,8 +2302,8 @@ const je = 25, Ee = s.enum(Zs), Ss = s.object({
|
|
|
2298
2302
|
radius: s.number().int().optional().describe("Radius in meters for the geofence. Defaults to server default.")
|
|
2299
2303
|
}), xn = s.discriminatedUnion("type", [
|
|
2300
2304
|
$n,
|
|
2301
|
-
|
|
2302
|
-
|
|
2305
|
+
Dn,
|
|
2306
|
+
An
|
|
2303
2307
|
]), En = {
|
|
2304
2308
|
reminders: s.array(xn).min(1).max(je).describe(
|
|
2305
2309
|
`Array of reminders to create (max ${je}). Each reminder must specify a type: "relative" (minutes before due), "absolute" (specific date/time), or "location" (geofence trigger).`
|
|
@@ -2814,9 +2818,9 @@ async function Kn(e, t, r) {
|
|
|
2814
2818
|
d
|
|
2815
2819
|
);
|
|
2816
2820
|
if (!w.isValid) {
|
|
2817
|
-
const C = w.error?.message || "Assignment validation failed",
|
|
2821
|
+
const C = w.error?.message || "Assignment validation failed", A = w.error?.suggestions?.join(". ") || "";
|
|
2818
2822
|
throw new Error(
|
|
2819
|
-
`Task "${e.content}": ${C}${
|
|
2823
|
+
`Task "${e.content}": ${C}${A ? `. ${A}` : ""}`
|
|
2820
2824
|
);
|
|
2821
2825
|
}
|
|
2822
2826
|
y.assigneeId = w.resolvedUser?.userId;
|
|
@@ -3154,14 +3158,14 @@ function Rt(e, t) {
|
|
|
3154
3158
|
const r = t.hasMoreChildren ? "+" : "", o = t.childrenError ? " (partial)" : "";
|
|
3155
3159
|
return ` • ${e}=${t.childCount}${r}${o}`;
|
|
3156
3160
|
}
|
|
3157
|
-
const
|
|
3158
|
-
type: s.enum(
|
|
3161
|
+
const Ds = ["task", "project", "comment", "section"], pi = {
|
|
3162
|
+
type: s.enum(Ds).describe("The type of object to fetch."),
|
|
3159
3163
|
id: s.string().min(1).describe("The unique ID of the object to fetch."),
|
|
3160
3164
|
includeChildren: s.boolean().optional().describe(
|
|
3161
3165
|
"Also return the direct children of the object: subtasks for a task, sub-projects for a project. Returns childCount plus a compact list, flagging each child that has children of its own. Use this to check whether a task hides subtasks instead of a speculative find-tasks lookup. Ignored for comments and sections."
|
|
3162
3166
|
)
|
|
3163
3167
|
}, hi = {
|
|
3164
|
-
type: s.enum(
|
|
3168
|
+
type: s.enum(Ds).describe("The type of object fetched."),
|
|
3165
3169
|
id: s.string().describe("The ID of the fetched object."),
|
|
3166
3170
|
object: s.union([K, re, ve, Y]).describe("The fetched object data."),
|
|
3167
3171
|
...di
|
|
@@ -3258,7 +3262,10 @@ const As = ["task", "project", "comment", "section"], pi = {
|
|
|
3258
3262
|
);
|
|
3259
3263
|
let i;
|
|
3260
3264
|
if (o === "task") {
|
|
3261
|
-
const a = await t.getTask(n)
|
|
3265
|
+
const a = await t.getTask(n);
|
|
3266
|
+
if (a.isDeleted)
|
|
3267
|
+
throw new Error(`Task ${n} not found: it has been deleted.`);
|
|
3268
|
+
const c = P(a), d = [c.content];
|
|
3262
3269
|
c.description && d.push(`
|
|
3263
3270
|
|
|
3264
3271
|
Description: ${c.description}`), c.dueDate && d.push(`
|
|
@@ -3456,14 +3463,14 @@ const ji = {
|
|
|
3456
3463
|
hasMore: s.boolean(),
|
|
3457
3464
|
nextCursor: s.string().optional(),
|
|
3458
3465
|
totalCount: s.number().describe("The total number of comments in this page.")
|
|
3459
|
-
},
|
|
3466
|
+
}, Di = {
|
|
3460
3467
|
name: g.FIND_COMMENTS,
|
|
3461
3468
|
description: "Find comments by task, project, or get a specific comment by ID. Exactly one of taskId, projectId, or commentId must be provided.",
|
|
3462
3469
|
parameters: ji,
|
|
3463
3470
|
outputSchema: $i,
|
|
3464
3471
|
annotations: { readOnlyHint: !0, destructiveHint: !1, idempotentHint: !0 },
|
|
3465
3472
|
async execute(e, t) {
|
|
3466
|
-
const r =
|
|
3473
|
+
const r = De(e.cursor), o = [e.taskId, e.projectId, e.commentId].filter(Boolean);
|
|
3467
3474
|
if (o.length === 0)
|
|
3468
3475
|
throw new Error("Must provide exactly one of: taskId, projectId, or commentId.");
|
|
3469
3476
|
if (o.length > 1)
|
|
@@ -3495,7 +3502,7 @@ const ji = {
|
|
|
3495
3502
|
throw new Error("Invalid state: no search parameter provided");
|
|
3496
3503
|
const d = c.map(we);
|
|
3497
3504
|
return {
|
|
3498
|
-
textContent:
|
|
3505
|
+
textContent: Ai({
|
|
3499
3506
|
comments: d,
|
|
3500
3507
|
searchType: e.commentId ? "single" : e.taskId ? "task" : "project",
|
|
3501
3508
|
searchId: e.commentId || e.taskId || e.projectId || "",
|
|
@@ -3513,7 +3520,7 @@ const ji = {
|
|
|
3513
3520
|
};
|
|
3514
3521
|
}
|
|
3515
3522
|
};
|
|
3516
|
-
function
|
|
3523
|
+
function Ai({
|
|
3517
3524
|
comments: e,
|
|
3518
3525
|
searchType: t,
|
|
3519
3526
|
searchId: r,
|
|
@@ -3539,7 +3546,7 @@ ${a}`;
|
|
|
3539
3546
|
}
|
|
3540
3547
|
return i;
|
|
3541
3548
|
}
|
|
3542
|
-
function
|
|
3549
|
+
function As(e) {
|
|
3543
3550
|
const t = e.getUTCFullYear(), r = String(e.getUTCMonth() + 1).padStart(2, "0"), o = String(e.getUTCDate()).padStart(2, "0");
|
|
3544
3551
|
return `${t}-${r}-${o}`;
|
|
3545
3552
|
}
|
|
@@ -3552,14 +3559,14 @@ function xi(e) {
|
|
|
3552
3559
|
}
|
|
3553
3560
|
function Ei(e, t) {
|
|
3554
3561
|
const r = new Date(e.getTime() + t * 60 * 1e3);
|
|
3555
|
-
return
|
|
3562
|
+
return As(r);
|
|
3556
3563
|
}
|
|
3557
3564
|
function Nt(e, t) {
|
|
3558
3565
|
const [r, o, n] = e.split("-"), i = Number(r), a = Number(o), c = Number(n);
|
|
3559
3566
|
if (!Number.isFinite(i) || !Number.isFinite(a) || !Number.isFinite(c))
|
|
3560
3567
|
throw new Error(`Invalid date format: ${e}. Expected YYYY-MM-DD.`);
|
|
3561
3568
|
const d = new Date(Date.UTC(i, a - 1, c));
|
|
3562
|
-
return d.setUTCDate(d.getUTCDate() + t),
|
|
3569
|
+
return d.setUTCDate(d.getUTCDate() + t), As(d);
|
|
3563
3570
|
}
|
|
3564
3571
|
const Oi = ["and", "or"], bt = {
|
|
3565
3572
|
labels: s.string().array().optional().describe("The labels to filter the tasks by"),
|
|
@@ -3632,7 +3639,7 @@ const Ui = {
|
|
|
3632
3639
|
projectId: d,
|
|
3633
3640
|
cursor: u,
|
|
3634
3641
|
...l
|
|
3635
|
-
} = e, p =
|
|
3642
|
+
} = e, p = De(u);
|
|
3636
3643
|
if (p && (!i || !a))
|
|
3637
3644
|
throw new Error(
|
|
3638
3645
|
"Cursor pagination requires explicit since and until. Reuse structuredContent.appliedFilters.since and structuredContent.appliedFilters.until from the previous page."
|
|
@@ -3640,7 +3647,7 @@ const Ui = {
|
|
|
3640
3647
|
const h = await at(t, c), m = h?.email;
|
|
3641
3648
|
let f = gt(o, n);
|
|
3642
3649
|
h && m && (f = me(f, `assigned to: ${m}`));
|
|
3643
|
-
const w = await t.getUser(), C = w.tzInfo?.gmtString || "+00:00",
|
|
3650
|
+
const w = await t.getUser(), C = w.tzInfo?.gmtString || "+00:00", A = await te({
|
|
3644
3651
|
projectId: d,
|
|
3645
3652
|
user: w
|
|
3646
3653
|
}), T = Pi({
|
|
@@ -3651,21 +3658,21 @@ const Ui = {
|
|
|
3651
3658
|
...e,
|
|
3652
3659
|
since: T.since,
|
|
3653
3660
|
until: T.until
|
|
3654
|
-
}, { items:
|
|
3661
|
+
}, { items: D, nextCursor: x } = r === "completion" ? await t.getCompletedTasksByCompletionDate({
|
|
3655
3662
|
...l,
|
|
3656
3663
|
...p ? { cursor: p } : {},
|
|
3657
|
-
projectId:
|
|
3664
|
+
projectId: A,
|
|
3658
3665
|
since: k,
|
|
3659
3666
|
until: b,
|
|
3660
3667
|
...f ? { filterQuery: f, filterLang: "en" } : {}
|
|
3661
3668
|
}) : await t.getCompletedTasksByDueDate({
|
|
3662
3669
|
...l,
|
|
3663
3670
|
...p ? { cursor: p } : {},
|
|
3664
|
-
projectId:
|
|
3671
|
+
projectId: A,
|
|
3665
3672
|
since: k,
|
|
3666
3673
|
until: b,
|
|
3667
3674
|
...f ? { filterQuery: f, filterLang: "en" } : {}
|
|
3668
|
-
}), E =
|
|
3675
|
+
}), E = D.map(P);
|
|
3669
3676
|
return {
|
|
3670
3677
|
textContent: Ni({
|
|
3671
3678
|
tasks: E,
|
|
@@ -4215,7 +4222,7 @@ const ca = {
|
|
|
4215
4222
|
outputSchema: da,
|
|
4216
4223
|
annotations: { readOnlyHint: !0, destructiveHint: !1, idempotentHint: !0 },
|
|
4217
4224
|
async execute(e, t) {
|
|
4218
|
-
const r =
|
|
4225
|
+
const r = De(e.cursor);
|
|
4219
4226
|
if (!e.startDate && e.overdueOption !== "overdue-only")
|
|
4220
4227
|
throw new Error(
|
|
4221
4228
|
"Either startDate must be provided or overdueOption must be set to overdue-only"
|
|
@@ -4226,8 +4233,8 @@ const ca = {
|
|
|
4226
4233
|
d = "overdue";
|
|
4227
4234
|
else if (e.startDate === "today")
|
|
4228
4235
|
if (e.daysCount > 1) {
|
|
4229
|
-
const y = /* @__PURE__ */ new Date(), f = he(y), w = We(y, e.daysCount), C = yt(w, { representation: "date" }),
|
|
4230
|
-
d = e.overdueOption === "exclude-overdue" ?
|
|
4236
|
+
const y = /* @__PURE__ */ new Date(), f = he(y), w = We(y, e.daysCount), C = yt(w, { representation: "date" }), A = `(due after: ${f} | due: ${f}) & due before: ${C}`;
|
|
4237
|
+
d = e.overdueOption === "exclude-overdue" ? A : `(${A} | overdue)`;
|
|
4231
4238
|
} else
|
|
4232
4239
|
d = e.overdueOption === "exclude-overdue" ? "today" : "(today | overdue)";
|
|
4233
4240
|
else if (e.startDate) {
|
|
@@ -4424,7 +4431,7 @@ const ma = new ha(), { FIND_COMPLETED_TASKS: Ft, ADD_TASKS: Ht } = g, fa = {
|
|
|
4424
4431
|
labelsOperator: p,
|
|
4425
4432
|
filter: h,
|
|
4426
4433
|
filterIdOrName: m
|
|
4427
|
-
} = e, y =
|
|
4434
|
+
} = e, y = De(u), f = await t.getUser(), w = l && l.length > 0;
|
|
4428
4435
|
if (!r && !o && !n && !i && !a && !w && !h && !m)
|
|
4429
4436
|
throw new Error(
|
|
4430
4437
|
"At least one filter must be provided: searchText, projectId, sectionId, parentId, responsibleUser, labels, filter, or filterIdOrName"
|
|
@@ -4439,7 +4446,7 @@ const ma = new ha(), { FIND_COMPLETED_TASKS: Ft, ADD_TASKS: Ht } = g, fa = {
|
|
|
4439
4446
|
);
|
|
4440
4447
|
let C = h;
|
|
4441
4448
|
m && (C = (await ma.resolveFilter(t, m)).filterQuery);
|
|
4442
|
-
const
|
|
4449
|
+
const A = await at(t, a), T = A?.userId, I = A?.email;
|
|
4443
4450
|
if (o || n || i) {
|
|
4444
4451
|
const E = {
|
|
4445
4452
|
limit: d,
|
|
@@ -4517,7 +4524,7 @@ const ma = new ha(), { FIND_COMPLETED_TASKS: Ft, ADD_TASKS: Ht } = g, fa = {
|
|
|
4517
4524
|
});
|
|
4518
4525
|
$ = me($, E);
|
|
4519
4526
|
}
|
|
4520
|
-
const { tasks: S, nextCursor:
|
|
4527
|
+
const { tasks: S, nextCursor: D } = await dt({
|
|
4521
4528
|
client: t,
|
|
4522
4529
|
query: $,
|
|
4523
4530
|
cursor: y,
|
|
@@ -4527,15 +4534,15 @@ const ma = new ha(), { FIND_COMPLETED_TASKS: Ft, ADD_TASKS: Ht } = g, fa = {
|
|
|
4527
4534
|
textContent: Re({
|
|
4528
4535
|
tasks: S,
|
|
4529
4536
|
args: e,
|
|
4530
|
-
nextCursor:
|
|
4537
|
+
nextCursor: D,
|
|
4531
4538
|
isContainerSearch: !1,
|
|
4532
4539
|
assigneeEmail: I
|
|
4533
4540
|
}),
|
|
4534
4541
|
structuredContent: {
|
|
4535
4542
|
tasks: S,
|
|
4536
|
-
nextCursor:
|
|
4543
|
+
nextCursor: D ?? void 0,
|
|
4537
4544
|
totalCount: S.length,
|
|
4538
|
-
hasMore: !!
|
|
4545
|
+
hasMore: !!D,
|
|
4539
4546
|
appliedFilters: e
|
|
4540
4547
|
}
|
|
4541
4548
|
};
|
|
@@ -4851,14 +4858,14 @@ const $a = {
|
|
|
4851
4858
|
structuredContent: o.structuredContent
|
|
4852
4859
|
};
|
|
4853
4860
|
}
|
|
4854
|
-
},
|
|
4861
|
+
}, Da = {}, pe = s.object({
|
|
4855
4862
|
count: s.number().describe("Number of consecutive periods in this streak."),
|
|
4856
4863
|
start: s.string().describe("Start date of the streak."),
|
|
4857
4864
|
end: s.string().describe("End date of the streak.")
|
|
4858
4865
|
}), Bt = s.object({
|
|
4859
4866
|
id: s.string().describe("Project ID."),
|
|
4860
4867
|
completed: s.number().describe("Number of tasks completed in this project.")
|
|
4861
|
-
}),
|
|
4868
|
+
}), Aa = {
|
|
4862
4869
|
completedCount: s.number().describe("Total number of completed tasks (all-time)."),
|
|
4863
4870
|
daysItems: s.array(
|
|
4864
4871
|
s.object({
|
|
@@ -4910,8 +4917,8 @@ const $a = {
|
|
|
4910
4917
|
}, xa = {
|
|
4911
4918
|
name: g.GET_PRODUCTIVITY_STATS,
|
|
4912
4919
|
description: 'Get comprehensive productivity statistics including daily/weekly completion breakdowns, goal streaks (current, last, max), karma score and trends, and historical karma data. Useful for productivity analysis and tracking goal progress. Reports counts, streaks and karma only, never the tasks themselves — for "what did I complete", use find-activity.',
|
|
4913
|
-
parameters:
|
|
4914
|
-
outputSchema:
|
|
4920
|
+
parameters: Da,
|
|
4921
|
+
outputSchema: Aa,
|
|
4915
4922
|
annotations: {
|
|
4916
4923
|
readOnlyHint: !0,
|
|
4917
4924
|
destructiveHint: !1,
|
|
@@ -5442,10 +5449,10 @@ const sc = {
|
|
|
5442
5449
|
});
|
|
5443
5450
|
if (r === "unassign") {
|
|
5444
5451
|
if (a) {
|
|
5445
|
-
const b = d.map((
|
|
5446
|
-
taskId:
|
|
5452
|
+
const b = d.map((D) => ({
|
|
5453
|
+
taskId: D.id,
|
|
5447
5454
|
success: !0,
|
|
5448
|
-
originalAssigneeId:
|
|
5455
|
+
originalAssigneeId: D.responsibleUid ?? void 0,
|
|
5449
5456
|
newAssigneeId: void 0
|
|
5450
5457
|
}));
|
|
5451
5458
|
return {
|
|
@@ -5519,7 +5526,7 @@ const sc = {
|
|
|
5519
5526
|
);
|
|
5520
5527
|
if (!I)
|
|
5521
5528
|
return $.map(({ assignment: b, validation: S }) => {
|
|
5522
|
-
const
|
|
5529
|
+
const D = d.find((x) => x.id === b.taskId);
|
|
5523
5530
|
if (!b.taskId || !S.resolvedUser?.userId)
|
|
5524
5531
|
throw new Error(
|
|
5525
5532
|
"Invalid assignment or validation data - this should not happen"
|
|
@@ -5527,19 +5534,19 @@ const sc = {
|
|
|
5527
5534
|
return {
|
|
5528
5535
|
taskId: b.taskId,
|
|
5529
5536
|
success: !0,
|
|
5530
|
-
originalAssigneeId:
|
|
5537
|
+
originalAssigneeId: D?.responsibleUid ?? void 0,
|
|
5531
5538
|
newAssigneeId: S.resolvedUser.userId
|
|
5532
5539
|
};
|
|
5533
5540
|
});
|
|
5534
5541
|
const k = $.map(
|
|
5535
5542
|
async ({ assignment: b, validation: S }) => {
|
|
5536
|
-
const
|
|
5543
|
+
const D = d.find((x) => x.id === b.taskId);
|
|
5537
5544
|
if (!b.taskId || !S.resolvedUser?.userId)
|
|
5538
5545
|
return {
|
|
5539
5546
|
taskId: b.taskId || "unknown-task",
|
|
5540
5547
|
success: !1,
|
|
5541
5548
|
error: "Invalid assignment data - missing task ID or resolved user",
|
|
5542
|
-
originalAssigneeId:
|
|
5549
|
+
originalAssigneeId: D?.responsibleUid ?? void 0
|
|
5543
5550
|
};
|
|
5544
5551
|
try {
|
|
5545
5552
|
return await t.updateTask(b.taskId, {
|
|
@@ -5547,7 +5554,7 @@ const sc = {
|
|
|
5547
5554
|
}), {
|
|
5548
5555
|
taskId: b.taskId,
|
|
5549
5556
|
success: !0,
|
|
5550
|
-
originalAssigneeId:
|
|
5557
|
+
originalAssigneeId: D?.responsibleUid ?? void 0,
|
|
5551
5558
|
newAssigneeId: S.resolvedUser.userId
|
|
5552
5559
|
};
|
|
5553
5560
|
} catch (x) {
|
|
@@ -5555,7 +5562,7 @@ const sc = {
|
|
|
5555
5562
|
taskId: b.taskId,
|
|
5556
5563
|
success: !1,
|
|
5557
5564
|
error: x instanceof Error ? x.message : "Update failed",
|
|
5558
|
-
originalAssigneeId:
|
|
5565
|
+
originalAssigneeId: D?.responsibleUid ?? void 0
|
|
5559
5566
|
};
|
|
5560
5567
|
}
|
|
5561
5568
|
}
|
|
@@ -5902,7 +5909,7 @@ const Ic = {
|
|
|
5902
5909
|
totalRequested: s.number().describe("The total number of tasks requested to uncomplete."),
|
|
5903
5910
|
successCount: s.number().describe("The number of successfully uncompleted tasks."),
|
|
5904
5911
|
failureCount: s.number().describe("The number of failed task uncompletions.")
|
|
5905
|
-
},
|
|
5912
|
+
}, Dc = {
|
|
5906
5913
|
name: g.UNCOMPLETE_TASKS,
|
|
5907
5914
|
description: "Uncomplete (reopen) one or more completed tasks by their IDs.",
|
|
5908
5915
|
parameters: jc,
|
|
@@ -5920,7 +5927,7 @@ const Ic = {
|
|
|
5920
5927
|
});
|
|
5921
5928
|
}
|
|
5922
5929
|
return ne(g.UNCOMPLETE_TASKS, e.ids.length, o), {
|
|
5923
|
-
textContent:
|
|
5930
|
+
textContent: Ac({
|
|
5924
5931
|
uncompleted: r,
|
|
5925
5932
|
failures: o,
|
|
5926
5933
|
args: e
|
|
@@ -5935,7 +5942,7 @@ const Ic = {
|
|
|
5935
5942
|
};
|
|
5936
5943
|
}
|
|
5937
5944
|
};
|
|
5938
|
-
function
|
|
5945
|
+
function Ac({
|
|
5939
5946
|
uncompleted: e,
|
|
5940
5947
|
failures: t,
|
|
5941
5948
|
args: r
|
|
@@ -6560,23 +6567,23 @@ const yd = s.object({
|
|
|
6560
6567
|
const h = /* @__PURE__ */ new Map(), m = [], y = (k) => {
|
|
6561
6568
|
const b = k.filter((S) => !S.failed);
|
|
6562
6569
|
b.length !== 0 && m.push(
|
|
6563
|
-
|
|
6570
|
+
Ad({
|
|
6564
6571
|
client: t,
|
|
6565
6572
|
items: b,
|
|
6566
|
-
onUpdated: (S,
|
|
6567
|
-
o[S.index] = { kind: "updated", task:
|
|
6573
|
+
onUpdated: (S, D) => {
|
|
6574
|
+
o[S.index] = { kind: "updated", task: D };
|
|
6568
6575
|
},
|
|
6569
|
-
onFailed: (S,
|
|
6576
|
+
onFailed: (S, D) => {
|
|
6570
6577
|
const x = h.get(S.index);
|
|
6571
6578
|
if (x && "task" in x) {
|
|
6572
6579
|
o[S.index] = {
|
|
6573
6580
|
kind: "partial",
|
|
6574
6581
|
task: x.task,
|
|
6575
|
-
error: `Move applied; field update failed: ${N(
|
|
6582
|
+
error: `Move applied; field update failed: ${N(D)}`
|
|
6576
6583
|
};
|
|
6577
6584
|
return;
|
|
6578
6585
|
}
|
|
6579
|
-
i(S.index,
|
|
6586
|
+
i(S.index, D);
|
|
6580
6587
|
}
|
|
6581
6588
|
})
|
|
6582
6589
|
);
|
|
@@ -6588,9 +6595,9 @@ const yd = s.object({
|
|
|
6588
6595
|
onResolved: (k) => {
|
|
6589
6596
|
const b = [];
|
|
6590
6597
|
for (const { item: S } of k) {
|
|
6591
|
-
const
|
|
6592
|
-
if (
|
|
6593
|
-
n(S.index,
|
|
6598
|
+
const D = h.get(S.index);
|
|
6599
|
+
if (D && "error" in D) {
|
|
6600
|
+
n(S.index, D.error), S.failed = !0;
|
|
6594
6601
|
continue;
|
|
6595
6602
|
}
|
|
6596
6603
|
b.push(S);
|
|
@@ -6604,12 +6611,12 @@ const yd = s.object({
|
|
|
6604
6611
|
const b = h.get(k.index);
|
|
6605
6612
|
b && "task" in b && (o[k.index] = { kind: "updated", task: b.task });
|
|
6606
6613
|
}
|
|
6607
|
-
const { updatedTasks: w, failures: C, skippedCount:
|
|
6614
|
+
const { updatedTasks: w, failures: C, skippedCount: A } = Cd({ tasks: r, outcomes: o }), T = u.filter((k) => k.redundantMoveSkipped).length, I = w.map(P);
|
|
6608
6615
|
return ne(g.UPDATE_TASKS, r.length, C), {
|
|
6609
6616
|
textContent: Od({
|
|
6610
6617
|
tasks: I,
|
|
6611
6618
|
failures: C,
|
|
6612
|
-
skippedCount:
|
|
6619
|
+
skippedCount: A,
|
|
6613
6620
|
redundantMovesSkipped: T
|
|
6614
6621
|
}),
|
|
6615
6622
|
structuredContent: {
|
|
@@ -6619,7 +6626,7 @@ const yd = s.object({
|
|
|
6619
6626
|
failures: C,
|
|
6620
6627
|
appliedOperations: {
|
|
6621
6628
|
updateCount: I.length,
|
|
6622
|
-
skippedCount:
|
|
6629
|
+
skippedCount: A,
|
|
6623
6630
|
failureCount: C.length,
|
|
6624
6631
|
redundantMovesSkipped: T
|
|
6625
6632
|
}
|
|
@@ -6712,12 +6719,12 @@ async function $d({
|
|
|
6712
6719
|
}
|
|
6713
6720
|
}
|
|
6714
6721
|
if (a.length > 0) {
|
|
6715
|
-
await
|
|
6722
|
+
await Dd({ client: e, unresolved: a, results: r });
|
|
6716
6723
|
for (const { group: c } of a)
|
|
6717
6724
|
o(c);
|
|
6718
6725
|
}
|
|
6719
6726
|
}
|
|
6720
|
-
async function
|
|
6727
|
+
async function Dd({
|
|
6721
6728
|
client: e,
|
|
6722
6729
|
unresolved: t,
|
|
6723
6730
|
results: r
|
|
@@ -6735,7 +6742,7 @@ async function Ad({
|
|
|
6735
6742
|
}
|
|
6736
6743
|
}
|
|
6737
6744
|
}
|
|
6738
|
-
async function
|
|
6745
|
+
async function Ad({
|
|
6739
6746
|
client: e,
|
|
6740
6747
|
items: t,
|
|
6741
6748
|
onUpdated: r,
|
|
@@ -6788,8 +6795,8 @@ async function xd({
|
|
|
6788
6795
|
vd
|
|
6789
6796
|
);
|
|
6790
6797
|
C !== void 0 && (w = { ...w, dueString: C });
|
|
6791
|
-
const
|
|
6792
|
-
if (
|
|
6798
|
+
const A = qt(m, wd, null);
|
|
6799
|
+
if (A !== void 0 && (w = { ...w, deadlineDate: A }), u)
|
|
6793
6800
|
try {
|
|
6794
6801
|
const { minutes: T } = us(u);
|
|
6795
6802
|
w = {
|
|
@@ -7084,7 +7091,7 @@ const Qd = {
|
|
|
7084
7091
|
// Task management tools
|
|
7085
7092
|
addTasks: Bn,
|
|
7086
7093
|
completeTasks: Qn,
|
|
7087
|
-
uncompleteTasks:
|
|
7094
|
+
uncompleteTasks: Dc,
|
|
7088
7095
|
updateTasks: Sd,
|
|
7089
7096
|
rescheduleTasks: wc,
|
|
7090
7097
|
findTasks: ga,
|
|
@@ -7102,7 +7109,7 @@ const Qd = {
|
|
|
7102
7109
|
findSections: ia,
|
|
7103
7110
|
// Comment management tools
|
|
7104
7111
|
addComments: Qo,
|
|
7105
|
-
findComments:
|
|
7112
|
+
findComments: Di,
|
|
7106
7113
|
updateComments: _c,
|
|
7107
7114
|
// Reminder management tools
|
|
7108
7115
|
addReminders: _n,
|
|
@@ -7246,7 +7253,7 @@ export {
|
|
|
7246
7253
|
gc as M,
|
|
7247
7254
|
wc as N,
|
|
7248
7255
|
Cc as O,
|
|
7249
|
-
|
|
7256
|
+
Dc as P,
|
|
7250
7257
|
_c as Q,
|
|
7251
7258
|
Nc as R,
|
|
7252
7259
|
Yc as S,
|
|
@@ -7273,7 +7280,7 @@ export {
|
|
|
7273
7280
|
gi as m,
|
|
7274
7281
|
mi as n,
|
|
7275
7282
|
wi as o,
|
|
7276
|
-
|
|
7283
|
+
Di as p,
|
|
7277
7284
|
Li as q,
|
|
7278
7285
|
rn as r,
|
|
7279
7286
|
Hi as s,
|
package/dist/tool-helpers.d.ts
CHANGED
|
@@ -155,6 +155,7 @@ declare function mapTask(task: Task): {
|
|
|
155
155
|
duration: string | undefined;
|
|
156
156
|
responsibleUid: string | undefined;
|
|
157
157
|
assignedByUid: string | undefined;
|
|
158
|
+
isDeleted: true | undefined;
|
|
158
159
|
checked: boolean;
|
|
159
160
|
completedAt: string | undefined;
|
|
160
161
|
addedAt: string | undefined;
|
|
@@ -249,6 +250,7 @@ declare function getTasksByFilter({ client, query, limit, cursor, }: {
|
|
|
249
250
|
duration: string | undefined;
|
|
250
251
|
responsibleUid: string | undefined;
|
|
251
252
|
assignedByUid: string | undefined;
|
|
253
|
+
isDeleted: true | undefined;
|
|
252
254
|
checked: boolean;
|
|
253
255
|
completedAt: string | undefined;
|
|
254
256
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-helpers.d.ts","sourceRoot":"","sources":["../src/tool-helpers.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"tool-helpers.d.ts","sourceRoot":"","sources":["../src/tool-helpers.ts"],"names":[],"mappings":"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"}
|
package/dist/tool-registry.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ declare const toolRegistry: {
|
|
|
58
58
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
59
59
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
60
60
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
61
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
61
62
|
checked: import('zod').ZodBoolean;
|
|
62
63
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
63
64
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -111,6 +112,7 @@ declare const toolRegistry: {
|
|
|
111
112
|
duration: string | undefined;
|
|
112
113
|
responsibleUid: string | undefined;
|
|
113
114
|
assignedByUid: string | undefined;
|
|
115
|
+
isDeleted: true | undefined;
|
|
114
116
|
checked: boolean;
|
|
115
117
|
completedAt: string | undefined;
|
|
116
118
|
addedAt: string | undefined;
|
|
@@ -252,6 +254,7 @@ declare const toolRegistry: {
|
|
|
252
254
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
253
255
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
254
256
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
257
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
255
258
|
checked: import('zod').ZodBoolean;
|
|
256
259
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
257
260
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -310,6 +313,7 @@ declare const toolRegistry: {
|
|
|
310
313
|
duration: string | undefined;
|
|
311
314
|
responsibleUid: string | undefined;
|
|
312
315
|
assignedByUid: string | undefined;
|
|
316
|
+
isDeleted: true | undefined;
|
|
313
317
|
checked: boolean;
|
|
314
318
|
completedAt: string | undefined;
|
|
315
319
|
addedAt: string | undefined;
|
|
@@ -361,6 +365,7 @@ declare const toolRegistry: {
|
|
|
361
365
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
362
366
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
363
367
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
368
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
364
369
|
checked: import('zod').ZodBoolean;
|
|
365
370
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
366
371
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -396,6 +401,7 @@ declare const toolRegistry: {
|
|
|
396
401
|
duration: string | undefined;
|
|
397
402
|
responsibleUid: string | undefined;
|
|
398
403
|
assignedByUid: string | undefined;
|
|
404
|
+
isDeleted: true | undefined;
|
|
399
405
|
checked: boolean;
|
|
400
406
|
completedAt: string | undefined;
|
|
401
407
|
addedAt: string | undefined;
|
|
@@ -451,6 +457,7 @@ declare const toolRegistry: {
|
|
|
451
457
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
452
458
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
453
459
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
460
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
454
461
|
checked: import('zod').ZodBoolean;
|
|
455
462
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
456
463
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -496,6 +503,7 @@ declare const toolRegistry: {
|
|
|
496
503
|
duration: string | undefined;
|
|
497
504
|
responsibleUid: string | undefined;
|
|
498
505
|
assignedByUid: string | undefined;
|
|
506
|
+
isDeleted: true | undefined;
|
|
499
507
|
checked: boolean;
|
|
500
508
|
completedAt: string | undefined;
|
|
501
509
|
addedAt: string | undefined;
|
|
@@ -572,6 +580,7 @@ declare const toolRegistry: {
|
|
|
572
580
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
573
581
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
574
582
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
583
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
575
584
|
checked: import('zod').ZodBoolean;
|
|
576
585
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
577
586
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -614,6 +623,7 @@ declare const toolRegistry: {
|
|
|
614
623
|
duration: string | undefined;
|
|
615
624
|
responsibleUid: string | undefined;
|
|
616
625
|
assignedByUid: string | undefined;
|
|
626
|
+
isDeleted: true | undefined;
|
|
617
627
|
checked: boolean;
|
|
618
628
|
completedAt: string | undefined;
|
|
619
629
|
addedAt: string | undefined;
|
|
@@ -680,6 +690,7 @@ declare const toolRegistry: {
|
|
|
680
690
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
681
691
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
682
692
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
693
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
683
694
|
checked: import('zod').ZodBoolean;
|
|
684
695
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
685
696
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -725,6 +736,7 @@ declare const toolRegistry: {
|
|
|
725
736
|
duration: string | undefined;
|
|
726
737
|
responsibleUid: string | undefined;
|
|
727
738
|
assignedByUid: string | undefined;
|
|
739
|
+
isDeleted: true | undefined;
|
|
728
740
|
checked: boolean;
|
|
729
741
|
completedAt: string | undefined;
|
|
730
742
|
addedAt: string | undefined;
|
|
@@ -3315,6 +3327,7 @@ declare const toolRegistry: {
|
|
|
3315
3327
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3316
3328
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3317
3329
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3330
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3318
3331
|
checked: import('zod').ZodBoolean;
|
|
3319
3332
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3320
3333
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -3414,6 +3427,7 @@ declare const toolRegistry: {
|
|
|
3414
3427
|
duration: string | undefined;
|
|
3415
3428
|
responsibleUid: string | undefined;
|
|
3416
3429
|
assignedByUid: string | undefined;
|
|
3430
|
+
isDeleted: true | undefined;
|
|
3417
3431
|
checked: boolean;
|
|
3418
3432
|
completedAt: string | undefined;
|
|
3419
3433
|
addedAt: string | undefined;
|
|
@@ -3817,6 +3831,7 @@ declare const toolRegistry: {
|
|
|
3817
3831
|
responsibleUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3818
3832
|
isUncompletable: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3819
3833
|
assignedByUid: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3834
|
+
isDeleted: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3820
3835
|
checked: import('zod').ZodBoolean;
|
|
3821
3836
|
completedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
3822
3837
|
addedAt: import('zod').ZodOptional<import('zod').ZodString>;
|
|
@@ -3883,6 +3898,7 @@ declare const toolRegistry: {
|
|
|
3883
3898
|
duration: string | undefined;
|
|
3884
3899
|
responsibleUid: string | undefined;
|
|
3885
3900
|
assignedByUid: string | undefined;
|
|
3901
|
+
isDeleted: true | undefined;
|
|
3886
3902
|
checked: boolean;
|
|
3887
3903
|
completedAt: string | undefined;
|
|
3888
3904
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-registry.d.ts","sourceRoot":"","sources":["../src/tool-registry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAgEvD;;;;;;;;;;GAUG;AACH,QAAA,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"tool-registry.d.ts","sourceRoot":"","sources":["../src/tool-registry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAgEvD;;;;;;;;;;GAUG;AACH,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6EjB,CAAA;AAED;;;;;GAKG;AACH,QAAA,MAAM,eAAe,EAAE,SAAS,cAAc,EAAgC,CAAA;AAE9E,OAAO,EAAE,eAAe,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -48,6 +48,7 @@ declare const addTasks: {
|
|
|
48
48
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
49
49
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
50
50
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
51
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
51
52
|
checked: z.ZodBoolean;
|
|
52
53
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
53
54
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -101,6 +102,7 @@ declare const addTasks: {
|
|
|
101
102
|
duration: string | undefined;
|
|
102
103
|
responsibleUid: string | undefined;
|
|
103
104
|
assignedByUid: string | undefined;
|
|
105
|
+
isDeleted: true | undefined;
|
|
104
106
|
checked: boolean;
|
|
105
107
|
completedAt: string | undefined;
|
|
106
108
|
addedAt: string | undefined;
|
|
@@ -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,oBAAoB,CAAA;AACvE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAwBvB,QAAA,MAAM,uBAAuB,IAAkC,CAAA;AA4D/D,QAAA,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"add-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/add-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAqB,UAAU,EAAE,MAAM,oBAAoB,CAAA;AACvE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAwBvB,QAAA,MAAM,uBAAuB,IAAkC,CAAA;AA4D/D,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAmDwB,MAAM;uBAAS,MAAM;;;;;;;CAkDI,CAAA;AA8L/D,OAAO,EAAE,QAAQ,EAAE,uBAAuB,EAAE,CAAA"}
|
|
@@ -55,6 +55,7 @@ declare const fetchObject: {
|
|
|
55
55
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
56
56
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
57
57
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
58
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
58
59
|
checked: z.ZodBoolean;
|
|
59
60
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
60
61
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -154,6 +155,7 @@ declare const fetchObject: {
|
|
|
154
155
|
duration: string | undefined;
|
|
155
156
|
responsibleUid: string | undefined;
|
|
156
157
|
assignedByUid: string | undefined;
|
|
158
|
+
isDeleted: true | undefined;
|
|
157
159
|
checked: boolean;
|
|
158
160
|
completedAt: string | undefined;
|
|
159
161
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-object.d.ts","sourceRoot":"","sources":["../../src/tools/fetch-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAyCvB,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"fetch-object.d.ts","sourceRoot":"","sources":["../../src/tools/fetch-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAyCvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwF8C,CAAA;AAE/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../src/tools/fetch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,KAAK,WAAW,GAAG;IACf,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CACrC,CAAA;AAaD;;;;;GAKG;AACH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../src/tools/fetch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,KAAK,WAAW,GAAG;IACf,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CACrC,CAAA;AAaD;;;;;GAKG;AACH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;CAsGoD,CAAA;AAE/D,OAAO,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -44,6 +44,7 @@ declare const findCompletedTasks: {
|
|
|
44
44
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
45
45
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
46
46
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
47
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
47
48
|
checked: z.ZodBoolean;
|
|
48
49
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
49
50
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -89,6 +90,7 @@ declare const findCompletedTasks: {
|
|
|
89
90
|
duration: string | undefined;
|
|
90
91
|
responsibleUid: string | undefined;
|
|
91
92
|
assignedByUid: string | undefined;
|
|
93
|
+
isDeleted: true | undefined;
|
|
92
94
|
checked: boolean;
|
|
93
95
|
completedAt: string | undefined;
|
|
94
96
|
addedAt: string | 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;AA8GvB,QAAA,MAAM,kBAAkB
|
|
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;AA8GvB,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8GuC,CAAA;AAkE/D,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
|
|
@@ -68,6 +68,7 @@ declare const findTasksByDate: {
|
|
|
68
68
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
69
69
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
70
70
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
71
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
71
72
|
checked: z.ZodBoolean;
|
|
72
73
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
73
74
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -110,6 +111,7 @@ declare const findTasksByDate: {
|
|
|
110
111
|
duration: string | undefined;
|
|
111
112
|
responsibleUid: string | undefined;
|
|
112
113
|
assignedByUid: string | undefined;
|
|
114
|
+
isDeleted: true | undefined;
|
|
113
115
|
checked: boolean;
|
|
114
116
|
completedAt: string | undefined;
|
|
115
117
|
addedAt: string | undefined;
|
|
@@ -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;AAuBvB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAA;AAUD,QAAA,MAAM,eAAe
|
|
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;AAuBvB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAA;AAUD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8F0C,CAAA;AAyF/D,OAAO,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -45,6 +45,7 @@ declare const findTasks: {
|
|
|
45
45
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
46
46
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
47
47
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
48
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
48
49
|
checked: z.ZodBoolean;
|
|
49
50
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
50
51
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -90,6 +91,7 @@ declare const findTasks: {
|
|
|
90
91
|
duration: string | undefined;
|
|
91
92
|
responsibleUid: string | undefined;
|
|
92
93
|
assignedByUid: string | undefined;
|
|
94
|
+
isDeleted: true | undefined;
|
|
93
95
|
checked: boolean;
|
|
94
96
|
completedAt: string | undefined;
|
|
95
97
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/find-tasks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAqFvB,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"find-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/find-tasks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAqFvB,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgOgD,CAAA;AA2K/D,OAAO,EAAE,SAAS,EAAE,CAAA"}
|
|
@@ -45,6 +45,7 @@ declare const importProjectTemplate: {
|
|
|
45
45
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
46
46
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
47
47
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
48
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
48
49
|
checked: z.ZodBoolean;
|
|
49
50
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
50
51
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -111,6 +112,7 @@ declare const importProjectTemplate: {
|
|
|
111
112
|
duration: string | undefined;
|
|
112
113
|
responsibleUid: string | undefined;
|
|
113
114
|
assignedByUid: string | undefined;
|
|
115
|
+
isDeleted: true | undefined;
|
|
114
116
|
checked: boolean;
|
|
115
117
|
completedAt: string | undefined;
|
|
116
118
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"import-project-template.d.ts","sourceRoot":"","sources":["../../src/tools/import-project-template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAWvB;;;;;;;GAOG;AACH,iBAAS,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CA+BhD;AAwCD,QAAA,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"import-project-template.d.ts","sourceRoot":"","sources":["../../src/tools/import-project-template.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAWvB;;;;;;;GAOG;AACH,iBAAS,iBAAiB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CA+BhD;AAwCD,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CoC,CAAA;AAsB/D,OAAO,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,CAAA"}
|
|
@@ -31,6 +31,7 @@ declare const rescheduleTasks: {
|
|
|
31
31
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
32
32
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
33
33
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
34
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
34
35
|
checked: z.ZodBoolean;
|
|
35
36
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
36
37
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -66,6 +67,7 @@ declare const rescheduleTasks: {
|
|
|
66
67
|
duration: string | undefined;
|
|
67
68
|
responsibleUid: string | undefined;
|
|
68
69
|
assignedByUid: string | undefined;
|
|
70
|
+
isDeleted: true | undefined;
|
|
69
71
|
checked: boolean;
|
|
70
72
|
completedAt: string | undefined;
|
|
71
73
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reschedule-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/reschedule-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAE9C,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA+BvB,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"reschedule-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/reschedule-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,oBAAoB,CAAA;AAE9C,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA+BvB,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuE0C,CAAA;AAE/D,iBAAS,mBAAmB,CAAC,SAAS,EAAE,MAAM,EAAE,WAAW,EAAE,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,MAAM,CAU7F;AAED,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -48,6 +48,7 @@ declare const updateTasks: {
|
|
|
48
48
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
49
49
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
50
50
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
51
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
51
52
|
checked: z.ZodBoolean;
|
|
52
53
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
53
54
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -106,6 +107,7 @@ declare const updateTasks: {
|
|
|
106
107
|
duration: string | undefined;
|
|
107
108
|
responsibleUid: string | undefined;
|
|
108
109
|
assignedByUid: string | undefined;
|
|
110
|
+
isDeleted: true | undefined;
|
|
109
111
|
checked: boolean;
|
|
110
112
|
completedAt: string | undefined;
|
|
111
113
|
addedAt: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/update-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAIR,UAAU,EAEb,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA4LvB,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"update-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/update-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAIR,UAAU,EAEb,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA4LvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAsMW,MAAM;uBAAS,MAAM;uBAAS,MAAM;;;;;;;;;;CARD,CAAA;AA+d/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -24,6 +24,7 @@ declare const TaskSchema: z.ZodObject<{
|
|
|
24
24
|
responsibleUid: z.ZodOptional<z.ZodString>;
|
|
25
25
|
isUncompletable: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
assignedByUid: z.ZodOptional<z.ZodString>;
|
|
27
|
+
isDeleted: z.ZodOptional<z.ZodBoolean>;
|
|
27
28
|
checked: z.ZodBoolean;
|
|
28
29
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
29
30
|
addedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output-schemas.d.ts","sourceRoot":"","sources":["../../src/utils/output-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,KAAK,OAAO,EAAE,MAAM,oBAAoB,CAAA;AACpF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB;;GAEG;AACH,QAAA,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"output-schemas.d.ts","sourceRoot":"","sources":["../../src/utils/output-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,KAAK,OAAO,EAAE,MAAM,oBAAoB,CAAA;AACpF,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAIvB;;GAEG;AACH,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;iBAsBd,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAcjB,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,aAAa;;;;;iBAKjB,CAAA;AAEF,KAAK,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAA;AAEnD;;;;;GAKG;AACH,iBAAS,gBAAgB,CAAC,EAAE,EAAE,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE,EAAE,OAAO,GAAG,cAAc,CAE1F;AAoBD;;GAEG;AACH,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;iBAYjB,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,mBAAmB;;;;;;;;;;iBAUvB,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,kBAAkB;;;;iBAItB,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMf,CAAA;AAaF;;GAEG;AACH,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;iBAYlB,CAAA;AAEF;;GAEG;AACH,QAAA,MAAM,aAAa;;;;iBAIjB,CAAA;AAEF,OAAO,EACH,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,aAAa,EACb,WAAW,EACX,aAAa,EACb,cAAc,EACd,aAAa,EACb,KAAK,cAAc,EACnB,UAAU,EACV,gBAAgB,GACnB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"test-helpers.d.ts","sourceRoot":"","sources":["../../src/utils/test-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,WAAW,EACX,KAAK,EACL,eAAe,EACf,OAAO,EACP,IAAI,EACJ,gBAAgB,EACnB,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,EAA2B,KAAK,QAAQ,EAAE,MAAM,cAAc,CAAA;AAErE,KAAK,0BAA0B,GAAG,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG;IACvD,QAAQ,EAAE,QAAQ,CAAA;CACrB,CAAA;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,EAC3B,QAAe,EACf,GAAG,SAAS,EACf,GAAE,OAAO,CAAC,0BAA0B,CAAM,GAAG,IAAI,CA6BjD;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,GAAE,OAAO,CAAC,OAAO,CAAM,GAAG,OAAO,CAiB3E;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,GAAE,OAAO,CAAC,eAAe,CAAM,GAAG,eAAe,CAuB3F;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CACtC,SAAS,GAAE,OAAO,CAAC,gBAAgB,CAAM,GAC1C,gBAAgB,CA4BlB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,SAAS,GAAE,OAAO,CAAC,KAAK,CAAM,GAAG,KAAK,CASrE;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,EACnC,OAAO,EAAE,CAAC,EAAE,EACZ,UAAU,GAAE,MAAM,GAAG,IAAW,GACjC;IACC,OAAO,EAAE,CAAC,EAAE,CAAA;IACZ,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;CAC5B,CAKA;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,GAAE,OAAO,CAAC,UAAU,CAAM,GAAG,UAAU,
|
|
1
|
+
{"version":3,"file":"test-helpers.d.ts","sourceRoot":"","sources":["../../src/utils/test-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,WAAW,EACX,KAAK,EACL,eAAe,EACf,OAAO,EACP,IAAI,EACJ,gBAAgB,EACnB,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,iBAAiB,CAAA;AACjD,OAAO,EAA2B,KAAK,QAAQ,EAAE,MAAM,cAAc,CAAA;AAErE,KAAK,0BAA0B,GAAG,IAAI,CAAC,IAAI,EAAE,UAAU,CAAC,GAAG;IACvD,QAAQ,EAAE,QAAQ,CAAA;CACrB,CAAA;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,EAC3B,QAAe,EACf,GAAG,SAAS,EACf,GAAE,OAAO,CAAC,0BAA0B,CAAM,GAAG,IAAI,CA6BjD;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,GAAE,OAAO,CAAC,OAAO,CAAM,GAAG,OAAO,CAiB3E;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,GAAE,OAAO,CAAC,eAAe,CAAM,GAAG,eAAe,CAuB3F;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CACtC,SAAS,GAAE,OAAO,CAAC,gBAAgB,CAAM,GAC1C,gBAAgB,CA4BlB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,SAAS,GAAE,OAAO,CAAC,KAAK,CAAM,GAAG,KAAK,CASrE;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,CAAC,EACnC,OAAO,EAAE,CAAC,EAAE,EACZ,UAAU,GAAE,MAAM,GAAG,IAAW,GACjC;IACC,OAAO,EAAE,CAAC,EAAE,CAAA;IACZ,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;CAC5B,CAKA;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,GAAE,OAAO,CAAC,UAAU,CAAM,GAAG,UAAU,CAsBhF;AAED;;GAEG;AACH,eAAO,MAAM,WAAW;;;;;CAKd,CAAA;AAEV;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,EAC3B,MAAM,EACN,KAAK,EACL,GAAG,GACN,EAAE;IACC,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;CACf,GAAG,KAAK,CASR;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,CAAC,EAAE,CAAC,GAAG,OAAO,EAC1C,KAAK,EAAE,KAAK,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC;IAAC,QAAQ,CAAC,EAAE,CAAC,CAAA;CAAE,CAAC;UAAjC,MAAM;WAAS,CAAC;eAAa,CAAC;IAGtD;AAED;;GAEG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;CAYX,CAAA;AAEV;;;GAGG;AACH,eAAO,MAAM,KAAK,EAAG,YAAqB,CAAA;AAE1C;;;GAGG;AACH,wBAAgB,cAAc,CAAC,SAAS,GAAE,OAAO,CAAC,WAAW,CAAM,GAAG,WAAW,CAoChF"}
|