react-native-persona 2.8.4 → 2.8.6

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,16 +25,16 @@ 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.15.4'
28
+ ss.dependency 'PersonaInquirySDK2', '2.17.0'
29
29
  end
30
30
 
31
31
  s.subspec 'Nfc' do |ss|
32
- ss.dependency 'PersonaNfc', '2.15.4'
32
+ ss.dependency 'PersonaNfc', '2.17.0'
33
33
  ss.dependency 'OpenSSL-Universal', '>= 1.1.180', '<= 1.1.1900'
34
34
  end
35
35
 
36
36
  s.subspec 'WebRtc' do |ss|
37
- ss.dependency 'PersonaWebRtc', '2.15.4'
37
+ ss.dependency 'PersonaWebRtc', '2.17.0'
38
38
  ss.dependency 'WebRTC-lib', '111.0.0'
39
39
  end
40
40
  end
@@ -65,5 +65,5 @@ dependencies {
65
65
  implementation("com.facebook.react:react-android")
66
66
 
67
67
  // NB: be sure to bump `nfc-impl` in example/android/app/build.gradle as well
68
- implementation 'com.withpersona.sdk2:inquiry:2.10.16'
68
+ implementation 'com.withpersona.sdk2:inquiry:2.11.1'
69
69
  }
@@ -87,6 +87,7 @@ class PersonaInquiry2: RCTEventEmitter {
87
87
  let builder = Inquiry.from(templateId: templateId, delegate: self)
88
88
  builder
89
89
  .referenceId(referenceId)
90
+ .accountId(accountId)
90
91
  .environment(Environment.from(rawValue: environment))
91
92
  .environmentId(environmentId)
92
93
  .fields(fieldsFrom(fieldsObject))
@@ -105,6 +106,7 @@ class PersonaInquiry2: RCTEventEmitter {
105
106
  let builder = Inquiry.from(templateVersion: templateVersion, delegate: self)
106
107
  builder
107
108
  .referenceId(referenceId)
109
+ .accountId(accountId)
108
110
  .environment(Environment.from(rawValue: environment))
109
111
  .environmentId(environmentId)
110
112
  .fields(fieldsFrom(fieldsObject))
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.8.4",
4
+ "version": "2.8.6",
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",