@adhdev/daemon-core 0.9.82-rc.541 → 0.9.82-rc.542

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
@@ -419,10 +419,10 @@ function readInjected(value) {
419
419
  }
420
420
  function getDaemonBuildInfo() {
421
421
  if (cached) return cached;
422
- const commit = readInjected(true ? "77f3fad0358bec7e4474ead5b2510e19a4cc2cc4" : void 0) ?? "unknown";
423
- const commitShort = readInjected(true ? "77f3fad0" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
424
- const version = readInjected(true ? "0.9.82-rc.541" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
425
- const builtAt = readInjected(true ? "2026-07-16T05:30:52.044Z" : void 0);
422
+ const commit = readInjected(true ? "eb1fb961d4f22983420fad4c65b982d3ab42b5cf" : void 0) ?? "unknown";
423
+ const commitShort = readInjected(true ? "eb1fb961" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
424
+ const version = readInjected(true ? "0.9.82-rc.542" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
425
+ const builtAt = readInjected(true ? "2026-07-16T06:30:14.678Z" : void 0);
426
426
  cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
427
427
  return cached;
428
428
  }
@@ -19529,8 +19529,12 @@ function buildCliSession(state, options) {
19529
19529
  settings: state.settings,
19530
19530
  ...coordinator && { coordinator },
19531
19531
  ...meshQueueStats && { meshQueueStats },
19532
- ...resolveSurfaceHidden(state.settings) && { surfaceHidden: true },
19533
- ...resolveMuted(state.settings) && { muted: true }
19532
+ // Emit these booleans explicitly (including false) so an un-hide/un-mute clears a
19533
+ // previously-true value downstream. Consumers merge with `?? existing` and copy only
19534
+ // `!== undefined` fields, so an absent field on false never overwrote a prior true —
19535
+ // the toggle-off direction silently stuck. See session-entry-merge.ts.
19536
+ surfaceHidden: resolveSurfaceHidden(state.settings),
19537
+ muted: resolveMuted(state.settings)
19534
19538
  };
19535
19539
  }
19536
19540
  function buildAcpSession(state, options) {
@@ -19571,8 +19575,10 @@ function buildAcpSession(state, options) {
19571
19575
  settings: state.settings,
19572
19576
  ...coordinator && { coordinator },
19573
19577
  ...meshQueueStats && { meshQueueStats },
19574
- ...resolveSurfaceHidden(state.settings) && { surfaceHidden: true },
19575
- ...resolveMuted(state.settings) && { muted: true }
19578
+ // Emit explicitly (including false) so un-hide/un-mute clears a prior true downstream —
19579
+ // see buildCliSession above and session-entry-merge.ts.
19580
+ surfaceHidden: resolveSurfaceHidden(state.settings),
19581
+ muted: resolveMuted(state.settings)
19576
19582
  };
19577
19583
  }
19578
19584
  function buildSessionEntries(allStates, cdpManagers, options = {}) {