@regulaforensics/cordova-plugin-document-reader-api 7.5.656-nightly → 7.5.662-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.
- package/example/package.json +2 -2
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/src/android/Config.kt +4 -4
- package/src/android/build.gradle +1 -1
- package/src/ios/RGLWConfig.m +1 -1
package/example/package.json
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"author": "Regula Forensics Inc.",
|
|
14
14
|
"license": "commercial",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "7.5.
|
|
17
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "7.5.
|
|
16
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "7.5.662-nightly",
|
|
17
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "7.5.834-nightly",
|
|
18
18
|
"cordova-android": "13.0.0",
|
|
19
19
|
"cordova-ios": "7.1.1",
|
|
20
20
|
"cordova-plugin-add-swift-support": "2.0.2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/cordova-plugin-document-reader-api",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.662-nightly",
|
|
4
4
|
"description": "Cordova plugin for reading and validation of identification documents (API framework)",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "@regulaforensics/cordova-plugin-document-reader-api",
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="cordova-plugin-document-reader-api" version="7.5.
|
|
2
|
+
<plugin id="cordova-plugin-document-reader-api" version="7.5.662-nightly"
|
|
3
3
|
xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
4
4
|
<name>DocumentReaderApi</name>
|
|
5
5
|
<description>Cordova plugin Document reader api</description>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
<config>
|
|
28
28
|
</config>
|
|
29
29
|
<pods>
|
|
30
|
-
<pod name="DocumentReaderNightly" spec="7.5.
|
|
30
|
+
<pod name="DocumentReaderNightly" spec="7.5.4212" />
|
|
31
31
|
</pods>
|
|
32
32
|
</podspec>
|
|
33
33
|
</platform>
|
package/src/android/Config.kt
CHANGED
|
@@ -274,8 +274,6 @@ fun setCustomization(customization: ParamsCustomization, opts: JSONObject, conte
|
|
|
274
274
|
"cameraFrameLineLength" -> editor.setCameraFrameLineLength(v.toInt())
|
|
275
275
|
"cameraFrameShapeType" -> editor.setCameraFrameShapeType(v.toInt())
|
|
276
276
|
"cameraFrameOffsetWidth" -> editor.setCameraFrameOffsetWidth(v.toInt())
|
|
277
|
-
"nextPageAnimationStartDelay" -> editor.setNextPageAnimationStartDelay(v.toInt())
|
|
278
|
-
"nextPageAnimationEndDelay" -> editor.setNextPageAnimationEndDelay(v.toInt())
|
|
279
277
|
"activityIndicatorSize" -> editor.setActivityIndicatorSize(v.toInt())
|
|
280
278
|
"status" -> editor.setStatus(v as String)
|
|
281
279
|
"resultStatus" -> editor.setResultStatus(v as String)
|
|
@@ -300,6 +298,8 @@ fun setCustomization(customization: ParamsCustomization, opts: JSONObject, conte
|
|
|
300
298
|
"cameraFramePortraitAspectRatio" -> editor.setCameraFramePortraitAspectRatio(v.toFloat())
|
|
301
299
|
"cameraFrameCornerRadius" -> editor.setCameraFrameCornerRadius(v.toFloat())
|
|
302
300
|
"livenessAnimationPositionMultiplier" -> editor.setLivenessAnimationPositionMultiplier(v.toFloat())
|
|
301
|
+
"nextPageAnimationStartDelay" -> editor.setNextPageAnimationStartDelay(v.toFloat())
|
|
302
|
+
"nextPageAnimationEndDelay" -> editor.setNextPageAnimationEndDelay(v.toFloat())
|
|
303
303
|
"multipageAnimationFrontImage" -> editor.setMultipageAnimationFrontImage(v.toDrawable(context))
|
|
304
304
|
"multipageAnimationBackImage" -> editor.setMultipageAnimationBackImage(v.toDrawable(context))
|
|
305
305
|
"borderBackgroundImage" -> editor.setBorderBackgroundImage(v.toDrawable(context))
|
|
@@ -348,8 +348,6 @@ fun getCustomization(customization: ParamsCustomization) = mapOf(
|
|
|
348
348
|
"cameraFrameLineLength" to customization.cameraFrameLineLength,
|
|
349
349
|
"cameraFrameShapeType" to customization.cameraFrameShapeType,
|
|
350
350
|
"cameraFrameOffsetWidth" to customization.cameraFrameOffsetWidth,
|
|
351
|
-
"nextPageAnimationStartDelay" to customization.nextPageAnimationStartDelay,
|
|
352
|
-
"nextPageAnimationEndDelay" to customization.nextPageAnimationEndDelay,
|
|
353
351
|
"activityIndicatorSize" to customization.activityIndicatorSize,
|
|
354
352
|
"status" to customization.status,
|
|
355
353
|
"resultStatus" to customization.resultStatus,
|
|
@@ -374,6 +372,8 @@ fun getCustomization(customization: ParamsCustomization) = mapOf(
|
|
|
374
372
|
"cameraFramePortraitAspectRatio" to customization.cameraFramePortraitAspectRatio,
|
|
375
373
|
"cameraFrameCornerRadius" to customization.cameraFrameCornerRadius,
|
|
376
374
|
"livenessAnimationPositionMultiplier" to customization.livenessAnimationPositionMultiplier,
|
|
375
|
+
"nextPageAnimationStartDelay" to customization.nextPageAnimationStartDelay,
|
|
376
|
+
"nextPageAnimationEndDelay" to customization.nextPageAnimationEndDelay,
|
|
377
377
|
"multipageAnimationFrontImage" to customization.multipageAnimationFrontImage.toString(),
|
|
378
378
|
"multipageAnimationBackImage" to customization.multipageAnimationBackImage.toString(),
|
|
379
379
|
"borderBackgroundImage" to customization.borderBackgroundImage.toString(),
|
package/src/android/build.gradle
CHANGED
package/src/ios/RGLWConfig.m
CHANGED
|
@@ -747,7 +747,7 @@
|
|
|
747
747
|
result[@"autoSettings"] = [NSNumber numberWithBool:rfidScenario.autoSettings];
|
|
748
748
|
result[@"proceedReadingAlways"] = [NSNumber numberWithBool:rfidScenario.proceedReadingAlways];
|
|
749
749
|
result[@"readDTC"] = [NSNumber numberWithBool:rfidScenario.readDTC];
|
|
750
|
-
result[@"mrzStrictCheck"] =
|
|
750
|
+
result[@"mrzStrictCheck"] = rfidScenario.mrzStrictCheck;
|
|
751
751
|
|
|
752
752
|
// Int
|
|
753
753
|
result[@"signManagementAction"] = [NSNumber numberWithInteger:rfidScenario.signManagementAction];
|