@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.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 ? "
|
|
423
|
-
const commitShort = readInjected(true ? "
|
|
424
|
-
const version = readInjected(true ? "0.9.82-rc.
|
|
425
|
-
const builtAt = readInjected(true ? "2026-07-
|
|
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
|
-
|
|
19533
|
-
|
|
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
|
-
|
|
19575
|
-
|
|
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 = {}) {
|