@regulaforensics/idv 3.4.86-beta → 3.6.97-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/RNIDV.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/idv/Main.kt +8 -0
- package/android/src/main/java/com/regula/plugin/idv/Utils.kt +7 -0
- package/examples/capacitor/package-lock.json +955 -1161
- package/examples/capacitor/package.json +5 -7
- package/examples/ionic/package-lock.json +2839 -2228
- package/examples/ionic/package.json +15 -9
- package/examples/react_native/package-lock.json +1656 -3335
- package/examples/react_native/package.json +17 -16
- package/ios/Main.swift +8 -0
- package/ios/RNIDV.swift +2 -1
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/package-lock.json +1 -1
- package/www/capacitor/index.js +12 -0
- package/www/capacitor/internal/bridge.js +9 -0
- package/www/cordova.js +23 -0
- package/www/react-native/index.js +12 -0
- package/www/react-native/internal/bridge.js +9 -0
- package/www/types/index.d.ts +13 -0
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
"postinstall": "patch-package"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@regulaforensics/idv": "3.6.97-nightly",
|
|
11
|
+
"@regulaforensics/idv-module-document-reader": "3.6.78-nightly",
|
|
12
|
+
"@regulaforensics/idv-module-face": "3.6.77-nightly",
|
|
13
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "9.5.2382",
|
|
14
|
+
"@regulaforensics/face-core-basic": "8.2.521",
|
|
10
15
|
"@angular-devkit/build-angular": "^21.1.4",
|
|
11
16
|
"@angular/cli": "^21.1.4",
|
|
12
17
|
"@angular/common": "^21.1.5",
|
|
@@ -17,26 +22,27 @@
|
|
|
17
22
|
"@angular/router": "^21.1.5",
|
|
18
23
|
"@ionic/angular": "^8.7.17",
|
|
19
24
|
"@ionic/cordova-builders": "^12.3.0",
|
|
20
|
-
"@regulaforensics/document-reader": "9.2.621",
|
|
21
|
-
"@regulaforensics/face-sdk": "8.1.816",
|
|
22
|
-
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
23
|
-
"@regulaforensics/face-core-basic": "8.1.422",
|
|
24
|
-
"@regulaforensics/idv": "3.4.86-beta",
|
|
25
|
-
"@regulaforensics/idv-module-document-reader": "3.4.56-beta",
|
|
26
|
-
"@regulaforensics/idv-module-face": "3.4.57-beta",
|
|
27
25
|
"cordova-android": "^14.0.1",
|
|
28
26
|
"cordova-ios": "^8.0.0",
|
|
29
27
|
"cordova-plugin-ionic-webview": "^5.0.1",
|
|
30
28
|
"patch-package": "^8.0.1"
|
|
31
29
|
},
|
|
30
|
+
"overrides": {
|
|
31
|
+
"ajv": "^8.18.0",
|
|
32
|
+
"serialize-javascript": "^7.0.4",
|
|
33
|
+
"@angular/compiler": "^21.2.4",
|
|
34
|
+
"undici": "^7.24.0",
|
|
35
|
+
"picomatch": "^4.0.4",
|
|
36
|
+
"postcss": "^8.5.10",
|
|
37
|
+
"uuid": "^11.1.1",
|
|
38
|
+
"webpack-dev-server": "^5.2.4"
|
|
39
|
+
},
|
|
32
40
|
"cordova": {
|
|
33
41
|
"plugins": {
|
|
34
42
|
"@regulaforensics/idv": {},
|
|
35
43
|
"@regulaforensics/idv-module-document-reader": {},
|
|
36
44
|
"@regulaforensics/idv-module-face": {},
|
|
37
|
-
"@regulaforensics/document-reader": {},
|
|
38
45
|
"@regulaforensics/document-reader-core-fullauthrfid": {},
|
|
39
|
-
"@regulaforensics/face-sdk": {},
|
|
40
46
|
"@regulaforensics/face-core-basic": {},
|
|
41
47
|
"cordova-plugin-ionic-webview": {}
|
|
42
48
|
},
|