@adhdev/daemon-standalone 1.0.31 → 1.0.32-rc.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.
package/dist/index.js CHANGED
@@ -33319,10 +33319,10 @@ var require_dist3 = __commonJS({
33319
33319
  }
33320
33320
  function getDaemonBuildInfo() {
33321
33321
  if (cached2) return cached2;
33322
- const commit = readInjected(true ? "84f1ff9c0f604e3112d8a6374da2b845e2b59bf3" : void 0) ?? "unknown";
33323
- const commitShort = readInjected(true ? "84f1ff9" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
33324
- const version2 = readInjected(true ? "1.0.31" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
33325
- const builtAt = readInjected(true ? "2026-08-03T10:30:44.814Z" : void 0);
33322
+ const commit = readInjected(true ? "ba047888990d75d13401c27ae1f2ed566d5b8631" : void 0) ?? "unknown";
33323
+ const commitShort = readInjected(true ? "ba047888" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
33324
+ const version2 = readInjected(true ? "1.0.32-rc.2" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
33325
+ const builtAt = readInjected(true ? "2026-08-03T23:39:04.074Z" : void 0);
33326
33326
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
33327
33327
  return cached2;
33328
33328
  }
@@ -41286,7 +41286,6 @@ Next step: ${nextStep}`;
41286
41286
  }
41287
41287
  function recordDirectDispatchTask(meshId, message, opts) {
41288
41288
  const missionId = typeof opts.missionId === "string" ? opts.missionId.trim() : "";
41289
- if (!missionId) return null;
41290
41289
  const taskId = typeof opts.id === "string" ? opts.id.trim() : "";
41291
41290
  if (!taskId) return null;
41292
41291
  message = String(message ?? "").trim();
@@ -41310,7 +41309,7 @@ Next step: ${nextStep}`;
41310
41309
  status: "assigned",
41311
41310
  ...modeValidation.taskMode ? { taskMode: modeValidation.taskMode } : {},
41312
41311
  ...readonly2 ? { readonly: true } : {},
41313
- missionId,
41312
+ ...missionId ? { missionId } : {},
41314
41313
  ...opts.assignedNodeId ? { targetNodeId: opts.assignedNodeId, assignedNodeId: opts.assignedNodeId } : {},
41315
41314
  ...opts.assignedSessionId ? { targetSessionId: opts.assignedSessionId, assignedSessionId: opts.assignedSessionId } : {},
41316
41315
  dispatchTimestamp: now,