@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,33 @@
|
|
|
1
|
+
import { Authenticity } from "./Authenticity";
|
|
2
|
+
import { AuthenticityElement } from "./AuthenticityElement";
|
|
3
|
+
import { CheckResult } from "../status/CheckResult";
|
|
4
|
+
|
|
5
|
+
export class AuthenticityCheck {
|
|
6
|
+
type
|
|
7
|
+
status
|
|
8
|
+
pageIndex
|
|
9
|
+
elements
|
|
10
|
+
typeName
|
|
11
|
+
|
|
12
|
+
constructor() {
|
|
13
|
+
this.elements = []
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
static fromJson(jsonObject) {
|
|
17
|
+
if (jsonObject == null) return null
|
|
18
|
+
const result = new AuthenticityCheck()
|
|
19
|
+
|
|
20
|
+
result.type = jsonObject["type"]
|
|
21
|
+
result.status = jsonObject["status"]
|
|
22
|
+
result.typeName = jsonObject["typeName"]
|
|
23
|
+
result.pageIndex = jsonObject["pageIndex"]
|
|
24
|
+
for (const item of jsonObject["elements"]) {
|
|
25
|
+
const element = AuthenticityElement.fromJson(item)
|
|
26
|
+
if (element != null) {
|
|
27
|
+
result.elements.push(element)
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
return result
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SecurityFeatureType } from "./SecurityFeatureType";
|
|
2
|
+
import { CheckDiagnose } from "./CheckDiagnose";
|
|
3
|
+
import { CheckResult } from "../status/CheckResult";
|
|
4
|
+
|
|
5
|
+
export class AuthenticityElement {
|
|
6
|
+
status
|
|
7
|
+
elementType
|
|
8
|
+
elementDiagnose
|
|
9
|
+
elementTypeName
|
|
10
|
+
elementDiagnoseName
|
|
11
|
+
|
|
12
|
+
constructor() {
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static fromJson(jsonObject) {
|
|
16
|
+
if (jsonObject == null) return null
|
|
17
|
+
const result = new AuthenticityElement()
|
|
18
|
+
|
|
19
|
+
result.status = jsonObject["status"]
|
|
20
|
+
result.elementType = jsonObject["elementType"]
|
|
21
|
+
result.elementDiagnose = jsonObject["elementDiagnose"]
|
|
22
|
+
result.elementTypeName = jsonObject["elementTypeName"]
|
|
23
|
+
result.elementDiagnoseName = jsonObject["elementDiagnoseName"]
|
|
24
|
+
|
|
25
|
+
return result
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { AuthenticityCheck } from "./AuthenticityCheck";
|
|
2
|
+
import { CheckResult } from "../status/CheckResult";
|
|
3
|
+
|
|
4
|
+
export class AuthenticityResult {
|
|
5
|
+
status
|
|
6
|
+
checks
|
|
7
|
+
|
|
8
|
+
constructor() {
|
|
9
|
+
this.checks = []
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null
|
|
14
|
+
const result = new AuthenticityResult()
|
|
15
|
+
|
|
16
|
+
result.status = jsonObject["status"]
|
|
17
|
+
for (const item of jsonObject["checks"]) {
|
|
18
|
+
const check = AuthenticityCheck.fromJson(item)
|
|
19
|
+
if (check != null) {
|
|
20
|
+
result.checks.push(check)
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return result
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
export const CheckDiagnose = {
|
|
2
|
+
PASS: 1,
|
|
3
|
+
INVALID_INPUT_DATA: 2,
|
|
4
|
+
INTERNAL_ERROR: 3,
|
|
5
|
+
EXCEPTION_IN_MODULE: 4,
|
|
6
|
+
UNCERTAIN_VERIFICATION: 5,
|
|
7
|
+
NECESSARY_IMAGE_NOT_FOUND: 7,
|
|
8
|
+
PHOTO_SIDES_NOT_FOUND: 8,
|
|
9
|
+
INVALID_CHECKSUM: 10,
|
|
10
|
+
SYNTAX_ERROR: 11,
|
|
11
|
+
LOGIC_ERROR: 12,
|
|
12
|
+
SOURCES_COMPARISON_ERROR: 13,
|
|
13
|
+
FIELDS_COMPARISON_LOGIC_ERROR: 14,
|
|
14
|
+
INVALID_FIELD_FORMAT: 15,
|
|
15
|
+
TRUE_LUMINISCENCE_ERROR: 20,
|
|
16
|
+
FALSE_LUMINISCENCE_ERROR: 21,
|
|
17
|
+
FIXED_PATTERN_ERROR: 22,
|
|
18
|
+
LOW_CONTRAST_IN_IR_LIGHT: 23,
|
|
19
|
+
INCORRECT_BACKGROUND_LIGHT: 24,
|
|
20
|
+
BACKGROUND_COMPARISON_ERROR: 25,
|
|
21
|
+
INCORRECT_TEXT_COLOR: 26,
|
|
22
|
+
PHOTO_FALSE_LUMINISCENCE: 27,
|
|
23
|
+
TOO_MUCH_SHIFT: 28,
|
|
24
|
+
CONTACT_CHIP_TYPE_MISMATCH: 29,
|
|
25
|
+
FIBERS_NOT_FOUND: 30,
|
|
26
|
+
TOO_MANY_OBJECTS: 31,
|
|
27
|
+
SPECKS_IN_UV: 33,
|
|
28
|
+
TOO_LOW_RESOLUTION: 34,
|
|
29
|
+
INVISIBLE_ELEMENT_PRESENT: 40,
|
|
30
|
+
VISIBLE_ELEMENT_ABSENT: 41,
|
|
31
|
+
ELEMENT_SHOULD_BE_COLORED: 42,
|
|
32
|
+
ELEMENT_SHOULD_BE_GRAYSCALE: 43,
|
|
33
|
+
PHOTO_WHITE_IR_DONT_MATCH: 44,
|
|
34
|
+
UV_DULL_PAPER_MRZ: 50,
|
|
35
|
+
FALSE_LUMINISCENCE_IN_MRZ: 51,
|
|
36
|
+
UV_DULL_PAPER_PHOTO: 52,
|
|
37
|
+
UV_DULL_PAPER_BLANK: 53,
|
|
38
|
+
UV_DULL_PAPER_ERROR: 54,
|
|
39
|
+
FALSE_LUMINISCENCE_IN_BLANK: 55,
|
|
40
|
+
BAD_AREA_IN_AXIAL: 60,
|
|
41
|
+
FALSE_IPI_PARAMETERS: 65,
|
|
42
|
+
FIELD_POS_CORRECTOR_HIGHLIGHT_IR: 80,
|
|
43
|
+
FIELD_POS_CORRECTOR_GLARES_IN_PHOTO_AREA: 81,
|
|
44
|
+
FIELD_POS_CORRECTOR_PHOTO_REPLACED: 82,
|
|
45
|
+
FIELD_POS_CORRECTOR_LANDMARKS_CHECK_ERROR: 83,
|
|
46
|
+
FIELD_POS_CORRECTOR_FACE_PRESENCE_CHECK_ERROR: 84,
|
|
47
|
+
FIELD_POS_CORRECTOR_FACE_ABSENCE_CHECK_ERROR: 85,
|
|
48
|
+
CHD_FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION: 86,
|
|
49
|
+
OVI_IR_INVISIBLE: 90,
|
|
50
|
+
OVI_INSUFFICIENT_AREA: 91,
|
|
51
|
+
OVI_COLOR_INVARIABLE: 92,
|
|
52
|
+
OVI_BAD_COLOR_FRONT: 93,
|
|
53
|
+
OVI_BAD_COLOR_SIDE: 94,
|
|
54
|
+
OVI_WIDE_COLOR_SPREAD: 95,
|
|
55
|
+
OVI_BAD_COLOR_PERCENT: 96,
|
|
56
|
+
HOLOGRAM_ELEMENT_ABSENT: 100,
|
|
57
|
+
HOLOGRAM_SIDE_TOP_IMAGES_ABSENT: 101,
|
|
58
|
+
HOLOGRAM_ELEMENT_PRESENT: 102,
|
|
59
|
+
HOLOGRAM_FRAMES_IS_ABSENT: 103,
|
|
60
|
+
HOLOGRAM_HOLO_FIELD_IS_ABSENT: 104,
|
|
61
|
+
PHOTO_PATTERN_INTERRUPTED: 110,
|
|
62
|
+
PHOTO_PATTERN_SHIFTED: 111,
|
|
63
|
+
PHOTO_PATTERN_DIFFERENT_COLORS: 112,
|
|
64
|
+
PHOTO_PATTERN_IR_VISIBLE: 113,
|
|
65
|
+
PHOTO_PATTERN_NOT_INTERSECT: 114,
|
|
66
|
+
PHOTO_SIZE_IS_WRONG: 115,
|
|
67
|
+
PHOTO_PATTERN_INVALID_COLOR: 116,
|
|
68
|
+
PHOTO_PATTERN_SHIFTED_VERT: 117,
|
|
69
|
+
PHOTO_PATTERN_PATTERN_NOT_FOUND: 118,
|
|
70
|
+
PHOTO_PATTERN_DIFFERENT_LINES_THICKNESS: 119,
|
|
71
|
+
PHOTO_IS_NOT_RECTANGLE: 120,
|
|
72
|
+
PHOTO_CORNERS_IS_WRONG: 121,
|
|
73
|
+
DOCUMENT_IS_CANCELLING: 122,
|
|
74
|
+
TEXT_COLOR_SHOULD_BE_BLUE: 130,
|
|
75
|
+
TEXT_COLOR_SHOULD_BE_GREEN: 131,
|
|
76
|
+
TEXT_COLOR_SHOULD_BE_RED: 132,
|
|
77
|
+
TEXT_SHOULD_BE_BLACK: 133,
|
|
78
|
+
BARCODE_WAS_READ_WITH_ERRORS: 140,
|
|
79
|
+
BARCODE_DATA_FORMAT_ERROR: 141,
|
|
80
|
+
BARCODE_SIZE_PARAMS_ERROR: 142,
|
|
81
|
+
NOT_ALL_BARCODES_READ: 143,
|
|
82
|
+
GLARES_IN_BARCODE_AREA: 144,
|
|
83
|
+
CHD_NO_CERTIFICATE_FOR_DIGITAL_SIGNATURE_CHECK: 145,
|
|
84
|
+
PORTRAIT_COMPARISON_PORTRAITS_DIFFER: 150,
|
|
85
|
+
PORTRAIT_COMPARISON_NO_SERVICE_REPLY: 151,
|
|
86
|
+
PORTRAIT_COMPARISON_SERVICE_ERROR: 152,
|
|
87
|
+
PORTRAIT_COMPARISON_NOT_ENOUGH_IMAGES: 153,
|
|
88
|
+
PORTRAIT_COMPARISON_NO_LIVE_PHOTO: 154,
|
|
89
|
+
PORTRAIT_COMPARISON_NO_SERVICE_LICENSE: 155,
|
|
90
|
+
PORTRAIT_COMPARISON_NO_PORTRAIT_DETECTED: 156,
|
|
91
|
+
MOBILE_IMAGES_UNSUITABLE_LIGHT_CONDITIONS: 160,
|
|
92
|
+
MOBILE_IMAGES_WHITE_UV_NO_DIFFERENCE: 161,
|
|
93
|
+
FINGERPRINTS_COMPARISON_MISMATCH: 170,
|
|
94
|
+
HOLO_PHOTO_FACE_NOT_DETECTED: 180,
|
|
95
|
+
HOLO_PHOTO_FACE_COMPARISON_FAILED: 181,
|
|
96
|
+
HOLO_PHOTO_FACE_GLARE_IN_CENTER_ABSENT: 182,
|
|
97
|
+
HOLO_ELEMENT_SHAPE_ERROR: 183,
|
|
98
|
+
ALGORITHM_STEPS_ERROR: 184,
|
|
99
|
+
HOLO_AREAS_NOT_LOADED: 185,
|
|
100
|
+
FINISHED_BY_TIMEOUT: 186,
|
|
101
|
+
HOLO_PHOTO_DOCUMENT_OUTSIDE_FRAME: 187,
|
|
102
|
+
LIVENESS_DEPTH_CHECK_FAILED: 190,
|
|
103
|
+
MRZ_QUALITY_WRONG_SYMBOL_POSITION: 200,
|
|
104
|
+
MRZ_QUALITY_WRONG_BACKGROUND: 201,
|
|
105
|
+
MRZ_QUALITY_WRONG_MRZ_WIDTH: 202,
|
|
106
|
+
MRZ_QUALITY_WRONG_MRZ_HEIGHT: 203,
|
|
107
|
+
MRZ_QUALITY_WRONG_LINE_POSITION: 204,
|
|
108
|
+
MRZ_QUALITY_WRONG_FONT_TYPE: 205,
|
|
109
|
+
OCR_QUALITY_TEXT_POSITION: 220,
|
|
110
|
+
OCR_QUALITY_INVALID_FONT: 221,
|
|
111
|
+
OCR_QUALITY_INVALID_BACKGROUND: 222,
|
|
112
|
+
LAS_INK_INVALID_LINES_FREQUENCY: 230,
|
|
113
|
+
DOC_LIVENESS_DOCUMENT_NOT_LIVE: 238,
|
|
114
|
+
CHD_DOC_LIVENESS_BLACK_AND_WHITE_COPY_DETECTED: 239,
|
|
115
|
+
DOC_LIVENESS_ELECTRONIC_DEVICE_DETECTED: 240,
|
|
116
|
+
DOC_LIVENESS_INVALID_BARCODE_BACKGROUND: 241,
|
|
117
|
+
ICAO_IDB_BASE_32_ERROR: 243,
|
|
118
|
+
ICAO_IDB_ZIPPED_ERROR: 244,
|
|
119
|
+
ICAO_IDB_MESSAGE_ZONE_EMPTY: 245,
|
|
120
|
+
ICAO_IDB_SIGNATURE_MUST_BE_PRESENT: 246,
|
|
121
|
+
ICAO_IDB_SIGNATURE_MUST_NOT_BE_PRESENT: 247,
|
|
122
|
+
ICAO_IDB_CERTIFICATE_MUST_NOT_BE_PRESENT: 248,
|
|
123
|
+
INCORRECT_OBJECT_COLOR: 250
|
|
124
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export const SecurityFeatureType = {
|
|
2
|
+
NONE: -1,
|
|
3
|
+
BLANK: 0,
|
|
4
|
+
FILL: 1,
|
|
5
|
+
PHOTO: 2,
|
|
6
|
+
MRZ: 3,
|
|
7
|
+
FALSE_LUMINESCENCE: 4,
|
|
8
|
+
HOLO_SIMPLE: 5,
|
|
9
|
+
HOLO_VERIFY_STATIC: 6,
|
|
10
|
+
HOLO_VERIFY_MULTI_STATIC: 7,
|
|
11
|
+
HOLO_VERIFY_DINAMIC: 8,
|
|
12
|
+
PATTERN_NOT_INTERRUPTED: 9,
|
|
13
|
+
PATTERN_NOT_SHIFTED: 10,
|
|
14
|
+
PATTERN_SAME_COLORS: 11,
|
|
15
|
+
PATTERN_IR_INVISIBLE: 12,
|
|
16
|
+
PHOTO_SIZE_CHECK: 13,
|
|
17
|
+
PORTRAIT_COMPARISON_VS_GHOST: 14,
|
|
18
|
+
PORTRAIT_COMPARISON_VS_RFID: 15,
|
|
19
|
+
PORTRAIT_COMPARISON_VS_VISUAL: 16,
|
|
20
|
+
BARCODE: 17,
|
|
21
|
+
PATTERN_DIFFERENT_LINES_THICKNESS: 18,
|
|
22
|
+
PORTRAIT_COMPARISON_VS_CAMERA: 19,
|
|
23
|
+
PORTRAIT_COMPARISON_RFID_VS_CAMERA: 20,
|
|
24
|
+
GHOST_PHOTO: 21,
|
|
25
|
+
CLEAR_GHOST_PHOTO: 22,
|
|
26
|
+
INVISIBLE_OBJECT: 23,
|
|
27
|
+
LOW_CONTRAST_OBJECT: 24,
|
|
28
|
+
PHOTO_COLOR: 25,
|
|
29
|
+
PHOTO_SHAPE: 26,
|
|
30
|
+
PHOTO_CORNERS: 27,
|
|
31
|
+
DOCUMENT_CANCELLING_DETECTOR: 28,
|
|
32
|
+
OCR: 28,
|
|
33
|
+
PORTRAIT_COMPARISON_EXTVS_VISUAL: 29,
|
|
34
|
+
PORTRAIT_COMPARISON_EXTVS_RFID: 30,
|
|
35
|
+
PORTRAIT_COMPARISON_EXTVS_LIVE: 31,
|
|
36
|
+
LIVENESS_DEPTH: 32,
|
|
37
|
+
MICROTEXT: 33,
|
|
38
|
+
FLUORESCENT_OBJECT: 34,
|
|
39
|
+
LANDMARKS_CHECK: 35,
|
|
40
|
+
FACE_PRESENCE: 36,
|
|
41
|
+
FACE_ABSENCE: 38,
|
|
42
|
+
LIVENESS_SCREEN_CAPTURE: 39,
|
|
43
|
+
LIVENESS_ELECTRONIC_DEVICE: 40,
|
|
44
|
+
LIVENESS_OVI: 41,
|
|
45
|
+
BARCODE_SIZE_CHECK: 42,
|
|
46
|
+
LAS_INK: 43,
|
|
47
|
+
LIVENESS_MLI: 44,
|
|
48
|
+
LIVENESS_BARCODE_BACKGROUND: 45,
|
|
49
|
+
PORTRAIT_COMPARISON_VS_BARCODE: 46,
|
|
50
|
+
PORTRAIT_COMPARISON_RFID_VS_BARCODE: 47,
|
|
51
|
+
PORTRAIT_COMPARISON_EXT_VS_BARCODE: 48,
|
|
52
|
+
PORTRAIT_COMPARISON_BARCODE_VS_CAMERA: 49,
|
|
53
|
+
CHECK_DIGITAL_SIGNATURE: 50,
|
|
54
|
+
CONTACT_CHIP_CLASSIFICATION: 51,
|
|
55
|
+
HEAD_POSITION_CHECK: 52,
|
|
56
|
+
LIVENESS_BLACK_AND_WHITE_COPY_CHECK: 53,
|
|
57
|
+
LIVENESS_DYNAPRINT: 54,
|
|
58
|
+
LIVENESS_GEOMETRY_CHECK: 55
|
|
59
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
}
|
|
@@ -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,16 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
}
|
|
@@ -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,30 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
|
|
38
|
+
export const RFIDApplicationType = {
|
|
39
|
+
E_PASSPORT: 1,
|
|
40
|
+
E_ID: 2,
|
|
41
|
+
E_SIGN: 3,
|
|
42
|
+
E_DL: 4,
|
|
43
|
+
LDS2_TRAVEL_RECORDS: 5,
|
|
44
|
+
LDS2_VISA_RECORDS: 6,
|
|
45
|
+
LDS2_ADD_BIOMETRICS: 7,
|
|
46
|
+
E_DTC_PC: 8
|
|
47
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
}
|