react-native-netmera 1.7.6-beta02 → 1.7.6-beta03

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/README.md CHANGED
@@ -489,4 +489,4 @@ startDataTransfer() method, the SDK will attempt to resend any requests that wer
489
489
  Netmera.startDataTransfer();
490
490
  ```
491
491
 
492
- Please explore [our example project](https://github.com/Netmera/Netmera-React-Native-Example) for detailed information.
492
+ Please explore [our example project](https://github.com/Netmera/Netmera-React-Native-Typescript-Example) for detailed information.
package/RNNetmera.podspec CHANGED
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
18
18
  s.requires_arc = true
19
19
 
20
20
  s.dependency 'React'
21
- s.dependency 'Netmera','3.23.7-WithoutDependency'
21
+ s.dependency 'Netmera','3.23.6-WithoutDependency'
22
22
  end
23
23
 
@@ -19,7 +19,7 @@ android {
19
19
  }
20
20
 
21
21
  dependencies {
22
- implementation 'com.netmera:nmcore:3.13.1'
22
+ implementation 'com.netmera:nmcore:3.14.0'
23
23
  implementation 'com.netmera:nmfcm:3.12.0'
24
24
  implementation 'com.netmera:nmhms:3.11.0'
25
25
  implementation 'com.facebook.react:react-native:+'
package/ios/RNNetmera.m CHANGED
@@ -191,8 +191,7 @@ RCT_EXPORT_METHOD(fetchInbox:(NSDictionary *)inboxDictionary
191
191
  [Netmera fetchInboxUsingFilter:filter
192
192
  completion:^(NetmeraInbox *inbox, NSError *error) {
193
193
  if(error) {
194
- NSString *errorMessage = [NSString stringWithFormat: @"%@", error];
195
- reject(ERROR_CODE_INBOX, errorMessage, nil);
194
+ reject(ERROR_CODE_INBOX, ERROR_MESSAGE_INBOX, nil);
196
195
  }else{
197
196
  self.netmeraInbox = inbox;
198
197
  NSMutableArray *array = [[NSMutableArray alloc]init];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-netmera",
3
- "version": "1.7.6-beta02",
3
+ "version": "1.7.6-beta03",
4
4
  "description": "Netmera React Native SDK",
5
5
  "main": "index.ts",
6
6
  "author": "netmera",