@regulaforensics/document-reader 8.2.186-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 (439) hide show
  1. package/README.md +18 -0
  2. package/RNDocumentReader.podspec +21 -0
  3. package/android/CVDDocumentReader.kt +74 -0
  4. package/android/build.gradle +36 -0
  5. package/android/cordova.gradle +12 -0
  6. package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
  7. package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
  8. package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
  9. package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
  10. package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
  11. package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
  12. package/examples/capacitor/README.md +12 -0
  13. package/examples/capacitor/android/app/build.gradle +50 -0
  14. package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
  15. package/examples/capacitor/android/app/proguard-rules.pro +21 -0
  16. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
  17. package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
  18. package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
  19. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
  20. package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
  21. package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
  22. package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
  23. package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
  24. package/examples/capacitor/android/build.gradle +30 -0
  25. package/examples/capacitor/android/capacitor.settings.gradle +15 -0
  26. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  27. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  28. package/examples/capacitor/android/gradle.properties +22 -0
  29. package/examples/capacitor/android/gradlew +252 -0
  30. package/examples/capacitor/android/gradlew.bat +94 -0
  31. package/examples/capacitor/android/settings.gradle +5 -0
  32. package/examples/capacitor/android/variables.gradle +16 -0
  33. package/examples/capacitor/index.html +10 -0
  34. package/examples/capacitor/ionic.config.json +7 -0
  35. package/examples/capacitor/ios/App/App/App.entitlements +5 -0
  36. package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
  37. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
  38. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  39. package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
  40. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
  41. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
  42. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
  43. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
  44. package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
  45. package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
  46. package/examples/capacitor/ios/App/App/Info.plist +53 -0
  47. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
  48. package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  49. package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
  50. package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  51. package/examples/capacitor/ios/App/Podfile +26 -0
  52. package/examples/capacitor/ios/App/Podfile.lock +56 -0
  53. package/examples/capacitor/package-lock.json +3467 -0
  54. package/examples/capacitor/package.json +29 -0
  55. package/examples/capacitor/public/assets/.gitkeep +0 -0
  56. package/examples/capacitor/public/images/document.png +0 -0
  57. package/examples/capacitor/public/images/portrait.png +0 -0
  58. package/examples/capacitor/scripts/android.sh +9 -0
  59. package/examples/capacitor/scripts/ios.sh +8 -0
  60. package/examples/capacitor/scripts/setup.sh +6 -0
  61. package/examples/capacitor/src/extra/bt_device.tsx +32 -0
  62. package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
  63. package/examples/capacitor/src/main.css +131 -0
  64. package/examples/capacitor/src/main.html +41 -0
  65. package/examples/capacitor/src/main.tsx +175 -0
  66. package/examples/capacitor/tsconfig.json +5 -0
  67. package/examples/capacitor/vite.config.ts +17 -0
  68. package/examples/cordova/.vscode/launch.json +28 -0
  69. package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
  70. package/examples/cordova/README.md +12 -0
  71. package/examples/cordova/config.xml +29 -0
  72. package/examples/cordova/package-lock.json +1314 -0
  73. package/examples/cordova/package.json +32 -0
  74. package/examples/cordova/scripts/android.sh +8 -0
  75. package/examples/cordova/scripts/ios.sh +8 -0
  76. package/examples/cordova/scripts/setup.sh +8 -0
  77. package/examples/cordova/www/images/document.png +0 -0
  78. package/examples/cordova/www/images/logo.png +0 -0
  79. package/examples/cordova/www/images/portrait.png +0 -0
  80. package/examples/cordova/www/index.html +21 -0
  81. package/examples/cordova/www/src/main.css +130 -0
  82. package/examples/cordova/www/src/main.html +63 -0
  83. package/examples/cordova/www/src/main.js +50 -0
  84. package/examples/ionic/README.md +12 -0
  85. package/examples/ionic/angular.json +39 -0
  86. package/examples/ionic/config.xml +28 -0
  87. package/examples/ionic/index.html +19 -0
  88. package/examples/ionic/index.ts +17 -0
  89. package/examples/ionic/ionic.config.json +7 -0
  90. package/examples/ionic/package-lock.json +16559 -0
  91. package/examples/ionic/package.json +47 -0
  92. package/examples/ionic/scripts/android.sh +8 -0
  93. package/examples/ionic/scripts/ios.sh +8 -0
  94. package/examples/ionic/scripts/setup.sh +8 -0
  95. package/examples/ionic/src/assets/.gitkeep +0 -0
  96. package/examples/ionic/src/images/document.png +0 -0
  97. package/examples/ionic/src/images/icon.png +0 -0
  98. package/examples/ionic/src/images/portrait.png +0 -0
  99. package/examples/ionic/src/main.css +130 -0
  100. package/examples/ionic/src/main.html +63 -0
  101. package/examples/ionic/src/main.ts +66 -0
  102. package/examples/ionic/tsconfig.json +12 -0
  103. package/examples/react_native/README.md +12 -0
  104. package/examples/react_native/app.config.ts +53 -0
  105. package/examples/react_native/assets/.gitkeep +0 -0
  106. package/examples/react_native/images/document.png +0 -0
  107. package/examples/react_native/images/icon/adaptive-icon.png +0 -0
  108. package/examples/react_native/images/icon/icon.png +0 -0
  109. package/examples/react_native/images/portrait.png +0 -0
  110. package/examples/react_native/index.html +11 -0
  111. package/examples/react_native/index.tsx +52 -0
  112. package/examples/react_native/metro.config.js +7 -0
  113. package/examples/react_native/package-lock.json +9254 -0
  114. package/examples/react_native/package.json +27 -0
  115. package/examples/react_native/scripts/android.sh +12 -0
  116. package/examples/react_native/scripts/ios.sh +11 -0
  117. package/examples/react_native/scripts/setup.sh +8 -0
  118. package/examples/react_native/src/main.css +130 -0
  119. package/examples/react_native/src/main.html +63 -0
  120. package/examples/react_native/src/main.tsx +50 -0
  121. package/ios/CVDDocumentReader.h +7 -0
  122. package/ios/CVDDocumentReader.m +39 -0
  123. package/ios/RGLWConfig.h +42 -0
  124. package/ios/RGLWConfig.m +1398 -0
  125. package/ios/RGLWJSONConstructor.h +185 -0
  126. package/ios/RGLWJSONConstructor.m +2379 -0
  127. package/ios/RGLWMain.h +36 -0
  128. package/ios/RGLWMain.m +610 -0
  129. package/ios/RNDocumentReader.h +8 -0
  130. package/ios/RNDocumentReader.m +49 -0
  131. package/package.json +36 -0
  132. package/plugin.xml +51 -0
  133. package/www/capacitor/config/InitConfig.js +25 -0
  134. package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
  135. package/www/capacitor/config/RFIDConfig.js +31 -0
  136. package/www/capacitor/config/RecognizeConfig.js +103 -0
  137. package/www/capacitor/config/ScannerConfig.js +38 -0
  138. package/www/capacitor/index.js +486 -0
  139. package/www/capacitor/info/DocReaderException.js +57 -0
  140. package/www/capacitor/info/DocReaderScenario.js +71 -0
  141. package/www/capacitor/info/DocReaderVersion.js +23 -0
  142. package/www/capacitor/info/DocumentsDatabase.js +27 -0
  143. package/www/capacitor/info/License.js +22 -0
  144. package/www/capacitor/info/PrepareProgress.js +23 -0
  145. package/www/capacitor/info/RFIDException.js +19 -0
  146. package/www/capacitor/internal/bridge.js +98 -0
  147. package/www/capacitor/internal/cordova.js +17 -0
  148. package/www/capacitor/params/Functionality.js +303 -0
  149. package/www/capacitor/params/customization/Customization.js +550 -0
  150. package/www/capacitor/params/customization/CustomizationColors.js +74 -0
  151. package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
  152. package/www/capacitor/params/customization/CustomizationImages.js +25 -0
  153. package/www/capacitor/params/customization/Font.js +28 -0
  154. package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
  155. package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
  156. package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
  157. package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
  158. package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
  159. package/www/capacitor/params/process_params/ImageQA.js +97 -0
  160. package/www/capacitor/params/process_params/LivenessParams.js +67 -0
  161. package/www/capacitor/params/process_params/ProcessParams.js +570 -0
  162. package/www/capacitor/params/process_params/RfidParams.js +15 -0
  163. package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
  164. package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
  165. package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
  166. package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
  167. package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
  168. package/www/capacitor/results/DocumentType.js +285 -0
  169. package/www/capacitor/results/Position.js +60 -0
  170. package/www/capacitor/results/Results.js +318 -0
  171. package/www/capacitor/results/TransactionInfo.js +16 -0
  172. package/www/capacitor/results/authenticity/Authenticity.js +23 -0
  173. package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
  174. package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
  175. package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
  176. package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
  177. package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
  178. package/www/capacitor/results/barcode/BarcodeField.js +24 -0
  179. package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
  180. package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
  181. package/www/capacitor/results/barcode/BarcodeType.js +21 -0
  182. package/www/capacitor/results/barcode/PDF417Info.js +16 -0
  183. package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
  184. package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
  185. package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
  186. package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
  187. package/www/capacitor/results/rfid/Application.js +47 -0
  188. package/www/capacitor/results/rfid/Attribute.js +16 -0
  189. package/www/capacitor/results/rfid/Authority.js +28 -0
  190. package/www/capacitor/results/rfid/CardProperties.js +38 -0
  191. package/www/capacitor/results/rfid/CertificateChain.js +51 -0
  192. package/www/capacitor/results/rfid/CertificateData.js +14 -0
  193. package/www/capacitor/results/rfid/DataField.js +16 -0
  194. package/www/capacitor/results/rfid/Extension.js +14 -0
  195. package/www/capacitor/results/rfid/File.js +39 -0
  196. package/www/capacitor/results/rfid/FileData.js +18 -0
  197. package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  198. package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
  199. package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
  200. package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
  201. package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
  202. package/www/capacitor/results/rfid/RFIDValue.js +20 -0
  203. package/www/capacitor/results/rfid/SecurityObject.js +31 -0
  204. package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
  205. package/www/capacitor/results/rfid/SignerInfo.js +57 -0
  206. package/www/capacitor/results/status/CheckResult.js +5 -0
  207. package/www/capacitor/results/status/OpticalStatus.js +30 -0
  208. package/www/capacitor/results/status/RFIDStatus.js +26 -0
  209. package/www/capacitor/results/status/ResultsStatus.js +28 -0
  210. package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
  211. package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  212. package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  213. package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
  214. package/www/capacitor/results/visual_results/Comparison.js +19 -0
  215. package/www/capacitor/results/visual_results/FieldType.js +658 -0
  216. package/www/capacitor/results/visual_results/GraphicField.js +33 -0
  217. package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
  218. package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
  219. package/www/capacitor/results/visual_results/LCID.js +174 -0
  220. package/www/capacitor/results/visual_results/Lights.js +11 -0
  221. package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
  222. package/www/capacitor/results/visual_results/Rect.js +18 -0
  223. package/www/capacitor/results/visual_results/Symbol.js +18 -0
  224. package/www/capacitor/results/visual_results/TextField.js +68 -0
  225. package/www/capacitor/results/visual_results/TextResult.js +42 -0
  226. package/www/capacitor/results/visual_results/TextSource.js +19 -0
  227. package/www/capacitor/results/visual_results/Validity.js +17 -0
  228. package/www/capacitor/results/visual_results/Value.js +39 -0
  229. package/www/capacitor/rfid/PAAttribute.js +17 -0
  230. package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
  231. package/www/capacitor/rfid/PKDCertificate.js +54 -0
  232. package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
  233. package/www/capacitor/rfid/RFIDNotification.js +60 -0
  234. package/www/capacitor/rfid/TAChallenge.js +23 -0
  235. package/www/capacitor/rfid/TccParams.js +24 -0
  236. package/www/cordova.js +9816 -0
  237. package/www/react-native/config/InitConfig.js +25 -0
  238. package/www/react-native/config/OnlineProcessingConfig.js +41 -0
  239. package/www/react-native/config/RFIDConfig.js +31 -0
  240. package/www/react-native/config/RecognizeConfig.js +103 -0
  241. package/www/react-native/config/ScannerConfig.js +38 -0
  242. package/www/react-native/index.js +486 -0
  243. package/www/react-native/info/DocReaderException.js +57 -0
  244. package/www/react-native/info/DocReaderScenario.js +71 -0
  245. package/www/react-native/info/DocReaderVersion.js +23 -0
  246. package/www/react-native/info/DocumentsDatabase.js +27 -0
  247. package/www/react-native/info/License.js +22 -0
  248. package/www/react-native/info/PrepareProgress.js +23 -0
  249. package/www/react-native/info/RFIDException.js +19 -0
  250. package/www/react-native/internal/bridge.js +98 -0
  251. package/www/react-native/params/Functionality.js +303 -0
  252. package/www/react-native/params/customization/Customization.js +550 -0
  253. package/www/react-native/params/customization/CustomizationColors.js +74 -0
  254. package/www/react-native/params/customization/CustomizationFonts.js +40 -0
  255. package/www/react-native/params/customization/CustomizationImages.js +25 -0
  256. package/www/react-native/params/customization/Font.js +28 -0
  257. package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
  258. package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
  259. package/www/react-native/params/process_params/FaceApiParams.js +38 -0
  260. package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
  261. package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
  262. package/www/react-native/params/process_params/ImageQA.js +97 -0
  263. package/www/react-native/params/process_params/LivenessParams.js +67 -0
  264. package/www/react-native/params/process_params/ProcessParams.js +570 -0
  265. package/www/react-native/params/process_params/RfidParams.js +15 -0
  266. package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
  267. package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
  268. package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
  269. package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
  270. package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
  271. package/www/react-native/results/DocumentType.js +285 -0
  272. package/www/react-native/results/Position.js +60 -0
  273. package/www/react-native/results/Results.js +318 -0
  274. package/www/react-native/results/TransactionInfo.js +16 -0
  275. package/www/react-native/results/authenticity/Authenticity.js +23 -0
  276. package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
  277. package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
  278. package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
  279. package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
  280. package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
  281. package/www/react-native/results/barcode/BarcodeField.js +24 -0
  282. package/www/react-native/results/barcode/BarcodeResult.js +24 -0
  283. package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
  284. package/www/react-native/results/barcode/BarcodeType.js +21 -0
  285. package/www/react-native/results/barcode/PDF417Info.js +16 -0
  286. package/www/react-native/results/image_quality/ImageQuality.js +31 -0
  287. package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
  288. package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
  289. package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
  290. package/www/react-native/results/rfid/Application.js +47 -0
  291. package/www/react-native/results/rfid/Attribute.js +16 -0
  292. package/www/react-native/results/rfid/Authority.js +28 -0
  293. package/www/react-native/results/rfid/CardProperties.js +38 -0
  294. package/www/react-native/results/rfid/CertificateChain.js +51 -0
  295. package/www/react-native/results/rfid/CertificateData.js +14 -0
  296. package/www/react-native/results/rfid/DataField.js +16 -0
  297. package/www/react-native/results/rfid/Extension.js +14 -0
  298. package/www/react-native/results/rfid/File.js +39 -0
  299. package/www/react-native/results/rfid/FileData.js +18 -0
  300. package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  301. package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
  302. package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
  303. package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
  304. package/www/react-native/results/rfid/RFIDValidity.js +16 -0
  305. package/www/react-native/results/rfid/RFIDValue.js +20 -0
  306. package/www/react-native/results/rfid/SecurityObject.js +31 -0
  307. package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
  308. package/www/react-native/results/rfid/SignerInfo.js +57 -0
  309. package/www/react-native/results/status/CheckResult.js +5 -0
  310. package/www/react-native/results/status/OpticalStatus.js +30 -0
  311. package/www/react-native/results/status/RFIDStatus.js +26 -0
  312. package/www/react-native/results/status/ResultsStatus.js +28 -0
  313. package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
  314. package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  315. package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  316. package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
  317. package/www/react-native/results/visual_results/Comparison.js +19 -0
  318. package/www/react-native/results/visual_results/FieldType.js +658 -0
  319. package/www/react-native/results/visual_results/GraphicField.js +33 -0
  320. package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
  321. package/www/react-native/results/visual_results/GraphicResult.js +22 -0
  322. package/www/react-native/results/visual_results/LCID.js +174 -0
  323. package/www/react-native/results/visual_results/Lights.js +11 -0
  324. package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
  325. package/www/react-native/results/visual_results/Rect.js +18 -0
  326. package/www/react-native/results/visual_results/Symbol.js +18 -0
  327. package/www/react-native/results/visual_results/TextField.js +68 -0
  328. package/www/react-native/results/visual_results/TextResult.js +42 -0
  329. package/www/react-native/results/visual_results/TextSource.js +19 -0
  330. package/www/react-native/results/visual_results/Validity.js +17 -0
  331. package/www/react-native/results/visual_results/Value.js +39 -0
  332. package/www/react-native/rfid/PAAttribute.js +17 -0
  333. package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
  334. package/www/react-native/rfid/PKDCertificate.js +54 -0
  335. package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
  336. package/www/react-native/rfid/RFIDNotification.js +60 -0
  337. package/www/react-native/rfid/TAChallenge.js +23 -0
  338. package/www/react-native/rfid/TccParams.js +24 -0
  339. package/www/types/config/InitConfig.d.ts +63 -0
  340. package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
  341. package/www/types/config/RFIDConfig.d.ts +131 -0
  342. package/www/types/config/RecognizeConfig.d.ts +119 -0
  343. package/www/types/config/ScannerConfig.d.ts +54 -0
  344. package/www/types/index.d.ts +421 -0
  345. package/www/types/info/DocReaderException.d.ts +79 -0
  346. package/www/types/info/DocReaderScenario.d.ts +90 -0
  347. package/www/types/info/DocReaderVersion.d.ts +28 -0
  348. package/www/types/info/DocumentsDatabase.d.ts +42 -0
  349. package/www/types/info/License.d.ts +23 -0
  350. package/www/types/info/PrepareProgress.d.ts +15 -0
  351. package/www/types/info/RFIDException.d.ts +8 -0
  352. package/www/types/params/Functionality.d.ts +316 -0
  353. package/www/types/params/customization/Customization.d.ts +558 -0
  354. package/www/types/params/customization/CustomizationColors.d.ts +16 -0
  355. package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
  356. package/www/types/params/customization/CustomizationImages.d.ts +12 -0
  357. package/www/types/params/customization/Font.d.ts +36 -0
  358. package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
  359. package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
  360. package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
  361. package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
  362. package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
  363. package/www/types/params/process_params/ImageQA.d.ts +79 -0
  364. package/www/types/params/process_params/LivenessParams.d.ts +20 -0
  365. package/www/types/params/process_params/ProcessParams.d.ts +465 -0
  366. package/www/types/params/process_params/RfidParams.d.ts +19 -0
  367. package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
  368. package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
  369. package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
  370. package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
  371. package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
  372. package/www/types/results/DocumentType.d.ts +525 -0
  373. package/www/types/results/Position.d.ts +50 -0
  374. package/www/types/results/Results.d.ts +283 -0
  375. package/www/types/results/TransactionInfo.d.ts +9 -0
  376. package/www/types/results/authenticity/Authenticity.d.ts +67 -0
  377. package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
  378. package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
  379. package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
  380. package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
  381. package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
  382. package/www/types/results/barcode/BarcodeField.d.ts +37 -0
  383. package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
  384. package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
  385. package/www/types/results/barcode/BarcodeType.d.ts +45 -0
  386. package/www/types/results/barcode/PDF417Info.d.ts +15 -0
  387. package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
  388. package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
  389. package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
  390. package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
  391. package/www/types/results/rfid/Application.d.ts +44 -0
  392. package/www/types/results/rfid/Attribute.d.ts +9 -0
  393. package/www/types/results/rfid/Authority.d.ts +11 -0
  394. package/www/types/results/rfid/CardProperties.d.ts +48 -0
  395. package/www/types/results/rfid/CertificateChain.d.ts +28 -0
  396. package/www/types/results/rfid/CertificateData.d.ts +7 -0
  397. package/www/types/results/rfid/DataField.d.ts +9 -0
  398. package/www/types/results/rfid/Extension.d.ts +7 -0
  399. package/www/types/results/rfid/File.d.ts +22 -0
  400. package/www/types/results/rfid/FileData.d.ts +9 -0
  401. package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
  402. package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
  403. package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
  404. package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
  405. package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
  406. package/www/types/results/rfid/RFIDValue.d.ts +10 -0
  407. package/www/types/results/rfid/SecurityObject.d.ts +28 -0
  408. package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
  409. package/www/types/results/rfid/SignerInfo.d.ts +41 -0
  410. package/www/types/results/status/CheckResult.d.ts +8 -0
  411. package/www/types/results/status/OpticalStatus.d.ts +29 -0
  412. package/www/types/results/status/RFIDStatus.d.ts +22 -0
  413. package/www/types/results/status/ResultsStatus.d.ts +24 -0
  414. package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
  415. package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
  416. package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
  417. package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
  418. package/www/types/results/visual_results/Comparison.d.ts +15 -0
  419. package/www/types/results/visual_results/FieldType.d.ts +1310 -0
  420. package/www/types/results/visual_results/GraphicField.d.ts +29 -0
  421. package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
  422. package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
  423. package/www/types/results/visual_results/LCID.d.ts +173 -0
  424. package/www/types/results/visual_results/Lights.d.ts +23 -0
  425. package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
  426. package/www/types/results/visual_results/Rect.d.ts +9 -0
  427. package/www/types/results/visual_results/Symbol.d.ts +14 -0
  428. package/www/types/results/visual_results/TextField.d.ts +40 -0
  429. package/www/types/results/visual_results/TextResult.d.ts +23 -0
  430. package/www/types/results/visual_results/TextSource.d.ts +15 -0
  431. package/www/types/results/visual_results/Validity.d.ts +13 -0
  432. package/www/types/results/visual_results/Value.d.ts +27 -0
  433. package/www/types/rfid/PAAttribute.d.ts +4 -0
  434. package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
  435. package/www/types/rfid/PKDCertificate.d.ts +34 -0
  436. package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
  437. package/www/types/rfid/RFIDNotification.d.ts +153 -0
  438. package/www/types/rfid/TAChallenge.d.ts +7 -0
  439. package/www/types/rfid/TccParams.d.ts +25 -0
@@ -0,0 +1,421 @@
1
+ import { OnlineProcessingConfig, ImageFormat, OnlineMode } from './config/OnlineProcessingConfig';
2
+ import { InitConfig } from './config/InitConfig';
3
+ import { RFIDConfig, RFIDCompletion, RFIDProgressCompletion, ChipDetectedCompletion, RetryReadChipCompletion, PaCertificateCompletion, TaCertificateCompletion, PKDCertificateRequest, TaSignatureCompletion, TASignatureRequest } from './config/RFIDConfig';
4
+ import { ScannerConfig } from './config/ScannerConfig';
5
+ import { RecognizeConfig, ImageInputData } from './config/RecognizeConfig';
6
+ export { OnlineProcessingConfig, ImageFormat, OnlineMode, InitConfig, RFIDConfig, RFIDCompletion, RFIDProgressCompletion, ChipDetectedCompletion, RetryReadChipCompletion, PaCertificateCompletion, TaCertificateCompletion, PKDCertificateRequest, TaSignatureCompletion, TASignatureRequest, ScannerConfig, RecognizeConfig, ImageInputData };
7
+
8
+ import { DocReaderVersion } from './info/DocReaderVersion';
9
+ import { PrepareProgress, DocumentReaderPrepareCompletion } from './info/PrepareProgress';
10
+ import { DocReaderException, ErrorCodes } from './info/DocReaderException';
11
+ import { DocumentsDatabase } from './info/DocumentsDatabase';
12
+ import { License } from './info/License';
13
+ import { DocReaderScenario, Scenario, DocReaderOrientation } from './info/DocReaderScenario';
14
+ import { RFIDException } from './info/RFIDException';
15
+ export { DocReaderVersion, PrepareProgress, DocumentReaderPrepareCompletion, DocReaderException, ErrorCodes, DocumentsDatabase, License, DocReaderScenario, Scenario, DocReaderOrientation, RFIDException };
16
+
17
+ import { LCID } from './results/visual_results/LCID';
18
+ import { GraphicFieldType } from './results/visual_results/GraphicFieldType';
19
+ import { Value } from './results/visual_results/Value';
20
+ import { Rect } from './results/visual_results/Rect';
21
+ import { Symbol } from './results/visual_results/Symbol';
22
+ import { Comparison } from './results/visual_results/Comparison';
23
+ import { TextField } from './results/visual_results/TextField';
24
+ import { Lights } from './results/visual_results/Lights';
25
+ import { Validity } from './results/visual_results/Validity';
26
+ import { FieldType } from './results/visual_results/FieldType';
27
+ import { GraphicField } from './results/visual_results/GraphicField';
28
+ import { RFIDOrigin } from './results/visual_results/RFIDOrigin';
29
+ import { TextResult } from './results/visual_results/TextResult';
30
+ import { TextSource } from './results/visual_results/TextSource';
31
+ import { GraphicResult } from './results/visual_results/GraphicResult';
32
+ export { LCID, GraphicFieldType, Value, Rect, Symbol, Comparison, TextField, Lights, Validity, FieldType, GraphicField, RFIDOrigin, TextResult, TextSource, GraphicResult };
33
+
34
+ import { DocumentType, DocFormat, DocType as DocumentTypeEnum } from './results/DocumentType';
35
+ import { Results, ResultType } from './results/Results';
36
+ import { TransactionInfo } from './results/TransactionInfo';
37
+ import { Position, Coordinate } from './results/Position';
38
+ export { DocumentType, DocFormat, DocumentTypeEnum, Results, ResultType, TransactionInfo, Position, Coordinate };
39
+
40
+ import { RFIDStatus } from './results/status/RFIDStatus';
41
+ import { ResultsStatus } from './results/status/ResultsStatus';
42
+ import { CheckResult } from './results/status/CheckResult';
43
+ import { OpticalStatus } from './results/status/OpticalStatus';
44
+ import { ProcessingFinishedStatus } from './results/Results';
45
+ export { RFIDStatus, ResultsStatus, CheckResult, OpticalStatus, ProcessingFinishedStatus };
46
+
47
+ import { CheckDiagnose } from './results/authenticity/CheckDiagnose';
48
+ import { AuthenticityElement } from './results/authenticity/AuthenticityElement';
49
+ import { AuthenticityResult } from './results/authenticity/AuthenticityResult';
50
+ import { AuthenticityCheck } from './results/authenticity/AuthenticityCheck';
51
+ import { SecurityFeatureType } from './results/authenticity/SecurityFeatureType';
52
+ import { Authenticity } from './results/authenticity/Authenticity';
53
+ export { CheckDiagnose, AuthenticityElement, AuthenticityResult, AuthenticityCheck, SecurityFeatureType, Authenticity };
54
+
55
+ import { PDF417Info } from './results/barcode/PDF417Info';
56
+ import { BarcodeStatus } from './results/barcode/BarcodeStatus';
57
+ import { BarcodeType } from './results/barcode/BarcodeType';
58
+ import { BarcodeResult } from './results/barcode/BarcodeResult';
59
+ import { BarcodeField } from './results/barcode/BarcodeField';
60
+ export { PDF417Info, BarcodeStatus, BarcodeType, BarcodeResult, BarcodeField };
61
+
62
+ import { ImageQuality } from './results/image_quality/ImageQuality';
63
+ import { ImageQualityGroup } from './results/image_quality/ImageQualityGroup';
64
+ import { ImageQualityCheckType } from './results/image_quality/ImageQualityCheckType';
65
+ export { ImageQuality, ImageQualityGroup, ImageQualityCheckType };
66
+
67
+ import { LDSParsingErrorCodes } from './results/visible_digital_seals/LDSParsingErrorCodes';
68
+ import { VDSNCData } from './results/visible_digital_seals/VDSNCData';
69
+ import { BytesData } from './results/visible_digital_seals/BytesData';
70
+ import { LDSParsingNotificationCodes } from './results/visible_digital_seals/LDSParsingNotificationCodes';
71
+ export { LDSParsingErrorCodes, VDSNCData, BytesData, LDSParsingNotificationCodes };
72
+
73
+ import { SecurityObject } from './results/rfid/SecurityObject';
74
+ import { CardProperties } from './results/rfid/CardProperties';
75
+ import { DataField } from './results/rfid/DataField';
76
+ import { Attribute } from './results/rfid/Attribute';
77
+ import { SignerInfo } from './results/rfid/SignerInfo';
78
+ import { SecurityObjectCertificates } from './results/rfid/SecurityObjectCertificates';
79
+ import { CertificateChain } from './results/rfid/CertificateChain';
80
+ import { Authority } from './results/rfid/Authority';
81
+ import { File } from './results/rfid/File';
82
+ import { RFIDValue } from './results/rfid/RFIDValue';
83
+ import { RFIDValidity } from './results/rfid/RFIDValidity';
84
+ import { RFIDDataFileType } from './results/rfid/RFIDDataFileType';
85
+ import { CertificateData } from './results/rfid/CertificateData';
86
+ import { FileData } from './results/rfid/FileData';
87
+ import { RFIDCertificateType } from './results/rfid/RFIDCertificateType';
88
+ import { RFIDSessionData } from './results/rfid/RFIDSessionData';
89
+ import { Application, RFIDApplicationType } from './results/rfid/Application';
90
+ import { RFIDAccessControlProcedureType } from './results/rfid/RFIDAccessControlProcedureType';
91
+ import { Extension } from './results/rfid/Extension';
92
+ import { AccessControlProcedureType } from './results/rfid/AccessControlProcedureType';
93
+ export { SecurityObject, CardProperties, DataField, Attribute, SignerInfo, SecurityObjectCertificates, CertificateChain, Authority, File, RFIDValue, RFIDValidity, RFIDDataFileType, CertificateData, FileData, RFIDCertificateType, RFIDSessionData, Application, RFIDApplicationType, RFIDAccessControlProcedureType, Extension, AccessControlProcedureType };
94
+
95
+ import { LivenessParams } from './params/process_params/LivenessParams';
96
+ import { ProcessParams, MeasureSystem, MRZFormat, LogLevel, MrzDetectionModes } from './params/process_params/ProcessParams';
97
+ import { GlaresCheckParams } from './params/process_params/GlaresCheckParams';
98
+ import { FaceApiParams } from './params/process_params/FaceApiParams';
99
+ import { RFIDParams } from './params/process_params/RfidParams';
100
+ import { ImageQA } from './params/process_params/ImageQA';
101
+ import { AuthenticityParams } from './params/process_params/AuthenticityParams';
102
+ import { BackendProcessingConfig } from './params/process_params/BackendProcessingConfig';
103
+ import { FaceApiSearchParams } from './params/process_params/FaceApiSearchParams';
104
+ export { LivenessParams, ProcessParams, MeasureSystem, MRZFormat, LogLevel, MrzDetectionModes, GlaresCheckParams, FaceApiParams, RFIDParams as RfidParams, ImageQA, AuthenticityParams, BackendProcessingConfig, FaceApiSearchParams };
105
+
106
+ import { Functionality, CameraPosition, CaptureMode, CameraMode, CaptureSessionPreset, DocReaderFrame, CameraSize } from './params/Functionality';
107
+ export { Functionality, CameraPosition, CaptureMode, CameraMode, CaptureSessionPreset, DocReaderFrame, CameraSize };
108
+
109
+ import { CustomizationFonts } from './params/customization/CustomizationFonts';
110
+ import { CustomizationImages } from './params/customization/CustomizationImages';
111
+ import { Font, FontStyle } from './params/customization/Font';
112
+ import { Customization, Cap, FrameShapeType, ViewContentMode, CustomButtonTag } from './params/customization/Customization';
113
+ import { CustomizationColors } from './params/customization/CustomizationColors';
114
+ export { CustomizationFonts, CustomizationImages, Font, FontStyle, Customization, Cap, FrameShapeType, ViewContentMode, CustomButtonTag, CustomizationColors };
115
+
116
+ import { EPassportDataGroups } from './params/rfid_scenario/EPassportDataGroups';
117
+ import { EIDDataGroups } from './params/rfid_scenario/EIDDataGroups';
118
+ import { DTCDataGroup } from './params/rfid_scenario/DTCDataGroups';
119
+ import { RFIDScenario, RFIDAuthenticationProcedureType, RFIDPasswordType, RFIDSDKProfilerType, RFIDTerminalType, SignManagementAction, RFIDReadingBufferSize } from './params/rfid_scenario/RFIDScenario';
120
+ import { EDLDataGroups } from './params/rfid_scenario/EDLDataGroups';
121
+ export { EPassportDataGroups, EIDDataGroups, DTCDataGroup as DTCDataGroups, RFIDScenario, RFIDAuthenticationProcedureType, RFIDPasswordType, RFIDSDKProfilerType, RFIDTerminalType, SignManagementAction, RFIDReadingBufferSize, EDLDataGroups };
122
+
123
+ import { PAResourcesIssuer } from './rfid/PAResourcesIssuer';
124
+ import { RFIDErrorCodes } from './rfid/RFIDErrorCodes';
125
+ import { TccParams } from './rfid/TccParams';
126
+ import { RFIDNotification, RFIDNotificationCodes } from './rfid/RFIDNotification';
127
+ import { PAAttribute } from './rfid/PAAttribute';
128
+ import { TAChallenge } from './rfid/TAChallenge';
129
+ import { PKDCertificate, PKDResourceType } from './rfid/PKDCertificate';
130
+ export { PAResourcesIssuer, RFIDErrorCodes, TccParams, RFIDNotification, RFIDNotificationCodes, PAAttribute, TAChallenge, PKDCertificate, PKDResourceType };
131
+
132
+
133
+ /**
134
+ * Entry point of the Regula Document Reader.
135
+ */
136
+ export class DocumentReader {
137
+ /**
138
+ * The only instance of singleton class {@link DocumentReader}.
139
+ */
140
+ static get instance(): DocumentReader
141
+ private constructor()
142
+
143
+ /**
144
+ * A list of scenarios that can be used for documents recognition based on
145
+ * your license and Core framework capabilities.
146
+ */
147
+ get availableScenarios(): DocReaderScenario[];
148
+
149
+ /** Information about the SDK. */
150
+ get version(): DocReaderVersion | null;
151
+
152
+ /** Information about your license. */
153
+ get license(): License | null;
154
+
155
+ /// Allows you to check if native RFID chip reading can be performed
156
+ /// based on your license and Core framework capabilities.
157
+ ///
158
+ /// Returns `true` if native RFID chip reading is supported.
159
+ isRFIDAvailableForUse(): Promise<boolean>;
160
+
161
+ /**
162
+ * Allows you to check if you can use external Regula Bluetooth devices for RFID
163
+ * based on your license and Core framework capabilities.
164
+ * @returns `true` if external Regula Bluetooth for RFID is supported.
165
+ */
166
+ isAuthenticatorRFIDAvailableForUse(): Promise<boolean>;
167
+
168
+ /**
169
+ * Allows you to check if you can use external Regula Bluetooth devices
170
+ * based on your license, available scenarios and Core framework capabilities.
171
+ * @returns `true` if available.
172
+ */
173
+ isAuthenticatorAvailableForUse(): Promise<boolean>;
174
+
175
+ /**
176
+ * Allows you to get a status of the RFID chip reading process.
177
+ * IOS only.
178
+ */
179
+ rfidSessionStatus: string | null;
180
+
181
+ /** Current Session identifier. */
182
+ tag: string | null;
183
+
184
+ /** Customer name. */
185
+ tenant: string | null;
186
+
187
+ /** Environment type. */
188
+ env: string | null;
189
+
190
+ /**
191
+ * A localization dictionary to override default localization logic.
192
+ * Allows to replace any string of DocumentReader SDK with an arbitrary string.
193
+ *
194
+ * To see all the localization keys, look up the `RegulaSDK.strings` file at
195
+ * `ios/Pods/DocumentReader/DocumentReader.xcframework/ios-arm64/DocumentReader.framework/en.lproj/RegulaSDK.strings`.
196
+ *
197
+ * Unmodifiable property. Use setter instead of editing.
198
+ */
199
+ localizationDictionary: Record<string, string> | null;
200
+
201
+ /** Params that influence the scanning process, camera view controller customization and etc. */
202
+ functionality: Functionality;
203
+
204
+ /** Params that influence the scanning process. */
205
+ processParams: ProcessParams;
206
+
207
+ /** Params that relate to the camera view controller customization and etc. */
208
+ customization: Customization;
209
+
210
+ /** Params that influence the RFID chip processing. */
211
+ rfidScenario: RFIDScenario;
212
+
213
+ /** Allows you to check if Document Reader is ready for use. */
214
+ isReady(): Promise<boolean>;
215
+
216
+ /** Allows you to get a status of Document Reader. */
217
+ status(): Promise<string>;
218
+
219
+ /** Use this method to reset all parameters to their default values. */
220
+ resetConfiguration(): void;
221
+
222
+ /** Set click listener for buttons from the UI customization layer. */
223
+ set onCustomButtonTapped(completion: CustomButtonTappedCompletion);
224
+
225
+ /** Allows user to receive a video file of current session. */
226
+ set videoEncoderCompletion(completion: VideoEncoderCompletion);
227
+
228
+ /** Allows you to initialize Document Reader.
229
+ *
230
+ * @param config - configuration file for DocumentReader initialization.
231
+ *
232
+ * @returns Returns boolean indicating success of initialization
233
+ * and a nullable {@link DocReaderException}.
234
+ */
235
+ initialize(config: InitConfig): Promise<[boolean, DocReaderException | null]>;
236
+
237
+ /** Used to connect to the ble device.
238
+ *
239
+ * Requires [btdevice plugin](https://www.npmjs.com/package/@regulaforensics/react-native-document-reader-btdevice).
240
+ *
241
+ * @param deviceName - name of the device to connect to.
242
+ *
243
+ * @returns Returns boolean indicating success of connection.
244
+ */
245
+ connectBluetoothDevice(deviceName: string): Promise<boolean>;
246
+
247
+ /** Used to deinitialize Document Reader and free up RAM as a consequence of this. */
248
+ deinitializeReader(): Promise<void>;
249
+
250
+ /**
251
+ * Allows you to download a database from the Regula server.
252
+ * If it exists in your app and compatible with the SDK, it won't be downloaded.
253
+ *
254
+ * Requires `android.permission.INTERNET` android permission.
255
+ *
256
+ * @param databaseID - Identifier of the database.
257
+ * @param prepareCompletion - Optional callback for progress updates.
258
+ * @returns Returns boolean indicating success of preparing database
259
+ * and a nullable {@link DocReaderException}.
260
+ */
261
+ prepareDatabase(databaseID: string, prepareCompletion?: DocumentReaderPrepareCompletion): Promise<[boolean, DocReaderException | null]>;
262
+
263
+ /**
264
+ * Allows you to download a database from the Regula server.
265
+ * Each new update of the database will be downloaded.
266
+ *
267
+ * Requires `android.permission.INTERNET` android permission.
268
+ *
269
+ * @param databaseID - Identifier of the database.
270
+ * @param prepareCompletion - Optional callback for progress updates.
271
+ * @returns Returns boolean indicating success of running auto update
272
+ * and a nullable {@link DocReaderException}.
273
+ */
274
+ runAutoUpdate(databaseID: string, prepareCompletion?: DocumentReaderPrepareCompletion): Promise<[boolean, DocReaderException | null]>;
275
+
276
+ /**
277
+ * Allows you to to check database update.
278
+ *
279
+ * Requires `android.permission.INTERNET` android permission.
280
+ *
281
+ * @param databaseID - identifier of the database.
282
+ * @returns Returns {@link DocumentsDatabase} or null.
283
+ */
284
+ checkDatabaseUpdate(databaseID: string): Promise<DocumentsDatabase | null>;
285
+
286
+ /** Cancels any ongoing database update or preparation. */
287
+ cancelDBUpdate(): Promise<void>;
288
+
289
+ /** Removes the current document database. */
290
+ removeDatabase(): Promise<void>;
291
+
292
+ /** Used to start the processing of the next page of the document once the current one is processed. */
293
+ startNewPage(): Promise<void>;
294
+
295
+ /** Used to start a scanning process. */
296
+ startNewSession(): Promise<void>;
297
+
298
+ /**
299
+ * Used for multiple frames processing which are captured from the camera(old UI).
300
+ *
301
+ * @param config - Scanning configuration.
302
+ * @param completion - Block to execute after the recognition process finishes.
303
+ */
304
+ scan(config: ScannerConfig, completion: DocumentReaderCompletion): void;
305
+
306
+ /**
307
+ * Used for multiple frames processing which are captured from the camera(new UI).
308
+ *
309
+ * @param config - Scanning configuration.
310
+ * @param completion - Block to execute after the recognition process finishes.
311
+ */
312
+ startScanner(config: ScannerConfig, completion: DocumentReaderCompletion): void;
313
+
314
+ /**
315
+ * Used for proccessing predefined images.
316
+ *
317
+ * @param config - Configuration for recognition.
318
+ * @param completion - Block to execute after the recognition process finishes.
319
+ */
320
+ recognize(config: RecognizeConfig, completion: DocumentReaderCompletion): void;
321
+
322
+ /**
323
+ * Used for the RFID chip processing.
324
+ *
325
+ * Requires `android.permission.NFC` android permission.
326
+ *
327
+ * @param config - chip reading configuration.
328
+ */
329
+ rfid(config: RFIDConfig): void;
330
+
331
+ /** Stops the document scanner if it's active. */
332
+ stopScanner(): Promise<void>;
333
+
334
+ /** Stops the RFID reader if it's active. */
335
+ stopRFIDReader(): Promise<void>;
336
+
337
+ /** Used to pass certificates to Document Reader that will be used during the
338
+ * RFID chip processing.
339
+ *
340
+ * @param certificates - PKD certificates.
341
+ */
342
+ addPKDCertificates(certificates: [PKDCertificate]): Promise<void>;
343
+
344
+ /** It's used to remove certificates from your app that are used during the
345
+ * RFID chip processing.
346
+ */
347
+ clearPKDCertificates(): Promise<void>;
348
+
349
+ /** Sets the given `TCCParams` to the RFID session.
350
+ * The parameters are required to be set before starting RFID session.
351
+ *
352
+ * @param params - TCC related parameters.
353
+ * @returns Returns boolean indicating success of setting TCC parameters
354
+ * and a nullable {@link DocReaderException}.
355
+ */
356
+ setTCCParams(params: TccParams): Promise<[boolean, DocReaderException | null]>;
357
+
358
+ /** It's used to finalize package during backend processing.
359
+ *
360
+ * @returns Returns action, info and error.
361
+ */
362
+ finalizePackage(): Promise<[action: DocReaderAction, info: TransactionInfo | null, error: DocReaderException | null]>;
363
+
364
+ /** It's used to end transaction during backend processing. */
365
+ endBackendTransaction(): Promise<void>;
366
+ }
367
+
368
+ /**
369
+ * Callback for receiving answer from processing engine.
370
+ *
371
+ * @param action Defines current processing status.
372
+ * @param results Defines current processing results.
373
+ * @param error In case of anything is wrong - brief message for developer, `null` otherwise.
374
+ */
375
+ export type DocumentReaderCompletion = (action: DocReaderAction, results: Results | null, error: DocReaderException | null) => void;
376
+
377
+ /**
378
+ * Callback for receiving signal, when a custom button,
379
+ * configured in {@link Customization.uiCustomizationLayer}, is pressed.
380
+ *
381
+ * @param tag Button id, indication which button was pressed.
382
+ */
383
+ export type CustomButtonTappedCompletion = (tag: number) => void;
384
+
385
+ /**
386
+ * Callback that allows user to receive a video file of current session.
387
+ * Called by DocumentReader when recording process finished.
388
+ *
389
+ * @param filePath The output file URL. Contains URL to recording output for every scanning session.
390
+ */
391
+ export type VideoEncoderCompletion = (filePath: string) => void;
392
+
393
+ /** Contains all possible DocumentReaderNotification callback codes */
394
+ export declare enum DocReaderAction {
395
+ /** Processing finished, the results were received */
396
+ COMPLETE = 0,
397
+ /** Processing didn't finish, intermediate results may be obtained */
398
+ PROCESS = 1,
399
+ /** Processing of a page is completed, the next one can be processed */
400
+ MORE_PAGES_AVAILABLE = 2,
401
+ /** Processing was cancelled, incomplete results may be obtained */
402
+ CANCEL = 3,
403
+ /** An error occurred during processing, incomplete results may be obtained */
404
+ ERROR = 4,
405
+ /** Processing of a hologram is started */
406
+ PROCESS_WHITE_FLASHLIGHT = 5,
407
+ /** Processing is finished by timeout, intermediate results can be received. Processing finishes due to non-compliance with the image quality requirements */
408
+ TIMEOUT = 6,
409
+ /** Online processing is started */
410
+ PROCESSING_ON_SERVICE = 7,
411
+ /** Processing didn't finish, intermediate results may be obtained, UV images may be obtained */
412
+ PROCESS_WHITE_UV_IMAGES = 102,
413
+ /** Processing didn't finish, intermediate results may be obtained, IR images may be obtained */
414
+ PROCESS_IR_FRAME = 103,
415
+ }
416
+
417
+ export declare namespace DocReaderAction {
418
+ function finished(value: DocReaderAction): boolean;
419
+ function interrupted(value: DocReaderAction): boolean;
420
+ function stopped(value: DocReaderAction): boolean;
421
+ }
@@ -0,0 +1,79 @@
1
+ export declare class DocReaderException {
2
+ readonly code: ErrorCodes;
3
+ readonly message: string;
4
+
5
+ private constructor();
6
+ }
7
+
8
+ /**
9
+ * Enum contains all possible error codes
10
+ */
11
+ export declare enum ErrorCodes {
12
+ /** A Core framework is absent. */
13
+ INITIALIZATION_CORE_ABSENT = 0,
14
+ /** The reader is not initialized or an unknown initialization error occured. */
15
+ INITIALIZATION_FAILED = 1,
16
+ /** This scenario is not supported based on your license and Core framework capabilities. */
17
+ INCORRECT_SCENARIO = 2,
18
+ /** There are no results after recognition of camera frames. */
19
+ NO_RESULT = 3,
20
+ /** An error is encountered during database removal. */
21
+ REMOVE_DATABASE = 4,
22
+ /** An error is encountered during database download. */
23
+ FETCHING_DATABASE = 5,
24
+ /** An incorrect database ID. */
25
+ DB_ID_NOT_FOUND = 6,
26
+ /** An incorrect database ID. */
27
+ DB_DESCRIPTION_NOT_FOUND = 7,
28
+ /** An error is encountered during database save on your device. */
29
+ SAVE_DB = 8,
30
+ /** A database is corrupted. */
31
+ DOWNLOAD_DB_INCORRECT_CHECKSUM = 9,
32
+ /** A database is corrupted. */
33
+ DB_DOWNLOAD = 10,
34
+ /** Deprecated. */
35
+ DB_CREATION = 11,
36
+ /** An RFID error. */
37
+ RFID_ERROR = 12,
38
+ /** A license is absent or corrupted. */
39
+ LICENSE_ABSENT_OR_CORRUPTED = 13,
40
+ /** An invalid date, i.e. the license may be expired, or the date and time of set on the device doesn't correspond to reality. */
41
+ LICENSE_INVALID_DATE = 14,
42
+ /** An invalid version. */
43
+ LICENSE_INVALID_VERSION = 15,
44
+ /** An invalid device ID. */
45
+ LICENSE_INVALID_DEVICE_ID = 16,
46
+ /** An invalid OS or application ID. */
47
+ LICENSE_INVALID_SYSTEM_OR_APP_ID = 17,
48
+ /** There are no capabilities for this functionality in your license. */
49
+ LICENSE_NO_CAPABILITIES = 18,
50
+ /** There are no authenticity capabilities in your license. */
51
+ LICENSE_NO_AUTHENTICITY = 19,
52
+ /** An invalid URL of the video during its generating. */
53
+ RECORD_PROCESS_INVALID_OUTPUT_URL = 20,
54
+ /** Something went wrong with online license processing. */
55
+ LICENSE_ONLINE_ERROR = 21,
56
+ /** db.dat is absent. */
57
+ LICENSE_NO_DATABASE = 22,
58
+ /** db.dat is incorrect. */
59
+ LICENSE_DATABASE_INCORRECT = 23,
60
+ /** Failed to set TCC params. */
61
+ INVALID_TCC_PARAMS = 24,
62
+ /** The operation failed due to RFID reading has already started. */
63
+ RFID_IN_PROGRESS = 25,
64
+ START_BACKEND_PROCESSING = 26,
65
+ ADD_DATA_TO_PACKAGE = 27,
66
+ FINALIZE_FAILED = 28,
67
+ CAMERA_NO_PERMISSION = 29,
68
+ CAMERA_NOT_AVAILABLE = 30,
69
+ /** The camera not supported in this scenario. */
70
+ CANNOT_USE_CAMERA_IN_SCENario = 40,
71
+ BACKEND_ONLINE_PROCESSING = 303,
72
+ WRONG_INPUT = 400,
73
+ STATE_EXCEPTION = 500,
74
+ BLE_EXCEPTION = 600,
75
+ FEATURE_BLUETOOTH_LE_NOT_SUPPORTED = 601,
76
+ APP_BACKGROUND = 700,
77
+ ONLINE_PROCESSING_WRONG_INPUT = 800,
78
+ NATIVE_JAVA_EXCEPTION = 1000,
79
+ }
@@ -0,0 +1,90 @@
1
+ export declare class DocReaderScenario {
2
+ /**
3
+ * ID of the scenario.
4
+ */
5
+ readonly name: string;
6
+ /**
7
+ * string representation of scenario ID.
8
+ */
9
+ readonly caption: string;
10
+ /**
11
+ * Description of the scenario.
12
+ */
13
+ readonly description: string;
14
+ /**
15
+ * Available orientation for scenario.
16
+ */
17
+ readonly frameOrientation: DocReaderOrientation;
18
+ readonly uvTorch: boolean;
19
+ readonly faceExt: boolean;
20
+ readonly multiPageOff: boolean;
21
+ readonly seriesProcessMode: boolean;
22
+ readonly frameKWHLandscape: number;
23
+ readonly frameKWHPortrait: number;
24
+ readonly frameKWHDoublePageSpreadLandscape: number;
25
+ readonly frameKWHDoublePageSpreadPortrait: number;
26
+ readonly manualCrop: boolean;
27
+
28
+ private constructor();
29
+ }
30
+
31
+ export declare enum Scenario {
32
+ /** Processing scenario for obtaining MRZ data. */
33
+ MRZ = "Mrz",
34
+ /** Processing scenario for obtaining barcode data. */
35
+ BARCODE = "Barcode",
36
+ /** Processing scenario for detecting document boundaries. */
37
+ LOCATE = "Locate",
38
+ /** Processing scenario for obtaining visual zone OCR results. */
39
+ OCR = "Ocr",
40
+ /** Processing scenario for document type recognition. */
41
+ DOCTYPE = "DocType",
42
+ /** Processing scenario for obtaining MRZ and/or barcode data. */
43
+ MRZ_OR_BARCODE = "MrzOrBarcode",
44
+ /** Processing scenario for detecting document boundaries and/or obtaining MRZ data. */
45
+ MRZ_OR_LOCATE = "MrzOrLocate",
46
+ /** Processing scenario for detecting document boundaries and obtaining MRZ data. */
47
+ MRZ_AND_LOCATE = "MrzAndLocate",
48
+ /** Processing scenario for detecting document boundaries and obtaining barcode data. */
49
+ BARCODE_AND_LOCATE = "BarcodeAndLocate",
50
+ /** Processing scenario for obtaining MRZ data or visual zone OCR results. */
51
+ MRZ_OR_OCR = "MrzOrOcr",
52
+ /** Processing scenario for obtaining MRZ or barcode or visual zone OCR results. */
53
+ MRZ_OR_BARCODE_OR_OCR = "MrzOrBarcodeOrOcr",
54
+ /** Processing scenario for detecting document boundaries and obtaining MRZ data or visual zone OCR results. */
55
+ LOCATE_VISUAL_AND_MRZ_OR_OCR = "LocateVisual_And_MrzOrOcr",
56
+ /** Processing scenario for obtaining all document data. */
57
+ FULL_PROCESS = "FullProcess",
58
+ /** Processing scenario for obtaining all document data and document authentication. */
59
+ FULL_AUTH = "FullAuth",
60
+ /** Processing scenario for obtaining visual zone OCR results from Russian National Passport and MRZ data from any document. */
61
+ ID3RUS = "Id3Rus",
62
+ /** Processing scenario for obtaining data from registration stamps in Russian passports. */
63
+ RUS_STAMP = "RusStamp",
64
+ /** Processing scenario for obtaining OCR results of any image. */
65
+ OCR_FREE = "OcrFree",
66
+ /** Processing scenario for obtaining bank card data. */
67
+ CREDIT_CARD = "CreditCard",
68
+ /** Scenario for obtaining an original image without any processing. */
69
+ CAPTURE = "Capture",
70
+ /** Scenario for Digital Travel Credentials (DTC) processing. */
71
+ DTC = "DTC",
72
+ /** Processing scenario for RFID reading. */
73
+ RFID = "RFID"
74
+ }
75
+
76
+ /**
77
+ * Contains set of values of the application's orientation.
78
+ */
79
+ export declare enum DocReaderOrientation {
80
+ /** All interface orientations - orientation not set, activities will rotate. */
81
+ ALL = 0,
82
+ /** A portrait interface orientation. */
83
+ PORTRAIT = 1,
84
+ /** Both landscape-left and landscape-right interface orientation. */
85
+ LANDSCAPE = 2,
86
+ /** A landscape-left interface orientation. */
87
+ LANDSCAPE_LEFT = 3,
88
+ /** A landscape-right interface orientation. */
89
+ LANDSCAPE_RIGHT = 4
90
+ }
@@ -0,0 +1,28 @@
1
+ import { DocumentsDatabase } from "./DocumentsDatabase";
2
+
3
+ /**
4
+ * Class contains properties to get the information about the SDK.
5
+ */
6
+ export declare class DocReaderVersion {
7
+ /**
8
+ * A version of the API framework.
9
+ */
10
+ readonly api?: string;
11
+
12
+ /**
13
+ * A version of the Core framework.
14
+ */
15
+ readonly core?: string;
16
+
17
+ /**
18
+ * A type of the Core framework.
19
+ */
20
+ readonly coreMode?: string;
21
+
22
+ /**
23
+ * A version of the database.
24
+ */
25
+ readonly database?: DocumentsDatabase;
26
+
27
+ private constructor();
28
+ }
@@ -0,0 +1,42 @@
1
+ /**
2
+ * Class contains properties to get the information about the database.
3
+ */
4
+ export declare class DocumentsDatabase {
5
+ /**
6
+ * An ID of the database, e.g. BLR, RUS.
7
+ */
8
+ readonly databaseID?: string;
9
+
10
+ /**
11
+ * A version of the database.
12
+ */
13
+ readonly version?: string;
14
+
15
+ /**
16
+ * A date when the database was created.
17
+ */
18
+ readonly date?: string;
19
+
20
+ /**
21
+ * A list of supported documents in the database.
22
+ */
23
+ readonly databaseDescription?: string;
24
+
25
+ /**
26
+ * A number of countries included in the database.
27
+ */
28
+ readonly countriesNumber: number;
29
+
30
+ /**
31
+ * A number of documents included in the database.
32
+ */
33
+ readonly documentsNumber: number;
34
+
35
+ /**
36
+ * Database size. In bytes.
37
+ * Available for database update check.
38
+ */
39
+ readonly size?: number;
40
+
41
+ private constructor();
42
+ }