@dalmasonto/taskflow-mcp 1.0.3 → 1.0.4
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/tools/tasks.js +2 -3
- package/package.json +1 -1
package/dist/tools/tasks.js
CHANGED
|
@@ -303,9 +303,8 @@ export async function updateTaskStatus(params) {
|
|
|
303
303
|
statusAction = 'task_status_changed';
|
|
304
304
|
}
|
|
305
305
|
const updated = db.prepare('SELECT * FROM tasks WHERE id = ?').get(params.id);
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
return successResponse(updatedTask);
|
|
306
|
+
broadcastChange('task', statusAction, parseTask(updated));
|
|
307
|
+
return successResponse(parseTaskCompact(updated));
|
|
309
308
|
}
|
|
310
309
|
export async function deleteTask(params) {
|
|
311
310
|
const db = getDb();
|