@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.js
CHANGED
|
@@ -25401,6 +25401,7 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
25401
25401
|
meshId: readStringValue(status?.meshId, status?.mesh_id) ?? null,
|
|
25402
25402
|
refreshedAt: readStringValue(status?.refreshedAt, status?.refreshed_at) ?? null,
|
|
25403
25403
|
sourceOfTruth: status?.sourceOfTruth ?? null,
|
|
25404
|
+
branchConvergenceSummary: status?.branchConvergenceSummary ?? status?.branch_convergence_summary ?? null,
|
|
25404
25405
|
nodeCount: nodes.length,
|
|
25405
25406
|
nodes: nodes.map((node) => ({
|
|
25406
25407
|
nodeId: readStringValue(node?.nodeId, node?.id) ?? null,
|
|
@@ -25416,7 +25417,8 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
25416
25417
|
} : null,
|
|
25417
25418
|
gitProbePending: node?.gitProbePending === true,
|
|
25418
25419
|
launchReady: node?.launchReady === true,
|
|
25419
|
-
git: summarizeRepoMeshDebugGit(node?.git)
|
|
25420
|
+
git: summarizeRepoMeshDebugGit(node?.git),
|
|
25421
|
+
branchConvergence: node?.branchConvergence ?? node?.branch_convergence ?? null
|
|
25420
25422
|
}))
|
|
25421
25423
|
};
|
|
25422
25424
|
}
|
|
@@ -25918,7 +25920,7 @@ function finalizeMeshNodeStatus(args) {
|
|
|
25918
25920
|
async function probeRemoteMeshGitStatus(args) {
|
|
25919
25921
|
if (!args.dispatchMeshCommand) return null;
|
|
25920
25922
|
const remoteResult = await Promise.race([
|
|
25921
|
-
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace }),
|
|
25923
|
+
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace, refreshUpstream: true }),
|
|
25922
25924
|
new Promise((_, reject) => setTimeout(() => reject(new Error("timeout")), args.timeoutMs))
|
|
25923
25925
|
]);
|
|
25924
25926
|
const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
|