@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 +14 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/status/builders.ts +10 -4
package/dist/index.mjs
CHANGED
|
@@ -414,10 +414,10 @@ function readInjected(value) {
|
|
|
414
414
|
}
|
|
415
415
|
function getDaemonBuildInfo() {
|
|
416
416
|
if (cached) return cached;
|
|
417
|
-
const commit = readInjected(true ? "
|
|
418
|
-
const commitShort = readInjected(true ? "
|
|
419
|
-
const version = readInjected(true ? "0.9.82-rc.
|
|
420
|
-
const builtAt = readInjected(true ? "2026-07-
|
|
417
|
+
const commit = readInjected(true ? "eb1fb961d4f22983420fad4c65b982d3ab42b5cf" : void 0) ?? "unknown";
|
|
418
|
+
const commitShort = readInjected(true ? "eb1fb961" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
|
|
419
|
+
const version = readInjected(true ? "0.9.82-rc.542" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
|
|
420
|
+
const builtAt = readInjected(true ? "2026-07-16T06:30:14.678Z" : void 0);
|
|
421
421
|
cached = builtAt ? { commit, commitShort, version, builtAt } : { commit, commitShort, version };
|
|
422
422
|
return cached;
|
|
423
423
|
}
|
|
@@ -19531,8 +19531,12 @@ function buildCliSession(state, options) {
|
|
|
19531
19531
|
settings: state.settings,
|
|
19532
19532
|
...coordinator && { coordinator },
|
|
19533
19533
|
...meshQueueStats && { meshQueueStats },
|
|
19534
|
-
|
|
19535
|
-
|
|
19534
|
+
// Emit these booleans explicitly (including false) so an un-hide/un-mute clears a
|
|
19535
|
+
// previously-true value downstream. Consumers merge with `?? existing` and copy only
|
|
19536
|
+
// `!== undefined` fields, so an absent field on false never overwrote a prior true —
|
|
19537
|
+
// the toggle-off direction silently stuck. See session-entry-merge.ts.
|
|
19538
|
+
surfaceHidden: resolveSurfaceHidden(state.settings),
|
|
19539
|
+
muted: resolveMuted(state.settings)
|
|
19536
19540
|
};
|
|
19537
19541
|
}
|
|
19538
19542
|
function buildAcpSession(state, options) {
|
|
@@ -19573,8 +19577,10 @@ function buildAcpSession(state, options) {
|
|
|
19573
19577
|
settings: state.settings,
|
|
19574
19578
|
...coordinator && { coordinator },
|
|
19575
19579
|
...meshQueueStats && { meshQueueStats },
|
|
19576
|
-
|
|
19577
|
-
|
|
19580
|
+
// Emit explicitly (including false) so un-hide/un-mute clears a prior true downstream —
|
|
19581
|
+
// see buildCliSession above and session-entry-merge.ts.
|
|
19582
|
+
surfaceHidden: resolveSurfaceHidden(state.settings),
|
|
19583
|
+
muted: resolveMuted(state.settings)
|
|
19578
19584
|
};
|
|
19579
19585
|
}
|
|
19580
19586
|
function buildSessionEntries(allStates, cdpManagers, options = {}) {
|