@adhdev/daemon-core 0.6.31 → 0.6.34
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 +0 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/status/reporter.ts +0 -4
package/package.json
CHANGED
package/src/status/reporter.ts
CHANGED
|
@@ -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,
|