@regulaforensics/idv 9.5.92-nightly → 9.5.101-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 +1 -1
- package/android/cordova.gradle +1 -1
- package/examples/capacitor/package-lock.json +943 -1149
- package/examples/capacitor/package.json +5 -7
- package/examples/capacitor/scripts/android.sh +1 -1
- package/examples/ionic/package-lock.json +1542 -1759
- package/examples/ionic/package.json +9 -10
- package/examples/ionic/scripts/android.sh +1 -1
- package/examples/react_native/app.config.ts +0 -1
- package/examples/react_native/package-lock.json +1637 -3328
- package/examples/react_native/package.json +17 -16
- package/examples/react_native/scripts/android.sh +1 -1
- package/package.json +1 -1
- package/plugin.xml +2 -2
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
"postinstall": "patch-package"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
+
"@regulaforensics/idv": "9.5.101-nightly",
|
|
11
|
+
"@regulaforensics/idv-module-document-reader": "9.5.79-nightly",
|
|
12
|
+
"@regulaforensics/idv-module-face": "9.5.80-nightly",
|
|
13
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "9.6.2397-nightly",
|
|
14
|
+
"@regulaforensics/face-core-basic": "8.3.593-nightly",
|
|
10
15
|
"@angular-devkit/build-angular": "^21.1.4",
|
|
11
16
|
"@angular/cli": "^21.1.4",
|
|
12
17
|
"@angular/common": "^21.1.5",
|
|
@@ -17,13 +22,6 @@
|
|
|
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.6.820-nightly",
|
|
21
|
-
"@regulaforensics/face-sdk": "8.3.1078-nightly",
|
|
22
|
-
"@regulaforensics/document-reader-core-fullauthrfid": "9.6.2367-nightly",
|
|
23
|
-
"@regulaforensics/face-core-basic": "8.3.589-nightly",
|
|
24
|
-
"@regulaforensics/idv": "9.5.92-nightly",
|
|
25
|
-
"@regulaforensics/idv-module-document-reader": "9.5.71-nightly",
|
|
26
|
-
"@regulaforensics/idv-module-face": "9.5.72-nightly",
|
|
27
25
|
"cordova-android": "^14.0.1",
|
|
28
26
|
"cordova-ios": "^8.0.0",
|
|
29
27
|
"cordova-plugin-ionic-webview": "^5.0.1",
|
|
@@ -34,16 +32,17 @@
|
|
|
34
32
|
"serialize-javascript": "^7.0.4",
|
|
35
33
|
"@angular/compiler": "^21.2.4",
|
|
36
34
|
"undici": "^7.24.0",
|
|
37
|
-
"picomatch": "^4.0.4"
|
|
35
|
+
"picomatch": "^4.0.4",
|
|
36
|
+
"postcss": "^8.5.10",
|
|
37
|
+
"uuid": "^11.1.1",
|
|
38
|
+
"webpack-dev-server": "^5.2.4"
|
|
38
39
|
},
|
|
39
40
|
"cordova": {
|
|
40
41
|
"plugins": {
|
|
41
42
|
"@regulaforensics/idv": {},
|
|
42
43
|
"@regulaforensics/idv-module-document-reader": {},
|
|
43
44
|
"@regulaforensics/idv-module-face": {},
|
|
44
|
-
"@regulaforensics/document-reader": {},
|
|
45
45
|
"@regulaforensics/document-reader-core-fullauthrfid": {},
|
|
46
|
-
"@regulaforensics/face-sdk": {},
|
|
47
46
|
"@regulaforensics/face-core-basic": {},
|
|
48
47
|
"cordova-plugin-ionic-webview": {}
|
|
49
48
|
},
|
|
@@ -33,7 +33,6 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
|
33
33
|
'android.permission.ACCESS_COARSE_LOCATION',
|
|
34
34
|
'android.permission.ACCESS_FINE_LOCATION'
|
|
35
35
|
],
|
|
36
|
-
edgeToEdgeEnabled: true
|
|
37
36
|
},
|
|
38
37
|
plugins: [
|
|
39
38
|
['expo-custom-assets', { assetsPaths: ['./assets'] }],
|