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/index.js CHANGED
@@ -46,6 +46,7 @@ var init_repo_mesh_types = __esm({
46
46
  requireApprovalForDestructiveGit: true,
47
47
  dirtyWorkspaceBehavior: "warn",
48
48
  maxParallelTasks: 2,
49
+ spawnedSessionVisibility: "visible",
49
50
  sessionCleanupOnNodeRemove: "preserve"
50
51
  };
51
52
  }
@@ -2370,6 +2371,9 @@ function mergeMeshPolicy(base, patch) {
2370
2371
  if (!SESSION_CLEANUP_MODES.has(String(policy.sessionCleanupOnNodeRemove))) {
2371
2372
  policy.sessionCleanupOnNodeRemove = "preserve";
2372
2373
  }
2374
+ if (!SPAWNED_SESSION_VISIBILITY_MODES.has(String(policy.spawnedSessionVisibility))) {
2375
+ policy.spawnedSessionVisibility = "visible";
2376
+ }
2373
2377
  return policy;
2374
2378
  }
2375
2379
  function listMeshes() {
@@ -2474,7 +2478,7 @@ function updateNode(meshId, nodeId, opts) {
2474
2478
  saveMeshConfig(config2);
2475
2479
  return node;
2476
2480
  }
2477
- var import_fs2, import_path2, import_crypto3, SESSION_CLEANUP_MODES;
2481
+ var import_fs2, import_path2, import_crypto3, SESSION_CLEANUP_MODES, SPAWNED_SESSION_VISIBILITY_MODES;
2478
2482
  var init_mesh_config = __esm({
2479
2483
  "../../oss/packages/daemon-core/src/config/mesh-config.ts"() {
2480
2484
  "use strict";
@@ -2484,6 +2488,7 @@ var init_mesh_config = __esm({
2484
2488
  init_config();
2485
2489
  init_repo_mesh_types();
2486
2490
  SESSION_CLEANUP_MODES = /* @__PURE__ */ new Set(["preserve", "stop", "delete_stopped", "stop_and_delete"]);
2491
+ SPAWNED_SESSION_VISIBILITY_MODES = /* @__PURE__ */ new Set(["visible", "hidden"]);
2487
2492
  }
2488
2493
  });
2489
2494
 
@@ -63468,7 +63473,7 @@ var init_adhdev_daemon = __esm({
63468
63473
  init_version();
63469
63474
  init_src();
63470
63475
  init_runtime_defaults();
63471
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.76-rc.65" });
63476
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.76-rc.66" });
63472
63477
  AdhdevDaemon = class _AdhdevDaemon {
63473
63478
  localHttpServer = null;
63474
63479
  localWss = null;