coder-config 0.44.20 → 0.44.22

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/lib/constants.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Constants and tool path configurations
3
3
  */
4
4
 
5
- const VERSION = '0.44.20';
5
+ const VERSION = '0.44.22';
6
6
 
7
7
  // Tool-specific path configurations
8
8
  const TOOL_PATHS = {
package/lib/loops.js CHANGED
@@ -305,6 +305,8 @@ function loopUpdate(installDir, idOrName, updates) {
305
305
  if (updates.taskComplete !== undefined) state.taskComplete = updates.taskComplete;
306
306
  if (updates.completedAt !== undefined) state.completedAt = updates.completedAt;
307
307
  if (updates.pauseReason !== undefined) state.pauseReason = updates.pauseReason;
308
+ if (updates.completionPromise !== undefined) state.completionPromise = updates.completionPromise;
309
+ if (updates.workstreamId !== undefined) state.workstreamId = updates.workstreamId;
308
310
 
309
311
  // Update task fields
310
312
  if (updates.task) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coder-config",
3
- "version": "0.44.20",
3
+ "version": "0.44.22",
4
4
  "description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",