@doist/todoist-ai 4.17.0 → 4.17.1
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/filter-helpers.d.ts +1 -1
- package/dist/filter-helpers.d.ts.map +1 -1
- package/dist/index.d.ts +117 -386
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/main.js +1 -1
- package/dist/mcp-helpers.d.ts +1 -37
- package/dist/mcp-helpers.d.ts.map +1 -1
- package/dist/{mcp-server-BADReNAy.js → mcp-server-BMGcSL1c.js} +926 -960
- package/dist/todoist-tool.d.ts +6 -2
- package/dist/todoist-tool.d.ts.map +1 -1
- package/dist/tool-helpers.d.ts +20 -18
- package/dist/tool-helpers.d.ts.map +1 -1
- package/dist/tools/add-comments.d.ts +1 -15
- package/dist/tools/add-comments.d.ts.map +1 -1
- package/dist/tools/add-projects.d.ts +5 -17
- package/dist/tools/add-projects.d.ts.map +1 -1
- package/dist/tools/add-sections.d.ts +1 -15
- package/dist/tools/add-sections.d.ts.map +1 -1
- package/dist/tools/add-tasks.d.ts +7 -21
- package/dist/tools/add-tasks.d.ts.map +1 -1
- package/dist/tools/complete-tasks.d.ts +1 -15
- package/dist/tools/complete-tasks.d.ts.map +1 -1
- package/dist/tools/delete-object.d.ts +2 -16
- package/dist/tools/delete-object.d.ts.map +1 -1
- package/dist/tools/fetch.d.ts +3 -8
- package/dist/tools/fetch.d.ts.map +1 -1
- package/dist/tools/find-activity.d.ts +13 -27
- package/dist/tools/find-activity.d.ts.map +1 -1
- package/dist/tools/find-comments.d.ts +2 -16
- package/dist/tools/find-comments.d.ts.map +1 -1
- package/dist/tools/find-completed-tasks.d.ts +8 -22
- package/dist/tools/find-completed-tasks.d.ts.map +1 -1
- package/dist/tools/find-project-collaborators.d.ts +20 -20
- package/dist/tools/find-project-collaborators.d.ts.map +1 -1
- package/dist/tools/find-projects.d.ts +3 -17
- package/dist/tools/find-projects.d.ts.map +1 -1
- package/dist/tools/find-sections.d.ts +1 -15
- package/dist/tools/find-sections.d.ts.map +1 -1
- package/dist/tools/find-tasks-by-date.d.ts +8 -22
- package/dist/tools/find-tasks-by-date.d.ts.map +1 -1
- package/dist/tools/find-tasks.d.ts +8 -22
- package/dist/tools/find-tasks.d.ts.map +1 -1
- package/dist/tools/get-overview.d.ts +9 -16
- package/dist/tools/get-overview.d.ts.map +1 -1
- package/dist/tools/manage-assignments.d.ts +5 -19
- package/dist/tools/manage-assignments.d.ts.map +1 -1
- package/dist/tools/search.d.ts +11 -7
- package/dist/tools/search.d.ts.map +1 -1
- package/dist/tools/update-comments.d.ts +1 -15
- package/dist/tools/update-comments.d.ts.map +1 -1
- package/dist/tools/update-projects.d.ts +5 -17
- package/dist/tools/update-projects.d.ts.map +1 -1
- package/dist/tools/update-sections.d.ts +1 -15
- package/dist/tools/update-sections.d.ts.map +1 -1
- package/dist/tools/update-tasks.d.ts +7 -21
- package/dist/tools/update-tasks.d.ts.map +1 -1
- package/dist/tools/user-info.d.ts +1 -15
- package/dist/tools/user-info.d.ts.map +1 -1
- package/dist/utils/output-schemas.d.ts +6 -6
- package/dist/utils/test-helpers.d.ts +1 -33
- package/dist/utils/test-helpers.d.ts.map +1 -1
- package/package.json +13 -13
package/dist/todoist-tool.d.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { TodoistApi } from '@doist/todoist-api-typescript';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
+
type ExecuteResult<Output extends z.ZodRawShape> = Promise<{
|
|
4
|
+
textContent?: string;
|
|
5
|
+
structuredContent?: z.infer<z.ZodObject<Output>>;
|
|
6
|
+
}>;
|
|
3
7
|
/**
|
|
4
8
|
* A Todoist tool that can be used in an MCP server or other conversational AI interfaces.
|
|
5
9
|
*/
|
|
6
|
-
type TodoistTool<Params extends z.ZodRawShape, Output extends z.ZodRawShape
|
|
10
|
+
type TodoistTool<Params extends z.ZodRawShape, Output extends z.ZodRawShape> = {
|
|
7
11
|
/**
|
|
8
12
|
* The name of the tool.
|
|
9
13
|
*/
|
|
@@ -35,7 +39,7 @@ type TodoistTool<Params extends z.ZodRawShape, Output extends z.ZodRawShape = z.
|
|
|
35
39
|
* @param client - The Todoist API client used to make requests to the Todoist API.
|
|
36
40
|
* @returns The result of the tool.
|
|
37
41
|
*/
|
|
38
|
-
execute: (args: z.infer<z.ZodObject<Params>>, client: TodoistApi) =>
|
|
42
|
+
execute: (args: z.infer<z.ZodObject<Params>>, client: TodoistApi) => ExecuteResult<Output>;
|
|
39
43
|
};
|
|
40
44
|
export type { TodoistTool };
|
|
41
45
|
//# sourceMappingURL=todoist-tool.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"todoist-tool.d.ts","sourceRoot":"","sources":["../src/todoist-tool.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAE5B
|
|
1
|
+
{"version":3,"file":"todoist-tool.d.ts","sourceRoot":"","sources":["../src/todoist-tool.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAE5B,KAAK,aAAa,CAAC,MAAM,SAAS,CAAC,CAAC,WAAW,IAAI,OAAO,CAAC;IACvD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,iBAAiB,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,CAAA;CACnD,CAAC,CAAA;AAEF;;GAEG;AACH,KAAK,WAAW,CAAC,MAAM,SAAS,CAAC,CAAC,WAAW,EAAE,MAAM,SAAS,CAAC,CAAC,WAAW,IAAI;IAC3E;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;;OAGG;IACH,WAAW,EAAE,MAAM,CAAA;IAEnB;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAA;IAElB;;;;OAIG;IACH,YAAY,EAAE,MAAM,CAAA;IAEpB;;;;;;;;OAQG;IACH,OAAO,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,UAAU,KAAK,aAAa,CAAC,MAAM,CAAC,CAAA;CAC7F,CAAA;AAED,YAAY,EAAE,WAAW,EAAE,CAAA"}
|
package/dist/tool-helpers.d.ts
CHANGED
|
@@ -27,15 +27,16 @@ declare function mapTask(task: Task): {
|
|
|
27
27
|
deadlineDate: string | undefined;
|
|
28
28
|
priority: number;
|
|
29
29
|
projectId: string;
|
|
30
|
-
sectionId: string |
|
|
31
|
-
parentId: string |
|
|
30
|
+
sectionId: string | undefined;
|
|
31
|
+
parentId: string | undefined;
|
|
32
32
|
labels: string[];
|
|
33
|
-
duration: string |
|
|
34
|
-
responsibleUid: string |
|
|
35
|
-
assignedByUid: string |
|
|
33
|
+
duration: string | undefined;
|
|
34
|
+
responsibleUid: string | undefined;
|
|
35
|
+
assignedByUid: string | undefined;
|
|
36
36
|
checked: boolean;
|
|
37
|
-
completedAt: string |
|
|
37
|
+
completedAt: string | undefined;
|
|
38
38
|
};
|
|
39
|
+
type MappedTask = ReturnType<typeof mapTask>;
|
|
39
40
|
/**
|
|
40
41
|
* Map a single Todoist project to a more structured format, for LLM consumption.
|
|
41
42
|
* @param project - The project to map.
|
|
@@ -47,7 +48,7 @@ declare function mapProject(project: Project): {
|
|
|
47
48
|
color: string;
|
|
48
49
|
isFavorite: boolean;
|
|
49
50
|
isShared: boolean;
|
|
50
|
-
parentId: string |
|
|
51
|
+
parentId: string | undefined;
|
|
51
52
|
inboxProject: boolean;
|
|
52
53
|
viewStyle: string;
|
|
53
54
|
};
|
|
@@ -57,15 +58,15 @@ declare function mapProject(project: Project): {
|
|
|
57
58
|
* @returns The mapped activity event.
|
|
58
59
|
*/
|
|
59
60
|
declare function mapActivityEvent(event: ActivityEvent): {
|
|
60
|
-
id: string |
|
|
61
|
+
id: string | undefined;
|
|
61
62
|
objectType: string;
|
|
62
63
|
objectId: string;
|
|
63
64
|
eventType: string;
|
|
64
65
|
eventDate: string;
|
|
65
|
-
parentProjectId: string |
|
|
66
|
-
parentItemId: string |
|
|
67
|
-
initiatorId: string |
|
|
68
|
-
extraData: Record<string, any> |
|
|
66
|
+
parentProjectId: string | undefined;
|
|
67
|
+
parentItemId: string | undefined;
|
|
68
|
+
initiatorId: string | undefined;
|
|
69
|
+
extraData: Record<string, any> | undefined;
|
|
69
70
|
};
|
|
70
71
|
declare function getTasksByFilter({ client, query, limit, cursor, }: {
|
|
71
72
|
client: TodoistApi;
|
|
@@ -82,16 +83,17 @@ declare function getTasksByFilter({ client, query, limit, cursor, }: {
|
|
|
82
83
|
deadlineDate: string | undefined;
|
|
83
84
|
priority: number;
|
|
84
85
|
projectId: string;
|
|
85
|
-
sectionId: string |
|
|
86
|
-
parentId: string |
|
|
86
|
+
sectionId: string | undefined;
|
|
87
|
+
parentId: string | undefined;
|
|
87
88
|
labels: string[];
|
|
88
|
-
duration: string |
|
|
89
|
-
responsibleUid: string |
|
|
90
|
-
assignedByUid: string |
|
|
89
|
+
duration: string | undefined;
|
|
90
|
+
responsibleUid: string | undefined;
|
|
91
|
+
assignedByUid: string | undefined;
|
|
91
92
|
checked: boolean;
|
|
92
|
-
completedAt: string |
|
|
93
|
+
completedAt: string | undefined;
|
|
93
94
|
}[];
|
|
94
95
|
nextCursor: string | null;
|
|
95
96
|
}>;
|
|
96
97
|
export { getTasksByFilter, mapActivityEvent, mapProject, mapTask };
|
|
98
|
+
export type { MappedTask };
|
|
97
99
|
//# sourceMappingURL=tool-helpers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-helpers.d.ts","sourceRoot":"","sources":["../src/tool-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,aAAa,EACb,YAAY,EACZ,eAAe,EACf,IAAI,EACJ,UAAU,EACV,gBAAgB,EACnB,MAAM,+BAA+B,CAAA;AAKtC,OAAO,EACH,aAAa,EACb,+BAA+B,EAC/B,4BAA4B,EAC5B,0BAA0B,EAC1B,KAAK,wBAAwB,EAC7B,sBAAsB,GACzB,MAAM,qBAAqB,CAAA;AAE5B,MAAM,MAAM,OAAO,GAAG,eAAe,GAAG,gBAAgB,CAAA;AAExD,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,eAAe,CAE9E;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,gBAAgB,CAEhF;AAED;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAC9B,MAAM,EAAE,MAAM,EACd,SAAS,CAAC,EAAE,MAAM,EAClB,SAAS,CAAC,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,MAAM,GAClB,YAAY,CAsBd;AAED;;;;GAIG;AACH,iBAAS,OAAO,CAAC,IAAI,EAAE,IAAI;;;;;;;;;;;;;;;;;EAmB1B;AAED;;;;GAIG;AACH,iBAAS,UAAU,CAAC,OAAO,EAAE,OAAO;;;;;;;;;EAWnC;AAED;;;;GAIG;AACH,iBAAS,gBAAgB,CAAC,KAAK,EAAE,aAAa;;;;;;;;;;EAY7C;AAWD,iBAAe,gBAAgB,CAAC,EAC5B,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,GACT,EAAE;IACC,MAAM,EAAE,UAAU,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,MAAM,EAAE,MAAM,GAAG,SAAS,CAAA;CAC7B;;;;;;;;;;;;;;;;;;;;GAkBA;AAED,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,UAAU,EAAE,OAAO,EAAE,CAAA"}
|
|
1
|
+
{"version":3,"file":"tool-helpers.d.ts","sourceRoot":"","sources":["../src/tool-helpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,aAAa,EACb,YAAY,EACZ,eAAe,EACf,IAAI,EACJ,UAAU,EACV,gBAAgB,EACnB,MAAM,+BAA+B,CAAA;AAKtC,OAAO,EACH,aAAa,EACb,+BAA+B,EAC/B,4BAA4B,EAC5B,0BAA0B,EAC1B,KAAK,wBAAwB,EAC7B,sBAAsB,GACzB,MAAM,qBAAqB,CAAA;AAE5B,MAAM,MAAM,OAAO,GAAG,eAAe,GAAG,gBAAgB,CAAA;AAExD,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,eAAe,CAE9E;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,IAAI,gBAAgB,CAEhF;AAED;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAC9B,MAAM,EAAE,MAAM,EACd,SAAS,CAAC,EAAE,MAAM,EAClB,SAAS,CAAC,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,MAAM,GAClB,YAAY,CAsBd;AAED;;;;GAIG;AACH,iBAAS,OAAO,CAAC,IAAI,EAAE,IAAI;;;;;;;;;;;;;;;;;EAmB1B;AAED,KAAK,UAAU,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,CAAA;AAE5C;;;;GAIG;AACH,iBAAS,UAAU,CAAC,OAAO,EAAE,OAAO;;;;;;;;;EAWnC;AAED;;;;GAIG;AACH,iBAAS,gBAAgB,CAAC,KAAK,EAAE,aAAa;;;;;;;;;;EAY7C;AAWD,iBAAe,gBAAgB,CAAC,EAC5B,MAAM,EACN,KAAK,EACL,KAAK,EACL,MAAM,GACT,EAAE;IACC,MAAM,EAAE,UAAU,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,MAAM,EAAE,MAAM,GAAG,SAAS,CAAA;CAC7B;;;;;;;;;;;;;;;;;;;;GAkBA;AAED,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,UAAU,EAAE,OAAO,EAAE,CAAA;AAClE,YAAY,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -90,10 +90,7 @@ declare const addComments: {
|
|
|
90
90
|
taskId?: string | undefined;
|
|
91
91
|
}[];
|
|
92
92
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
93
|
-
|
|
94
|
-
type: "text";
|
|
95
|
-
text: string;
|
|
96
|
-
}[];
|
|
93
|
+
textContent: string;
|
|
97
94
|
structuredContent: {
|
|
98
95
|
comments: {
|
|
99
96
|
taskId: string | undefined;
|
|
@@ -123,17 +120,6 @@ declare const addComments: {
|
|
|
123
120
|
totalCount: number;
|
|
124
121
|
addedCommentIds: string[];
|
|
125
122
|
};
|
|
126
|
-
} | {
|
|
127
|
-
content: ({
|
|
128
|
-
type: "text";
|
|
129
|
-
text: string;
|
|
130
|
-
mimeType?: undefined;
|
|
131
|
-
} | {
|
|
132
|
-
type: "text";
|
|
133
|
-
mimeType: string;
|
|
134
|
-
text: string;
|
|
135
|
-
})[];
|
|
136
|
-
structuredContent?: undefined;
|
|
137
123
|
}>;
|
|
138
124
|
};
|
|
139
125
|
export { addComments };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-comments.d.ts","sourceRoot":"","sources":["../../src/tools/add-comments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"add-comments.d.ts","sourceRoot":"","sources":["../../src/tools/add-comments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA0BvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAyEopV,CAAC;4BAA6C,CAAC;4BAA6C,CAAC;2BAA4C,CAAC;gCAAiD,CAAC;+BAAgD,CAAC;yBAA2D,CAAC;8BAA+C,CAAC;+BAAgD,CAAC;uBAAwC,CAAC;yBAA0C,CAAC;;;;;;;;;;;;CAvBpkW,CAAA;AAsB/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -59,12 +59,11 @@ declare const addProjects: {
|
|
|
59
59
|
viewStyle?: "list" | "board" | "calendar" | undefined;
|
|
60
60
|
}[];
|
|
61
61
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
62
|
-
|
|
63
|
-
type: "text";
|
|
64
|
-
text: string;
|
|
65
|
-
}[];
|
|
62
|
+
textContent: string;
|
|
66
63
|
structuredContent: {
|
|
67
64
|
projects: ({
|
|
65
|
+
parentId: string | undefined;
|
|
66
|
+
inboxProject: boolean;
|
|
68
67
|
url: string;
|
|
69
68
|
id: string;
|
|
70
69
|
canAssignTasks: boolean;
|
|
@@ -82,9 +81,9 @@ declare const addProjects: {
|
|
|
82
81
|
description: string;
|
|
83
82
|
isCollapsed: boolean;
|
|
84
83
|
isShared: boolean;
|
|
85
|
-
parentId: string | null;
|
|
86
|
-
inboxProject: boolean;
|
|
87
84
|
} | {
|
|
85
|
+
parentId: string | undefined;
|
|
86
|
+
inboxProject: boolean;
|
|
88
87
|
url: string;
|
|
89
88
|
id: string;
|
|
90
89
|
canAssignTasks: boolean;
|
|
@@ -112,17 +111,6 @@ declare const addProjects: {
|
|
|
112
111
|
})[];
|
|
113
112
|
totalCount: number;
|
|
114
113
|
};
|
|
115
|
-
} | {
|
|
116
|
-
content: ({
|
|
117
|
-
type: "text";
|
|
118
|
-
text: string;
|
|
119
|
-
mimeType?: undefined;
|
|
120
|
-
} | {
|
|
121
|
-
type: "text";
|
|
122
|
-
mimeType: string;
|
|
123
|
-
text: string;
|
|
124
|
-
})[];
|
|
125
|
-
structuredContent?: undefined;
|
|
126
114
|
}>;
|
|
127
115
|
};
|
|
128
116
|
export { addProjects };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-projects.d.ts","sourceRoot":"","sources":["../../src/tools/add-projects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"add-projects.d.ts","sourceRoot":"","sources":["../../src/tools/add-projects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA8BvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsB8C,CAAA;AAW/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -33,10 +33,7 @@ declare const addSections: {
|
|
|
33
33
|
projectId: string;
|
|
34
34
|
}[];
|
|
35
35
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
36
|
-
|
|
37
|
-
type: "text";
|
|
38
|
-
text: string;
|
|
39
|
-
}[];
|
|
36
|
+
textContent: string;
|
|
40
37
|
structuredContent: {
|
|
41
38
|
sections: {
|
|
42
39
|
url: string;
|
|
@@ -54,17 +51,6 @@ declare const addSections: {
|
|
|
54
51
|
}[];
|
|
55
52
|
totalCount: number;
|
|
56
53
|
};
|
|
57
|
-
} | {
|
|
58
|
-
content: ({
|
|
59
|
-
type: "text";
|
|
60
|
-
text: string;
|
|
61
|
-
mimeType?: undefined;
|
|
62
|
-
} | {
|
|
63
|
-
type: "text";
|
|
64
|
-
mimeType: string;
|
|
65
|
-
text: string;
|
|
66
|
-
})[];
|
|
67
|
-
structuredContent?: undefined;
|
|
68
54
|
}>;
|
|
69
55
|
};
|
|
70
56
|
export { addSections };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"add-sections.d.ts","sourceRoot":"","sources":["../../src/tools/add-sections.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"add-sections.d.ts","sourceRoot":"","sources":["../../src/tools/add-sections.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAwBvB,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgC8C,CAAA;AAa/D,OAAO,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -112,10 +112,7 @@ declare const addTasks: {
|
|
|
112
112
|
responsibleUser?: string | undefined;
|
|
113
113
|
}[];
|
|
114
114
|
}, client: TodoistApi): Promise<{
|
|
115
|
-
|
|
116
|
-
type: "text";
|
|
117
|
-
text: string;
|
|
118
|
-
}[];
|
|
115
|
+
textContent: string;
|
|
119
116
|
structuredContent: {
|
|
120
117
|
tasks: {
|
|
121
118
|
id: string;
|
|
@@ -126,28 +123,17 @@ declare const addTasks: {
|
|
|
126
123
|
deadlineDate: string | undefined;
|
|
127
124
|
priority: number;
|
|
128
125
|
projectId: string;
|
|
129
|
-
sectionId: string |
|
|
130
|
-
parentId: string |
|
|
126
|
+
sectionId: string | undefined;
|
|
127
|
+
parentId: string | undefined;
|
|
131
128
|
labels: string[];
|
|
132
|
-
duration: string |
|
|
133
|
-
responsibleUid: string |
|
|
134
|
-
assignedByUid: string |
|
|
129
|
+
duration: string | undefined;
|
|
130
|
+
responsibleUid: string | undefined;
|
|
131
|
+
assignedByUid: string | undefined;
|
|
135
132
|
checked: boolean;
|
|
136
|
-
completedAt: string |
|
|
133
|
+
completedAt: string | undefined;
|
|
137
134
|
}[];
|
|
138
135
|
totalCount: number;
|
|
139
136
|
};
|
|
140
|
-
} | {
|
|
141
|
-
content: ({
|
|
142
|
-
type: "text";
|
|
143
|
-
text: string;
|
|
144
|
-
mimeType?: undefined;
|
|
145
|
-
} | {
|
|
146
|
-
type: "text";
|
|
147
|
-
mimeType: string;
|
|
148
|
-
text: string;
|
|
149
|
-
})[];
|
|
150
|
-
structuredContent?: undefined;
|
|
151
137
|
}>;
|
|
152
138
|
};
|
|
153
139
|
export { addTasks };
|
|
@@ -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;AAiEvB,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBiD,CAAA;AA0I/D,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -27,10 +27,7 @@ declare const completeTasks: {
|
|
|
27
27
|
execute(args: {
|
|
28
28
|
ids: string[];
|
|
29
29
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
30
|
-
|
|
31
|
-
type: "text";
|
|
32
|
-
text: string;
|
|
33
|
-
}[];
|
|
30
|
+
textContent: string;
|
|
34
31
|
structuredContent: {
|
|
35
32
|
completed: string[];
|
|
36
33
|
failures: {
|
|
@@ -42,17 +39,6 @@ declare const completeTasks: {
|
|
|
42
39
|
successCount: number;
|
|
43
40
|
failureCount: number;
|
|
44
41
|
};
|
|
45
|
-
} | {
|
|
46
|
-
content: ({
|
|
47
|
-
type: "text";
|
|
48
|
-
text: string;
|
|
49
|
-
mimeType?: undefined;
|
|
50
|
-
} | {
|
|
51
|
-
type: "text";
|
|
52
|
-
mimeType: string;
|
|
53
|
-
text: string;
|
|
54
|
-
})[];
|
|
55
|
-
structuredContent?: undefined;
|
|
56
42
|
}>;
|
|
57
43
|
};
|
|
58
44
|
export { completeTasks };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complete-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/complete-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"complete-tasks.d.ts","sourceRoot":"","sources":["../../src/tools/complete-tasks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAkBvB,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAOmB,MAAM;uBAAS,MAAM;uBAAS,MAAM;;;;;;;CAgCX,CAAA;AAoB/D,OAAO,EAAE,aAAa,EAAE,CAAA"}
|
|
@@ -23,28 +23,14 @@ declare const deleteObject: {
|
|
|
23
23
|
type: "comment" | "task" | "project" | "section";
|
|
24
24
|
id: string;
|
|
25
25
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
26
|
-
|
|
27
|
-
type: "text";
|
|
28
|
-
text: string;
|
|
29
|
-
}[];
|
|
26
|
+
textContent: string;
|
|
30
27
|
structuredContent: {
|
|
31
28
|
deletedEntity: {
|
|
32
29
|
type: "comment" | "task" | "project" | "section";
|
|
33
30
|
id: string;
|
|
34
31
|
};
|
|
35
|
-
success:
|
|
32
|
+
success: true;
|
|
36
33
|
};
|
|
37
|
-
} | {
|
|
38
|
-
content: ({
|
|
39
|
-
type: "text";
|
|
40
|
-
text: string;
|
|
41
|
-
mimeType?: undefined;
|
|
42
|
-
} | {
|
|
43
|
-
type: "text";
|
|
44
|
-
mimeType: string;
|
|
45
|
-
text: string;
|
|
46
|
-
})[];
|
|
47
|
-
structuredContent?: undefined;
|
|
48
34
|
}>;
|
|
49
35
|
};
|
|
50
36
|
export { deleteObject };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-object.d.ts","sourceRoot":"","sources":["../../src/tools/delete-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"delete-object.d.ts","sourceRoot":"","sources":["../../src/tools/delete-object.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAuBvB,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6B6C,CAAA;AAE/D,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
package/dist/tools/fetch.d.ts
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
type FetchToolOutput = {
|
|
3
|
-
content: {
|
|
4
|
-
type: 'text';
|
|
5
|
-
text: string;
|
|
6
|
-
}[];
|
|
7
|
-
isError?: boolean;
|
|
8
|
-
};
|
|
9
2
|
/**
|
|
10
3
|
* OpenAI MCP fetch tool - retrieves the full contents of a task or project by ID.
|
|
11
4
|
*
|
|
@@ -27,7 +20,9 @@ declare const fetch: {
|
|
|
27
20
|
};
|
|
28
21
|
execute(args: {
|
|
29
22
|
id: string;
|
|
30
|
-
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<
|
|
23
|
+
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
24
|
+
textContent: string;
|
|
25
|
+
}>;
|
|
31
26
|
};
|
|
32
27
|
export { fetch };
|
|
33
28
|
//# sourceMappingURL=fetch.d.ts.map
|
|
@@ -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;
|
|
1
|
+
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../src/tools/fetch.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA8BvB;;;;;GAKG;AACH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;CAuFoD,CAAA;AAE/D,OAAO,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -14,7 +14,7 @@ declare const findActivity: {
|
|
|
14
14
|
};
|
|
15
15
|
outputSchema: {
|
|
16
16
|
events: z.ZodArray<z.ZodObject<{
|
|
17
|
-
id: z.ZodString
|
|
17
|
+
id: z.ZodOptional<z.ZodString>;
|
|
18
18
|
objectType: z.ZodString;
|
|
19
19
|
objectId: z.ZodString;
|
|
20
20
|
eventType: z.ZodString;
|
|
@@ -22,27 +22,27 @@ declare const findActivity: {
|
|
|
22
22
|
parentProjectId: z.ZodOptional<z.ZodString>;
|
|
23
23
|
parentItemId: z.ZodOptional<z.ZodString>;
|
|
24
24
|
initiatorId: z.ZodOptional<z.ZodString>;
|
|
25
|
-
extraData: z.ZodRecord<z.ZodString, z.ZodUnknown
|
|
25
|
+
extraData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
|
-
id: string;
|
|
28
27
|
objectType: string;
|
|
29
28
|
objectId: string;
|
|
30
29
|
eventType: string;
|
|
31
30
|
eventDate: string;
|
|
32
|
-
|
|
31
|
+
id?: string | undefined;
|
|
33
32
|
parentProjectId?: string | undefined;
|
|
34
33
|
parentItemId?: string | undefined;
|
|
35
34
|
initiatorId?: string | undefined;
|
|
35
|
+
extraData?: Record<string, unknown> | undefined;
|
|
36
36
|
}, {
|
|
37
|
-
id: string;
|
|
38
37
|
objectType: string;
|
|
39
38
|
objectId: string;
|
|
40
39
|
eventType: string;
|
|
41
40
|
eventDate: string;
|
|
42
|
-
|
|
41
|
+
id?: string | undefined;
|
|
43
42
|
parentProjectId?: string | undefined;
|
|
44
43
|
parentItemId?: string | undefined;
|
|
45
44
|
initiatorId?: string | undefined;
|
|
45
|
+
extraData?: Record<string, unknown> | undefined;
|
|
46
46
|
}>, "many">;
|
|
47
47
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
48
48
|
totalCount: z.ZodNumber;
|
|
@@ -59,23 +59,20 @@ declare const findActivity: {
|
|
|
59
59
|
initiatorId?: string | undefined;
|
|
60
60
|
cursor?: string | undefined;
|
|
61
61
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
62
|
-
|
|
63
|
-
type: "text";
|
|
64
|
-
text: string;
|
|
65
|
-
}[];
|
|
62
|
+
textContent: string;
|
|
66
63
|
structuredContent: {
|
|
67
64
|
events: {
|
|
68
|
-
id: string |
|
|
65
|
+
id: string | undefined;
|
|
69
66
|
objectType: string;
|
|
70
67
|
objectId: string;
|
|
71
68
|
eventType: string;
|
|
72
69
|
eventDate: string;
|
|
73
|
-
parentProjectId: string |
|
|
74
|
-
parentItemId: string |
|
|
75
|
-
initiatorId: string |
|
|
76
|
-
extraData: Record<string, any> |
|
|
70
|
+
parentProjectId: string | undefined;
|
|
71
|
+
parentItemId: string | undefined;
|
|
72
|
+
initiatorId: string | undefined;
|
|
73
|
+
extraData: Record<string, any> | undefined;
|
|
77
74
|
}[];
|
|
78
|
-
nextCursor: string |
|
|
75
|
+
nextCursor: string | undefined;
|
|
79
76
|
totalCount: number;
|
|
80
77
|
hasMore: boolean;
|
|
81
78
|
appliedFilters: {
|
|
@@ -89,17 +86,6 @@ declare const findActivity: {
|
|
|
89
86
|
cursor?: string | undefined;
|
|
90
87
|
};
|
|
91
88
|
};
|
|
92
|
-
} | {
|
|
93
|
-
content: ({
|
|
94
|
-
type: "text";
|
|
95
|
-
text: string;
|
|
96
|
-
mimeType?: undefined;
|
|
97
|
-
} | {
|
|
98
|
-
type: "text";
|
|
99
|
-
mimeType: string;
|
|
100
|
-
text: string;
|
|
101
|
-
})[];
|
|
102
|
-
structuredContent?: undefined;
|
|
103
89
|
}>;
|
|
104
90
|
};
|
|
105
91
|
export { findActivity };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-activity.d.ts","sourceRoot":"","sources":["../../src/tools/find-activity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"find-activity.d.ts","sourceRoot":"","sources":["../../src/tools/find-activity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AA8DvB,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwC6C,CAAA;AAuI/D,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -82,10 +82,7 @@ declare const findComments: {
|
|
|
82
82
|
cursor?: string | undefined;
|
|
83
83
|
commentId?: string | undefined;
|
|
84
84
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
85
|
-
|
|
86
|
-
type: "text";
|
|
87
|
-
text: string;
|
|
88
|
-
}[];
|
|
85
|
+
textContent: string;
|
|
89
86
|
structuredContent: {
|
|
90
87
|
comments: {
|
|
91
88
|
taskId: string | undefined;
|
|
@@ -115,20 +112,9 @@ declare const findComments: {
|
|
|
115
112
|
searchType: string;
|
|
116
113
|
searchId: string;
|
|
117
114
|
hasMore: boolean;
|
|
118
|
-
nextCursor: string |
|
|
115
|
+
nextCursor: string | undefined;
|
|
119
116
|
totalCount: number;
|
|
120
117
|
};
|
|
121
|
-
} | {
|
|
122
|
-
content: ({
|
|
123
|
-
type: "text";
|
|
124
|
-
text: string;
|
|
125
|
-
mimeType?: undefined;
|
|
126
|
-
} | {
|
|
127
|
-
type: "text";
|
|
128
|
-
mimeType: string;
|
|
129
|
-
text: string;
|
|
130
|
-
})[];
|
|
131
|
-
structuredContent?: undefined;
|
|
132
118
|
}>;
|
|
133
119
|
};
|
|
134
120
|
export { findComments };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-comments.d.ts","sourceRoot":"","sources":["../../src/tools/find-comments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"find-comments.d.ts","sourceRoot":"","sources":["../../src/tools/find-comments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAgCvB,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BA+HgmR,CAAC;4BAA6C,CAAC;4BAA6C,CAAC;2BAA4C,CAAC;gCAAiD,CAAC;+BAAgD,CAAC;yBAA2D,CAAC;8BAA+C,CAAC;+BAAgD,CAAC;uBAAwC,CAAC;yBAA0C,CAAC;;;;;;;;;;;;;;;CApDjhS,CAAA;AAmD/D,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -88,10 +88,7 @@ declare const findCompletedTasks: {
|
|
|
88
88
|
responsibleUser?: string | undefined;
|
|
89
89
|
labelsOperator?: "and" | "or" | undefined;
|
|
90
90
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
91
|
-
|
|
92
|
-
type: "text";
|
|
93
|
-
text: string;
|
|
94
|
-
}[];
|
|
91
|
+
textContent: string;
|
|
95
92
|
structuredContent: {
|
|
96
93
|
tasks: {
|
|
97
94
|
id: string;
|
|
@@ -102,16 +99,16 @@ declare const findCompletedTasks: {
|
|
|
102
99
|
deadlineDate: string | undefined;
|
|
103
100
|
priority: number;
|
|
104
101
|
projectId: string;
|
|
105
|
-
sectionId: string |
|
|
106
|
-
parentId: string |
|
|
102
|
+
sectionId: string | undefined;
|
|
103
|
+
parentId: string | undefined;
|
|
107
104
|
labels: string[];
|
|
108
|
-
duration: string |
|
|
109
|
-
responsibleUid: string |
|
|
110
|
-
assignedByUid: string |
|
|
105
|
+
duration: string | undefined;
|
|
106
|
+
responsibleUid: string | undefined;
|
|
107
|
+
assignedByUid: string | undefined;
|
|
111
108
|
checked: boolean;
|
|
112
|
-
completedAt: string |
|
|
109
|
+
completedAt: string | undefined;
|
|
113
110
|
}[];
|
|
114
|
-
nextCursor: string |
|
|
111
|
+
nextCursor: string | undefined;
|
|
115
112
|
totalCount: number;
|
|
116
113
|
hasMore: boolean;
|
|
117
114
|
appliedFilters: {
|
|
@@ -129,17 +126,6 @@ declare const findCompletedTasks: {
|
|
|
129
126
|
labelsOperator?: "and" | "or" | undefined;
|
|
130
127
|
};
|
|
131
128
|
};
|
|
132
|
-
} | {
|
|
133
|
-
content: ({
|
|
134
|
-
type: "text";
|
|
135
|
-
text: string;
|
|
136
|
-
mimeType?: undefined;
|
|
137
|
-
} | {
|
|
138
|
-
type: "text";
|
|
139
|
-
mimeType: string;
|
|
140
|
-
text: string;
|
|
141
|
-
})[];
|
|
142
|
-
structuredContent?: undefined;
|
|
143
129
|
}>;
|
|
144
130
|
};
|
|
145
131
|
export { findCompletedTasks };
|
|
@@ -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;AAqEvB,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EuC,CAAA;AA+D/D,OAAO,EAAE,kBAAkB,EAAE,CAAA"}
|
|
@@ -42,45 +42,45 @@ declare const findProjectCollaborators: {
|
|
|
42
42
|
projectId: string;
|
|
43
43
|
searchTerm?: string | undefined;
|
|
44
44
|
}, client: import('@doist/todoist-api-typescript').TodoistApi): Promise<{
|
|
45
|
-
|
|
46
|
-
type: "text";
|
|
47
|
-
text: string;
|
|
48
|
-
}[];
|
|
45
|
+
textContent: string;
|
|
49
46
|
structuredContent: {
|
|
50
47
|
collaborators: never[];
|
|
51
48
|
projectInfo: {
|
|
52
49
|
id: string;
|
|
53
50
|
name: string;
|
|
54
|
-
isShared:
|
|
51
|
+
isShared: false;
|
|
55
52
|
};
|
|
56
53
|
totalCount: number;
|
|
57
54
|
appliedFilters: {
|
|
58
55
|
projectId: string;
|
|
59
56
|
searchTerm?: string | undefined;
|
|
60
57
|
};
|
|
58
|
+
totalAvailable?: undefined;
|
|
61
59
|
};
|
|
62
60
|
} | {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
61
|
+
textContent: string;
|
|
62
|
+
structuredContent: {
|
|
63
|
+
collaborators: never[];
|
|
64
|
+
projectInfo: {
|
|
65
|
+
id: string;
|
|
66
|
+
name: string;
|
|
67
|
+
isShared: true;
|
|
68
|
+
};
|
|
69
|
+
totalCount: number;
|
|
70
|
+
appliedFilters: {
|
|
71
|
+
projectId: string;
|
|
72
|
+
searchTerm?: string | undefined;
|
|
73
|
+
};
|
|
74
|
+
totalAvailable?: undefined;
|
|
75
|
+
};
|
|
73
76
|
} | {
|
|
74
|
-
|
|
75
|
-
type: "text";
|
|
76
|
-
text: string;
|
|
77
|
-
}[];
|
|
77
|
+
textContent: string;
|
|
78
78
|
structuredContent: {
|
|
79
79
|
collaborators: ProjectCollaborator[];
|
|
80
80
|
projectInfo: {
|
|
81
81
|
id: string;
|
|
82
82
|
name: string;
|
|
83
|
-
isShared:
|
|
83
|
+
isShared: true;
|
|
84
84
|
};
|
|
85
85
|
totalCount: number;
|
|
86
86
|
totalAvailable: number;
|