@regulaforensics/document-reader 8.3.280-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.
Files changed (36) hide show
  1. package/RNDocumentReader.podspec +2 -2
  2. package/android/build.gradle +2 -2
  3. package/android/cordova.gradle +2 -2
  4. package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +4 -0
  5. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +4 -4
  6. package/examples/capacitor/android/app/build.gradle +2 -2
  7. package/examples/capacitor/android/app/src/main/java/com/regula/{dr/fullauthrfid → example/dr/capacitor}/MainActivity.java +1 -1
  8. package/examples/capacitor/android/app/src/main/res/values/strings.xml +2 -2
  9. package/examples/capacitor/ios/App/App/Info.plist +60 -60
  10. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +2 -2
  11. package/examples/capacitor/package-lock.json +30 -159
  12. package/examples/capacitor/package.json +4 -4
  13. package/examples/ionic/config.xml +1 -1
  14. package/examples/ionic/package-lock.json +7962 -10570
  15. package/examples/ionic/package.json +16 -16
  16. package/examples/react_native/app.config.ts +2 -2
  17. package/examples/react_native/package-lock.json +54 -71
  18. package/examples/react_native/package.json +3 -3
  19. package/ios/RGLWConfig.m +2 -0
  20. package/ios/RGLWMain.m +1 -1
  21. package/package.json +1 -1
  22. package/plugin.xml +2 -2
  23. package/test/json.tsx +3 -1
  24. package/test/package-lock.json +1 -1
  25. package/www/capacitor/params/Functionality.js +8 -0
  26. package/www/capacitor/params/process_params/ProcessParams.js +8 -0
  27. package/www/capacitor/results/authenticity/CheckDiagnose.js +1 -0
  28. package/www/cordova.js +17 -0
  29. package/www/react-native/params/Functionality.js +8 -0
  30. package/www/react-native/params/process_params/ProcessParams.js +8 -0
  31. package/www/react-native/results/authenticity/CheckDiagnose.js +1 -0
  32. package/www/types/params/Functionality.d.ts +4 -0
  33. package/www/types/params/process_params/FaceApiSearchParams.d.ts +2 -2
  34. package/www/types/params/process_params/ProcessParams.d.ts +4 -0
  35. package/www/types/results/TransactionInfo.d.ts +1 -1
  36. 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?: string;
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. */