@exotel-npm-dev/webrtc-client-sdk 1.0.11 → 1.0.13
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 +4 -1
- package/Makefile +16 -0
- package/dist/exotelsdk.js +491 -220
- package/dist/exotelsdk.js.map +1 -1
- package/package.json +3 -3
- package/src/api/callAPI/Call.js +1 -2
- package/src/api/omAPI/Diagnostics.js +120 -121
- package/src/api/omAPI/DiagnosticsListener.js +13 -12
- package/src/api/registerAPI/RegisterListener.js +12 -12
- package/src/listeners/CallListener.js +10 -10
- package/src/listeners/Callback.js +132 -132
- package/src/listeners/ExWebClient.js +25 -18
- package/src/listeners/ExotelVoiceClientListener.js +9 -9
- package/src/listeners/SessionListeners.js +110 -110
- package/src/api/omAPI/WebrtcLogger.js +0 -55
package/Changelog
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
Change Log
|
|
2
|
+
## v1.0.12 01 September, 2024
|
|
3
|
+
-[VST-807] Added real-time selection for microphone and speaker devices, and implemented callbacks to notify the application when a device change occurs. also added logger callback
|
|
4
|
+
|
|
2
5
|
## v1.0.10 24 March 2024
|
|
3
6
|
-[VST-609] added DTMF support in SDK
|
|
4
7
|
|
package/Makefile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
build:dep
|
|
2
|
+
npm run build
|
|
3
|
+
cp -r ../webrtc-core-sdk/src/static/* dist/
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
build-local:
|
|
7
|
+
npm uninstall @exotel-npm-dev/webrtc-core-sdk
|
|
8
|
+
npm install ../webrtc-core-sdk
|
|
9
|
+
npm run build
|
|
10
|
+
cp -r ../webrtc-core-sdk/src/static/* dist/
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
dep:
|
|
14
|
+
npm uninstall @exotel-npm-dev/webrtc-core-sdk
|
|
15
|
+
npm install @exotel-npm-dev/webrtc-core-sdk@latest
|
|
16
|
+
|