@regulaforensics/document-reader 9.2.555-nightly → 9.2.557-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 (56) 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 +2 -0
  5. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +20 -1
  6. package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +9 -2
  7. package/examples/capacitor/package-lock.json +662 -743
  8. package/examples/capacitor/package.json +15 -15
  9. package/examples/ionic/package-lock.json +436 -489
  10. package/examples/ionic/package.json +1 -1
  11. package/examples/react_native/package.json +1 -1
  12. package/ios/RGLWConfig.m +4 -0
  13. package/ios/RGLWJSONConstructor.h +2 -0
  14. package/ios/RGLWJSONConstructor.m +31 -4
  15. package/ios/RGLWMain.m +23 -22
  16. package/package.json +1 -1
  17. package/plugin.xml +2 -2
  18. package/test/json.tsx +9 -2
  19. package/test/package-lock.json +1 -1
  20. package/test/test.tsx +3 -2
  21. package/www/capacitor/config/FinalizeConfig.js +31 -0
  22. package/www/capacitor/index.js +15 -12
  23. package/www/capacitor/params/process_params/ProcessParams.js +8 -0
  24. package/www/capacitor/results/Results.js +4 -0
  25. package/www/capacitor/results/authenticity/CheckDiagnose.js +1 -0
  26. package/www/capacitor/results/authenticity/SecurityFeatureType.js +4 -0
  27. package/www/cordova.js +1001 -934
  28. package/www/react-native/config/FinalizeConfig.js +31 -0
  29. package/www/react-native/index.js +15 -12
  30. package/www/react-native/params/process_params/ProcessParams.js +8 -0
  31. package/www/react-native/results/Results.js +4 -0
  32. package/www/react-native/results/authenticity/CheckDiagnose.js +1 -0
  33. package/www/react-native/results/authenticity/SecurityFeatureType.js +4 -0
  34. package/www/types/config/FinalizeConfig.d.ts +5 -0
  35. package/www/types/index.d.ts +8 -7
  36. package/www/types/params/customization/Customization.d.ts +1 -1
  37. package/www/types/params/process_params/ProcessParams.d.ts +1 -4
  38. package/www/types/results/Results.d.ts +4 -0
  39. package/www/types/results/authenticity/CheckDiagnose.d.ts +2 -0
  40. package/www/types/results/authenticity/SecurityFeatureType.d.ts +4 -0
  41. package/www/types/results/status/ResultsStatus.d.ts +0 -1
  42. /package/www/capacitor/{engagement → mdl}/DataRetrieval.js +0 -0
  43. /package/www/capacitor/{engagement → mdl}/DeviceEngagement.js +0 -0
  44. /package/www/capacitor/{engagement → mdl}/DeviceRetrievalMethod.js +0 -0
  45. /package/www/capacitor/{engagement → mdl}/DocumentRequestMDL.js +0 -0
  46. /package/www/capacitor/{engagement → mdl}/NameSpaceMDL.js +0 -0
  47. /package/www/react-native/{engagement → mdl}/DataRetrieval.js +0 -0
  48. /package/www/react-native/{engagement → mdl}/DeviceEngagement.js +0 -0
  49. /package/www/react-native/{engagement → mdl}/DeviceRetrievalMethod.js +0 -0
  50. /package/www/react-native/{engagement → mdl}/DocumentRequestMDL.js +0 -0
  51. /package/www/react-native/{engagement → mdl}/NameSpaceMDL.js +0 -0
  52. /package/www/types/{engagement → mdl}/DataRetrieval.d.ts +0 -0
  53. /package/www/types/{engagement → mdl}/DeviceEngagement.d.ts +0 -0
  54. /package/www/types/{engagement → mdl}/DeviceRetrievalMethod.d.ts +0 -0
  55. /package/www/types/{engagement → mdl}/DocumentRequestMDL.d.ts +0 -0
  56. /package/www/types/{engagement → mdl}/NameSpaceMDL.d.ts +0 -0
@@ -6,22 +6,22 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/document-reader": "9.2.555-nightly",
9
+ "@regulaforensics/document-reader": "9.2.557-beta",
10
10
  "@regulaforensics/document-reader-core-fullauthrfid": "9.1.1281",
11
11
  "@regulaforensics/document-reader-btdevice": "9.1.35",
12
- "@awesome-cordova-plugins/file": "6.6.0",
13
- "@awesome-cordova-plugins/camera": "6.6.0",
14
- "cordova-plugin-file": "8.1.3",
15
- "cordova-plugin-camera": "8.0.0",
16
- "@capacitor/cli": "7.0.1",
17
- "@capacitor/core": "7.0.1",
18
- "@capacitor/app": "7.0.0",
19
- "@capacitor/ios": "7.0.1",
20
- "@capacitor/android": "7.0.1",
21
- "@capacitor/status-bar": "7.0.0",
22
- "@ionic/react": "8.4.3",
23
- "@vitejs/plugin-react": "4.3.4",
24
- "vite-plugin-static-copy": "3.1.2",
25
- "@types/react-router-dom": "5.3.3"
12
+ "@awesome-cordova-plugins/file": "^8.1.0",
13
+ "@awesome-cordova-plugins/camera": "^8.1.0",
14
+ "cordova-plugin-file": "^8.1.3",
15
+ "cordova-plugin-camera": "^8.0.0",
16
+ "@capacitor/cli": "^8.0.2",
17
+ "@capacitor/core": "^8.0.2",
18
+ "@capacitor/app": "^8.0.0",
19
+ "@capacitor/ios": "^8.0.2",
20
+ "@capacitor/android": "^8.0.2",
21
+ "@capacitor/status-bar": "^8.0.0",
22
+ "@ionic/react": "^8.7.17",
23
+ "@vitejs/plugin-react": "^5.1.2",
24
+ "vite-plugin-static-copy": "^3.2.0",
25
+ "@types/react-router-dom": "^5.3.3"
26
26
  }
27
27
  }