idwise-nfc-react-native-sdk 6.4.2 → 6.5.0

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.
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
16
16
  s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
17
17
  s.private_header_files = "ios/**/*.h"
18
18
 
19
- s.dependency 'IDWiseNFC', '6.4.2'
19
+ s.dependency 'IDWiseNFC', '6.5.0'
20
20
 
21
21
  s.pod_target_xcconfig = {
22
22
  "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
@@ -4,4 +4,4 @@ IdwiseReactNativeSdk_targetSdkVersion=34
4
4
  IdwiseReactNativeSdk_compileSdkVersion=35
5
5
  IdwiseReactNativeSdk_ndkVersion=27.1.12297006
6
6
  # Idwise SDK version
7
- idwise_sdk_version=6.4.1
7
+ idwise_sdk_version=6.5.0
@@ -318,7 +318,8 @@ class IdwiseReactNativeSdkModule(private val reactContext: ReactApplicationConte
318
318
  )
319
319
 
320
320
  internal data class JourneyResultExposed(
321
- val result:FinalJourneyResultSummary?,
321
+ @JsonIgnoreProperties(value = ["pollingDelay", "requestId"])
322
+ val result:JourneyResultInfo?,
322
323
  @JsonIgnoreProperties(value = ["cause", "stackTrace", "suppressed"])
323
324
  val error:IDWiseError?
324
325
  )
@@ -352,7 +352,7 @@ private struct JourneySummaryExposed: Codable {
352
352
 
353
353
 
354
354
  private struct JourneyResultExposed: Codable {
355
- var result: IDWiseNFC.FinalJourneyResultSummary?
355
+ var result: IDWiseNFC.JourneyResultInfo?
356
356
  var error: IDWiseError?
357
357
  }
358
358
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idwise-nfc-react-native-sdk",
3
- "version": "6.4.2",
3
+ "version": "6.5.0",
4
4
  "description": "React-Native Wrapper for IDWise SDK",
5
5
  "main": "./lib/index.js",
6
6
  "react-native": "./src/index.js",