adhdev 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/cli/index.js +8 -9
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +8 -9
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -46975,6 +46975,7 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
46975
46975
|
meshId: readStringValue(status?.meshId, status?.mesh_id) ?? null,
|
|
46976
46976
|
refreshedAt: readStringValue(status?.refreshedAt, status?.refreshed_at) ?? null,
|
|
46977
46977
|
sourceOfTruth: status?.sourceOfTruth ?? null,
|
|
46978
|
+
branchConvergenceSummary: status?.branchConvergenceSummary ?? status?.branch_convergence_summary ?? null,
|
|
46978
46979
|
nodeCount: nodes.length,
|
|
46979
46980
|
nodes: nodes.map((node) => ({
|
|
46980
46981
|
nodeId: readStringValue(node?.nodeId, node?.id) ?? null,
|
|
@@ -46990,7 +46991,8 @@ function summarizeRepoMeshStatusDebug(status) {
|
|
|
46990
46991
|
} : null,
|
|
46991
46992
|
gitProbePending: node?.gitProbePending === true,
|
|
46992
46993
|
launchReady: node?.launchReady === true,
|
|
46993
|
-
git: summarizeRepoMeshDebugGit(node?.git)
|
|
46994
|
+
git: summarizeRepoMeshDebugGit(node?.git),
|
|
46995
|
+
branchConvergence: node?.branchConvergence ?? node?.branch_convergence ?? null
|
|
46994
46996
|
}))
|
|
46995
46997
|
};
|
|
46996
46998
|
}
|
|
@@ -47492,7 +47494,7 @@ function finalizeMeshNodeStatus(args) {
|
|
|
47492
47494
|
async function probeRemoteMeshGitStatus(args) {
|
|
47493
47495
|
if (!args.dispatchMeshCommand) return null;
|
|
47494
47496
|
const remoteResult = await Promise.race([
|
|
47495
|
-
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace }),
|
|
47497
|
+
args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace, refreshUpstream: true }),
|
|
47496
47498
|
new Promise((_2, reject) => setTimeout(() => reject(new Error("timeout")), args.timeoutMs))
|
|
47497
47499
|
]);
|
|
47498
47500
|
const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
|
|
@@ -70070,7 +70072,7 @@ var init_adhdev_daemon = __esm({
|
|
|
70070
70072
|
init_version();
|
|
70071
70073
|
init_src();
|
|
70072
70074
|
init_runtime_defaults();
|
|
70073
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.
|
|
70075
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.65" });
|
|
70074
70076
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
70075
70077
|
localHttpServer = null;
|
|
70076
70078
|
localWss = null;
|
|
@@ -71607,7 +71609,7 @@ var require_yoctocolors_cjs = __commonJS({
|
|
|
71607
71609
|
}
|
|
71608
71610
|
});
|
|
71609
71611
|
|
|
71610
|
-
// ../../node_modules/@inquirer/figures/dist/esm/index.
|
|
71612
|
+
// ../../node_modules/@inquirer/figures/dist/esm/index.mjs
|
|
71611
71613
|
function isUnicodeSupported() {
|
|
71612
71614
|
if (import_node_process3.default.platform !== "win32") {
|
|
71613
71615
|
return import_node_process3.default.env["TERM"] !== "linux";
|
|
@@ -71619,7 +71621,7 @@ function isUnicodeSupported() {
|
|
|
71619
71621
|
}
|
|
71620
71622
|
var import_node_process3, common2, specialMainSymbols, specialFallbackSymbols, mainSymbols, fallbackSymbols, shouldUseMain, figures, esm_default, replacements;
|
|
71621
71623
|
var init_esm3 = __esm({
|
|
71622
|
-
"../../node_modules/@inquirer/figures/dist/esm/index.
|
|
71624
|
+
"../../node_modules/@inquirer/figures/dist/esm/index.mjs"() {
|
|
71623
71625
|
"use strict";
|
|
71624
71626
|
import_node_process3 = __toESM(require("process"), 1);
|
|
71625
71627
|
common2 = {
|
|
@@ -71890,10 +71892,7 @@ var init_esm3 = __esm({
|
|
|
71890
71892
|
oneNinth: "1/9",
|
|
71891
71893
|
oneTenth: "1/10"
|
|
71892
71894
|
};
|
|
71893
|
-
mainSymbols = {
|
|
71894
|
-
...common2,
|
|
71895
|
-
...specialMainSymbols
|
|
71896
|
-
};
|
|
71895
|
+
mainSymbols = { ...common2, ...specialMainSymbols };
|
|
71897
71896
|
fallbackSymbols = {
|
|
71898
71897
|
...common2,
|
|
71899
71898
|
...specialFallbackSymbols
|