@cometchat/calls-sdk-react-native 5.0.4 → 5.0.6
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/dist/index.d.mts +518 -21
- package/dist/index.d.ts +518 -21
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/ios/Modules/MultitaskingCamera.m +11 -1
- package/package.json +1 -1
|
@@ -3,7 +3,17 @@
|
|
|
3
3
|
|
|
4
4
|
#import <React/RCTBridgeModule.h>
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
// Where react-native-webrtc's headers land depends on how the host app links
|
|
7
|
+
// its pods, which an SDK does not get to choose: a directory named after the
|
|
8
|
+
// module under `use_frameworks!`, one named after the pod when CocoaPods
|
|
9
|
+
// namespaces its public headers, and the bare search path otherwise.
|
|
10
|
+
#if __has_include(<react_native_webrtc/WebRTCModuleOptions.h>)
|
|
11
|
+
#import <react_native_webrtc/WebRTCModuleOptions.h>
|
|
12
|
+
#elif __has_include(<react-native-webrtc/WebRTCModuleOptions.h>)
|
|
13
|
+
#import <react-native-webrtc/WebRTCModuleOptions.h>
|
|
14
|
+
#else
|
|
15
|
+
#import "WebRTCModuleOptions.h"
|
|
16
|
+
#endif
|
|
7
17
|
|
|
8
18
|
/**
|
|
9
19
|
* Opts every camera capture session react-native-webrtc creates into
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cometchat/calls-sdk-react-native",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "CometChat Calls SDK for React Native provides voice and video calling capabilities for React Native applications.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "dist/index.js",
|