@krodak/clickup-cli 1.9.1 → 1.9.2

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "clickup-cli",
3
3
  "description": "ClickUp CLI skills for managing tasks, sprints, comments, checklists, custom fields, tags, and time tracking via the cup command",
4
- "version": "1.9.1",
4
+ "version": "1.9.2",
5
5
  "author": {
6
6
  "name": "Krzysztof Rodak"
7
7
  },
package/dist/index.js CHANGED
@@ -2051,7 +2051,7 @@ async function fetchSubtasks(config, taskId, options = {}) {
2051
2051
  const typeMap = buildTypeMap(customTypes);
2052
2052
  const tasks = await client.getTasksFromList(
2053
2053
  parent.list.id,
2054
- { parent: taskId, subtasks: "false" },
2054
+ { parent: parent.id, subtasks: "false" },
2055
2055
  { includeClosed: options.includeClosed }
2056
2056
  );
2057
2057
  return tasks.map((t) => summarize(t, typeMap));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krodak/clickup-cli",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "ClickUp CLI for AI agents and humans",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -60,8 +60,8 @@
60
60
  "prettier": "^3.8.1",
61
61
  "tsup": "^8.0.0",
62
62
  "tsx": "^4.0.0",
63
- "typescript": "^5.0.0",
63
+ "typescript": "^6.0.2",
64
64
  "typescript-eslint": "^8.56.1",
65
- "vitest": "^2.0.0"
65
+ "vitest": "^4.1.1"
66
66
  }
67
67
  }