@regulaforensics/react-native-document-reader-api 8.4.292-rc → 8.4.293-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 = '13.0'
16
16
  s.source_files = "ios/*.{h,m}"
17
- s.dependency 'DocumentReaderStage', '8.4.5308'
17
+ s.dependency 'DocumentReaderNightly', '8.4.5316'
18
18
  s.dependency 'React'
19
19
  end
@@ -20,7 +20,7 @@ android {
20
20
  rootProject.allprojects {
21
21
  repositories {
22
22
  maven {
23
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
23
+ url "https://maven.regulaforensics.com/RegulaDocumentReader/Nightly"
24
24
  }
25
25
  }
26
26
  }
@@ -29,7 +29,7 @@ dependencies {
29
29
  //noinspection GradleDynamicVersion
30
30
  implementation 'com.facebook.react:react-native:+'
31
31
  //noinspection GradleDependency
32
- implementation('com.regula.documentreader:api:8.4.11986') {
32
+ implementation('com.regula.documentreader:api:8.4.11991') {
33
33
  transitive = true
34
34
  }
35
35
  }
@@ -143,6 +143,7 @@ fun setProcessParams(processParams: ProcessParam, opts: JSONObject) = opts.forEa
143
143
  "generateAlpha2Codes" -> processParams.generateAlpha2Codes = v as Boolean
144
144
  "disableAuthResolutionFilter" -> processParams.disableAuthResolutionFilter = v as Boolean
145
145
  "strictSecurityChecks" -> processParams.strictSecurityChecks = v as Boolean
146
+ "returnTransliteratedFields" -> processParams.returnTransliteratedFields = v as Boolean
146
147
  "measureSystem" -> processParams.measureSystem = v.toInt()
147
148
  "barcodeParserType" -> processParams.barcodeParserType = v.toInt()
148
149
  "perspectiveAngle" -> processParams.perspectiveAngle = v.toInt()
@@ -239,6 +240,7 @@ fun getProcessParams(processParams: ProcessParam) = mapOf(
239
240
  "generateAlpha2Codes" to processParams.generateAlpha2Codes,
240
241
  "disableAuthResolutionFilter" to processParams.disableAuthResolutionFilter,
241
242
  "strictSecurityChecks" to processParams.strictSecurityChecks,
243
+ "returnTransliteratedFields" to processParams.returnTransliteratedFields,
242
244
  "measureSystem" to processParams.measureSystem,
243
245
  "barcodeParserType" to processParams.barcodeParserType,
244
246
  "perspectiveAngle" to processParams.perspectiveAngle,
@@ -10,8 +10,8 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "@regulaforensics/react-native-document-reader-api": "8.4.292-rc",
14
- "@regulaforensics/react-native-document-reader-core-fullauthrfid": "8.4.984-rc",
13
+ "@regulaforensics/react-native-document-reader-api": "8.4.293-nightly",
14
+ "@regulaforensics/react-native-document-reader-core-fullauthrfid": "8.4.998-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/index.d.ts CHANGED
@@ -2141,6 +2141,7 @@ export class ProcessParams {
2141
2141
  generateAlpha2Codes?: boolean
2142
2142
  disableAuthResolutionFilter?: boolean
2143
2143
  strictSecurityChecks?: boolean
2144
+ returnTransliteratedFields?: boolean
2144
2145
  barcodeParserType?: number
2145
2146
  perspectiveAngle?: number
2146
2147
  minDPI?: number
@@ -2223,6 +2224,7 @@ export class ProcessParams {
2223
2224
  result.generateAlpha2Codes = jsonObject["generateAlpha2Codes"]
2224
2225
  result.disableAuthResolutionFilter = jsonObject["disableAuthResolutionFilter"]
2225
2226
  result.strictSecurityChecks = jsonObject["strictSecurityChecks"]
2227
+ result.returnTransliteratedFields = jsonObject["returnTransliteratedFields"]
2226
2228
  result.barcodeParserType = jsonObject["barcodeParserType"]
2227
2229
  result.perspectiveAngle = jsonObject["perspectiveAngle"]
2228
2230
  result.minDPI = jsonObject["minDPI"]
package/index.js CHANGED
@@ -1468,6 +1468,7 @@ export class ProcessParams {
1468
1468
  result.generateAlpha2Codes = jsonObject["generateAlpha2Codes"]
1469
1469
  result.disableAuthResolutionFilter = jsonObject["disableAuthResolutionFilter"]
1470
1470
  result.strictSecurityChecks = jsonObject["strictSecurityChecks"]
1471
+ result.returnTransliteratedFields = jsonObject["returnTransliteratedFields"]
1471
1472
  result.barcodeParserType = jsonObject["barcodeParserType"]
1472
1473
  result.perspectiveAngle = jsonObject["perspectiveAngle"]
1473
1474
  result.minDPI = jsonObject["minDPI"]
package/ios/RGLWConfig.m CHANGED
@@ -188,6 +188,7 @@
188
188
  if (options[@"generateAlpha2Codes"]) processParams.generateAlpha2Codes = options[@"generateAlpha2Codes"];
189
189
  if (options[@"disableAuthResolutionFilter"]) processParams.disableAuthResolutionFilter = options[@"disableAuthResolutionFilter"];
190
190
  if (options[@"strictSecurityChecks"]) processParams.strictSecurityChecks = options[@"strictSecurityChecks"];
191
+ if (options[@"returnTransliteratedFields"]) processParams.returnTransliteratedFields = options[@"returnTransliteratedFields"];
191
192
 
192
193
  // Int
193
194
  if([options valueForKey:@"measureSystem"] != nil)
@@ -327,6 +328,7 @@
327
328
  result[@"generateAlpha2Codes"] = processParams.generateAlpha2Codes;
328
329
  result[@"disableAuthResolutionFilter"] = processParams.disableAuthResolutionFilter;
329
330
  result[@"strictSecurityChecks"] = processParams.strictSecurityChecks;
331
+ result[@"returnTransliteratedFields"] = processParams.returnTransliteratedFields;
330
332
 
331
333
  // Int
332
334
  result[@"measureSystem"] = [NSNumber numberWithInteger:processParams.measureSystem];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/react-native-document-reader-api",
3
- "version": "8.4.292-rc",
3
+ "version": "8.4.293-nightly",
4
4
  "description": "React Native module for reading and validation of identification documents (API framework)",
5
5
  "main": "index.js",
6
6
  "scripts": {