@stream-io/react-native-callingx 0.3.0 → 0.3.1
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.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.3.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/react-native-callingx-0.3.0...@stream-io/react-native-callingx-0.3.1) (2026-05-26)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- added missing bridge method placeholders ([#2260](https://github.com/GetStream/stream-video-js/issues/2260)) ([9f1bbd4](https://github.com/GetStream/stream-video-js/commit/9f1bbd41337f999c850e22a9ebcc97b8a9b226b8))
|
|
10
|
+
|
|
5
11
|
## [0.3.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/react-native-callingx-0.2.0...@stream-io/react-native-callingx-0.3.0) (2026-05-25)
|
|
6
12
|
|
|
7
13
|
### Features
|
|
@@ -37,6 +37,10 @@ class CallingxModule(reactContext: ReactApplicationContext) :
|
|
|
37
37
|
// leave empty
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
override fun setDefaultAudioDeviceEndpointType(endpointType: String?) {
|
|
41
|
+
// leave empty
|
|
42
|
+
}
|
|
43
|
+
|
|
40
44
|
override fun setupAndroid(options: ReadableMap) {
|
|
41
45
|
impl.setupAndroid(options)
|
|
42
46
|
}
|
|
@@ -44,6 +44,11 @@ class CallingxModule(private val reactContext: ReactApplicationContext) :
|
|
|
44
44
|
// leave empty
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
@ReactMethod
|
|
48
|
+
fun setDefaultAudioDeviceEndpointType(endpointType: String?) {
|
|
49
|
+
// leave empty
|
|
50
|
+
}
|
|
51
|
+
|
|
47
52
|
@ReactMethod
|
|
48
53
|
fun setupAndroid(options: ReadableMap) {
|
|
49
54
|
impl.setupAndroid(options)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/react-native-callingx",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "CallKit and Telecom API capabilities for React Native",
|
|
5
5
|
"main": "./dist/module/index.js",
|
|
6
6
|
"module": "./dist/module/index.js",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@react-native-community/cli": "20.0.1",
|
|
63
|
-
"@react-native/babel-preset": "
|
|
63
|
+
"@react-native/babel-preset": "0.81.5",
|
|
64
64
|
"@stream-io/react-native-webrtc": "137.2.0",
|
|
65
65
|
"@types/react": "^19.1.0",
|
|
66
66
|
"del-cli": "^6.0.0",
|
|
67
67
|
"react": "19.1.0",
|
|
68
|
-
"react-native": "
|
|
68
|
+
"react-native": "0.81.5",
|
|
69
69
|
"react-native-builder-bob": "^0.40.15",
|
|
70
70
|
"typescript": "^5.9.2"
|
|
71
71
|
},
|