@regulaforensics/document-reader 9.4.723-nightly → 9.4.724-rc
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/JSONConstructor.kt +0 -36
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +43 -46
- package/examples/capacitor/package-lock.json +15 -15
- package/examples/capacitor/package.json +1 -1
- package/examples/ionic/package-lock.json +235 -208
- package/examples/ionic/package.json +2 -3
- package/examples/react_native/package-lock.json +30 -33
- package/examples/react_native/package.json +1 -1
- package/ios/RGLWJSONConstructor.h +0 -4
- package/ios/RGLWJSONConstructor.m +47 -93
- package/ios/RGLWMain.h +4 -2
- package/ios/RGLWMain.m +13 -49
- package/ios/RNDocumentReader.m +0 -2
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +0 -11
- package/test/package-lock.json +1 -1
- package/test/test.tsx +2 -4
- package/www/capacitor/config/RFIDConfig.js +0 -14
- package/www/capacitor/index.js +7 -9
- package/www/capacitor/internal/bridge.js +1 -19
- package/www/cordova.js +29 -152
- package/www/react-native/config/RFIDConfig.js +0 -14
- package/www/react-native/index.js +7 -9
- package/www/react-native/internal/bridge.js +1 -19
- package/www/types/config/RFIDConfig.d.ts +3 -35
- package/www/types/index.d.ts +1 -3
- package/www/capacitor/rfid/CAProtocol.js +0 -27
- package/www/capacitor/rfid/PACEProtocol.js +0 -24
- package/www/react-native/rfid/CAProtocol.js +0 -27
- package/www/react-native/rfid/PACEProtocol.js +0 -24
- package/www/types/rfid/CAProtocol.d.ts +0 -6
- package/www/types/rfid/PACEProtocol.d.ts +0 -5
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.4.
|
|
8
|
+
s.version = '9.4.724-rc'
|
|
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 'DocumentReaderStage', '9.4.6206'
|
|
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/Stage"
|
|
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.4.
|
|
32
|
+
implementation('com.regula.documentreader:api:9.4.12731'){
|
|
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/Stage"
|
|
4
4
|
}
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
dependencies {
|
|
8
8
|
//noinspection GradleDependency
|
|
9
|
-
implementation('com.regula.documentreader:api:9.4.
|
|
9
|
+
implementation('com.regula.documentreader:api:9.4.12731'){
|
|
10
10
|
transitive = true
|
|
11
11
|
}
|
|
12
12
|
}
|
|
@@ -47,9 +47,7 @@ import com.regula.documentreader.api.params.mdl.DeviceRetrievalMethod
|
|
|
47
47
|
import com.regula.documentreader.api.params.mdl.DocumentRequest18013MDL
|
|
48
48
|
import com.regula.documentreader.api.params.mdl.DocumentRequestMDL
|
|
49
49
|
import com.regula.documentreader.api.params.mdl.NameSpaceMDL
|
|
50
|
-
import com.regula.documentreader.api.params.rfid.CaProtocol
|
|
51
50
|
import com.regula.documentreader.api.params.rfid.PKDCertificate
|
|
52
|
-
import com.regula.documentreader.api.params.rfid.PaceProtocol
|
|
53
51
|
import com.regula.documentreader.api.params.rfid.RFIDParams
|
|
54
52
|
import com.regula.documentreader.api.params.rfid.TccParams
|
|
55
53
|
import com.regula.documentreader.api.params.rfid.authorization.PAAttribute
|
|
@@ -2140,37 +2138,3 @@ fun generateFinalizeConfig(input: FinalizeConfig?) = input?.let {
|
|
|
2140
2138
|
"mdlSession" to it.getPrivateProperty("mdlSession"),
|
|
2141
2139
|
).toJson()
|
|
2142
2140
|
}
|
|
2143
|
-
|
|
2144
|
-
fun paceProtocolFromJSON(input: JSONObject?) = input?.let {
|
|
2145
|
-
PaceProtocol(
|
|
2146
|
-
it.getString("version"),
|
|
2147
|
-
it.getString("stdDomainParams"),
|
|
2148
|
-
it.getString("keyAlgorithm"),
|
|
2149
|
-
)
|
|
2150
|
-
}
|
|
2151
|
-
|
|
2152
|
-
fun generatePaceProtocol(input: PaceProtocol?) = input?.let {
|
|
2153
|
-
mapOf(
|
|
2154
|
-
"version" to it.version,
|
|
2155
|
-
"stdDomainParams" to it.stdDomainParams,
|
|
2156
|
-
"keyAlgorithm" to it.keyAlgorithm,
|
|
2157
|
-
).toJson()
|
|
2158
|
-
}
|
|
2159
|
-
|
|
2160
|
-
fun caProtocolFromJSON(input: JSONObject?) = input?.let {
|
|
2161
|
-
CaProtocol(
|
|
2162
|
-
it.getString("version"),
|
|
2163
|
-
it.getString("scheme"),
|
|
2164
|
-
it.getString("keyAlgorithm"),
|
|
2165
|
-
it.getBoolean("chipIndividual"),
|
|
2166
|
-
)
|
|
2167
|
-
}
|
|
2168
|
-
|
|
2169
|
-
fun generateCaProtocol(input: CaProtocol?) = input?.let {
|
|
2170
|
-
mapOf(
|
|
2171
|
-
"version" to it.version,
|
|
2172
|
-
"scheme" to it.scheme,
|
|
2173
|
-
"keyAlgorithm" to it.keyAlgorithm,
|
|
2174
|
-
"chipIndividual" to it.isChipIndividual,
|
|
2175
|
-
).toJson()
|
|
2176
|
-
}
|
|
@@ -19,13 +19,13 @@ import com.regula.documentreader.api.completions.IDocumentReaderInitCompletion
|
|
|
19
19
|
import com.regula.documentreader.api.completions.IDocumentReaderPrepareDbCompletion
|
|
20
20
|
import com.regula.documentreader.api.completions.IVideoEncoderCompletion
|
|
21
21
|
import com.regula.documentreader.api.completions.model.PrepareProgress
|
|
22
|
-
import com.regula.documentreader.api.completions.rfid.ICaProtocolCompletion
|
|
23
|
-
import com.regula.documentreader.api.completions.rfid.IPaceProtocolCompletion
|
|
24
22
|
import com.regula.documentreader.api.completions.rfid.IRfidPKDCertificateCompletion
|
|
25
23
|
import com.regula.documentreader.api.completions.rfid.IRfidReaderCompletion
|
|
26
24
|
import com.regula.documentreader.api.completions.rfid.IRfidReaderRequest
|
|
27
25
|
import com.regula.documentreader.api.completions.rfid.IRfidTASignatureCompletion
|
|
28
|
-
import com.regula.documentreader.api.completions.rfid.certificates.
|
|
26
|
+
import com.regula.documentreader.api.completions.rfid.certificates.IRfidPACertificates
|
|
27
|
+
import com.regula.documentreader.api.completions.rfid.certificates.IRfidTACertificates
|
|
28
|
+
import com.regula.documentreader.api.completions.rfid.certificates.IRfidTASignature
|
|
29
29
|
import com.regula.documentreader.api.enums.DocReaderAction
|
|
30
30
|
import com.regula.documentreader.api.enums.LCID
|
|
31
31
|
import com.regula.documentreader.api.enums.eImageQualityCheckType
|
|
@@ -39,8 +39,6 @@ import com.regula.documentreader.api.errors.DocReaderRfidException
|
|
|
39
39
|
import com.regula.documentreader.api.errors.DocumentReaderException
|
|
40
40
|
import com.regula.documentreader.api.internal.core.CoreScenarioUtil
|
|
41
41
|
import com.regula.documentreader.api.params.mdl.DataRetrieval
|
|
42
|
-
import com.regula.documentreader.api.params.rfid.CaProtocol
|
|
43
|
-
import com.regula.documentreader.api.params.rfid.PaceProtocol
|
|
44
42
|
import com.regula.documentreader.api.results.DocumentReaderNotification
|
|
45
43
|
import com.regula.documentreader.api.results.DocumentReaderResults
|
|
46
44
|
import com.regula.documentreader.api.results.DocumentReaderResults.fromRawResults
|
|
@@ -86,14 +84,12 @@ fun methodCall(method: String, callback: (Any?) -> Unit): Any = when (method) {
|
|
|
86
84
|
"recognize" -> recognize(args(0))
|
|
87
85
|
"startNewPage" -> startNewPage()
|
|
88
86
|
"stopScanner" -> stopScanner()
|
|
89
|
-
"startRFIDReader" -> startRFIDReader(
|
|
90
|
-
"readRFID" -> readRFID(
|
|
87
|
+
"startRFIDReader" -> startRFIDReader(args(0), args(1), args(2))
|
|
88
|
+
"readRFID" -> readRFID(args(0), args(1), args(2))
|
|
91
89
|
"stopRFIDReader" -> stopRFIDReader()
|
|
92
90
|
"providePACertificates" -> providePACertificates(argsNullable(0))
|
|
93
91
|
"provideTACertificates" -> provideTACertificates(argsNullable(0))
|
|
94
92
|
"provideTASignature" -> provideTASignature(args(0))
|
|
95
|
-
"selectPACEProtocol" -> selectPACEProtocol(args(0))
|
|
96
|
-
"selectCAProtocol" -> selectCAProtocol(args(0))
|
|
97
93
|
"setTCCParams" -> setTCCParams(callback, args(0))
|
|
98
94
|
"addPKDCertificates" -> addPKDCertificates(args(0))
|
|
99
95
|
"clearPKDCertificates" -> clearPKDCertificates()
|
|
@@ -154,8 +150,6 @@ const val rfidOnRetryReadChipEvent = "rfidOnRetryReadChipEvent"
|
|
|
154
150
|
const val paCertificateCompletionEvent = "pa_certificate_completion"
|
|
155
151
|
const val taCertificateCompletionEvent = "ta_certificate_completion"
|
|
156
152
|
const val taSignatureCompletionEvent = "ta_signature_completion"
|
|
157
|
-
const val paceProtocolCompletionEvent = "paceProtocolCompletionEvent"
|
|
158
|
-
const val caProtocolCompletionEvent = "caProtocolCompletionEvent"
|
|
159
153
|
|
|
160
154
|
const val videoEncoderCompletionEvent = "video_encoder_completion"
|
|
161
155
|
const val onCustomButtonTappedEvent = "onCustomButtonTappedEvent"
|
|
@@ -254,13 +248,22 @@ fun startNewPage() = Instance().startNewPage()
|
|
|
254
248
|
|
|
255
249
|
fun stopScanner() = Instance().stopScanner(context)
|
|
256
250
|
|
|
257
|
-
fun startRFIDReader(
|
|
251
|
+
fun startRFIDReader(onRequestPACertificates: Boolean, onRequestTACertificates: Boolean, onRequestTASignature: Boolean) {
|
|
258
252
|
stopBackgroundRFID()
|
|
259
|
-
|
|
253
|
+
requestType = RfidReaderRequestType(
|
|
254
|
+
onRequestPACertificates,
|
|
255
|
+
onRequestTACertificates,
|
|
256
|
+
onRequestTASignature
|
|
257
|
+
)
|
|
258
|
+
Instance().startRFIDReader(activity, rfidReaderCompletion, requestType.getRfidReaderRequest())
|
|
260
259
|
}
|
|
261
260
|
|
|
262
|
-
fun readRFID(
|
|
263
|
-
|
|
261
|
+
fun readRFID(onRequestPACertificates: Boolean, onRequestTACertificates: Boolean, onRequestTASignature: Boolean) {
|
|
262
|
+
requestType = RfidReaderRequestType(
|
|
263
|
+
onRequestPACertificates,
|
|
264
|
+
onRequestTACertificates,
|
|
265
|
+
onRequestTASignature
|
|
266
|
+
)
|
|
264
267
|
startForegroundDispatch("readRFID")
|
|
265
268
|
}
|
|
266
269
|
|
|
@@ -281,14 +284,6 @@ fun provideTASignature(signature: String?) = taSignatureCompletion.onSignatureRe
|
|
|
281
284
|
signature.toByteArray()
|
|
282
285
|
)
|
|
283
286
|
|
|
284
|
-
fun selectPACEProtocol(protocol: JSONObject) = paceProtocolCompletion.onPaceProtocolSelected(
|
|
285
|
-
paceProtocolFromJSON(protocol)!!
|
|
286
|
-
)
|
|
287
|
-
|
|
288
|
-
fun selectCAProtocol(protocol: JSONObject) = caProtocolCompletion.onCaProtocolSelected(
|
|
289
|
-
caProtocolFromJSON(protocol)!!
|
|
290
|
-
)
|
|
291
|
-
|
|
292
287
|
fun setTCCParams(callback: Callback, params: JSONObject) {
|
|
293
288
|
Instance().setTccParams(tccParamsFromJSON(params)) { success, error ->
|
|
294
289
|
callback(generateSuccessCompletion(success, error))
|
|
@@ -550,47 +545,49 @@ fun initCompletion(callback: Callback) = IDocumentReaderInitCompletion { success
|
|
|
550
545
|
lateinit var paCertificateCompletion: IRfidPKDCertificateCompletion
|
|
551
546
|
lateinit var taCertificateCompletion: IRfidPKDCertificateCompletion
|
|
552
547
|
lateinit var taSignatureCompletion: IRfidTASignatureCompletion
|
|
553
|
-
lateinit var paceProtocolCompletion: IPaceProtocolCompletion
|
|
554
|
-
lateinit var caProtocolCompletion: ICaProtocolCompletion
|
|
555
|
-
|
|
556
|
-
var rfidReaderRequest = getRfidReaderRequest()
|
|
557
|
-
|
|
558
|
-
fun getRfidReaderRequest(config: JSONObject? = null): IRfidReaderRequest {
|
|
559
|
-
val result = IRfidReaderRequest()
|
|
560
|
-
if (config == null) return result
|
|
561
548
|
|
|
562
|
-
|
|
549
|
+
class RfidReaderRequestType(
|
|
550
|
+
val doPACertificates: Boolean,
|
|
551
|
+
val doTACertificates: Boolean,
|
|
552
|
+
val doTASignature: Boolean
|
|
553
|
+
) {
|
|
554
|
+
private val onRequestPACertificates = IRfidPACertificates { serialNumber, issuer, completion ->
|
|
563
555
|
paCertificateCompletion = completion
|
|
564
556
|
sendEvent(paCertificateCompletionEvent, generatePACertificateCompletion(serialNumber, issuer))
|
|
565
557
|
}
|
|
566
|
-
|
|
558
|
+
private val onRequestTACertificates = IRfidTACertificates { keyCAR, completion ->
|
|
567
559
|
taCertificateCompletion = completion
|
|
568
560
|
sendEvent(taCertificateCompletionEvent, keyCAR)
|
|
569
561
|
}
|
|
570
|
-
|
|
562
|
+
private val onRequestTASignature = IRfidTASignature { challenge, completion ->
|
|
571
563
|
taSignatureCompletion = completion
|
|
572
564
|
sendEvent(taSignatureCompletionEvent, generateTAChallenge(challenge))
|
|
573
565
|
}
|
|
574
|
-
if (config.getBoolean("paceProtocol") || config.getBoolean("caProtocol")) result.setRfidAccessControl(object : IRfidAccessControl {
|
|
575
|
-
override fun onRequestPaceProtocol(list: List<PaceProtocol?>, completion: IPaceProtocolCompletion) {
|
|
576
|
-
paceProtocolCompletion = completion
|
|
577
|
-
sendEvent(paceProtocolCompletionEvent, list.toJson(::generatePaceProtocol))
|
|
578
|
-
}
|
|
579
|
-
override fun onRequestCaProtocol(list: List<CaProtocol?>, completion: ICaProtocolCompletion) {
|
|
580
|
-
caProtocolCompletion = completion
|
|
581
|
-
sendEvent(caProtocolCompletionEvent, list.toJson(::generateCaProtocol))
|
|
582
|
-
}
|
|
583
|
-
})
|
|
584
566
|
|
|
585
|
-
|
|
567
|
+
fun getRfidReaderRequest(): IRfidReaderRequest? = when {
|
|
568
|
+
!doPACertificates && !doTACertificates && doTASignature -> IRfidReaderRequest(onRequestTASignature)
|
|
569
|
+
!doPACertificates && doTACertificates && !doTASignature -> IRfidReaderRequest(onRequestTACertificates)
|
|
570
|
+
!doPACertificates && doTACertificates && doTASignature -> IRfidReaderRequest(onRequestTACertificates, onRequestTASignature)
|
|
571
|
+
doPACertificates && !doTACertificates && !doTASignature -> IRfidReaderRequest(onRequestPACertificates)
|
|
572
|
+
doPACertificates && !doTACertificates && doTASignature -> IRfidReaderRequest(onRequestPACertificates, onRequestTASignature)
|
|
573
|
+
doPACertificates && doTACertificates && !doTASignature -> IRfidReaderRequest(onRequestPACertificates, onRequestTACertificates)
|
|
574
|
+
doPACertificates && doTACertificates && doTASignature -> IRfidReaderRequest(onRequestPACertificates, onRequestTACertificates, onRequestTASignature)
|
|
575
|
+
else -> null
|
|
576
|
+
}
|
|
586
577
|
}
|
|
587
578
|
|
|
579
|
+
var requestType = RfidReaderRequestType(
|
|
580
|
+
doPACertificates = false,
|
|
581
|
+
doTACertificates = false,
|
|
582
|
+
doTASignature = false
|
|
583
|
+
)
|
|
584
|
+
|
|
588
585
|
@Suppress("DEPRECATION", "MissingPermission")
|
|
589
586
|
fun newIntent(intent: Intent): Boolean {
|
|
590
587
|
if (intent.action != NfcAdapter.ACTION_TECH_DISCOVERED) return false
|
|
591
588
|
val isoDep = IsoDep.get(intent.getParcelableExtra(NfcAdapter.EXTRA_TAG))
|
|
592
589
|
when (nfcFunction) {
|
|
593
|
-
"readRFID" -> Instance().readRFID(isoDep, rfidReaderCompletion,
|
|
590
|
+
"readRFID" -> Instance().readRFID(isoDep, rfidReaderCompletion, requestType.getRfidReaderRequest())
|
|
594
591
|
"engageDeviceNFC" -> Instance().engageDeviceNFC(isoDep) { v1, v2 -> engageDeviceNFCCallback(generateDeviceEngagementCompletion(v1, v2)) }
|
|
595
592
|
"retrieveDataNFC" -> Instance().retrieveDataNFC(isoDep, retrieveDataNFCProp) { v1, v2, v3 -> retrieveDataNFCCallback(generateCompletion(v1, v2, v3)) }
|
|
596
593
|
}
|
|
@@ -1613,9 +1613,9 @@
|
|
|
1613
1613
|
}
|
|
1614
1614
|
},
|
|
1615
1615
|
"node_modules/@xmldom/xmldom": {
|
|
1616
|
-
"version": "0.8.
|
|
1617
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.
|
|
1618
|
-
"integrity": "sha512-
|
|
1616
|
+
"version": "0.8.11",
|
|
1617
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.11.tgz",
|
|
1618
|
+
"integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==",
|
|
1619
1619
|
"license": "MIT",
|
|
1620
1620
|
"engines": {
|
|
1621
1621
|
"node": ">=10.0.0"
|
|
@@ -1659,9 +1659,9 @@
|
|
|
1659
1659
|
}
|
|
1660
1660
|
},
|
|
1661
1661
|
"node_modules/anymatch/node_modules/picomatch": {
|
|
1662
|
-
"version": "2.3.
|
|
1663
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.
|
|
1664
|
-
"integrity": "sha512-
|
|
1662
|
+
"version": "2.3.1",
|
|
1663
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
1664
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
1665
1665
|
"license": "MIT",
|
|
1666
1666
|
"engines": {
|
|
1667
1667
|
"node": ">=8.6"
|
|
@@ -1760,9 +1760,9 @@
|
|
|
1760
1760
|
}
|
|
1761
1761
|
},
|
|
1762
1762
|
"node_modules/brace-expansion": {
|
|
1763
|
-
"version": "5.0.
|
|
1764
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1765
|
-
"integrity": "sha512-
|
|
1763
|
+
"version": "5.0.4",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz",
|
|
1765
|
+
"integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
|
|
1766
1766
|
"license": "MIT",
|
|
1767
1767
|
"dependencies": {
|
|
1768
1768
|
"balanced-match": "^4.0.2"
|
|
@@ -2569,9 +2569,9 @@
|
|
|
2569
2569
|
"license": "ISC"
|
|
2570
2570
|
},
|
|
2571
2571
|
"node_modules/picomatch": {
|
|
2572
|
-
"version": "4.0.
|
|
2573
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.
|
|
2574
|
-
"integrity": "sha512-
|
|
2572
|
+
"version": "4.0.3",
|
|
2573
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
2574
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
2575
2575
|
"license": "MIT",
|
|
2576
2576
|
"engines": {
|
|
2577
2577
|
"node": ">=12"
|
|
@@ -2704,9 +2704,9 @@
|
|
|
2704
2704
|
}
|
|
2705
2705
|
},
|
|
2706
2706
|
"node_modules/readdirp/node_modules/picomatch": {
|
|
2707
|
-
"version": "2.3.
|
|
2708
|
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.
|
|
2709
|
-
"integrity": "sha512-
|
|
2707
|
+
"version": "2.3.1",
|
|
2708
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
2709
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
2710
2710
|
"license": "MIT",
|
|
2711
2711
|
"engines": {
|
|
2712
2712
|
"node": ">=8.6"
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@regulaforensics/document-reader": "9.4.
|
|
9
|
+
"@regulaforensics/document-reader": "9.4.724-rc",
|
|
10
10
|
"@regulaforensics/document-reader-core-fullauthrfid": "9.3.1817",
|
|
11
11
|
"@regulaforensics/document-reader-btdevice": "9.1.35",
|
|
12
12
|
"@awesome-cordova-plugins/file": "^8.1.0",
|