@exotel-npm-dev/exotel-ai-assist 1.2.0 → 1.2.1
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/controller/index.js +4 -2
- package/dist/index.js +4 -2
- package/dist/react/index.js +4 -2
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/controller/index.ts +4 -2
- package/src/types/index.ts +1 -1
package/dist/controller/index.js
CHANGED
|
@@ -1623,7 +1623,7 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
1623
1623
|
var _a;
|
|
1624
1624
|
this._clearReconnectTimer();
|
|
1625
1625
|
(_a = this.transport) === null || _a === void 0 ? void 0 : _a.disconnect();
|
|
1626
|
-
if (this.readyFired) {
|
|
1626
|
+
if (this.readyFired && this._streamState !== "throttled") {
|
|
1627
1627
|
this.readyFired = false;
|
|
1628
1628
|
this.emit("onReady", false);
|
|
1629
1629
|
}
|
|
@@ -1809,9 +1809,11 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
1809
1809
|
_handleStreamStatus(state) {
|
|
1810
1810
|
this._streamState = state;
|
|
1811
1811
|
this.emit("streamState", state);
|
|
1812
|
-
// We are firing ready because we need to show the UI immediately when the stream is connected or throttled.
|
|
1813
1812
|
if (state === "connected" || state === "throttled") {
|
|
1814
1813
|
this._fireReady();
|
|
1814
|
+
} else if (state === "disconnected" && this.readyFired) {
|
|
1815
|
+
this.readyFired = false;
|
|
1816
|
+
this.emit("onReady", false);
|
|
1815
1817
|
}
|
|
1816
1818
|
}
|
|
1817
1819
|
_setStatus(status) {
|
package/dist/index.js
CHANGED
|
@@ -21041,7 +21041,7 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
21041
21041
|
var _a;
|
|
21042
21042
|
this._clearReconnectTimer();
|
|
21043
21043
|
(_a = this.transport) === null || _a === void 0 ? void 0 : _a.disconnect();
|
|
21044
|
-
if (this.readyFired) {
|
|
21044
|
+
if (this.readyFired && this._streamState !== "throttled") {
|
|
21045
21045
|
this.readyFired = false;
|
|
21046
21046
|
this.emit("onReady", false);
|
|
21047
21047
|
}
|
|
@@ -21227,9 +21227,11 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
21227
21227
|
_handleStreamStatus(state) {
|
|
21228
21228
|
this._streamState = state;
|
|
21229
21229
|
this.emit("streamState", state);
|
|
21230
|
-
// We are firing ready because we need to show the UI immediately when the stream is connected or throttled.
|
|
21231
21230
|
if (state === "connected" || state === "throttled") {
|
|
21232
21231
|
this._fireReady();
|
|
21232
|
+
} else if (state === "disconnected" && this.readyFired) {
|
|
21233
|
+
this.readyFired = false;
|
|
21234
|
+
this.emit("onReady", false);
|
|
21233
21235
|
}
|
|
21234
21236
|
}
|
|
21235
21237
|
_setStatus(status) {
|
package/dist/react/index.js
CHANGED
|
@@ -6327,7 +6327,7 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
6327
6327
|
var _a;
|
|
6328
6328
|
this._clearReconnectTimer();
|
|
6329
6329
|
(_a = this.transport) === null || _a === void 0 ? void 0 : _a.disconnect();
|
|
6330
|
-
if (this.readyFired) {
|
|
6330
|
+
if (this.readyFired && this._streamState !== "throttled") {
|
|
6331
6331
|
this.readyFired = false;
|
|
6332
6332
|
this.emit("onReady", false);
|
|
6333
6333
|
}
|
|
@@ -6513,9 +6513,11 @@ class ExotelAIAssistController extends EventEmitter {
|
|
|
6513
6513
|
_handleStreamStatus(state) {
|
|
6514
6514
|
this._streamState = state;
|
|
6515
6515
|
this.emit("streamState", state);
|
|
6516
|
-
// We are firing ready because we need to show the UI immediately when the stream is connected or throttled.
|
|
6517
6516
|
if (state === "connected" || state === "throttled") {
|
|
6518
6517
|
this._fireReady();
|
|
6518
|
+
} else if (state === "disconnected" && this.readyFired) {
|
|
6519
|
+
this.readyFired = false;
|
|
6520
|
+
this.emit("onReady", false);
|
|
6519
6521
|
}
|
|
6520
6522
|
}
|
|
6521
6523
|
_setStatus(status) {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export type ConnectionStatus = "idle" | "connecting" | "connected" | "disconnect
|
|
|
38
38
|
* - `throttled` – capacity full; the bot cannot join this call
|
|
39
39
|
* - `pending` – stream is pending
|
|
40
40
|
*/
|
|
41
|
-
export type StreamState = "connected" | "throttled" | "pending";
|
|
41
|
+
export type StreamState = "connected" | "throttled" | "pending" | "disconnected";
|
|
42
42
|
/** Feature-flag config received from the AI Assist backend. */
|
|
43
43
|
export interface BotConfig {
|
|
44
44
|
sentiment: boolean;
|
package/package.json
CHANGED
package/src/controller/index.ts
CHANGED
|
@@ -55,7 +55,7 @@ export class ExotelAIAssistController extends EventEmitter<ControllerEvents> {
|
|
|
55
55
|
disconnect(): void {
|
|
56
56
|
this._clearReconnectTimer();
|
|
57
57
|
this.transport?.disconnect();
|
|
58
|
-
if (this.readyFired) {
|
|
58
|
+
if (this.readyFired && this._streamState !== "throttled") {
|
|
59
59
|
this.readyFired = false;
|
|
60
60
|
this.emit("onReady", false);
|
|
61
61
|
}
|
|
@@ -262,9 +262,11 @@ export class ExotelAIAssistController extends EventEmitter<ControllerEvents> {
|
|
|
262
262
|
private _handleStreamStatus(state: StreamState): void {
|
|
263
263
|
this._streamState = state;
|
|
264
264
|
this.emit("streamState", state);
|
|
265
|
-
// We are firing ready because we need to show the UI immediately when the stream is connected or throttled.
|
|
266
265
|
if (state === "connected" || state === "throttled") {
|
|
267
266
|
this._fireReady();
|
|
267
|
+
} else if (state === "disconnected" && this.readyFired) {
|
|
268
|
+
this.readyFired = false;
|
|
269
|
+
this.emit("onReady", false);
|
|
268
270
|
}
|
|
269
271
|
}
|
|
270
272
|
|
package/src/types/index.ts
CHANGED
|
@@ -43,7 +43,7 @@ export type ConnectionStatus = "idle" | "connecting" | "connected" | "disconnect
|
|
|
43
43
|
* - `throttled` – capacity full; the bot cannot join this call
|
|
44
44
|
* - `pending` – stream is pending
|
|
45
45
|
*/
|
|
46
|
-
export type StreamState = "connected" | "throttled" | "pending";
|
|
46
|
+
export type StreamState = "connected" | "throttled" | "pending" | "disconnected";
|
|
47
47
|
|
|
48
48
|
// ---------------------------------------------------------------------------
|
|
49
49
|
// Internal-only backend response types
|