@telnyx/ai-agent-lib 0.3.2-beta.0 → 0.3.2
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 +1 -1
- package/dist/index.js +2035 -1709
- package/package.json +4 -3
package/dist/client.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ export declare class TelnyxAIAgent extends EventEmitter<AIAgentEvents> {
|
|
|
133
133
|
*
|
|
134
134
|
* @returns Promise that resolves when the call is hung up, or undefined if there is no active call
|
|
135
135
|
*/
|
|
136
|
-
endConversation(): void | undefined;
|
|
136
|
+
endConversation(): Promise<void> | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* Sets the remote audio stream for monitoring agent speech.
|
|
139
139
|
* Use this when call.remoteStream is not available and you need to provide
|