adhdev 0.9.76-rc.65 → 0.9.76-rc.66

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
@@ -566,6 +566,7 @@ var init_repo_mesh_types = __esm({
566
566
  requireApprovalForDestructiveGit: true,
567
567
  dirtyWorkspaceBehavior: "warn",
568
568
  maxParallelTasks: 2,
569
+ spawnedSessionVisibility: "visible",
569
570
  sessionCleanupOnNodeRemove: "preserve"
570
571
  };
571
572
  }
@@ -2890,6 +2891,9 @@ function mergeMeshPolicy(base, patch) {
2890
2891
  if (!SESSION_CLEANUP_MODES.has(String(policy.sessionCleanupOnNodeRemove))) {
2891
2892
  policy.sessionCleanupOnNodeRemove = "preserve";
2892
2893
  }
2894
+ if (!SPAWNED_SESSION_VISIBILITY_MODES.has(String(policy.spawnedSessionVisibility))) {
2895
+ policy.spawnedSessionVisibility = "visible";
2896
+ }
2893
2897
  return policy;
2894
2898
  }
2895
2899
  function listMeshes() {
@@ -2994,7 +2998,7 @@ function updateNode(meshId, nodeId, opts) {
2994
2998
  saveMeshConfig(config2);
2995
2999
  return node;
2996
3000
  }
2997
- var import_fs2, import_path2, import_crypto3, SESSION_CLEANUP_MODES;
3001
+ var import_fs2, import_path2, import_crypto3, SESSION_CLEANUP_MODES, SPAWNED_SESSION_VISIBILITY_MODES;
2998
3002
  var init_mesh_config = __esm({
2999
3003
  "../../oss/packages/daemon-core/src/config/mesh-config.ts"() {
3000
3004
  "use strict";
@@ -3004,6 +3008,7 @@ var init_mesh_config = __esm({
3004
3008
  init_config();
3005
3009
  init_repo_mesh_types();
3006
3010
  SESSION_CLEANUP_MODES = /* @__PURE__ */ new Set(["preserve", "stop", "delete_stopped", "stop_and_delete"]);
3011
+ SPAWNED_SESSION_VISIBILITY_MODES = /* @__PURE__ */ new Set(["visible", "hidden"]);
3007
3012
  }
3008
3013
  });
3009
3014
 
@@ -94632,7 +94637,7 @@ var init_adhdev_daemon = __esm({
94632
94637
  init_version();
94633
94638
  init_src();
94634
94639
  init_runtime_defaults();
94635
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.76-rc.65" });
94640
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.76-rc.66" });
94636
94641
  AdhdevDaemon = class _AdhdevDaemon {
94637
94642
  localHttpServer = null;
94638
94643
  localWss = null;