@adhdev/daemon-standalone 0.9.82-rc.555 → 0.9.82-rc.556

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
@@ -30217,10 +30217,10 @@ var require_dist3 = __commonJS({
30217
30217
  }
30218
30218
  function getDaemonBuildInfo() {
30219
30219
  if (cached2) return cached2;
30220
- const commit = readInjected(true ? "45a19b2d93612559899332379b6953a02a4b4ccb" : void 0) ?? "unknown";
30221
- const commitShort = readInjected(true ? "45a19b2d" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30222
- const version2 = readInjected(true ? "0.9.82-rc.555" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30223
- const builtAt = readInjected(true ? "2026-07-17T08:35:04.385Z" : void 0);
30220
+ const commit = readInjected(true ? "be22dd93c4d346e18a1c16b2d451c0b3d085e5e3" : void 0) ?? "unknown";
30221
+ const commitShort = readInjected(true ? "be22dd93" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
30222
+ const version2 = readInjected(true ? "0.9.82-rc.556" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
30223
+ const builtAt = readInjected(true ? "2026-07-17T09:34:59.099Z" : void 0);
30224
30224
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
30225
30225
  return cached2;
30226
30226
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-standalone",
3
- "version": "0.9.82-rc.555",
3
+ "version": "0.9.82-rc.556",
4
4
  "description": "ADHDev standalone daemon — embedded HTTP/WS server for local dashboard",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -37,7 +37,7 @@
37
37
  "license": "AGPL-3.0-or-later",
38
38
  "dependencies": {
39
39
  "@adhdev/ghostty-vt-node": "*",
40
- "@adhdev/session-host-core": "0.9.82-rc.555",
40
+ "@adhdev/session-host-core": "0.9.82-rc.556",
41
41
  "@xterm/addon-serialize": "^0.14.0",
42
42
  "@xterm/xterm": "^6.0.0",
43
43
  "chalk": "^5.3.0",
@@ -6930,7 +6930,15 @@ async function meshLaunchSession(ctx, args) {
6930
6930
  try {
6931
6931
  const statusResult = await commandForNode(ctx, node, "get_status_metadata", {});
6932
6932
  const sessions = extractStatusMetadataSessions(statusResult);
6933
- const existing = sessions.find((session) => !isTerminalSessionRecord(session) && isMeshOwnedDelegateSession(session, ctx.mesh.id, args.node_id));
6933
+ const existing = sessions.find((session) => {
6934
+ if (isTerminalSessionRecord(session)) return false;
6935
+ if (!isMeshOwnedDelegateSession(session, ctx.mesh.id, args.node_id)) return false;
6936
+ if (resolvedProviderType) {
6937
+ const sessionProviderType = resolveSessionProviderType(session);
6938
+ if (sessionProviderType && sessionProviderType !== resolvedProviderType) return false;
6939
+ }
6940
+ return true;
6941
+ });
6934
6942
  if (existing) {
6935
6943
  const existingSessionId = readSessionRecordId(existing);
6936
6944
  if (existingSessionId) {