@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,570 @@
|
|
|
1
|
+
import { exec } from '../../internal/bridge';
|
|
2
|
+
import { DocumentReader } from '../../index';
|
|
3
|
+
import { ImageQA } from './ImageQA';
|
|
4
|
+
import { RFIDParams } from './RfidParams';
|
|
5
|
+
import { FaceApiParams } from './FaceApiParams';
|
|
6
|
+
import { BackendProcessingConfig } from './BackendProcessingConfig';
|
|
7
|
+
import { AuthenticityParams } from './AuthenticityParams';
|
|
8
|
+
|
|
9
|
+
export class ProcessParams {
|
|
10
|
+
get multipageProcessing() { return this._multipageProcessing; }
|
|
11
|
+
set multipageProcessing(val) {
|
|
12
|
+
this._multipageProcessing = val;
|
|
13
|
+
this._set({ "multipageProcessing": val });
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
get logs() { return this._logs; }
|
|
17
|
+
set logs(val) {
|
|
18
|
+
this._logs = val;
|
|
19
|
+
this._set({ "logs": val });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
get debugSaveImages() { return this._debugSaveImages; }
|
|
23
|
+
set debugSaveImages(val) {
|
|
24
|
+
this._debugSaveImages = val;
|
|
25
|
+
this._set({ "debugSaveImages": val });
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
get debugSaveLogs() { return this._debugSaveLogs; }
|
|
29
|
+
set debugSaveLogs(val) {
|
|
30
|
+
this._debugSaveLogs = val;
|
|
31
|
+
this._set({ "debugSaveLogs": val });
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
get returnUncroppedImage() { return this._returnUncroppedImage; }
|
|
35
|
+
set returnUncroppedImage(val) {
|
|
36
|
+
this._returnUncroppedImage = val;
|
|
37
|
+
this._set({ "returnUncroppedImage": val });
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
get uvTorchEnabled() { return this._uvTorchEnabled; }
|
|
41
|
+
set uvTorchEnabled(val) {
|
|
42
|
+
this._uvTorchEnabled = val;
|
|
43
|
+
this._set({ "uvTorchEnabled": val });
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
get debugSaveCroppedImages() { return this._debugSaveCroppedImages; }
|
|
47
|
+
set debugSaveCroppedImages(val) {
|
|
48
|
+
this._debugSaveCroppedImages = val;
|
|
49
|
+
this._set({ "debugSaveCroppedImages": val });
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
get disableFocusingCheck() { return this._disableFocusingCheck; }
|
|
53
|
+
set disableFocusingCheck(val) {
|
|
54
|
+
this._disableFocusingCheck = val;
|
|
55
|
+
this._set({ "disableFocusingCheck": val });
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
get debugSaveRFIDSession() { return this._debugSaveRFIDSession; }
|
|
59
|
+
set debugSaveRFIDSession(val) {
|
|
60
|
+
this._debugSaveRFIDSession = val;
|
|
61
|
+
this._set({ "debugSaveRFIDSession": val });
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
get doublePageSpread() { return this._doublePageSpread; }
|
|
65
|
+
set doublePageSpread(val) {
|
|
66
|
+
this._doublePageSpread = val;
|
|
67
|
+
this._set({ "doublePageSpread": val });
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
get manualCrop() { return this._manualCrop; }
|
|
71
|
+
set manualCrop(val) {
|
|
72
|
+
this._manualCrop = val;
|
|
73
|
+
this._set({ "manualCrop": val });
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
get integralImage() { return this._integralImage; }
|
|
77
|
+
set integralImage(val) {
|
|
78
|
+
this._integralImage = val;
|
|
79
|
+
this._set({ "integralImage": val });
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
get returnCroppedBarcode() { return this._returnCroppedBarcode; }
|
|
83
|
+
set returnCroppedBarcode(val) {
|
|
84
|
+
this._returnCroppedBarcode = val;
|
|
85
|
+
this._set({ "returnCroppedBarcode": val });
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
get checkRequiredTextFields() { return this._checkRequiredTextFields; }
|
|
89
|
+
set checkRequiredTextFields(val) {
|
|
90
|
+
this._checkRequiredTextFields = val;
|
|
91
|
+
this._set({ "checkRequiredTextFields": val });
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
get depersonalizeLog() { return this._depersonalizeLog; }
|
|
95
|
+
set depersonalizeLog(val) {
|
|
96
|
+
this._depersonalizeLog = val;
|
|
97
|
+
this._set({ "depersonalizeLog": val });
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
get generateDoublePageSpreadImage() { return this._generateDoublePageSpreadImage; }
|
|
101
|
+
set generateDoublePageSpreadImage(val) {
|
|
102
|
+
this._generateDoublePageSpreadImage = val;
|
|
103
|
+
this._set({ "generateDoublePageSpreadImage": val });
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
get alreadyCropped() { return this._alreadyCropped; }
|
|
107
|
+
set alreadyCropped(val) {
|
|
108
|
+
this._alreadyCropped = val;
|
|
109
|
+
this._set({ "alreadyCropped": val });
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
get matchTextFieldMask() { return this._matchTextFieldMask; }
|
|
113
|
+
set matchTextFieldMask(val) {
|
|
114
|
+
this._matchTextFieldMask = val;
|
|
115
|
+
this._set({ "matchTextFieldMask": val });
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
get updateOCRValidityByGlare() { return this._updateOCRValidityByGlare; }
|
|
119
|
+
set updateOCRValidityByGlare(val) {
|
|
120
|
+
this._updateOCRValidityByGlare = val;
|
|
121
|
+
this._set({ "updateOCRValidityByGlare": val });
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
get noGraphics() { return this._noGraphics; }
|
|
125
|
+
set noGraphics(val) {
|
|
126
|
+
this._noGraphics = val;
|
|
127
|
+
this._set({ "noGraphics": val });
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
get multiDocOnImage() { return this._multiDocOnImage; }
|
|
131
|
+
set multiDocOnImage(val) {
|
|
132
|
+
this._multiDocOnImage = val;
|
|
133
|
+
this._set({ "multiDocOnImage": val });
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
get forceReadMrzBeforeLocate() { return this._forceReadMrzBeforeLocate; }
|
|
137
|
+
set forceReadMrzBeforeLocate(val) {
|
|
138
|
+
this._forceReadMrzBeforeLocate = val;
|
|
139
|
+
this._set({ "forceReadMrzBeforeLocate": val });
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
get parseBarcodes() { return this._parseBarcodes; }
|
|
143
|
+
set parseBarcodes(val) {
|
|
144
|
+
this._parseBarcodes = val;
|
|
145
|
+
this._set({ "parseBarcodes": val });
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
get shouldReturnPackageForReprocess() { return this._shouldReturnPackageForReprocess; }
|
|
149
|
+
set shouldReturnPackageForReprocess(val) {
|
|
150
|
+
this._shouldReturnPackageForReprocess = val;
|
|
151
|
+
this._set({ "shouldReturnPackageForReprocess": val });
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
get disablePerforationOCR() { return this._disablePerforationOCR; }
|
|
155
|
+
set disablePerforationOCR(val) {
|
|
156
|
+
this._disablePerforationOCR = val;
|
|
157
|
+
this._set({ "disablePerforationOCR": val });
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
get respectImageQuality() { return this._respectImageQuality; }
|
|
161
|
+
set respectImageQuality(val) {
|
|
162
|
+
this._respectImageQuality = val;
|
|
163
|
+
this._set({ "respectImageQuality": val });
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
get strictImageQuality() { return this._strictImageQuality; }
|
|
167
|
+
set strictImageQuality(val) {
|
|
168
|
+
this._strictImageQuality = val;
|
|
169
|
+
this._set({ "strictImageQuality": val });
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
get splitNames() { return this._splitNames; }
|
|
173
|
+
set splitNames(val) {
|
|
174
|
+
this._splitNames = val;
|
|
175
|
+
this._set({ "splitNames": val });
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
get useFaceApi() { return this._useFaceApi; }
|
|
179
|
+
set useFaceApi(val) {
|
|
180
|
+
this._useFaceApi = val;
|
|
181
|
+
this._set({ "useFaceApi": val });
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
get useAuthenticityCheck() { return this._useAuthenticityCheck; }
|
|
185
|
+
set useAuthenticityCheck(val) {
|
|
186
|
+
this._useAuthenticityCheck = val;
|
|
187
|
+
this._set({ "useAuthenticityCheck": val });
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
get checkHologram() { return this._checkHologram; }
|
|
191
|
+
set checkHologram(val) {
|
|
192
|
+
this._checkHologram = val;
|
|
193
|
+
this._set({ "checkHologram": val });
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
get generateNumericCodes() { return this._generateNumericCodes; }
|
|
197
|
+
set generateNumericCodes(val) {
|
|
198
|
+
this._generateNumericCodes = val;
|
|
199
|
+
this._set({ "generateNumericCodes": val });
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
get strictBarcodeDigitalSignatureCheck() { return this._strictBarcodeDigitalSignatureCheck; }
|
|
203
|
+
set strictBarcodeDigitalSignatureCheck(val) {
|
|
204
|
+
this._strictBarcodeDigitalSignatureCheck = val;
|
|
205
|
+
this._set({ "strictBarcodeDigitalSignatureCheck": val });
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
get selectLongestNames() { return this._selectLongestNames; }
|
|
209
|
+
set selectLongestNames(val) {
|
|
210
|
+
this._selectLongestNames = val;
|
|
211
|
+
this._set({ "selectLongestNames": val });
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
get generateDTCVC() { return this._generateDTCVC; }
|
|
215
|
+
set generateDTCVC(val) {
|
|
216
|
+
this._generateDTCVC = val;
|
|
217
|
+
this._set({ "generateDTCVC": val });
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
get strictDLCategoryExpiry() { return this._strictDLCategoryExpiry; }
|
|
221
|
+
set strictDLCategoryExpiry(val) {
|
|
222
|
+
this._strictDLCategoryExpiry = val;
|
|
223
|
+
this._set({ "strictDLCategoryExpiry": val });
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
get generateAlpha2Codes() { return this._generateAlpha2Codes; }
|
|
227
|
+
set generateAlpha2Codes(val) {
|
|
228
|
+
this._generateAlpha2Codes = val;
|
|
229
|
+
this._set({ "generateAlpha2Codes": val });
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
get barcodeParserType() { return this._barcodeParserType; }
|
|
233
|
+
set barcodeParserType(val) {
|
|
234
|
+
this._barcodeParserType = val;
|
|
235
|
+
this._set({ "barcodeParserType": val });
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
get perspectiveAngle() { return this._perspectiveAngle; }
|
|
239
|
+
set perspectiveAngle(val) {
|
|
240
|
+
this._perspectiveAngle = val;
|
|
241
|
+
this._set({ "perspectiveAngle": val });
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
get minDPI() { return this._minDPI; }
|
|
245
|
+
set minDPI(val) {
|
|
246
|
+
this._minDPI = val;
|
|
247
|
+
this._set({ "minDPI": val });
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
get imageDpiOutMax() { return this._imageDpiOutMax; }
|
|
251
|
+
set imageDpiOutMax(val) {
|
|
252
|
+
this._imageDpiOutMax = val;
|
|
253
|
+
this._set({ "imageDpiOutMax": val });
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
get forceDocFormat() { return this._forceDocFormat; }
|
|
257
|
+
set forceDocFormat(val) {
|
|
258
|
+
this._forceDocFormat = val;
|
|
259
|
+
this._set({ "forceDocFormat": val });
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
get shiftExpiryDate() { return this._shiftExpiryDate; }
|
|
263
|
+
set shiftExpiryDate(val) {
|
|
264
|
+
this._shiftExpiryDate = val;
|
|
265
|
+
this._set({ "shiftExpiryDate": val });
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
get minimalHolderAge() { return this._minimalHolderAge; }
|
|
269
|
+
set minimalHolderAge(val) {
|
|
270
|
+
this._minimalHolderAge = val;
|
|
271
|
+
this._set({ "minimalHolderAge": val });
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
get imageOutputMaxHeight() { return this._imageOutputMaxHeight; }
|
|
275
|
+
set imageOutputMaxHeight(val) {
|
|
276
|
+
this._imageOutputMaxHeight = val;
|
|
277
|
+
this._set({ "imageOutputMaxHeight": val });
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
get imageOutputMaxWidth() { return this._imageOutputMaxWidth; }
|
|
281
|
+
set imageOutputMaxWidth(val) {
|
|
282
|
+
this._imageOutputMaxWidth = val;
|
|
283
|
+
this._set({ "imageOutputMaxWidth": val });
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
get processAuth() { return this._processAuth; }
|
|
287
|
+
set processAuth(val) {
|
|
288
|
+
this._processAuth = val;
|
|
289
|
+
this._set({ "processAuth": val });
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
get convertCase() { return this._convertCase; }
|
|
293
|
+
set convertCase(val) {
|
|
294
|
+
this._convertCase = val;
|
|
295
|
+
this._set({ "convertCase": val });
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
get logLevel() { return this._logLevel; }
|
|
299
|
+
set logLevel(val) {
|
|
300
|
+
this._logLevel = val;
|
|
301
|
+
this._set({ "logLevel": val });
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
get mrzDetectMode() { return this._mrzDetectMode; }
|
|
305
|
+
set mrzDetectMode(val) {
|
|
306
|
+
this._mrzDetectMode = val;
|
|
307
|
+
this._set({ "mrzDetectMode": val });
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
get measureSystem() { return this._measureSystem; }
|
|
311
|
+
set measureSystem(val) {
|
|
312
|
+
this._measureSystem = val;
|
|
313
|
+
this._set({ "measureSystem": val });
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
get forceDocID() { return this._forceDocID; }
|
|
317
|
+
set forceDocID(val) {
|
|
318
|
+
this._forceDocID = val;
|
|
319
|
+
this._set({ "forceDocID": val });
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
get pdfPagesLimit() { return this._pdfPagesLimit; }
|
|
323
|
+
set pdfPagesLimit(val) {
|
|
324
|
+
this._pdfPagesLimit = val;
|
|
325
|
+
this._set({ "pdfPagesLimit": val });
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
get dateFormat() { return this._dateFormat; }
|
|
329
|
+
set dateFormat(val) {
|
|
330
|
+
this._dateFormat = val;
|
|
331
|
+
this._set({ "dateFormat": val });
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
get scenario() { return this._scenario; }
|
|
335
|
+
set scenario(val) {
|
|
336
|
+
this._scenario = val;
|
|
337
|
+
this._set({ "scenario": val });
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
get captureButtonScenario() { return this._captureButtonScenario; }
|
|
341
|
+
set captureButtonScenario(val) {
|
|
342
|
+
this._captureButtonScenario = val;
|
|
343
|
+
this._set({ "captureButtonScenario": val });
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
get timeout() { return this._timeout; }
|
|
347
|
+
set timeout(val) {
|
|
348
|
+
this._timeout = val;
|
|
349
|
+
this._set({ "timeout": val });
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
get timeoutFromFirstDetect() { return this._timeoutFromFirstDetect; }
|
|
353
|
+
set timeoutFromFirstDetect(val) {
|
|
354
|
+
this._timeoutFromFirstDetect = val;
|
|
355
|
+
this._set({ "timeoutFromFirstDetect": val });
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
get timeoutFromFirstDocType() { return this._timeoutFromFirstDocType; }
|
|
359
|
+
set timeoutFromFirstDocType(val) {
|
|
360
|
+
this._timeoutFromFirstDocType = val;
|
|
361
|
+
this._set({ "timeoutFromFirstDocType": val });
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
get documentAreaMin() { return this._documentAreaMin; }
|
|
365
|
+
set documentAreaMin(val) {
|
|
366
|
+
this._documentAreaMin = val;
|
|
367
|
+
this._set({ "documentAreaMin": val });
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
get timeoutLiveness() { return this._timeoutLiveness; }
|
|
371
|
+
set timeoutLiveness(val) {
|
|
372
|
+
this._timeoutLiveness = val;
|
|
373
|
+
this._set({ "timeoutLiveness": val });
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
get documentIDList() { return this._documentIDList; }
|
|
377
|
+
set documentIDList(val) {
|
|
378
|
+
this._documentIDList = val;
|
|
379
|
+
this._set({ "documentIDList": val });
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
get barcodeTypes() { return this._barcodeTypes; }
|
|
383
|
+
set barcodeTypes(val) {
|
|
384
|
+
this._barcodeTypes = val;
|
|
385
|
+
this._set({ "barcodeTypes": val });
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
get fieldTypesFilter() { return this._fieldTypesFilter; }
|
|
389
|
+
set fieldTypesFilter(val) {
|
|
390
|
+
this._fieldTypesFilter = val;
|
|
391
|
+
this._set({ "fieldTypesFilter": val });
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
get resultTypeOutput() { return this._resultTypeOutput; }
|
|
395
|
+
set resultTypeOutput(val) {
|
|
396
|
+
this._resultTypeOutput = val;
|
|
397
|
+
this._set({ "resultTypeOutput": val });
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
get mrzFormatsFilter() { return this._mrzFormatsFilter; }
|
|
401
|
+
set mrzFormatsFilter(val) {
|
|
402
|
+
this._mrzFormatsFilter = val;
|
|
403
|
+
this._set({ "mrzFormatsFilter": val });
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
get documentGroupFilter() { return this._documentGroupFilter; }
|
|
407
|
+
set documentGroupFilter(val) {
|
|
408
|
+
this._documentGroupFilter = val;
|
|
409
|
+
this._set({ "documentGroupFilter": val });
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
get lcidIgnoreFilter() { return this._lcidIgnoreFilter; }
|
|
413
|
+
set lcidIgnoreFilter(val) {
|
|
414
|
+
this._lcidIgnoreFilter = val;
|
|
415
|
+
this._set({ "lcidIgnoreFilter": val });
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
get lcidFilter() { return this._lcidFilter; }
|
|
419
|
+
set lcidFilter(val) {
|
|
420
|
+
this._lcidFilter = val;
|
|
421
|
+
this._set({ "lcidFilter": val });
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
get imageQA() { return this._imageQA; }
|
|
425
|
+
set imageQA(val) { (this._imageQA = val)._apply(); }
|
|
426
|
+
|
|
427
|
+
get rfidParams() { return this._rfidParams; }
|
|
428
|
+
set rfidParams(val) {
|
|
429
|
+
this._rfidParams = val;
|
|
430
|
+
this._set({ "rfidParams": val });
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
get faceApiParams() { return this._faceApiParams; }
|
|
434
|
+
set faceApiParams(val) {
|
|
435
|
+
this._faceApiParams = val;
|
|
436
|
+
this._set({ "faceApiParams": val });
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
get backendProcessingConfig() { return this._backendProcessingConfig; }
|
|
440
|
+
set backendProcessingConfig(val) {
|
|
441
|
+
this._backendProcessingConfig = val;
|
|
442
|
+
this._set({ "backendProcessingConfig": val });
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
get authenticityParams() { return this._authenticityParams; }
|
|
446
|
+
set authenticityParams(val) { (this._authenticityParams = val)._apply(); }
|
|
447
|
+
|
|
448
|
+
get customParams() { return this._customParams; }
|
|
449
|
+
set customParams(val) {
|
|
450
|
+
this._customParams = val;
|
|
451
|
+
this._set({ "customParams": val });
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
static fromJson(jsonObject) {
|
|
455
|
+
if (jsonObject == null) return new ProcessParams();
|
|
456
|
+
|
|
457
|
+
const result = new ProcessParams();
|
|
458
|
+
result._multipageProcessing = jsonObject["multipageProcessing"];
|
|
459
|
+
result._logs = jsonObject["logs"];
|
|
460
|
+
result._debugSaveImages = jsonObject["debugSaveImages"];
|
|
461
|
+
result._debugSaveLogs = jsonObject["debugSaveLogs"];
|
|
462
|
+
result._returnUncroppedImage = jsonObject["returnUncroppedImage"];
|
|
463
|
+
result._uvTorchEnabled = jsonObject["uvTorchEnabled"];
|
|
464
|
+
result._debugSaveCroppedImages = jsonObject["debugSaveCroppedImages"];
|
|
465
|
+
result._disableFocusingCheck = jsonObject["disableFocusingCheck"];
|
|
466
|
+
result._debugSaveRFIDSession = jsonObject["debugSaveRFIDSession"];
|
|
467
|
+
result._doublePageSpread = jsonObject["doublePageSpread"];
|
|
468
|
+
result._manualCrop = jsonObject["manualCrop"];
|
|
469
|
+
result._integralImage = jsonObject["integralImage"];
|
|
470
|
+
result._returnCroppedBarcode = jsonObject["returnCroppedBarcode"];
|
|
471
|
+
result._checkRequiredTextFields = jsonObject["checkRequiredTextFields"];
|
|
472
|
+
result._depersonalizeLog = jsonObject["depersonalizeLog"];
|
|
473
|
+
result._generateDoublePageSpreadImage = jsonObject["generateDoublePageSpreadImage"];
|
|
474
|
+
result._alreadyCropped = jsonObject["alreadyCropped"];
|
|
475
|
+
result._matchTextFieldMask = jsonObject["matchTextFieldMask"];
|
|
476
|
+
result._updateOCRValidityByGlare = jsonObject["updateOCRValidityByGlare"];
|
|
477
|
+
result._noGraphics = jsonObject["noGraphics"];
|
|
478
|
+
result._multiDocOnImage = jsonObject["multiDocOnImage"];
|
|
479
|
+
result._forceReadMrzBeforeLocate = jsonObject["forceReadMrzBeforeLocate"];
|
|
480
|
+
result._parseBarcodes = jsonObject["parseBarcodes"];
|
|
481
|
+
result._shouldReturnPackageForReprocess = jsonObject["shouldReturnPackageForReprocess"];
|
|
482
|
+
result._disablePerforationOCR = jsonObject["disablePerforationOCR"];
|
|
483
|
+
result._respectImageQuality = jsonObject["respectImageQuality"];
|
|
484
|
+
result._strictImageQuality = jsonObject["strictImageQuality"];
|
|
485
|
+
result._splitNames = jsonObject["splitNames"];
|
|
486
|
+
result._useFaceApi = jsonObject["useFaceApi"];
|
|
487
|
+
result._useAuthenticityCheck = jsonObject["useAuthenticityCheck"];
|
|
488
|
+
result._checkHologram = jsonObject["checkHologram"];
|
|
489
|
+
result._generateNumericCodes = jsonObject["generateNumericCodes"];
|
|
490
|
+
result._strictBarcodeDigitalSignatureCheck = jsonObject["strictBarcodeDigitalSignatureCheck"];
|
|
491
|
+
result._selectLongestNames = jsonObject["selectLongestNames"];
|
|
492
|
+
result._generateDTCVC = jsonObject["generateDTCVC"];
|
|
493
|
+
result._strictDLCategoryExpiry = jsonObject["strictDLCategoryExpiry"];
|
|
494
|
+
result._generateAlpha2Codes = jsonObject["generateAlpha2Codes"];
|
|
495
|
+
result._barcodeParserType = jsonObject["barcodeParserType"];
|
|
496
|
+
result._perspectiveAngle = jsonObject["perspectiveAngle"];
|
|
497
|
+
result._minDPI = jsonObject["minDPI"];
|
|
498
|
+
result._imageDpiOutMax = jsonObject["imageDpiOutMax"];
|
|
499
|
+
result._forceDocFormat = jsonObject["forceDocFormat"];
|
|
500
|
+
result._shiftExpiryDate = jsonObject["shiftExpiryDate"];
|
|
501
|
+
result._minimalHolderAge = jsonObject["minimalHolderAge"];
|
|
502
|
+
result._imageOutputMaxHeight = jsonObject["imageOutputMaxHeight"];
|
|
503
|
+
result._imageOutputMaxWidth = jsonObject["imageOutputMaxWidth"];
|
|
504
|
+
result._processAuth = jsonObject["processAuth"];
|
|
505
|
+
result._convertCase = jsonObject["convertCase"];
|
|
506
|
+
result._logLevel = jsonObject["logLevel"];
|
|
507
|
+
result._mrzDetectMode = jsonObject["mrzDetectMode"];
|
|
508
|
+
result._measureSystem = jsonObject["measureSystem"];
|
|
509
|
+
result._forceDocID = jsonObject["forceDocID"];
|
|
510
|
+
result._pdfPagesLimit = jsonObject["pdfPagesLimit"];
|
|
511
|
+
result._dateFormat = jsonObject["dateFormat"];
|
|
512
|
+
result._scenario = jsonObject["scenario"];
|
|
513
|
+
result._captureButtonScenario = jsonObject["captureButtonScenario"];
|
|
514
|
+
result._timeout = jsonObject["timeout"];
|
|
515
|
+
result._timeoutFromFirstDetect = jsonObject["timeoutFromFirstDetect"];
|
|
516
|
+
result._timeoutFromFirstDocType = jsonObject["timeoutFromFirstDocType"];
|
|
517
|
+
result._documentAreaMin = jsonObject["documentAreaMin"];
|
|
518
|
+
result._timeoutLiveness = jsonObject["timeoutLiveness"];
|
|
519
|
+
result._documentIDList = jsonObject["documentIDList"];
|
|
520
|
+
result._barcodeTypes = jsonObject["barcodeTypes"];
|
|
521
|
+
result._fieldTypesFilter = jsonObject["fieldTypesFilter"];
|
|
522
|
+
result._resultTypeOutput = jsonObject["resultTypeOutput"];
|
|
523
|
+
result._mrzFormatsFilter = jsonObject["mrzFormatsFilter"];
|
|
524
|
+
result._documentGroupFilter = jsonObject["documentGroupFilter"];
|
|
525
|
+
result._lcidIgnoreFilter = jsonObject["lcidIgnoreFilter"];
|
|
526
|
+
result._lcidFilter = jsonObject["lcidFilter"];
|
|
527
|
+
result._imageQA = ImageQA.fromJson(jsonObject["imageQA"]);
|
|
528
|
+
result._rfidParams = RFIDParams.fromJson(jsonObject["rfidParams"]);
|
|
529
|
+
result._faceApiParams = FaceApiParams.fromJson(jsonObject["faceApiParams"]);
|
|
530
|
+
result._backendProcessingConfig = BackendProcessingConfig.fromJson(jsonObject["backendProcessingConfig"]);
|
|
531
|
+
result._authenticityParams = AuthenticityParams.fromJson(jsonObject["authenticityParams"]);
|
|
532
|
+
result._customParams = jsonObject["customParams"];
|
|
533
|
+
|
|
534
|
+
return result;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
_apply() { this._set(this); }
|
|
538
|
+
_set(json) {
|
|
539
|
+
if (this === DocumentReader.instance.processParams)
|
|
540
|
+
exec("setProcessParams", [json]);
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export const MeasureSystem = {
|
|
545
|
+
METRIC: 0,
|
|
546
|
+
IMPERIAL: 1
|
|
547
|
+
};
|
|
548
|
+
|
|
549
|
+
export const MRZFormat = {
|
|
550
|
+
FORMAT_1X30: "1x30",
|
|
551
|
+
FORMAT_3X30: "3x30",
|
|
552
|
+
FORMAT_2X36: "2x36",
|
|
553
|
+
FORMAT_2X44: "2x44",
|
|
554
|
+
FORMAT_1X6: "1x6",
|
|
555
|
+
FORMAT_2X30: "2x30"
|
|
556
|
+
};
|
|
557
|
+
|
|
558
|
+
export const LogLevel = {
|
|
559
|
+
FatalError: "FatalError",
|
|
560
|
+
Error: "Error",
|
|
561
|
+
Warning: "Warning",
|
|
562
|
+
Info: "Info",
|
|
563
|
+
Debug: "Debug"
|
|
564
|
+
};
|
|
565
|
+
|
|
566
|
+
export const MrzDetectionModes = {
|
|
567
|
+
DEFAULT: 0,
|
|
568
|
+
RESIZE_BINARIZE_WINDOW: 1,
|
|
569
|
+
BLUR_BEFORE_BINARIZATION: 2
|
|
570
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export class RFIDParams {
|
|
2
|
+
paIgnoreNotificationCodes
|
|
3
|
+
|
|
4
|
+
constructor(options) {
|
|
5
|
+
this.paIgnoreNotificationCodes = options?.paIgnoreNotificationCodes;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
static fromJson(jsonObject) {
|
|
9
|
+
if (jsonObject == null) return null;
|
|
10
|
+
|
|
11
|
+
return new RFIDParams({
|
|
12
|
+
paIgnoreNotificationCodes: jsonObject["paIgnoreNotificationCodes"]
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { DocumentReader } from '../../index';
|
|
2
|
+
|
|
3
|
+
export class DTCDataGroup {
|
|
4
|
+
get dg17() { return this._dg17; }
|
|
5
|
+
set dg17(val) {
|
|
6
|
+
this._dg17 = val;
|
|
7
|
+
this._set({ "DG17": val });
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
get dg18() { return this._dg18; }
|
|
11
|
+
set dg18(val) {
|
|
12
|
+
this._dg18 = val;
|
|
13
|
+
this._set({ "DG18": val });
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
get dg22() { return this._dg22; }
|
|
17
|
+
set dg22(val) {
|
|
18
|
+
this._dg22 = val;
|
|
19
|
+
this._set({ "DG22": val });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
get dg23() { return this._dg23; }
|
|
23
|
+
set dg23(val) {
|
|
24
|
+
this._dg23 = val;
|
|
25
|
+
this._set({ "DG23": val });
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
get dg24() { return this._dg24; }
|
|
29
|
+
set dg24(val) {
|
|
30
|
+
this._dg24 = val;
|
|
31
|
+
this._set({ "DG24": val });
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
static fromJson(jsonObject) {
|
|
35
|
+
if (jsonObject == null) return null;
|
|
36
|
+
|
|
37
|
+
var result = new DTCDataGroup();
|
|
38
|
+
result._dg17 = jsonObject["DG17"];
|
|
39
|
+
result._dg18 = jsonObject["DG18"];
|
|
40
|
+
result._dg22 = jsonObject["DG22"];
|
|
41
|
+
result._dg23 = jsonObject["DG23"];
|
|
42
|
+
result._dg24 = jsonObject["DG24"];
|
|
43
|
+
|
|
44
|
+
return result;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
_apply() { this._set(this); }
|
|
48
|
+
_set(json) {
|
|
49
|
+
var rfidScenarioJson = { "dtcDataGroups": json };
|
|
50
|
+
var rfidScenario = DocumentReader.instance.rfidScenario;
|
|
51
|
+
if (this === rfidScenario.dtcDataGroups) rfidScenario._set(rfidScenarioJson);
|
|
52
|
+
}
|
|
53
|
+
}
|