react-native-persona 2.6.1 → 2.6.3

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.
@@ -25,11 +25,11 @@ Pod::Spec.new do |s|
25
25
 
26
26
  s.default_subspec = 'Core'
27
27
  s.subspec 'Core' do |ss|
28
- ss.dependency 'PersonaInquirySDK2', '2.10.0'
28
+ ss.dependency 'PersonaInquirySDK2', '2.12.4'
29
29
  end
30
30
 
31
31
  s.subspec 'Nfc' do |ss|
32
- ss.dependency 'PersonaNfc', '2.10.0'
32
+ ss.dependency 'PersonaNfc', '2.12.4'
33
33
  ss.dependency 'OpenSSL-Universal', '1.1.180'
34
34
  end
35
35
  end
@@ -66,5 +66,5 @@ dependencies {
66
66
  //noinspection GradleDynamicVersion
67
67
  implementation 'com.facebook.react:react-native:+' // From node_modules
68
68
 
69
- implementation 'com.withpersona.sdk2:inquiry:2.7.1'
69
+ implementation 'com.withpersona.sdk2:inquiry:2.8.2'
70
70
  }
@@ -329,9 +329,7 @@ public class PersonaInquiryModule2 extends ReactContextBaseJavaModule
329
329
  builder = builder.environment(environment);
330
330
  }
331
331
 
332
- RoutingCountry routingCountry = routingCountryFromString(
333
- options.hasKey(ROUTING_COUNTRY) ? options.getString(ROUTING_COUNTRY) : null
334
- );
332
+ String routingCountry = options.hasKey(ROUTING_COUNTRY) ? options.getString(ROUTING_COUNTRY) : null;
335
333
  if (routingCountry != null) {
336
334
  builder = builder.routingCountry(routingCountry);
337
335
  }
@@ -395,19 +393,4 @@ public class PersonaInquiryModule2 extends ReactContextBaseJavaModule
395
393
  return null;
396
394
  }
397
395
  }
398
-
399
- private RoutingCountry routingCountryFromString(@Nullable String routingCountry) {
400
- if (routingCountry == null) {
401
- return null;
402
- }
403
-
404
- switch (routingCountry) {
405
- case "de":
406
- return RoutingCountry.DE;
407
- case "us":
408
- return RoutingCountry.US;
409
- default:
410
- return null;
411
- }
412
- }
413
396
  }
@@ -63,8 +63,7 @@ class PersonaInquiry2: RCTEventEmitter {
63
63
  .theme(makeTheme(from: themeObject, themeSource: themeSource))
64
64
  .nfcAdapter(nfcAdapter)
65
65
  .collectionDelegate(returnCollectedData ? self : nil)
66
- // fix(jake): implement StringConstructable in iOS sdk then use RoutingCountry.from(rawValue)
67
- .routingCountry(routingCountry == "de" ? .de : .us)
66
+ .routingCountry(routingCountry)
68
67
  .build()
69
68
  } else if let templateId {
70
69
  inquiry = Inquiry.from(templateId: templateId, delegate: self)
@@ -74,8 +73,7 @@ class PersonaInquiry2: RCTEventEmitter {
74
73
  .theme(makeTheme(from: themeObject, themeSource: themeSource))
75
74
  .nfcAdapter(nfcAdapter)
76
75
  .collectionDelegate(returnCollectedData ? self : nil)
77
- // fix(jake): implement StringConstructable in iOS sdk then use RoutingCountry.from(rawValue)
78
- .routingCountry(routingCountry == "de" ? .de : .us)
76
+ .routingCountry(routingCountry)
79
77
  .build()
80
78
  } else if let templateVersion {
81
79
  inquiry = Inquiry.from(templateVersion: templateVersion, delegate: self)
@@ -85,8 +83,7 @@ class PersonaInquiry2: RCTEventEmitter {
85
83
  .theme(makeTheme(from: themeObject, themeSource: themeSource))
86
84
  .nfcAdapter(nfcAdapter)
87
85
  .collectionDelegate(returnCollectedData ? self : nil)
88
- // fix(jake): implement StringConstructable in iOS sdk then use RoutingCountry.from(rawValue)
89
- .routingCountry(routingCountry == "de" ? .de : .us)
86
+ .routingCountry(routingCountry)
90
87
  .build()
91
88
  }
92
89
 
@@ -579,7 +576,8 @@ extension PersonaInquiry2 {
579
576
  let loadingAnimationAssetPath = Bundle(for: PersonaInquiry2.self).path(forResource: loadingAnimationAssetName, ofType: "json") {
580
577
  let customLoadingAnimationAsset = InquiryTheme.AnimationAsset(
581
578
  path: loadingAnimationAssetPath,
582
- size: CGSize(width: loadingAnimationAssetWidth, height: loadingAnimationAssetHeight)
579
+ size: CGSize(width: loadingAnimationAssetWidth, height: loadingAnimationAssetHeight),
580
+ loopMode: .loop
583
581
  )
584
582
 
585
583
  theme.loadingAnimation = customLoadingAnimationAsset
@@ -591,7 +589,8 @@ extension PersonaInquiry2 {
591
589
  let processingAnimationAssetPath = Bundle(for: PersonaInquiry2.self).path(forResource: processingAnimationAssetName, ofType: "json") {
592
590
  let customProcessingAnimationAsset = InquiryTheme.AnimationAsset(
593
591
  path: processingAnimationAssetPath,
594
- size: CGSize(width: processingAnimationAssetWidth, height: processingAnimationAssetHeight)
592
+ size: CGSize(width: processingAnimationAssetWidth, height: processingAnimationAssetHeight),
593
+ loopMode: .loop
595
594
  )
596
595
 
597
596
  theme.processingAnimation = customProcessingAnimationAsset
@@ -603,7 +602,8 @@ extension PersonaInquiry2 {
603
602
  let path = Bundle(for: PersonaInquiry2.self).path(forResource: assetName, ofType: "json") {
604
603
  let customAsset = InquiryTheme.AnimationAsset(
605
604
  path: path,
606
- size: CGSize(width: width, height: height)
605
+ size: CGSize(width: width, height: height),
606
+ loopMode: .loop
607
607
  )
608
608
 
609
609
  theme.selfieAsset = customAsset
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-persona",
3
3
  "title": "React Native Persona",
4
- "version": "2.6.1",
4
+ "version": "2.6.3",
5
5
  "description": "Launch a mobile native implementation of the Persona inquiry flow from React Native.",
6
6
  "main": "lib/commonjs/index",
7
7
  "module": "lib/module/index",