@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,22 @@
|
|
|
1
|
+
import { GraphicField } from "./GraphicField.js";
|
|
2
|
+
|
|
3
|
+
export class GraphicResult {
|
|
4
|
+
fields;
|
|
5
|
+
|
|
6
|
+
static fromJson(jsonObject) {
|
|
7
|
+
if (jsonObject == null) return null;
|
|
8
|
+
const result = new GraphicResult();
|
|
9
|
+
|
|
10
|
+
result.fields = [];
|
|
11
|
+
if (jsonObject["fields"] != null) {
|
|
12
|
+
for (const item of jsonObject["fields"]) {
|
|
13
|
+
const field = GraphicField.fromJson(item);
|
|
14
|
+
if (field != null) {
|
|
15
|
+
result.fields.push(field);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return result;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { exec } from "../../internal/bridge";
|
|
2
|
+
|
|
3
|
+
export const LCID = {
|
|
4
|
+
LATIN: 0,
|
|
5
|
+
ABKHAZIAN_CYRILLIC: 10011,
|
|
6
|
+
AFRIKAANS: 1078,
|
|
7
|
+
ALBANIAN: 1052,
|
|
8
|
+
AMHARIC: 1118,
|
|
9
|
+
ARABIC_ALGERIA: 5121,
|
|
10
|
+
ARABIC_BAHRAIN: 15361,
|
|
11
|
+
ARABIC_EGYPT: 3073,
|
|
12
|
+
ARABIC_IRAQ: 2049,
|
|
13
|
+
ARABIC_JORDAN: 11265,
|
|
14
|
+
ARABIC_KUWAIT: 13313,
|
|
15
|
+
ARABIC_LEBANON: 12289,
|
|
16
|
+
ARABIC_LIBYA: 4097,
|
|
17
|
+
ARABIC_MOROCCO: 6145,
|
|
18
|
+
ARABIC_OMAN: 8193,
|
|
19
|
+
ARABIC_QATAR: 16385,
|
|
20
|
+
ARABIC_SAUDI_ARABIA: 1025,
|
|
21
|
+
ARABIC_SYRIA: 10241,
|
|
22
|
+
ARABIC_TUNISIA: 7169,
|
|
23
|
+
ARABIC_UAE: 14337,
|
|
24
|
+
ARABIC_YEMEN: 9217,
|
|
25
|
+
ARABIC_ARMENIAN: 1067,
|
|
26
|
+
ARABIC_WORLD: 4096,
|
|
27
|
+
AZERI_CYRILIC: 2092,
|
|
28
|
+
AZERI_LATIN: 1068,
|
|
29
|
+
ASSAMESE: 1101,
|
|
30
|
+
BASQUE: 1069,
|
|
31
|
+
BANK_CARD: 10003,
|
|
32
|
+
BANK_CARD_CVV2: 10004,
|
|
33
|
+
BANK_CARD_NAME: 10002,
|
|
34
|
+
BANK_CARD_NUMBER: 10000,
|
|
35
|
+
BANK_CARD_VALID_THRU: 10001,
|
|
36
|
+
BELARUSIAN: 1059,
|
|
37
|
+
BENGALI_BANGLADESH: 2117,
|
|
38
|
+
BENGALI_INDIA: 1093,
|
|
39
|
+
BULGARIAN: 1026,
|
|
40
|
+
CATALAN: 1027,
|
|
41
|
+
CHINESE_HONGKONG_SAR: 3076,
|
|
42
|
+
CHINESE_MACAO_SAR: 5124,
|
|
43
|
+
CHINESE: 2052,
|
|
44
|
+
CHINESE_SINGAPORE: 4100,
|
|
45
|
+
CHINESE_TAIWAN: 1028,
|
|
46
|
+
CROATIAN: 1050,
|
|
47
|
+
CZECH: 1029,
|
|
48
|
+
DANISH: 1030,
|
|
49
|
+
DIVEHI: 1125,
|
|
50
|
+
DUTCH_BELGIUM: 2067,
|
|
51
|
+
DUTCH_NETHERLANDS: 1043,
|
|
52
|
+
ENGLISH_AUSTRALIA: 3081,
|
|
53
|
+
ENGLISH_BELIZE: 10249,
|
|
54
|
+
ENGLISH_CANADA: 4105,
|
|
55
|
+
ENGLISH_CARRIBEAN: 9225,
|
|
56
|
+
ENGLISH_IRELAND: 6153,
|
|
57
|
+
ENGLISH_JAMAICA: 8201,
|
|
58
|
+
ENGLISH_NEW_ZEALAND: 5129,
|
|
59
|
+
ENGLISH_PHILIPPINES: 13321,
|
|
60
|
+
ENGLISH_SOUTH_AFRICA: 7177,
|
|
61
|
+
ENGLISH_TRINIDAD: 11273,
|
|
62
|
+
ENGLISH_UK: 2057,
|
|
63
|
+
ENGLISH_US: 1033,
|
|
64
|
+
ENGLISH_ZIMBABWE: 12297,
|
|
65
|
+
ESTONIAN: 1061,
|
|
66
|
+
FAEROESE: 1080,
|
|
67
|
+
FARSI: 1065,
|
|
68
|
+
FINNISH: 1035,
|
|
69
|
+
FRENCH_BELGIUM: 2060,
|
|
70
|
+
FRENCH_CANADA: 3084,
|
|
71
|
+
FRENCH_FRANCE: 1036,
|
|
72
|
+
FRENCH_LUXEMBOURG: 5132,
|
|
73
|
+
FRENCH_MONACO: 6156,
|
|
74
|
+
FRENCH_SWITZERLAND: 4108,
|
|
75
|
+
FYRO_MACEDONIAN: 1071,
|
|
76
|
+
GALICIAN: 1110,
|
|
77
|
+
GEORGIAN: 1079,
|
|
78
|
+
GERMAN_AUSTRIA: 3079,
|
|
79
|
+
GERMAN_GERMANY: 1031,
|
|
80
|
+
GERMAN_LIECHTENSTEIN: 5127,
|
|
81
|
+
GERMAN_LUXEMBOURG: 4103,
|
|
82
|
+
GERMAN_SWITZERLAND: 2055,
|
|
83
|
+
GREEK: 1032,
|
|
84
|
+
GUJARATI: 1095,
|
|
85
|
+
HEBREW: 1037,
|
|
86
|
+
HINDI_INDIA: 1081,
|
|
87
|
+
HUNGARIAN: 1038,
|
|
88
|
+
ICELANDIC: 1039,
|
|
89
|
+
INDONESIAN: 1057,
|
|
90
|
+
ITALIAN_ITALY: 1040,
|
|
91
|
+
ITALIAN_SWITZERLAND: 2064,
|
|
92
|
+
JAPANESE: 1041,
|
|
93
|
+
KANNADA: 1099,
|
|
94
|
+
KASHMIRI: 1120,
|
|
95
|
+
KAZAKH: 1087,
|
|
96
|
+
KONKANI: 1111,
|
|
97
|
+
KOREAN: 1042,
|
|
98
|
+
KYRGYZ_CYRILICK: 1088,
|
|
99
|
+
LAO: 1108,
|
|
100
|
+
LATVIAN: 1062,
|
|
101
|
+
LITHUANIAN: 1063,
|
|
102
|
+
MALAY_MALAYSIA: 1086,
|
|
103
|
+
MALAY_BRUNEI_DARUSSALAM: 2110,
|
|
104
|
+
MARATHI: 1102,
|
|
105
|
+
MONGOLIAN_CYRILIC: 1104,
|
|
106
|
+
NORWEGIAN_BOKMAL: 1044,
|
|
107
|
+
NORWEGIAN_NYORSK: 2068,
|
|
108
|
+
PASHTO: 1123,
|
|
109
|
+
POLISH: 1045,
|
|
110
|
+
PORTUGUESE_BRAZIL: 1046,
|
|
111
|
+
PORTUGUESE_PORTUGAL: 2070,
|
|
112
|
+
PUNJABI: 1094,
|
|
113
|
+
RHAETO_ROMANIC: 1047,
|
|
114
|
+
ROMANIAN: 1048,
|
|
115
|
+
RUSSIAN: 1049,
|
|
116
|
+
SANSKRIT: 1103,
|
|
117
|
+
SERBIAN_CYRILIC: 3098,
|
|
118
|
+
SERBIAN_LATIN: 2074,
|
|
119
|
+
SINDHI: 2137,
|
|
120
|
+
SINDHI_INDIA: 1113,
|
|
121
|
+
SINHALA: 1115,
|
|
122
|
+
SLOVAK: 1051,
|
|
123
|
+
SLOVENIAN: 1060,
|
|
124
|
+
SPANISH_ARGENTINA: 11274,
|
|
125
|
+
SPANISH_BOLIVIA: 16394,
|
|
126
|
+
SPANISH_CHILE: 13322,
|
|
127
|
+
SPANICH_COLOMBIA: 9226,
|
|
128
|
+
SPANISH_COSTA_RICA: 5130,
|
|
129
|
+
SPANISH_DOMINICAN_REPUBLIC: 7178,
|
|
130
|
+
SPANISH_ECUADOR: 12298,
|
|
131
|
+
SPANISH_EL_SALVADOR: 17418,
|
|
132
|
+
SPANISH_GUATEMALA: 4106,
|
|
133
|
+
SPANISH_HONDURAS: 18442,
|
|
134
|
+
SPANISH_MEXICO: 2058,
|
|
135
|
+
SPANISH_NICARAGUA: 19466,
|
|
136
|
+
SPANISH_PANAMA: 6154,
|
|
137
|
+
SPANISH_PARAGUAY: 15370,
|
|
138
|
+
SPANISH_PERU: 10250,
|
|
139
|
+
SPANISH_PUERTO_RICO: 20490,
|
|
140
|
+
SPANISH_TRADITIONAL_SORT: 1034,
|
|
141
|
+
SPANISH_INTERNATIONAL_SORT: 3082,
|
|
142
|
+
SPANISH_URUGUAY: 14346,
|
|
143
|
+
SPANISH_VENEZUELA: 8202,
|
|
144
|
+
SWAHILI: 1089,
|
|
145
|
+
SWEDISH: 1053,
|
|
146
|
+
SWEDISH_FINLAND: 2077,
|
|
147
|
+
SYRIAC: 1114,
|
|
148
|
+
TAMIL: 1097,
|
|
149
|
+
TATAR: 1092,
|
|
150
|
+
TELUGU: 1098,
|
|
151
|
+
THAI_THAILAND: 1054,
|
|
152
|
+
TURKISH: 1055,
|
|
153
|
+
TAJIK_CYRILLIC: 1064,
|
|
154
|
+
TURKMEN: 1090,
|
|
155
|
+
UKRAINIAN: 1058,
|
|
156
|
+
URDU: 1056,
|
|
157
|
+
UZBEK_CYRILIC: 2115,
|
|
158
|
+
UZBEK_LATIN: 1091,
|
|
159
|
+
VIETNAMESE: 1066,
|
|
160
|
+
CTC_SIMPLIFIED: 50001,
|
|
161
|
+
CTC_TRADITIONAL: 50002,
|
|
162
|
+
MALTESE: 1082,
|
|
163
|
+
BURMESE: 1109,
|
|
164
|
+
KHMER: 1107,
|
|
165
|
+
KARAKALPAK_LATIN: 10012,
|
|
166
|
+
MALAYALAM: 1100,
|
|
167
|
+
NEPALI: 1121,
|
|
168
|
+
ORIYA: 1096,
|
|
169
|
+
URDU_DETECTION: 10560
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
LCID.getTranslation = async function (value) {
|
|
173
|
+
return await exec("getTranslation", ["LCID", value]);
|
|
174
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class RFIDOrigin {
|
|
2
|
+
dg;
|
|
3
|
+
dgTag;
|
|
4
|
+
entryView;
|
|
5
|
+
tagEntry;
|
|
6
|
+
|
|
7
|
+
static fromJson(jsonObject) {
|
|
8
|
+
if (jsonObject == null) return null;
|
|
9
|
+
const result = new RFIDOrigin();
|
|
10
|
+
|
|
11
|
+
result.dg = jsonObject["dg"];
|
|
12
|
+
result.dgTag = jsonObject["dgTag"];
|
|
13
|
+
result.entryView = jsonObject["entryView"];
|
|
14
|
+
result.tagEntry = jsonObject["tagEntry"];
|
|
15
|
+
|
|
16
|
+
return result;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export class Rect {
|
|
2
|
+
bottom;
|
|
3
|
+
top;
|
|
4
|
+
left;
|
|
5
|
+
right;
|
|
6
|
+
|
|
7
|
+
static fromJson(jsonObject) {
|
|
8
|
+
if (jsonObject == null) return null;
|
|
9
|
+
const result = new Rect();
|
|
10
|
+
|
|
11
|
+
result.bottom = jsonObject["bottom"];
|
|
12
|
+
result.top = jsonObject["top"];
|
|
13
|
+
result.left = jsonObject["left"];
|
|
14
|
+
result.right = jsonObject["right"];
|
|
15
|
+
|
|
16
|
+
return result;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Rect } from "./Rect.js";
|
|
2
|
+
|
|
3
|
+
export class Symbol {
|
|
4
|
+
code;
|
|
5
|
+
rect;
|
|
6
|
+
probability;
|
|
7
|
+
|
|
8
|
+
static fromJson(jsonObject) {
|
|
9
|
+
if (jsonObject == null) return null;
|
|
10
|
+
const result = new Symbol();
|
|
11
|
+
|
|
12
|
+
result.code = jsonObject["code"];
|
|
13
|
+
result.rect = Rect.fromJson(jsonObject["rect"]);
|
|
14
|
+
result.probability = jsonObject["probability"];
|
|
15
|
+
|
|
16
|
+
return result;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { FieldType } from "../visual_results/FieldType.js";
|
|
2
|
+
import { LCID } from "./LCID.js";
|
|
3
|
+
import { CheckResult } from "../status/CheckResult.js";
|
|
4
|
+
import { Value } from "../visual_results/Value.js";
|
|
5
|
+
import { Comparison } from "./Comparison.js";
|
|
6
|
+
import { Validity } from "../visual_results/Validity.js";
|
|
7
|
+
|
|
8
|
+
export class TextField {
|
|
9
|
+
fieldType;
|
|
10
|
+
fieldName;
|
|
11
|
+
lcid;
|
|
12
|
+
lcidName;
|
|
13
|
+
value;
|
|
14
|
+
getValue;
|
|
15
|
+
values;
|
|
16
|
+
status;
|
|
17
|
+
comparisonList;
|
|
18
|
+
validityList;
|
|
19
|
+
comparisonStatus;
|
|
20
|
+
validityStatus;
|
|
21
|
+
|
|
22
|
+
static fromJson(jsonObject) {
|
|
23
|
+
if (jsonObject == null) return null;
|
|
24
|
+
const result = new TextField();
|
|
25
|
+
|
|
26
|
+
result.fieldType = jsonObject["fieldType"];
|
|
27
|
+
result.fieldName = jsonObject["fieldName"];
|
|
28
|
+
result.lcid = jsonObject["lcid"];
|
|
29
|
+
result.lcidName = jsonObject["lcidName"];
|
|
30
|
+
result.value = jsonObject["value"];
|
|
31
|
+
result.getValue = Value.fromJson(jsonObject["getValue"]);
|
|
32
|
+
result.status = jsonObject["status"];
|
|
33
|
+
result.comparisonStatus = jsonObject["comparisonStatus"];
|
|
34
|
+
result.validityStatus = jsonObject["validityStatus"];
|
|
35
|
+
|
|
36
|
+
result.values = [];
|
|
37
|
+
if (jsonObject["values"] != null) {
|
|
38
|
+
for (const item of jsonObject["values"]) {
|
|
39
|
+
const value = Value.fromJson(item);
|
|
40
|
+
if (value != null) {
|
|
41
|
+
result.values.push(value);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
result.comparisonList = [];
|
|
47
|
+
if (jsonObject["comparisonList"] != null) {
|
|
48
|
+
for (const item of jsonObject["comparisonList"]) {
|
|
49
|
+
const comparison = Comparison.fromJson(item);
|
|
50
|
+
if (comparison != null) {
|
|
51
|
+
result.comparisonList.push(comparison);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
result.validityList = [];
|
|
57
|
+
if (jsonObject["validityList"] != null) {
|
|
58
|
+
for (const item of jsonObject["validityList"]) {
|
|
59
|
+
const validity = Validity.fromJson(item);
|
|
60
|
+
if (validity != null) {
|
|
61
|
+
result.validityList.push(validity);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return result;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { CheckResult } from "../status/CheckResult.js";
|
|
2
|
+
import { TextSource } from "../visual_results/TextSource.js";
|
|
3
|
+
import { TextField } from "./TextField.js";
|
|
4
|
+
|
|
5
|
+
export class TextResult {
|
|
6
|
+
status;
|
|
7
|
+
comparisonStatus;
|
|
8
|
+
validityStatus;
|
|
9
|
+
availableSourceList;
|
|
10
|
+
fields;
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null;
|
|
14
|
+
const result = new TextResult();
|
|
15
|
+
|
|
16
|
+
result.status = jsonObject["status"];
|
|
17
|
+
result.comparisonStatus = jsonObject["comparisonStatus"];
|
|
18
|
+
result.validityStatus = jsonObject["validityStatus"];
|
|
19
|
+
|
|
20
|
+
result.availableSourceList = [];
|
|
21
|
+
if (jsonObject["availableSourceList"] != null) {
|
|
22
|
+
for (const item of jsonObject["availableSourceList"]) {
|
|
23
|
+
const source = TextSource.fromJson(item);
|
|
24
|
+
if (source != null) {
|
|
25
|
+
result.availableSourceList.push(source);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
result.fields = [];
|
|
31
|
+
if (jsonObject["fields"] != null) {
|
|
32
|
+
for (const item of jsonObject["fields"]) {
|
|
33
|
+
const field = TextField.fromJson(item);
|
|
34
|
+
if (field != null) {
|
|
35
|
+
result.fields.push(field);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return result;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ResultType } from "../Results.js";
|
|
2
|
+
import { CheckResult } from "../status/CheckResult.js";
|
|
3
|
+
|
|
4
|
+
export class TextSource {
|
|
5
|
+
sourceType;
|
|
6
|
+
source;
|
|
7
|
+
validityStatus;
|
|
8
|
+
|
|
9
|
+
static fromJson(jsonObject) {
|
|
10
|
+
if (jsonObject == null) return null;
|
|
11
|
+
const result = new TextSource();
|
|
12
|
+
|
|
13
|
+
result.sourceType = jsonObject["sourceType"];
|
|
14
|
+
result.source = jsonObject["source"];
|
|
15
|
+
result.validityStatus = jsonObject["validityStatus"];
|
|
16
|
+
|
|
17
|
+
return result;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ResultType } from "../Results.js";
|
|
2
|
+
import { CheckResult } from "../status/CheckResult.js";
|
|
3
|
+
|
|
4
|
+
export class Validity {
|
|
5
|
+
sourceType;
|
|
6
|
+
status;
|
|
7
|
+
|
|
8
|
+
static fromJson(jsonObject) {
|
|
9
|
+
if (jsonObject == null) return null;
|
|
10
|
+
const result = new Validity();
|
|
11
|
+
|
|
12
|
+
result.sourceType = jsonObject["sourceType"];
|
|
13
|
+
result.status = jsonObject["status"];
|
|
14
|
+
|
|
15
|
+
return result;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ResultType } from "../Results.js";
|
|
2
|
+
import { Rect } from "./Rect.js";
|
|
3
|
+
import { RFIDOrigin } from "./RFIDOrigin.js";
|
|
4
|
+
import { Symbol } from "./Symbol.js";
|
|
5
|
+
|
|
6
|
+
export class Value {
|
|
7
|
+
sourceType;
|
|
8
|
+
value;
|
|
9
|
+
originalValue;
|
|
10
|
+
pageIndex;
|
|
11
|
+
boundRect;
|
|
12
|
+
rfidOrigin;
|
|
13
|
+
originalSymbols = [];
|
|
14
|
+
probability;
|
|
15
|
+
|
|
16
|
+
static fromJson(jsonObject) {
|
|
17
|
+
if (jsonObject == null) return null;
|
|
18
|
+
const result = new Value();
|
|
19
|
+
|
|
20
|
+
result.sourceType = jsonObject["sourceType"];
|
|
21
|
+
result.value = jsonObject["value"];
|
|
22
|
+
result.originalValue = jsonObject["originalValue"];
|
|
23
|
+
result.pageIndex = jsonObject["pageIndex"];
|
|
24
|
+
result.boundRect = Rect.fromJson(jsonObject["boundRect"]);
|
|
25
|
+
result.rfidOrigin = RFIDOrigin.fromJson(jsonObject["rfidOrigin"]);
|
|
26
|
+
result.probability = jsonObject["probability"];
|
|
27
|
+
|
|
28
|
+
if (jsonObject["originalSymbols"] != null) {
|
|
29
|
+
for (const item of jsonObject["originalSymbols"]) {
|
|
30
|
+
const symbol = Symbol.fromJson(item);
|
|
31
|
+
if (symbol != null) {
|
|
32
|
+
result.originalSymbols.push(symbol);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
return result;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export class PAAttribute {
|
|
2
|
+
type
|
|
3
|
+
value
|
|
4
|
+
|
|
5
|
+
constructor() {
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
static fromJson(jsonObject) {
|
|
9
|
+
if (jsonObject == null) return null
|
|
10
|
+
const result = new PAAttribute()
|
|
11
|
+
|
|
12
|
+
result.type = jsonObject["type"] ?? ""
|
|
13
|
+
result.value = jsonObject["value"] ?? ""
|
|
14
|
+
|
|
15
|
+
return result
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { PAAttribute } from "./PAAttribute";
|
|
2
|
+
|
|
3
|
+
export class PAResourcesIssuer {
|
|
4
|
+
data
|
|
5
|
+
friendlyName
|
|
6
|
+
attributes
|
|
7
|
+
|
|
8
|
+
constructor() {
|
|
9
|
+
this.attributes = []
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null
|
|
14
|
+
const result = new PAResourcesIssuer()
|
|
15
|
+
|
|
16
|
+
result.data = jsonObject["data"]
|
|
17
|
+
result.friendlyName = jsonObject["friendlyName"]
|
|
18
|
+
for (const item of jsonObject["attributes"]) {
|
|
19
|
+
const attribute = PAAttribute.fromJson(item)
|
|
20
|
+
if (attribute != null) {
|
|
21
|
+
result.attributes.push(attribute)
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
return result
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export class PKDCertificate {
|
|
2
|
+
binaryData
|
|
3
|
+
resourceType
|
|
4
|
+
privateKey
|
|
5
|
+
|
|
6
|
+
constructor(binaryData, resourceType, options) {
|
|
7
|
+
this.binaryData = binaryData
|
|
8
|
+
this.resourceType = resourceType
|
|
9
|
+
this.privateKey = options?.privateKey
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
static fromJson(jsonObject) {
|
|
13
|
+
if (jsonObject == null) return null
|
|
14
|
+
return new PKDCertificate(
|
|
15
|
+
jsonObject["binaryData"],
|
|
16
|
+
jsonObject["resourceType"],
|
|
17
|
+
{ privateKey: jsonObject["privateKey"] }
|
|
18
|
+
)
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export const PKDResourceType = {
|
|
23
|
+
CERTIFICATE_PA: 0,
|
|
24
|
+
CERTIFICATE_TA: 1,
|
|
25
|
+
LDIF: 2,
|
|
26
|
+
CRL: 3,
|
|
27
|
+
ML: 4,
|
|
28
|
+
DEFL: 5,
|
|
29
|
+
DEVL: 6,
|
|
30
|
+
BL: 7,
|
|
31
|
+
|
|
32
|
+
getType(value) {
|
|
33
|
+
switch (value) {
|
|
34
|
+
case "pa":
|
|
35
|
+
return PKDResourceType.CERTIFICATE_PA
|
|
36
|
+
case "ta":
|
|
37
|
+
return PKDResourceType.CERTIFICATE_TA
|
|
38
|
+
case "ldif":
|
|
39
|
+
return PKDResourceType.LDIF
|
|
40
|
+
case "crl":
|
|
41
|
+
return PKDResourceType.CRL
|
|
42
|
+
case "ml":
|
|
43
|
+
return PKDResourceType.ML
|
|
44
|
+
case "defl":
|
|
45
|
+
return PKDResourceType.DEFL
|
|
46
|
+
case "devl":
|
|
47
|
+
return PKDResourceType.DEVL
|
|
48
|
+
case "bl":
|
|
49
|
+
return PKDResourceType.BL
|
|
50
|
+
default:
|
|
51
|
+
return PKDResourceType.CERTIFICATE_PA
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { exec } from "../internal/bridge";
|
|
2
|
+
|
|
3
|
+
export const RFIDErrorCodes = {
|
|
4
|
+
UNDEFINED: 0,
|
|
5
|
+
NO_ERROR: 1,
|
|
6
|
+
ALREADY_DONE: 2,
|
|
7
|
+
FAILED: -1,
|
|
8
|
+
NO_CHIP_DETECTED: -2147418111,
|
|
9
|
+
NOT_AVAILABLE: -2147418110,
|
|
10
|
+
INVALID_PARAMETER: -2147418108,
|
|
11
|
+
NOT_INITIALIZED: -2147418107,
|
|
12
|
+
NOT_ENOUGH_MEMORY: -2147418106,
|
|
13
|
+
INVALID_DIRECTORY: -2147418104,
|
|
14
|
+
UNKNOWN_COMMAND: -2147418103,
|
|
15
|
+
FILE_IO_ERROR: -2147418102,
|
|
16
|
+
BUSY: -2147418101,
|
|
17
|
+
OLD_FIRMWARE: -2147418100,
|
|
18
|
+
PCSC_FAILED: -2147352576,
|
|
19
|
+
PCSC_READER_NOT_AVAILABLE: -2147352575,
|
|
20
|
+
PCSC_CANT_CONNECT_CARD: -2147352574,
|
|
21
|
+
PCSC_CARD_IS_NOT_CONNECTED: -2147352573,
|
|
22
|
+
PCSC_OPERATION_CANCELLED: -2147352572,
|
|
23
|
+
PCSC_CARD_IS_BUSY: -2147352571,
|
|
24
|
+
PCSC_FAILED_SCARD: -2147352570,
|
|
25
|
+
PCSC_EXT_LE_FAILED: -2147352560,
|
|
26
|
+
LAYER6_SECURITY_MANAGER: -2046820352,
|
|
27
|
+
LAYER6_APP_SELECTION_FAILURE: -2046820351,
|
|
28
|
+
LAYER6_MUTUAL_AUTH_MAC_FAIL: -2046819840,
|
|
29
|
+
LAYER6_MUTUAL_AUTH_ENC_FAIL: -2046819839,
|
|
30
|
+
LAYER6_MUTUAL_AUTH_FAILURE: -2046819838,
|
|
31
|
+
LAYER6_MUTUAL_AUTH_FAILURE_DATA: -2046819837,
|
|
32
|
+
LAYER6_SM_DO_8E_MISSING: -2046819584,
|
|
33
|
+
LAYER6_SM_DO_87_MISSING: -2046819583,
|
|
34
|
+
LAYER6_SM_DO_99_MISSING: -2046819582,
|
|
35
|
+
LAYER6_SM_MAC_INCORRECT: -2046819581,
|
|
36
|
+
LAYER6_SM_DO_87_INCORRECT: -2046819580,
|
|
37
|
+
LAYER6_NON_TLV_RESPONSE_DATA: -2046819328,
|
|
38
|
+
LAYER6_WRONG_RND_ICC_LENGTH: -2046819327,
|
|
39
|
+
LAYER6_INT_AUTH_FAILURE: -2046819326,
|
|
40
|
+
LAYER6_MSE_SET_KAT_FAILURE: -2046819325,
|
|
41
|
+
LAYER6_MSE_SET_DST_FAILURE: -2046819324,
|
|
42
|
+
LAYER6_PSO_CERTIFICATE_FAILURE: -2046819323,
|
|
43
|
+
LAYER6_MSE_SET_AT_FAILURE: -2046819322,
|
|
44
|
+
LAYER6_GET_CHALLENGE_FAILURE: -2046819321,
|
|
45
|
+
LAYER6_EXT_AUTH_FAILURE: -2046819320,
|
|
46
|
+
LAYER6_GENERAL_AUTH_FAILURE: -2046819319,
|
|
47
|
+
LAYER6_FILE_NOT_FOUND: -2147456638,
|
|
48
|
+
LAYER6_FILE_EOF1: -2147458142,
|
|
49
|
+
LAYER6_FILE_EOF2: -2147456256,
|
|
50
|
+
LAYER6_INCORRECT_PARAMS: -2147456640,
|
|
51
|
+
LAYER6_NO_REFERENCE_DATA: -2147456632,
|
|
52
|
+
LAYER6_PWD_SUSPEND: -2147458143,
|
|
53
|
+
LAYER6_PWD_BLOCKED: -2147458144,
|
|
54
|
+
LAYER6_PWD_DEACTIVATED: -2147458141,
|
|
55
|
+
LAYER6_PWD_BLOCKED2: -2147457437,
|
|
56
|
+
LAYER6_PWD_DEACTIVATED2: -2147457436,
|
|
57
|
+
LAYER6_PWD_SUSPEND2: -2147457435,
|
|
58
|
+
LAYER6_PWD_FAILED: -2146380864,
|
|
59
|
+
NOT_PERFORMED: -2100080640,
|
|
60
|
+
SESSION_IS_CLOSED: -2100080639,
|
|
61
|
+
SESSION_TERMINAL_UNSUPPORTED_OPERATION: -2100080638,
|
|
62
|
+
SESSION_TERMINAL_TYPE_UNKNOWN: -2100080624,
|
|
63
|
+
SESSION_TERMINAL_TYPE_BAD_CERTIFICATE: -2100080623,
|
|
64
|
+
SESSION_TERMINAL_TYPE_NOT_SET: -2100080622,
|
|
65
|
+
SESSION_PROCEDURE_TYPE_UNKNOWN: -2100080621,
|
|
66
|
+
Session_Procedure_Type_Unsupported: -2100080620,
|
|
67
|
+
SESSION_PROCEDURE_TYPE_NOT_SET: -2100080619,
|
|
68
|
+
SESSION_ACCESS_KEY_UNKNOWN_TYPE: -2100080618,
|
|
69
|
+
SESSION_ACCESS_KEY_UNSUPPORTED_SM_TYPE: -2100080617,
|
|
70
|
+
SESSION_ACCESS_KEY_INCORRECT_SM_TYPE: -2100080616,
|
|
71
|
+
SESSION_ACCESS_KEY_RESTRICTED: -2100080615,
|
|
72
|
+
SESSION_ACCESS_KEY_INCORRECT_DATA: -2100080614,
|
|
73
|
+
SESSION_ACCESS_KEY_NOT_SET: -2100080613,
|
|
74
|
+
SESSION_PWD_MANAGEMENT_NOT_AUTHORIZED: -2100080612,
|
|
75
|
+
SESSION_ACCESS_CONTROL_UNKNOWN_TYPE: -2100080608,
|
|
76
|
+
SESSION_ACCESS_CONTROL_REQUIRES_SM: -2100080607,
|
|
77
|
+
SESSION_ACCESS_CONTROL_REQUIRES_PACE: -2100080606,
|
|
78
|
+
SESSION_ACCESS_CONTROL_REQUIRES_CA_KEYS: -2100080605,
|
|
79
|
+
SESSION_ACCESS_CONTROL_REQUIRES_TA: -2100080604,
|
|
80
|
+
SESSION_ACCESS_CONTROL_REQUIRES_CA: -2100080603,
|
|
81
|
+
SESSION_ACCESS_CONTROL_INCORRECT_OPTION_CA: -2100080602,
|
|
82
|
+
SESSION_ACCESS_CONTROL_CA_FAILED: -2100080601,
|
|
83
|
+
SESSION_ACCESS_CONTROL_TA_FAILED: -2100080600,
|
|
84
|
+
SESSION_ACCESS_CONTROL_AA_FAILED: -2100080599,
|
|
85
|
+
SESSION_ACCESS_CONTROL_RI_FAILED: -2100080598,
|
|
86
|
+
SESSION_PA_SIGNATURE_CHECK_FAILED: -2100080592,
|
|
87
|
+
SESSION_PA_HASH_CHECK_FAILED: -2100080591,
|
|
88
|
+
SESSION_INVALID_AUX_DATA_DATE_OF_EXPIRY: -2100080576,
|
|
89
|
+
SESSION_INVALID_AUX_DATA_DATE_OF_BIRTH: -2100080575,
|
|
90
|
+
SESSION_INVALID_AUX_DATA_COMMUNITY_ID: -2100080574,
|
|
91
|
+
SESSION_E_SIGN_REQUIRES_APP_SELECTION: -2100080560,
|
|
92
|
+
SESSION_E_SIGN_PIN_NOT_SET: -2100080559,
|
|
93
|
+
SESSION_E_SIGN_PIN_NOT_VERIFIED: -2100080558,
|
|
94
|
+
SESSION_INCORRECT_DATA: -2100080544,
|
|
95
|
+
SESSION_FILE_NOT_ENOUGH_DATA: -2099949568,
|
|
96
|
+
SESSION_FILE_INCORRECT_DATA: -2099884032,
|
|
97
|
+
SESSION_FILE_UNEXPECTED_DATA: -2099818496,
|
|
98
|
+
SESSION_FILE_CONTENTS_UNEXPECTED_DATA: -2099752960,
|
|
99
|
+
SESSION_FILE_WRONG_TAG: -2099687424,
|
|
100
|
+
SESSION_FILE_CANT_USE_DATA: -2099621888,
|
|
101
|
+
SESSION_FILE_CANT_READ_DATA: -2099556352,
|
|
102
|
+
SESSION_FILE_ACCESS_DENIED: -2099490816,
|
|
103
|
+
LAYER34_NO_ERROR: -2080374784,
|
|
104
|
+
LAYER34_TIME_OUT: -2080309248,
|
|
105
|
+
LAYER34_COLLISION: -2080243712,
|
|
106
|
+
LAYER34_CRC: -2080178176,
|
|
107
|
+
LAYER34_DATA_INTEGRITY: -2080112640,
|
|
108
|
+
LAYER34_DATA_LENGTH: -2080047104,
|
|
109
|
+
Layer34_RFU: -2079981568,
|
|
110
|
+
LAYER34_COLLISION_TOO_MANY: -2079916032,
|
|
111
|
+
LAYER34_PROTOCOL_B: -2079850496,
|
|
112
|
+
LAYER34_DATA_CONTENTS: -2079784960,
|
|
113
|
+
LAYER34_PROTOCOL: -2079719424,
|
|
114
|
+
LAYER34_GLOBAL_TIME_OUT: -2079653888,
|
|
115
|
+
LAYER34_MIFARE_AUTH: -2079588352,
|
|
116
|
+
LAYER34_SAM_ERROR: -2079522816,
|
|
117
|
+
LAYER34_SAM_COLLISION: -2079457280,
|
|
118
|
+
LAYER34_SAM_ACKNOWLEDGE: -2079391744
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
RFIDErrorCodes.getTranslation = async function (value) {
|
|
122
|
+
return await exec("getTranslation", ["RFIDErrorCodes", value]);
|
|
123
|
+
}
|