@phenx-inc/ctlsurf 0.1.10 → 0.1.11

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/out/main/index.js CHANGED
@@ -3635,7 +3635,7 @@ class ConversationBridge {
3635
3635
  FLUSH_BYTES = 2e3;
3636
3636
  flushTimer = null;
3637
3637
  constructor() {
3638
- this.terminal = new xtermHeadlessExports.Terminal({ cols: 120, rows: 50, scrollback: 1e4 });
3638
+ this.terminal = new xtermHeadlessExports.Terminal({ cols: 120, rows: 50, scrollback: 1e4, allowProposedApi: true });
3639
3639
  }
3640
3640
  setWsClient(ws) {
3641
3641
  this.wsClient = ws;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phenx-inc/ctlsurf",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Agent-agnostic terminal and desktop app for ctlsurf — run Claude Code, Codex, or any coding agent with live session logging and remote control",
5
5
  "main": "out/main/index.js",
6
6
  "bin": {
@@ -24,7 +24,7 @@ export class ConversationBridge {
24
24
  private flushTimer: ReturnType<typeof setInterval> | null = null
25
25
 
26
26
  constructor() {
27
- this.terminal = new Terminal({ cols: 120, rows: 50, scrollback: 10000 })
27
+ this.terminal = new Terminal({ cols: 120, rows: 50, scrollback: 10000, allowProposedApi: true })
28
28
  }
29
29
 
30
30
  setWsClient(ws: WorkerWsClient): void {