@linzumi/cli 0.0.32-beta → 0.0.33-beta

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/README.md CHANGED
@@ -293,7 +293,7 @@ intentionally. Every action is auditable from the thread.
293
293
  ## Pinning a version
294
294
 
295
295
  ```bash
296
- npm install -g @linzumi/cli@0.0.32-beta
296
+ npm install -g @linzumi/cli@0.0.33-beta
297
297
  linzumi --version
298
298
  ```
299
299
 
package/dist/index.js CHANGED
@@ -4458,6 +4458,7 @@ function openLocalWebSocket(control, sockets, pushEvent, scheme) {
4458
4458
  const url = localForwardUrl(scheme === "ws" ? "http" : "https", control.port, control.path, control.queryString).replace(/^http/, scheme);
4459
4459
  const protocols = webSocketProtocols(control.headers);
4460
4460
  const websocket = protocols === undefined ? new WebSocket(url) : new WebSocket(url, protocols);
4461
+ websocket.binaryType = "arraybuffer";
4461
4462
  sockets.set(control.socketId, websocket);
4462
4463
  websocket.addEventListener("open", () => {
4463
4464
  opened = true;
@@ -8922,7 +8923,7 @@ async function main(args) {
8922
8923
  process.stdout.write(connectGuideText());
8923
8924
  return;
8924
8925
  case "version":
8925
- process.stdout.write(`linzumi 0.0.32-beta
8926
+ process.stdout.write(`linzumi 0.0.33-beta
8926
8927
  `);
8927
8928
  return;
8928
8929
  case "auth":
@@ -9435,7 +9436,7 @@ async function parseRunnerArgs(args, deps = {
9435
9436
  process.exit(0);
9436
9437
  }
9437
9438
  if (values.get("version") === true) {
9438
- process.stdout.write(`linzumi 0.0.32-beta
9439
+ process.stdout.write(`linzumi 0.0.33-beta
9439
9440
  `);
9440
9441
  process.exit(0);
9441
9442
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.32-beta",
3
+ "version": "0.0.33-beta",
4
4
  "description": "Linzumi CLI — point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
5
5
  "type": "module",
6
6
  "bin": {