react-native-rook-sdk 1.1.3 → 1.1.4
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/ios/RookSourcesModule.mm
CHANGED
|
@@ -102,8 +102,7 @@ RCT_EXPORT_METHOD(getAuthorizedDataSources: (RCTPromiseResolveBlock) resolve
|
|
|
102
102
|
|
|
103
103
|
[self checkSourcesInstance];
|
|
104
104
|
|
|
105
|
-
[sourceManager getAuthorizedDataSourcesWithCompletion:^(NSDictionary<NSString *,id> * _Nullable sources, NSError * _Nullable error) {
|
|
106
|
-
|
|
105
|
+
[sourceManager getAuthorizedDataSourcesWithCompletion:^(NSArray<NSDictionary<NSString *,id> *> * _Nullable sources, NSError * _Nullable error) {
|
|
107
106
|
if(error) {
|
|
108
107
|
reject(error.description, error.localizedDescription, error);
|
|
109
108
|
return;
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
18
18
|
|
|
19
|
-
s.dependency "RookSDK", "1.
|
|
19
|
+
s.dependency "RookSDK", "1.7.2"
|
|
20
20
|
|
|
21
21
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
22
22
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|