@adhdev/daemon-core 0.9.82-rc.543 → 0.9.82-rc.544

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.9.82-rc.543",
3
+ "version": "0.9.82-rc.544",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -47,8 +47,8 @@
47
47
  "author": "vilmire",
48
48
  "license": "AGPL-3.0-or-later",
49
49
  "dependencies": {
50
- "@adhdev/mesh-shared": "0.9.82-rc.543",
51
- "@adhdev/session-host-core": "0.9.82-rc.543",
50
+ "@adhdev/mesh-shared": "0.9.82-rc.544",
51
+ "@adhdev/session-host-core": "0.9.82-rc.544",
52
52
  "@agentclientprotocol/sdk": "^0.16.1",
53
53
  "ajv": "^8.20.0",
54
54
  "ajv-formats": "^3.0.1",
@@ -1205,6 +1205,21 @@ export function readCachedInlineMeshActiveSessionDetails(node: any): Array<Recor
1205
1205
  ? { lastMessageRole: readStringValue(fallbackSession.lastMessageRole, fallbackSession.last_message_role) } : {}),
1206
1206
  ...(readNumberValue(fallbackSession.lastMessageAt, fallbackSession.last_message_at) !== undefined
1207
1207
  ? { lastMessageAt: readNumberValue(fallbackSession.lastMessageAt, fallbackSession.last_message_at) } : {}),
1208
+ // RESTORE-STICK: carry the worker's AUTHORITATIVE dashboard hide/mute state and the
1209
+ // raw per-session user override (userHidden/userMuted) through the cached inline-mesh
1210
+ // active-session entry. The worker's mesh_status slim (mcp-server mesh-tools-status.ts)
1211
+ // now ships these from its own status/builders resolution, which already honors a
1212
+ // manual restore/un-mute. Without carrying them here, the coordinator's cloud snapshot
1213
+ // append re-derives hide/mute purely from mesh policy and overwrites the user's manual
1214
+ // un-hide every snapshot — the restore flickered visible then re-hid.
1215
+ ...(readBooleanValue(fallbackSession.surfaceHidden) !== undefined
1216
+ ? { surfaceHidden: readBooleanValue(fallbackSession.surfaceHidden) } : {}),
1217
+ ...(readBooleanValue(fallbackSession.muted) !== undefined
1218
+ ? { muted: readBooleanValue(fallbackSession.muted) } : {}),
1219
+ ...(readBooleanValue(fallbackSession.userHidden, fallbackSession.user_hidden) !== undefined
1220
+ ? { userHidden: readBooleanValue(fallbackSession.userHidden, fallbackSession.user_hidden) } : {}),
1221
+ ...(readBooleanValue(fallbackSession.userMuted, fallbackSession.user_muted) !== undefined
1222
+ ? { userMuted: readBooleanValue(fallbackSession.userMuted, fallbackSession.user_muted) } : {}),
1208
1223
  isCached: true,
1209
1224
  }];
1210
1225
  }