react-native-move-sdk 2.3.7 → 2.3.8

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.
@@ -157,8 +157,8 @@ class MoveSdkModule(context: ReactApplicationContext) : ReactContextBaseJavaModu
157
157
  }
158
158
 
159
159
  @ReactMethod
160
- fun forceTripRecognition(duration: Long?) {
161
- nativeSdkWrapper.forceTripRecognition(duration)
160
+ fun forceTripRecognition(duration: Int?) {
161
+ nativeSdkWrapper.forceTripRecognition(duration?.toLong())
162
162
  }
163
163
 
164
164
  @ReactMethod
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-move-sdk",
3
- "version": "2.3.7",
3
+ "version": "2.3.8",
4
4
  "description": "React Native library for MOVE SDK",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",