@regulaforensics/document-reader 8.3.281-beta → 8.3.282-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 +4 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +4 -4
- package/examples/capacitor/android/app/build.gradle +2 -2
- package/examples/capacitor/android/app/src/main/java/com/regula/{dr/fullauthrfid → example/dr/capacitor}/MainActivity.java +1 -1
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +2 -2
- package/examples/capacitor/ios/App/App/Info.plist +60 -60
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +2 -2
- package/examples/capacitor/package-lock.json +30 -159
- package/examples/capacitor/package.json +3 -3
- package/examples/ionic/config.xml +1 -1
- package/examples/ionic/package-lock.json +7962 -10570
- package/examples/ionic/package.json +16 -16
- package/examples/react_native/app.config.ts +2 -2
- package/examples/react_native/package-lock.json +54 -71
- package/examples/react_native/package.json +3 -3
- package/ios/RGLWConfig.m +2 -0
- package/ios/RGLWMain.m +1 -1
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +3 -1
- package/test/package-lock.json +1 -1
- package/www/capacitor/params/Functionality.js +8 -0
- package/www/capacitor/params/process_params/ProcessParams.js +8 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +1 -0
- package/www/cordova.js +17 -0
- package/www/react-native/params/Functionality.js +8 -0
- package/www/react-native/params/process_params/ProcessParams.js +8 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +1 -0
- package/www/types/params/Functionality.d.ts +4 -0
- package/www/types/params/process_params/FaceApiSearchParams.d.ts +2 -2
- package/www/types/params/process_params/ProcessParams.d.ts +4 -0
- package/www/types/results/TransactionInfo.d.ts +1 -1
- package/www/types/results/authenticity/CheckDiagnose.d.ts +2 -0
|
@@ -2,7 +2,7 @@ export declare class TransactionInfo {
|
|
|
2
2
|
readonly transactionId?: string;
|
|
3
3
|
readonly tag?: string;
|
|
4
4
|
/** The path to the logs folder of the session. */
|
|
5
|
-
readonly sessionLogFolder
|
|
5
|
+
readonly sessionLogFolder: string;
|
|
6
6
|
|
|
7
7
|
/** Allows you to deserialize object. */
|
|
8
8
|
static fromJson(jsonObject: any): TransactionInfo | null;
|
|
@@ -153,6 +153,8 @@ export declare enum CheckDiagnose {
|
|
|
153
153
|
TEXT_COLOR_SHOULD_BE_RED = 132,
|
|
154
154
|
/** Text should be black. */
|
|
155
155
|
TEXT_SHOULD_BE_BLACK = 133,
|
|
156
|
+
/** Security text is absent. */
|
|
157
|
+
SECURITY_TEXT_IS_ABSENT = 134,
|
|
156
158
|
/** Barcode read with errors. */
|
|
157
159
|
BARCODE_WAS_READ_WITH_ERRORS = 140,
|
|
158
160
|
/** Barcode data format error. */
|