@regulaforensics/document-reader 9.2.616-rc → 9.3.618-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 +38 -9
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +13 -0
- package/examples/capacitor/package.json +1 -1
- package/examples/ionic/package-lock.json +60 -117
- package/examples/ionic/package.json +1 -1
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWConfig.m +30 -18
- package/ios/RGLWJSONConstructor.h +2 -0
- package/ios/RGLWJSONConstructor.m +18 -0
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +22 -3
- package/test/package-lock.json +1 -1
- package/test/test.tsx +3 -2
- package/www/capacitor/index.js +3 -2
- package/www/capacitor/params/customization/CustomizationColors.js +80 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +50 -2
- package/www/capacitor/params/customization/CustomizationImages.js +18 -2
- package/www/capacitor/params/process_params/Bsi.js +23 -0
- package/www/capacitor/params/process_params/ProcessParams.js +9 -17
- package/www/cordova.js +287 -112
- package/www/react-native/index.js +3 -2
- package/www/react-native/params/customization/CustomizationColors.js +80 -0
- package/www/react-native/params/customization/CustomizationFonts.js +50 -2
- package/www/react-native/params/customization/CustomizationImages.js +18 -2
- package/www/react-native/params/process_params/Bsi.js +23 -0
- package/www/react-native/params/process_params/ProcessParams.js +9 -17
- package/www/types/index.d.ts +3 -2
- package/www/types/params/customization/CustomizationColors.d.ts +14 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +9 -0
- package/www/types/params/customization/CustomizationImages.d.ts +5 -7
- package/www/types/params/process_params/Bsi.d.ts +3 -0
- package/www/types/params/process_params/ProcessParams.d.ts +2 -6
package/RNDocumentReader.podspec
CHANGED
|
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = 'RNDocumentReader'
|
|
8
|
-
s.version = '9.
|
|
8
|
+
s.version = '9.3.618-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/CVDDocumentReader.h', 'ios/CVDDocumentReader.m' ]
|
|
19
|
-
s.dependency '
|
|
19
|
+
s.dependency 'DocumentReader', '9.2.5911'
|
|
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.documentreader:api:9.2.
|
|
32
|
+
implementation('com.regula.documentreader:api:9.2.12446'){
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repositories {
|
|
2
2
|
maven {
|
|
3
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader
|
|
3
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
dependencies {
|
|
8
8
|
//noinspection GradleDependency
|
|
9
|
-
implementation('com.regula.documentreader:api:9.2.
|
|
9
|
+
implementation('com.regula.documentreader:api:9.2.12446'){
|
|
10
10
|
transitive = true
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -18,7 +18,6 @@ import com.regula.documentreader.api.params.ImageQA
|
|
|
18
18
|
import com.regula.documentreader.api.params.LivenessParams
|
|
19
19
|
import com.regula.documentreader.api.params.ParamsCustomization
|
|
20
20
|
import com.regula.documentreader.api.params.ProcessParam
|
|
21
|
-
import com.regula.documentreader.api.params.Bsi
|
|
22
21
|
import com.regula.documentreader.api.params.RfidScenario
|
|
23
22
|
import com.regula.documentreader.api.params.rfid.dg.DTCDataGroup
|
|
24
23
|
import com.regula.documentreader.api.params.rfid.dg.DataGroups
|
|
@@ -148,11 +147,6 @@ fun setProcessParams(processParams: ProcessParam, opts: JSONObject) = opts.forEa
|
|
|
148
147
|
"strictSecurityChecks" -> processParams.strictSecurityChecks = v as Boolean
|
|
149
148
|
"returnTransliteratedFields" -> processParams.returnTransliteratedFields = v as Boolean
|
|
150
149
|
"checkCaptureProcessIntegrity" -> processParams.checkCaptureProcessIntegrity = v as Boolean
|
|
151
|
-
"bsiTr03135" -> {
|
|
152
|
-
val temp = Bsi()
|
|
153
|
-
temp.generateResult = (v as JSONObject).getBooleanOrNull("generateResult")
|
|
154
|
-
processParams.bsiTr03135 = temp
|
|
155
|
-
}
|
|
156
150
|
"measureSystem" -> processParams.measureSystem = v.toInt()
|
|
157
151
|
"barcodeParserType" -> processParams.barcodeParserType = v.toInt()
|
|
158
152
|
"perspectiveAngle" -> processParams.perspectiveAngle = v.toInt()
|
|
@@ -191,6 +185,7 @@ fun setProcessParams(processParams: ProcessParam, opts: JSONObject) = opts.forEa
|
|
|
191
185
|
"rfidParams" -> processParams.rfidParams = rfidParamsFromJSON(v as JSONObject)
|
|
192
186
|
"faceApiParams" -> processParams.faceApiParams = faceApiParamsFromJSON(v as JSONObject)
|
|
193
187
|
"backendProcessingConfig" -> processParams.backendProcessingConfig = backendProcessingConfigFromJSON(v as JSONObject)
|
|
188
|
+
"bsiTr03135" -> processParams.bsiTr03135 = bsiFromJSON(v as JSONObject)
|
|
194
189
|
"authenticityParams" -> {
|
|
195
190
|
if (processParams.authenticityParams == null) processParams.authenticityParams = AuthenticityParams.defaultParams()
|
|
196
191
|
setAuthenticityParams(processParams.authenticityParams!!, v as JSONObject)
|
|
@@ -242,9 +237,6 @@ fun getProcessParams(processParams: ProcessParam) = mapOf(
|
|
|
242
237
|
"strictSecurityChecks" to processParams.strictSecurityChecks,
|
|
243
238
|
"returnTransliteratedFields" to processParams.returnTransliteratedFields,
|
|
244
239
|
"checkCaptureProcessIntegrity" to processParams.checkCaptureProcessIntegrity,
|
|
245
|
-
"bsiTr03135" to mapOf(
|
|
246
|
-
"generateResult" to processParams.bsiTr03135?.generateResult
|
|
247
|
-
).toJson(),
|
|
248
240
|
"measureSystem" to processParams.measureSystem,
|
|
249
241
|
"barcodeParserType" to processParams.barcodeParserType,
|
|
250
242
|
"perspectiveAngle" to processParams.perspectiveAngle,
|
|
@@ -282,6 +274,7 @@ fun getProcessParams(processParams: ProcessParam) = mapOf(
|
|
|
282
274
|
"rfidParams" to generateRFIDParams(processParams.rfidParams),
|
|
283
275
|
"faceApiParams" to generateFaceApiParams(processParams.faceApiParams),
|
|
284
276
|
"backendProcessingConfig" to generateBackendProcessingConfig(processParams.backendProcessingConfig),
|
|
277
|
+
"bsiTr03135" to generateBsi(processParams.bsiTr03135),
|
|
285
278
|
"authenticityParams" to getAuthenticityParams(processParams.authenticityParams),
|
|
286
279
|
"customParams" to processParams.customParams,
|
|
287
280
|
).toJson()
|
|
@@ -777,6 +770,16 @@ fun setColors(input: ParamsCustomization.CustomizationEditor, opts: JSONObject)
|
|
|
777
770
|
"rfidEnableNfcDescriptionText" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_DESCRIPTION_TEXT, value)
|
|
778
771
|
"rfidEnableNfcButtonText" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_BUTTON_TEXT, value)
|
|
779
772
|
"rfidEnableNfcButtonBackground" -> input.setColor(CustomizationColor.RFID_ENABLE_NFC_BUTTON_BACKGROUND, value)
|
|
773
|
+
"mdlProcessingScreenBackground" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_BACKGROUND, value)
|
|
774
|
+
"mdlProcessingScreenHintLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT, value)
|
|
775
|
+
"mdlProcessingScreenHintLabelBackground" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND, value)
|
|
776
|
+
"mdlProcessingScreenProgressLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT, value)
|
|
777
|
+
"mdlProcessingScreenResultLabelText" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT, value)
|
|
778
|
+
"mdlProcessingScreenLoadingBar" -> input.setColor(CustomizationColor.MDL_PROCESSING_SCREEN_LOADING_BAR, value)
|
|
779
|
+
"mdlEnableNfcTitleText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_TITLE_TEXT, value)
|
|
780
|
+
"mdlEnableNfcDescriptionText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_DESCRIPTION_TEXT, value)
|
|
781
|
+
"mdlEnableNfcButtonText" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_BUTTON_TEXT, value)
|
|
782
|
+
"mdlEnableNfcButtonBackground" -> input.setColor(CustomizationColor.MDL_ENABLE_NFC_BUTTON_BACKGROUND, value)
|
|
780
783
|
}
|
|
781
784
|
}
|
|
782
785
|
|
|
@@ -793,6 +796,16 @@ fun getColors(input: Map<CustomizationColor, Long>) = mapOf(
|
|
|
793
796
|
"rfidEnableNfcDescriptionText" to input[CustomizationColor.RFID_ENABLE_NFC_DESCRIPTION_TEXT],
|
|
794
797
|
"rfidEnableNfcButtonText" to input[CustomizationColor.RFID_ENABLE_NFC_BUTTON_TEXT],
|
|
795
798
|
"rfidEnableNfcButtonBackground" to input[CustomizationColor.RFID_ENABLE_NFC_BUTTON_BACKGROUND],
|
|
799
|
+
"mdlProcessingScreenBackground" to input[CustomizationColor.MDL_PROCESSING_SCREEN_BACKGROUND],
|
|
800
|
+
"mdlProcessingScreenHintLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_TEXT],
|
|
801
|
+
"mdlProcessingScreenHintLabelBackground" to input[CustomizationColor.MDL_PROCESSING_SCREEN_HINT_LABEL_BACKGROUND],
|
|
802
|
+
"mdlProcessingScreenProgressLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_PROGRESS_LABEL_TEXT],
|
|
803
|
+
"mdlProcessingScreenResultLabelText" to input[CustomizationColor.MDL_PROCESSING_SCREEN_RESULT_LABEL_TEXT],
|
|
804
|
+
"mdlProcessingScreenLoadingBar" to input[CustomizationColor.MDL_PROCESSING_SCREEN_LOADING_BAR],
|
|
805
|
+
"mdlEnableNfcTitleText" to input[CustomizationColor.MDL_ENABLE_NFC_TITLE_TEXT],
|
|
806
|
+
"mdlEnableNfcDescriptionText" to input[CustomizationColor.MDL_ENABLE_NFC_DESCRIPTION_TEXT],
|
|
807
|
+
"mdlEnableNfcButtonText" to input[CustomizationColor.MDL_ENABLE_NFC_BUTTON_TEXT],
|
|
808
|
+
"mdlEnableNfcButtonBackground" to input[CustomizationColor.MDL_ENABLE_NFC_BUTTON_BACKGROUND],
|
|
796
809
|
).toJson()
|
|
797
810
|
|
|
798
811
|
fun setFonts(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) = opts.forEach { key, value ->
|
|
@@ -803,6 +816,12 @@ fun setFonts(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) =
|
|
|
803
816
|
"rfidEnableNfcTitleText" -> CustomizationFont.RFID_ENABLE_NFC_TITLE_TEXT.setFont(input, value)
|
|
804
817
|
"rfidEnableNfcDescriptionText" -> CustomizationFont.RFID_ENABLE_NFC_DESCRIPTION_TEXT.setFont(input, value)
|
|
805
818
|
"rfidEnableNfcButtonText" -> CustomizationFont.RFID_ENABLE_NFC_BUTTON_TEXT.setFont(input, value)
|
|
819
|
+
"mdlProcessingScreenHintLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_HINT_LABEL.setFont(input, value)
|
|
820
|
+
"mdlProcessingScreenProgressLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_PROGRESS_LABEL.setFont(input, value)
|
|
821
|
+
"mdlProcessingScreenResultLabel" -> CustomizationFont.MDL_PROCESSING_SCREEN_RESULT_LABEL.setFont(input, value)
|
|
822
|
+
"mdlEnableNfcTitleText" -> CustomizationFont.MDL_ENABLE_NFC_TITLE_TEXT.setFont(input, value)
|
|
823
|
+
"mdlEnableNfcDescriptionText" -> CustomizationFont.MDL_ENABLE_NFC_DESCRIPTION_TEXT.setFont(input, value)
|
|
824
|
+
"mdlEnableNfcButtonText" -> CustomizationFont.MDL_ENABLE_NFC_BUTTON_TEXT.setFont(input, value)
|
|
806
825
|
}
|
|
807
826
|
}
|
|
808
827
|
|
|
@@ -813,18 +832,28 @@ fun getFonts(fonts: Map<CustomizationFont, Typeface>, sizes: Map<CustomizationFo
|
|
|
813
832
|
"rfidEnableNfcTitleText" to CustomizationFont.RFID_ENABLE_NFC_TITLE_TEXT.getFont(fonts, sizes),
|
|
814
833
|
"rfidEnableNfcDescriptionText" to CustomizationFont.RFID_ENABLE_NFC_DESCRIPTION_TEXT.getFont(fonts, sizes),
|
|
815
834
|
"rfidEnableNfcButtonText" to CustomizationFont.RFID_ENABLE_NFC_BUTTON_TEXT.getFont(fonts, sizes),
|
|
835
|
+
"mdlProcessingScreenHintLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_HINT_LABEL.getFont(fonts, sizes),
|
|
836
|
+
"mdlProcessingScreenProgressLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_PROGRESS_LABEL.getFont(fonts, sizes),
|
|
837
|
+
"mdlProcessingScreenResultLabel" to CustomizationFont.MDL_PROCESSING_SCREEN_RESULT_LABEL.getFont(fonts, sizes),
|
|
838
|
+
"mdlEnableNfcTitleText" to CustomizationFont.MDL_ENABLE_NFC_TITLE_TEXT.getFont(fonts, sizes),
|
|
839
|
+
"mdlEnableNfcDescriptionText" to CustomizationFont.MDL_ENABLE_NFC_DESCRIPTION_TEXT.getFont(fonts, sizes),
|
|
840
|
+
"mdlEnableNfcButtonText" to CustomizationFont.MDL_ENABLE_NFC_BUTTON_TEXT.getFont(fonts, sizes),
|
|
816
841
|
).toJson()
|
|
817
842
|
|
|
818
843
|
fun setImages(input: ParamsCustomization.CustomizationEditor, opts: JSONObject) = opts.forEach { key, v ->
|
|
819
844
|
when (key) {
|
|
820
845
|
"rfidProcessingScreenFailureImage" -> input.setImage(CustomizationImage.RFID_PROCESSING_SCREEN_FAILURE_IMAGE, v.toDrawable())
|
|
821
846
|
"rfidEnableNfcImage" -> input.setImage(CustomizationImage.RFID_ENABLE_NFC_IMAGE, v.toDrawable())
|
|
847
|
+
"mdlProcessingScreenFailureImage" -> input.setImage(CustomizationImage.MDL_PROCESSING_SCREEN_FAILURE_IMAGE, v.toDrawable())
|
|
848
|
+
"mdlEnableNfcImage" -> input.setImage(CustomizationImage.MDL_ENABLE_NFC_IMAGE, v.toDrawable())
|
|
822
849
|
}
|
|
823
850
|
}
|
|
824
851
|
|
|
825
852
|
fun getImages(input: Map<CustomizationImage, Drawable>) = mapOf(
|
|
826
853
|
"rfidProcessingScreenFailureImage" to (input[CustomizationImage.RFID_PROCESSING_SCREEN_FAILURE_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_ic_error)).toBase64(),
|
|
827
854
|
"rfidEnableNfcImage" to (input[CustomizationImage.RFID_ENABLE_NFC_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
855
|
+
"mdlProcessingScreenFailureImage" to (input[CustomizationImage.MDL_PROCESSING_SCREEN_FAILURE_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
856
|
+
"mdlEnableNfcImage" to (input[CustomizationImage.MDL_ENABLE_NFC_IMAGE] ?: ContextCompat.getDrawable(context, com.regula.documentreader.api.R.drawable.reg_enable_nfc)).toBase64(),
|
|
828
857
|
).toJson()
|
|
829
858
|
|
|
830
859
|
fun CustomizationFont.getFont(fonts: Map<CustomizationFont, Typeface>, sizes: Map<CustomizationFont, Int>) =
|
|
@@ -29,6 +29,7 @@ import com.regula.documentreader.api.listener.NetworkInterceptorListener
|
|
|
29
29
|
import com.regula.documentreader.api.params.AuthenticityParams
|
|
30
30
|
import com.regula.documentreader.api.params.BackendProcessingConfig
|
|
31
31
|
import com.regula.documentreader.api.params.BleDeviceConfig
|
|
32
|
+
import com.regula.documentreader.api.params.Bsi
|
|
32
33
|
import com.regula.documentreader.api.params.DocReaderConfig
|
|
33
34
|
import com.regula.documentreader.api.params.FaceApiParams
|
|
34
35
|
import com.regula.documentreader.api.params.Functionality
|
|
@@ -325,6 +326,18 @@ fun generateBackendProcessingConfig(input: BackendProcessingConfig?) = input?.le
|
|
|
325
326
|
).toJson()
|
|
326
327
|
}
|
|
327
328
|
|
|
329
|
+
fun bsiFromJSON(input: JSONObject?) = input?.let {
|
|
330
|
+
val result = Bsi()
|
|
331
|
+
result.generateResult = it.getBooleanOrNull("generateResult")
|
|
332
|
+
result
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
fun generateBsi(input: Bsi?) = input?.let {
|
|
336
|
+
mapOf(
|
|
337
|
+
"generateResult" to it.generateResult,
|
|
338
|
+
).toJson()
|
|
339
|
+
}
|
|
340
|
+
|
|
328
341
|
val weakReferencesHolder = mutableListOf<Any>()
|
|
329
342
|
fun onlineProcessingConfigFromJSON(input: JSONObject?) = input?.let {
|
|
330
343
|
val builder = OnlineProcessingConfig.Builder(it.getInt("mode"))
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/document-reader": "9.
|
|
9
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
10
10
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
11
11
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
12
12
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
@@ -433,12 +433,12 @@
|
|
|
433
433
|
}
|
|
434
434
|
},
|
|
435
435
|
"node_modules/@angular-devkit/schematics": {
|
|
436
|
-
"version": "21.1.
|
|
437
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.1.
|
|
438
|
-
"integrity": "sha512-
|
|
436
|
+
"version": "21.1.4",
|
|
437
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-21.1.4.tgz",
|
|
438
|
+
"integrity": "sha512-Nqq0ioCUxrbEX+L4KOarETcZZJNnJ1mAJ0ubO4VM91qnn8RBBM9SnQ91590TfC34Szk/wh+3+Uj6KUvTJNuegQ==",
|
|
439
439
|
"license": "MIT",
|
|
440
440
|
"dependencies": {
|
|
441
|
-
"@angular-devkit/core": "21.1.
|
|
441
|
+
"@angular-devkit/core": "21.1.4",
|
|
442
442
|
"jsonc-parser": "3.3.1",
|
|
443
443
|
"magic-string": "0.30.21",
|
|
444
444
|
"ora": "9.0.0",
|
|
@@ -451,9 +451,9 @@
|
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
"node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
|
|
454
|
-
"version": "21.1.
|
|
455
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.
|
|
456
|
-
"integrity": "sha512-
|
|
454
|
+
"version": "21.1.4",
|
|
455
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.4.tgz",
|
|
456
|
+
"integrity": "sha512-ObPTI5gYCB1jGxTRhcqZ6oQVUBFVJ8GH4LksVuAiz0nFX7xxpzARWvlhq943EtnlovVlUd9I8fM3RQqjfGVVAQ==",
|
|
457
457
|
"license": "MIT",
|
|
458
458
|
"dependencies": {
|
|
459
459
|
"ajv": "8.17.1",
|
|
@@ -577,18 +577,18 @@
|
|
|
577
577
|
}
|
|
578
578
|
},
|
|
579
579
|
"node_modules/@angular/cli": {
|
|
580
|
-
"version": "21.1.
|
|
581
|
-
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.1.
|
|
582
|
-
"integrity": "sha512-
|
|
580
|
+
"version": "21.1.4",
|
|
581
|
+
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-21.1.4.tgz",
|
|
582
|
+
"integrity": "sha512-XsMHgxTvHGiXXrhYZz3zMZYhYU0gHdpoHKGiEKXwcx+S1KoYbIssyg6oF2Kq49ZaE0OYCTKjnvgDce6ZqdkJ/A==",
|
|
583
583
|
"license": "MIT",
|
|
584
584
|
"dependencies": {
|
|
585
|
-
"@angular-devkit/architect": "0.2101.
|
|
586
|
-
"@angular-devkit/core": "21.1.
|
|
587
|
-
"@angular-devkit/schematics": "21.1.
|
|
585
|
+
"@angular-devkit/architect": "0.2101.4",
|
|
586
|
+
"@angular-devkit/core": "21.1.4",
|
|
587
|
+
"@angular-devkit/schematics": "21.1.4",
|
|
588
588
|
"@inquirer/prompts": "7.10.1",
|
|
589
589
|
"@listr2/prompt-adapter-inquirer": "3.0.5",
|
|
590
|
-
"@modelcontextprotocol/sdk": "1.
|
|
591
|
-
"@schematics/angular": "21.1.
|
|
590
|
+
"@modelcontextprotocol/sdk": "1.26.0",
|
|
591
|
+
"@schematics/angular": "21.1.4",
|
|
592
592
|
"@yarnpkg/lockfile": "1.1.0",
|
|
593
593
|
"algoliasearch": "5.46.2",
|
|
594
594
|
"ini": "6.0.0",
|
|
@@ -612,12 +612,12 @@
|
|
|
612
612
|
}
|
|
613
613
|
},
|
|
614
614
|
"node_modules/@angular/cli/node_modules/@angular-devkit/architect": {
|
|
615
|
-
"version": "0.2101.
|
|
616
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2101.
|
|
617
|
-
"integrity": "sha512-
|
|
615
|
+
"version": "0.2101.4",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2101.4.tgz",
|
|
617
|
+
"integrity": "sha512-3yyebORk+ovtO+LfDjIGbGCZhCMDAsyn9vkCljARj3sSshS4blOQBar0g+V3kYAweLT5Gf+rTKbN5jneOkBAFQ==",
|
|
618
618
|
"license": "MIT",
|
|
619
619
|
"dependencies": {
|
|
620
|
-
"@angular-devkit/core": "21.1.
|
|
620
|
+
"@angular-devkit/core": "21.1.4",
|
|
621
621
|
"rxjs": "7.8.2"
|
|
622
622
|
},
|
|
623
623
|
"bin": {
|
|
@@ -630,9 +630,9 @@
|
|
|
630
630
|
}
|
|
631
631
|
},
|
|
632
632
|
"node_modules/@angular/cli/node_modules/@angular-devkit/core": {
|
|
633
|
-
"version": "21.1.
|
|
634
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.
|
|
635
|
-
"integrity": "sha512-
|
|
633
|
+
"version": "21.1.4",
|
|
634
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.4.tgz",
|
|
635
|
+
"integrity": "sha512-ObPTI5gYCB1jGxTRhcqZ6oQVUBFVJ8GH4LksVuAiz0nFX7xxpzARWvlhq943EtnlovVlUd9I8fM3RQqjfGVVAQ==",
|
|
636
636
|
"license": "MIT",
|
|
637
637
|
"dependencies": {
|
|
638
638
|
"ajv": "8.17.1",
|
|
@@ -3664,24 +3664,6 @@
|
|
|
3664
3664
|
"yarn": ">= 1.13.0"
|
|
3665
3665
|
}
|
|
3666
3666
|
},
|
|
3667
|
-
"node_modules/@ionic/cordova-builders/node_modules/@angular/common": {
|
|
3668
|
-
"version": "20.3.16",
|
|
3669
|
-
"resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.16.tgz",
|
|
3670
|
-
"integrity": "sha512-GRAziNlntwdnJy3F+8zCOvDdy7id0gITjDnM6P9+n2lXvtDuBLGJKU3DWBbvxcCjtD6JK/g/rEX5fbCxbUHkQQ==",
|
|
3671
|
-
"license": "MIT",
|
|
3672
|
-
"optional": true,
|
|
3673
|
-
"peer": true,
|
|
3674
|
-
"dependencies": {
|
|
3675
|
-
"tslib": "^2.3.0"
|
|
3676
|
-
},
|
|
3677
|
-
"engines": {
|
|
3678
|
-
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
3679
|
-
},
|
|
3680
|
-
"peerDependencies": {
|
|
3681
|
-
"@angular/core": "20.3.16",
|
|
3682
|
-
"rxjs": "^6.5.3 || ^7.4.0"
|
|
3683
|
-
}
|
|
3684
|
-
},
|
|
3685
3667
|
"node_modules/@ionic/cordova-builders/node_modules/@angular/compiler": {
|
|
3686
3668
|
"version": "20.3.16",
|
|
3687
3669
|
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.16.tgz",
|
|
@@ -3728,57 +3710,6 @@
|
|
|
3728
3710
|
}
|
|
3729
3711
|
}
|
|
3730
3712
|
},
|
|
3731
|
-
"node_modules/@ionic/cordova-builders/node_modules/@angular/core": {
|
|
3732
|
-
"version": "20.3.16",
|
|
3733
|
-
"resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.16.tgz",
|
|
3734
|
-
"integrity": "sha512-KSFPKvOmWWLCJBbEO+CuRUXfecX2FRuO0jNi9c54ptXMOPHlK1lIojUnyXmMNzjdHgRug8ci9qDuftvC2B7MKg==",
|
|
3735
|
-
"license": "MIT",
|
|
3736
|
-
"optional": true,
|
|
3737
|
-
"peer": true,
|
|
3738
|
-
"dependencies": {
|
|
3739
|
-
"tslib": "^2.3.0"
|
|
3740
|
-
},
|
|
3741
|
-
"engines": {
|
|
3742
|
-
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
3743
|
-
},
|
|
3744
|
-
"peerDependencies": {
|
|
3745
|
-
"@angular/compiler": "20.3.16",
|
|
3746
|
-
"rxjs": "^6.5.3 || ^7.4.0",
|
|
3747
|
-
"zone.js": "~0.15.0"
|
|
3748
|
-
},
|
|
3749
|
-
"peerDependenciesMeta": {
|
|
3750
|
-
"@angular/compiler": {
|
|
3751
|
-
"optional": true
|
|
3752
|
-
},
|
|
3753
|
-
"zone.js": {
|
|
3754
|
-
"optional": true
|
|
3755
|
-
}
|
|
3756
|
-
}
|
|
3757
|
-
},
|
|
3758
|
-
"node_modules/@ionic/cordova-builders/node_modules/@angular/platform-browser": {
|
|
3759
|
-
"version": "20.3.16",
|
|
3760
|
-
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.16.tgz",
|
|
3761
|
-
"integrity": "sha512-YsrLS6vyS77i4pVHg4gdSBW74qvzHjpQRTVQ5Lv/OxIjJdYYYkMmjNalCNgy1ZuyY6CaLIB11ccxhrNnxfKGOQ==",
|
|
3762
|
-
"license": "MIT",
|
|
3763
|
-
"optional": true,
|
|
3764
|
-
"peer": true,
|
|
3765
|
-
"dependencies": {
|
|
3766
|
-
"tslib": "^2.3.0"
|
|
3767
|
-
},
|
|
3768
|
-
"engines": {
|
|
3769
|
-
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
3770
|
-
},
|
|
3771
|
-
"peerDependencies": {
|
|
3772
|
-
"@angular/animations": "20.3.16",
|
|
3773
|
-
"@angular/common": "20.3.16",
|
|
3774
|
-
"@angular/core": "20.3.16"
|
|
3775
|
-
},
|
|
3776
|
-
"peerDependenciesMeta": {
|
|
3777
|
-
"@angular/animations": {
|
|
3778
|
-
"optional": true
|
|
3779
|
-
}
|
|
3780
|
-
}
|
|
3781
|
-
},
|
|
3782
3713
|
"node_modules/@ionic/cordova-builders/node_modules/@babel/core": {
|
|
3783
3714
|
"version": "7.28.3",
|
|
3784
3715
|
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.3.tgz",
|
|
@@ -6227,12 +6158,12 @@
|
|
|
6227
6158
|
]
|
|
6228
6159
|
},
|
|
6229
6160
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
6230
|
-
"version": "1.
|
|
6231
|
-
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.
|
|
6232
|
-
"integrity": "sha512-
|
|
6161
|
+
"version": "1.26.0",
|
|
6162
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz",
|
|
6163
|
+
"integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==",
|
|
6233
6164
|
"license": "MIT",
|
|
6234
6165
|
"dependencies": {
|
|
6235
|
-
"@hono/node-server": "^1.19.
|
|
6166
|
+
"@hono/node-server": "^1.19.9",
|
|
6236
6167
|
"ajv": "^8.17.1",
|
|
6237
6168
|
"ajv-formats": "^3.0.1",
|
|
6238
6169
|
"content-type": "^1.0.5",
|
|
@@ -6240,14 +6171,15 @@
|
|
|
6240
6171
|
"cross-spawn": "^7.0.5",
|
|
6241
6172
|
"eventsource": "^3.0.2",
|
|
6242
6173
|
"eventsource-parser": "^3.0.0",
|
|
6243
|
-
"express": "^5.
|
|
6244
|
-
"express-rate-limit": "^
|
|
6245
|
-
"
|
|
6174
|
+
"express": "^5.2.1",
|
|
6175
|
+
"express-rate-limit": "^8.2.1",
|
|
6176
|
+
"hono": "^4.11.4",
|
|
6177
|
+
"jose": "^6.1.3",
|
|
6246
6178
|
"json-schema-typed": "^8.0.2",
|
|
6247
6179
|
"pkce-challenge": "^5.0.0",
|
|
6248
6180
|
"raw-body": "^3.0.0",
|
|
6249
6181
|
"zod": "^3.25 || ^4.0",
|
|
6250
|
-
"zod-to-json-schema": "^3.25.
|
|
6182
|
+
"zod-to-json-schema": "^3.25.1"
|
|
6251
6183
|
},
|
|
6252
6184
|
"engines": {
|
|
6253
6185
|
"node": ">=18"
|
|
@@ -7787,13 +7719,13 @@
|
|
|
7787
7719
|
]
|
|
7788
7720
|
},
|
|
7789
7721
|
"node_modules/@schematics/angular": {
|
|
7790
|
-
"version": "21.1.
|
|
7791
|
-
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.1.
|
|
7792
|
-
"integrity": "sha512-
|
|
7722
|
+
"version": "21.1.4",
|
|
7723
|
+
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-21.1.4.tgz",
|
|
7724
|
+
"integrity": "sha512-I1zdSNzdbrVCWpeE2NsZQmIoa9m0nlw4INgdGIkqUH6FgwvoGKC0RoOxKAmm6HHVJ48FE/sPI13dwAeK89ow5A==",
|
|
7793
7725
|
"license": "MIT",
|
|
7794
7726
|
"dependencies": {
|
|
7795
|
-
"@angular-devkit/core": "21.1.
|
|
7796
|
-
"@angular-devkit/schematics": "21.1.
|
|
7727
|
+
"@angular-devkit/core": "21.1.4",
|
|
7728
|
+
"@angular-devkit/schematics": "21.1.4",
|
|
7797
7729
|
"jsonc-parser": "3.3.1"
|
|
7798
7730
|
},
|
|
7799
7731
|
"engines": {
|
|
@@ -7803,9 +7735,9 @@
|
|
|
7803
7735
|
}
|
|
7804
7736
|
},
|
|
7805
7737
|
"node_modules/@schematics/angular/node_modules/@angular-devkit/core": {
|
|
7806
|
-
"version": "21.1.
|
|
7807
|
-
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.
|
|
7808
|
-
"integrity": "sha512-
|
|
7738
|
+
"version": "21.1.4",
|
|
7739
|
+
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-21.1.4.tgz",
|
|
7740
|
+
"integrity": "sha512-ObPTI5gYCB1jGxTRhcqZ6oQVUBFVJ8GH4LksVuAiz0nFX7xxpzARWvlhq943EtnlovVlUd9I8fM3RQqjfGVVAQ==",
|
|
7809
7741
|
"license": "MIT",
|
|
7810
7742
|
"dependencies": {
|
|
7811
7743
|
"ajv": "8.17.1",
|
|
@@ -10502,10 +10434,13 @@
|
|
|
10502
10434
|
}
|
|
10503
10435
|
},
|
|
10504
10436
|
"node_modules/express-rate-limit": {
|
|
10505
|
-
"version": "
|
|
10506
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-
|
|
10507
|
-
"integrity": "sha512-
|
|
10437
|
+
"version": "8.2.1",
|
|
10438
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.2.1.tgz",
|
|
10439
|
+
"integrity": "sha512-PCZEIEIxqwhzw4KF0n7QF4QqruVTcF73O5kFKUnGOyjbCCgizBBiFaYpd/fnBLUMPw/BWw9OsiN7GgrNYr7j6g==",
|
|
10508
10440
|
"license": "MIT",
|
|
10441
|
+
"dependencies": {
|
|
10442
|
+
"ip-address": "10.0.1"
|
|
10443
|
+
},
|
|
10509
10444
|
"engines": {
|
|
10510
10445
|
"node": ">= 16"
|
|
10511
10446
|
},
|
|
@@ -10516,6 +10451,15 @@
|
|
|
10516
10451
|
"express": ">= 4.11"
|
|
10517
10452
|
}
|
|
10518
10453
|
},
|
|
10454
|
+
"node_modules/express-rate-limit/node_modules/ip-address": {
|
|
10455
|
+
"version": "10.0.1",
|
|
10456
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz",
|
|
10457
|
+
"integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==",
|
|
10458
|
+
"license": "MIT",
|
|
10459
|
+
"engines": {
|
|
10460
|
+
"node": ">= 12"
|
|
10461
|
+
}
|
|
10462
|
+
},
|
|
10519
10463
|
"node_modules/extsprintf": {
|
|
10520
10464
|
"version": "1.4.1",
|
|
10521
10465
|
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz",
|
|
@@ -10977,11 +10921,10 @@
|
|
|
10977
10921
|
}
|
|
10978
10922
|
},
|
|
10979
10923
|
"node_modules/hono": {
|
|
10980
|
-
"version": "4.11.
|
|
10981
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.11.
|
|
10982
|
-
"integrity": "sha512-
|
|
10924
|
+
"version": "4.11.9",
|
|
10925
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.11.9.tgz",
|
|
10926
|
+
"integrity": "sha512-Eaw2YTGM6WOxA6CXbckaEvslr2Ne4NFsKrvc0v97JD5awbmeBLO5w9Ho9L9kmKonrwF9RJlW6BxT1PVv/agBHQ==",
|
|
10983
10927
|
"license": "MIT",
|
|
10984
|
-
"peer": true,
|
|
10985
10928
|
"engines": {
|
|
10986
10929
|
"node": ">=16.9.0"
|
|
10987
10930
|
}
|
|
@@ -13694,9 +13637,9 @@
|
|
|
13694
13637
|
}
|
|
13695
13638
|
},
|
|
13696
13639
|
"node_modules/qs": {
|
|
13697
|
-
"version": "6.14.
|
|
13698
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.
|
|
13699
|
-
"integrity": "sha512-
|
|
13640
|
+
"version": "6.14.2",
|
|
13641
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
|
13642
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
13700
13643
|
"license": "BSD-3-Clause",
|
|
13701
13644
|
"dependencies": {
|
|
13702
13645
|
"side-channel": "^1.1.0"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@ionic/cordova-builders": "^12.3.0",
|
|
19
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
20
20
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
21
|
-
"@regulaforensics/document-reader": "9.
|
|
21
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
22
22
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
23
23
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
24
24
|
"cordova-android": "^14.0.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"start": "expo start"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@regulaforensics/document-reader": "9.
|
|
11
|
+
"@regulaforensics/document-reader": "9.3.618-beta",
|
|
12
12
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.2.1513",
|
|
13
13
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
14
14
|
"react-native": "^0.81.4",
|