@co0ontty/wand 2.13.0 → 3.0.0
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/build-info.json +3 -3
- package/dist/cert.js +0 -3
- package/dist/claude-pty-bridge.d.ts +1 -9
- package/dist/claude-pty-bridge.js +5 -22
- package/dist/middleware/path-safety.js +1 -4
- package/dist/npm-update-utils.d.ts +2 -1
- package/dist/npm-update-utils.js +8 -5
- package/dist/pidfile.d.ts +0 -2
- package/dist/pidfile.js +0 -18
- package/dist/process-manager.d.ts +1 -8
- package/dist/process-manager.js +3 -86
- package/dist/server-session-routes.d.ts +1 -3
- package/dist/server-session-routes.js +19 -32
- package/dist/server.js +5 -21
- package/dist/storage.d.ts +0 -1
- package/dist/storage.js +0 -13
- package/dist/structured-session-manager.d.ts +0 -1
- package/dist/structured-session-manager.js +0 -2
- package/dist/update-helper.js +31 -17
- package/dist/upload-routes.js +2 -4
- package/dist/version-utils.js +14 -10
- package/dist/web-ui/content/styles.css +1 -1
- package/dist/web-ui/embedded-assets.d.ts +1 -1
- package/dist/web-ui/embedded-assets.js +2 -2
- package/dist/ws-broadcast.d.ts +0 -1
- package/dist/ws-broadcast.js +0 -2
- package/package.json +1 -1
package/dist/ws-broadcast.d.ts
CHANGED
package/dist/ws-broadcast.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Handles debounced output events, backpressure control, and client subscriptions.
|
|
4
4
|
*/
|
|
5
5
|
import { WebSocket } from "ws";
|
|
6
|
-
import { EventEmitter } from "node:events";
|
|
7
6
|
import { readSessionCookie, validateSession } from "./auth.js";
|
|
8
7
|
import { blockWindowMessagesForTransport, windowMessagesForTransport } from "./message-truncator.js";
|
|
9
8
|
// ── Constants ──
|
|
@@ -25,7 +24,6 @@ export class WsBroadcastManager {
|
|
|
25
24
|
wss;
|
|
26
25
|
clients = new Set();
|
|
27
26
|
outputDebounceCache = new Map();
|
|
28
|
-
eventEmitter = new EventEmitter();
|
|
29
27
|
heartbeatTimer;
|
|
30
28
|
getCardDefaults;
|
|
31
29
|
useHttps;
|