@telnyx/ai-agent-lib 0.1.5 → 0.1.7

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/README.md CHANGED
@@ -331,7 +331,7 @@ This library is built with TypeScript and provides full type definitions. All ho
331
331
 
332
332
  ## Examples
333
333
 
334
- Check out the `/src` directory for a complete example application demonstrating all features of the library.
334
+ Check out the [example](https://github.com/team-telnyx/telnyx-ai-agent-lib-example) repository for a complete example application demonstrating all features of the library.
335
335
 
336
336
  ## Dependencies
337
337
 
package/dist/client.d.ts CHANGED
@@ -16,7 +16,7 @@ export declare class TelnyxAIAgent extends EventEmitter<AIAgentEvents> {
16
16
  constructor(params: TelnyxAIAgentConstructorParams);
17
17
  connect(): Promise<void>;
18
18
  disconnect(): Promise<void>;
19
- sendConversationMessage(message: string): void;
19
+ sendConversationMessage(message: string, attachments?: string[]): void;
20
20
  get transcript(): TranscriptItem[];
21
21
  startConversation(): Promise<void>;
22
22
  endConversation(): void | undefined;