@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
@@ -0,0 +1,34 @@
1
+ import { BarcodeStatus } from "./BarcodeStatus";
2
+ import { BarcodeType } from "./BarcodeType";
3
+ import { PDF417Info } from "./PDF417Info";
4
+
5
+ export class BarcodeField {
6
+ barcodeType
7
+ status
8
+ pdf417Info
9
+ data
10
+ pageIndex
11
+
12
+ static fromJson(jsonObject) {
13
+ if (jsonObject == null) return null;
14
+
15
+ const result = new BarcodeField();
16
+ result.barcodeType = jsonObject["barcodeType"];
17
+ result.status = jsonObject["status"];
18
+ result.pageIndex = jsonObject["pageIndex"];
19
+ result.pdf417Info = PDF417Info.fromJson(jsonObject["pdf417Info"]);
20
+ result.data = jsonObject["data"];
21
+
22
+ return result;
23
+ }
24
+
25
+ toJson() {
26
+ return {
27
+ "barcodeType": this.barcodeType,
28
+ "status": this.status,
29
+ "pdf417Info": this.pdf417Info?.toJson(),
30
+ "data": this.data,
31
+ "pageIndex": this.pageIndex,
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,30 @@
1
+ import { BarcodeField } from "./BarcodeField";
2
+
3
+ export class BarcodeResult {
4
+ constructor() {
5
+ this.fields = [];
6
+ }
7
+
8
+ static fromJson(jsonObject) {
9
+ if (jsonObject == null) return null;
10
+
11
+ const result = new BarcodeResult();
12
+
13
+ if (jsonObject["fields"] != null) {
14
+ for (const item of jsonObject["fields"]) {
15
+ const field = BarcodeField.fromJson(item);
16
+ if (field != null) {
17
+ result.fields.push(field);
18
+ }
19
+ }
20
+ }
21
+
22
+ return result;
23
+ }
24
+
25
+ toJson() {
26
+ return {
27
+ "fields": this.fields?.map(e => e.toJson()),
28
+ }
29
+ }
30
+ }
@@ -0,0 +1,33 @@
1
+ export const BarcodeStatus = {
2
+ NO_ERR: 0,
3
+ INVALID_RESULT: 140,
4
+ NULL_PTR_ERR: -6001,
5
+ BAD_ARG_ERR: -6002,
6
+ SIZE_ERR: -6003,
7
+ RANGE_ERR: -6004,
8
+ INTERNAL_ERR: -6005,
9
+ TRY_EXCEPT_ERR: -6006,
10
+ BAR_CODE_NOT_FOUND: -6008,
11
+ BAR_CODE_DECODE_ERR: -6010,
12
+ NO_USER_DLL_FOUND: -6019,
13
+ NO_IPP_DLL_FOUND: -6020,
14
+ IPP_EXEC_ERR: -6024,
15
+ IPP_TRY_EXCEPT_ERR: -6025,
16
+ BARCODE_ERROR_INPUT_PARAM: -11001,
17
+ BARCODE_ERROR_FINIT: -11006,
18
+ BARCODE_ERROR_NOT_LOAD_IP_DECODED_LL: -11012,
19
+ BARCODE_ERROR_INNER_PROBLEM: -11100,
20
+ BARCODE_ERROR_DECODE_1D_BAD_DECODE: -11200,
21
+ BARCODE_ERROR_FIND_ROW_OR_COLUMN: -11201,
22
+ BARCODE_ERROR_FIND_3X8_2D_X: -11202,
23
+ BARCODE_ERROR_FIND_3X8_2D_Y: -11203,
24
+ BARCODE_ERROR_2D_UGOL_MAX: -11204,
25
+ BARCODE_ERROR_INDEFINITELY_DECODED: -11210,
26
+ BARCODE_ERROR_DLL_NOT_INIT: -11300,
27
+ BARCODE_ERROR_IP_DECODE_DLL_Try_Except: -11400,
28
+ IPDECODE_ERROR_LARGEERRORS: -4503,
29
+ IPDECODE_ERROR_FAULTCOLUMNS: -4504,
30
+ IPDECODE_ERROR_FAULTROWS: -4505,
31
+ IPDECODE_ERROR_INCORRECT_ERROR_LEVEL: -4511,
32
+ IPDECODE_ERROR_LOADING_DEV_TABLE: -4512
33
+ }
@@ -0,0 +1,21 @@
1
+ export const BarcodeType = {
2
+ BCT_CODE128: 1,
3
+ CODE39: 2,
4
+ EAN8: 3,
5
+ ITF: 4,
6
+ PDF417: 5,
7
+ STF: 6,
8
+ MTF: 7,
9
+ IATA: 8,
10
+ CODABAR: 9,
11
+ UPCA: 10,
12
+ CODE93: 11,
13
+ UPCE: 12,
14
+ EAN13: 13,
15
+ QRCODE: 14,
16
+ AZTEC: 15,
17
+ DATAMATRIX: 16,
18
+ ALL_1D: 17,
19
+ CODE11: 18,
20
+ JABCODE: 19
21
+ }
@@ -0,0 +1,24 @@
1
+ export class PDF417Info {
2
+ errorLevel
3
+ columns
4
+ rows
5
+
6
+ static fromJson(jsonObject) {
7
+ if (jsonObject == null) return null;
8
+
9
+ const result = new PDF417Info();
10
+ result.errorLevel = jsonObject["errorLevel"];
11
+ result.columns = jsonObject["columns"];
12
+ result.rows = jsonObject["rows"];
13
+
14
+ return result;
15
+ }
16
+
17
+ toJson() {
18
+ return {
19
+ "errorLevel": this.errorLevel,
20
+ "columns": this.columns,
21
+ "rows": this.rows,
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,40 @@
1
+ import { CheckResult } from "../status/CheckResult";
2
+ import { Rect } from "../visual_results/Rect";
3
+ import { ImageQualityCheckType } from "./ImageQualityCheckType";
4
+
5
+ export class ImageQuality {
6
+ featureType
7
+ result
8
+ type
9
+ boundRects
10
+
11
+ static fromJson(jsonObject) {
12
+ if (jsonObject == null) return null;
13
+
14
+ const result = new ImageQuality();
15
+ result.featureType = jsonObject["featureType"];
16
+ result.result = jsonObject["result"];
17
+ result.type = jsonObject["type"];
18
+
19
+ if (jsonObject["boundRects"] != null) {
20
+ result.boundRects = [];
21
+ for (const item of jsonObject["boundRects"]) {
22
+ const rect = Rect.fromJson(item);
23
+ if (rect != null) {
24
+ result.boundRects.push(rect);
25
+ }
26
+ }
27
+ }
28
+
29
+ return result;
30
+ }
31
+
32
+ toJson() {
33
+ return {
34
+ "featureType": this.featureType,
35
+ "result": this.result,
36
+ "type": this.type,
37
+ "boundRects": this.boundRects?.map(e => e.toJson()),
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,19 @@
1
+ import { exec } from "../../internal/bridge";
2
+
3
+ export const ImageQualityCheckType = {
4
+ IMAGE_GLARES: 0,
5
+ IMAGE_FOCUS: 1,
6
+ IMAGE_RESOLUTION: 2,
7
+ IMAGE_COLORNESS: 3,
8
+ PERSPECTIVE: 4,
9
+ BOUNDS: 5,
10
+ SCREEN_CAPTURE: 6,
11
+ PORTRAIT: 7,
12
+ HANDWRITTEN: 8,
13
+ BRIGHTNESS: 9,
14
+ OCCLUSION: 10
15
+ }
16
+
17
+ ImageQualityCheckType.getTranslation = async function (value) {
18
+ return await exec("getTranslation", ["ImageQualityCheckType", value]);
19
+ }
@@ -0,0 +1,39 @@
1
+ import { CheckResult } from "../status/CheckResult";
2
+ import { ImageQuality } from "./ImageQuality";
3
+
4
+ export class ImageQualityGroup {
5
+ count
6
+ result
7
+ imageQualityList
8
+ pageIndex
9
+
10
+ static fromJson(jsonObject) {
11
+ if (jsonObject == null) return null;
12
+
13
+ const result = new ImageQualityGroup();
14
+ result.count = jsonObject["count"];
15
+ result.result = jsonObject["result"];
16
+ result.pageIndex = jsonObject["pageIndex"];
17
+
18
+ if (jsonObject["imageQualityList"] != null) {
19
+ result.imageQualityList = [];
20
+ for (const item of jsonObject["imageQualityList"]) {
21
+ const imageQuality = ImageQuality.fromJson(item);
22
+ if (imageQuality != null) {
23
+ result.imageQualityList.push(imageQuality);
24
+ }
25
+ }
26
+ }
27
+
28
+ return result;
29
+ }
30
+
31
+ toJson() {
32
+ return {
33
+ "count": this.count,
34
+ "result": this.result,
35
+ "pageIndex": this.pageIndex,
36
+ "imageQualityList": this.imageQualityList?.map(e => e.toJson()),
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,30 @@
1
+ import { RFIDErrorCodes } from "../../rfid/RFIDErrorCodes";
2
+ import { RFIDAccessControlProcedureType } from "./RFIDAccessControlProcedureType";
3
+
4
+ export class AccessControlProcedureType {
5
+ activeOptionIdx
6
+ notifications
7
+ status
8
+ type
9
+
10
+ static fromJson(jsonObject) {
11
+ if (jsonObject == null) return null;
12
+
13
+ const result = new AccessControlProcedureType();
14
+ result.activeOptionIdx = jsonObject["activeOptionIdx"];
15
+ result.status = jsonObject["status"];
16
+ result.type = jsonObject["type"];
17
+ result.notifications = jsonObject["notifications"];
18
+
19
+ return result;
20
+ }
21
+
22
+ toJson() {
23
+ return {
24
+ "activeOptionIdx": this.activeOptionIdx,
25
+ "notifications": this.notifications,
26
+ "status": this.status,
27
+ "type": this.type,
28
+ }
29
+ }
30
+ }
@@ -0,0 +1,59 @@
1
+ import { File } from "./File";
2
+ import { RFIDErrorCodes } from '../../rfid/RFIDErrorCodes';
3
+
4
+ export class Application {
5
+ applicationID
6
+ dataHashAlgorithm
7
+ files
8
+ status
9
+ type
10
+ unicodeVersion
11
+ version
12
+
13
+ static fromJson(jsonObject) {
14
+ if (jsonObject == null) return null;
15
+
16
+ const result = new Application();
17
+ result.applicationID = jsonObject["applicationID"];
18
+ result.dataHashAlgorithm = jsonObject["dataHashAlgorithm"];
19
+ result.status = jsonObject["status"];
20
+ result.type = jsonObject["type"];
21
+ result.unicodeVersion = jsonObject["unicodeVersion"];
22
+ result.version = jsonObject["version"];
23
+
24
+ if (jsonObject["files"] != null) {
25
+ result.files = [];
26
+ for (const item of jsonObject["files"]) {
27
+ const file = File.fromJson(item);
28
+ if (file != null) {
29
+ result.files.push(file);
30
+ }
31
+ }
32
+ }
33
+
34
+ return result;
35
+ }
36
+
37
+ toJson() {
38
+ return {
39
+ "applicationID": this.applicationID,
40
+ "dataHashAlgorithm": this.dataHashAlgorithm,
41
+ "files": this.files?.map(e => e.toJson()),
42
+ "status": this.status,
43
+ "type": this.type,
44
+ "unicodeVersion": this.unicodeVersion,
45
+ "version": this.version,
46
+ }
47
+ }
48
+ }
49
+
50
+ export const RFIDApplicationType = {
51
+ E_PASSPORT: 1,
52
+ E_ID: 2,
53
+ E_SIGN: 3,
54
+ E_DL: 4,
55
+ LDS2_TRAVEL_RECORDS: 5,
56
+ LDS2_VISA_RECORDS: 6,
57
+ LDS2_ADD_BIOMETRICS: 7,
58
+ E_DTC_PC: 8
59
+ }
@@ -0,0 +1,23 @@
1
+ import { RFIDValue } from './RFIDValue';
2
+
3
+ export class Attribute {
4
+ type
5
+ value
6
+
7
+ static fromJson(jsonObject) {
8
+ if (jsonObject == null) return null;
9
+
10
+ const result = new Attribute();
11
+ result.type = jsonObject["type"];
12
+ result.value = RFIDValue.fromJson(jsonObject["value"]);
13
+
14
+ return result;
15
+ }
16
+
17
+ toJson() {
18
+ return {
19
+ "type": this.type,
20
+ "value": this.value?.toJson(),
21
+ }
22
+ }
23
+ }
@@ -0,0 +1,36 @@
1
+ import { Attribute } from './Attribute';
2
+ import { RFIDValue } from './RFIDValue';
3
+
4
+ export class Authority {
5
+ attributes
6
+ data
7
+ friendlyName
8
+
9
+ static fromJson(jsonObject) {
10
+ if (jsonObject == null) return null;
11
+
12
+ const result = new Authority();
13
+ result.data = jsonObject["data"];
14
+ result.friendlyName = RFIDValue.fromJson(jsonObject["friendlyName"]);
15
+
16
+ if (jsonObject["attributes"] != null) {
17
+ result.attributes = [];
18
+ for (const item of jsonObject["attributes"]) {
19
+ const attribute = Attribute.fromJson(item);
20
+ if (attribute != null) {
21
+ result.attributes.push(attribute);
22
+ }
23
+ }
24
+ }
25
+
26
+ return result;
27
+ }
28
+
29
+ toJson() {
30
+ return {
31
+ "attributes": this.attributes?.map(e => e.toJson()),
32
+ "data": this.data,
33
+ "friendlyName": this.friendlyName?.toJson(),
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,57 @@
1
+ export class CardProperties {
2
+ aTQA
3
+ aTQB
4
+ aTR
5
+ baudrate1
6
+ baudrate2
7
+ bitRateR
8
+ bitRateS
9
+ chipTypeA
10
+ mifareMemory
11
+ rfidType
12
+ sAK
13
+ support4
14
+ supportMifare
15
+ uID
16
+
17
+ static fromJson(jsonObject) {
18
+ if (jsonObject == null) return null;
19
+
20
+ const result = new CardProperties();
21
+ result.aTQA = jsonObject["aTQA"];
22
+ result.aTQB = jsonObject["aTQB"];
23
+ result.aTR = jsonObject["aTR"];
24
+ result.baudrate1 = jsonObject["baudrate1"];
25
+ result.baudrate2 = jsonObject["baudrate2"];
26
+ result.bitRateR = jsonObject["bitRateR"];
27
+ result.bitRateS = jsonObject["bitRateS"];
28
+ result.chipTypeA = jsonObject["chipTypeA"];
29
+ result.mifareMemory = jsonObject["mifareMemory"];
30
+ result.rfidType = jsonObject["rfidType"];
31
+ result.sAK = jsonObject["sAK"];
32
+ result.support4 = jsonObject["support4"];
33
+ result.supportMifare = jsonObject["supportMifare"];
34
+ result.uID = jsonObject["uID"];
35
+
36
+ return result;
37
+ }
38
+
39
+ toJson() {
40
+ return {
41
+ "aTQA": this.aTQA,
42
+ "bitRateR": this.bitRateR,
43
+ "bitRateS": this.bitRateS,
44
+ "chipTypeA": this.chipTypeA,
45
+ "mifareMemory": this.mifareMemory,
46
+ "rfidType": this.rfidType,
47
+ "sAK": this.sAK,
48
+ "support4": this.support4,
49
+ "supportMifare": this.supportMifare,
50
+ "aTQB": this.aTQB,
51
+ "aTR": this.aTR,
52
+ "baudrate1": this.baudrate1,
53
+ "baudrate2": this.baudrate2,
54
+ "uID": this.uID,
55
+ }
56
+ }
57
+ }
@@ -0,0 +1,69 @@
1
+ import { Authority } from "./Authority";
2
+ import { Extension } from "./Extension";
3
+ import { RFIDCertificateType } from "./RFIDCertificateType";
4
+ import { RFIDValidity } from "./RFIDValidity";
5
+ import { RFIDValue } from "./RFIDValue";
6
+
7
+ export class CertificateChain {
8
+ type
9
+ extensions
10
+ fileName
11
+ issuer
12
+ notifications
13
+ origin
14
+ paStatus
15
+ serialNumber
16
+ signatureAlgorithm
17
+ subject
18
+ subjectPKAlgorithm
19
+ validity
20
+ version
21
+
22
+ static fromJson(jsonObject) {
23
+ if (jsonObject == null) return null;
24
+
25
+ const result = new CertificateChain();
26
+ result.type = jsonObject["type"];
27
+ result.origin = jsonObject["origin"];
28
+ result.paStatus = jsonObject["paStatus"];
29
+ result.version = jsonObject["version"];
30
+ result.serialNumber = jsonObject["serialNumber"];
31
+ result.signatureAlgorithm = jsonObject["signatureAlgorithm"];
32
+ result.subjectPKAlgorithm = jsonObject["subjectPKAlgorithm"];
33
+ result.fileName = RFIDValue.fromJson(jsonObject["fileName"]);
34
+ result.issuer = Authority.fromJson(jsonObject["issuer"]);
35
+ result.subject = Authority.fromJson(jsonObject["subject"]);
36
+ result.validity = RFIDValidity.fromJson(jsonObject["validity"]);
37
+ result.notifications = jsonObject["notifications"];
38
+
39
+ if (jsonObject["extensions"] != null) {
40
+ result.extensions = [];
41
+ for (const item of jsonObject["extensions"]) {
42
+ const extension = Extension.fromJson(item);
43
+ if (extension != null) {
44
+ result.extensions.push(extension);
45
+ }
46
+ }
47
+ }
48
+
49
+ return result;
50
+ }
51
+
52
+ toJson() {
53
+ return {
54
+ "type": this.type,
55
+ "extensions": this.extensions?.map(e => e.toJson()),
56
+ "fileName": this.fileName?.toJson(),
57
+ "issuer": this.issuer?.toJson(),
58
+ "notifications": this.notifications,
59
+ "origin": this.origin,
60
+ "paStatus": this.paStatus,
61
+ "serialNumber": this.serialNumber,
62
+ "signatureAlgorithm": this.signatureAlgorithm,
63
+ "subject": this.subject?.toJson(),
64
+ "subjectPKAlgorithm": this.subjectPKAlgorithm,
65
+ "validity": this.validity?.toJson(),
66
+ "version": this.version,
67
+ }
68
+ }
69
+ }
@@ -0,0 +1,21 @@
1
+ export class CertificateData {
2
+ data
3
+ length
4
+
5
+ static fromJson(jsonObject) {
6
+ if (jsonObject == null) return null;
7
+
8
+ const result = new CertificateData();
9
+ result.data = jsonObject["data"];
10
+ result.length = jsonObject["length"];
11
+
12
+ return result;
13
+ }
14
+
15
+ toJson() {
16
+ return {
17
+ "data": this.data,
18
+ "length": this.length,
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,23 @@
1
+ import { RFIDDataFileType } from './RFIDDataFileType';
2
+
3
+ export class DataField {
4
+ data
5
+ fieldType
6
+
7
+ static fromJson(jsonObject) {
8
+ if (jsonObject == null) return null;
9
+
10
+ const result = new DataField();
11
+ result.data = jsonObject["data"] ?? "";
12
+ result.fieldType = jsonObject["fieldType"] ?? RFIDDataFileType.UNSPECIFIED;
13
+
14
+ return result;
15
+ }
16
+
17
+ toJson() {
18
+ return {
19
+ "data": this.data,
20
+ "fieldType": this.fieldType,
21
+ }
22
+ }
23
+ }
@@ -0,0 +1,21 @@
1
+ export class Extension {
2
+ data
3
+ type
4
+
5
+ static fromJson(jsonObject) {
6
+ if (jsonObject == null) return null;
7
+
8
+ const result = new Extension();
9
+ result.data = jsonObject["data"];
10
+ result.type = jsonObject["type"];
11
+
12
+ return result;
13
+ }
14
+
15
+ toJson() {
16
+ return {
17
+ "data": this.data,
18
+ "type": this.type,
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,56 @@
1
+ import { FileData } from "./FileData";
2
+ import { RFIDDataFileType } from "./RFIDDataFileType";
3
+ import { RFIDErrorCodes } from "../../rfid/RFIDErrorCodes";
4
+ import { SecurityObjectCertificates } from "./SecurityObjectCertificates";
5
+
6
+ export class File {
7
+ fileData
8
+ fileID
9
+ notifications
10
+ pAStatus
11
+ readingStatus
12
+ readingTime
13
+ type
14
+ typeName
15
+ docFieldsText
16
+ docFieldsGraphics
17
+ docFieldsOriginals
18
+ certificates
19
+
20
+ static fromJson(jsonObject) {
21
+ if (jsonObject == null) return null;
22
+
23
+ const result = new File();
24
+ result.readingTime = jsonObject["readingTime"];
25
+ result.type = jsonObject["type"];
26
+ result.typeName = jsonObject["typeName"];
27
+ result.pAStatus = jsonObject["pAStatus"];
28
+ result.readingStatus = jsonObject["readingStatus"];
29
+ result.fileID = jsonObject["fileID"];
30
+ result.fileData = FileData.fromJson(jsonObject["fileData"]);
31
+ result.certificates = SecurityObjectCertificates.fromJson(jsonObject["certificates"]);
32
+ result.notifications = jsonObject["notifications"];
33
+ result.docFieldsText = jsonObject["docFieldsText"];
34
+ result.docFieldsGraphics = jsonObject["docFieldsGraphics"];
35
+ result.docFieldsOriginals = jsonObject["docFieldsOriginals"];
36
+
37
+ return result;
38
+ }
39
+
40
+ toJson() {
41
+ return {
42
+ "fileData": this.fileData?.toJson(),
43
+ "fileID": this.fileID,
44
+ "notifications": this.notifications,
45
+ "pAStatus": this.pAStatus,
46
+ "readingStatus": this.readingStatus,
47
+ "readingTime": this.readingTime,
48
+ "type": this.type,
49
+ "typeName": this.typeName,
50
+ "docFieldsText": this.docFieldsText,
51
+ "docFieldsGraphics": this.docFieldsGraphics,
52
+ "docFieldsOriginals": this.docFieldsOriginals,
53
+ "certificates": this.certificates?.toJson(),
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,27 @@
1
+ export class FileData {
2
+ data
3
+ length
4
+ type
5
+ status
6
+
7
+ static fromJson(jsonObject) {
8
+ if (jsonObject == null) return null;
9
+
10
+ const result = new FileData();
11
+ result.data = jsonObject["data"];
12
+ result.length = jsonObject["length"];
13
+ result.type = jsonObject["type"];
14
+ result.status = jsonObject["status"];
15
+
16
+ return result;
17
+ }
18
+
19
+ toJson() {
20
+ return {
21
+ "data": this.data,
22
+ "length": this.length,
23
+ "type": this.type,
24
+ "status": this.status,
25
+ }
26
+ }
27
+ }