@regulaforensics/react-native-document-reader-api 7.5.745-nightly → 7.5.747-nightly

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.
@@ -14,6 +14,6 @@ Pod::Spec.new do |s|
14
14
  s.source = { :http => 'file:' + __dir__ }
15
15
  s.ios.deployment_target = '11.0'
16
16
  s.source_files = "ios/*.{h,m}"
17
- s.dependency 'DocumentReaderNightly', '7.5.3989'
17
+ s.dependency 'DocumentReaderNightly', '7.5.4015'
18
18
  s.dependency 'React'
19
19
  end
@@ -41,7 +41,7 @@ dependencies {
41
41
  //noinspection GradleDynamicVersion
42
42
  implementation 'com.facebook.react:react-native:+'
43
43
  //noinspection GradleDependency
44
- implementation('com.regula.documentreader:api:7.5.10247') {
44
+ implementation('com.regula.documentreader:api:7.5.10254') {
45
45
  transitive = true
46
46
  }
47
47
  }
package/example/App.tsx CHANGED
@@ -201,6 +201,11 @@ export default class App extends React.Component<IProps, IState> {
201
201
  if (value != null && value != "")
202
202
  this.setState({ portrait: { uri: "data:image/png;base64," + value } })
203
203
  }, (error: string) => console.log(error))
204
+
205
+ results.graphicFieldImageByTypeSource(Enum.eGraphicFieldType.GF_PORTRAIT, Enum.eRPRM_ResultType.RFID_RESULT_TYPE_RFID_IMAGE_DATA, (value: string | undefined) => {
206
+ if (value != null && value != "")
207
+ this.setState({ portrait: { uri: "data:image/png;base64," + value } })
208
+ }, (error: string) => console.log(error))
204
209
  }
205
210
 
206
211
  customRFID() {
@@ -10,8 +10,8 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "@regulaforensics/react-native-document-reader-api": "7.5.745-nightly",
14
- "@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.772-nightly",
13
+ "@regulaforensics/react-native-document-reader-api": "7.5.747-nightly",
14
+ "@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.773-nightly",
15
15
  "react-native-progress": "5.0.0",
16
16
  "react-native-radio-buttons-group": "3.0.5",
17
17
  "@rneui/base": "4.0.0-rc.7",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/react-native-document-reader-api",
3
- "version": "7.5.745-nightly",
3
+ "version": "7.5.747-nightly",
4
4
  "description": "React Native module for reading and validation of identification documents (API framework)",
5
5
  "main": "index.js",
6
6
  "scripts": {