@adhdev/daemon-core 0.9.82-rc.64 → 0.9.82-rc.65
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 +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/commands/router.ts +3 -1
package/dist/index.mjs
CHANGED
|
@@ -25149,6 +25149,7 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
25149
25149
|
meshId: readStringValue(status?.meshId, status?.mesh_id) ?? null,
|
|
25150
25150
|
refreshedAt: readStringValue(status?.refreshedAt, status?.refreshed_at) ?? null,
|
|
25151
25151
|
sourceOfTruth: status?.sourceOfTruth ?? null,
|
|
25152
|
+
branchConvergenceSummary: status?.branchConvergenceSummary ?? status?.branch_convergence_summary ?? null,
|
|
25152
25153
|
nodeCount: nodes.length,
|
|
25153
25154
|
nodes: nodes.map((node) => ({
|
|
25154
25155
|
nodeId: readStringValue(node?.nodeId, node?.id) ?? null,
|
|
@@ -25164,7 +25165,8 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
25164
25165
|
} : null,
|
|
25165
25166
|
gitProbePending: node?.gitProbePending === true,
|
|
25166
25167
|
launchReady: node?.launchReady === true,
|
|
25167
|
-
git: summarizeRepoMeshDebugGit(node?.git)
|
|
25168
|
+
git: summarizeRepoMeshDebugGit(node?.git),
|
|
25169
|
+
branchConvergence: node?.branchConvergence ?? node?.branch_convergence ?? null
|
|
25168
25170
|
}))
|
|
25169
25171
|
};
|
|
25170
25172
|
}
|
|
@@ -25666,7 +25668,7 @@ function finalizeMeshNodeStatus(args) {
|
|
|
25666
25668
|
async function probeRemoteMeshGitStatus(args) {
|
|
25667
25669
|
if (!args.dispatchMeshCommand) return null;
|
|
25668
25670
|
const remoteResult = await Promise.race([
|
|
25669
|
-
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace }),
|
|
25671
|
+
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace, refreshUpstream: true }),
|
|
25670
25672
|
new Promise((_, reject) => setTimeout(() => reject(new Error("timeout")), args.timeoutMs))
|
|
25671
25673
|
]);
|
|
25672
25674
|
const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
|