@exotel-npm-dev/webrtc-client-sdk 1.0.24 → 2.0.2
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 +15 -0
- package/Makefile +2 -11
- package/dist/exotelsdk.js +285 -160
- package/dist/exotelsdk.js.map +1 -1
- package/package.json +3 -3
- package/src/api/LogManager.js +40 -0
- package/src/api/callAPI/Call.js +17 -10
- package/src/listeners/ExWebClient.js +46 -24
package/Changelog
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
|
|
3
|
+
## v2.0.2 21 July, 2025
|
|
4
|
+
-[VST-1038] make auto audio device change handling configurable and fixing Missing sent_request event in registerCallback
|
|
5
|
+
|
|
6
|
+
## v2.0.1 19 June, 2025
|
|
7
|
+
-[VST-1031] Maintaining v1.0.23
|
|
8
|
+
|
|
9
|
+
## v1.0.24 19 June, 2025
|
|
10
|
+
-[VST-1031] Deprecated, v1.0.21 for customers using CRM SDK with old SDK
|
|
11
|
+
|
|
12
|
+
## v1.0.23 10 June, 2025
|
|
13
|
+
-[VST-1011] Increasing Registration Expiry from 60s to 300s
|
|
14
|
+
|
|
15
|
+
## v1.0.22 04 April, 2025
|
|
16
|
+
-[VST-973] get and download logs , log refactoring and mute functionality enhancement
|
|
17
|
+
|
|
3
18
|
## v1.0.21 05 March, 2025
|
|
4
19
|
-[VST-954] Added custom sip codes and reason phrase for when agent are disconnecting and sdk is disconnecting call
|
|
5
20
|
|
package/Makefile
CHANGED
|
@@ -12,16 +12,7 @@ build-local:
|
|
|
12
12
|
|
|
13
13
|
dep:
|
|
14
14
|
npm uninstall @exotel-npm-dev/webrtc-core-sdk
|
|
15
|
-
npm install @exotel-npm-dev/webrtc-core-sdk@
|
|
15
|
+
npm install @exotel-npm-dev/webrtc-core-sdk@1.0.21
|
|
16
16
|
|
|
17
17
|
publish: build
|
|
18
|
-
npm publish
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
build-without-dep:
|
|
22
|
-
npm run build
|
|
23
|
-
cp -r ../webrtc-core-sdk/src/static/* dist/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
publish-without-dep: build-without-dep
|
|
27
|
-
npm publish
|
|
18
|
+
npm publish --tag legacy
|