@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,285 @@
|
|
|
1
|
+
export class DocumentType {
|
|
2
|
+
name;
|
|
3
|
+
id;
|
|
4
|
+
iCAOCode;
|
|
5
|
+
fDSID;
|
|
6
|
+
type;
|
|
7
|
+
format;
|
|
8
|
+
mrz;
|
|
9
|
+
isDeprecated;
|
|
10
|
+
description;
|
|
11
|
+
year;
|
|
12
|
+
countryName;
|
|
13
|
+
pageIndex;
|
|
14
|
+
|
|
15
|
+
static fromJson(jsonObject) {
|
|
16
|
+
if (jsonObject == null) return null;
|
|
17
|
+
const result = new DocumentType();
|
|
18
|
+
|
|
19
|
+
result.name = jsonObject["name"];
|
|
20
|
+
result.id = jsonObject["documentID"];
|
|
21
|
+
result.iCAOCode = jsonObject["ICAOCode"];
|
|
22
|
+
result.fDSID = jsonObject["FDSID"];
|
|
23
|
+
result.type = jsonObject["dType"];
|
|
24
|
+
result.format = jsonObject["dFormat"];
|
|
25
|
+
result.mrz = jsonObject["dMRZ"];
|
|
26
|
+
result.isDeprecated = jsonObject["isDeprecated"];
|
|
27
|
+
result.description = jsonObject["dDescription"];
|
|
28
|
+
result.year = jsonObject["dYear"];
|
|
29
|
+
result.countryName = jsonObject["dCountryName"];
|
|
30
|
+
result.pageIndex = jsonObject["pageIndex"];
|
|
31
|
+
|
|
32
|
+
return result;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export const DocFormat = {
|
|
37
|
+
ID1: 0,
|
|
38
|
+
ID2: 1,
|
|
39
|
+
ID3: 2,
|
|
40
|
+
NON: 3,
|
|
41
|
+
A4: 4,
|
|
42
|
+
ID3_x2: 5,
|
|
43
|
+
ID2_TURKEY: 6,
|
|
44
|
+
ID1_90: 10,
|
|
45
|
+
ID1_180: 11,
|
|
46
|
+
ID1_270: 12,
|
|
47
|
+
ID2_180: 13,
|
|
48
|
+
ID3_180: 14,
|
|
49
|
+
CUSTOM: 1000,
|
|
50
|
+
PHOTO: 1001,
|
|
51
|
+
FLEXIBLE: 1002
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export const DocType = {
|
|
55
|
+
NotDefined: 0,
|
|
56
|
+
Passport: 11,
|
|
57
|
+
IdentityCard: 12,
|
|
58
|
+
DiplomaticPassport: 13,
|
|
59
|
+
ServicePassport: 14,
|
|
60
|
+
SeamanIdentityDocument: 15,
|
|
61
|
+
IdentityCardForResidence: 16,
|
|
62
|
+
TravelDocument: 17,
|
|
63
|
+
Other: 99,
|
|
64
|
+
VisaID2: 29,
|
|
65
|
+
VisaID3: 30,
|
|
66
|
+
NationalIdentityCard: 20,
|
|
67
|
+
SocialIdentityCard: 21,
|
|
68
|
+
AliensIdentityCard: 22,
|
|
69
|
+
PrivilegedIdentityCard: 23,
|
|
70
|
+
ResidencePermitIdentityCard: 24,
|
|
71
|
+
OriginCard: 25,
|
|
72
|
+
EmergencyPassport: 26,
|
|
73
|
+
AliensPassport: 27,
|
|
74
|
+
AlternativeIdentityCard: 28,
|
|
75
|
+
AuthorizationCard: 32,
|
|
76
|
+
BeginnerPermit: 33,
|
|
77
|
+
BorderCrossingCard: 34,
|
|
78
|
+
ChauffeurLicense: 35,
|
|
79
|
+
ChauffeurLicenseUnder18: 36,
|
|
80
|
+
ChauffeurLicenseUnder21: 37,
|
|
81
|
+
CommercialDrivingLicense: 38,
|
|
82
|
+
CommercialDrivingLicenseInstructionalPermit: 39,
|
|
83
|
+
CommercialDrivingLicenseUnder18: 40,
|
|
84
|
+
CommercialDrivingLicenseUnder21: 41,
|
|
85
|
+
CommercialInstructionPermit: 42,
|
|
86
|
+
CommercialNewPermit: 43,
|
|
87
|
+
ConcealedCarryLicense: 44,
|
|
88
|
+
ConcealedFirearmPermit: 45,
|
|
89
|
+
ConditionalDrivingLicense: 46,
|
|
90
|
+
DepartmentOfVeteransAffairsIdentityCard: 47,
|
|
91
|
+
DiplomaticDrivingLicense: 48,
|
|
92
|
+
DrivingLicense: 49,
|
|
93
|
+
DrivingLicenseInstructionalPermit: 50,
|
|
94
|
+
DrivingLicenseInstructionalPermitUnder18: 51,
|
|
95
|
+
DrivingLicenseInstructionalPermitUnder21: 52,
|
|
96
|
+
DrivingLicenseLearnersPermit: 53,
|
|
97
|
+
DrivingLicenseLearnersPermitUnder18: 54,
|
|
98
|
+
DrivingLicenseLearnersPermitUnder21: 55,
|
|
99
|
+
DrivingLicenseNovice: 56,
|
|
100
|
+
DrivingLicenseNoviceUnder18: 57,
|
|
101
|
+
DrivingLicenseNoviceUnder21: 58,
|
|
102
|
+
DrivingLicenseRegisteredOffender: 59,
|
|
103
|
+
DrivingLicenseRestrictedUnder18: 60,
|
|
104
|
+
DrivingLicenseRestrictedUnder21: 61,
|
|
105
|
+
DrivingLicenseTemporaryVisitor: 62,
|
|
106
|
+
DrivingLicenseTemporaryVisitorUnder18: 63,
|
|
107
|
+
DrivingLicenseTemporaryVisitorUnder21: 64,
|
|
108
|
+
DrivingLicenseUnder18: 65,
|
|
109
|
+
DrivingLicenseUnder21: 66,
|
|
110
|
+
EmploymentDrivingPermit: 67,
|
|
111
|
+
EnhancedChauffeurLicense: 68,
|
|
112
|
+
EnhancedChauffeurLicenseUnder18: 69,
|
|
113
|
+
EnhancedChauffeurLicenseUnder21: 70,
|
|
114
|
+
EnhancedCommercialDrivingLicense: 71,
|
|
115
|
+
EnhancedDrivingLicense: 72,
|
|
116
|
+
EnhancedDrivingLicenseUnder18: 73,
|
|
117
|
+
EnhancedDrivingLicenseUnder21: 74,
|
|
118
|
+
EnhancedIdentityCard: 75,
|
|
119
|
+
EnhancedIdentityCardUnder18: 76,
|
|
120
|
+
EnhancedIdentityCardUnder21: 77,
|
|
121
|
+
EnhancedOperatorsLicense: 78,
|
|
122
|
+
FirearmsPermit: 79,
|
|
123
|
+
FullProvisionalLicense: 80,
|
|
124
|
+
FullProvisionalLicenseUnder18: 81,
|
|
125
|
+
FullProvisionalLicenseUnder21: 82,
|
|
126
|
+
GenevaConventionsIdentityCard: 83,
|
|
127
|
+
GraduatedDrivingLicenseUnder18: 84,
|
|
128
|
+
GraduatedDrivingLicenseUnder21: 85,
|
|
129
|
+
GraduatedInstructionPermitUnder18: 86,
|
|
130
|
+
GraduatedInstructionPermitUnder21: 87,
|
|
131
|
+
GraduatedLicenseUnder18: 88,
|
|
132
|
+
GraduatedLicenseUnder21: 89,
|
|
133
|
+
HandgunCarryPermit: 90,
|
|
134
|
+
IdentityAndPrivilegeCard: 91,
|
|
135
|
+
IdentityCardMobilityImpaired: 92,
|
|
136
|
+
IdentityCardRegisteredOffender: 93,
|
|
137
|
+
IdentityCaremporaryVisitor: 94,
|
|
138
|
+
IdentityCaremporaryVisitorUnder18: 95,
|
|
139
|
+
IdentityCaremporaryVisitorUnder21: 96,
|
|
140
|
+
IdentityCardUnder18: 97,
|
|
141
|
+
IdentityCardUnder21: 98,
|
|
142
|
+
IgnitionInterlockPermit: 100,
|
|
143
|
+
ImmigrantVisa: 101,
|
|
144
|
+
InstructionPermit: 102,
|
|
145
|
+
InstructionPermitUnder18: 103,
|
|
146
|
+
InstructionPermitUnder21: 104,
|
|
147
|
+
InterimDrivingLicense: 105,
|
|
148
|
+
InterimIdentityCard: 106,
|
|
149
|
+
IntermediateDrivingLicense: 107,
|
|
150
|
+
IntermediateDrivingLicenseUnder18: 108,
|
|
151
|
+
IntermediateDrivingLicenseUnder21: 109,
|
|
152
|
+
JuniorDrivingLicense: 110,
|
|
153
|
+
LearnerInstructionalPermit: 111,
|
|
154
|
+
LearnerLicense: 112,
|
|
155
|
+
LearnerLicenseUnder18: 113,
|
|
156
|
+
LearnerLicenseUnder21: 114,
|
|
157
|
+
LearnerPermit: 115,
|
|
158
|
+
LearnerPermitUnder18: 116,
|
|
159
|
+
LearnerPermitUnder21: 117,
|
|
160
|
+
LimitedLicense: 118,
|
|
161
|
+
LimitedPermit: 119,
|
|
162
|
+
LimiteermDrivingLicense: 120,
|
|
163
|
+
LimiteermIdentityCard: 121,
|
|
164
|
+
LiquorIdentityCard: 122,
|
|
165
|
+
NewPermit: 123,
|
|
166
|
+
NewPermitUnder18: 124,
|
|
167
|
+
NewPermitUnder21: 125,
|
|
168
|
+
NonUsCitizenDrivingLicense: 126,
|
|
169
|
+
OccupationalDrivingLicense: 127,
|
|
170
|
+
OneidaTribeOfIndiansIdentityCard: 128,
|
|
171
|
+
OperatorLicense: 129,
|
|
172
|
+
OperatorLicenseUnder18: 130,
|
|
173
|
+
OperatorLicenseUnder21: 131,
|
|
174
|
+
PermanentDrivingLicense: 132,
|
|
175
|
+
PermitToReEnter: 133,
|
|
176
|
+
ProbationaryAutoLicense: 134,
|
|
177
|
+
ProbationaryDrivingLicenseUnder18: 135,
|
|
178
|
+
ProbationaryDrivingLicenseUnder21: 136,
|
|
179
|
+
ProbationaryVehicleSalespersonLicense: 137,
|
|
180
|
+
ProvisionalDrivingLicense: 138,
|
|
181
|
+
ProvisionalDrivingLicenseUnder18: 139,
|
|
182
|
+
ProvisionalDrivingLicenseUnder21: 140,
|
|
183
|
+
ProvisionalLicense: 141,
|
|
184
|
+
ProvisionalLicenseUnder18: 142,
|
|
185
|
+
ProvisionalLicenseUnder21: 143,
|
|
186
|
+
PublicPassengerChauffeurLicense: 144,
|
|
187
|
+
RacingAndGamingComissionCard: 145,
|
|
188
|
+
RefugeeTravelDocument: 146,
|
|
189
|
+
RenewalPermit: 147,
|
|
190
|
+
RestrictedCommercialDrivingLicense: 148,
|
|
191
|
+
RestrictedDrivingLicense: 149,
|
|
192
|
+
RestrictedPermit: 150,
|
|
193
|
+
SeasonalPermit: 151,
|
|
194
|
+
SeasonalResidentIdentityCard: 152,
|
|
195
|
+
SeniorCitizenIdentityCard: 153,
|
|
196
|
+
SexOffender: 154,
|
|
197
|
+
SocialSecurityCard: 155,
|
|
198
|
+
TemporaryDrivingLicense: 156,
|
|
199
|
+
TemporaryDrivingLicenseUnder18: 157,
|
|
200
|
+
TemporaryDrivingLicenseUnder21: 158,
|
|
201
|
+
TemporaryIdentityCard: 159,
|
|
202
|
+
TemporaryInstructionPermitIdentityCard: 160,
|
|
203
|
+
TemporaryInstructionPermitIdentityCardUnder18: 161,
|
|
204
|
+
TemporaryInstructionPermitIdentityCardUnder21: 162,
|
|
205
|
+
TemporaryVisitorDrivingLicense: 163,
|
|
206
|
+
TemporaryVisitorDrivingLicenseUnder18: 164,
|
|
207
|
+
TemporaryVisitorDrivingLicenseUnder21: 165,
|
|
208
|
+
UniformedServicesIdentityCard: 166,
|
|
209
|
+
VehicleSalespersonLicense: 167,
|
|
210
|
+
WorkerIdentificationCredential: 168,
|
|
211
|
+
CommercialDrivingLicenseNovice: 169,
|
|
212
|
+
CommercialDrivingLicenseNoviceUnder18: 170,
|
|
213
|
+
CommercialDrivingLicenseNoviceUnder21: 171,
|
|
214
|
+
PassportCard: 172,
|
|
215
|
+
PermanentResidentCard: 173,
|
|
216
|
+
PersonalIdentificationVerification: 174,
|
|
217
|
+
TemporaryOperatorLicense: 175,
|
|
218
|
+
DrivingLicenseUnder19: 176,
|
|
219
|
+
IdentityCardUnder19: 177,
|
|
220
|
+
Visa: 178,
|
|
221
|
+
TemporaryPassport: 179,
|
|
222
|
+
VotingCard: 180,
|
|
223
|
+
HealthCard: 181,
|
|
224
|
+
CertificateOfCitizenship: 182,
|
|
225
|
+
AddressCard: 183,
|
|
226
|
+
AirportImmigrationCard: 184,
|
|
227
|
+
AlienRegistrationCard: 185,
|
|
228
|
+
APEHCard: 186,
|
|
229
|
+
CouponToDrivingLicense: 187,
|
|
230
|
+
CrewMemberCertificate: 188,
|
|
231
|
+
DocumentForReturn: 189,
|
|
232
|
+
ECard: 190,
|
|
233
|
+
EmploymentCard: 191,
|
|
234
|
+
HKSARImmigrationForm: 192,
|
|
235
|
+
ImmigrantCard: 193,
|
|
236
|
+
LabourCard: 194,
|
|
237
|
+
LaissezPasser: 195,
|
|
238
|
+
LawyerIdentityCertificate: 196,
|
|
239
|
+
LicenseCard: 197,
|
|
240
|
+
PassportStateless: 198,
|
|
241
|
+
PassportChild: 199,
|
|
242
|
+
PassportConsular: 200,
|
|
243
|
+
PassportDiplomaticService: 201,
|
|
244
|
+
PassportOfficial: 202,
|
|
245
|
+
PassportProvisional: 203,
|
|
246
|
+
PassportSpecial: 204,
|
|
247
|
+
PermissionToTheLocalBorderTraffic: 205,
|
|
248
|
+
RegistrationCertificate: 206,
|
|
249
|
+
SEDESOLCard: 207,
|
|
250
|
+
SocialCard: 208,
|
|
251
|
+
TBCard: 209,
|
|
252
|
+
VehiclePassport: 210,
|
|
253
|
+
WDocument: 211,
|
|
254
|
+
DiplomaticIdentityCard: 212,
|
|
255
|
+
ConsularIdentityCard: 213,
|
|
256
|
+
IncomeTaxCard: 214,
|
|
257
|
+
ResidencePermit: 215,
|
|
258
|
+
DocumentOfIdentity: 216,
|
|
259
|
+
BorderCrossingPermit: 217,
|
|
260
|
+
PassportLimitedValidity: 218,
|
|
261
|
+
SIMCard: 219,
|
|
262
|
+
TaxCard: 220,
|
|
263
|
+
CompanyCard: 221,
|
|
264
|
+
DomesticPassport: 222,
|
|
265
|
+
IdentityCertificate: 223,
|
|
266
|
+
ResidentIdCard: 224,
|
|
267
|
+
ArmedForcesIdentityCard: 225,
|
|
268
|
+
ProfessionalCard: 226,
|
|
269
|
+
RegistrationStamp: 227,
|
|
270
|
+
DriverCard: 228,
|
|
271
|
+
DriverTrainingCertificate: 229,
|
|
272
|
+
QualificationDrivingLicense: 230,
|
|
273
|
+
MembershipCard: 231,
|
|
274
|
+
PublicVehicleDriverAuthorityCard: 232,
|
|
275
|
+
MarineLicense: 233,
|
|
276
|
+
TemporaryLearnerDrivingLicense: 234,
|
|
277
|
+
TemporaryCommercialDrivingLicense: 235,
|
|
278
|
+
InterimInstructionalPermit: 236,
|
|
279
|
+
CertificateOfCompetency: 237,
|
|
280
|
+
CertificateOfProficiency: 238,
|
|
281
|
+
TradeLicense: 239,
|
|
282
|
+
PassportPage: 240,
|
|
283
|
+
Invoice: 241,
|
|
284
|
+
PassengerLocatorForm: 242
|
|
285
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { DocFormat } from './DocumentType.js';
|
|
2
|
+
import { CheckResult } from './status/CheckResult.js';
|
|
3
|
+
|
|
4
|
+
export class Position {
|
|
5
|
+
docFormat;
|
|
6
|
+
width;
|
|
7
|
+
height;
|
|
8
|
+
angle;
|
|
9
|
+
dpi;
|
|
10
|
+
inverse;
|
|
11
|
+
perspectiveTr;
|
|
12
|
+
objArea;
|
|
13
|
+
objIntAngleDev;
|
|
14
|
+
resultStatus;
|
|
15
|
+
center;
|
|
16
|
+
leftTop;
|
|
17
|
+
leftBottom;
|
|
18
|
+
rightTop;
|
|
19
|
+
rightBottom;
|
|
20
|
+
pageIndex;
|
|
21
|
+
|
|
22
|
+
static fromJson(jsonObject) {
|
|
23
|
+
if (jsonObject == null) return null;
|
|
24
|
+
const result = new Position();
|
|
25
|
+
|
|
26
|
+
result.docFormat = jsonObject["docFormat"];
|
|
27
|
+
result.width = jsonObject["width"];
|
|
28
|
+
result.height = jsonObject["height"];
|
|
29
|
+
result.angle = jsonObject["angle"];
|
|
30
|
+
result.dpi = jsonObject["dpi"];
|
|
31
|
+
result.inverse = jsonObject["inverse"];
|
|
32
|
+
result.perspectiveTr = jsonObject["perspectiveTr"];
|
|
33
|
+
result.objArea = jsonObject["objArea"];
|
|
34
|
+
result.objIntAngleDev = jsonObject["objIntAngleDev"];
|
|
35
|
+
result.resultStatus = jsonObject["resultStatus"];
|
|
36
|
+
result.pageIndex = jsonObject["pageIndex"];
|
|
37
|
+
result.center = Coordinate.fromJson(jsonObject["center"]);
|
|
38
|
+
result.leftTop = Coordinate.fromJson(jsonObject["leftTop"]);
|
|
39
|
+
result.leftBottom = Coordinate.fromJson(jsonObject["leftBottom"]);
|
|
40
|
+
result.rightTop = Coordinate.fromJson(jsonObject["rightTop"]);
|
|
41
|
+
result.rightBottom = Coordinate.fromJson(jsonObject["rightBottom"]);
|
|
42
|
+
|
|
43
|
+
return result;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export class Coordinate {
|
|
48
|
+
x;
|
|
49
|
+
y;
|
|
50
|
+
|
|
51
|
+
static fromJson(jsonObject) {
|
|
52
|
+
if (jsonObject == null) return null;
|
|
53
|
+
const result = new Coordinate();
|
|
54
|
+
|
|
55
|
+
result.x = jsonObject["x"];
|
|
56
|
+
result.y = jsonObject["y"];
|
|
57
|
+
|
|
58
|
+
return result;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
import { exec } from '../internal/bridge';
|
|
2
|
+
import { AuthenticityResult } from "./authenticity/AuthenticityResult";
|
|
3
|
+
import { BarcodeResult } from "./barcode/BarcodeResult";
|
|
4
|
+
import { ImageQualityGroup } from "./image_quality/ImageQualityGroup";
|
|
5
|
+
import { RFIDSessionData } from "./rfid/RFIDSessionData";
|
|
6
|
+
import { ResultsStatus } from "./status/ResultsStatus";
|
|
7
|
+
import { FieldType } from "./visual_results/FieldType";
|
|
8
|
+
import { GraphicFieldType } from "./visual_results/GraphicFieldType";
|
|
9
|
+
import { LCID } from "./visual_results/LCID";
|
|
10
|
+
import { Lights } from "./visual_results/Lights";
|
|
11
|
+
import { GraphicField } from "./visual_results/GraphicField";
|
|
12
|
+
import { GraphicResult } from "./visual_results/GraphicResult";
|
|
13
|
+
import { TextResult } from "./visual_results/TextResult";
|
|
14
|
+
import { TextField } from "./visual_results/TextField";
|
|
15
|
+
import { VDSNCData } from "./visible_digital_seals/VDSNCData";
|
|
16
|
+
import { Position } from "./Position";
|
|
17
|
+
import { DocumentType } from "./DocumentType";
|
|
18
|
+
import { TransactionInfo } from "./TransactionInfo";
|
|
19
|
+
|
|
20
|
+
export class Results {
|
|
21
|
+
documentType
|
|
22
|
+
textResult
|
|
23
|
+
graphicResult
|
|
24
|
+
documentPosition
|
|
25
|
+
barcodePosition
|
|
26
|
+
mrzPosition
|
|
27
|
+
imageQuality
|
|
28
|
+
status
|
|
29
|
+
authenticityResult
|
|
30
|
+
rfidSessionData
|
|
31
|
+
chipPage
|
|
32
|
+
barcodeResult
|
|
33
|
+
vdsncData
|
|
34
|
+
dtcData
|
|
35
|
+
processingFinishedStatus
|
|
36
|
+
morePagesAvailable
|
|
37
|
+
elapsedTime
|
|
38
|
+
elapsedTimeRFID
|
|
39
|
+
rawResult
|
|
40
|
+
transactionInfo
|
|
41
|
+
|
|
42
|
+
async textFieldValueByType(fieldType) {
|
|
43
|
+
return await exec("textFieldValueByType", [
|
|
44
|
+
this.rawResult,
|
|
45
|
+
fieldType,
|
|
46
|
+
]);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async textFieldValueByTypeLcid(fieldType, lcid) {
|
|
50
|
+
return await exec("textFieldValueByTypeLcid", [
|
|
51
|
+
this.rawResult,
|
|
52
|
+
fieldType,
|
|
53
|
+
lcid,
|
|
54
|
+
]);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async textFieldValueByTypeSource(fieldType, source) {
|
|
58
|
+
return await exec("textFieldValueByTypeSource", [
|
|
59
|
+
this.rawResult,
|
|
60
|
+
fieldType,
|
|
61
|
+
source,
|
|
62
|
+
]);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async textFieldValueByTypeLcidSource(fieldType, lcid, source) {
|
|
66
|
+
return await exec("textFieldValueByTypeLcidSource", [
|
|
67
|
+
this.rawResult,
|
|
68
|
+
fieldType,
|
|
69
|
+
lcid,
|
|
70
|
+
source,
|
|
71
|
+
]);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
async textFieldValueByTypeSourceOriginal(fieldType, source, original) {
|
|
75
|
+
return await exec("textFieldValueByTypeSourceOriginal", [
|
|
76
|
+
this.rawResult,
|
|
77
|
+
fieldType,
|
|
78
|
+
source,
|
|
79
|
+
original,
|
|
80
|
+
]);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
async textFieldValueByTypeLcidSourceOriginal(fieldType, lcid, source, original) {
|
|
84
|
+
return await exec("textFieldValueByTypeLcidSourceOriginal", [
|
|
85
|
+
this.rawResult,
|
|
86
|
+
fieldType,
|
|
87
|
+
lcid,
|
|
88
|
+
source,
|
|
89
|
+
original,
|
|
90
|
+
]);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
async textFieldByType(fieldType) {
|
|
94
|
+
const result = await exec("textFieldByType", [
|
|
95
|
+
this.rawResult,
|
|
96
|
+
fieldType,
|
|
97
|
+
]);
|
|
98
|
+
if (result == null) return null;
|
|
99
|
+
return TextField.fromJson(JSON.parse(result));
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
async textFieldByTypeLcid(fieldType, lcid) {
|
|
103
|
+
const result = await exec("textFieldByTypeLcid", [
|
|
104
|
+
this.rawResult,
|
|
105
|
+
fieldType,
|
|
106
|
+
lcid,
|
|
107
|
+
]);
|
|
108
|
+
if (result == null) return null;
|
|
109
|
+
return TextField.fromJson(JSON.parse(result));
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
async graphicFieldByTypeSource(fieldType, source) {
|
|
113
|
+
const result = await exec("graphicFieldByTypeSource", [
|
|
114
|
+
this.rawResult,
|
|
115
|
+
fieldType,
|
|
116
|
+
source,
|
|
117
|
+
]);
|
|
118
|
+
if (result == null) return null;
|
|
119
|
+
return GraphicField.fromJson(JSON.parse(result));
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
async graphicFieldByTypeSourcePageIndex(fieldType, source, pageIndex) {
|
|
123
|
+
const result = await exec("graphicFieldByTypeSourcePageIndex", [
|
|
124
|
+
this.rawResult,
|
|
125
|
+
fieldType,
|
|
126
|
+
source,
|
|
127
|
+
pageIndex,
|
|
128
|
+
]);
|
|
129
|
+
if (result == null) return null;
|
|
130
|
+
return GraphicField.fromJson(JSON.parse(result));
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
async graphicFieldByTypeSourcePageIndexLight(fieldType, source, pageIndex, light) {
|
|
134
|
+
const result = await exec("graphicFieldByTypeSourcePageIndexLight", [
|
|
135
|
+
this.rawResult,
|
|
136
|
+
fieldType,
|
|
137
|
+
source,
|
|
138
|
+
pageIndex,
|
|
139
|
+
light,
|
|
140
|
+
]);
|
|
141
|
+
if (result == null) return null;
|
|
142
|
+
return GraphicField.fromJson(JSON.parse(result));
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
async graphicFieldImageByType(fieldType) {
|
|
146
|
+
const result = await exec("graphicFieldImageByType", [
|
|
147
|
+
this.rawResult,
|
|
148
|
+
fieldType,
|
|
149
|
+
]);
|
|
150
|
+
return result;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
async graphicFieldImageByTypeSource(fieldType, source) {
|
|
154
|
+
const result = await exec("graphicFieldImageByTypeSource", [
|
|
155
|
+
this.rawResult,
|
|
156
|
+
fieldType,
|
|
157
|
+
source,
|
|
158
|
+
]);
|
|
159
|
+
return result;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
async graphicFieldImageByTypeSourcePageIndex(fieldType, source, pageIndex) {
|
|
163
|
+
const result = await exec("graphicFieldImageByTypeSourcePageIndex", [
|
|
164
|
+
this.rawResult,
|
|
165
|
+
fieldType,
|
|
166
|
+
source,
|
|
167
|
+
pageIndex,
|
|
168
|
+
]);
|
|
169
|
+
return result;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
async graphicFieldImageByTypeSourcePageIndexLight(fieldType, source, pageIndex, light) {
|
|
173
|
+
const result = await exec("graphicFieldImageByTypeSourcePageIndexLight", [
|
|
174
|
+
this.rawResult,
|
|
175
|
+
fieldType,
|
|
176
|
+
source,
|
|
177
|
+
pageIndex,
|
|
178
|
+
light,
|
|
179
|
+
]);
|
|
180
|
+
return result;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
async containers(resultType) {
|
|
184
|
+
return await exec("containers", [this.rawResult, resultType]);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
async encryptedContainers() {
|
|
188
|
+
return await exec("encryptedContainers", [this.rawResult]);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
static fromJson(jsonObject) {
|
|
192
|
+
if (jsonObject == null) return null;
|
|
193
|
+
|
|
194
|
+
const result = new Results();
|
|
195
|
+
result.chipPage = jsonObject["chipPage"];
|
|
196
|
+
result.processingFinishedStatus = jsonObject["processingFinishedStatus"];
|
|
197
|
+
result.elapsedTime = jsonObject["elapsedTime"];
|
|
198
|
+
result.elapsedTimeRFID = jsonObject["elapsedTimeRFID"];
|
|
199
|
+
result.morePagesAvailable = jsonObject["morePagesAvailable"];
|
|
200
|
+
result.graphicResult = GraphicResult.fromJson(jsonObject["graphicResult"]);
|
|
201
|
+
result.textResult = TextResult.fromJson(jsonObject["textResult"]);
|
|
202
|
+
result.rawResult = jsonObject["rawResult"];
|
|
203
|
+
result.rfidSessionData = RFIDSessionData.fromJson(jsonObject["rfidSessionData"]);
|
|
204
|
+
result.authenticityResult = AuthenticityResult.fromJson(jsonObject["authenticityResult"]);
|
|
205
|
+
result.barcodeResult = BarcodeResult.fromJson(jsonObject["barcodeResult"]);
|
|
206
|
+
result.status = ResultsStatus.fromJson(jsonObject["status"]);
|
|
207
|
+
result.vdsncData = VDSNCData.fromJson(jsonObject["vdsncData"]);
|
|
208
|
+
result.dtcData = jsonObject["dtcData"];
|
|
209
|
+
result.transactionInfo = TransactionInfo.fromJson(jsonObject["transactionInfo"]);
|
|
210
|
+
|
|
211
|
+
if (jsonObject["documentPosition"] != null) {
|
|
212
|
+
result.documentPosition = [];
|
|
213
|
+
for (const item of jsonObject["documentPosition"]) {
|
|
214
|
+
const position = Position.fromJson(item);
|
|
215
|
+
if (position != null) {
|
|
216
|
+
result.documentPosition.push(position);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
if (jsonObject["barcodePosition"] != null) {
|
|
222
|
+
result.barcodePosition = [];
|
|
223
|
+
for (const item of jsonObject["barcodePosition"]) {
|
|
224
|
+
const position = Position.fromJson(item);
|
|
225
|
+
if (position != null) {
|
|
226
|
+
result.barcodePosition.push(position);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
if (jsonObject["mrzPosition"] != null) {
|
|
232
|
+
result.mrzPosition = [];
|
|
233
|
+
for (const item of jsonObject["mrzPosition"]) {
|
|
234
|
+
const position = Position.fromJson(item);
|
|
235
|
+
if (position != null) {
|
|
236
|
+
result.mrzPosition.push(position);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
if (jsonObject["imageQuality"] != null) {
|
|
242
|
+
result.imageQuality = [];
|
|
243
|
+
for (const item of jsonObject["imageQuality"]) {
|
|
244
|
+
const imageQualityGroup = ImageQualityGroup.fromJson(item);
|
|
245
|
+
if (imageQualityGroup != null) {
|
|
246
|
+
result.imageQuality.push(imageQualityGroup);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
if (jsonObject["documentType"] != null) {
|
|
252
|
+
result.documentType = [];
|
|
253
|
+
for (const item of jsonObject["documentType"]) {
|
|
254
|
+
const documentType = DocumentType.fromJson(item);
|
|
255
|
+
if (documentType != null) {
|
|
256
|
+
result.documentType.push(documentType);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
return result;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
export const ProcessingFinishedStatus = {
|
|
266
|
+
NOT_READY: 0,
|
|
267
|
+
READY: 1,
|
|
268
|
+
TIMEOUT: 2
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
export const ResultType = {
|
|
272
|
+
NONE: -1,
|
|
273
|
+
EMPTY: 0,
|
|
274
|
+
RAW_IMAGE: 1,
|
|
275
|
+
FILE_IMAGE: 2,
|
|
276
|
+
MRZ_OCR_EXTENDED: 3,
|
|
277
|
+
BARCODES: 5,
|
|
278
|
+
GRAPHICS: 6,
|
|
279
|
+
MRZ_TEST_QUALITY: 7,
|
|
280
|
+
DOCUMENT_TYPES_CANDIDATES: 8,
|
|
281
|
+
CHOSEN_DOCUMENT_TYPE_CANDIDATE: 9,
|
|
282
|
+
DOCUMENTS_INFO_LIST: 10,
|
|
283
|
+
OCR_LEXICAL_ANALYZE: 15,
|
|
284
|
+
RAW_UNCROPPED_IMAGE: 16,
|
|
285
|
+
VISUAL_OCR_EXTENDED: 17,
|
|
286
|
+
BAR_CODES_TEXT_DATA: 18,
|
|
287
|
+
BAR_CODES_IMAGE_DATA: 19,
|
|
288
|
+
AUTHENTICITY: 20,
|
|
289
|
+
EXPERT_ANALYZE: 21,
|
|
290
|
+
OCR_LEXICAL_ANALYZE_EX: 22,
|
|
291
|
+
EOS_IMAGE: 23,
|
|
292
|
+
BAYER_IMAGE: 24,
|
|
293
|
+
MAGNETIC_STRIPE: 25,
|
|
294
|
+
MAGNETIC_STRIPE_TEXT_DATA: 26,
|
|
295
|
+
FIELD_FILE_IMAGE: 27,
|
|
296
|
+
DATABASE_CHECK: 28,
|
|
297
|
+
FINGERPRINT_TEMPLATE_ISO: 29,
|
|
298
|
+
INPUT_IMAGE_QUALITY: 30,
|
|
299
|
+
LIVE_PORTRAIT: 32,
|
|
300
|
+
STATUS: 33,
|
|
301
|
+
PORTRAIT_COMPARISON: 34,
|
|
302
|
+
EXT_PORTRAIT: 35,
|
|
303
|
+
TEXT: 36,
|
|
304
|
+
IMAGES: 37,
|
|
305
|
+
INTERNAL_RFID_SESSION: 48,
|
|
306
|
+
INTERNAL_ENCRYPTED_RCL: 49,
|
|
307
|
+
INTERNAL_LICENSE: 50,
|
|
308
|
+
MRZ_POSITION: 61,
|
|
309
|
+
BARCODE_POSITION: 62,
|
|
310
|
+
DOCUMENT_POSITION: 85,
|
|
311
|
+
CUSTOM: 100,
|
|
312
|
+
RFID_RAW_DATA: 101,
|
|
313
|
+
RFID_TEXT_DATA: 102,
|
|
314
|
+
RFID_IMAGE_DATA: 103,
|
|
315
|
+
RFID_BINARY_DATA: 104,
|
|
316
|
+
RFID_ORIGINAL_GRAPHICS: 105,
|
|
317
|
+
RFID_DTC_VC: 109
|
|
318
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export class TransactionInfo {
|
|
2
|
+
transactionId
|
|
3
|
+
tag
|
|
4
|
+
sessionLogFolder
|
|
5
|
+
|
|
6
|
+
static fromJson(jsonObject) {
|
|
7
|
+
if (jsonObject == null) return null
|
|
8
|
+
var result = new TransactionInfo()
|
|
9
|
+
|
|
10
|
+
result.transactionId = jsonObject["transactionId"]
|
|
11
|
+
result.tag = jsonObject["tag"]
|
|
12
|
+
result.sessionLogFolder = jsonObject["sessionLogFolder"]
|
|
13
|
+
|
|
14
|
+
return result
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export const Authenticity = {
|
|
2
|
+
NONE: 0,
|
|
3
|
+
UV_LUMINESCENCE: 1,
|
|
4
|
+
IR_B900: 2,
|
|
5
|
+
IMAGE_PATTERN: 4,
|
|
6
|
+
AXIAL_PROTECTION: 8,
|
|
7
|
+
UV_FIBERS: 16,
|
|
8
|
+
IR_VISIBILITY: 32,
|
|
9
|
+
OCR_SECURITY_TEXT: 64,
|
|
10
|
+
IPI: 128,
|
|
11
|
+
PHOTO_EMBED_TYPE: 512,
|
|
12
|
+
OVI: 1024,
|
|
13
|
+
HOLOGRAMS: 4096,
|
|
14
|
+
PHOTO_AREA: 8192,
|
|
15
|
+
PORTRAIT_COMPARISON: 32768,
|
|
16
|
+
BARCODE_FORMAT_CHECK: 65536,
|
|
17
|
+
KINEGRAM: 131072,
|
|
18
|
+
HOLOGRAMS_DETECTION: 524288,
|
|
19
|
+
LIVENESS: 2097152,
|
|
20
|
+
OCR: 4194304,
|
|
21
|
+
MRZ: 8388608,
|
|
22
|
+
STATUS_ONLY: 2147483648
|
|
23
|
+
}
|