@regulaforensics/face-sdk 8.3.1105-nightly → 8.3.1111-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/RNFaceSDK.podspec +2 -2
- package/android/build.gradle +1 -1
- package/android/cordova.gradle +1 -1
- package/app.plugin.js +42 -0
- package/examples/capacitor/ios/App/Podfile +2 -1
- package/examples/capacitor/package-lock.json +227 -221
- package/examples/capacitor/package.json +5 -2
- package/examples/ionic/package-lock.json +1680 -2477
- package/examples/ionic/package.json +18 -14
- package/examples/react_native/app.config.ts +1 -0
- package/examples/react_native/package-lock.json +149 -180
- package/examples/react_native/package.json +4 -3
- package/package.json +4 -1
- package/plugin.xml +3 -3
- package/www/cordova.js +26 -11
|
@@ -7,21 +7,21 @@
|
|
|
7
7
|
"postinstall": "patch-package"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@angular-devkit/build-angular": "^21.
|
|
11
|
-
"@angular/cli": "^21.
|
|
12
|
-
"@angular/common": "^21.
|
|
13
|
-
"@angular/compiler-cli": "^21.
|
|
14
|
-
"@angular/core": "^21.
|
|
15
|
-
"@angular/forms": "^21.
|
|
16
|
-
"@angular/platform-browser-dynamic": "^21.
|
|
17
|
-
"@angular/router": "^21.
|
|
18
|
-
"@ionic/angular": "^8.
|
|
10
|
+
"@angular-devkit/build-angular": "^21.2.16",
|
|
11
|
+
"@angular/cli": "^21.2.16",
|
|
12
|
+
"@angular/common": "^21.2.17",
|
|
13
|
+
"@angular/compiler-cli": "^21.2.17",
|
|
14
|
+
"@angular/core": "^21.2.17",
|
|
15
|
+
"@angular/forms": "^21.2.17",
|
|
16
|
+
"@angular/platform-browser-dynamic": "^21.2.17",
|
|
17
|
+
"@angular/router": "^21.2.17",
|
|
18
|
+
"@ionic/angular": "^8.8.11",
|
|
19
19
|
"@ionic/cordova-builders": "^12.3.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
21
21
|
"@awesome-cordova-plugins/dialogs": "^8.1.0",
|
|
22
22
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
23
|
-
"@regulaforensics/face-sdk": "8.3.
|
|
24
|
-
"@regulaforensics/face-core-basic": "8.3.
|
|
23
|
+
"@regulaforensics/face-sdk": "8.3.1111-nightly",
|
|
24
|
+
"@regulaforensics/face-core-basic": "8.3.607-nightly",
|
|
25
25
|
"cordova-android": "^14.0.1",
|
|
26
26
|
"cordova-ios": "^8.0.0",
|
|
27
27
|
"cordova-plugin-camera": "^8.0.0",
|
|
@@ -33,20 +33,24 @@
|
|
|
33
33
|
"overrides": {
|
|
34
34
|
"ajv": "^8.18.0",
|
|
35
35
|
"serialize-javascript": "^7.0.4",
|
|
36
|
-
"@angular/compiler": "^21.2.4",
|
|
37
36
|
"undici": "^7.24.0",
|
|
38
37
|
"picomatch": "^4.0.4",
|
|
39
38
|
"postcss": "^8.5.10",
|
|
40
39
|
"uuid": "^14.0.0",
|
|
41
|
-
"vite": "^7.3.2"
|
|
40
|
+
"vite": "^7.3.2",
|
|
41
|
+
"webpack-dev-server": "^5.2.4",
|
|
42
|
+
"@babel/core": "^7.29.0",
|
|
43
|
+
"esbuild": "^0.28.1",
|
|
44
|
+
"http-proxy-middleware": "^3.0.7",
|
|
45
|
+
"piscina": "^5.2.0"
|
|
42
46
|
},
|
|
43
47
|
"cordova": {
|
|
44
48
|
"plugins": {
|
|
45
49
|
"@regulaforensics/face-sdk": {},
|
|
46
50
|
"@regulaforensics/face-core-basic": {},
|
|
47
|
-
"cordova-plugin-file": {},
|
|
48
51
|
"cordova-plugin-camera": {},
|
|
49
52
|
"cordova-plugin-dialogs": {},
|
|
53
|
+
"cordova-plugin-file": {},
|
|
50
54
|
"cordova-plugin-ionic-webview": {}
|
|
51
55
|
},
|
|
52
56
|
"platforms": [
|