@adhdev/daemon-core 0.9.77-rc.42 → 0.9.77-rc.43

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.mjs CHANGED
@@ -556,6 +556,7 @@ function addNode(meshId, opts) {
556
556
  workspace: opts.workspace.trim(),
557
557
  repoRoot: opts.repoRoot,
558
558
  daemonId: opts.daemonId,
559
+ machineId: opts.machineId,
559
560
  userOverrides: opts.userOverrides || {},
560
561
  policy: opts.policy || {},
561
562
  isLocalWorktree: opts.isLocalWorktree,
@@ -24240,6 +24241,7 @@ var DaemonCommandRouter = class {
24240
24241
  workspace: result.worktreePath,
24241
24242
  repoRoot: result.worktreePath,
24242
24243
  daemonId: sourceNode.daemonId,
24244
+ machineId: sourceNode.machineId ?? sourceNode.machine_id,
24243
24245
  userOverrides: { ...sourceNode.userOverrides || {} },
24244
24246
  policy: { ...sourceNode.policy || {} },
24245
24247
  isLocalWorktree: true,
@@ -24253,6 +24255,7 @@ var DaemonCommandRouter = class {
24253
24255
  workspace: result.worktreePath,
24254
24256
  repoRoot: result.worktreePath,
24255
24257
  daemonId: sourceNode.daemonId,
24258
+ machineId: sourceNode.machineId ?? sourceNode.machine_id,
24256
24259
  userOverrides: { ...sourceNode.userOverrides || {} },
24257
24260
  isLocalWorktree: true,
24258
24261
  worktreeBranch: result.branch,