@voxket-ai/voxket-live 1.0.153 → 1.0.155

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.
@@ -71,6 +71,7 @@ export declare class VoxketClient extends VoxketEventEmitter<VoxketEvents & RpcE
71
71
  private activeTranscriptions;
72
72
  private isAgentConnected;
73
73
  private agentState;
74
+ private _eventEmitters;
74
75
  constructor(config: VoxketClientConfig);
75
76
  private setupEventListeners;
76
77
  private setupRpcEventForwarding;
@@ -251,6 +252,14 @@ export declare class VoxketClient extends VoxketEventEmitter<VoxketEvents & RpcE
251
252
  * client.registerEventEmitter('custom_event', (data) => { ... });
252
253
  */
253
254
  registerEventEmitter(topic: string, handler: (data: string) => void): void;
255
+ /**
256
+ * Get the list of registered custom event emitters (for debugging)
257
+ */
258
+ getRegisteredEventEmitters(): string[];
259
+ /**
260
+ * Check if a custom event emitter is registered for a topic
261
+ */
262
+ hasEventEmitter(topic: string): boolean;
254
263
  /**
255
264
  * Convert markdown text to plain text by removing common markdown formatting
256
265
  * @param markdownText The markdown text to convert