adhdev 0.8.97 → 0.8.98

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.
Files changed (33) hide show
  1. package/dist/cli/index.js +24 -6
  2. package/dist/cli/index.js.map +1 -1
  3. package/dist/index.js +7 -4
  4. package/dist/index.js.map +1 -1
  5. package/package.json +1 -1
  6. package/vendor/session-host-daemon/index.js +4 -4
  7. package/vendor/session-host-daemon/index.js.map +1 -1
  8. package/vendor/session-host-daemon/index.mjs +13 -6
  9. package/vendor/session-host-daemon/index.mjs.map +1 -1
  10. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.d.mts +6 -0
  11. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.d.ts +6 -0
  12. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.js +49 -0
  13. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.js.map +1 -0
  14. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.mjs +21 -0
  15. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/defaults.mjs.map +1 -0
  16. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.d.mts +1 -0
  17. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.d.ts +1 -0
  18. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.js +25 -2
  19. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.js.map +1 -1
  20. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.mjs +21 -2
  21. package/vendor/session-host-daemon/node_modules/@adhdev/session-host-core/index.mjs.map +1 -1
  22. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.d.mts +6 -0
  23. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.d.ts +6 -0
  24. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.js +49 -0
  25. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.js.map +1 -0
  26. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.mjs +21 -0
  27. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/defaults.mjs.map +1 -0
  28. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.d.mts +1 -0
  29. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.d.ts +1 -0
  30. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.js +25 -2
  31. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.js.map +1 -1
  32. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.mjs +21 -2
  33. package/vendor/terminal-mux-cli/node_modules/@adhdev/session-host-core/index.mjs.map +1 -1
package/dist/index.js CHANGED
@@ -10615,7 +10615,7 @@ function ensureNodePtySpawnHelperPermissions(logFn) {
10615
10615
  } catch {
10616
10616
  }
10617
10617
  }
10618
- var os8, path22, net, import_crypto3, os22, path32, __require, SessionHostClient;
10618
+ var os8, path22, net, import_crypto3, os22, path32, __require, DEFAULT_SESSION_HOST_COLS, DEFAULT_SESSION_HOST_ROWS, SessionHostClient;
10619
10619
  var init_dist = __esm({
10620
10620
  "../../oss/packages/session-host-core/dist/index.mjs"() {
10621
10621
  "use strict";
@@ -10631,6 +10631,8 @@ var init_dist = __esm({
10631
10631
  if (typeof require !== "undefined") return require.apply(this, arguments);
10632
10632
  throw Error('Dynamic require of "' + x + '" is not supported');
10633
10633
  });
10634
+ DEFAULT_SESSION_HOST_COLS = 80;
10635
+ DEFAULT_SESSION_HOST_ROWS = 48;
10634
10636
  SessionHostClient = class {
10635
10637
  endpoint;
10636
10638
  socket = null;
@@ -11253,8 +11255,8 @@ function resolveCliSpawnPlan(options) {
11253
11255
  isWin,
11254
11256
  useShell,
11255
11257
  ptyOptions: {
11256
- cols: 80,
11257
- rows: 24,
11258
+ cols: DEFAULT_SESSION_HOST_COLS,
11259
+ rows: DEFAULT_SESSION_HOST_ROWS,
11258
11260
  cwd: workingDir,
11259
11261
  env: buildCliSpawnEnv(process.env, spawnConfig.env)
11260
11262
  }
@@ -11311,6 +11313,7 @@ var init_provider_cli_runtime = __esm({
11311
11313
  "use strict";
11312
11314
  os11 = __toESM(require("os"));
11313
11315
  path10 = __toESM(require("path"));
11316
+ init_dist();
11314
11317
  init_provider_cli_shared();
11315
11318
  }
11316
11319
  });
@@ -55127,7 +55130,7 @@ var init_adhdev_daemon = __esm({
55127
55130
  init_version();
55128
55131
  init_src();
55129
55132
  init_runtime_defaults();
55130
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.97" });
55133
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.98" });
55131
55134
  AdhdevDaemon = class _AdhdevDaemon {
55132
55135
  localHttpServer = null;
55133
55136
  localWss = null;