@regulaforensics/document-reader 9.7.951-nightly → 9.7.953-rc
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/RNDocumentReader.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Config.kt +30 -10
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/JSONConstructor.kt +12 -1
- package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Utils.kt +1 -1
- package/examples/capacitor/package-lock.json +14 -14
- package/examples/capacitor/package.json +3 -3
- package/examples/ionic/package-lock.json +125 -588
- package/examples/ionic/package.json +5 -4
- package/examples/react_native/package-lock.json +539 -638
- package/examples/react_native/package.json +3 -3
- package/ios/RGLWConfig.h +2 -0
- package/ios/RGLWConfig.m +25 -5
- package/ios/RGLWJSONConstructor.h +2 -0
- package/ios/RGLWJSONConstructor.m +12 -0
- package/package.json +1 -1
- package/plugin.xml +8 -8
- package/test/json.tsx +6 -0
- package/test/package-lock.json +5 -2
- package/test/test.tsx +206 -2
- package/www/capacitor/index.js +207 -17
- package/www/capacitor/params/process_params/AuthenticityParams.js +15 -0
- package/www/capacitor/params/process_params/AuthenticityPropertiesParams.js +31 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +5 -1
- package/www/capacitor/results/authenticity/Authenticity.js +2 -1
- package/www/capacitor/results/authenticity/CheckDiagnose.js +4 -1
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +1 -0
- package/www/capacitor/results/visual_results/FieldType.js +3 -1
- package/www/cordova.js +199 -123
- package/www/react-native/index.js +207 -17
- package/www/react-native/params/process_params/AuthenticityParams.js +15 -0
- package/www/react-native/params/process_params/AuthenticityPropertiesParams.js +31 -0
- package/www/react-native/params/process_params/FaceApiParams.js +5 -1
- package/www/react-native/results/authenticity/Authenticity.js +2 -1
- package/www/react-native/results/authenticity/CheckDiagnose.js +4 -1
- package/www/react-native/results/authenticity/SecurityFeatureType.js +1 -0
- package/www/react-native/results/visual_results/FieldType.js +3 -1
- package/www/types/index.d.ts +206 -19
- package/www/types/params/process_params/AuthenticityParams.d.ts +5 -4
- package/www/types/params/process_params/AuthenticityPropertiesParams.d.ts +10 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +4 -0
- package/www/types/params/process_params/ProcessParams.d.ts +3 -2
- package/www/types/results/authenticity/Authenticity.d.ts +1 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +3 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +1 -0
- package/www/types/results/visual_results/FieldType.d.ts +3 -1
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/BluetoothUtil.kt +0 -0
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/Main.kt +0 -0
- /package/android/src/main/{java → kotlin}/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +0 -0
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"@ionic/cordova-builders": "^12.3.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "^9.2.0",
|
|
21
21
|
"@awesome-cordova-plugins/file": "^9.2.0",
|
|
22
|
-
"@regulaforensics/document-reader": "9.7.
|
|
23
|
-
"@regulaforensics/document-reader-core-fullauthrfid": "9.
|
|
24
|
-
"@regulaforensics/document-reader-btdevice": "9.
|
|
22
|
+
"@regulaforensics/document-reader": "9.7.953-rc",
|
|
23
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "9.7.2665-rc",
|
|
24
|
+
"@regulaforensics/document-reader-btdevice": "9.7.60-rc",
|
|
25
25
|
"cordova-android": "^15.0.0",
|
|
26
26
|
"cordova-ios": "^8.1.1",
|
|
27
27
|
"cordova-plugin-camera": "^8.0.0",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"picomatch": "^4.0.4",
|
|
38
38
|
"serialize-javascript": "^7.0.4",
|
|
39
39
|
"uuid": "^14.0.0",
|
|
40
|
-
"webpack-dev-server": "^5.2.4"
|
|
40
|
+
"webpack-dev-server": "^5.2.4",
|
|
41
|
+
"@hono/node-server": "^2.0.5"
|
|
41
42
|
},
|
|
42
43
|
"cordova": {
|
|
43
44
|
"plugins": {
|