@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,283 @@
1
+ import { AuthenticityResult } from "./authenticity/AuthenticityResult";
2
+ import { BarcodeResult } from "./barcode/BarcodeResult";
3
+ import { ImageQualityGroup } from "./image_quality/ImageQualityGroup";
4
+ import { RFIDSessionData } from "./rfid/RFIDSessionData";
5
+ import { ResultsStatus } from "./status/ResultsStatus";
6
+ import { FieldType } from "./visual_results/FieldType";
7
+ import { GraphicFieldType } from "./visual_results/GraphicFieldType";
8
+ import { LCID } from "./visual_results/LCID";
9
+ import { Lights } from "./visual_results/Lights";
10
+ import { GraphicField } from "./visual_results/GraphicField";
11
+ import { GraphicResult } from "./visual_results/GraphicResult";
12
+ import { TextResult } from "./visual_results/TextResult";
13
+ import { TextField } from "./visual_results/TextField";
14
+ import { VDSNCData } from "./visible_digital_seals/VDSNCData";
15
+ import { Position } from "./Position";
16
+ import { DocumentType } from "./DocumentType";
17
+ import { TransactionInfo } from "./TransactionInfo";
18
+
19
+ /** Class describing results returned on completion of Document Reader work. */
20
+ export declare class Results {
21
+ /** Document type results. */
22
+ readonly documentType: DocumentType[] | null;
23
+ /** Textual results. */
24
+ readonly textResult: TextResult | null;
25
+ /** Graphic results. */
26
+ readonly graphicResult: GraphicResult | null;
27
+ /** Position of a document. */
28
+ readonly documentPosition: Position[] | null;
29
+ /** Position of a barcode. */
30
+ readonly barcodePosition: Position[] | null;
31
+ /** Position of MRZ. */
32
+ readonly mrzPosition: Position[] | null;
33
+ /** Image quality results. */
34
+ readonly imageQuality: ImageQualityGroup[] | null;
35
+ /** Status information for each operation. */
36
+ readonly status: ResultsStatus;
37
+ /** Authenticity results. */
38
+ readonly authenticityResult: AuthenticityResult | null;
39
+ /** RFID session data. */
40
+ readonly rfidSessionData: RFIDSessionData | null;
41
+ /**
42
+ * Indicates which page of the document contains an RFID chip (0 if there's
43
+ * no page containing it). Requires document type recognition, otherwise 1 by default.
44
+ */
45
+ readonly chipPage: number;
46
+ /** Barcode results. */
47
+ readonly barcodeResult: BarcodeResult | null;
48
+ /** Visible Digital Seal data. */
49
+ readonly vdsncData: VDSNCData | null;
50
+ /** DTCVC data. */
51
+ readonly dtcData: string | null;
52
+ /** Document processing finish status, one of RGLProcessingFinishedStatus values. */
53
+ readonly processingFinishedStatus: ProcessingFinishedStatus;
54
+ /**
55
+ * Indicates how many pages of a document remains to process.
56
+ * Requires Document Type recognition, otherwise 0 by default.
57
+ */
58
+ readonly morePagesAvailable: number;
59
+ /** Indicates how much time has been required for document processing, milliseconds. */
60
+ readonly elapsedTime: number;
61
+ /** Indicates how much time has been required for RFID chip processing, milliseconds. */
62
+ readonly elapsedTimeRFID: number;
63
+ /** Raw results, i.e. in their initial view. */
64
+ readonly rawResult: string;
65
+ readonly transactionInfo: TransactionInfo | null;
66
+
67
+ /** Allows you to get a value of a text field. */
68
+ textFieldValueByType(fieldType: FieldType): Promise<string | null>;
69
+ /** Allows you to get a value of a text field based on LCID. */
70
+ textFieldValueByTypeLcid(fieldType: FieldType, lcid: LCID): Promise<string | null>;
71
+ /** Allows you to get a value of a text field based on a source type. */
72
+ textFieldValueByTypeSource(fieldType: FieldType, source: ResultType): Promise<string | null>;
73
+ /** Allows you to get a value of a text field based on LCID and a source type. */
74
+ textFieldValueByTypeLcidSource(fieldType: FieldType, lcid: LCID, source: ResultType): Promise<string | null>;
75
+ /**
76
+ * Allows you to get a value of a text field based on a source type and
77
+ * its originality.
78
+ */
79
+ textFieldValueByTypeSourceOriginal(fieldType: FieldType, source: ResultType, original: boolean): Promise<string | null>;
80
+ /**
81
+ * Allows you to get a value of a text field based on LCID, a source type
82
+ * and its originality.
83
+ */
84
+ textFieldValueByTypeLcidSourceOriginal(fieldType: FieldType, lcid: LCID, source: ResultType, original: boolean): Promise<string | null>;
85
+ /** Allows you to get an instance of a text field. */
86
+ textFieldByType(fieldType: FieldType): Promise<TextField | null>;
87
+ /** Allows you to get an instance of a text field based on LCID. */
88
+ textFieldByTypeLcid(fieldType: FieldType, lcid: LCID): Promise<TextField | null>;
89
+ /**
90
+ * Allows you to get an image of a graphic field based on a source type
91
+ * and page index.
92
+ */
93
+ graphicFieldByTypeSource(fieldType: GraphicFieldType, source: ResultType): Promise<GraphicField | null>;
94
+ /**
95
+ * Allows you to get an image of a graphic field based on a source type
96
+ * and page index.
97
+ */
98
+ graphicFieldByTypeSourcePageIndex(fieldType: GraphicFieldType, source: ResultType, pageIndex: number): Promise<GraphicField | null>;
99
+ /**
100
+ * Allows you to get an image of a graphic field based on a source type,
101
+ * page index and light type.
102
+ */
103
+ graphicFieldByTypeSourcePageIndexLight(fieldType: GraphicFieldType, source: ResultType, pageIndex: number, light: Lights): Promise<GraphicField | null>;
104
+ /** Allows you to get an image of a graphic field. */
105
+ graphicFieldImageByType(fieldType: GraphicFieldType): Promise<string | null>;
106
+ /** Allows you to get an image of a graphic field based on a source type. */
107
+ graphicFieldImageByTypeSource(fieldType: GraphicFieldType, source: ResultType): Promise<string | null>;
108
+ /**
109
+ * Allows you to get an image of a graphic field based on a source type
110
+ * and page index.
111
+ */
112
+ graphicFieldImageByTypeSourcePageIndex(fieldType: GraphicFieldType, source: ResultType, pageIndex: number): Promise<string | null>;
113
+ /**
114
+ * Allows you to get an image of a graphic field based on a source type,
115
+ * page index and light type.
116
+ */
117
+ graphicFieldImageByTypeSourcePageIndexLight(fieldType: GraphicFieldType, source: ResultType, pageIndex: number, light: Lights): Promise<string | null>;
118
+ /**
119
+ * Method returns containers by result type. If result type doesn't exist,
120
+ * the result of the search will be null.
121
+ *
122
+ * Returns original containers from rawResult including information about the transaction.
123
+ */
124
+ containers(resultType: ResultType[]): Promise<string | null>;
125
+ /**
126
+ * Method returns only containers for {@link ResultType.INTERNAL_RFID_SESSION},
127
+ * {@link ResultType.INTERNAL_ENCRYPTED_RCL} and {@link ResultType.INTERNAL_LICENSE} values.
128
+ *
129
+ * For more details, see {@link containers} method.
130
+ * Returns all encrypted containers from rawResult to reprocess data on the server side.
131
+ */
132
+ encryptedContainers(): Promise<string | null>;
133
+ /** Allows you to deserialize object. */
134
+ static fromJson(jsonObject: any): Results | null;
135
+ }
136
+
137
+ /** Enumeration contains identifiers that determine the processing finish status. */
138
+ export declare enum ProcessingFinishedStatus {
139
+ /** Processing is not finished. */
140
+ NOT_READY = 0,
141
+ /** Processing is finished. */
142
+ READY = 1,
143
+ /** Processing is finished by timeout. */
144
+ TIMEOUT = 2
145
+ }
146
+
147
+ /**
148
+ * Enumeration contains a pool of constants that determine the type of resulting
149
+ * data formed during the data scanning and processing cycle and passed
150
+ * to the user application.
151
+ */
152
+ export declare enum ResultType {
153
+ /** No result. */
154
+ NONE = -1,
155
+ /** Stores a graphic image. */
156
+ EMPTY = 0,
157
+ /** Represented as binary array which contains image of the image graphic file. */
158
+ RAW_IMAGE = 1,
159
+ /** Serves for storing text results of MRZ, document filling and bar-codes reading. */
160
+ FILE_IMAGE = 2,
161
+ /**
162
+ * Serves for storing and passing to the user application of results of bar-codes
163
+ * areas search on the scanned document page and their.
164
+ */
165
+ MRZ_OCR_EXTENDED = 3,
166
+ /**
167
+ * Serves for storing and passing to the user application of results of bar-codes
168
+ * areas search on the scanned document page and their reading in binary non-formatted code.
169
+ */
170
+ BARCODES = 5,
171
+ /** Serves for storing graphic results of document filling area and bar-codes reading. */
172
+ GRAPHICS = 6,
173
+ /** Serves for storing the information on document MRZ printing quality check results. */
174
+ MRZ_TEST_QUALITY = 7,
175
+ /**
176
+ * Serves for storing information on candidate documents and passing it to the user
177
+ * application when performing the recognition of the document type.
178
+ */
179
+ DOCUMENT_TYPES_CANDIDATES = 8,
180
+ /** Contains information on one candidate document when determining the document type. */
181
+ CHOSEN_DOCUMENT_TYPE_CANDIDATE = 9,
182
+ /**
183
+ * Not used. Serves for storing the full list of documents stored in the current
184
+ * document database and passing it to the user application.
185
+ */
186
+ DOCUMENTS_INFO_LIST = 10,
187
+ /**
188
+ * Serves for storing the results of comparing the MRZ text data, document filling
189
+ * area data, bar-codes data and data retrieved from RFID-chip memory and passing
190
+ * it to the user application.
191
+ */
192
+ OCR_LEXICAL_ANALYZE = 15,
193
+ /** Result stores a graphic image without compression. */
194
+ RAW_UNCROPPED_IMAGE = 16,
195
+ /** Result serves for storing text results of MRZ, document filling and bar-codes reading. */
196
+ VISUAL_OCR_EXTENDED = 17,
197
+ /** Result serves for storing text results of MRZ, document filling and bar-codes reading. */
198
+ BAR_CODES_TEXT_DATA = 18,
199
+ /** Serves for storing graphic results of document filling area and bar-codes reading. */
200
+ BAR_CODES_IMAGE_DATA = 19,
201
+ /**
202
+ * Serves for storing the result of document authenticity check using
203
+ * the images for different lighting schemes and passing it to the user
204
+ * application.
205
+ */
206
+ AUTHENTICITY = 20,
207
+ /** Not used */
208
+ EXPERT_ANALYZE = 21,
209
+ /** Not used */
210
+ OCR_LEXICAL_ANALYZE_EX = 22,
211
+ /** Stores a graphic image in without compression and passing it to the user application. */
212
+ EOS_IMAGE = 23,
213
+ /**Stores a graphic image in without compression and passing it to the user application. */
214
+ BAYER_IMAGE = 24,
215
+ /**Represented as binary array which contains array if data erade from magnetic stripe. */
216
+ MAGNETIC_STRIPE = 25,
217
+ /**Serves for storing text results of MRZ, document filling and bar-codes reading. */
218
+ MAGNETIC_STRIPE_TEXT_DATA = 26,
219
+ /**Represented as binary array which contains image of the graphic field image graphic file. */
220
+ FIELD_FILE_IMAGE = 27,
221
+ /**Serves for storing the result of documents database check. */
222
+ DATABASE_CHECK = 28,
223
+ /**Represented as binary array which contains ISO fingerprint template. */
224
+ FINGERPRINT_TEMPLATE_ISO = 29,
225
+ /**Used for storing input image quality check results list. */
226
+ INPUT_IMAGE_QUALITY = 30,
227
+ /**
228
+ * Serves for storing the result of document authenticity check using live
229
+ * portrait image.
230
+ */
231
+ LIVE_PORTRAIT = 32,
232
+ /** Stores information about operations status. */
233
+ STATUS = 33,
234
+ /** Serves for storing the result of document authenticity check using portrait images. */
235
+ PORTRAIT_COMPARISON = 34,
236
+ /** Serves for storing the result of document authenticity check using external portait. */
237
+ EXT_PORTRAIT = 35,
238
+ /** Used for storing text results list. */
239
+ TEXT = 36,
240
+ /** Used for storing images results list. */
241
+ IMAGES = 37,
242
+ /** Serves to store RFID session as binary data. */
243
+ INTERNAL_RFID_SESSION = 48,
244
+ /** Serves to store the encrypted data object. */
245
+ INTERNAL_ENCRYPTED_RCL = 49,
246
+ /** Serves to store the encrypted license key. */
247
+ INTERNAL_LICENSE = 50,
248
+ /** Used for storing MRZ position. */
249
+ MRZ_POSITION = 61,
250
+ /** Used for storing barcode position. */
251
+ BARCODE_POSITION = 62,
252
+ /** Used for storing document position. */
253
+ DOCUMENT_POSITION = 85,
254
+ /** Not used */
255
+ CUSTOM = 100,
256
+ /**
257
+ * Servers for storing the data reading results from the RFID-chip in a form
258
+ * of a list of the logically separated data groups.
259
+ */
260
+ RFID_RAW_DATA = 101,
261
+ /**
262
+ * Servers for storing the results of data reading from the RFID-chip in a form
263
+ * of a list of logically separated text data (text fields).
264
+ */
265
+ RFID_TEXT_DATA = 102,
266
+ /**
267
+ * Servers for storing the results of data reading from the RFID- chip in a form
268
+ * of a list of logically separated graphic data (images, graphic fields).
269
+ */
270
+ RFID_IMAGE_DATA = 103,
271
+ /**
272
+ * Servers for storing the data reading results from the RFID-chip in a form
273
+ * of a list of the logically separated data groups.
274
+ */
275
+ RFID_BINARY_DATA = 104,
276
+ /**
277
+ * Servers for storing the data reading results in a form of a list of objects
278
+ * of the original binary representation of the graphics in memory of the RFID-chip.
279
+ */
280
+ RFID_ORIGINAL_GRAPHICS = 105,
281
+ /** Digital Travel Credential data. */
282
+ RFID_DTC_VC = 109
283
+ }
@@ -0,0 +1,9 @@
1
+ export declare class TransactionInfo {
2
+ readonly transactionId?: string;
3
+ readonly tag?: string;
4
+ /** The path to the logs folder of the session. */
5
+ readonly sessionLogFolder?: string;
6
+
7
+ /** Allows you to deserialize object. */
8
+ static fromJson(jsonObject: any): TransactionInfo | null;
9
+ }
@@ -0,0 +1,67 @@
1
+ /**
2
+ * Enumeration contains identifiers that determine the possibility
3
+ * of performing different authenticity control procedures
4
+ * using images for definite lighting schemes.
5
+ */
6
+ export declare enum Authenticity {
7
+ /** No authenticity control procedure provided for this document. */
8
+ NONE = 0,
9
+ /**
10
+ * Document material UV fluorescence control (check for presence of UV
11
+ * dull paper) is provided for this document.
12
+ */
13
+ UV_LUMINESCENCE = 1,
14
+ /**
15
+ * Control of MRZ contrast using the image for IR lighting scheme
16
+ * is provided for this document.
17
+ */
18
+ IR_B900 = 2,
19
+ /**
20
+ * Control of the presence of an image pattern with a specified color,
21
+ * shape and brightness on a document page under white, UV and IR light.
22
+ */
23
+ IMAGE_PATTERN = 4,
24
+ /** UV fluorescence of protection fibers control is provided for this document. */
25
+ AXIAL_PROTECTION = 8,
26
+ /**
27
+ * Blank elements visibility control using the images for IR lighting scheme
28
+ * is provided for this document.
29
+ */
30
+ UV_FIBERS = 16,
31
+ /**
32
+ * Authenticity control using the images for white coaxial light scheme
33
+ * is provided for this document.
34
+ */
35
+ IR_VISIBILITY = 32,
36
+ /** Make OCR for the text field in UV and compare it with other text sources. */
37
+ OCR_SECURITY_TEXT = 64,
38
+ /** Find invisible personal information images. */
39
+ IPI = 128,
40
+ /** Check photo is printed or sticked. */
41
+ PHOTO_EMBED_TYPE = 512,
42
+ /** OVI check. */
43
+ OVI = 1024,
44
+ /** Reserved for internal use. */
45
+ HOLOGRAMS = 4096,
46
+ /** Reserved for internal use. */
47
+ PHOTO_AREA = 8192,
48
+ /** Portrait comparison. */
49
+ PORTRAIT_COMPARISON = 32768,
50
+ /** Barcode format check. */
51
+ BARCODE_FORMAT_CHECK = 65536,
52
+ /** Kinegram. */
53
+ KINEGRAM = 131072,
54
+ /** Reserved for internal use. */
55
+ HOLOGRAMS_DETECTION = 524288,
56
+ /** Liveness. */
57
+ LIVENESS = 2097152,
58
+ /** Extended OCR check. */
59
+ OCR = 4194304,
60
+ /**
61
+ * Checks the correctness of the size of the MRZ lines, their relative position,
62
+ * absence of signs that the image was edited.
63
+ */
64
+ MRZ = 8388608,
65
+ /** Status only. */
66
+ STATUS_ONLY = 2147483648,
67
+ }
@@ -0,0 +1,23 @@
1
+ import { Authenticity } from "./Authenticity";
2
+ import { AuthenticityElement } from "./AuthenticityElement";
3
+ import { CheckResult } from "../status/CheckResult";
4
+
5
+ export declare class AuthenticityCheck {
6
+ /**
7
+ * Indicates verification type result.
8
+ */
9
+ readonly type: Authenticity;
10
+ /**
11
+ * Indicates verification result.
12
+ */
13
+ readonly status: CheckResult;
14
+ readonly pageIndex: number;
15
+ readonly elements: AuthenticityElement[];
16
+ readonly typeName: string;
17
+
18
+ /**
19
+ * Allows you to deserialize object.
20
+ * @param jsonObject
21
+ */
22
+ static fromJson(jsonObject: any): AuthenticityCheck | null;
23
+ }
@@ -0,0 +1,26 @@
1
+ import { SecurityFeatureType } from "./SecurityFeatureType";
2
+ import { CheckDiagnose } from "./CheckDiagnose";
3
+ import { CheckResult } from "../status/CheckResult";
4
+
5
+ export declare class AuthenticityElement {
6
+ /**
7
+ * Indicates verification result of the field.
8
+ */
9
+ readonly status: CheckResult;
10
+ /**
11
+ * Indicates element type.
12
+ */
13
+ readonly elementType: SecurityFeatureType;
14
+ /**
15
+ * Indicates element diagnose.
16
+ */
17
+ readonly elementDiagnose: CheckDiagnose;
18
+ readonly elementTypeName: string;
19
+ readonly elementDiagnoseName: string;
20
+
21
+ /**
22
+ * Allows you to deserialize object.
23
+ * @param jsonObject
24
+ */
25
+ static fromJson(jsonObject: any): AuthenticityElement | null;
26
+ }
@@ -0,0 +1,16 @@
1
+ import { AuthenticityCheck } from "./AuthenticityCheck";
2
+ import { CheckResult } from "../status/CheckResult";
3
+
4
+ export declare class AuthenticityResult {
5
+ /**
6
+ * @deprecated since 7.6, use `ResultsStatus.optical` instead
7
+ */
8
+ readonly status: CheckResult;
9
+ readonly checks: AuthenticityCheck[];
10
+
11
+ /**
12
+ * Allows you to deserialize object.
13
+ * @param jsonObject
14
+ */
15
+ static fromJson(jsonObject: any): AuthenticityResult | null;
16
+ }
@@ -0,0 +1,229 @@
1
+ /**
2
+ * Enumeration contains identificators that determine the result of the
3
+ * text field comparison from different sources.
4
+ */
5
+ export declare enum CheckDiagnose {
6
+ /** Check was not performed. */
7
+ UNKNOWN = 0,
8
+ /** Check was ok. */
9
+ PASS = 1,
10
+ /** Invalid input data. */
11
+ INVALID_INPUT_DATA = 2,
12
+ /** Internal error in module. */
13
+ INTERNAL_ERROR = 3,
14
+ /** Exception caught */
15
+ EXCEPTION_IN_MODULE = 4,
16
+ /** Can't make reliable decision. */
17
+ UNCERTAIN_VERIFICATION = 5,
18
+ /** Image in necessary light is not found. */
19
+ NECESSARY_IMAGE_NOT_FOUND = 7,
20
+ /** Necessary side of photo not found. */
21
+ PHOTO_SIDES_NOT_FOUND = 8,
22
+ /** Invalid checksum. */
23
+ INVALID_CHECKSUM = 10,
24
+ /** Syntactical error. */
25
+ SYNTAX_ERROR = 11,
26
+ /** Logical error. */
27
+ LOGIC_ERROR = 12,
28
+ /** Comparison was incorrect. */
29
+ SOURCES_COMPARISON_ERROR = 13,
30
+ /** Logical error, e.g. the current date is less than issue date. */
31
+ FIELDS_COMPARISON_LOGIC_ERROR = 14,
32
+ /** Wrong field format. */
33
+ INVALID_FIELD_FORMAT = 15,
34
+ /** Element of the luminescense in the UV does not meet the standard. */
35
+ TRUE_LUMINISCENCE_ERROR = 20,
36
+ /** The presence of excess luminescence in UV. */
37
+ FALSE_LUMINISCENCE_ERROR = 21,
38
+ /** Pattern does not match the standard. */
39
+ FIXED_PATTERN_ERROR = 22,
40
+ /** Low contrast of object in transmitted IR light. */
41
+ LOW_CONTRAST_IN_IR_LIGHT = 23,
42
+ /** Background of page is too light or has invalid color. */
43
+ INCORRECT_BACKGROUND_LIGHT = 24,
44
+ /** Background lightness of two pages is different. */
45
+ BACKGROUND_COMPARISON_ERROR = 25,
46
+ /** Text has incorrect color of luminescence in UV light. */
47
+ INCORRECT_TEXT_COLOR = 26,
48
+ /** Invalid luminescence in photo area. */
49
+ PHOTO_FALSE_LUMINISCENCE = 27,
50
+ /** Object is too shifted from standard coordinates. */
51
+ TOO_MUCH_SHIFT = 28,
52
+ /** Contact chip type mismatch. */
53
+ CONTACT_CHIP_TYPE_MISMATCH = 29,
54
+ /** No protective fibers were found in UV. */
55
+ FIBERS_NOT_FOUND = 30,
56
+ /** Error finding fibers, too many objects. */
57
+ TOO_MANY_OBJECTS = 31,
58
+ /** Speck or exposure in UV image. */
59
+ SPECKS_IN_UV = 33,
60
+ /** Resolution too low for fibers search. */
61
+ TOO_LOW_RESOLUTION = 34,
62
+ /** Erroneous visibility of the element in IR. */
63
+ INVISIBLE_ELEMENT_PRESENT = 40,
64
+ /** Element is absent in IR. */
65
+ VISIBLE_ELEMENT_ABSENT = 41,
66
+ /** Element should be in color. */
67
+ ELEMENT_SHOULD_BE_COLORED = 42,
68
+ /** Element should be in grayscale. */
69
+ ELEMENT_SHOULD_BE_GRAYSCALE = 43,
70
+ PHOTO_WHITE_IR_DONT_MATCH = 44,
71
+ /** Glow paper in MRZ. */
72
+ UV_DULL_PAPER_MRZ = 50,
73
+ /** Luminescence characters in MRZ. */
74
+ FALSE_LUMINISCENCE_IN_MRZ = 51,
75
+ /** Glow in the field of photo paper. */
76
+ UV_DULL_PAPER_PHOTO = 52,
77
+ /** Glow of the whole paper form. */
78
+ UV_DULL_PAPER_BLANK = 53,
79
+ /** Glow of the document in UV. */
80
+ UV_DULL_PAPER_ERROR = 54,
81
+ /** Element of blank has luminescence. */
82
+ FALSE_LUMINISCENCE_IN_BLANK = 55,
83
+ /** Violation of the retro-reflective protection. */
84
+ BAD_AREA_IN_AXIAL = 60,
85
+ /** Invalid params for IPI check. */
86
+ FALSE_IPI_PARAMETERS = 65,
87
+ /** IR image too bright. */
88
+ FIELD_POS_CORRECTOR_HIGHLIGHT_IR = 80,
89
+ /** Glares in photo area. */
90
+ FIELD_POS_CORRECTOR_GLARES_IN_PHOTO_AREA = 81,
91
+ /** Photo replaced. */
92
+ FIELD_POS_CORRECTOR_PHOTO_REPLACED = 82,
93
+ /** Facial landmarks (eyes) check error. */
94
+ FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR = 83,
95
+ /** No facial image found. */
96
+ FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR = 84,
97
+ /** Facial image is found. */
98
+ FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR = 85,
99
+ CHD_FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86,
100
+ /** OVI object is not visible in IR. */
101
+ OVI_IR_INVISIBLE = 90,
102
+ /** Insufficient area of the object OVI. */
103
+ OVI_INSUFFICIENT_AREA = 91,
104
+ /** OVI color of an object does not change. */
105
+ OVI_COLOR_INVARIABLE = 92,
106
+ /** Impossible to determine the color of the AXIAL image. */
107
+ OVI_BAD_COLOR_FRONT = 93,
108
+ /** Impossible to determine the color of the WHITE image. */
109
+ OVI_BAD_COLOR_SIDE = 94,
110
+ /** Wide color spread. */
111
+ OVI_WIDE_COLOR_SPREAD = 95,
112
+ /** Not enough color information. */
113
+ OVI_BAD_COLOR_PERCENT = 96,
114
+ /** Hologram element absent. */
115
+ HOLOGRAM_ELEMENT_ABSENT = 100,
116
+ /** There are no side or top images. Check cancelled. */
117
+ HOLOGRAM_SIDE_TOP_IMAGES_ABSENT = 101,
118
+ /** Hologram element present. */
119
+ HOLOGRAM_ELEMENT_PRESENT = 102,
120
+ HOLOGRAM_FRAMES_IS_ABSENT = 103,
121
+ HOLOGRAM_HOLO_FIELD_IS_ABSENT = 104,
122
+ /** Pattern is interrupted. */
123
+ PHOTO_PATTERN_INTERRUPTED = 110,
124
+ /** Some of the patterns are shifted relative to each other. */
125
+ PHOTO_PATTERN_SHIFTED = 111,
126
+ /** Some parts of the pattern have different color. */
127
+ PHOTO_PATTERN_DIFFERENT_COLORS = 112,
128
+ /** Pattern visible in the infrared. */
129
+ PHOTO_PATTERN_IR_VISIBLE = 113,
130
+ /** Edge of the photo does not intersect with the pattern. Check cancelled. */
131
+ PHOTO_PATTERN_NOT_INTERSECT = 114,
132
+ /** Size of the photo does not correspond to requirements. */
133
+ PHOTO_SIZE_IS_WRONG = 115,
134
+ /** Some parts of the pattern have invalid color. */
135
+ PHOTO_PATTERN_INVALID_COLOR = 116,
136
+ /** Some patterns are relatively shifted. */
137
+ PHOTO_PATTERN_SHIFTED_VERT = 117,
138
+ /** Not found Pattern. Check cancelled. */
139
+ PHOTO_PATTERN_PATTERN_NOT_FOUND = 118,
140
+ /** Different lines thickness. */
141
+ PHOTO_PATTERN_DIFFERENT_LINES_THICKNESS = 119,
142
+ /** Photo shape is not rectangular. */
143
+ PHOTO_IS_NOT_RECTANGLE = 120,
144
+ /** Photo corners don't meet the requirements. */
145
+ PHOTO_CORNERS_IS_WRONG = 121,
146
+ /** For internal use only. */
147
+ DOCUMENT_IS_CANCELLING = 122,
148
+ /**Text color should be blue. */
149
+ TEXT_COLOR_SHOULD_BE_BLUE = 130,
150
+ /** Text color should be green. */
151
+ TEXT_COLOR_SHOULD_BE_GREEN = 131,
152
+ /** Text color should be red. */
153
+ TEXT_COLOR_SHOULD_BE_RED = 132,
154
+ /** Text should be black. */
155
+ TEXT_SHOULD_BE_BLACK = 133,
156
+ /** Barcode read with errors. */
157
+ BARCODE_WAS_READ_WITH_ERRORS = 140,
158
+ /** Barcode data format error. */
159
+ BARCODE_DATA_FORMAT_ERROR = 141,
160
+ /** Barcode size parameters error. */
161
+ BARCODE_SIZE_PARAMS_ERROR = 142,
162
+ /** Not all barcodes read. */
163
+ NOT_ALL_BARCODES_READ = 143,
164
+ /** Glares in barcode area. */
165
+ GLARES_IN_BARCODE_AREA = 144,
166
+ CHD_NO_CERTIFICATE_FOR_DIGITAL_SIGNATURE_CHECK = 145,
167
+ /** Portraits differ. */
168
+ PORTRAIT_COMPARISON_PORTRAITS_DIFFER = 150,
169
+ /** No reply from portrait comparison service. */
170
+ PORTRAIT_COMPARISON_NO_SERVICE_REPLY = 151,
171
+ /** Portrait comparison service error. */
172
+ PORTRAIT_COMPARISON_SERVICE_ERROR = 152,
173
+ /** Not enough images. */
174
+ PORTRAIT_COMPARISON_NOT_ENOUGH_IMAGES = 153,
175
+ /** No image from camera. */
176
+ PORTRAIT_COMPARISON_NO_LIVE_PHOTO = 154,
177
+ /** No license on portrait comparison service. */
178
+ PORTRAIT_COMPARISON_NO_SERVICE_LICENSE = 155,
179
+ /** No portraits detected */
180
+ PORTRAIT_COMPARISON_NO_PORTRAIT_DETECTED = 156,
181
+ /** Unsuitable light conditions. */
182
+ MOBILE_IMAGES_UNSUITABLE_LIGHT_CONDITIONS = 160,
183
+ /** No difference in visible and UV mobile images. Possible UV torch malfunction. */
184
+ MOBILE_IMAGES_WHITE_UV_NO_DIFFERENCE = 161,
185
+ /** Fingerprints comparison mismatch. */
186
+ FINGERPRINTS_COMPARISON_MISMATCH = 170,
187
+ /** Face isn't detected. */
188
+ HOLO_PHOTO_FACE_NOT_DETECTED = 180,
189
+ /** Face comparison failed. */
190
+ HOLO_PHOTO_FACE_COMPARISON_FAILED = 181,
191
+ /** Glare in center absent. */
192
+ HOLO_PHOTO_FACE_GLARE_IN_CENTER_ABSENT = 182,
193
+ /** Hologram element shape error. */
194
+ HOLO_ELEMENT_SHAPE_ERROR = 183,
195
+ /** Algorithm steps error. */
196
+ ALGORITHM_STEPS_ERROR = 184,
197
+ /** Hologram areas not loaded. */
198
+ HOLO_AREAS_NOT_LOADED = 185,
199
+ /** Hologram check finished by time out. */
200
+ FINISHED_BY_TIMEOUT = 186,
201
+ HOLO_PHOTO_DOCUMENT_OUTSIDE_FRAME = 187,
202
+ LIVENESS_DEPTH_CHECK_FAILED = 190,
203
+ /** Hologram check finished by time out. */
204
+ MRZ_QUALITY_WRONG_SYMBOL_POSITION = 200,
205
+ /** Wrong background. */
206
+ MRZ_QUALITY_WRONG_BACKGROUND = 201,
207
+ MRZ_QUALITY_WRONG_MRZ_WIDTH = 202,
208
+ MRZ_QUALITY_WRONG_MRZ_HEIGHT = 203,
209
+ MRZ_QUALITY_WRONG_LINE_POSITION = 204,
210
+ MRZ_QUALITY_WRONG_FONT_TYPE = 205,
211
+ OCR_QUALITY_TEXT_POSITION = 220,
212
+ OCR_QUALITY_INVALID_FONT = 221,
213
+ OCR_QUALITY_INVALID_BACKGROUND = 222,
214
+ LAS_INK_INVALID_LINES_FREQUENCY = 230,
215
+ DOC_LIVENESS_DOCUMENT_NOT_LIVE = 238,
216
+ CHD_DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED = 239,
217
+ /** Traces of an electronic device were found in the image. */
218
+ DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED = 240,
219
+ /** Invalid barcode background. */
220
+ DOC_LIVENESS_INVALID_BARCODE_BACKGROUND = 241,
221
+ ICAO_IDB_BASE_32_ERROR = 243,
222
+ ICAO_IDB_ZIPPED_ERROR = 244,
223
+ ICAO_IDB_MESSAGE_ZONE_EMPTY = 245,
224
+ ICAO_IDB_SIGNATURE_MUST_BE_PRESENT = 246,
225
+ ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT = 247,
226
+ ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT = 248,
227
+ /** Incorrect object color. */
228
+ INCORRECT_OBJECT_COLOR = 250,
229
+ }