react-sip-kit 0.3.61 → 0.3.62

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 +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -77,12 +77,12 @@ function DialPad() {
77
77
  ### 3. Render media streams
78
78
 
79
79
  ```tsx
80
- import { Video, Audio } from 'react-sip-kit';
80
+ import { VideoStream, AudioStream } from 'react-sip-kit';
81
81
 
82
- <Video type="local" lineNumber={1} />
83
- <Video type="remote" lineNumber={1} />
84
- <Audio type="local" lineNumber={1} />
85
- <Audio type="remote" lineNumber={1} />
82
+ <VideoStream type="local" lineNumber={1} />
83
+ <VideoStream type="remote" lineNumber={1} />
84
+ <AudioStream type="local" lineNumber={1} />
85
+ <AudioStream type="remote" lineNumber={1} />
86
86
  ```
87
87
 
88
88
  ---
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-sip-kit",
3
3
  "private": false,
4
- "version": "0.3.61",
4
+ "version": "0.3.62",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Shervin Ghajar",