@regulaforensics/document-reader 8.2.186-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/RNDocumentReader.podspec +21 -0
- package/android/CVDDocumentReader.kt +74 -0
- package/android/build.gradle +36 -0
- package/android/cordova.gradle +12 -0
- package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
- package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
- package/examples/capacitor/README.md +12 -0
- package/examples/capacitor/android/app/build.gradle +50 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +252 -0
- package/examples/capacitor/android/gradlew.bat +94 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/index.html +10 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +26 -0
- package/examples/capacitor/ios/App/Podfile.lock +56 -0
- package/examples/capacitor/package-lock.json +3467 -0
- package/examples/capacitor/package.json +29 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/images/document.png +0 -0
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +6 -0
- package/examples/capacitor/src/extra/bt_device.tsx +32 -0
- package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
- package/examples/capacitor/src/main.css +131 -0
- package/examples/capacitor/src/main.html +41 -0
- package/examples/capacitor/src/main.tsx +175 -0
- package/examples/capacitor/tsconfig.json +5 -0
- package/examples/capacitor/vite.config.ts +17 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
- package/examples/cordova/README.md +12 -0
- package/examples/cordova/config.xml +29 -0
- package/examples/cordova/package-lock.json +1314 -0
- package/examples/cordova/package.json +32 -0
- package/examples/cordova/scripts/android.sh +8 -0
- package/examples/cordova/scripts/ios.sh +8 -0
- package/examples/cordova/scripts/setup.sh +8 -0
- package/examples/cordova/www/images/document.png +0 -0
- package/examples/cordova/www/images/logo.png +0 -0
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +21 -0
- package/examples/cordova/www/src/main.css +130 -0
- package/examples/cordova/www/src/main.html +63 -0
- package/examples/cordova/www/src/main.js +50 -0
- package/examples/ionic/README.md +12 -0
- package/examples/ionic/angular.json +39 -0
- package/examples/ionic/config.xml +28 -0
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/package-lock.json +16559 -0
- package/examples/ionic/package.json +47 -0
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +8 -0
- package/examples/ionic/src/assets/.gitkeep +0 -0
- package/examples/ionic/src/images/document.png +0 -0
- package/examples/ionic/src/images/icon.png +0 -0
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +130 -0
- package/examples/ionic/src/main.html +63 -0
- package/examples/ionic/src/main.ts +66 -0
- package/examples/ionic/tsconfig.json +12 -0
- package/examples/react_native/README.md +12 -0
- package/examples/react_native/app.config.ts +53 -0
- package/examples/react_native/assets/.gitkeep +0 -0
- package/examples/react_native/images/document.png +0 -0
- package/examples/react_native/images/icon/adaptive-icon.png +0 -0
- package/examples/react_native/images/icon/icon.png +0 -0
- package/examples/react_native/images/portrait.png +0 -0
- package/examples/react_native/index.html +11 -0
- package/examples/react_native/index.tsx +52 -0
- package/examples/react_native/metro.config.js +7 -0
- package/examples/react_native/package-lock.json +9254 -0
- package/examples/react_native/package.json +27 -0
- package/examples/react_native/scripts/android.sh +12 -0
- package/examples/react_native/scripts/ios.sh +11 -0
- package/examples/react_native/scripts/setup.sh +8 -0
- package/examples/react_native/src/main.css +130 -0
- package/examples/react_native/src/main.html +63 -0
- package/examples/react_native/src/main.tsx +50 -0
- package/ios/CVDDocumentReader.h +7 -0
- package/ios/CVDDocumentReader.m +39 -0
- package/ios/RGLWConfig.h +42 -0
- package/ios/RGLWConfig.m +1398 -0
- package/ios/RGLWJSONConstructor.h +185 -0
- package/ios/RGLWJSONConstructor.m +2379 -0
- package/ios/RGLWMain.h +36 -0
- package/ios/RGLWMain.m +610 -0
- package/ios/RNDocumentReader.h +8 -0
- package/ios/RNDocumentReader.m +49 -0
- package/package.json +36 -0
- package/plugin.xml +51 -0
- package/www/capacitor/config/InitConfig.js +25 -0
- package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
- package/www/capacitor/config/RFIDConfig.js +31 -0
- package/www/capacitor/config/RecognizeConfig.js +103 -0
- package/www/capacitor/config/ScannerConfig.js +38 -0
- package/www/capacitor/index.js +486 -0
- package/www/capacitor/info/DocReaderException.js +57 -0
- package/www/capacitor/info/DocReaderScenario.js +71 -0
- package/www/capacitor/info/DocReaderVersion.js +23 -0
- package/www/capacitor/info/DocumentsDatabase.js +27 -0
- package/www/capacitor/info/License.js +22 -0
- package/www/capacitor/info/PrepareProgress.js +23 -0
- package/www/capacitor/info/RFIDException.js +19 -0
- package/www/capacitor/internal/bridge.js +98 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/params/Functionality.js +303 -0
- package/www/capacitor/params/customization/Customization.js +550 -0
- package/www/capacitor/params/customization/CustomizationColors.js +74 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
- package/www/capacitor/params/customization/CustomizationImages.js +25 -0
- package/www/capacitor/params/customization/Font.js +28 -0
- package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
- package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
- package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
- package/www/capacitor/params/process_params/ImageQA.js +97 -0
- package/www/capacitor/params/process_params/LivenessParams.js +67 -0
- package/www/capacitor/params/process_params/ProcessParams.js +570 -0
- package/www/capacitor/params/process_params/RfidParams.js +15 -0
- package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/capacitor/results/DocumentType.js +285 -0
- package/www/capacitor/results/Position.js +60 -0
- package/www/capacitor/results/Results.js +318 -0
- package/www/capacitor/results/TransactionInfo.js +16 -0
- package/www/capacitor/results/authenticity/Authenticity.js +23 -0
- package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
- package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/capacitor/results/barcode/BarcodeField.js +24 -0
- package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
- package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
- package/www/capacitor/results/barcode/BarcodeType.js +21 -0
- package/www/capacitor/results/barcode/PDF417Info.js +16 -0
- package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
- package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/capacitor/results/rfid/Application.js +47 -0
- package/www/capacitor/results/rfid/Attribute.js +16 -0
- package/www/capacitor/results/rfid/Authority.js +28 -0
- package/www/capacitor/results/rfid/CardProperties.js +38 -0
- package/www/capacitor/results/rfid/CertificateChain.js +51 -0
- package/www/capacitor/results/rfid/CertificateData.js +14 -0
- package/www/capacitor/results/rfid/DataField.js +16 -0
- package/www/capacitor/results/rfid/Extension.js +14 -0
- package/www/capacitor/results/rfid/File.js +39 -0
- package/www/capacitor/results/rfid/FileData.js +18 -0
- package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
- package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
- package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
- package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
- package/www/capacitor/results/rfid/RFIDValue.js +20 -0
- package/www/capacitor/results/rfid/SecurityObject.js +31 -0
- package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/capacitor/results/rfid/SignerInfo.js +57 -0
- package/www/capacitor/results/status/CheckResult.js +5 -0
- package/www/capacitor/results/status/OpticalStatus.js +30 -0
- package/www/capacitor/results/status/RFIDStatus.js +26 -0
- package/www/capacitor/results/status/ResultsStatus.js +28 -0
- package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/capacitor/results/visual_results/Comparison.js +19 -0
- package/www/capacitor/results/visual_results/FieldType.js +658 -0
- package/www/capacitor/results/visual_results/GraphicField.js +33 -0
- package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
- package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
- package/www/capacitor/results/visual_results/LCID.js +174 -0
- package/www/capacitor/results/visual_results/Lights.js +11 -0
- package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
- package/www/capacitor/results/visual_results/Rect.js +18 -0
- package/www/capacitor/results/visual_results/Symbol.js +18 -0
- package/www/capacitor/results/visual_results/TextField.js +68 -0
- package/www/capacitor/results/visual_results/TextResult.js +42 -0
- package/www/capacitor/results/visual_results/TextSource.js +19 -0
- package/www/capacitor/results/visual_results/Validity.js +17 -0
- package/www/capacitor/results/visual_results/Value.js +39 -0
- package/www/capacitor/rfid/PAAttribute.js +17 -0
- package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
- package/www/capacitor/rfid/PKDCertificate.js +54 -0
- package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
- package/www/capacitor/rfid/RFIDNotification.js +60 -0
- package/www/capacitor/rfid/TAChallenge.js +23 -0
- package/www/capacitor/rfid/TccParams.js +24 -0
- package/www/cordova.js +9816 -0
- package/www/react-native/config/InitConfig.js +25 -0
- package/www/react-native/config/OnlineProcessingConfig.js +41 -0
- package/www/react-native/config/RFIDConfig.js +31 -0
- package/www/react-native/config/RecognizeConfig.js +103 -0
- package/www/react-native/config/ScannerConfig.js +38 -0
- package/www/react-native/index.js +486 -0
- package/www/react-native/info/DocReaderException.js +57 -0
- package/www/react-native/info/DocReaderScenario.js +71 -0
- package/www/react-native/info/DocReaderVersion.js +23 -0
- package/www/react-native/info/DocumentsDatabase.js +27 -0
- package/www/react-native/info/License.js +22 -0
- package/www/react-native/info/PrepareProgress.js +23 -0
- package/www/react-native/info/RFIDException.js +19 -0
- package/www/react-native/internal/bridge.js +98 -0
- package/www/react-native/params/Functionality.js +303 -0
- package/www/react-native/params/customization/Customization.js +550 -0
- package/www/react-native/params/customization/CustomizationColors.js +74 -0
- package/www/react-native/params/customization/CustomizationFonts.js +40 -0
- package/www/react-native/params/customization/CustomizationImages.js +25 -0
- package/www/react-native/params/customization/Font.js +28 -0
- package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
- package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/react-native/params/process_params/FaceApiParams.js +38 -0
- package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
- package/www/react-native/params/process_params/ImageQA.js +97 -0
- package/www/react-native/params/process_params/LivenessParams.js +67 -0
- package/www/react-native/params/process_params/ProcessParams.js +570 -0
- package/www/react-native/params/process_params/RfidParams.js +15 -0
- package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/react-native/results/DocumentType.js +285 -0
- package/www/react-native/results/Position.js +60 -0
- package/www/react-native/results/Results.js +318 -0
- package/www/react-native/results/TransactionInfo.js +16 -0
- package/www/react-native/results/authenticity/Authenticity.js +23 -0
- package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
- package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
- package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/react-native/results/barcode/BarcodeField.js +24 -0
- package/www/react-native/results/barcode/BarcodeResult.js +24 -0
- package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
- package/www/react-native/results/barcode/BarcodeType.js +21 -0
- package/www/react-native/results/barcode/PDF417Info.js +16 -0
- package/www/react-native/results/image_quality/ImageQuality.js +31 -0
- package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/react-native/results/rfid/Application.js +47 -0
- package/www/react-native/results/rfid/Attribute.js +16 -0
- package/www/react-native/results/rfid/Authority.js +28 -0
- package/www/react-native/results/rfid/CardProperties.js +38 -0
- package/www/react-native/results/rfid/CertificateChain.js +51 -0
- package/www/react-native/results/rfid/CertificateData.js +14 -0
- package/www/react-native/results/rfid/DataField.js +16 -0
- package/www/react-native/results/rfid/Extension.js +14 -0
- package/www/react-native/results/rfid/File.js +39 -0
- package/www/react-native/results/rfid/FileData.js +18 -0
- package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
- package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
- package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
- package/www/react-native/results/rfid/RFIDValidity.js +16 -0
- package/www/react-native/results/rfid/RFIDValue.js +20 -0
- package/www/react-native/results/rfid/SecurityObject.js +31 -0
- package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/react-native/results/rfid/SignerInfo.js +57 -0
- package/www/react-native/results/status/CheckResult.js +5 -0
- package/www/react-native/results/status/OpticalStatus.js +30 -0
- package/www/react-native/results/status/RFIDStatus.js +26 -0
- package/www/react-native/results/status/ResultsStatus.js +28 -0
- package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/react-native/results/visual_results/Comparison.js +19 -0
- package/www/react-native/results/visual_results/FieldType.js +658 -0
- package/www/react-native/results/visual_results/GraphicField.js +33 -0
- package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
- package/www/react-native/results/visual_results/GraphicResult.js +22 -0
- package/www/react-native/results/visual_results/LCID.js +174 -0
- package/www/react-native/results/visual_results/Lights.js +11 -0
- package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
- package/www/react-native/results/visual_results/Rect.js +18 -0
- package/www/react-native/results/visual_results/Symbol.js +18 -0
- package/www/react-native/results/visual_results/TextField.js +68 -0
- package/www/react-native/results/visual_results/TextResult.js +42 -0
- package/www/react-native/results/visual_results/TextSource.js +19 -0
- package/www/react-native/results/visual_results/Validity.js +17 -0
- package/www/react-native/results/visual_results/Value.js +39 -0
- package/www/react-native/rfid/PAAttribute.js +17 -0
- package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
- package/www/react-native/rfid/PKDCertificate.js +54 -0
- package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
- package/www/react-native/rfid/RFIDNotification.js +60 -0
- package/www/react-native/rfid/TAChallenge.js +23 -0
- package/www/react-native/rfid/TccParams.js +24 -0
- package/www/types/config/InitConfig.d.ts +63 -0
- package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
- package/www/types/config/RFIDConfig.d.ts +131 -0
- package/www/types/config/RecognizeConfig.d.ts +119 -0
- package/www/types/config/ScannerConfig.d.ts +54 -0
- package/www/types/index.d.ts +421 -0
- package/www/types/info/DocReaderException.d.ts +79 -0
- package/www/types/info/DocReaderScenario.d.ts +90 -0
- package/www/types/info/DocReaderVersion.d.ts +28 -0
- package/www/types/info/DocumentsDatabase.d.ts +42 -0
- package/www/types/info/License.d.ts +23 -0
- package/www/types/info/PrepareProgress.d.ts +15 -0
- package/www/types/info/RFIDException.d.ts +8 -0
- package/www/types/params/Functionality.d.ts +316 -0
- package/www/types/params/customization/Customization.d.ts +558 -0
- package/www/types/params/customization/CustomizationColors.d.ts +16 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
- package/www/types/params/customization/CustomizationImages.d.ts +12 -0
- package/www/types/params/customization/Font.d.ts +36 -0
- package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
- package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
- package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
- package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
- package/www/types/params/process_params/ImageQA.d.ts +79 -0
- package/www/types/params/process_params/LivenessParams.d.ts +20 -0
- package/www/types/params/process_params/ProcessParams.d.ts +465 -0
- package/www/types/params/process_params/RfidParams.d.ts +19 -0
- package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
- package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
- package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
- package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
- package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
- package/www/types/results/DocumentType.d.ts +525 -0
- package/www/types/results/Position.d.ts +50 -0
- package/www/types/results/Results.d.ts +283 -0
- package/www/types/results/TransactionInfo.d.ts +9 -0
- package/www/types/results/authenticity/Authenticity.d.ts +67 -0
- package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
- package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
- package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
- package/www/types/results/barcode/BarcodeField.d.ts +37 -0
- package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
- package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
- package/www/types/results/barcode/BarcodeType.d.ts +45 -0
- package/www/types/results/barcode/PDF417Info.d.ts +15 -0
- package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
- package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
- package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
- package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
- package/www/types/results/rfid/Application.d.ts +44 -0
- package/www/types/results/rfid/Attribute.d.ts +9 -0
- package/www/types/results/rfid/Authority.d.ts +11 -0
- package/www/types/results/rfid/CardProperties.d.ts +48 -0
- package/www/types/results/rfid/CertificateChain.d.ts +28 -0
- package/www/types/results/rfid/CertificateData.d.ts +7 -0
- package/www/types/results/rfid/DataField.d.ts +9 -0
- package/www/types/results/rfid/Extension.d.ts +7 -0
- package/www/types/results/rfid/File.d.ts +22 -0
- package/www/types/results/rfid/FileData.d.ts +9 -0
- package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
- package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
- package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
- package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
- package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
- package/www/types/results/rfid/RFIDValue.d.ts +10 -0
- package/www/types/results/rfid/SecurityObject.d.ts +28 -0
- package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
- package/www/types/results/rfid/SignerInfo.d.ts +41 -0
- package/www/types/results/status/CheckResult.d.ts +8 -0
- package/www/types/results/status/OpticalStatus.d.ts +29 -0
- package/www/types/results/status/RFIDStatus.d.ts +22 -0
- package/www/types/results/status/ResultsStatus.d.ts +24 -0
- package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
- package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
- package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
- package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
- package/www/types/results/visual_results/Comparison.d.ts +15 -0
- package/www/types/results/visual_results/FieldType.d.ts +1310 -0
- package/www/types/results/visual_results/GraphicField.d.ts +29 -0
- package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
- package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
- package/www/types/results/visual_results/LCID.d.ts +173 -0
- package/www/types/results/visual_results/Lights.d.ts +23 -0
- package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
- package/www/types/results/visual_results/Rect.d.ts +9 -0
- package/www/types/results/visual_results/Symbol.d.ts +14 -0
- package/www/types/results/visual_results/TextField.d.ts +40 -0
- package/www/types/results/visual_results/TextResult.d.ts +23 -0
- package/www/types/results/visual_results/TextSource.d.ts +15 -0
- package/www/types/results/visual_results/Validity.d.ts +13 -0
- package/www/types/results/visual_results/Value.d.ts +27 -0
- package/www/types/rfid/PAAttribute.d.ts +4 -0
- package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
- package/www/types/rfid/PKDCertificate.d.ts +34 -0
- package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
- package/www/types/rfid/RFIDNotification.d.ts +153 -0
- package/www/types/rfid/TAChallenge.d.ts +7 -0
- package/www/types/rfid/TccParams.d.ts +25 -0
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
import { exec, _setDocumentReaderCompletion, _setRFIDCompletion, _setDocumentReaderPrepareCompletion, _setCustomButtonTappedCompletion, _setVideoEncoderCompletion, _setRFIDProgressCompletion, _setChipDetectedCompletion, _setRetryReadChipCompletion, _setPaCertificateCompletion, _setTaCertificateCompletion, _setTaSignatureCompletion } from './internal/bridge'
|
|
2
|
+
|
|
3
|
+
import { OnlineProcessingConfig, ImageFormat, OnlineMode } from './config/OnlineProcessingConfig';
|
|
4
|
+
import { InitConfig } from './config/InitConfig';
|
|
5
|
+
import { RFIDConfig } from './config/RFIDConfig';
|
|
6
|
+
import { ScannerConfig } from './config/ScannerConfig';
|
|
7
|
+
import { RecognizeConfig, ImageInputData } from './config/RecognizeConfig';
|
|
8
|
+
export { OnlineProcessingConfig, ImageFormat, OnlineMode, InitConfig, RFIDConfig, ScannerConfig, RecognizeConfig, ImageInputData };
|
|
9
|
+
|
|
10
|
+
import { DocReaderVersion } from './info/DocReaderVersion';
|
|
11
|
+
import { PrepareProgress } from './info/PrepareProgress';
|
|
12
|
+
import { DocReaderException, ErrorCodes } from './info/DocReaderException';
|
|
13
|
+
import { DocumentsDatabase } from './info/DocumentsDatabase';
|
|
14
|
+
import { License } from './info/License';
|
|
15
|
+
import { DocReaderScenario, Scenario, DocReaderOrientation } from './info/DocReaderScenario';
|
|
16
|
+
import { RFIDException } from './info/RFIDException';
|
|
17
|
+
export { DocReaderVersion, PrepareProgress, DocReaderException, ErrorCodes, DocumentsDatabase, License, DocReaderScenario, Scenario, DocReaderOrientation, RFIDException };
|
|
18
|
+
|
|
19
|
+
import { LCID } from './results/visual_results/LCID';
|
|
20
|
+
import { GraphicFieldType } from './results/visual_results/GraphicFieldType';
|
|
21
|
+
import { Value } from './results/visual_results/Value';
|
|
22
|
+
import { Rect } from './results/visual_results/Rect';
|
|
23
|
+
import { Symbol } from './results/visual_results/Symbol';
|
|
24
|
+
import { Comparison } from './results/visual_results/Comparison';
|
|
25
|
+
import { TextField } from './results/visual_results/TextField';
|
|
26
|
+
import { Lights } from './results/visual_results/Lights';
|
|
27
|
+
import { Validity } from './results/visual_results/Validity';
|
|
28
|
+
import { FieldType } from './results/visual_results/FieldType';
|
|
29
|
+
import { GraphicField } from './results/visual_results/GraphicField';
|
|
30
|
+
import { RFIDOrigin } from './results/visual_results/RFIDOrigin';
|
|
31
|
+
import { TextResult } from './results/visual_results/TextResult';
|
|
32
|
+
import { TextSource } from './results/visual_results/TextSource';
|
|
33
|
+
import { GraphicResult } from './results/visual_results/GraphicResult';
|
|
34
|
+
export { LCID, GraphicFieldType, Value, Rect, Symbol, Comparison, TextField, Lights, Validity, FieldType, GraphicField, RFIDOrigin, TextResult, TextSource, GraphicResult };
|
|
35
|
+
|
|
36
|
+
import { DocumentType, DocFormat, DocType as DocumentTypeEnum } from './results/DocumentType';
|
|
37
|
+
import { Results, ResultType } from './results/Results';
|
|
38
|
+
import { TransactionInfo } from './results/TransactionInfo';
|
|
39
|
+
import { Position, Coordinate } from './results/Position';
|
|
40
|
+
export { DocumentType, DocFormat, DocumentTypeEnum, Results, ResultType, TransactionInfo, Position, Coordinate };
|
|
41
|
+
|
|
42
|
+
import { RFIDStatus } from './results/status/RFIDStatus';
|
|
43
|
+
import { ResultsStatus } from './results/status/ResultsStatus';
|
|
44
|
+
import { CheckResult } from './results/status/CheckResult';
|
|
45
|
+
import { OpticalStatus } from './results/status/OpticalStatus';
|
|
46
|
+
import { ProcessingFinishedStatus } from './results/Results';
|
|
47
|
+
export { RFIDStatus, ResultsStatus, CheckResult, OpticalStatus, ProcessingFinishedStatus };
|
|
48
|
+
|
|
49
|
+
import { CheckDiagnose } from './results/authenticity/CheckDiagnose';
|
|
50
|
+
import { AuthenticityElement } from './results/authenticity/AuthenticityElement';
|
|
51
|
+
import { AuthenticityResult } from './results/authenticity/AuthenticityResult';
|
|
52
|
+
import { AuthenticityCheck } from './results/authenticity/AuthenticityCheck';
|
|
53
|
+
import { SecurityFeatureType } from './results/authenticity/SecurityFeatureType';
|
|
54
|
+
import { Authenticity } from './results/authenticity/Authenticity';
|
|
55
|
+
export { CheckDiagnose, AuthenticityElement, AuthenticityResult, AuthenticityCheck, SecurityFeatureType, Authenticity };
|
|
56
|
+
|
|
57
|
+
import { PDF417Info } from './results/barcode/PDF417Info';
|
|
58
|
+
import { BarcodeStatus } from './results/barcode/BarcodeStatus';
|
|
59
|
+
import { BarcodeType } from './results/barcode/BarcodeType';
|
|
60
|
+
import { BarcodeResult } from './results/barcode/BarcodeResult';
|
|
61
|
+
import { BarcodeField } from './results/barcode/BarcodeField';
|
|
62
|
+
export { PDF417Info, BarcodeStatus, BarcodeType, BarcodeResult, BarcodeField };
|
|
63
|
+
|
|
64
|
+
import { ImageQuality } from './results/image_quality/ImageQuality';
|
|
65
|
+
import { ImageQualityGroup } from './results/image_quality/ImageQualityGroup';
|
|
66
|
+
import { ImageQualityCheckType } from './results/image_quality/ImageQualityCheckType';
|
|
67
|
+
export { ImageQuality, ImageQualityGroup, ImageQualityCheckType };
|
|
68
|
+
|
|
69
|
+
import { LDSParsingErrorCodes } from './results/visible_digital_seals/LDSParsingErrorCodes';
|
|
70
|
+
import { VDSNCData } from './results/visible_digital_seals/VDSNCData';
|
|
71
|
+
import { BytesData } from './results/visible_digital_seals/BytesData';
|
|
72
|
+
import { LDSParsingNotificationCodes } from './results/visible_digital_seals/LDSParsingNotificationCodes';
|
|
73
|
+
export { LDSParsingErrorCodes, VDSNCData, BytesData, LDSParsingNotificationCodes };
|
|
74
|
+
|
|
75
|
+
import { SecurityObject } from './results/rfid/SecurityObject';
|
|
76
|
+
import { CardProperties } from './results/rfid/CardProperties';
|
|
77
|
+
import { DataField } from './results/rfid/DataField';
|
|
78
|
+
import { Attribute } from './results/rfid/Attribute';
|
|
79
|
+
import { SignerInfo } from './results/rfid/SignerInfo';
|
|
80
|
+
import { SecurityObjectCertificates } from './results/rfid/SecurityObjectCertificates';
|
|
81
|
+
import { CertificateChain } from './results/rfid/CertificateChain';
|
|
82
|
+
import { Authority } from './results/rfid/Authority';
|
|
83
|
+
import { File } from './results/rfid/File';
|
|
84
|
+
import { RFIDValue } from './results/rfid/RFIDValue';
|
|
85
|
+
import { RFIDValidity } from './results/rfid/RFIDValidity';
|
|
86
|
+
import { RFIDDataFileType } from './results/rfid/RFIDDataFileType';
|
|
87
|
+
import { CertificateData } from './results/rfid/CertificateData';
|
|
88
|
+
import { FileData } from './results/rfid/FileData';
|
|
89
|
+
import { RFIDCertificateType } from './results/rfid/RFIDCertificateType';
|
|
90
|
+
import { RFIDSessionData } from './results/rfid/RFIDSessionData';
|
|
91
|
+
import { Application, RFIDApplicationType } from './results/rfid/Application';
|
|
92
|
+
import { RFIDAccessControlProcedureType } from './results/rfid/RFIDAccessControlProcedureType';
|
|
93
|
+
import { Extension } from './results/rfid/Extension';
|
|
94
|
+
import { AccessControlProcedureType } from './results/rfid/AccessControlProcedureType';
|
|
95
|
+
export { SecurityObject, CardProperties, DataField, Attribute, SignerInfo, SecurityObjectCertificates, CertificateChain, Authority, File, RFIDValue, RFIDValidity, RFIDDataFileType, CertificateData, FileData, RFIDCertificateType, RFIDSessionData, Application, RFIDApplicationType, RFIDAccessControlProcedureType, Extension, AccessControlProcedureType };
|
|
96
|
+
|
|
97
|
+
import { LivenessParams } from './params/process_params/LivenessParams';
|
|
98
|
+
import { ProcessParams, MeasureSystem, MRZFormat, LogLevel, MrzDetectionModes } from './params/process_params/ProcessParams';
|
|
99
|
+
import { GlaresCheckParams } from './params/process_params/GlaresCheckParams';
|
|
100
|
+
import { FaceApiParams } from './params/process_params/FaceApiParams';
|
|
101
|
+
import { RFIDParams } from './params/process_params/RfidParams';
|
|
102
|
+
import { ImageQA } from './params/process_params/ImageQA';
|
|
103
|
+
import { AuthenticityParams } from './params/process_params/AuthenticityParams';
|
|
104
|
+
import { BackendProcessingConfig } from './params/process_params/BackendProcessingConfig';
|
|
105
|
+
import { FaceApiSearchParams } from './params/process_params/FaceApiSearchParams';
|
|
106
|
+
export { LivenessParams, ProcessParams, MeasureSystem, MRZFormat, LogLevel, MrzDetectionModes, GlaresCheckParams, FaceApiParams, RFIDParams as RfidParams, ImageQA, AuthenticityParams, BackendProcessingConfig, FaceApiSearchParams };
|
|
107
|
+
|
|
108
|
+
import { Functionality, CameraPosition, CaptureMode, CameraMode, CaptureSessionPreset, DocReaderFrame, CameraSize } from './params/Functionality';
|
|
109
|
+
export { Functionality, CameraPosition, CaptureMode, CameraMode, CaptureSessionPreset, DocReaderFrame, CameraSize };
|
|
110
|
+
|
|
111
|
+
import { CustomizationFonts } from './params/customization/CustomizationFonts';
|
|
112
|
+
import { CustomizationImages } from './params/customization/CustomizationImages';
|
|
113
|
+
import { Font, FontStyle } from './params/customization/Font';
|
|
114
|
+
import { Customization, Cap, FrameShapeType, ViewContentMode, CustomButtonTag } from './params/customization/Customization';
|
|
115
|
+
import { CustomizationColors } from './params/customization/CustomizationColors';
|
|
116
|
+
export { CustomizationFonts, CustomizationImages, Font, FontStyle, Customization, Cap, FrameShapeType, ViewContentMode, CustomButtonTag, CustomizationColors };
|
|
117
|
+
|
|
118
|
+
import { EPassportDataGroups } from './params/rfid_scenario/EPassportDataGroups';
|
|
119
|
+
import { EIDDataGroups } from './params/rfid_scenario/EIDDataGroups';
|
|
120
|
+
import { DTCDataGroup } from './params/rfid_scenario/DTCDataGroups';
|
|
121
|
+
import { RFIDScenario, RFIDAuthenticationProcedureType, RFIDPasswordType, RFIDSDKProfilerType, RFIDTerminalType, SignManagementAction, RFIDReadingBufferSize } from './params/rfid_scenario/RFIDScenario';
|
|
122
|
+
import { EDLDataGroups } from './params/rfid_scenario/EDLDataGroups';
|
|
123
|
+
export { EPassportDataGroups, EIDDataGroups, DTCDataGroup as DTCDataGroups, RFIDScenario, RFIDAuthenticationProcedureType, RFIDPasswordType, RFIDSDKProfilerType, RFIDTerminalType, SignManagementAction, RFIDReadingBufferSize, EDLDataGroups };
|
|
124
|
+
|
|
125
|
+
import { PAResourcesIssuer } from './rfid/PAResourcesIssuer';
|
|
126
|
+
import { RFIDErrorCodes } from './rfid/RFIDErrorCodes';
|
|
127
|
+
import { TccParams } from './rfid/TccParams';
|
|
128
|
+
import { RFIDNotification, RFIDNotificationCodes } from './rfid/RFIDNotification';
|
|
129
|
+
import { PAAttribute } from './rfid/PAAttribute';
|
|
130
|
+
import { TAChallenge } from './rfid/TAChallenge';
|
|
131
|
+
import { PKDCertificate, PKDResourceType } from './rfid/PKDCertificate';
|
|
132
|
+
export { PAResourcesIssuer, RFIDErrorCodes, TccParams, RFIDNotification, RFIDNotificationCodes, PAAttribute, TAChallenge, PKDCertificate, PKDResourceType };
|
|
133
|
+
|
|
134
|
+
export class DocumentReader {
|
|
135
|
+
static get instance() { return DocumentReader._instance }
|
|
136
|
+
static _instance = new DocumentReader()
|
|
137
|
+
|
|
138
|
+
get availableScenarios() { return this._availableScenarios }
|
|
139
|
+
_availableScenarios = []
|
|
140
|
+
|
|
141
|
+
get version() { return this._version }
|
|
142
|
+
_version = null
|
|
143
|
+
|
|
144
|
+
get license() { return this._license }
|
|
145
|
+
_license = new License()
|
|
146
|
+
|
|
147
|
+
async isRFIDAvailableForUse() {
|
|
148
|
+
return await exec("getIsRFIDAvailableForUse", []);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
async isAuthenticatorRFIDAvailableForUse() {
|
|
152
|
+
return await exec("isAuthenticatorRFIDAvailableForUse", []);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
async isAuthenticatorAvailableForUse() {
|
|
156
|
+
return await exec("isAuthenticatorAvailableForUse", []);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
get rfidSessionStatus() { return this._rfidSessionStatus }
|
|
160
|
+
_rfidSessionStatus = null
|
|
161
|
+
set rfidSessionStatus(val) {
|
|
162
|
+
this._rfidSessionStatus = val;
|
|
163
|
+
this._setRfidSessionStatus(val);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
get tag() { return this._tag }
|
|
167
|
+
_tag = null
|
|
168
|
+
set tag(val) {
|
|
169
|
+
this._tag = val;
|
|
170
|
+
this._setTag(val);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
get tenant() { return this._tenant }
|
|
174
|
+
_tenant = null
|
|
175
|
+
set tenant(val) {
|
|
176
|
+
this._tenant = val;
|
|
177
|
+
this._setTenant(val);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
get env() { return this._env }
|
|
181
|
+
_env = null
|
|
182
|
+
set env(val) {
|
|
183
|
+
this._env = val;
|
|
184
|
+
this._setEnv(val);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
get localizationDictionary() { return this._localizationDictionary }
|
|
188
|
+
_localizationDictionary = null
|
|
189
|
+
set localizationDictionary(val) {
|
|
190
|
+
var temp = Object.assign({}, val);
|
|
191
|
+
Object.freeze(temp);
|
|
192
|
+
this._localizationDictionary = temp
|
|
193
|
+
this._setLocalizationDictionary(val)
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
get functionality() { return this._functionality }
|
|
197
|
+
_functionality = new Functionality()
|
|
198
|
+
set functionality(val) {
|
|
199
|
+
this._functionality = val;
|
|
200
|
+
this._functionality._apply();
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
get processParams() { return this._processParams }
|
|
204
|
+
_processParams = new ProcessParams()
|
|
205
|
+
set processParams(val) {
|
|
206
|
+
this._processParams = val;
|
|
207
|
+
this._processParams._apply();
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
get customization() { return this._customization }
|
|
211
|
+
_customization = new Customization()
|
|
212
|
+
set customization(val) {
|
|
213
|
+
this._customization = val;
|
|
214
|
+
this._customization._apply();
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
get rfidScenario() { return this._rfidScenario }
|
|
218
|
+
_rfidScenario = new RFIDScenario()
|
|
219
|
+
set rfidScenario(val) {
|
|
220
|
+
this._rfidScenario = val;
|
|
221
|
+
this._rfidScenario._apply();
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
async isReady() {
|
|
225
|
+
return await exec("getDocumentReaderIsReady", []);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
async status() {
|
|
229
|
+
return await exec("getDocumentReaderStatus", []);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
resetConfiguration() {
|
|
233
|
+
exec("resetConfiguration", []);
|
|
234
|
+
this._functionality = new Functionality();
|
|
235
|
+
this._processParams = new ProcessParams();
|
|
236
|
+
this._customization = new Customization();
|
|
237
|
+
this._rfidScenario = new RFIDScenario();
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
set onCustomButtonTapped(completion) {
|
|
241
|
+
_setCustomButtonTappedCompletion(completion);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
set videoEncoderCompletion(completion) {
|
|
245
|
+
_setVideoEncoderCompletion(completion);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
async initialize(config) {
|
|
249
|
+
var response = await exec("initialize", [config])
|
|
250
|
+
var [success, error] = this._successOrErrorFromJson(response)
|
|
251
|
+
if (success) await this._onInit()
|
|
252
|
+
return [success, error]
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
async connectBluetoothDevice(deviceName) {
|
|
256
|
+
this.functionality.btDeviceName = deviceName;
|
|
257
|
+
return await exec("connectBluetoothDevice", [deviceName]);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
async deinitializeReader() {
|
|
261
|
+
await exec("deinitializeReader", []);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
async prepareDatabase(databaseID, prepareCompletion) {
|
|
265
|
+
_setDocumentReaderPrepareCompletion(prepareCompletion);
|
|
266
|
+
var response = await exec("prepareDatabase", [databaseID]);
|
|
267
|
+
return this._successOrErrorFromJson(response);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
async runAutoUpdate(databaseID, prepareCompletion) {
|
|
271
|
+
_setDocumentReaderPrepareCompletion(prepareCompletion);
|
|
272
|
+
var response = await exec("runAutoUpdate", [databaseID]);
|
|
273
|
+
return this._successOrErrorFromJson(response);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
async checkDatabaseUpdate(databaseID) {
|
|
277
|
+
var response = await exec("checkDatabaseUpdate", [databaseID]);
|
|
278
|
+
return DocumentsDatabase.fromJson(response ? JSON.parse(response) : null);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
async cancelDBUpdate() {
|
|
282
|
+
return await exec("cancelDBUpdate", []);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
async removeDatabase() {
|
|
286
|
+
return await exec("removeDatabase", []);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
async startNewPage() {
|
|
290
|
+
await exec("startNewPage", []);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
async startNewSession() {
|
|
294
|
+
await exec("startNewSession", []);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
scan(config, completion) {
|
|
298
|
+
_setDocumentReaderCompletion(completion);
|
|
299
|
+
exec("scan", [config]);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
startScanner(config, completion) {
|
|
303
|
+
_setDocumentReaderCompletion(completion);
|
|
304
|
+
exec("startScanner", [config]);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
recognize(config, completion) {
|
|
308
|
+
_setDocumentReaderCompletion(completion);
|
|
309
|
+
exec("recognize", [config]);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
rfid(config) {
|
|
313
|
+
if (config._disableUI) {
|
|
314
|
+
_setRFIDCompletion(config._rfidCompletion);
|
|
315
|
+
} else {
|
|
316
|
+
_setDocumentReaderCompletion(config._completion);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
_setRFIDProgressCompletion(config.onProgress);
|
|
320
|
+
_setChipDetectedCompletion(config.onChipDetected);
|
|
321
|
+
_setRetryReadChipCompletion(config.onRetryReadChip);
|
|
322
|
+
_setPaCertificateCompletion(config.onRequestPACertificates);
|
|
323
|
+
_setTaCertificateCompletion(config.onRequestTACertificates);
|
|
324
|
+
_setTaSignatureCompletion(config.onRequestTASignature);
|
|
325
|
+
|
|
326
|
+
exec(config._disableUI ? "readRFID" : "startRFIDReader", [
|
|
327
|
+
config.onRequestPACertificates != null,
|
|
328
|
+
config.onRequestTACertificates != null,
|
|
329
|
+
config.onRequestTASignature != null,
|
|
330
|
+
]);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
async stopScanner() {
|
|
334
|
+
await exec("stopScanner", []);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
async stopRFIDReader() {
|
|
338
|
+
await exec("stopRFIDReader", []);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
async addPKDCertificates(certificates) {
|
|
342
|
+
await exec("addPKDCertificates", [certificates]);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
async clearPKDCertificates() {
|
|
346
|
+
await exec("clearPKDCertificates", []);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
async setTCCParams(params) {
|
|
350
|
+
var response = await exec("setTCCParams", [params]);
|
|
351
|
+
return this._successOrErrorFromJson(response);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
async finalizePackage() {
|
|
355
|
+
var response = await exec("finalizePackage", []);
|
|
356
|
+
var jsonObject = JSON.parse(response);
|
|
357
|
+
var action = jsonObject["action"];
|
|
358
|
+
var info = TransactionInfo.fromJson(jsonObject["info"]);
|
|
359
|
+
var error = DocReaderException.fromJson(jsonObject["error"]);
|
|
360
|
+
|
|
361
|
+
return [action, info, error];
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
async endBackendTransaction() {
|
|
365
|
+
await exec("endBackendTransaction", []);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
_successOrErrorFromJson(jsonString) {
|
|
369
|
+
var jsonObject = JSON.parse(jsonString);
|
|
370
|
+
var success = jsonObject["success"];
|
|
371
|
+
var error = DocReaderException.fromJson(jsonObject["error"]);
|
|
372
|
+
return [success, error];
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
async _onInit() {
|
|
376
|
+
this._version = await this._getDocReaderVersion();
|
|
377
|
+
this._availableScenarios = await this._getAvailableScenarios();
|
|
378
|
+
this._license = await this._getLicense();
|
|
379
|
+
this._tag = await this._getTag();
|
|
380
|
+
this._tenant = await this._getTenant();
|
|
381
|
+
this._env = await this._getEnv();
|
|
382
|
+
this._rfidSessionStatus = await this._getRfidSessionStatus();
|
|
383
|
+
this._functionality = await this._getFunctionality();
|
|
384
|
+
this._processParams = await this._getProcessParams();
|
|
385
|
+
this._customization = await this._getCustomization();
|
|
386
|
+
this._rfidScenario = await this._getRfidScenario();
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
async _getProcessParams() {
|
|
390
|
+
const response = await exec("getProcessParams", []);
|
|
391
|
+
return ProcessParams.fromJson(JSON.parse(response));
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
async _getFunctionality() {
|
|
395
|
+
const response = await exec("getFunctionality", []);
|
|
396
|
+
return Functionality.fromJson(JSON.parse(response));
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
async _getCustomization() {
|
|
400
|
+
const response = await exec("getCustomization", []);
|
|
401
|
+
return Customization.fromJson(JSON.parse(response));
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
async _getRfidScenario() {
|
|
405
|
+
const response = await exec("getRfidScenario", []);
|
|
406
|
+
return RFIDScenario.fromJson(JSON.parse(response));
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
async _getLicense() {
|
|
410
|
+
const response = await exec("getLicense", []);
|
|
411
|
+
return License.fromJson(response ? JSON.parse(response) : {});
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
async _getAvailableScenarios() {
|
|
415
|
+
const response = await exec("getAvailableScenarios", []);
|
|
416
|
+
const scenarios = [];
|
|
417
|
+
for (const s of JSON.parse(response)) {
|
|
418
|
+
scenarios.push(DocReaderScenario.fromJson(s));
|
|
419
|
+
}
|
|
420
|
+
return scenarios;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
async _getDocReaderVersion() {
|
|
424
|
+
const response = await exec("getDocReaderVersion", []);
|
|
425
|
+
return DocReaderVersion.fromJson(response ? JSON.parse(response) : null);
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
async _getRfidSessionStatus() {
|
|
429
|
+
return await exec("getRfidSessionStatus", []);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
_setRfidSessionStatus(status) {
|
|
433
|
+
exec("setRfidSessionStatus", [status]);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
async _getTag() {
|
|
437
|
+
return await exec("getTag", []);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
_setTag(tag) {
|
|
441
|
+
exec("setTag", [tag]);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
async _getTenant() {
|
|
445
|
+
return await exec("getTenant", []);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
_setTenant(tenant) {
|
|
449
|
+
exec("setTenant", [tenant]);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
async _getEnv() {
|
|
453
|
+
return await exec("getEnv", []);
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
_setEnv(env) {
|
|
457
|
+
exec("setEnv", [env]);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
_setLocalizationDictionary(dictionary) {
|
|
461
|
+
exec("setLocalizationDictionary", [dictionary]);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
export const DocReaderAction = {
|
|
466
|
+
COMPLETE: 0,
|
|
467
|
+
PROCESS: 1,
|
|
468
|
+
MORE_PAGES_AVAILABLE: 2,
|
|
469
|
+
CANCEL: 3,
|
|
470
|
+
ERROR: 4,
|
|
471
|
+
PROCESS_WHITE_FLASHLIGHT: 5,
|
|
472
|
+
TIMEOUT: 6,
|
|
473
|
+
PROCESSING_ON_SERVICE: 7,
|
|
474
|
+
PROCESS_WHITE_UV_IMAGES: 102,
|
|
475
|
+
PROCESS_IR_FRAME: 103
|
|
476
|
+
};
|
|
477
|
+
|
|
478
|
+
DocReaderAction.finished = function (value) {
|
|
479
|
+
return value == DocReaderAction.COMPLETE || value == DocReaderAction.TIMEOUT
|
|
480
|
+
}
|
|
481
|
+
DocReaderAction.interrupted = function (value) {
|
|
482
|
+
return value == DocReaderAction.CANCEL || value == DocReaderAction.ERROR
|
|
483
|
+
}
|
|
484
|
+
DocReaderAction.stopped = function (value) {
|
|
485
|
+
return DocReaderAction.finished(value) || DocReaderAction.interrupted(value)
|
|
486
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
export class DocReaderException {
|
|
2
|
+
code
|
|
3
|
+
message
|
|
4
|
+
|
|
5
|
+
static fromJson(jsonObject) {
|
|
6
|
+
if (jsonObject == null) return null
|
|
7
|
+
const result = new DocReaderException()
|
|
8
|
+
|
|
9
|
+
result.code = jsonObject["code"]
|
|
10
|
+
result.message = jsonObject["message"] ?? ""
|
|
11
|
+
|
|
12
|
+
return result
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const ErrorCodes = {
|
|
17
|
+
INITIALIZATION_CORE_ABSENT: 0,
|
|
18
|
+
INITIALIZATION_FAILED: 1,
|
|
19
|
+
INCORRECT_SCENARIO: 2,
|
|
20
|
+
NO_RESULT: 3,
|
|
21
|
+
REMOVE_DATABASE: 4,
|
|
22
|
+
FETCHING_DATABASE: 5,
|
|
23
|
+
DB_ID_NOT_FOUND: 6,
|
|
24
|
+
DB_DESCRIPTION_NOT_FOUND: 7,
|
|
25
|
+
SAVE_DB: 8,
|
|
26
|
+
DOWNLOAD_DB_INCORRECT_CHECKSUM: 9,
|
|
27
|
+
DB_DOWNLOAD: 10,
|
|
28
|
+
DB_CREATION: 11,
|
|
29
|
+
RFID_ERROR: 12,
|
|
30
|
+
LICENSE_ABSENT_OR_CORRUPTED: 13,
|
|
31
|
+
LICENSE_INVALID_DATE: 14,
|
|
32
|
+
LICENSE_INVALID_VERSION: 15,
|
|
33
|
+
LICENSE_INVALID_DEVICE_ID: 16,
|
|
34
|
+
LICENSE_INVALID_SYSTEM_OR_APP_ID: 17,
|
|
35
|
+
LICENSE_NO_CAPABILITIES: 18,
|
|
36
|
+
LICENSE_NO_AUTHENTICITY: 19,
|
|
37
|
+
RECORD_PROCESS_INVALID_OUTPUT_URL: 20,
|
|
38
|
+
LICENSE_ONLINE_ERROR: 21,
|
|
39
|
+
LICENSE_NO_DATABASE: 22,
|
|
40
|
+
LICENSE_DATABASE_INCORRECT: 23,
|
|
41
|
+
INVALID_TCC_PARAMS: 24,
|
|
42
|
+
RFID_IN_PROGRESS: 25,
|
|
43
|
+
START_BACKEND_PROCESSING: 26,
|
|
44
|
+
ADD_DATA_TO_PACKAGE: 27,
|
|
45
|
+
FINALIZE_FAILED: 28,
|
|
46
|
+
CAMERA_NO_PERMISSION: 29,
|
|
47
|
+
CAMERA_NOT_AVAILABLE: 30,
|
|
48
|
+
CANNOT_USE_CAMERA_IN_SCENARIO: 40,
|
|
49
|
+
BACKEND_ONLINE_PROCESSING: 303,
|
|
50
|
+
WRONG_INPUT: 400,
|
|
51
|
+
STATE_EXCEPTION: 500,
|
|
52
|
+
BLE_EXCEPTION: 600,
|
|
53
|
+
FEATURE_BLUETOOTH_LE_NOT_SUPPORTED: 601,
|
|
54
|
+
APP_BACKGROUND: 700,
|
|
55
|
+
ONLINE_PROCESSING_WRONG_INPUT: 800,
|
|
56
|
+
NATIVE_JAVA_EXCEPTION: 1000
|
|
57
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export class DocReaderScenario {
|
|
2
|
+
name
|
|
3
|
+
caption
|
|
4
|
+
description
|
|
5
|
+
frameOrientation
|
|
6
|
+
uvTorch
|
|
7
|
+
faceExt
|
|
8
|
+
multiPageOff
|
|
9
|
+
seriesProcessMode
|
|
10
|
+
frameKWHLandscape
|
|
11
|
+
frameKWHPortrait
|
|
12
|
+
frameKWHDoublePageSpreadLandscape
|
|
13
|
+
frameKWHDoublePageSpreadPortrait
|
|
14
|
+
manualCrop
|
|
15
|
+
|
|
16
|
+
constructor() {
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
static fromJson(jsonObject) {
|
|
20
|
+
if (jsonObject == null) return null
|
|
21
|
+
const result = new DocReaderScenario()
|
|
22
|
+
|
|
23
|
+
result.uvTorch = jsonObject["uvTorch"]
|
|
24
|
+
result.frameOrientation = jsonObject["frameOrientation"]
|
|
25
|
+
result.faceExt = jsonObject["faceExt"]
|
|
26
|
+
result.multiPageOff = jsonObject["multiPageOff"]
|
|
27
|
+
result.seriesProcessMode = jsonObject["seriesProcessMode"]
|
|
28
|
+
result.frameKWHLandscape = jsonObject["frameKWHLandscape"]
|
|
29
|
+
result.frameKWHPortrait = jsonObject["frameKWHPortrait"]
|
|
30
|
+
result.frameKWHDoublePageSpreadPortrait = jsonObject["frameKWHDoublePageSpreadPortrait"]
|
|
31
|
+
result.frameKWHDoublePageSpreadLandscape = jsonObject["frameKWHDoublePageSpreadLandscape"]
|
|
32
|
+
result.name = jsonObject["name"]
|
|
33
|
+
result.caption = jsonObject["caption"]
|
|
34
|
+
result.description = jsonObject["description"]
|
|
35
|
+
result.manualCrop = jsonObject["manualCrop"]
|
|
36
|
+
|
|
37
|
+
return result
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const Scenario = {
|
|
42
|
+
MRZ: "Mrz",
|
|
43
|
+
BARCODE: "Barcode",
|
|
44
|
+
LOCATE: "Locate",
|
|
45
|
+
OCR: "Ocr",
|
|
46
|
+
DOCTYPE: "DocType",
|
|
47
|
+
MRZ_OR_BARCODE: "MrzOrBarcode",
|
|
48
|
+
MRZ_OR_LOCATE: "MrzOrLocate",
|
|
49
|
+
MRZ_AND_LOCATE: "MrzAndLocate",
|
|
50
|
+
BARCODE_AND_LOCATE: "BarcodeAndLocate",
|
|
51
|
+
MRZ_OR_OCR: "MrzOrOcr",
|
|
52
|
+
MRZ_OR_BARCODE_OR_OCR: "MrzOrBarcodeOrOcr",
|
|
53
|
+
LOCATE_VISUAL_AND_MRZ_OR_OCR: "LocateVisual_And_MrzOrOcr",
|
|
54
|
+
FULL_PROCESS: "FullProcess",
|
|
55
|
+
FULL_AUTH: "FullAuth",
|
|
56
|
+
ID3RUS: "Id3Rus",
|
|
57
|
+
RUS_STAMP: "RusStamp",
|
|
58
|
+
OCR_FREE: "OcrFree",
|
|
59
|
+
CREDIT_CARD: "CreditCard",
|
|
60
|
+
CAPTURE: "Capture",
|
|
61
|
+
DTC: "DTC",
|
|
62
|
+
RFID: "RFID"
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export const DocReaderOrientation = {
|
|
66
|
+
ALL: 0,
|
|
67
|
+
PORTRAIT: 1,
|
|
68
|
+
LANDSCAPE: 2,
|
|
69
|
+
LANDSCAPE_LEFT: 3,
|
|
70
|
+
LANDSCAPE_RIGHT: 4
|
|
71
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DocumentsDatabase } from "./DocumentsDatabase";
|
|
2
|
+
|
|
3
|
+
export class DocReaderVersion {
|
|
4
|
+
api
|
|
5
|
+
core
|
|
6
|
+
coreMode
|
|
7
|
+
database
|
|
8
|
+
|
|
9
|
+
constructor() {
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null
|
|
14
|
+
const result = new DocReaderVersion()
|
|
15
|
+
|
|
16
|
+
result.api = jsonObject["api"]
|
|
17
|
+
result.core = jsonObject["core"]
|
|
18
|
+
result.coreMode = jsonObject["coreMode"]
|
|
19
|
+
result.database = DocumentsDatabase.fromJson(jsonObject["database"])
|
|
20
|
+
|
|
21
|
+
return result
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export class DocumentsDatabase {
|
|
2
|
+
databaseID
|
|
3
|
+
version
|
|
4
|
+
date
|
|
5
|
+
databaseDescription
|
|
6
|
+
countriesNumber
|
|
7
|
+
documentsNumber
|
|
8
|
+
size
|
|
9
|
+
|
|
10
|
+
constructor() {
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
static fromJson(jsonObject) {
|
|
14
|
+
if (jsonObject == null) return null
|
|
15
|
+
const result = new DocumentsDatabase()
|
|
16
|
+
|
|
17
|
+
result.databaseID = jsonObject["databaseID"]
|
|
18
|
+
result.version = jsonObject["version"]
|
|
19
|
+
result.date = jsonObject["date"]
|
|
20
|
+
result.databaseDescription = jsonObject["databaseDescription"]
|
|
21
|
+
result.countriesNumber = jsonObject["countriesNumber"]
|
|
22
|
+
result.documentsNumber = jsonObject["documentsNumber"]
|
|
23
|
+
result.size = jsonObject["size"]
|
|
24
|
+
|
|
25
|
+
return result
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Class contains properties to get the information about the license.
|
|
3
|
+
*/
|
|
4
|
+
export class License {
|
|
5
|
+
expiryDate
|
|
6
|
+
countryFilter
|
|
7
|
+
isRfidAvailable
|
|
8
|
+
|
|
9
|
+
constructor() {
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null
|
|
14
|
+
const result = new License()
|
|
15
|
+
|
|
16
|
+
result.expiryDate = jsonObject["expiryDate"]
|
|
17
|
+
result.countryFilter = jsonObject["countryFilter"]
|
|
18
|
+
result.isRfidAvailable = jsonObject["isRfidAvailable"] ?? false
|
|
19
|
+
|
|
20
|
+
return result
|
|
21
|
+
}
|
|
22
|
+
}
|