@fonz/tgcc 0.6.14 → 0.6.15

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/bridge.d.ts CHANGED
@@ -5,6 +5,8 @@ import { type CtlHandler, type CtlAckResponse, type CtlStatusResponse } from './
5
5
  export declare class Bridge extends EventEmitter implements CtlHandler {
6
6
  private config;
7
7
  private agents;
8
+ private processRegistry;
9
+ private sessionModelOverrides;
8
10
  private mcpServer;
9
11
  private ctlServer;
10
12
  private sessionStore;
@@ -18,8 +20,12 @@ export declare class Bridge extends EventEmitter implements CtlHandler {
18
20
  private sendToCC;
19
21
  /** Check if the session JSONL was modified externally since we last tracked it. */
20
22
  private checkSessionStaleness;
21
- /** Update JSONL tracking from the current file state. */
22
- private updateJsonlTracking;
23
+ /**
24
+ * Disconnect a client from its CC process.
25
+ * If other subscribers remain, the process stays alive.
26
+ * If this was the last subscriber, the process is destroyed.
27
+ */
28
+ private disconnectClient;
23
29
  private startTypingIndicator;
24
30
  private stopTypingIndicator;
25
31
  private spawnCCProcess;