@exotel-npm-dev/exotel-ai-assist 1.2.3 → 1.2.5

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.
@@ -1538,7 +1538,7 @@ class Utils {
1538
1538
  * @returns The base WebSocket URL.
1539
1539
  */
1540
1540
  static getWssBaseUrl(accountId) {
1541
- return `wss://aiassist-uat.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
1541
+ return `wss://ai-assist.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
1542
1542
  }
1543
1543
  /**
1544
1544
  * Builds a WebSocket URL from the given parameters.
package/dist/index.js CHANGED
@@ -20956,7 +20956,7 @@ class Utils {
20956
20956
  * @returns The base WebSocket URL.
20957
20957
  */
20958
20958
  static getWssBaseUrl(accountId) {
20959
- return `wss://aiassist-uat.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
20959
+ return `wss://ai-assist.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
20960
20960
  }
20961
20961
  /**
20962
20962
  * Builds a WebSocket URL from the given parameters.
@@ -6242,7 +6242,7 @@ class Utils {
6242
6242
  * @returns The base WebSocket URL.
6243
6243
  */
6244
6244
  static getWssBaseUrl(accountId) {
6245
- return `wss://aiassist-uat.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
6245
+ return `wss://ai-assist.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
6246
6246
  }
6247
6247
  /**
6248
6248
  * Builds a WebSocket URL from the given parameters.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exotel-npm-dev/exotel-ai-assist",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "AI-powered real-time suggestions, transcript, and sentiment for agent calls",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -29,7 +29,7 @@ export class Utils {
29
29
  * @returns The base WebSocket URL.
30
30
  */
31
31
  static getWssBaseUrl(accountId: string): string {
32
- return `wss://aiassist-uat.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
32
+ return `wss://ai-assist.in.exotel.com/ai-assist/ws/v1/accounts/${accountId}/ai-assistants/conversation-events`;
33
33
  }
34
34
 
35
35
  /**