@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 CHANGED
@@ -1,4 +1,7 @@
1
- Change Log
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
+