@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/config/mesh-config.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/dist/repo-mesh-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/commands/router.ts +2 -0
- package/src/config/mesh-config.ts +2 -0
- package/src/repo-mesh-types.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -558,6 +558,7 @@ function addNode(meshId, opts) {
|
|
|
558
558
|
workspace: opts.workspace.trim(),
|
|
559
559
|
repoRoot: opts.repoRoot,
|
|
560
560
|
daemonId: opts.daemonId,
|
|
561
|
+
machineId: opts.machineId,
|
|
561
562
|
userOverrides: opts.userOverrides || {},
|
|
562
563
|
policy: opts.policy || {},
|
|
563
564
|
isLocalWorktree: opts.isLocalWorktree,
|
|
@@ -24460,6 +24461,7 @@ var DaemonCommandRouter = class {
|
|
|
24460
24461
|
workspace: result.worktreePath,
|
|
24461
24462
|
repoRoot: result.worktreePath,
|
|
24462
24463
|
daemonId: sourceNode.daemonId,
|
|
24464
|
+
machineId: sourceNode.machineId ?? sourceNode.machine_id,
|
|
24463
24465
|
userOverrides: { ...sourceNode.userOverrides || {} },
|
|
24464
24466
|
policy: { ...sourceNode.policy || {} },
|
|
24465
24467
|
isLocalWorktree: true,
|
|
@@ -24473,6 +24475,7 @@ var DaemonCommandRouter = class {
|
|
|
24473
24475
|
workspace: result.worktreePath,
|
|
24474
24476
|
repoRoot: result.worktreePath,
|
|
24475
24477
|
daemonId: sourceNode.daemonId,
|
|
24478
|
+
machineId: sourceNode.machineId ?? sourceNode.machine_id,
|
|
24476
24479
|
userOverrides: { ...sourceNode.userOverrides || {} },
|
|
24477
24480
|
isLocalWorktree: true,
|
|
24478
24481
|
worktreeBranch: result.branch,
|