@adhdev/daemon-core 0.6.31 → 0.6.32

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.6.31",
3
+ "version": "0.6.32",
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",
@@ -175,7 +175,6 @@ export class DaemonStatusReporter {
175
175
  const payload: Record<string, any> = {
176
176
  daemonMode: true,
177
177
  version: this.deps.daemonVersion || 'unknown',
178
- machineNickname: cfg.machineNickname || null,
179
178
  workspaces: wsState.workspaces,
180
179
  defaultWorkspaceId: wsState.defaultWorkspaceId,
181
180
  defaultWorkspacePath: wsState.defaultWorkspacePath,
@@ -220,9 +219,6 @@ export class DaemonStatusReporter {
220
219
  if (opts?.p2pOnly) return;
221
220
  const wsPayload = {
222
221
  daemonMode: true,
223
- machineNickname: payload.machineNickname,
224
- defaultWorkspaceId: wsState.defaultWorkspaceId,
225
- workspaceCount: (wsState.workspaces || []).length,
226
222
  // managedIdes: server only saves id, type, cdpConnected
227
223
  managedIdes: managedIdes.map(ide => ({
228
224
  ideType: ide.ideType,