@camstack/addon-terminal 0.1.7 → 0.1.8

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.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import { TerminalAddon, a as createTerminalDataPlaneHandler, i as findProfile, n as TerminalSessionManager, o as createNodePtySpawner, r as buildProfiles, s as warmNodePty, t as createXtermScreen } from "./addon.mjs";
1
+ import { TerminalAddon, a as createXtermScreen, i as createTerminalDataPlaneHandler, n as buildProfiles, o as createNodePtySpawner, r as findProfile, s as warmNodePty, t as TerminalSessionManager } from "./addon.mjs";
2
2
  export { TerminalAddon, TerminalAddon as default, TerminalSessionManager, buildProfiles, createNodePtySpawner, createTerminalDataPlaneHandler, createXtermScreen, findProfile, warmNodePty };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-terminal",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Interactive terminal sessions (pty + xterm) as a CamStack addon",
5
5
  "keywords": [
6
6
  "camstack",
@@ -34,14 +34,14 @@
34
34
  "category": "system",
35
35
  "name": "Terminal",
36
36
  "version": "0.1.0",
37
- "description": "Interactive terminal sessions in the Admin UI. Opens an allowlisted profile (system monitor via btm) in a real pty, streamed over the data plane to xterm.js. A free-form command is never accepted.",
37
+ "description": "Interactive terminal sessions on any cluster node, plus one virtual Terminal camera per node. Commands remain bound to administrator-configured profiles.",
38
38
  "entry": "./dist/index.js",
39
39
  "icon": "assets/icon.svg",
40
40
  "color": "#0ea5e9",
41
41
  "instanceMode": "unique",
42
42
  "mode": "standalone",
43
43
  "execution": {
44
- "placement": "hub-only"
44
+ "placement": "any-node"
45
45
  },
46
46
  "capabilities": [
47
47
  {
@@ -64,7 +64,8 @@
64
64
  },
65
65
  "dependencies": {
66
66
  "@xterm/addon-serialize": "^0.13.0",
67
- "@xterm/headless": "^5.5.0"
67
+ "@xterm/headless": "^5.5.0",
68
+ "sharp": "^0.35.2"
68
69
  },
69
70
  "optionalDependencies": {
70
71
  "node-pty": "^1.0.0"