@regulaforensics/react-native-document-reader-api 7.5.769-nightly → 7.5.771-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/RNDocumentReaderApi.podspec +1 -1
- package/android/build.gradle +2 -2
- package/example/package.json +2 -2
- package/index.d.ts +2 -2
- package/index.js +1 -1
- 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 = '11.0'
|
|
16
16
|
s.source_files = "ios/*.{h,m}"
|
|
17
|
-
s.dependency '
|
|
17
|
+
s.dependency 'DocumentReaderStage', '7.5.4183'
|
|
18
18
|
s.dependency 'React'
|
|
19
19
|
end
|
package/android/build.gradle
CHANGED
|
@@ -32,7 +32,7 @@ android {
|
|
|
32
32
|
rootProject.allprojects {
|
|
33
33
|
repositories {
|
|
34
34
|
maven {
|
|
35
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
35
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -41,7 +41,7 @@ dependencies {
|
|
|
41
41
|
//noinspection GradleDynamicVersion
|
|
42
42
|
implementation 'com.facebook.react:react-native:+'
|
|
43
43
|
//noinspection GradleDependency
|
|
44
|
-
implementation('com.regula.documentreader:api:7.5.
|
|
44
|
+
implementation('com.regula.documentreader:api:7.5.10375') {
|
|
45
45
|
transitive = true
|
|
46
46
|
}
|
|
47
47
|
}
|
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": "7.5.
|
|
14
|
-
"@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.
|
|
13
|
+
"@regulaforensics/react-native-document-reader-api": "7.5.771-rc",
|
|
14
|
+
"@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.797-rc",
|
|
15
15
|
"react-native-progress": "5.0.0",
|
|
16
16
|
"react-native-radio-buttons-group": "3.0.5",
|
|
17
17
|
"@rneui/base": "4.0.0-rc.7",
|
package/index.d.ts
CHANGED
|
@@ -1064,14 +1064,14 @@ export class RfidNotificationCompletion {
|
|
|
1064
1064
|
}
|
|
1065
1065
|
|
|
1066
1066
|
export class RegulaException {
|
|
1067
|
-
|
|
1067
|
+
code?: number
|
|
1068
1068
|
message?: string
|
|
1069
1069
|
|
|
1070
1070
|
static fromJson(jsonObject?: any): RegulaException | undefined {
|
|
1071
1071
|
if (jsonObject == null || jsonObject == undefined) return undefined
|
|
1072
1072
|
const result = new RegulaException
|
|
1073
1073
|
|
|
1074
|
-
result.
|
|
1074
|
+
result.code = jsonObject["code"]
|
|
1075
1075
|
result.message = jsonObject["message"]
|
|
1076
1076
|
|
|
1077
1077
|
return result
|
package/index.js
CHANGED
|
@@ -704,7 +704,7 @@ export class RegulaException {
|
|
|
704
704
|
if (jsonObject == null) return null
|
|
705
705
|
const result = new RegulaException()
|
|
706
706
|
|
|
707
|
-
result.
|
|
707
|
+
result.code = jsonObject["code"]
|
|
708
708
|
result.message = jsonObject["message"]
|
|
709
709
|
|
|
710
710
|
return result
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/react-native-document-reader-api",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.771-rc",
|
|
4
4
|
"description": "React Native module for reading and validation of identification documents (API framework)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|