@regulaforensics/face-sdk 8.1.714-nightly → 8.1.718-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/RNFaceSDK.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +6 -6
- package/examples/capacitor/package.json +2 -2
- package/examples/ionic/package-lock.json +163 -82
- package/examples/ionic/package.json +12 -12
- package/examples/react_native/package.json +2 -2
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/package-lock.json +1 -1
package/RNFaceSDK.podspec
CHANGED
|
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = 'RNFaceSDK'
|
|
8
|
-
s.version = '8.1.
|
|
8
|
+
s.version = '8.1.718-beta'
|
|
9
9
|
s.summary = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
|
|
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.ios.deployment_target = '13.0'
|
|
17
17
|
s.source_files = 'ios/**/*.{h,m}'
|
|
18
18
|
s.exclude_files = [ 'ios/CVDFaceSDK.h', 'ios/CVDFaceSDK.m' ]
|
|
19
|
-
s.dependency '
|
|
19
|
+
s.dependency 'FaceSDK', '7.2.3526'
|
|
20
20
|
s.dependency 'React'
|
|
21
21
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
rootProject.allprojects {
|
|
21
21
|
repositories {
|
|
22
22
|
maven {
|
|
23
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader
|
|
23
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -29,7 +29,7 @@ dependencies {
|
|
|
29
29
|
//noinspection GradleDynamicVersion
|
|
30
30
|
implementation 'com.facebook.react:react-native:+'
|
|
31
31
|
//noinspection GradleDependency
|
|
32
|
-
implementation('com.regula.face:api:
|
|
32
|
+
implementation('com.regula.face:api:7.2.4270'){
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -6,13 +6,13 @@ android {
|
|
|
6
6
|
|
|
7
7
|
repositories {
|
|
8
8
|
maven {
|
|
9
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader
|
|
9
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
dependencies {
|
|
14
14
|
//noinspection GradleDependency
|
|
15
|
-
implementation('com.regula.face:api:
|
|
15
|
+
implementation('com.regula.face:api:7.2.4270'){
|
|
16
16
|
transitive = true
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -36,8 +36,8 @@ fun methodCall(method: String, callback: (Any?) -> Unit): Any = when (method) {
|
|
|
36
36
|
"setEnv" -> setEnv(argsNullable(0))
|
|
37
37
|
"getLocale" -> getLocale(callback)
|
|
38
38
|
"setLocale" -> setLocale(argsNullable(0))
|
|
39
|
-
"setLocalizationDictionary" -> setLocalizationDictionary(
|
|
40
|
-
"setRequestHeaders" -> setRequestHeaders(
|
|
39
|
+
"setLocalizationDictionary" -> setLocalizationDictionary(argsNullable(0))
|
|
40
|
+
"setRequestHeaders" -> setRequestHeaders(argsNullable(0))
|
|
41
41
|
"setCustomization" -> setCustomization(args(0))
|
|
42
42
|
"isInitialized" -> isInitialized(callback)
|
|
43
43
|
"initialize" -> initialize(callback, argsNullable(0))
|
|
@@ -99,13 +99,13 @@ fun getLocale(callback: Callback) = callback(Instance().locale)
|
|
|
99
99
|
|
|
100
100
|
fun setLocale(locale: String?) = locale.let { Instance().locale = it }
|
|
101
101
|
|
|
102
|
-
fun setLocalizationDictionary(dictionary: JSONObject) {
|
|
103
|
-
localizationCallbacks = LocalizationCallbacks { if (dictionary
|
|
102
|
+
fun setLocalizationDictionary(dictionary: JSONObject?) {
|
|
103
|
+
localizationCallbacks = LocalizationCallbacks { if (dictionary?.has(it) == true) dictionary.getString(it) else null }
|
|
104
104
|
Instance().setLocalizationCallback(localizationCallbacks!!)
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
fun setRequestHeaders(headers: JSONObject) {
|
|
108
|
-
networkInterceptorListener = NetworkInterceptorListener { headers
|
|
107
|
+
fun setRequestHeaders(headers: JSONObject?) {
|
|
108
|
+
networkInterceptorListener = NetworkInterceptorListener { headers?.forEach { k, v -> it.header(k, v as String) } }
|
|
109
109
|
Instance().setNetworkInterceptorListener(networkInterceptorListener)
|
|
110
110
|
}
|
|
111
111
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/face-sdk": "8.1.
|
|
10
|
-
"@regulaforensics/face-core-basic": "
|
|
9
|
+
"@regulaforensics/face-sdk": "8.1.718-beta",
|
|
10
|
+
"@regulaforensics/face-core-basic": "7.2.265",
|
|
11
11
|
"@awesome-cordova-plugins/file": "6.6.0",
|
|
12
12
|
"@awesome-cordova-plugins/camera": "6.6.0",
|
|
13
13
|
"cordova-plugin-file": "8.1.3",
|
|
@@ -431,12 +431,12 @@
|
|
|
431
431
|
}
|
|
432
432
|
},
|
|
433
433
|
"node_modules/@angular-devkit/schematics": {
|
|
434
|
-
"version": "21.0.
|
|
435
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.0.
|
|
436
|
-
"integrity": "sha512-
|
|
434
|
+
"version": "21.0.4",
|
|
435
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.0.4.tgz",
|
|
436
|
+
"integrity": "sha512-am39kuaBB/v7RL++bsepvUhP2JKDmfMLQbyJvyHIG6UxnQztxQYZ2/CiPb91dz9NMiqAZqIJaN+kqvIc8h7AeQ==",
|
|
437
437
|
"license": "MIT",
|
|
438
438
|
"dependencies": {
|
|
439
|
-
"@angular-devkit/core": "21.0.
|
|
439
|
+
"@angular-devkit/core": "21.0.4",
|
|
440
440
|
"jsonc-parser": "3.3.1",
|
|
441
441
|
"magic-string": "0.30.19",
|
|
442
442
|
"ora": "9.0.0",
|
|
@@ -448,6 +448,33 @@
|
|
|
448
448
|
"yarn": ">= 1.13.0"
|
|
449
449
|
}
|
|
450
450
|
},
|
|
451
|
+
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
452
|
+
"version": "21.0.4",
|
|
453
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.0.4.tgz",
|
|
454
|
+
"integrity": "sha512-Mbze8tMtBs7keSOx4UIR9utLQs1uSiGjfTaOkCu/dbBEiG6umopy1OlUCvHiHyeiYqh+wR0yiGtTS+Cexo5iLg==",
|
|
455
|
+
"license": "MIT",
|
|
456
|
+
"dependencies": {
|
|
457
|
+
"ajv": "8.17.1",
|
|
458
|
+
"ajv-formats": "3.0.1",
|
|
459
|
+
"jsonc-parser": "3.3.1",
|
|
460
|
+
"picomatch": "4.0.3",
|
|
461
|
+
"rxjs": "7.8.2",
|
|
462
|
+
"source-map": "0.7.6"
|
|
463
|
+
},
|
|
464
|
+
"engines": {
|
|
465
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
466
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
467
|
+
"yarn": ">= 1.13.0"
|
|
468
|
+
},
|
|
469
|
+
"peerDependencies": {
|
|
470
|
+
"chokidar": "^4.0.0"
|
|
471
|
+
},
|
|
472
|
+
"peerDependenciesMeta": {
|
|
473
|
+
"chokidar": {
|
|
474
|
+
"optional": true
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
},
|
|
451
478
|
"node_modules/@angular/build": {
|
|
452
479
|
"version": "21.0.1",
|
|
453
480
|
"resolved": "https://registry.npmjs.org/@angular/build/-/build-21.0.1.tgz",
|
|
@@ -548,18 +575,18 @@
|
|
|
548
575
|
}
|
|
549
576
|
},
|
|
550
577
|
"node_modules/@angular/cli": {
|
|
551
|
-
"version": "21.0.
|
|
552
|
-
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.0.
|
|
553
|
-
"integrity": "sha512-
|
|
578
|
+
"version": "21.0.4",
|
|
579
|
+
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.0.4.tgz",
|
|
580
|
+
"integrity": "sha512-L4uKhC3KorF04x9A7noff2m25Phkq54wdqzuWNnbGg3bNfOHdXMv97t2e02J1mk+XOeEcPfDJmOiXj4fcviCLA==",
|
|
554
581
|
"license": "MIT",
|
|
555
582
|
"dependencies": {
|
|
556
|
-
"@angular-devkit/architect": "0.2100.
|
|
557
|
-
"@angular-devkit/core": "21.0.
|
|
558
|
-
"@angular-devkit/schematics": "21.0.
|
|
583
|
+
"@angular-devkit/architect": "0.2100.4",
|
|
584
|
+
"@angular-devkit/core": "21.0.4",
|
|
585
|
+
"@angular-devkit/schematics": "21.0.4",
|
|
559
586
|
"@inquirer/prompts": "7.9.0",
|
|
560
587
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
561
|
-
"@modelcontextprotocol/sdk": "1.
|
|
562
|
-
"@schematics/angular": "21.0.
|
|
588
|
+
"@modelcontextprotocol/sdk": "1.24.0",
|
|
589
|
+
"@schematics/angular": "21.0.4",
|
|
563
590
|
"@yarnpkg/lockfile": "1.1.0",
|
|
564
591
|
"algoliasearch": "5.40.1",
|
|
565
592
|
"ini": "5.0.0",
|
|
@@ -571,7 +598,7 @@
|
|
|
571
598
|
"resolve": "1.22.11",
|
|
572
599
|
"semver": "7.7.3",
|
|
573
600
|
"yargs": "18.0.0",
|
|
574
|
-
"zod": "
|
|
601
|
+
"zod": "4.1.13"
|
|
575
602
|
},
|
|
576
603
|
"bin": {
|
|
577
604
|
"ng": "bin/ng.js"
|
|
@@ -582,6 +609,48 @@
|
|
|
582
609
|
"yarn": ">= 1.13.0"
|
|
583
610
|
}
|
|
584
611
|
},
|
|
612
|
+
"node_modules/@angular/cli/node_modules/@angular-devkit/architect": {
|
|
613
|
+
"version": "0.2100.4",
|
|
614
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2100.4.tgz",
|
|
615
|
+
"integrity": "sha512-tKtb0I8AU59m75JjHlL1XEsoPxVaEWhnHKeesDpk49RNm0sVqWnfXesse8IXqdVds0Hpjisc3In7j4xKbigfXg==",
|
|
616
|
+
"license": "MIT",
|
|
617
|
+
"dependencies": {
|
|
618
|
+
"@angular-devkit/core": "21.0.4",
|
|
619
|
+
"rxjs": "7.8.2"
|
|
620
|
+
},
|
|
621
|
+
"engines": {
|
|
622
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
623
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
624
|
+
"yarn": ">= 1.13.0"
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
"node_modules/@angular/cli/node_modules/@angular-devkit/core": {
|
|
628
|
+
"version": "21.0.4",
|
|
629
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.0.4.tgz",
|
|
630
|
+
"integrity": "sha512-Mbze8tMtBs7keSOx4UIR9utLQs1uSiGjfTaOkCu/dbBEiG6umopy1OlUCvHiHyeiYqh+wR0yiGtTS+Cexo5iLg==",
|
|
631
|
+
"license": "MIT",
|
|
632
|
+
"dependencies": {
|
|
633
|
+
"ajv": "8.17.1",
|
|
634
|
+
"ajv-formats": "3.0.1",
|
|
635
|
+
"jsonc-parser": "3.3.1",
|
|
636
|
+
"picomatch": "4.0.3",
|
|
637
|
+
"rxjs": "7.8.2",
|
|
638
|
+
"source-map": "0.7.6"
|
|
639
|
+
},
|
|
640
|
+
"engines": {
|
|
641
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
642
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
643
|
+
"yarn": ">= 1.13.0"
|
|
644
|
+
},
|
|
645
|
+
"peerDependencies": {
|
|
646
|
+
"chokidar": "^4.0.0"
|
|
647
|
+
},
|
|
648
|
+
"peerDependenciesMeta": {
|
|
649
|
+
"chokidar": {
|
|
650
|
+
"optional": true
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
},
|
|
585
654
|
"node_modules/@angular/common": {
|
|
586
655
|
"version": "21.0.2",
|
|
587
656
|
"resolved": "https://registry.npmjs.org/@angular/common/-/common-21.0.2.tgz",
|
|
@@ -5596,12 +5665,13 @@
|
|
|
5596
5665
|
]
|
|
5597
5666
|
},
|
|
5598
5667
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
5599
|
-
"version": "1.
|
|
5600
|
-
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.
|
|
5601
|
-
"integrity": "sha512-
|
|
5668
|
+
"version": "1.24.0",
|
|
5669
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.24.0.tgz",
|
|
5670
|
+
"integrity": "sha512-D8h5KXY2vHFW8zTuxn2vuZGN0HGrQ5No6LkHwlEA9trVgNdPL3TF1dSqKA7Dny6BbBYKSW/rOBDXdC8KJAjUCg==",
|
|
5602
5671
|
"license": "MIT",
|
|
5603
5672
|
"dependencies": {
|
|
5604
|
-
"ajv": "^
|
|
5673
|
+
"ajv": "^8.17.1",
|
|
5674
|
+
"ajv-formats": "^3.0.1",
|
|
5605
5675
|
"content-type": "^1.0.5",
|
|
5606
5676
|
"cors": "^2.8.5",
|
|
5607
5677
|
"cross-spawn": "^7.0.5",
|
|
@@ -5609,37 +5679,28 @@
|
|
|
5609
5679
|
"eventsource-parser": "^3.0.0",
|
|
5610
5680
|
"express": "^5.0.1",
|
|
5611
5681
|
"express-rate-limit": "^7.5.0",
|
|
5682
|
+
"jose": "^6.1.1",
|
|
5612
5683
|
"pkce-challenge": "^5.0.0",
|
|
5613
5684
|
"raw-body": "^3.0.0",
|
|
5614
|
-
"zod": "^3.
|
|
5615
|
-
"zod-to-json-schema": "^3.
|
|
5685
|
+
"zod": "^3.25 || ^4.0",
|
|
5686
|
+
"zod-to-json-schema": "^3.25.0"
|
|
5616
5687
|
},
|
|
5617
5688
|
"engines": {
|
|
5618
5689
|
"node": ">=18"
|
|
5619
|
-
}
|
|
5620
|
-
},
|
|
5621
|
-
"node_modules/@modelcontextprotocol/sdk/node_modules/ajv": {
|
|
5622
|
-
"version": "6.12.6",
|
|
5623
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
5624
|
-
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
5625
|
-
"license": "MIT",
|
|
5626
|
-
"dependencies": {
|
|
5627
|
-
"fast-deep-equal": "^3.1.1",
|
|
5628
|
-
"fast-json-stable-stringify": "^2.0.0",
|
|
5629
|
-
"json-schema-traverse": "^0.4.1",
|
|
5630
|
-
"uri-js": "^4.2.2"
|
|
5631
5690
|
},
|
|
5632
|
-
"
|
|
5633
|
-
"
|
|
5634
|
-
"
|
|
5691
|
+
"peerDependencies": {
|
|
5692
|
+
"@cfworker/json-schema": "^4.1.1",
|
|
5693
|
+
"zod": "^3.25 || ^4.0"
|
|
5694
|
+
},
|
|
5695
|
+
"peerDependenciesMeta": {
|
|
5696
|
+
"@cfworker/json-schema": {
|
|
5697
|
+
"optional": true
|
|
5698
|
+
},
|
|
5699
|
+
"zod": {
|
|
5700
|
+
"optional": false
|
|
5701
|
+
}
|
|
5635
5702
|
}
|
|
5636
5703
|
},
|
|
5637
|
-
"node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse": {
|
|
5638
|
-
"version": "0.4.1",
|
|
5639
|
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
|
5640
|
-
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
5641
|
-
"license": "MIT"
|
|
5642
|
-
},
|
|
5643
5704
|
"node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": {
|
|
5644
5705
|
"version": "3.0.3",
|
|
5645
5706
|
"resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz",
|
|
@@ -7187,13 +7248,13 @@
|
|
|
7187
7248
|
]
|
|
7188
7249
|
},
|
|
7189
7250
|
"node_modules/@schematics/angular": {
|
|
7190
|
-
"version": "21.0.
|
|
7191
|
-
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.0.
|
|
7192
|
-
"integrity": "sha512
|
|
7251
|
+
"version": "21.0.4",
|
|
7252
|
+
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.0.4.tgz",
|
|
7253
|
+
"integrity": "sha512-/jJOf3iLvTaVa25xwiYLsfmidVAzC6rPy3Nl85iRo5bVod8be+KhHTn8aGq/8o7pzzB6Cin1oLs+riPR1nLVhg==",
|
|
7193
7254
|
"license": "MIT",
|
|
7194
7255
|
"dependencies": {
|
|
7195
|
-
"@angular-devkit/core": "21.0.
|
|
7196
|
-
"@angular-devkit/schematics": "21.0.
|
|
7256
|
+
"@angular-devkit/core": "21.0.4",
|
|
7257
|
+
"@angular-devkit/schematics": "21.0.4",
|
|
7197
7258
|
"jsonc-parser": "3.3.1"
|
|
7198
7259
|
},
|
|
7199
7260
|
"engines": {
|
|
@@ -7202,6 +7263,33 @@
|
|
|
7202
7263
|
"yarn": ">= 1.13.0"
|
|
7203
7264
|
}
|
|
7204
7265
|
},
|
|
7266
|
+
"node_modules/@schematics/angular/node_modules/@angular-devkit/core": {
|
|
7267
|
+
"version": "21.0.4",
|
|
7268
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.0.4.tgz",
|
|
7269
|
+
"integrity": "sha512-Mbze8tMtBs7keSOx4UIR9utLQs1uSiGjfTaOkCu/dbBEiG6umopy1OlUCvHiHyeiYqh+wR0yiGtTS+Cexo5iLg==",
|
|
7270
|
+
"license": "MIT",
|
|
7271
|
+
"dependencies": {
|
|
7272
|
+
"ajv": "8.17.1",
|
|
7273
|
+
"ajv-formats": "3.0.1",
|
|
7274
|
+
"jsonc-parser": "3.3.1",
|
|
7275
|
+
"picomatch": "4.0.3",
|
|
7276
|
+
"rxjs": "7.8.2",
|
|
7277
|
+
"source-map": "0.7.6"
|
|
7278
|
+
},
|
|
7279
|
+
"engines": {
|
|
7280
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
7281
|
+
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
|
|
7282
|
+
"yarn": ">= 1.13.0"
|
|
7283
|
+
},
|
|
7284
|
+
"peerDependencies": {
|
|
7285
|
+
"chokidar": "^4.0.0"
|
|
7286
|
+
},
|
|
7287
|
+
"peerDependenciesMeta": {
|
|
7288
|
+
"chokidar": {
|
|
7289
|
+
"optional": true
|
|
7290
|
+
}
|
|
7291
|
+
}
|
|
7292
|
+
},
|
|
7205
7293
|
"node_modules/@sigstore/bundle": {
|
|
7206
7294
|
"version": "4.0.0",
|
|
7207
7295
|
"resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-4.0.0.tgz",
|
|
@@ -9966,12 +10054,6 @@
|
|
|
9966
10054
|
"integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==",
|
|
9967
10055
|
"license": "MIT"
|
|
9968
10056
|
},
|
|
9969
|
-
"node_modules/fast-json-stable-stringify": {
|
|
9970
|
-
"version": "2.1.0",
|
|
9971
|
-
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
|
9972
|
-
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
|
9973
|
-
"license": "MIT"
|
|
9974
|
-
},
|
|
9975
10057
|
"node_modules/fast-uri": {
|
|
9976
10058
|
"version": "3.1.0",
|
|
9977
10059
|
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
|
|
@@ -11078,6 +11160,15 @@
|
|
|
11078
11160
|
"jiti": "lib/jiti-cli.mjs"
|
|
11079
11161
|
}
|
|
11080
11162
|
},
|
|
11163
|
+
"node_modules/jose": {
|
|
11164
|
+
"version": "6.1.3",
|
|
11165
|
+
"resolved": "https://registry.npmjs.org/jose/-/jose-6.1.3.tgz",
|
|
11166
|
+
"integrity": "sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==",
|
|
11167
|
+
"license": "MIT",
|
|
11168
|
+
"funding": {
|
|
11169
|
+
"url": "https://github.com/sponsors/panva"
|
|
11170
|
+
}
|
|
11171
|
+
},
|
|
11081
11172
|
"node_modules/js-tokens": {
|
|
11082
11173
|
"version": "4.0.0",
|
|
11083
11174
|
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
@@ -13081,15 +13172,6 @@
|
|
|
13081
13172
|
"license": "MIT",
|
|
13082
13173
|
"optional": true
|
|
13083
13174
|
},
|
|
13084
|
-
"node_modules/punycode": {
|
|
13085
|
-
"version": "2.3.1",
|
|
13086
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
13087
|
-
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
13088
|
-
"license": "MIT",
|
|
13089
|
-
"engines": {
|
|
13090
|
-
"node": ">=6"
|
|
13091
|
-
}
|
|
13092
|
-
},
|
|
13093
13175
|
"node_modules/q": {
|
|
13094
13176
|
"version": "1.5.1",
|
|
13095
13177
|
"resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
|
|
@@ -13821,25 +13903,29 @@
|
|
|
13821
13903
|
}
|
|
13822
13904
|
},
|
|
13823
13905
|
"node_modules/send": {
|
|
13824
|
-
"version": "1.2.
|
|
13825
|
-
"resolved": "https://registry.npmjs.org/send/-/send-1.2.
|
|
13826
|
-
"integrity": "sha512-
|
|
13906
|
+
"version": "1.2.1",
|
|
13907
|
+
"resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
|
|
13908
|
+
"integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==",
|
|
13827
13909
|
"license": "MIT",
|
|
13828
13910
|
"dependencies": {
|
|
13829
|
-
"debug": "^4.3
|
|
13911
|
+
"debug": "^4.4.3",
|
|
13830
13912
|
"encodeurl": "^2.0.0",
|
|
13831
13913
|
"escape-html": "^1.0.3",
|
|
13832
13914
|
"etag": "^1.8.1",
|
|
13833
13915
|
"fresh": "^2.0.0",
|
|
13834
|
-
"http-errors": "^2.0.
|
|
13835
|
-
"mime-types": "^3.0.
|
|
13916
|
+
"http-errors": "^2.0.1",
|
|
13917
|
+
"mime-types": "^3.0.2",
|
|
13836
13918
|
"ms": "^2.1.3",
|
|
13837
13919
|
"on-finished": "^2.4.1",
|
|
13838
13920
|
"range-parser": "^1.2.1",
|
|
13839
|
-
"statuses": "^2.0.
|
|
13921
|
+
"statuses": "^2.0.2"
|
|
13840
13922
|
},
|
|
13841
13923
|
"engines": {
|
|
13842
13924
|
"node": ">= 18"
|
|
13925
|
+
},
|
|
13926
|
+
"funding": {
|
|
13927
|
+
"type": "opencollective",
|
|
13928
|
+
"url": "https://opencollective.com/express"
|
|
13843
13929
|
}
|
|
13844
13930
|
},
|
|
13845
13931
|
"node_modules/serialize-javascript": {
|
|
@@ -13973,9 +14059,9 @@
|
|
|
13973
14059
|
}
|
|
13974
14060
|
},
|
|
13975
14061
|
"node_modules/serve-static": {
|
|
13976
|
-
"version": "2.2.
|
|
13977
|
-
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.
|
|
13978
|
-
"integrity": "sha512-
|
|
14062
|
+
"version": "2.2.1",
|
|
14063
|
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz",
|
|
14064
|
+
"integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==",
|
|
13979
14065
|
"license": "MIT",
|
|
13980
14066
|
"dependencies": {
|
|
13981
14067
|
"encodeurl": "^2.0.0",
|
|
@@ -13985,6 +14071,10 @@
|
|
|
13985
14071
|
},
|
|
13986
14072
|
"engines": {
|
|
13987
14073
|
"node": ">= 18"
|
|
14074
|
+
},
|
|
14075
|
+
"funding": {
|
|
14076
|
+
"type": "opencollective",
|
|
14077
|
+
"url": "https://opencollective.com/express"
|
|
13988
14078
|
}
|
|
13989
14079
|
},
|
|
13990
14080
|
"node_modules/setprototypeof": {
|
|
@@ -14951,15 +15041,6 @@
|
|
|
14951
15041
|
"browserslist": ">= 4.21.0"
|
|
14952
15042
|
}
|
|
14953
15043
|
},
|
|
14954
|
-
"node_modules/uri-js": {
|
|
14955
|
-
"version": "4.4.1",
|
|
14956
|
-
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
|
|
14957
|
-
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
|
14958
|
-
"license": "BSD-2-Clause",
|
|
14959
|
-
"dependencies": {
|
|
14960
|
-
"punycode": "^2.1.0"
|
|
14961
|
-
}
|
|
14962
|
-
},
|
|
14963
15044
|
"node_modules/util-deprecate": {
|
|
14964
15045
|
"version": "1.0.2",
|
|
14965
15046
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
@@ -16573,9 +16654,9 @@
|
|
|
16573
16654
|
}
|
|
16574
16655
|
},
|
|
16575
16656
|
"node_modules/zod": {
|
|
16576
|
-
"version": "
|
|
16577
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-
|
|
16578
|
-
"integrity": "sha512-
|
|
16657
|
+
"version": "4.1.13",
|
|
16658
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz",
|
|
16659
|
+
"integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==",
|
|
16579
16660
|
"license": "MIT",
|
|
16580
16661
|
"funding": {
|
|
16581
16662
|
"url": "https://github.com/sponsors/colinhacks"
|
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@angular-devkit/build-angular": "^21.0.
|
|
10
|
-
"@angular/cli": "^21.0.
|
|
11
|
-
"@angular/common": "^21.0.
|
|
12
|
-
"@angular/compiler-cli": "^21.0.
|
|
13
|
-
"@angular/core": "^21.0.
|
|
14
|
-
"@angular/forms": "^21.0.
|
|
15
|
-
"@angular/platform-browser-dynamic": "^21.0.
|
|
16
|
-
"@angular/router": "^21.0.
|
|
9
|
+
"@angular-devkit/build-angular": "^21.0.5",
|
|
10
|
+
"@angular/cli": "^21.0.5",
|
|
11
|
+
"@angular/common": "^21.0.8",
|
|
12
|
+
"@angular/compiler-cli": "^21.0.8",
|
|
13
|
+
"@angular/core": "^21.0.8",
|
|
14
|
+
"@angular/forms": "^21.0.8",
|
|
15
|
+
"@angular/platform-browser-dynamic": "^21.0.8",
|
|
16
|
+
"@angular/router": "^21.0.8",
|
|
17
|
+
"@ionic/angular": "^8.7.16",
|
|
18
|
+
"@ionic/cordova-builders": "^12.3.0",
|
|
17
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
18
20
|
"@awesome-cordova-plugins/dialogs": "^8.1.0",
|
|
19
21
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
20
|
-
"@
|
|
21
|
-
"@
|
|
22
|
-
"@regulaforensics/face-sdk": "8.1.714-nightly",
|
|
23
|
-
"@regulaforensics/face-core-basic": "8.1.376-nightly",
|
|
22
|
+
"@regulaforensics/face-sdk": "8.1.718-beta",
|
|
23
|
+
"@regulaforensics/face-core-basic": "7.2.265",
|
|
24
24
|
"cordova-android": "^14.0.1",
|
|
25
25
|
"cordova-ios": "^7.1.1",
|
|
26
26
|
"cordova-plugin-camera": "^8.0.0",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"start": "expo start"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@regulaforensics/face-sdk": "8.1.
|
|
12
|
-
"@regulaforensics/face-core-basic": "
|
|
11
|
+
"@regulaforensics/face-sdk": "8.1.718-beta",
|
|
12
|
+
"@regulaforensics/face-core-basic": "7.2.265",
|
|
13
13
|
"react-native": "^0.81.4",
|
|
14
14
|
"react-native-fs": "^2.20.0",
|
|
15
15
|
"react-native-image-picker": "^8.2.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/face-sdk",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.718-beta",
|
|
4
4
|
"description": "This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.",
|
|
5
5
|
"main": "www/react-native/index.js",
|
|
6
6
|
"module": "www/capacitor/index.js",
|
package/plugin.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/face-sdk" version="8.1.
|
|
2
|
+
<plugin id="@regulaforensics/face-sdk" version="8.1.718-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
3
3
|
<name>FaceSDK</name>
|
|
4
4
|
<description>Cordova plugin for Regula Face SDK</description>
|
|
5
5
|
<license>commercial</license>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<source url="https://github.com/CocoaPods/Specs.git" />
|
|
30
30
|
</config>
|
|
31
31
|
<pods>
|
|
32
|
-
<pod name="
|
|
32
|
+
<pod name="FaceSDK" spec="7.2.3526" />
|
|
33
33
|
</pods>
|
|
34
34
|
</podspec>
|
|
35
35
|
</platform>
|