call-control-sdk 6.4.2 → 6.4.3

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -303,10 +303,10 @@ export default function LogoutButton() {
303
303
  get Authorization token for external API call
304
304
 
305
305
  ```tsx
306
- import { getAuthorizationToken } from "call-control-sdk";
306
+ import { useGetAuthorizationToken } from "call-control-sdk";
307
307
 
308
308
  export default function axios() {
309
- const token = getAuthorizationToken();
309
+ const token = useGetAuthorizationToken();
310
310
 
311
311
  console.log(token);
312
312
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "call-control-sdk",
3
3
  "description": "Call Control SDK for Web RTC",
4
- "version": "6.4.2",
4
+ "version": "6.4.3",
5
5
  "author": "CTI SDK Team",
6
6
  "license": "MIT",
7
7
  "main": "./dist/index.js",