@regulaforensics/react-native-document-reader-api 9.2.386-beta → 9.2.387-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/RNDocumentReaderApi.podspec +1 -1
- package/android/build.gradle +2 -2
- package/example/package.json +2 -2
- package/index.d.ts +1 -16
- package/package.json +1 -1
|
@@ -14,6 +14,6 @@ Pod::Spec.new do |s|
|
|
|
14
14
|
s.source = { :http => 'file:' + __dir__ }
|
|
15
15
|
s.ios.deployment_target = '13.0'
|
|
16
16
|
s.source_files = "ios/*.{h,m}"
|
|
17
|
-
s.dependency '
|
|
17
|
+
s.dependency 'DocumentReaderNightly', '9.2.5740'
|
|
18
18
|
s.dependency 'React'
|
|
19
19
|
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/Nightly"
|
|
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.
|
|
32
|
+
implementation('com.regula.documentreader:api:9.2.12267') {
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/example/package.json
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"test": "jest"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@regulaforensics/react-native-document-reader-api": "9.2.
|
|
14
|
-
"@regulaforensics/react-native-document-reader-core-fullauthrfid": "9.
|
|
13
|
+
"@regulaforensics/react-native-document-reader-api": "9.2.387-nightly",
|
|
14
|
+
"@regulaforensics/react-native-document-reader-core-fullauthrfid": "9.2.1709-nightly",
|
|
15
15
|
"@rneui/base": "4.0.0-rc.7",
|
|
16
16
|
"@rneui/themed": "4.0.0-rc.7",
|
|
17
17
|
"react": "19.0.0",
|
package/index.d.ts
CHANGED
|
@@ -3023,21 +3023,6 @@ export class DeviceEngagement {
|
|
|
3023
3023
|
}
|
|
3024
3024
|
}
|
|
3025
3025
|
|
|
3026
|
-
export class DeviceEngagementCompletion {
|
|
3027
|
-
deviceEngagement?: DeviceEngagement
|
|
3028
|
-
error?: RegulaException
|
|
3029
|
-
|
|
3030
|
-
static fromJson(jsonObject?: any): DeviceEngagementCompletion | undefined {
|
|
3031
|
-
if (jsonObject == null || jsonObject == undefined) return undefined
|
|
3032
|
-
const result = new DeviceEngagementCompletion
|
|
3033
|
-
|
|
3034
|
-
result.deviceEngagement = DeviceEngagement.fromJson(jsonObject["deviceEngagement"])
|
|
3035
|
-
result.error = RegulaException.fromJson(jsonObject["error"])
|
|
3036
|
-
|
|
3037
|
-
return result
|
|
3038
|
-
}
|
|
3039
|
-
}
|
|
3040
|
-
|
|
3041
3026
|
export class DeviceRetrievalMethod {
|
|
3042
3027
|
type?: number
|
|
3043
3028
|
version?: number
|
|
@@ -3068,7 +3053,7 @@ export class DeviceRetrievalMethod {
|
|
|
3068
3053
|
export class DataRetrieval {
|
|
3069
3054
|
deviceRetrieval?: number
|
|
3070
3055
|
docRequestPreset?: number
|
|
3071
|
-
intentToRetain?:
|
|
3056
|
+
intentToRetain?: boolean
|
|
3072
3057
|
requests?: any[]
|
|
3073
3058
|
|
|
3074
3059
|
static fromJson(jsonObject?: any): DataRetrieval | undefined {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/react-native-document-reader-api",
|
|
3
|
-
"version": "9.2.
|
|
3
|
+
"version": "9.2.387-nightly",
|
|
4
4
|
"description": "React Native module for reading and validation of identification documents (API framework)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|