idwise-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 'IDWise', '6.
|
|
19
|
+
s.dependency 'IDWise', '6.5.0'
|
|
20
20
|
s.pod_target_xcconfig = {
|
|
21
21
|
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"",
|
|
22
22
|
"OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1",
|
|
@@ -18,7 +18,6 @@ import com.idwise.sdk.IDWiseDynamic
|
|
|
18
18
|
import com.idwise.sdk.IDWiseJourneyCallbacks
|
|
19
19
|
import com.idwise.sdk.IDWiseStepCallbacks
|
|
20
20
|
import com.idwise.sdk.data.models.*
|
|
21
|
-
import com.idwise.sdk.data.models.FinalJourneyResultSummary
|
|
22
21
|
import java.io.ByteArrayOutputStream
|
|
23
22
|
import org.json.JSONObject
|
|
24
23
|
|
|
@@ -320,7 +319,8 @@ class IdwiseReactNativeSdkModule(private val reactContext: ReactApplicationConte
|
|
|
320
319
|
)
|
|
321
320
|
|
|
322
321
|
internal data class JourneyResultExposed(
|
|
323
|
-
|
|
322
|
+
@JsonIgnoreProperties(value = ["pollingDelay", "requestId"])
|
|
323
|
+
val result:JourneyResultInfo?,
|
|
324
324
|
@JsonIgnoreProperties(value = ["cause", "stackTrace", "suppressed"])
|
|
325
325
|
val error:IDWiseError?
|
|
326
326
|
)
|