@chat21/chat21-ionic 3.4.27-rc21 → 3.4.27-rc22
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/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/src/app/app.component.ts +1 -4
- package/src/app/services/websocket/websocket-js.ts +56 -550
- package/src/app/services/websocket/websocket-js_old.ts +578 -0
- package/src/app/services/websocket/websocket.service.ts +9 -10
- package/src/app/services/websocket/websocket.worker.ts +232 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
### **Copyrigth**:
|
|
9
9
|
*Tiledesk SRL*
|
|
10
10
|
|
|
11
|
+
# 3.4.27-rc22
|
|
12
|
+
- **added**: new WsWorker to manage iframe chrome throttling while tab is in background or hidden
|
|
13
|
+
|
|
11
14
|
# 3.4.27-rc21
|
|
12
15
|
- **changed**: new wss reconnect and timeout keepalive
|
|
13
16
|
- **bug-fixed**: cannot route if senderFullaname contains /
|
package/package.json
CHANGED
package/src/app/app.component.ts
CHANGED
|
@@ -1301,10 +1301,7 @@ export class AppComponent implements OnInit {
|
|
|
1301
1301
|
const WS_URL = appconfig.wsUrl + '?token=' + tiledeskToken
|
|
1302
1302
|
this.logger.log('[WEBSOCKET-JS] connetWebsocket called in [PROJECT-ITEM] wsUrl ', WS_URL)
|
|
1303
1303
|
this.webSocketJs.init(
|
|
1304
|
-
WS_URL
|
|
1305
|
-
undefined,
|
|
1306
|
-
undefined,
|
|
1307
|
-
undefined
|
|
1304
|
+
WS_URL
|
|
1308
1305
|
);
|
|
1309
1306
|
}
|
|
1310
1307
|
|