@adhdev/daemon-core 0.9.82-rc.296 → 0.9.82-rc.297

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.js CHANGED
@@ -275,10 +275,10 @@ function readInjected(value) {
275
275
  }
276
276
  function getDaemonBuildInfo() {
277
277
  if (cached) return cached;
278
- const commit = readInjected(true ? "473dc8f049daf72ff7977b90e35ddde4e54f1c2f" : void 0) ?? "unknown";
279
- const commitShort = readInjected(true ? "473dc8f0" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
280
- const version = readInjected(true ? "0.9.82-rc.296" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
281
- const builtAt = readInjected(true ? "2026-06-16T14:24:31.127Z" : void 0);
278
+ const commit = readInjected(true ? "5f22e3d153ae396b06c67b4eb88a98c7461a28d8" : void 0) ?? "unknown";
279
+ const commitShort = readInjected(true ? "5f22e3d1" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
280
+ const version = readInjected(true ? "0.9.82-rc.297" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
281
+ const builtAt = readInjected(true ? "2026-06-16T16:23:46.913Z" : void 0);
282
282
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
283
283
  return cached;
284
284
  }
@@ -15832,9 +15832,8 @@ function buildClaudeInteractiveTuiAnswerSteps(prompt, response) {
15832
15832
  const selectedIndex = question.options.findIndex((option) => option.label === label);
15833
15833
  if (selectedIndex < 0) throw new Error(`Unknown option for ${question.questionId}: ${label}`);
15834
15834
  steps.push(String(selectedIndex + 1));
15835
- steps.push(" ");
15836
15835
  }
15837
- steps.push("\r");
15836
+ steps.push(" ");
15838
15837
  } else if (freeformText) {
15839
15838
  const typeOptionIndex = question.options.findIndex((o) => /^Type something\.?$/i.test(o.label));
15840
15839
  const optionNumber = typeOptionIndex >= 0 ? typeOptionIndex + 1 : question.options.length;