@regulaforensics/document-reader 7.1.301-rc

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 (435) hide show
  1. package/README.md +17 -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 +834 -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 +579 -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 +22 -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/example/dr/capacitor/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/ic_launcher_foreground.png +0 -0
  21. package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_round.png +0 -0
  22. package/examples/capacitor/android/app/src/main/res/drawable/launcher.xml +4 -0
  23. package/examples/capacitor/android/app/src/main/res/drawable/launcher_round.xml +4 -0
  24. package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
  25. package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
  26. package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
  27. package/examples/capacitor/android/build.gradle +30 -0
  28. package/examples/capacitor/android/capacitor.settings.gradle +15 -0
  29. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  30. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  31. package/examples/capacitor/android/gradle.properties +22 -0
  32. package/examples/capacitor/android/gradlew +252 -0
  33. package/examples/capacitor/android/gradlew.bat +94 -0
  34. package/examples/capacitor/android/settings.gradle +5 -0
  35. package/examples/capacitor/android/variables.gradle +16 -0
  36. package/examples/capacitor/index.html +5 -0
  37. package/examples/capacitor/index.tsx +39 -0
  38. package/examples/capacitor/ionic.config.json +7 -0
  39. package/examples/capacitor/ios/App/App/App.entitlements +10 -0
  40. package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
  41. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
  42. package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
  43. package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
  44. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
  45. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
  46. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
  47. package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
  48. package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
  49. package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
  50. package/examples/capacitor/ios/App/App/Info.plist +67 -0
  51. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
  52. package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  53. package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
  54. package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  55. package/examples/capacitor/ios/App/Podfile +26 -0
  56. package/examples/capacitor/ios/App/Podfile.lock +56 -0
  57. package/examples/capacitor/package-lock.json +3411 -0
  58. package/examples/capacitor/package.json +27 -0
  59. package/examples/capacitor/public/assets/.gitkeep +0 -0
  60. package/examples/capacitor/public/images/document.png +0 -0
  61. package/examples/capacitor/public/images/portrait.png +0 -0
  62. package/examples/capacitor/scripts/android.sh +9 -0
  63. package/examples/capacitor/scripts/ios.sh +8 -0
  64. package/examples/capacitor/scripts/setup.sh +12 -0
  65. package/examples/capacitor/src/extra/bt_device.tsx +33 -0
  66. package/examples/capacitor/src/extra/custom_rfid.tsx +61 -0
  67. package/examples/capacitor/src/main.css +148 -0
  68. package/examples/capacitor/src/main.html +38 -0
  69. package/examples/capacitor/src/main.tsx +172 -0
  70. package/examples/capacitor/tsconfig.json +5 -0
  71. package/examples/capacitor/vite.config.ts +17 -0
  72. package/examples/ionic/README.md +22 -0
  73. package/examples/ionic/angular.json +39 -0
  74. package/examples/ionic/assets/.gitkeep +0 -0
  75. package/examples/ionic/config.xml +61 -0
  76. package/examples/ionic/images/document.png +0 -0
  77. package/examples/ionic/images/icon.png +0 -0
  78. package/examples/ionic/images/portrait.png +0 -0
  79. package/examples/ionic/index.html +19 -0
  80. package/examples/ionic/index.tsx +54 -0
  81. package/examples/ionic/ionic.config.json +7 -0
  82. package/examples/ionic/package-lock.json +14349 -0
  83. package/examples/ionic/package.json +44 -0
  84. package/examples/ionic/scripts/android.sh +8 -0
  85. package/examples/ionic/scripts/ios.sh +8 -0
  86. package/examples/ionic/scripts/setup.sh +8 -0
  87. package/examples/ionic/src/extra/bt_device.tsx +33 -0
  88. package/examples/ionic/src/extra/custom_rfid.tsx +61 -0
  89. package/examples/ionic/src/main.css +148 -0
  90. package/examples/ionic/src/main.html +38 -0
  91. package/examples/ionic/src/main.tsx +172 -0
  92. package/examples/ionic/tsconfig.json +14 -0
  93. package/examples/react_native/README.md +22 -0
  94. package/examples/react_native/app.config.ts +49 -0
  95. package/examples/react_native/assets/.gitkeep +0 -0
  96. package/examples/react_native/images/document.png +0 -0
  97. package/examples/react_native/images/icon.png +0 -0
  98. package/examples/react_native/images/portrait.png +0 -0
  99. package/examples/react_native/index.html +11 -0
  100. package/examples/react_native/index.tsx +81 -0
  101. package/examples/react_native/metro.config.js +7 -0
  102. package/examples/react_native/package-lock.json +8612 -0
  103. package/examples/react_native/package.json +27 -0
  104. package/examples/react_native/scripts/android.sh +13 -0
  105. package/examples/react_native/scripts/ios.sh +12 -0
  106. package/examples/react_native/scripts/setup.sh +8 -0
  107. package/examples/react_native/src/extra/bt_device.tsx +33 -0
  108. package/examples/react_native/src/extra/custom_rfid.tsx +61 -0
  109. package/examples/react_native/src/main.css +148 -0
  110. package/examples/react_native/src/main.html +38 -0
  111. package/examples/react_native/src/main.tsx +172 -0
  112. package/ios/CVDDocumentReader.h +7 -0
  113. package/ios/CVDDocumentReader.m +39 -0
  114. package/ios/RGLWConfig.h +42 -0
  115. package/ios/RGLWConfig.m +1404 -0
  116. package/ios/RGLWJSONConstructor.h +185 -0
  117. package/ios/RGLWJSONConstructor.m +2379 -0
  118. package/ios/RGLWMain.h +36 -0
  119. package/ios/RGLWMain.m +620 -0
  120. package/ios/RNDocumentReader.h +8 -0
  121. package/ios/RNDocumentReader.m +49 -0
  122. package/package.json +36 -0
  123. package/plugin.xml +50 -0
  124. package/test/json.tsx +868 -0
  125. package/test/package-lock.json +584 -0
  126. package/test/package.json +9 -0
  127. package/test/test.tsx +93 -0
  128. package/test/utils.tsx +38 -0
  129. package/www/capacitor/config/InitConfig.js +52 -0
  130. package/www/capacitor/config/OnlineProcessingConfig.js +52 -0
  131. package/www/capacitor/config/RFIDConfig.js +31 -0
  132. package/www/capacitor/config/RecognizeConfig.js +126 -0
  133. package/www/capacitor/config/ScannerConfig.js +48 -0
  134. package/www/capacitor/index.js +502 -0
  135. package/www/capacitor/info/DocReaderException.js +64 -0
  136. package/www/capacitor/info/DocReaderScenario.js +89 -0
  137. package/www/capacitor/info/DocReaderVersion.js +32 -0
  138. package/www/capacitor/info/DocumentsDatabase.js +39 -0
  139. package/www/capacitor/info/License.js +30 -0
  140. package/www/capacitor/info/PrepareProgress.js +31 -0
  141. package/www/capacitor/info/RFIDException.js +26 -0
  142. package/www/capacitor/internal/bridge.js +98 -0
  143. package/www/capacitor/internal/cordova.js +17 -0
  144. package/www/capacitor/params/Functionality.js +355 -0
  145. package/www/capacitor/params/customization/Customization.js +633 -0
  146. package/www/capacitor/params/customization/CustomizationColors.js +87 -0
  147. package/www/capacitor/params/customization/CustomizationFonts.js +48 -0
  148. package/www/capacitor/params/customization/CustomizationImages.js +31 -0
  149. package/www/capacitor/params/customization/Font.js +36 -0
  150. package/www/capacitor/params/process_params/AuthenticityParams.js +150 -0
  151. package/www/capacitor/params/process_params/BackendProcessingConfig.js +34 -0
  152. package/www/capacitor/params/process_params/FaceApiParams.js +51 -0
  153. package/www/capacitor/params/process_params/FaceApiSearchParams.js +29 -0
  154. package/www/capacitor/params/process_params/GlaresCheckParams.js +25 -0
  155. package/www/capacitor/params/process_params/ImageQA.js +113 -0
  156. package/www/capacitor/params/process_params/LivenessParams.js +79 -0
  157. package/www/capacitor/params/process_params/ProcessParams.js +665 -0
  158. package/www/capacitor/params/process_params/RFIDParams.js +21 -0
  159. package/www/capacitor/params/rfid_scenario/DTCDataGroup.js +63 -0
  160. package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +135 -0
  161. package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +191 -0
  162. package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +151 -0
  163. package/www/capacitor/params/rfid_scenario/RFIDScenario.js +560 -0
  164. package/www/capacitor/results/DocumentType.js +302 -0
  165. package/www/capacitor/results/Position.js +88 -0
  166. package/www/capacitor/results/Results.js +343 -0
  167. package/www/capacitor/results/TransactionInfo.js +24 -0
  168. package/www/capacitor/results/authenticity/Authenticity.js +23 -0
  169. package/www/capacitor/results/authenticity/AuthenticityCheck.js +43 -0
  170. package/www/capacitor/results/authenticity/AuthenticityElement.js +37 -0
  171. package/www/capacitor/results/authenticity/AuthenticityResult.js +33 -0
  172. package/www/capacitor/results/authenticity/CheckDiagnose.js +125 -0
  173. package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
  174. package/www/capacitor/results/barcode/BarcodeField.js +34 -0
  175. package/www/capacitor/results/barcode/BarcodeResult.js +30 -0
  176. package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
  177. package/www/capacitor/results/barcode/BarcodeType.js +21 -0
  178. package/www/capacitor/results/barcode/PDF417Info.js +24 -0
  179. package/www/capacitor/results/image_quality/ImageQuality.js +40 -0
  180. package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
  181. package/www/capacitor/results/image_quality/ImageQualityGroup.js +39 -0
  182. package/www/capacitor/results/rfid/AccessControlProcedureType.js +30 -0
  183. package/www/capacitor/results/rfid/Application.js +59 -0
  184. package/www/capacitor/results/rfid/Attribute.js +23 -0
  185. package/www/capacitor/results/rfid/Authority.js +36 -0
  186. package/www/capacitor/results/rfid/CardProperties.js +57 -0
  187. package/www/capacitor/results/rfid/CertificateChain.js +69 -0
  188. package/www/capacitor/results/rfid/CertificateData.js +21 -0
  189. package/www/capacitor/results/rfid/DataField.js +23 -0
  190. package/www/capacitor/results/rfid/Extension.js +21 -0
  191. package/www/capacitor/results/rfid/File.js +56 -0
  192. package/www/capacitor/results/rfid/FileData.js +27 -0
  193. package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  194. package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
  195. package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
  196. package/www/capacitor/results/rfid/RFIDSessionData.js +92 -0
  197. package/www/capacitor/results/rfid/RFIDValidity.js +23 -0
  198. package/www/capacitor/results/rfid/RFIDValue.js +30 -0
  199. package/www/capacitor/results/rfid/SecurityObject.js +41 -0
  200. package/www/capacitor/results/rfid/SecurityObjectCertificates.js +20 -0
  201. package/www/capacitor/results/rfid/SignerInfo.js +74 -0
  202. package/www/capacitor/results/status/CheckResult.js +5 -0
  203. package/www/capacitor/results/status/OpticalStatus.js +44 -0
  204. package/www/capacitor/results/status/RFIDStatus.js +38 -0
  205. package/www/capacitor/results/status/ResultsStatus.js +40 -0
  206. package/www/capacitor/results/visible_digital_seals/BytesData.js +27 -0
  207. package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  208. package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  209. package/www/capacitor/results/visible_digital_seals/VDSNCData.js +54 -0
  210. package/www/capacitor/results/visual_results/Comparison.js +27 -0
  211. package/www/capacitor/results/visual_results/FieldType.js +660 -0
  212. package/www/capacitor/results/visual_results/GraphicField.js +47 -0
  213. package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
  214. package/www/capacitor/results/visual_results/GraphicResult.js +28 -0
  215. package/www/capacitor/results/visual_results/LCID.js +174 -0
  216. package/www/capacitor/results/visual_results/Lights.js +11 -0
  217. package/www/capacitor/results/visual_results/RFIDOrigin.js +27 -0
  218. package/www/capacitor/results/visual_results/Rect.js +27 -0
  219. package/www/capacitor/results/visual_results/Symbol.js +26 -0
  220. package/www/capacitor/results/visual_results/TextField.js +85 -0
  221. package/www/capacitor/results/visual_results/TextResult.js +52 -0
  222. package/www/capacitor/results/visual_results/TextSource.js +27 -0
  223. package/www/capacitor/results/visual_results/Validity.js +24 -0
  224. package/www/capacitor/results/visual_results/Value.js +52 -0
  225. package/www/capacitor/rfid/PAAttribute.js +24 -0
  226. package/www/capacitor/rfid/PAResourcesIssuer.js +35 -0
  227. package/www/capacitor/rfid/PKDCertificate.js +62 -0
  228. package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
  229. package/www/capacitor/rfid/RFIDNotification.js +68 -0
  230. package/www/capacitor/rfid/TAChallenge.js +33 -0
  231. package/www/capacitor/rfid/TccParams.js +34 -0
  232. package/www/cordova.js +11029 -0
  233. package/www/react-native/config/InitConfig.js +52 -0
  234. package/www/react-native/config/OnlineProcessingConfig.js +52 -0
  235. package/www/react-native/config/RFIDConfig.js +31 -0
  236. package/www/react-native/config/RecognizeConfig.js +126 -0
  237. package/www/react-native/config/ScannerConfig.js +48 -0
  238. package/www/react-native/index.js +502 -0
  239. package/www/react-native/info/DocReaderException.js +64 -0
  240. package/www/react-native/info/DocReaderScenario.js +89 -0
  241. package/www/react-native/info/DocReaderVersion.js +32 -0
  242. package/www/react-native/info/DocumentsDatabase.js +39 -0
  243. package/www/react-native/info/License.js +30 -0
  244. package/www/react-native/info/PrepareProgress.js +31 -0
  245. package/www/react-native/info/RFIDException.js +26 -0
  246. package/www/react-native/internal/bridge.js +98 -0
  247. package/www/react-native/params/Functionality.js +355 -0
  248. package/www/react-native/params/customization/Customization.js +633 -0
  249. package/www/react-native/params/customization/CustomizationColors.js +87 -0
  250. package/www/react-native/params/customization/CustomizationFonts.js +48 -0
  251. package/www/react-native/params/customization/CustomizationImages.js +31 -0
  252. package/www/react-native/params/customization/Font.js +36 -0
  253. package/www/react-native/params/process_params/AuthenticityParams.js +150 -0
  254. package/www/react-native/params/process_params/BackendProcessingConfig.js +34 -0
  255. package/www/react-native/params/process_params/FaceApiParams.js +51 -0
  256. package/www/react-native/params/process_params/FaceApiSearchParams.js +29 -0
  257. package/www/react-native/params/process_params/GlaresCheckParams.js +25 -0
  258. package/www/react-native/params/process_params/ImageQA.js +113 -0
  259. package/www/react-native/params/process_params/LivenessParams.js +79 -0
  260. package/www/react-native/params/process_params/ProcessParams.js +665 -0
  261. package/www/react-native/params/process_params/RFIDParams.js +21 -0
  262. package/www/react-native/params/rfid_scenario/DTCDataGroup.js +63 -0
  263. package/www/react-native/params/rfid_scenario/EDLDataGroups.js +135 -0
  264. package/www/react-native/params/rfid_scenario/EIDDataGroups.js +191 -0
  265. package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +151 -0
  266. package/www/react-native/params/rfid_scenario/RFIDScenario.js +560 -0
  267. package/www/react-native/results/DocumentType.js +302 -0
  268. package/www/react-native/results/Position.js +88 -0
  269. package/www/react-native/results/Results.js +343 -0
  270. package/www/react-native/results/TransactionInfo.js +24 -0
  271. package/www/react-native/results/authenticity/Authenticity.js +23 -0
  272. package/www/react-native/results/authenticity/AuthenticityCheck.js +43 -0
  273. package/www/react-native/results/authenticity/AuthenticityElement.js +37 -0
  274. package/www/react-native/results/authenticity/AuthenticityResult.js +33 -0
  275. package/www/react-native/results/authenticity/CheckDiagnose.js +125 -0
  276. package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
  277. package/www/react-native/results/barcode/BarcodeField.js +34 -0
  278. package/www/react-native/results/barcode/BarcodeResult.js +30 -0
  279. package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
  280. package/www/react-native/results/barcode/BarcodeType.js +21 -0
  281. package/www/react-native/results/barcode/PDF417Info.js +24 -0
  282. package/www/react-native/results/image_quality/ImageQuality.js +40 -0
  283. package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
  284. package/www/react-native/results/image_quality/ImageQualityGroup.js +39 -0
  285. package/www/react-native/results/rfid/AccessControlProcedureType.js +30 -0
  286. package/www/react-native/results/rfid/Application.js +59 -0
  287. package/www/react-native/results/rfid/Attribute.js +23 -0
  288. package/www/react-native/results/rfid/Authority.js +36 -0
  289. package/www/react-native/results/rfid/CardProperties.js +57 -0
  290. package/www/react-native/results/rfid/CertificateChain.js +69 -0
  291. package/www/react-native/results/rfid/CertificateData.js +21 -0
  292. package/www/react-native/results/rfid/DataField.js +23 -0
  293. package/www/react-native/results/rfid/Extension.js +21 -0
  294. package/www/react-native/results/rfid/File.js +56 -0
  295. package/www/react-native/results/rfid/FileData.js +27 -0
  296. package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
  297. package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
  298. package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
  299. package/www/react-native/results/rfid/RFIDSessionData.js +92 -0
  300. package/www/react-native/results/rfid/RFIDValidity.js +23 -0
  301. package/www/react-native/results/rfid/RFIDValue.js +30 -0
  302. package/www/react-native/results/rfid/SecurityObject.js +41 -0
  303. package/www/react-native/results/rfid/SecurityObjectCertificates.js +20 -0
  304. package/www/react-native/results/rfid/SignerInfo.js +74 -0
  305. package/www/react-native/results/status/CheckResult.js +5 -0
  306. package/www/react-native/results/status/OpticalStatus.js +44 -0
  307. package/www/react-native/results/status/RFIDStatus.js +38 -0
  308. package/www/react-native/results/status/ResultsStatus.js +40 -0
  309. package/www/react-native/results/visible_digital_seals/BytesData.js +27 -0
  310. package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
  311. package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
  312. package/www/react-native/results/visible_digital_seals/VDSNCData.js +54 -0
  313. package/www/react-native/results/visual_results/Comparison.js +27 -0
  314. package/www/react-native/results/visual_results/FieldType.js +660 -0
  315. package/www/react-native/results/visual_results/GraphicField.js +47 -0
  316. package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
  317. package/www/react-native/results/visual_results/GraphicResult.js +28 -0
  318. package/www/react-native/results/visual_results/LCID.js +174 -0
  319. package/www/react-native/results/visual_results/Lights.js +11 -0
  320. package/www/react-native/results/visual_results/RFIDOrigin.js +27 -0
  321. package/www/react-native/results/visual_results/Rect.js +27 -0
  322. package/www/react-native/results/visual_results/Symbol.js +26 -0
  323. package/www/react-native/results/visual_results/TextField.js +85 -0
  324. package/www/react-native/results/visual_results/TextResult.js +52 -0
  325. package/www/react-native/results/visual_results/TextSource.js +27 -0
  326. package/www/react-native/results/visual_results/Validity.js +24 -0
  327. package/www/react-native/results/visual_results/Value.js +52 -0
  328. package/www/react-native/rfid/PAAttribute.js +24 -0
  329. package/www/react-native/rfid/PAResourcesIssuer.js +35 -0
  330. package/www/react-native/rfid/PKDCertificate.js +62 -0
  331. package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
  332. package/www/react-native/rfid/RFIDNotification.js +68 -0
  333. package/www/react-native/rfid/TAChallenge.js +33 -0
  334. package/www/react-native/rfid/TccParams.js +34 -0
  335. package/www/types/config/InitConfig.d.ts +63 -0
  336. package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
  337. package/www/types/config/RFIDConfig.d.ts +131 -0
  338. package/www/types/config/RecognizeConfig.d.ts +119 -0
  339. package/www/types/config/ScannerConfig.d.ts +54 -0
  340. package/www/types/index.d.ts +427 -0
  341. package/www/types/info/DocReaderException.d.ts +79 -0
  342. package/www/types/info/DocReaderScenario.d.ts +90 -0
  343. package/www/types/info/DocReaderVersion.d.ts +28 -0
  344. package/www/types/info/DocumentsDatabase.d.ts +42 -0
  345. package/www/types/info/License.d.ts +23 -0
  346. package/www/types/info/PrepareProgress.d.ts +15 -0
  347. package/www/types/info/RFIDException.d.ts +8 -0
  348. package/www/types/params/Functionality.d.ts +320 -0
  349. package/www/types/params/customization/Customization.d.ts +563 -0
  350. package/www/types/params/customization/CustomizationColors.d.ts +16 -0
  351. package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
  352. package/www/types/params/customization/CustomizationImages.d.ts +12 -0
  353. package/www/types/params/customization/Font.d.ts +36 -0
  354. package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
  355. package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
  356. package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
  357. package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
  358. package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
  359. package/www/types/params/process_params/ImageQA.d.ts +79 -0
  360. package/www/types/params/process_params/LivenessParams.d.ts +20 -0
  361. package/www/types/params/process_params/ProcessParams.d.ts +473 -0
  362. package/www/types/params/process_params/RFIDParams.d.ts +19 -0
  363. package/www/types/params/rfid_scenario/DTCDataGroup.d.ts +13 -0
  364. package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
  365. package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
  366. package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
  367. package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
  368. package/www/types/results/DocumentType.d.ts +525 -0
  369. package/www/types/results/Position.d.ts +50 -0
  370. package/www/types/results/Results.d.ts +283 -0
  371. package/www/types/results/TransactionInfo.d.ts +9 -0
  372. package/www/types/results/authenticity/Authenticity.d.ts +67 -0
  373. package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
  374. package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
  375. package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
  376. package/www/types/results/authenticity/CheckDiagnose.d.ts +231 -0
  377. package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
  378. package/www/types/results/barcode/BarcodeField.d.ts +37 -0
  379. package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
  380. package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
  381. package/www/types/results/barcode/BarcodeType.d.ts +45 -0
  382. package/www/types/results/barcode/PDF417Info.d.ts +15 -0
  383. package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
  384. package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
  385. package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
  386. package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
  387. package/www/types/results/rfid/Application.d.ts +44 -0
  388. package/www/types/results/rfid/Attribute.d.ts +9 -0
  389. package/www/types/results/rfid/Authority.d.ts +11 -0
  390. package/www/types/results/rfid/CardProperties.d.ts +48 -0
  391. package/www/types/results/rfid/CertificateChain.d.ts +28 -0
  392. package/www/types/results/rfid/CertificateData.d.ts +7 -0
  393. package/www/types/results/rfid/DataField.d.ts +9 -0
  394. package/www/types/results/rfid/Extension.d.ts +7 -0
  395. package/www/types/results/rfid/File.d.ts +22 -0
  396. package/www/types/results/rfid/FileData.d.ts +9 -0
  397. package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
  398. package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
  399. package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
  400. package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
  401. package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
  402. package/www/types/results/rfid/RFIDValue.d.ts +10 -0
  403. package/www/types/results/rfid/SecurityObject.d.ts +28 -0
  404. package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
  405. package/www/types/results/rfid/SignerInfo.d.ts +41 -0
  406. package/www/types/results/status/CheckResult.d.ts +8 -0
  407. package/www/types/results/status/OpticalStatus.d.ts +29 -0
  408. package/www/types/results/status/RFIDStatus.d.ts +22 -0
  409. package/www/types/results/status/ResultsStatus.d.ts +24 -0
  410. package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
  411. package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
  412. package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
  413. package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
  414. package/www/types/results/visual_results/Comparison.d.ts +15 -0
  415. package/www/types/results/visual_results/FieldType.d.ts +1314 -0
  416. package/www/types/results/visual_results/GraphicField.d.ts +29 -0
  417. package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
  418. package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
  419. package/www/types/results/visual_results/LCID.d.ts +173 -0
  420. package/www/types/results/visual_results/Lights.d.ts +23 -0
  421. package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
  422. package/www/types/results/visual_results/Rect.d.ts +9 -0
  423. package/www/types/results/visual_results/Symbol.d.ts +14 -0
  424. package/www/types/results/visual_results/TextField.d.ts +40 -0
  425. package/www/types/results/visual_results/TextResult.d.ts +23 -0
  426. package/www/types/results/visual_results/TextSource.d.ts +15 -0
  427. package/www/types/results/visual_results/Validity.d.ts +13 -0
  428. package/www/types/results/visual_results/Value.d.ts +27 -0
  429. package/www/types/rfid/PAAttribute.d.ts +4 -0
  430. package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
  431. package/www/types/rfid/PKDCertificate.d.ts +34 -0
  432. package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
  433. package/www/types/rfid/RFIDNotification.d.ts +153 -0
  434. package/www/types/rfid/TAChallenge.d.ts +7 -0
  435. package/www/types/rfid/TccParams.d.ts +25 -0
package/test/json.tsx ADDED
@@ -0,0 +1,868 @@
1
+ var img1 = 'data1'
2
+ var img2 = 'data2'
3
+ var img3 = 'data3'
4
+
5
+ export var faceApiSearchParams = {
6
+ "limit": 1,
7
+ "threshold": 2,
8
+ "groupIds": ["test1", "test2", "test3"],
9
+ }
10
+ export var faceApiParams = {
11
+ "url": "test1",
12
+ "mode": "test2",
13
+ "threshold": 1,
14
+ "serviceTimeout": 2,
15
+ "proxy": "test3",
16
+ "proxyPassword": "test4",
17
+ "proxyType": 3,
18
+ "searchParams": faceApiSearchParams,
19
+ }
20
+ export var livenessParams = {
21
+ "checkOVI": true,
22
+ "checkMLI": false,
23
+ "checkHolo": true,
24
+ "checkED": false,
25
+ "checkBlackAndWhiteCopy": true,
26
+ "checkDynaprint": false,
27
+ "checkGeometry": true,
28
+ }
29
+ export var authenticityParams = {
30
+ "useLivenessCheck": true,
31
+ "checkUVLuminiscence": false,
32
+ "checkIRB900": true,
33
+ "checkImagePatterns": false,
34
+ "checkFibers": true,
35
+ "checkExtMRZ": false,
36
+ "checkExtOCR": true,
37
+ "checkAxial": false,
38
+ "checkBarcodeFormat": true,
39
+ "checkIRVisibility": false,
40
+ "checkIPI": true,
41
+ "checkPhotoEmbedding": false,
42
+ "checkPhotoComparison": true,
43
+ "checkLetterScreen": false,
44
+ "checkSecurityText": true,
45
+ "livenessParams": livenessParams,
46
+ }
47
+ export var glaresCheckParams = {"imgMarginPart": 0.5, "maxGlaringPart": 1.5}
48
+ export var imageQA = {
49
+ "dpiThreshold": 1,
50
+ "angleThreshold": 2,
51
+ "documentPositionIndent": 3,
52
+ "focusCheck": true,
53
+ "glaresCheck": false,
54
+ "colornessCheck": true,
55
+ "screenCapture": false,
56
+ "expectedPass": [1, 2, 3],
57
+ "glaresCheckParams": glaresCheckParams,
58
+ "brightnessThreshold": 0.5,
59
+ "occlusionCheck": true,
60
+ }
61
+ export var rfidParams = {
62
+ "paIgnoreNotificationCodes": [1, 2, 3],
63
+ }
64
+ export var backendProcessingConfig = {
65
+ "url": "test",
66
+ "rfidServerSideChipVerification": true,
67
+ "httpHeaders": {"key1": "val1", "key2": "val2", "key3": "val3"},
68
+ "timeoutConnection": 0.5,
69
+ }
70
+ export var processParams = {
71
+ "multipageProcessing": true,
72
+ "debugSaveImages": false,
73
+ "debugSaveLogs": true,
74
+ "returnUncroppedImage": false,
75
+ "uvTorchEnabled": true,
76
+ "debugSaveCroppedImages": false,
77
+ "disableFocusingCheck": true,
78
+ "debugSaveRFIDSession": false,
79
+ "doublePageSpread": true,
80
+ "manualCrop": false,
81
+ "integralImage": true,
82
+ "returnCroppedBarcode": false,
83
+ "checkRequiredTextFields": false,
84
+ "depersonalizeLog": true,
85
+ "generateDoublePageSpreadImage": false,
86
+ "alreadyCropped": true,
87
+ "matchTextFieldMask": false,
88
+ "updateOCRValidityByGlare": false,
89
+ "noGraphics": true,
90
+ "multiDocOnImage": false,
91
+ "forceReadMrzBeforeLocate": true,
92
+ "parseBarcodes": false,
93
+ "shouldReturnPackageForReprocess": true,
94
+ "disablePerforationOCR": false,
95
+ "respectImageQuality": true,
96
+ "strictImageQuality": true,
97
+ "splitNames": false,
98
+ "useFaceApi": false,
99
+ "useAuthenticityCheck": true,
100
+ "checkHologram": false,
101
+ "generateNumericCodes": true,
102
+ "strictBarcodeDigitalSignatureCheck": false,
103
+ "selectLongestNames": true,
104
+ "generateDTCVC": false,
105
+ "strictDLCategoryExpiry": true,
106
+ "generateAlpha2Codes": false,
107
+ "disableAuthResolutionFilter": true,
108
+ "strictSecurityChecks": false,
109
+ "measureSystem": 1,
110
+ "barcodeParserType": 3,
111
+ "perspectiveAngle": 4,
112
+ "minDPI": 5,
113
+ "imageDpiOutMax": 6,
114
+ "forceDocID": 6,
115
+ "pdfPagesLimit": 7,
116
+ "forceDocFormat": 3,
117
+ "shiftExpiryDate": 9,
118
+ "minimalHolderAge": 10,
119
+ "imageOutputMaxHeight": 11,
120
+ "imageOutputMaxWidth": 12,
121
+ "processAuth": 13,
122
+ "convertCase": 3,
123
+ "logLevel": "FatalError",
124
+ "mrzDetectMode": 1,
125
+ "dateFormat": "test1",
126
+ "scenario": "Mrz",
127
+ "captureButtonScenario": "Locate",
128
+ "timeout": 15,
129
+ "timeoutFromFirstDetect": 16,
130
+ "timeoutFromFirstDocType": 17,
131
+ "documentAreaMin": 18,
132
+ "timeoutLiveness": 19,
133
+ "documentIDList": [1, 2, 3],
134
+ "barcodeTypes": [4, 5, 6],
135
+ "fieldTypesFilter": [7, 8, 9],
136
+ "resultTypeOutput": [10, 9, 8],
137
+ "mrzFormatsFilter": ["1x30", "3x30", "2x30"],
138
+ "documentGroupFilter": [135, 136, 137],
139
+ "lcidIgnoreFilter": [10011, 1078, 1052],
140
+ "lcidFilter": [1118, 5121, 15361],
141
+ "imageQA": imageQA,
142
+ "rfidParams": rfidParams,
143
+ "faceApiParams": faceApiParams,
144
+ "backendProcessingConfig": backendProcessingConfig,
145
+ "authenticityParams": authenticityParams,
146
+ "customParams": {"test1": true, "test2": 1, "test3": "test"},
147
+ }
148
+ export var font1 = {"name": "AppleSDGothicNeo-Thin", "size": 10, "style": 2}
149
+ export var font2 = {"name": "Copperplate-Light", "size": 20, "style": 1}
150
+ export var customizationColors = {
151
+ "rfidProcessingScreenBackground": 0xff000000,
152
+ "rfidProcessingScreenHintLabelText": 0xff000001,
153
+ "rfidProcessingScreenHintLabelBackground": 0xff000002,
154
+ "rfidProcessingScreenProgressLabelText": 0xff000003,
155
+ "rfidProcessingScreenProgressBar": 0xff000004,
156
+ "rfidProcessingScreenProgressBarBackground": 0xff000005,
157
+ "rfidProcessingScreenResultLabelText": 0xff000006,
158
+ "rfidProcessingScreenLoadingBar": 0xff000007,
159
+ }
160
+ export var customizationFonts = {
161
+ "rfidProcessingScreenHintLabel": font1,
162
+ "rfidProcessingScreenProgressLabel": font2,
163
+ "rfidProcessingScreenResultLabel": font1,
164
+ }
165
+ export var customizationImages = {"rfidProcessingScreenFailureImage": img1}
166
+ export var customization = {
167
+ "showStatusMessages": true,
168
+ "showResultStatusMessages": false,
169
+ "showHelpAnimation": true,
170
+ "showNextPageAnimation": false,
171
+ "showBackgroundMask": true,
172
+ "cameraFrameBorderWidth": 1,
173
+ "cameraFrameLineLength": 2,
174
+ "cameraFrameShapeType": 1,
175
+ "cameraFrameOffsetWidth": 3,
176
+ "status": "test1",
177
+ "resultStatus": "test2",
178
+ "multipageButtonText": "test3",
179
+ "cameraFrameDefaultColor": 0xff000000,
180
+ "cameraFrameActiveColor": 0xff000001,
181
+ "statusTextColor": 0xff000002,
182
+ "resultStatusTextColor": 0xff000003,
183
+ "resultStatusBackgroundColor": 0xff000004,
184
+ "multipageButtonBackgroundColor": 0xff000005,
185
+ "tintColor": 0xff000006,
186
+ "activityIndicatorColor": 0xff000007,
187
+ "statusBackgroundColor": 0xff000008,
188
+ "cameraPreviewBackgroundColor": 0xff000009,
189
+ "backgroundMaskColor": 0xff000010,
190
+ "multipageButtonTextColor": 0xff000011,
191
+ "statusPositionMultiplier": 0.5,
192
+ "resultStatusPositionMultiplier": 1.5,
193
+ "toolbarSize": 2.5,
194
+ "backgroundMaskAlpha": 3.5,
195
+ "customStatusPositionMultiplier": 4.5,
196
+ "cameraFrameVerticalPositionMultiplier": 5.5,
197
+ "cameraFrameLandscapeAspectRatio": 6.5,
198
+ "cameraFramePortraitAspectRatio": 7.5,
199
+ "cameraFrameCornerRadius": 8.5,
200
+ "livenessAnimationPositionMultiplier": 9.5,
201
+ "nextPageAnimationStartDelay": 10.5,
202
+ "nextPageAnimationEndDelay": 11.5,
203
+ "activityIndicatorPortraitPositionMultiplier": 12.5,
204
+ "activityIndicatorLandscapePositionMultiplier": 13.5,
205
+ "cameraPreviewVerticalPositionMultiplier": 14.5,
206
+ "multipageAnimationFrontImage": img1,
207
+ "multipageAnimationBackImage": img2,
208
+ "borderBackgroundImage": img3,
209
+ "helpAnimationImage": img1,
210
+ "closeButtonImage": img2,
211
+ "captureButtonImage": img3,
212
+ "cameraSwitchButtonImage": img1,
213
+ "torchButtonOnImage": img2,
214
+ "torchButtonOffImage": img3,
215
+ "changeFrameButtonExpandImage": img1,
216
+ "changeFrameButtonCollapseImage": img2,
217
+ "livenessAnimationImage": img3,
218
+ "multipageButtonImage": img1,
219
+ "customLabelStatus": "test3",
220
+ "cameraFrameLineCap": 2,
221
+ "uiCustomizationLayer": {"test": "test"},
222
+ "statusTextFont": font1,
223
+ "resultStatusTextFont": font2,
224
+ "multipageButtonTextFont": font1,
225
+ "helpAnimationImageContentMode": 0,
226
+ "multipageAnimationFrontImageContentMode": 1,
227
+ "multipageAnimationBackImageContentMode": 2,
228
+ "livenessAnimationImageContentMode": 3,
229
+ "borderBackgroundImageContentMode": 4,
230
+ "helpAnimationImageMatrix": [1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9],
231
+ "multipageAnimationFrontImageMatrix": [
232
+ 2.1,
233
+ 2.2,
234
+ 2.3,
235
+ 2.4,
236
+ 2.5,
237
+ 2.6,
238
+ 2.7,
239
+ 2.8,
240
+ 2.9,
241
+ ],
242
+ "multipageAnimationBackImageMatrix": [
243
+ 3.1,
244
+ 3.2,
245
+ 3.3,
246
+ 3.4,
247
+ 3.5,
248
+ 3.6,
249
+ 3.7,
250
+ 3.8,
251
+ 3.9,
252
+ ],
253
+ "livenessAnimationImageMatrix": [4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9],
254
+ "borderBackgroundImageMatrix": [5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9],
255
+ "colors": customizationColors,
256
+ "fonts": customizationFonts,
257
+ "images": customizationImages,
258
+ }
259
+ export var cameraSize = {"width": 0, "height": 1}
260
+ export var functionality = {
261
+ "pictureOnBoundsReady": true,
262
+ "showTorchButton": false,
263
+ "showCloseButton": true,
264
+ "videoCaptureMotionControl": false,
265
+ "showCaptureButton": true,
266
+ "showChangeFrameButton": false,
267
+ "showSkipNextPageButton": true,
268
+ "useAuthenticator": true,
269
+ "skipFocusingFrames": true,
270
+ "showCameraSwitchButton": false,
271
+ "displayMetadata": true,
272
+ "isZoomEnabled": false,
273
+ "isCameraTorchCheckDisabled": true,
274
+ "recordScanningProcess": false,
275
+ "manualMultipageMode": true,
276
+ "singleResult": false,
277
+ "torchTurnedOn": false,
278
+ "showCaptureButtonDelayFromDetect": 0,
279
+ "showCaptureButtonDelayFromStart": 1,
280
+ "rfidTimeout": 2,
281
+ "forcePagesCount": 3,
282
+ "orientation": 1,
283
+ "captureMode": 2,
284
+ "cameraMode": 0,
285
+ "cameraPositionIOS": 1,
286
+ "cameraFrame": "id1",
287
+ "btDeviceName": "test",
288
+ "zoomFactor": 0.5,
289
+ "exposure": 1.5,
290
+ "videoRecordingSizeDownscaleFactor": 2.5,
291
+ "excludedCamera2Models": ["test1", "test2", "test3"],
292
+ "cameraSize": cameraSize,
293
+ "videoSessionPreset": 6,
294
+ }
295
+ export var eDLDataGroups = {
296
+ "DG1": true,
297
+ "DG2": false,
298
+ "DG3": true,
299
+ "DG4": false,
300
+ "DG5": true,
301
+ "DG6": false,
302
+ "DG7": true,
303
+ "DG8": false,
304
+ "DG9": true,
305
+ "DG10": false,
306
+ "DG11": true,
307
+ "DG12": false,
308
+ "DG13": true,
309
+ "DG14": false,
310
+ }
311
+ export var ePassportDataGroups = {
312
+ "DG1": true,
313
+ "DG2": false,
314
+ "DG3": true,
315
+ "DG4": false,
316
+ "DG5": true,
317
+ "DG6": false,
318
+ "DG7": true,
319
+ "DG8": false,
320
+ "DG9": true,
321
+ "DG10": false,
322
+ "DG11": true,
323
+ "DG12": false,
324
+ "DG13": true,
325
+ "DG14": false,
326
+ "DG15": true,
327
+ "DG16": false,
328
+ }
329
+ export var eIDDataGroups = {
330
+ "DG1": true,
331
+ "DG2": false,
332
+ "DG3": true,
333
+ "DG4": false,
334
+ "DG5": true,
335
+ "DG6": false,
336
+ "DG7": true,
337
+ "DG8": false,
338
+ "DG9": true,
339
+ "DG10": false,
340
+ "DG11": true,
341
+ "DG12": false,
342
+ "DG13": true,
343
+ "DG14": false,
344
+ "DG15": true,
345
+ "DG16": false,
346
+ "DG17": true,
347
+ "DG18": false,
348
+ "DG19": true,
349
+ "DG20": false,
350
+ "DG21": true,
351
+ }
352
+ export var dtcDataGroup = {
353
+ "DG17": true,
354
+ "DG18": false,
355
+ "DG22": false,
356
+ "DG23": true,
357
+ "DG24": false,
358
+ }
359
+ export var rfidScenario = {
360
+ "paceStaticBinding": true,
361
+ "onlineTA": false,
362
+ "writeEid": true,
363
+ "universalAccessRights": false,
364
+ "authorizedRestrictedIdentification": true,
365
+ "auxVerificationCommunityID": false,
366
+ "auxVerificationDateOfBirth": true,
367
+ "skipAA": false,
368
+ "strictProcessing": true,
369
+ "pkdDSCertPriority": false,
370
+ "pkdUseExternalCSCA": true,
371
+ "trustedPKD": false,
372
+ "passiveAuth": true,
373
+ "useSFI": false,
374
+ "readEPassport": true,
375
+ "readEID": false,
376
+ "readEDL": true,
377
+ "authorizedSTSignature": false,
378
+ "authorizedSTQSignature": true,
379
+ "authorizedWriteDG17": false,
380
+ "authorizedWriteDG18": true,
381
+ "authorizedWriteDG19": false,
382
+ "authorizedWriteDG20": true,
383
+ "authorizedWriteDG21": false,
384
+ "authorizedVerifyAge": true,
385
+ "authorizedVerifyCommunityID": false,
386
+ "authorizedPrivilegedTerminal": true,
387
+ "authorizedCANAllowed": false,
388
+ "authorizedPINManagement": true,
389
+ "authorizedInstallCert": false,
390
+ "authorizedInstallQCert": true,
391
+ "applyAmendments": false,
392
+ "autoSettings": true,
393
+ "proceedReadingAlways": false,
394
+ "readDTC": true,
395
+ "mrzStrictCheck": false,
396
+ "loadCRLFromRemote": true,
397
+ "independentSODStatus": false,
398
+ "readingBuffer": -1,
399
+ "onlineTAToSignDataType": 3,
400
+ "defaultReadingBufferSize": 2,
401
+ "signManagementAction": 3,
402
+ "profilerType": 2,
403
+ "authProcType": 3,
404
+ "baseSMProcedure": 4,
405
+ "pacePasswordType": 5,
406
+ "terminalType": 1,
407
+ "password": "test1",
408
+ "pkdPA": "test2",
409
+ "pkdEAC": "test3",
410
+ "mrz": "test4",
411
+ "eSignPINDefault": "test5",
412
+ "eSignPINNewValue": "test6",
413
+ "cardAccess": "test7",
414
+ "mrzHash": "test8",
415
+ "documentNumber": "test9",
416
+ "dateOfBirth": "test10",
417
+ "dateOfExpiry": "test11",
418
+ "eDLDataGroups": eDLDataGroups,
419
+ "ePassportDataGroups": ePassportDataGroups,
420
+ "eIDDataGroups": eIDDataGroups,
421
+ "dtcDataGroups": dtcDataGroup,
422
+ }
423
+
424
+ export var initConfig = {
425
+ "delayedNNLoad": false,
426
+ "licenseUpdate": true,
427
+ "customDb": img1,
428
+ "blackList": {"key1": "val1", "key2": "val2", "key3": "val3"},
429
+ "databasePath": "test",
430
+ "license": img2,
431
+ "useBleDevice": true,
432
+ }
433
+ export var onlineProcessingConfig = {
434
+ "mode": 1,
435
+ "url": "test",
436
+ "imageFormat": 1,
437
+ "imageCompressionQuality": 1.5,
438
+ "processParams": processParams,
439
+ "requestHeaders": {"key1": "val1", "key2": "val2", "key3": "val3"},
440
+ }
441
+ export var imageInputData = {"image": img1, "light": 128, "pageIndex": 2}
442
+ export var recognizeConfig = {
443
+ "scenario": "Mrz",
444
+ "livePortrait": img1,
445
+ "extPortrait": img2,
446
+ "oneShotIdentification": true,
447
+ "dtc": img1,
448
+ "image": img3,
449
+ "data": img1,
450
+ "images": [img1, img2, img3],
451
+ "imageInputData": [imageInputData, imageInputData, imageInputData],
452
+ }
453
+ export var recognizeConfig2 = {
454
+ "onlineProcessingConfig": onlineProcessingConfig,
455
+ "livePortrait": img1,
456
+ "extPortrait": img2,
457
+ "oneShotIdentification": true,
458
+ "image": img3,
459
+ "data": img1,
460
+ "images": [img1, img2, img3],
461
+ "imageInputData": [imageInputData, imageInputData, imageInputData],
462
+ }
463
+ export var scannerConfig = {
464
+ "scenario": "Mrz",
465
+ "onlineProcessingConfig": onlineProcessingConfig,
466
+ "livePortrait": img1,
467
+ "extPortrait": img2,
468
+ "cameraId": 1,
469
+ }
470
+
471
+ export var documentsDatabase = {
472
+ "databaseID": "test1",
473
+ "version": "test2",
474
+ "date": "test3",
475
+ "databaseDescription": "test4",
476
+ "countriesNumber": 1,
477
+ "documentsNumber": 2,
478
+ "size": 3,
479
+ }
480
+ export var docReaderVersion = {
481
+ "api": "test1",
482
+ "core": "test2",
483
+ "coreMode": "test3",
484
+ "database": documentsDatabase,
485
+ }
486
+ export var docReaderScenario = {
487
+ "uvTorch": true,
488
+ "frameOrientation": 2,
489
+ "faceExt": false,
490
+ "multiPageOff": false,
491
+ "seriesProcessMode": true,
492
+ "frameKWHLandscape": 0.5,
493
+ "frameKWHPortrait": 1.5,
494
+ "frameKWHDoublePageSpreadPortrait": 2.5,
495
+ "frameKWHDoublePageSpreadLandscape": 3.5,
496
+ "name": "test1",
497
+ "caption": "test2",
498
+ "description": "test3",
499
+ "manualCrop": false,
500
+ }
501
+ export var license = {
502
+ "expiryDate": "test1",
503
+ "countryFilter": ["test2", "test3", "test4"],
504
+ "isRfidAvailable": true,
505
+ }
506
+ export var docReaderException = {"code": 1, "message": "test1"}
507
+ export var rfidException = {"code": 2, "message": "test2"}
508
+ export var prepareProgress = {"downloadedBytes": 1, "totalBytes": 2, "progress": 50}
509
+
510
+ export var authenticityElement = {
511
+ "status": 1,
512
+ "elementType": 2,
513
+ "elementDiagnose": 3,
514
+ "elementTypeName": "Photo element",
515
+ "elementDiagnoseName": "Error of internal data processing",
516
+ }
517
+ export var authenticityCheck = {
518
+ "type": 1,
519
+ "status": 2,
520
+ "typeName": "UV dull paper check",
521
+ "pageIndex": 3,
522
+ "elements": [authenticityElement, authenticityElement, authenticityElement],
523
+ }
524
+ export var authenticityResult = {
525
+ "status": 2,
526
+ "checks": [authenticityCheck, authenticityCheck, authenticityCheck],
527
+ }
528
+ export var pdf417Info = {"errorLevel": 2, "columns": 3, "rows": 4}
529
+ export var barcodeField = {
530
+ "barcodeType": 5,
531
+ "status": -6001,
532
+ "pageIndex": 2,
533
+ "pdf417Info": pdf417Info,
534
+ "data": img1,
535
+ }
536
+ export var barcodeResult = {
537
+ "fields": [barcodeField, barcodeField, barcodeField],
538
+ }
539
+ export var rect = {"bottom": 0, "top": 1, "left": 2, "right": 3}
540
+ export var imageQuality = {
541
+ "featureType": 1,
542
+ "result": 2,
543
+ "type": 3,
544
+ "boundRects": [rect, rect, rect],
545
+ }
546
+ export var imageQualityGroup = {
547
+ "count": 1,
548
+ "result": 2,
549
+ "pageIndex": 3,
550
+ "imageQualityList": [imageQuality, imageQuality, imageQuality],
551
+ }
552
+ export var accessControlProcedureType = {
553
+ "activeOptionIdx": 1,
554
+ "type": 2,
555
+ "status": 1,
556
+ "notifications": [1, 2, 3],
557
+ }
558
+ export var fileData = {"data": "test", "length": 2, "type": 3, "status": 4}
559
+ export var certificateData = {"data": "test", "length": 1}
560
+ export var securityObjectCertificates = {"securityObject": certificateData}
561
+ export var file = {
562
+ "fileData": fileData,
563
+ "fileID": "test1",
564
+ "notifications": [1, 2, 3],
565
+ "pAStatus": 1,
566
+ "readingStatus": 2,
567
+ "readingTime": 3,
568
+ "type": 4,
569
+ "typeName": "Biometry - Iris Data (DG4)",
570
+ "docFieldsText": [4, 5, 6],
571
+ "docFieldsGraphics": [7, 8, 9],
572
+ "docFieldsOriginals": [10, 11, 12],
573
+ "certificates": securityObjectCertificates,
574
+ }
575
+ export var application = {
576
+ "applicationID": "test1",
577
+ "dataHashAlgorithm": "test2",
578
+ "files": [file, file, file],
579
+ "status": 1,
580
+ "type": 2,
581
+ "unicodeVersion": "test3",
582
+ "version": "test4",
583
+ }
584
+ export var rfidValue = {
585
+ "data": "test1",
586
+ "length": 1,
587
+ "status": 2,
588
+ "type": 3,
589
+ "format": "test2",
590
+ }
591
+ export var attribute = {"type": "test", "value": rfidValue}
592
+ export var authority = {
593
+ "attributes": [attribute, attribute, attribute],
594
+ "data": "test",
595
+ "friendlyName": rfidValue,
596
+ }
597
+ export var cardProperties = {
598
+ "aTQA": 1,
599
+ "bitRateR": 2,
600
+ "bitRateS": 3,
601
+ "chipTypeA": 4,
602
+ "mifareMemory": 5,
603
+ "rfidType": 6,
604
+ "sAK": 7,
605
+ "support4": true,
606
+ "supportMifare": false,
607
+ "aTQB": "test1",
608
+ "aTR": "test2",
609
+ "baudrate1": "test3",
610
+ "baudrate2": "test4",
611
+ "uID": "test5",
612
+ }
613
+ export var extension = {"data": "test1", "type": "test2"}
614
+ export var rfidValidity = {"notAfter": rfidValue, "notBefore": rfidValue}
615
+ export var certificateChain = {
616
+ "type": 1,
617
+ "extensions": [extension, extension, extension],
618
+ "fileName": rfidValue,
619
+ "issuer": authority,
620
+ "notifications": [1, 2, 3],
621
+ "origin": 2,
622
+ "paStatus": 3,
623
+ "serialNumber": "test1",
624
+ "signatureAlgorithm": "test2",
625
+ "subject": authority,
626
+ "subjectPKAlgorithm": "test3",
627
+ "validity": rfidValidity,
628
+ "version": 4,
629
+ }
630
+ export var dataField = {"data": "test", "fieldType": 1}
631
+ export var signerInfo = {
632
+ "dataToHash": "test1",
633
+ "digestAlgorithm": "test2",
634
+ "version": 1,
635
+ "paStatus": 2,
636
+ "signatureAlgorithm": "test3",
637
+ "issuer": authority,
638
+ "serialNumber": rfidValue,
639
+ "signature": rfidValue,
640
+ "subjectKeyIdentifier": rfidValue,
641
+ "signedAttributes": [extension, extension, extension],
642
+ "certificateChain": [certificateChain, certificateChain, certificateChain],
643
+ "notifications": [1, 2, 3],
644
+ }
645
+ export var securityObject = {
646
+ "fileReference": 1,
647
+ "objectType": "test",
648
+ "version": 2,
649
+ "signerInfos": [signerInfo, signerInfo, signerInfo],
650
+ "notifications": [1, 2, 3],
651
+ }
652
+ export var rfidSessionData = {
653
+ "accessControls": [
654
+ accessControlProcedureType,
655
+ accessControlProcedureType,
656
+ accessControlProcedureType,
657
+ ],
658
+ "applications": [application, application, application],
659
+ "securityObjects": [securityObject, securityObject, securityObject],
660
+ "dataFields": [dataField, dataField, dataField],
661
+ "dataGroups": [1, 2, 3],
662
+ "cardProperties": cardProperties,
663
+ "totalBytesReceived": 1,
664
+ "totalBytesSent": 2,
665
+ "status": 1,
666
+ "extLeSupport": 1,
667
+ "processTime": 4,
668
+ }
669
+ export var bytesData = {"data": "test", "length": 1, "status": 2, "type": 3}
670
+ export var vdsncData = {
671
+ "type": "test1",
672
+ "version": 1,
673
+ "issuingCountry": "test2",
674
+ "message": {"key1": "val1", "key2": "val2", "key3": "val3"},
675
+ "signatureAlgorithm": "test3",
676
+ "signature": bytesData,
677
+ "certificate": bytesData,
678
+ "certificateChain": [certificateChain, certificateChain, certificateChain],
679
+ "notifications": [3000000001, 3000000002, 3000000003],
680
+ }
681
+ export var opticalStatus = {
682
+ "overallStatus": 0,
683
+ "mrz": 1,
684
+ "text": 2,
685
+ "docType": 0,
686
+ "security": 1,
687
+ "imageQA": 2,
688
+ "expiry": 0,
689
+ "vds": 1,
690
+ "pagesCount": 3,
691
+ }
692
+ export var rfidStatus = {
693
+ "overallStatus": 0,
694
+ "pa": 1,
695
+ "ca": 2,
696
+ "aa": 0,
697
+ "ta": 1,
698
+ "bac": 2,
699
+ "pace": 0,
700
+ }
701
+ export var resultsStatus = {
702
+ "overallStatus": 0,
703
+ "optical": 1,
704
+ "rfid": 2,
705
+ "portrait": 0,
706
+ "stopList": 1,
707
+ "detailsOptical": opticalStatus,
708
+ "detailsRFID": rfidStatus,
709
+ }
710
+ export var comparison = {"sourceTypeLeft": 0, "sourceTypeRight": 1, "status": 2}
711
+ export var graphicField = {
712
+ "sourceType": 0,
713
+ "fieldType": 201,
714
+ "fieldName": "Portrait",
715
+ "light": 128,
716
+ "lightName": "UV",
717
+ "pageIndex": 3,
718
+ "originalPageIndex": 4,
719
+ "value": img1,
720
+ "fieldRect": rect,
721
+ }
722
+ export var graphicResult = {
723
+ "fields": [graphicField, graphicField, graphicField],
724
+ }
725
+ export var rfidOrigin = {"dg": 1, "dgTag": 2, "entryView": 3, "tagEntry": 4}
726
+ export var symbol = {"rect": rect, "code": 1, "probability": 2}
727
+ export var validity = {"sourceType": 1, "status": 2}
728
+ export var value = {
729
+ "sourceType": 3,
730
+ "value": "test1",
731
+ "originalValue": "test2",
732
+ "pageIndex": 2,
733
+ "boundRect": rect,
734
+ "rfidOrigin": rfidOrigin,
735
+ "originalSymbols": [symbol, symbol, symbol],
736
+ "probability": 1,
737
+ }
738
+ export var textField = {
739
+ "fieldType": 1,
740
+ "fieldName": "Issuing state code",
741
+ "lcid": 10011,
742
+ "lcidName": "Abkhazian (Cyrillic)",
743
+ "value": "test3",
744
+ "getValue": value,
745
+ "values": [value, value, value],
746
+ "status": 2,
747
+ "comparisonList": [comparison, comparison, comparison],
748
+ "validityList": [validity, validity, validity],
749
+ "comparisonStatus": 0,
750
+ "validityStatus": 1,
751
+ }
752
+ export var textSource = {
753
+ "sourceType": validity["sourceType"],
754
+ "source": "sourceType",
755
+ "validityStatus": 1,
756
+ }
757
+ export var documentReaderTextSource2 = {
758
+ "sourceType": comparison["sourceTypeLeft"],
759
+ "source": "sourceTypeLeft",
760
+ "validityStatus": 1,
761
+ }
762
+ export var documentReaderTextSource3 = {
763
+ "sourceType": comparison["sourceTypeRight"],
764
+ "source": "sourceTypeRight",
765
+ "validityStatus": 1,
766
+ }
767
+ export var textResult = {
768
+ "status": 0,
769
+ "comparisonStatus": 1,
770
+ "validityStatus": 2,
771
+ "availableSourceList": [
772
+ textSource,
773
+ documentReaderTextSource2,
774
+ documentReaderTextSource3,
775
+ ],
776
+ "fields": [textField, textField, textField],
777
+ }
778
+ export var documentType = {
779
+ "name": "test1",
780
+ "documentID": 1,
781
+ "ICAOCode": "test2",
782
+ "FDSID": [1, 2, 3],
783
+ "dType": 11,
784
+ "dFormat": 2,
785
+ "dMRZ": true,
786
+ "isDeprecated": false,
787
+ "dDescription": "test3",
788
+ "dYear": "test4",
789
+ "dCountryName": "test5",
790
+ "pageIndex": 3,
791
+ }
792
+ export var coordinate = {"x": 1, "y": 2}
793
+ export var position = {
794
+ "docFormat": 0,
795
+ "resultStatus": 1,
796
+ "width": 2,
797
+ "height": 3,
798
+ "angle": 0.5,
799
+ "dpi": 4,
800
+ "inverse": 5,
801
+ "perspectiveTr": 6,
802
+ "objArea": 7,
803
+ "objIntAngleDev": 8,
804
+ "pageIndex": 9,
805
+ "center": coordinate,
806
+ "leftTop": coordinate,
807
+ "leftBottom": coordinate,
808
+ "rightTop": coordinate,
809
+ "rightBottom": coordinate,
810
+ }
811
+ export var transactionInfo = {
812
+ "transactionId": "test1",
813
+ "tag": "test2",
814
+ "sessionLogFolder": "test3",
815
+ }
816
+ export var results = {
817
+ "chipPage": 0,
818
+ "processingFinishedStatus": 2,
819
+ "elapsedTime": 3,
820
+ "elapsedTimeRFID": 4,
821
+ "morePagesAvailable": 5,
822
+ "graphicResult": graphicResult,
823
+ "textResult": textResult,
824
+ "documentPosition": [position],
825
+ "barcodePosition": [position, position],
826
+ "mrzPosition": [position, position, position],
827
+ "imageQuality": [imageQualityGroup, imageQualityGroup, imageQualityGroup],
828
+ "documentType": [documentType, documentType, documentType],
829
+ "rawResult": "test2",
830
+ "rfidSessionData": rfidSessionData,
831
+ "authenticityResult": authenticityResult,
832
+ "barcodeResult": barcodeResult,
833
+ "status": resultsStatus,
834
+ "vdsncData": vdsncData,
835
+ "dtcData": img1,
836
+ "transactionInfo": transactionInfo,
837
+ }
838
+
839
+ export var rfidNotification = {
840
+ "notificationCode": 65536,
841
+ "dataFileType": 1,
842
+ "progress": 2,
843
+ }
844
+ export var paAttribute = {"type": "test1", "value": "test2"}
845
+ export var paResourcesIssuer = {
846
+ "data": img1,
847
+ "friendlyName": "test",
848
+ "attributes": [paAttribute, paAttribute, paAttribute],
849
+ }
850
+ export var pkdCertificate = {
851
+ "binaryData": img1,
852
+ "resourceType": 0,
853
+ "privateKey": img2,
854
+ }
855
+ export var taChallenge = {
856
+ "data": img1,
857
+ "auxPCD": "test1",
858
+ "challengePICC": "test2",
859
+ "hashPK": "test3",
860
+ "idPICC": "test4",
861
+ }
862
+ export var tccParams = {
863
+ "serviceUrlTA": "test1",
864
+ "serviceUrlPA": "test2",
865
+ "pfxCertUrl": "test3",
866
+ "pfxPassPhrase": "test4",
867
+ "pfxCert": img1,
868
+ }