retell-sdk 1.0.5 → 1.0.6
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/index.d.ts +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
- package/tsconfig.json +1 -1
package/dist/index.d.ts
CHANGED
package/index.ts
CHANGED
|
@@ -2,8 +2,8 @@ var WebSocketClient = require("websocket").client;
|
|
|
2
2
|
const axios = require("axios");
|
|
3
3
|
|
|
4
4
|
export default class Retell {
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
private apiKey: string;
|
|
6
|
+
private ip: string;
|
|
7
7
|
|
|
8
8
|
constructor(apiKey: string, ip?: string) {
|
|
9
9
|
this.ip = ip ?? "localhost:3000";
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED