@telnyx/ai-agent-lib 0.4.1 → 0.4.3

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/client.d.ts CHANGED
@@ -26,6 +26,14 @@ export type TelnyxAIAgentConstructorParams = {
26
26
  * turns `rtc.telnyx.com` into `us-east-1.rtc.telnyx.com`).
27
27
  */
28
28
  region?: string;
29
+ /**
30
+ * When reconnecting with a stored `voice_sdk_id`, ask VSP to route to a
31
+ * different b2bua-rtc instance instead of sticky-reconnecting to the
32
+ * same one. Appends `?skip_last_voice_sdk_id=true` to the WebSocket URL.
33
+ *
34
+ * @default true
35
+ */
36
+ skipLastVoiceSdkId?: boolean;
29
37
  };
30
38
  export declare class TelnyxAIAgent extends EventEmitter<AIAgentEvents> {
31
39
  private telnyxRTC;