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 CHANGED
@@ -47963,6 +47963,7 @@ function summarizeRepoMeshStatusDebug(status) {
47963
47963
  meshId: readStringValue(status?.meshId, status?.mesh_id) ?? null,
47964
47964
  refreshedAt: readStringValue(status?.refreshedAt, status?.refreshed_at) ?? null,
47965
47965
  sourceOfTruth: status?.sourceOfTruth ?? null,
47966
+ branchConvergenceSummary: status?.branchConvergenceSummary ?? status?.branch_convergence_summary ?? null,
47966
47967
  nodeCount: nodes.length,
47967
47968
  nodes: nodes.map((node) => ({
47968
47969
  nodeId: readStringValue(node?.nodeId, node?.id) ?? null,
@@ -47978,7 +47979,8 @@ function summarizeRepoMeshStatusDebug(status) {
47978
47979
  } : null,
47979
47980
  gitProbePending: node?.gitProbePending === true,
47980
47981
  launchReady: node?.launchReady === true,
47981
- git: summarizeRepoMeshDebugGit(node?.git)
47982
+ git: summarizeRepoMeshDebugGit(node?.git),
47983
+ branchConvergence: node?.branchConvergence ?? node?.branch_convergence ?? null
47982
47984
  }))
47983
47985
  };
47984
47986
  }
@@ -48480,7 +48482,7 @@ function finalizeMeshNodeStatus(args) {
48480
48482
  async function probeRemoteMeshGitStatus(args) {
48481
48483
  if (!args.dispatchMeshCommand) return null;
48482
48484
  const remoteResult = await Promise.race([
48483
- args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace }),
48485
+ args.dispatchMeshCommand(args.daemonId, "git_status", { workspace: args.workspace, refreshUpstream: true }),
48484
48486
  new Promise((_2, reject) => setTimeout(() => reject(new Error("timeout")), args.timeoutMs))
48485
48487
  ]);
48486
48488
  const remoteGit = remoteResult?.status ?? remoteResult?.git ?? remoteResult;
@@ -60828,7 +60830,7 @@ var require_yoctocolors_cjs = __commonJS({
60828
60830
  }
60829
60831
  });
60830
60832
 
60831
- // ../../node_modules/@inquirer/figures/dist/esm/index.js
60833
+ // ../../node_modules/@inquirer/figures/dist/esm/index.mjs
60832
60834
  function isUnicodeSupported() {
60833
60835
  if (import_node_process3.default.platform !== "win32") {
60834
60836
  return import_node_process3.default.env["TERM"] !== "linux";
@@ -60840,7 +60842,7 @@ function isUnicodeSupported() {
60840
60842
  }
60841
60843
  var import_node_process3, common2, specialMainSymbols, specialFallbackSymbols, mainSymbols, fallbackSymbols, shouldUseMain, figures, esm_default, replacements;
60842
60844
  var init_esm3 = __esm({
60843
- "../../node_modules/@inquirer/figures/dist/esm/index.js"() {
60845
+ "../../node_modules/@inquirer/figures/dist/esm/index.mjs"() {
60844
60846
  "use strict";
60845
60847
  import_node_process3 = __toESM(require("process"), 1);
60846
60848
  common2 = {
@@ -61111,10 +61113,7 @@ var init_esm3 = __esm({
61111
61113
  oneNinth: "1/9",
61112
61114
  oneTenth: "1/10"
61113
61115
  };
61114
- mainSymbols = {
61115
- ...common2,
61116
- ...specialMainSymbols
61117
- };
61116
+ mainSymbols = { ...common2, ...specialMainSymbols };
61118
61117
  fallbackSymbols = {
61119
61118
  ...common2,
61120
61119
  ...specialFallbackSymbols
@@ -101243,7 +101242,7 @@ var init_adhdev_daemon = __esm({
101243
101242
  init_version();
101244
101243
  init_src();
101245
101244
  init_runtime_defaults();
101246
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.64" });
101245
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.65" });
101247
101246
  AdhdevDaemon = class _AdhdevDaemon {
101248
101247
  localHttpServer = null;
101249
101248
  localWss = null;