@regulaforensics/document-reader 9.2.555-nightly → 9.2.557-beta
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/com/regula/plugin/documentreader/Config.kt +2 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +20 -1
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +9 -2
- package/examples/capacitor/package-lock.json +662 -743
- package/examples/capacitor/package.json +15 -15
- package/examples/ionic/package-lock.json +436 -489
- package/examples/ionic/package.json +1 -1
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWConfig.m +4 -0
- package/ios/RGLWJSONConstructor.h +2 -0
- package/ios/RGLWJSONConstructor.m +31 -4
- package/ios/RGLWMain.m +23 -22
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +9 -2
- package/test/package-lock.json +1 -1
- package/test/test.tsx +3 -2
- package/www/capacitor/config/FinalizeConfig.js +31 -0
- package/www/capacitor/index.js +15 -12
- package/www/capacitor/params/process_params/ProcessParams.js +8 -0
- package/www/capacitor/results/Results.js +4 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +1 -0
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +4 -0
- package/www/cordova.js +1001 -934
- package/www/react-native/config/FinalizeConfig.js +31 -0
- package/www/react-native/index.js +15 -12
- package/www/react-native/params/process_params/ProcessParams.js +8 -0
- package/www/react-native/results/Results.js +4 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +1 -0
- package/www/react-native/results/authenticity/SecurityFeatureType.js +4 -0
- package/www/types/config/FinalizeConfig.d.ts +5 -0
- package/www/types/index.d.ts +8 -7
- package/www/types/params/customization/Customization.d.ts +1 -1
- package/www/types/params/process_params/ProcessParams.d.ts +1 -4
- package/www/types/results/Results.d.ts +4 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +2 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +4 -0
- package/www/types/results/status/ResultsStatus.d.ts +0 -1
- /package/www/capacitor/{engagement → mdl}/DataRetrieval.js +0 -0
- /package/www/capacitor/{engagement → mdl}/DeviceEngagement.js +0 -0
- /package/www/capacitor/{engagement → mdl}/DeviceRetrievalMethod.js +0 -0
- /package/www/capacitor/{engagement → mdl}/DocumentRequestMDL.js +0 -0
- /package/www/capacitor/{engagement → mdl}/NameSpaceMDL.js +0 -0
- /package/www/react-native/{engagement → mdl}/DataRetrieval.js +0 -0
- /package/www/react-native/{engagement → mdl}/DeviceEngagement.js +0 -0
- /package/www/react-native/{engagement → mdl}/DeviceRetrievalMethod.js +0 -0
- /package/www/react-native/{engagement → mdl}/DocumentRequestMDL.js +0 -0
- /package/www/react-native/{engagement → mdl}/NameSpaceMDL.js +0 -0
- /package/www/types/{engagement → mdl}/DataRetrieval.d.ts +0 -0
- /package/www/types/{engagement → mdl}/DeviceEngagement.d.ts +0 -0
- /package/www/types/{engagement → mdl}/DeviceRetrievalMethod.d.ts +0 -0
- /package/www/types/{engagement → mdl}/DocumentRequestMDL.d.ts +0 -0
- /package/www/types/{engagement → mdl}/NameSpaceMDL.d.ts +0 -0
|
@@ -6,22 +6,22 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/document-reader": "9.2.
|
|
9
|
+
"@regulaforensics/document-reader": "9.2.557-beta",
|
|
10
10
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.1.1281",
|
|
11
11
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
12
|
-
"@awesome-cordova-plugins/file": "
|
|
13
|
-
"@awesome-cordova-plugins/camera": "
|
|
14
|
-
"cordova-plugin-file": "8.1.3",
|
|
15
|
-
"cordova-plugin-camera": "8.0.0",
|
|
16
|
-
"@capacitor/cli": "
|
|
17
|
-
"@capacitor/core": "
|
|
18
|
-
"@capacitor/app": "
|
|
19
|
-
"@capacitor/ios": "
|
|
20
|
-
"@capacitor/android": "
|
|
21
|
-
"@capacitor/status-bar": "
|
|
22
|
-
"@ionic/react": "8.
|
|
23
|
-
"@vitejs/plugin-react": "
|
|
24
|
-
"vite-plugin-static-copy": "3.
|
|
25
|
-
"@types/react-router-dom": "5.3.3"
|
|
12
|
+
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
13
|
+
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
14
|
+
"cordova-plugin-file": "^8.1.3",
|
|
15
|
+
"cordova-plugin-camera": "^8.0.0",
|
|
16
|
+
"@capacitor/cli": "^8.0.2",
|
|
17
|
+
"@capacitor/core": "^8.0.2",
|
|
18
|
+
"@capacitor/app": "^8.0.0",
|
|
19
|
+
"@capacitor/ios": "^8.0.2",
|
|
20
|
+
"@capacitor/android": "^8.0.2",
|
|
21
|
+
"@capacitor/status-bar": "^8.0.0",
|
|
22
|
+
"@ionic/react": "^8.7.17",
|
|
23
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
24
|
+
"vite-plugin-static-copy": "^3.2.0",
|
|
25
|
+
"@types/react-router-dom": "^5.3.3"
|
|
26
26
|
}
|
|
27
27
|
}
|