react-native-risk-sdk 1.4.22 → 1.4.23

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.
@@ -101,6 +101,15 @@ public class RiskSdkModule extends ReactContextBaseJavaModule {
101
101
  FinBox.syncSmsData();
102
102
  }
103
103
 
104
+ /**
105
+ * Sync the data once
106
+ */
107
+ @SuppressLint("MissingPermission")
108
+ @ReactMethod
109
+ public void syncPermissionData() {
110
+ FinBox.syncPermissionData();
111
+ }
112
+
104
113
  /**
105
114
  * Sync the data once
106
115
  */
@@ -110,6 +119,42 @@ public class RiskSdkModule extends ReactContextBaseJavaModule {
110
119
  FinBox.syncContactsData();
111
120
  }
112
121
 
122
+ /**
123
+ * Sync the data once
124
+ */
125
+ @SuppressLint("MissingPermission")
126
+ @ReactMethod
127
+ public void syncCallData() {
128
+ FinBox.syncCallData();
129
+ }
130
+
131
+ /**
132
+ * Sync the data once
133
+ */
134
+ @SuppressLint("MissingPermission")
135
+ @ReactMethod
136
+ public void syncLocationData() {
137
+ FinBox.syncLocationData();
138
+ }
139
+
140
+ /**
141
+ * Sync the data once
142
+ */
143
+ @SuppressLint("MissingPermission")
144
+ @ReactMethod
145
+ public void syncDeviceData() {
146
+ FinBox.syncDeviceData();
147
+ }
148
+
149
+ /**
150
+ * Sync the data once
151
+ */
152
+ @SuppressLint("MissingPermission")
153
+ @ReactMethod
154
+ public void syncAppsListData() {
155
+ FinBox.syncAppsListData();
156
+ }
157
+
113
158
  /**
114
159
  * Sync the data once
115
160
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-risk-sdk",
3
3
  "title": "React Native Risk Sdk",
4
- "version": "1.4.22",
4
+ "version": "1.4.23",
5
5
  "description": "A Wrapper around the Risk Android SDK",
6
6
  "main": "index.js",
7
7
  "scripts": {