@trustchex/react-native-sdk 1.355.1 → 1.357.0
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 +2 -9
- package/TrustchexSDK.podspec +5 -4
- package/android/build.gradle +6 -4
- package/android/src/main/AndroidManifest.xml +1 -1
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKPackage.kt +45 -25
- package/android/src/main/java/com/trustchex/reactnativesdk/camera/TrustchexCameraManager.kt +168 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/camera/TrustchexCameraView.kt +871 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mlkit/MLKitModule.kt +245 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mrz/MRZValidationModule.kt +785 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mrz/MRZValidator.kt +419 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/opencv/OpenCVModule.kt +818 -0
- package/ios/Camera/TrustchexCameraManager.m +37 -0
- package/ios/Camera/TrustchexCameraManager.swift +125 -0
- package/ios/Camera/TrustchexCameraView.swift +1176 -0
- package/ios/MLKit/MLKitModule.m +23 -0
- package/ios/MLKit/MLKitModule.swift +250 -0
- package/ios/MRZValidation.m +39 -0
- package/ios/MRZValidation.swift +802 -0
- package/ios/MRZValidator.swift +466 -0
- package/ios/OpenCV/OpenCVModule.h +4 -0
- package/ios/OpenCV/OpenCVModule.mm +810 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentEIDScanningScreen.js +2 -3
- package/lib/module/Screens/Dynamic/IdentityDocumentScanningScreen.js +1 -2
- package/lib/module/Screens/Dynamic/LivenessDetectionScreen.js +418 -193
- package/lib/module/Screens/Static/OTPVerificationScreen.js +11 -11
- package/lib/module/Screens/Static/QrCodeScanningScreen.js +5 -1
- package/lib/module/Screens/Static/ResultScreen.js +25 -2
- package/lib/module/Screens/Static/VerificationSessionCheckScreen.js +25 -7
- package/lib/module/Shared/Components/DebugNavigationPanel.js +234 -24
- package/lib/module/Shared/Components/EIDScanner.js +99 -9
- package/lib/module/Shared/Components/FaceCamera.js +170 -179
- package/lib/module/Shared/Components/IdentityDocumentCamera.js +2151 -771
- package/lib/module/Shared/Components/QrCodeScannerCamera.js +109 -107
- package/lib/module/Shared/Components/TrustchexCamera.js +122 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.helpers.js +91 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.utils.js +2 -124
- package/lib/module/Shared/EIDReader/tlv/tlvInputStream.js +4 -4
- package/lib/module/Shared/EIDReader/tlv/tlvOutputState.js +4 -4
- package/lib/module/Shared/EIDReader/tlv/tlvOutputStream.js +4 -4
- package/lib/module/Shared/Libs/analytics.utils.js +2 -2
- package/lib/module/Shared/Libs/debug.utils.js +132 -0
- package/lib/module/Shared/Libs/deeplink.utils.js +6 -5
- package/lib/module/Shared/Libs/demo.utils.js +13 -3
- package/lib/module/Shared/Libs/mrz.utils.js +1 -175
- package/lib/module/Shared/Libs/native-device-info.utils.js +12 -6
- package/lib/module/Shared/Libs/tts.utils.js +40 -6
- package/lib/module/Shared/Services/AnalyticsService.js +9 -8
- package/lib/module/Shared/Types/mrzFields.js +1 -0
- package/lib/module/Translation/Resources/en.js +87 -88
- package/lib/module/Translation/Resources/tr.js +84 -85
- package/lib/module/Trustchex.js +9 -2
- package/lib/module/index.js +1 -0
- package/lib/module/version.js +1 -1
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/OTPVerificationScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/DebugNavigationPanel.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts +2 -2
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts +18 -4
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts +3 -4
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts +2 -1
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/TrustchexCamera.d.ts +124 -0
- package/lib/typescript/src/Shared/Components/TrustchexCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.helpers.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.helpers.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts +2 -39
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/analytics.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/debug.utils.d.ts +42 -0
- package/lib/typescript/src/Shared/Libs/debug.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/http-client.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts +0 -4
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts +4 -3
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Services/AnalyticsService.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts +2 -2
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Types/mrzFields.d.ts +11 -0
- package/lib/typescript/src/Shared/Types/mrzFields.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts +4 -5
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/tr.d.ts +4 -5
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -1
- package/lib/typescript/src/Trustchex.d.ts +2 -0
- package/lib/typescript/src/Trustchex.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/version.d.ts +1 -1
- package/package.json +4 -35
- package/src/Screens/Dynamic/ContractAcceptanceScreen.tsx +1 -1
- package/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx +7 -5
- package/src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx +2 -3
- package/src/Screens/Dynamic/LivenessDetectionScreen.tsx +498 -216
- package/src/Screens/Static/OTPVerificationScreen.tsx +37 -31
- package/src/Screens/Static/QrCodeScanningScreen.tsx +8 -1
- package/src/Screens/Static/ResultScreen.tsx +136 -88
- package/src/Screens/Static/VerificationSessionCheckScreen.tsx +46 -13
- package/src/Shared/Components/DebugNavigationPanel.tsx +290 -34
- package/src/Shared/Components/EIDScanner.tsx +94 -16
- package/src/Shared/Components/FaceCamera.tsx +236 -203
- package/src/Shared/Components/IdentityDocumentCamera.tsx +3073 -1030
- package/src/Shared/Components/QrCodeScannerCamera.tsx +133 -127
- package/src/Shared/Components/TrustchexCamera.tsx +289 -0
- package/src/Shared/Config/camera-enhancement.config.ts +2 -2
- package/src/Shared/EIDReader/tlv/tlv.helpers.ts +96 -0
- package/src/Shared/EIDReader/tlv/tlv.utils.ts +2 -125
- package/src/Shared/EIDReader/tlv/tlvInputStream.ts +4 -4
- package/src/Shared/EIDReader/tlv/tlvOutputState.ts +4 -4
- package/src/Shared/EIDReader/tlv/tlvOutputStream.ts +4 -4
- package/src/Shared/Libs/analytics.utils.ts +48 -20
- package/src/Shared/Libs/debug.utils.ts +149 -0
- package/src/Shared/Libs/deeplink.utils.ts +7 -5
- package/src/Shared/Libs/demo.utils.ts +4 -0
- package/src/Shared/Libs/http-client.ts +12 -8
- package/src/Shared/Libs/mrz.utils.ts +1 -163
- package/src/Shared/Libs/native-device-info.utils.ts +12 -6
- package/src/Shared/Libs/tts.utils.ts +48 -6
- package/src/Shared/Services/AnalyticsService.ts +69 -24
- package/src/Shared/Types/identificationInfo.ts +2 -2
- package/src/Shared/Types/mrzFields.ts +29 -0
- package/src/Translation/Resources/en.ts +90 -100
- package/src/Translation/Resources/tr.ts +89 -97
- package/src/Translation/index.ts +1 -1
- package/src/Trustchex.tsx +21 -4
- package/src/index.tsx +14 -0
- package/src/version.ts +1 -1
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/barcodescanner/BarcodeScannerFrameProcessorPlugin.kt +0 -301
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/BitmapUtils.kt +0 -205
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/CropperPlugin.kt +0 -72
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/FrameMetadata.kt +0 -4
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/facedetector/FaceDetectorFrameProcessorPlugin.kt +0 -303
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/textrecognition/TextRecognitionFrameProcessorPlugin.kt +0 -115
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin-Bridging-Header.h +0 -9
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.mm +0 -22
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.swift +0 -188
- package/ios/VisionCameraPlugins/Cropper/Cropper-Bridging-Header.h +0 -13
- package/ios/VisionCameraPlugins/Cropper/Cropper.h +0 -20
- package/ios/VisionCameraPlugins/Cropper/Cropper.mm +0 -22
- package/ios/VisionCameraPlugins/Cropper/Cropper.swift +0 -145
- package/ios/VisionCameraPlugins/Cropper/CropperUtils.swift +0 -49
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin-Bridging-Header.h +0 -4
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.mm +0 -22
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.swift +0 -320
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin-Bridging-Header.h +0 -4
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.mm +0 -27
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.swift +0 -144
- package/lib/module/Shared/Libs/camera.utils.js +0 -308
- package/lib/module/Shared/Libs/frame-enhancement.utils.js +0 -133
- package/lib/module/Shared/Libs/opencv.utils.js +0 -21
- package/lib/module/Shared/Libs/worklet.utils.js +0 -68
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.js +0 -46
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.js +0 -35
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/index.js +0 -19
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.js +0 -26
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/types.js +0 -3
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.js +0 -197
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.js +0 -101
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.js +0 -60
- package/lib/module/Shared/VisionCameraPlugins/Cropper/index.js +0 -47
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/Camera.js +0 -42
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/detectFaces.js +0 -35
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/index.js +0 -4
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/types.js +0 -3
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/Camera.js +0 -56
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.js +0 -20
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.js +0 -9
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/index.js +0 -6
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/scanText.js +0 -20
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/translateText.js +0 -19
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/types.js +0 -3
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts +0 -87
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/frame-enhancement.utils.d.ts +0 -25
- package/lib/typescript/src/Shared/Libs/frame-enhancement.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts +0 -3
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/worklet.utils.d.ts +0 -9
- package/lib/typescript/src/Shared/Libs/worklet.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts +0 -13
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts +0 -6
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts +0 -12
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts +0 -52
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts +0 -62
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts +0 -34
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts +0 -32
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts +0 -23
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts +0 -9
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts +0 -79
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts +0 -6
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts +0 -5
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts +0 -67
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts.map +0 -1
- package/src/Shared/Libs/camera.utils.ts +0 -345
- package/src/Shared/Libs/frame-enhancement.utils.ts +0 -217
- package/src/Shared/Libs/opencv.utils.ts +0 -40
- package/src/Shared/Libs/worklet.utils.ts +0 -72
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.ts +0 -79
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.ts +0 -46
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/index.ts +0 -60
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.ts +0 -32
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/types.ts +0 -82
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.ts +0 -195
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.ts +0 -135
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.ts +0 -84
- package/src/Shared/VisionCameraPlugins/Cropper/index.ts +0 -78
- package/src/Shared/VisionCameraPlugins/FaceDetector/Camera.tsx +0 -63
- package/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.ts +0 -44
- package/src/Shared/VisionCameraPlugins/FaceDetector/index.ts +0 -3
- package/src/Shared/VisionCameraPlugins/FaceDetector/types.ts +0 -99
- package/src/Shared/VisionCameraPlugins/TextRecognition/Camera.tsx +0 -76
- package/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.ts +0 -18
- package/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.ts +0 -7
- package/src/Shared/VisionCameraPlugins/TextRecognition/index.ts +0 -7
- package/src/Shared/VisionCameraPlugins/TextRecognition/scanText.ts +0 -27
- package/src/Shared/VisionCameraPlugins/TextRecognition/translateText.ts +0 -21
- package/src/Shared/VisionCameraPlugins/TextRecognition/types.ts +0 -141
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
-
'verificationSessionCheckScreen.mainText': '
|
|
4
|
+
'verificationSessionCheckScreen.mainText': 'Start the identity verification process',
|
|
5
5
|
'verificationSessionCheckScreen.enterSessionCode': 'Enter Session Code',
|
|
6
|
-
'verificationSessionCheckScreen.codeText': 'Please enter
|
|
7
|
-
'verificationSessionCheckScreen.codeError': 'The code you entered is incorrect
|
|
6
|
+
'verificationSessionCheckScreen.codeText': 'Please enter your verification code',
|
|
7
|
+
'verificationSessionCheckScreen.codeError': 'The verification code you entered is incorrect',
|
|
8
8
|
'verificationSessionCheckScreen.sendCodeAgain': 'Send Code Again',
|
|
9
|
-
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Unable to send verification code.',
|
|
10
|
-
'verificationSessionCheckScreen.noVerificationSessionFound': '
|
|
9
|
+
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Unable to send verification code. Please try again.',
|
|
10
|
+
'verificationSessionCheckScreen.noVerificationSessionFound': 'Verification session not found or expired.',
|
|
11
11
|
'verificationSessionCheckScreen.scanQRCode': 'Scan QR Code',
|
|
12
12
|
'verificationSessionCheckScreen.or': 'or',
|
|
13
13
|
'general.warning': 'Warning',
|
|
14
14
|
'general.error': 'Error',
|
|
15
15
|
'general.yes': 'Yes',
|
|
16
16
|
'general.no': 'No',
|
|
17
|
-
'general.letsGo':
|
|
18
|
-
'general.noCameraPermissionGiven': 'Camera
|
|
19
|
-
'general.noMicrophonePermissionGiven': 'Microphone
|
|
20
|
-
'general.noCameraDetected': '
|
|
17
|
+
'general.letsGo': 'Start',
|
|
18
|
+
'general.noCameraPermissionGiven': 'Camera access is required. Please enable camera permissions in your device settings.',
|
|
19
|
+
'general.noMicrophonePermissionGiven': 'Microphone access is required. Please enable microphone permissions in your device settings.',
|
|
20
|
+
'general.noCameraDetected': 'Camera hardware not available on this device',
|
|
21
21
|
'general.openSettings': 'Open Settings',
|
|
22
|
-
'general.countryNotAllowed': '
|
|
23
|
-
'general.documentTypeNotAllowed': '
|
|
24
|
-
'termsOfUseAndDataPrivacyScreen.footerText': 'Please read
|
|
25
|
-
'termsOfUseAndDataPrivacyScreen.footerTextSRO':
|
|
22
|
+
'general.countryNotAllowed': 'Country not supported',
|
|
23
|
+
'general.documentTypeNotAllowed': 'Document type not supported',
|
|
24
|
+
'termsOfUseAndDataPrivacyScreen.footerText': 'Please read and scroll to accept',
|
|
25
|
+
'termsOfUseAndDataPrivacyScreen.footerTextSRO': 'You can now tap Accept to continue',
|
|
26
26
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Accept and Continue',
|
|
27
|
-
'resultScreen.submitting': 'Submitting
|
|
28
|
-
'resultScreen.submissionFailed': 'An error occurred
|
|
29
|
-
'resultScreen.submissionSuccessful': '
|
|
27
|
+
'resultScreen.submitting': 'Submitting your information...',
|
|
28
|
+
'resultScreen.submissionFailed': 'An error occurred. Please try again later.',
|
|
29
|
+
'resultScreen.submissionSuccessful': 'Your information has been securely submitted. You will be notified of the verification result shortly.',
|
|
30
30
|
'resultScreen.thankYou': 'Thank You!',
|
|
31
31
|
'resultScreen.demo': 'Demo',
|
|
32
|
-
'resultScreen.demoDescription': '
|
|
32
|
+
'resultScreen.demoDescription': 'Collected demo data',
|
|
33
33
|
'resultScreen.demoDeviceIdentifier': 'Device Identifier',
|
|
34
34
|
'resultScreen.demoScannedDocument': 'Scanned Document',
|
|
35
35
|
'resultScreen.demoScannedDocumentInformation': 'Information',
|
|
@@ -41,36 +41,31 @@ export default {
|
|
|
41
41
|
'resultScreen.demoImageHologram': 'Hologram',
|
|
42
42
|
'resultScreen.demoLivenessDetection': 'Liveness Detection',
|
|
43
43
|
'resultScreen.demoVideo': 'Video',
|
|
44
|
-
'resultScreen.demoInstruction_smile': 'Smile',
|
|
45
|
-
'resultScreen.demoInstruction_look_straight_and_blink': 'Look straight and blink',
|
|
46
|
-
'resultScreen.demoInstruction_turn_head_left': 'Turn your head to the left',
|
|
47
|
-
'resultScreen.demoInstruction_turn_head_right': 'Turn your head to the right',
|
|
48
|
-
'resultScreen.demoInstruction_look_up': 'Look up',
|
|
49
44
|
'resultScreen.demoStartOver': 'Start Over',
|
|
50
|
-
'livenessDetectionScreen.guideHeader': '
|
|
51
|
-
'livenessDetectionScreen.guideText': '
|
|
52
|
-
'livenessDetectionScreen.guidePoint1': '
|
|
53
|
-
'livenessDetectionScreen.guidePoint2': '
|
|
54
|
-
'livenessDetectionScreen.guidePoint3': '
|
|
55
|
-
'livenessDetectionScreen.guidePoint4': 'Ensure
|
|
56
|
-
'livenessDetectionScreen.placeFaceInsideCircle': '
|
|
57
|
-
'livenessDetectionScreen.multipleFacesDetected': 'Multiple faces detected.
|
|
58
|
-
'livenessDetectionScreen.start': 'Keep your face
|
|
59
|
-
'livenessDetectionScreen.smile': '
|
|
60
|
-
'livenessDetectionScreen.lookStraightAndBlink': 'Look at
|
|
61
|
-
'livenessDetectionScreen.turnHeadLeft': 'Turn
|
|
62
|
-
'livenessDetectionScreen.turnHeadRight': 'Turn
|
|
45
|
+
'livenessDetectionScreen.guideHeader': 'Face Verification',
|
|
46
|
+
'livenessDetectionScreen.guideText': 'Please ensure the following for best results:',
|
|
47
|
+
'livenessDetectionScreen.guidePoint1': 'Remove glasses, hats, or face coverings',
|
|
48
|
+
'livenessDetectionScreen.guidePoint2': 'Position yourself in good lighting',
|
|
49
|
+
'livenessDetectionScreen.guidePoint3': 'Find a quiet environment',
|
|
50
|
+
'livenessDetectionScreen.guidePoint4': 'Ensure only your face is visible in the frame',
|
|
51
|
+
'livenessDetectionScreen.placeFaceInsideCircle': 'Position your face inside the circle',
|
|
52
|
+
'livenessDetectionScreen.multipleFacesDetected': 'Multiple faces detected. Ensure only you are in frame.',
|
|
53
|
+
'livenessDetectionScreen.start': 'Keep your face in the circle',
|
|
54
|
+
'livenessDetectionScreen.smile': 'Look at camera and smile',
|
|
55
|
+
'livenessDetectionScreen.lookStraightAndBlink': 'Look at camera and blink both eyes',
|
|
56
|
+
'livenessDetectionScreen.turnHeadLeft': 'Turn head left',
|
|
57
|
+
'livenessDetectionScreen.turnHeadRight': 'Turn head right',
|
|
63
58
|
'livenessDetectionScreen.lookUp': 'Look up',
|
|
64
|
-
'livenessDetectionScreen.sayNumber': 'Say
|
|
65
|
-
'livenessDetectionScreen.finish': '
|
|
66
|
-
'livenessDetectionScreen.brightnessLow': '
|
|
59
|
+
'livenessDetectionScreen.sayNumber': 'Say: {number}',
|
|
60
|
+
'livenessDetectionScreen.finish': 'Completed',
|
|
61
|
+
'livenessDetectionScreen.brightnessLow': 'Insufficient lighting. Please provide better illumination.',
|
|
67
62
|
'livenessDetectionScreen.faceTooBig': 'You are too close. Please move back slightly.',
|
|
68
|
-
'livenessDetectionScreen.followInstructions': '
|
|
69
|
-
'eidScannerScreen.guideHeader': '
|
|
70
|
-
'eidScannerScreen.guideText': '
|
|
71
|
-
'eidScannerScreen.invalidMRZFields': '
|
|
72
|
-
'eidScannerScreen.imageCannotBeShown': 'Photo found but cannot be displayed.',
|
|
73
|
-
'eidScannerScreen.faceImageNotFound': 'Photo not found.',
|
|
63
|
+
'livenessDetectionScreen.followInstructions': 'Please keep device steady and follow the instructions.',
|
|
64
|
+
'eidScannerScreen.guideHeader': 'NFC Document Scan',
|
|
65
|
+
'eidScannerScreen.guideText': 'When prompted, hold your document flat against the back of your device near the NFC antenna.',
|
|
66
|
+
'eidScannerScreen.invalidMRZFields': 'Document information could not be read. Please try again.',
|
|
67
|
+
'eidScannerScreen.imageCannotBeShown': 'Photo data found but cannot be displayed.',
|
|
68
|
+
'eidScannerScreen.faceImageNotFound': 'Photo data not found on document.',
|
|
74
69
|
'eidScannerScreen.documentCode': 'Document Code',
|
|
75
70
|
'eidScannerScreen.nationality': 'Nationality',
|
|
76
71
|
'eidScannerScreen.personalNumber': 'Personal Number',
|
|
@@ -81,57 +76,61 @@ export default {
|
|
|
81
76
|
'eidScannerScreen.gender': 'Gender',
|
|
82
77
|
'eidScannerScreen.expirationDate': 'Expiration Date',
|
|
83
78
|
'eidScannerScreen.mrzText': 'MRZ Text',
|
|
84
|
-
'eidScannerScreen.nfcNotSupported': '
|
|
85
|
-
'eidScannerScreen.nfcNotEnabled': 'NFC is
|
|
79
|
+
'eidScannerScreen.nfcNotSupported': 'This device does not support NFC functionality.',
|
|
80
|
+
'eidScannerScreen.nfcNotEnabled': 'NFC is disabled on this device. Enable it in settings.',
|
|
86
81
|
'eidScannerScreen.enableNFC': 'Enable NFC',
|
|
87
|
-
'eidScannerScreen.startScanning': 'Start
|
|
88
|
-
'eidScannerScreen.placeIDCardOnNFC': '
|
|
89
|
-
'eidScannerScreen.placePassportOnNFC': '
|
|
90
|
-
'eidScannerScreen.placeDocumentOnNFC': '
|
|
91
|
-
'eidScannerScreen.readingDocument': '
|
|
92
|
-
'eidScannerScreen.checkYourInformation':
|
|
82
|
+
'eidScannerScreen.startScanning': 'Start Scan',
|
|
83
|
+
'eidScannerScreen.placeIDCardOnNFC': 'Place your ID card near the NFC reader',
|
|
84
|
+
'eidScannerScreen.placePassportOnNFC': 'Place your passport near the NFC reader',
|
|
85
|
+
'eidScannerScreen.placeDocumentOnNFC': 'Place your document near the NFC reader',
|
|
86
|
+
'eidScannerScreen.readingDocument': 'Hold steady - Reading document',
|
|
87
|
+
'eidScannerScreen.checkYourInformation': 'Review your information carefully',
|
|
93
88
|
'eidScannerScreen.approveAndContinue': 'Approve and Continue',
|
|
94
|
-
'eidScannerScreen.connecting': '
|
|
89
|
+
'eidScannerScreen.connecting': 'Establishing secure connection...',
|
|
95
90
|
'eidScannerScreen.readingMRZ': 'Reading document information...',
|
|
96
|
-
'eidScannerScreen.readingFaceImage': 'Reading photo...',
|
|
97
|
-
'eidScannerScreen.completing': '
|
|
91
|
+
'eidScannerScreen.readingFaceImage': 'Reading photo data...',
|
|
92
|
+
'eidScannerScreen.completing': 'Finalizing verification...',
|
|
98
93
|
'eidScannerScreen.progress': 'Progress',
|
|
99
|
-
'identityDocumentCamera.guideHeader': '
|
|
100
|
-
'identityDocumentCamera.guideText': '
|
|
101
|
-
'identityDocumentCamera.guidePoint1': '
|
|
102
|
-
'identityDocumentCamera.guidePoint2': '
|
|
103
|
-
'identityDocumentCamera.guidePoint3': '
|
|
104
|
-
'identityDocumentCamera.lowBrightness': '
|
|
105
|
-
'identityDocumentCamera.alignPhotoSide': '
|
|
106
|
-
'identityDocumentCamera.alignHologram': '
|
|
107
|
-
'identityDocumentCamera.alignIDFrontSide': 'Align the front side of your
|
|
108
|
-
'identityDocumentCamera.alignIDBackSide': 'Align the back side of your
|
|
109
|
-
'identityDocumentCamera.scanCompleted': 'Scan completed
|
|
94
|
+
'identityDocumentCamera.guideHeader': 'Document Scan',
|
|
95
|
+
'identityDocumentCamera.guideText': 'Please ensure the following for best results:',
|
|
96
|
+
'identityDocumentCamera.guidePoint1': 'Place document on a flat, dark surface',
|
|
97
|
+
'identityDocumentCamera.guidePoint2': 'Use adequate lighting without glare',
|
|
98
|
+
'identityDocumentCamera.guidePoint3': 'Keep the document within the frame',
|
|
99
|
+
'identityDocumentCamera.lowBrightness': 'Insufficient lighting. Move to a brighter location.',
|
|
100
|
+
'identityDocumentCamera.alignPhotoSide': 'Show the side with your photo',
|
|
101
|
+
'identityDocumentCamera.alignHologram': 'Tilt your document slowly',
|
|
102
|
+
'identityDocumentCamera.alignIDFrontSide': 'Align the front side of your ID card',
|
|
103
|
+
'identityDocumentCamera.alignIDBackSide': 'Align the back side of your ID card',
|
|
104
|
+
'identityDocumentCamera.scanCompleted': 'Scan completed!',
|
|
110
105
|
'identityDocumentCamera.frontSideScanned': 'Front side scanned!',
|
|
111
106
|
'identityDocumentCamera.passportScanned': 'Passport scanned!',
|
|
112
107
|
'identityDocumentCamera.backSideScanned': 'Back side scanned!',
|
|
113
|
-
'identityDocumentCamera.hologramVerified': '
|
|
114
|
-
'identityDocumentCamera.searchingDocument': 'Position
|
|
115
|
-
'identityDocumentCamera.faceDetected': '
|
|
108
|
+
'identityDocumentCamera.hologramVerified': 'Hologram verified!',
|
|
109
|
+
'identityDocumentCamera.searchingDocument': 'Position document within the frame',
|
|
110
|
+
'identityDocumentCamera.faceDetected': 'Keep device steady...',
|
|
116
111
|
'identityDocumentCamera.readingDocument': 'Reading document...',
|
|
117
|
-
'identityDocumentCamera.processing': 'Processing...',
|
|
118
|
-
'identityDocumentCamera.stepProgress': '
|
|
119
|
-
'identityDocumentCamera.frontSide': 'Front
|
|
120
|
-
'identityDocumentCamera.backSide': 'Back
|
|
121
|
-
'identityDocumentCamera.hologramCheck': 'Hologram
|
|
122
|
-
'identityDocumentCamera.keepSteady': 'Keep
|
|
123
|
-
'identityDocumentCamera.avoidBlur': '
|
|
124
|
-
'identityDocumentCamera.wrongSideFront': '
|
|
125
|
-
'identityDocumentCamera.wrongSideBack': '
|
|
126
|
-
'identityDocumentCamera.idCardDetected': 'ID
|
|
127
|
-
'identityDocumentCamera.idCardFrontDetected': '
|
|
128
|
-
'identityDocumentCamera.
|
|
129
|
-
'identityDocumentCamera.
|
|
130
|
-
'identityDocumentCamera.
|
|
131
|
-
'identityDocumentCamera.
|
|
132
|
-
'identityDocumentCamera.
|
|
133
|
-
'identityDocumentCamera.
|
|
134
|
-
'identityDocumentCamera.
|
|
135
|
-
'
|
|
112
|
+
'identityDocumentCamera.processing': 'Processing document...',
|
|
113
|
+
'identityDocumentCamera.stepProgress': '{{current}}/{{total}}',
|
|
114
|
+
'identityDocumentCamera.frontSide': 'Front',
|
|
115
|
+
'identityDocumentCamera.backSide': 'Back',
|
|
116
|
+
'identityDocumentCamera.hologramCheck': 'Hologram',
|
|
117
|
+
'identityDocumentCamera.keepSteady': 'Keep device steady',
|
|
118
|
+
'identityDocumentCamera.avoidBlur': 'Keep device steady',
|
|
119
|
+
'identityDocumentCamera.wrongSideFront': 'Show the front side of your document',
|
|
120
|
+
'identityDocumentCamera.wrongSideBack': 'Show the back side of your document',
|
|
121
|
+
'identityDocumentCamera.idCardDetected': 'ID detected',
|
|
122
|
+
'identityDocumentCamera.idCardFrontDetected': 'Keep device steady...',
|
|
123
|
+
'identityDocumentCamera.idCardBackDetected': 'Keep device steady...',
|
|
124
|
+
'identityDocumentCamera.passportDetected': 'Keep device steady...',
|
|
125
|
+
'identityDocumentCamera.alignIDFront': 'Align your ID card (front)',
|
|
126
|
+
'identityDocumentCamera.alignIDBack': 'Align your ID card (back)',
|
|
127
|
+
'identityDocumentCamera.alignPassport': 'Align your passport',
|
|
128
|
+
'identityDocumentCamera.moveCloser': 'Move closer',
|
|
129
|
+
'identityDocumentCamera.moveFarther': 'Move back',
|
|
130
|
+
'identityDocumentCamera.documentTooSmall': 'Too far. Move closer.',
|
|
131
|
+
'identityDocumentCamera.documentTooLarge': 'Too close. Move back.',
|
|
132
|
+
'identityDocumentCamera.holdSteady': 'Keep device steady',
|
|
133
|
+
'identityDocumentCamera.centerDocument': 'Center document in the frame',
|
|
134
|
+
'navigationManager.skipStepWarning': 'Completing this step is recommended for successful verification. Skip anyway?',
|
|
136
135
|
'navigationManager.skipStepLabel': 'Skip This Step'
|
|
137
136
|
};
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
|
-
'verificationSessionCheckScreen.mainText': 'Kimlik doğrulama sürecini
|
|
5
|
-
'verificationSessionCheckScreen.enterSessionCode': 'Oturum
|
|
6
|
-
'verificationSessionCheckScreen.codeText': '
|
|
7
|
-
'verificationSessionCheckScreen.codeError': 'Girdiğiniz
|
|
4
|
+
'verificationSessionCheckScreen.mainText': 'Kimlik doğrulama sürecini başlatın',
|
|
5
|
+
'verificationSessionCheckScreen.enterSessionCode': 'Oturum Kodunu Girin',
|
|
6
|
+
'verificationSessionCheckScreen.codeText': 'Doğrulama kodunu girin',
|
|
7
|
+
'verificationSessionCheckScreen.codeError': 'Girdiğiniz doğrulama kodu hatalı.',
|
|
8
8
|
'verificationSessionCheckScreen.sendCodeAgain': 'Kodu Tekrar Gönder',
|
|
9
|
-
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Doğrulama kodu gönderilemedi.',
|
|
10
|
-
'verificationSessionCheckScreen.noVerificationSessionFound': '
|
|
11
|
-
'verificationSessionCheckScreen.scanQRCode': 'QR Kodu
|
|
9
|
+
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Doğrulama kodu gönderilemedi. Lütfen tekrar deneyin.',
|
|
10
|
+
'verificationSessionCheckScreen.noVerificationSessionFound': 'Oturum bulunamadı veya süresi doldu',
|
|
11
|
+
'verificationSessionCheckScreen.scanQRCode': 'QR Kodu Tarayın',
|
|
12
12
|
'verificationSessionCheckScreen.or': 'veya',
|
|
13
13
|
'general.warning': 'Uyarı',
|
|
14
14
|
'general.error': 'Hata',
|
|
15
15
|
'general.yes': 'Evet',
|
|
16
16
|
'general.no': 'Hayır',
|
|
17
|
-
'general.letsGo': '
|
|
18
|
-
'general.noCameraPermissionGiven': 'Kamera
|
|
19
|
-
'general.noMicrophonePermissionGiven': 'Mikrofon
|
|
20
|
-
'general.noCameraDetected': '
|
|
17
|
+
'general.letsGo': 'Başla',
|
|
18
|
+
'general.noCameraPermissionGiven': 'Kamera erişimi gereklidir. Lütfen cihaz ayarlarından kamera iznini etkinleştirin.',
|
|
19
|
+
'general.noMicrophonePermissionGiven': 'Mikrofon erişimi gereklidir. Lütfen cihaz ayarlarından mikrofon iznini etkinleştirin.',
|
|
20
|
+
'general.noCameraDetected': 'Bu cihazda kamera donanımı mevcut değil',
|
|
21
21
|
'general.openSettings': 'Ayarları Aç',
|
|
22
|
-
'general.countryNotAllowed': '
|
|
23
|
-
'general.documentTypeNotAllowed': '
|
|
24
|
-
'termsOfUseAndDataPrivacyScreen.footerText': 'Lütfen
|
|
25
|
-
'termsOfUseAndDataPrivacyScreen.footerTextSRO':
|
|
22
|
+
'general.countryNotAllowed': 'Bu ülkeye ait belgeler desteklenmiyor',
|
|
23
|
+
'general.documentTypeNotAllowed': 'Bu belge türü desteklenmiyor',
|
|
24
|
+
'termsOfUseAndDataPrivacyScreen.footerText': 'Lütfen metni okuyun ve kabul etmek için kaydırın',
|
|
25
|
+
'termsOfUseAndDataPrivacyScreen.footerTextSRO': 'Devam etmek için Kabul Et ve Devam Et’e basın',
|
|
26
26
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Kabul Et ve Devam Et',
|
|
27
|
-
'resultScreen.submitting': '
|
|
28
|
-
'resultScreen.submissionFailed': '
|
|
29
|
-
'resultScreen.submissionSuccessful': '
|
|
27
|
+
'resultScreen.submitting': 'Bilgileriniz gönderiliyor...',
|
|
28
|
+
'resultScreen.submissionFailed': 'Bir hata oluştu. Lütfen daha sonra tekrar deneyin.',
|
|
29
|
+
'resultScreen.submissionSuccessful': 'Bilgileriniz güvenle gönderilmiştir. Doğrulama sonucu kısa süre içinde size bildirilecektir.',
|
|
30
30
|
'resultScreen.thankYou': 'Teşekkürler!',
|
|
31
31
|
'resultScreen.demo': 'Demo',
|
|
32
|
-
'resultScreen.demoDescription': 'Demo
|
|
32
|
+
'resultScreen.demoDescription': 'Demo verilerini göster',
|
|
33
33
|
'resultScreen.demoDeviceIdentifier': 'Cihaz Tanımlayıcısı',
|
|
34
34
|
'resultScreen.demoScannedDocument': 'Taranan Belge',
|
|
35
35
|
'resultScreen.demoScannedDocumentInformation': 'Bilgiler',
|
|
@@ -41,36 +41,31 @@ export default {
|
|
|
41
41
|
'resultScreen.demoImageHologram': 'Hologram',
|
|
42
42
|
'resultScreen.demoLivenessDetection': 'Canlılık Tespiti',
|
|
43
43
|
'resultScreen.demoVideo': 'Video',
|
|
44
|
-
'resultScreen.demoInstruction_smile': 'Gülümseyin',
|
|
45
|
-
'resultScreen.demoInstruction_look_straight_and_blink': 'Düz bakın ve göz kırpın',
|
|
46
|
-
'resultScreen.demoInstruction_turn_head_left': 'Başınızı sola çevirin',
|
|
47
|
-
'resultScreen.demoInstruction_turn_head_right': 'Başınızı sağa çevirin',
|
|
48
|
-
'resultScreen.demoInstruction_look_up': 'Yukarı bakın',
|
|
49
44
|
'resultScreen.demoStartOver': 'Baştan Başla',
|
|
50
|
-
'livenessDetectionScreen.guideHeader': 'Yüz
|
|
51
|
-
'livenessDetectionScreen.guideText': '
|
|
52
|
-
'livenessDetectionScreen.guidePoint1': 'Gözlük, şapka veya
|
|
53
|
-
'livenessDetectionScreen.guidePoint2': '
|
|
54
|
-
'livenessDetectionScreen.guidePoint3': '
|
|
55
|
-
'livenessDetectionScreen.guidePoint4': '
|
|
56
|
-
'livenessDetectionScreen.placeFaceInsideCircle': 'Lütfen yüzünüzü daire içine konumlandırın
|
|
57
|
-
'livenessDetectionScreen.multipleFacesDetected': 'Birden fazla yüz algılandı. Lütfen
|
|
58
|
-
'livenessDetectionScreen.start': 'Yüzünüzü
|
|
59
|
-
'livenessDetectionScreen.smile': '
|
|
60
|
-
'livenessDetectionScreen.lookStraightAndBlink': 'Kameraya bakın ve
|
|
45
|
+
'livenessDetectionScreen.guideHeader': 'Yüz Doğrulaması',
|
|
46
|
+
'livenessDetectionScreen.guideText': 'En iyi sonuç için lütfen şunları sağlayın:',
|
|
47
|
+
'livenessDetectionScreen.guidePoint1': 'Gözlük, şapka veya yüz aksesuarlarını çıkarın',
|
|
48
|
+
'livenessDetectionScreen.guidePoint2': 'İyi aydınlatılmış bir ortamda bulunun',
|
|
49
|
+
'livenessDetectionScreen.guidePoint3': 'Sessiz bir ortam seçin',
|
|
50
|
+
'livenessDetectionScreen.guidePoint4': 'Çerçevede yalnızca yüzünüz görünsün',
|
|
51
|
+
'livenessDetectionScreen.placeFaceInsideCircle': 'Lütfen yüzünüzü daire içine konumlandırın',
|
|
52
|
+
'livenessDetectionScreen.multipleFacesDetected': 'Birden fazla yüz algılandı. Lütfen yalnız olduğunuzdan emin olun.',
|
|
53
|
+
'livenessDetectionScreen.start': 'Yüzünüzü dairede tutun',
|
|
54
|
+
'livenessDetectionScreen.smile': 'Kameraya bakın ve gülümseyin',
|
|
55
|
+
'livenessDetectionScreen.lookStraightAndBlink': 'Kameraya bakın ve gözlerinizi kırpın',
|
|
61
56
|
'livenessDetectionScreen.turnHeadLeft': 'Başınızı sola çevirin',
|
|
62
57
|
'livenessDetectionScreen.turnHeadRight': 'Başınızı sağa çevirin',
|
|
63
58
|
'livenessDetectionScreen.lookUp': 'Yukarı bakın',
|
|
64
|
-
'livenessDetectionScreen.sayNumber': '
|
|
65
|
-
'livenessDetectionScreen.finish': '
|
|
66
|
-
'livenessDetectionScreen.brightnessLow': 'Lütfen
|
|
59
|
+
'livenessDetectionScreen.sayNumber': 'Lütfen bu numarayı söyleyin: {number}',
|
|
60
|
+
'livenessDetectionScreen.finish': 'Tamamlandı',
|
|
61
|
+
'livenessDetectionScreen.brightnessLow': 'Aydınlatma yetersiz. Lütfen daha iyi aydınlatılmış bir ortam sağlayın.',
|
|
67
62
|
'livenessDetectionScreen.faceTooBig': 'Çok yakınsınız. Lütfen biraz geriye çekilin.',
|
|
68
|
-
'livenessDetectionScreen.followInstructions': '
|
|
69
|
-
'eidScannerScreen.guideHeader': 'NFC Taraması
|
|
70
|
-
'eidScannerScreen.guideText': '
|
|
71
|
-
'eidScannerScreen.invalidMRZFields': '
|
|
72
|
-
'eidScannerScreen.imageCannotBeShown': 'Fotoğraf bulundu ancak gösterilemiyor.',
|
|
73
|
-
'eidScannerScreen.faceImageNotFound': '
|
|
63
|
+
'livenessDetectionScreen.followInstructions': 'Lütfen cihazı sabit tutun ve talimatları izleyin',
|
|
64
|
+
'eidScannerScreen.guideHeader': 'NFC Belge Taraması',
|
|
65
|
+
'eidScannerScreen.guideText': 'İstendiğinde, belgenizi cihazınızın arka tarafındaki NFC antenine düz bir şekilde yaklaştırın.',
|
|
66
|
+
'eidScannerScreen.invalidMRZFields': 'Belge bilgileri okunamadı. Lütfen tekrar deneyin.',
|
|
67
|
+
'eidScannerScreen.imageCannotBeShown': 'Fotoğraf verisi bulundu ancak gösterilemiyor.',
|
|
68
|
+
'eidScannerScreen.faceImageNotFound': 'Belgede fotoğraf verisi bulunamadı.',
|
|
74
69
|
'eidScannerScreen.documentCode': 'Belge Kodu',
|
|
75
70
|
'eidScannerScreen.nationality': 'Uyruk',
|
|
76
71
|
'eidScannerScreen.personalNumber': 'Vatandaşlık No',
|
|
@@ -81,57 +76,61 @@ export default {
|
|
|
81
76
|
'eidScannerScreen.gender': 'Cinsiyet',
|
|
82
77
|
'eidScannerScreen.expirationDate': 'Geçerlilik Tarihi',
|
|
83
78
|
'eidScannerScreen.mrzText': 'MRZ Metni',
|
|
84
|
-
'eidScannerScreen.nfcNotSupported': '
|
|
85
|
-
'eidScannerScreen.nfcNotEnabled': 'NFC
|
|
79
|
+
'eidScannerScreen.nfcNotSupported': 'Bu cihaz NFC işlevini desteklememektedir.',
|
|
80
|
+
'eidScannerScreen.nfcNotEnabled': 'Cihazda NFC devre dışı. Lütfen ayarlardan etkinleştirin.',
|
|
86
81
|
'eidScannerScreen.enableNFC': "NFC'yi Etkinleştir",
|
|
87
82
|
'eidScannerScreen.startScanning': 'Taramaya Başla',
|
|
88
|
-
'eidScannerScreen.placeIDCardOnNFC': '
|
|
89
|
-
'eidScannerScreen.placePassportOnNFC': '
|
|
90
|
-
'eidScannerScreen.placeDocumentOnNFC': '
|
|
91
|
-
'eidScannerScreen.readingDocument': '
|
|
92
|
-
'eidScannerScreen.checkYourInformation':
|
|
83
|
+
'eidScannerScreen.placeIDCardOnNFC': 'Kimlik kartınızı NFC okuyucuya yaklaştırın',
|
|
84
|
+
'eidScannerScreen.placePassportOnNFC': 'Pasaportunuzu NFC okuyucuya yaklaştırın',
|
|
85
|
+
'eidScannerScreen.placeDocumentOnNFC': 'Belgenizi NFC okuyucuya yaklaştırın',
|
|
86
|
+
'eidScannerScreen.readingDocument': 'Sabit tutun - Belge okunuyor',
|
|
87
|
+
'eidScannerScreen.checkYourInformation': 'Bilgilerinizi dikkatle kontrol edin',
|
|
93
88
|
'eidScannerScreen.approveAndContinue': 'Onayla ve Devam Et',
|
|
94
|
-
'eidScannerScreen.connecting': '
|
|
89
|
+
'eidScannerScreen.connecting': 'Güvenli bağlantı kuruluyor...',
|
|
95
90
|
'eidScannerScreen.readingMRZ': 'Belge bilgileri okunuyor...',
|
|
96
|
-
'eidScannerScreen.readingFaceImage': 'Fotoğraf okunuyor...',
|
|
97
|
-
'eidScannerScreen.completing': '
|
|
91
|
+
'eidScannerScreen.readingFaceImage': 'Fotoğraf verisi okunuyor...',
|
|
92
|
+
'eidScannerScreen.completing': 'Doğrulama tamamlanıyor...',
|
|
98
93
|
'eidScannerScreen.progress': 'İlerleme',
|
|
99
|
-
'identityDocumentCamera.guideHeader': '
|
|
100
|
-
'identityDocumentCamera.guideText': '
|
|
101
|
-
'identityDocumentCamera.guidePoint1': '
|
|
102
|
-
'identityDocumentCamera.guidePoint2': '
|
|
103
|
-
'identityDocumentCamera.guidePoint3': '
|
|
104
|
-
'identityDocumentCamera.lowBrightness': '
|
|
105
|
-
'identityDocumentCamera.alignPhotoSide': '
|
|
106
|
-
'identityDocumentCamera.alignHologram': '
|
|
107
|
-
'identityDocumentCamera.alignIDFrontSide': 'Kimlik
|
|
108
|
-
'identityDocumentCamera.alignIDBackSide': 'Kimlik
|
|
109
|
-
'identityDocumentCamera.scanCompleted': 'Tarama
|
|
94
|
+
'identityDocumentCamera.guideHeader': 'Belge Taraması',
|
|
95
|
+
'identityDocumentCamera.guideText': 'En iyi sonuç için lütfen şunları sağlayın:',
|
|
96
|
+
'identityDocumentCamera.guidePoint1': 'Belgeyi düz, koyu bir zemin üzerine yerleştirin',
|
|
97
|
+
'identityDocumentCamera.guidePoint2': 'Yansıma olmadan yeterli ışık kullanın',
|
|
98
|
+
'identityDocumentCamera.guidePoint3': 'Belgeyi çerçeve içinde tutun',
|
|
99
|
+
'identityDocumentCamera.lowBrightness': 'Aydınlatma yetersiz. Lütfen daha aydınlık bir yere gidin.',
|
|
100
|
+
'identityDocumentCamera.alignPhotoSide': 'Fotoğraflı yüzü gösterin',
|
|
101
|
+
'identityDocumentCamera.alignHologram': 'Belgenizi yavaşça eğin',
|
|
102
|
+
'identityDocumentCamera.alignIDFrontSide': 'Kimlik kartınızın ön yüzünü hizalayın',
|
|
103
|
+
'identityDocumentCamera.alignIDBackSide': 'Kimlik kartınızın arka yüzünü hizalayın',
|
|
104
|
+
'identityDocumentCamera.scanCompleted': 'Tarama tamamlandı!',
|
|
110
105
|
'identityDocumentCamera.frontSideScanned': 'Ön yüz tarandı!',
|
|
111
106
|
'identityDocumentCamera.passportScanned': 'Pasaport tarandı!',
|
|
112
107
|
'identityDocumentCamera.backSideScanned': 'Arka yüz tarandı!',
|
|
113
|
-
'identityDocumentCamera.hologramVerified': '
|
|
114
|
-
'identityDocumentCamera.searchingDocument': '
|
|
115
|
-
'identityDocumentCamera.faceDetected': '
|
|
108
|
+
'identityDocumentCamera.hologramVerified': 'Hologram doğrulandı!',
|
|
109
|
+
'identityDocumentCamera.searchingDocument': 'Belgeyi çerçeve içine yerleştirin',
|
|
110
|
+
'identityDocumentCamera.faceDetected': 'Cihazı sabit tutun...',
|
|
116
111
|
'identityDocumentCamera.readingDocument': 'Belge okunuyor...',
|
|
117
|
-
'identityDocumentCamera.processing': '
|
|
118
|
-
'identityDocumentCamera.stepProgress': '
|
|
119
|
-
'identityDocumentCamera.frontSide': 'Ön
|
|
120
|
-
'identityDocumentCamera.backSide': 'Arka
|
|
121
|
-
'identityDocumentCamera.hologramCheck': 'Hologram
|
|
122
|
-
'identityDocumentCamera.keepSteady': '
|
|
123
|
-
'identityDocumentCamera.avoidBlur': '
|
|
124
|
-
'identityDocumentCamera.wrongSideFront': '
|
|
125
|
-
'identityDocumentCamera.wrongSideBack': '
|
|
112
|
+
'identityDocumentCamera.processing': 'Belge işleniyor...',
|
|
113
|
+
'identityDocumentCamera.stepProgress': '{{current}}/{{total}}',
|
|
114
|
+
'identityDocumentCamera.frontSide': 'Ön',
|
|
115
|
+
'identityDocumentCamera.backSide': 'Arka',
|
|
116
|
+
'identityDocumentCamera.hologramCheck': 'Hologram',
|
|
117
|
+
'identityDocumentCamera.keepSteady': 'Cihazı sabit tutun',
|
|
118
|
+
'identityDocumentCamera.avoidBlur': 'Cihazı sabit tutun',
|
|
119
|
+
'identityDocumentCamera.wrongSideFront': 'Belgenizin ön yüzünü gösterin',
|
|
120
|
+
'identityDocumentCamera.wrongSideBack': 'Belgenizin arka yüzünü gösterin',
|
|
126
121
|
'identityDocumentCamera.idCardDetected': 'Kimlik kartı algılandı',
|
|
127
|
-
'identityDocumentCamera.idCardFrontDetected': '
|
|
128
|
-
'identityDocumentCamera.
|
|
129
|
-
'identityDocumentCamera.
|
|
130
|
-
'identityDocumentCamera.
|
|
131
|
-
'identityDocumentCamera.
|
|
132
|
-
'identityDocumentCamera.
|
|
133
|
-
'identityDocumentCamera.
|
|
122
|
+
'identityDocumentCamera.idCardFrontDetected': 'Cihazı sabit tutun...',
|
|
123
|
+
'identityDocumentCamera.idCardBackDetected': 'Cihazı sabit tutun...',
|
|
124
|
+
'identityDocumentCamera.passportDetected': 'Cihazı sabit tutun...',
|
|
125
|
+
'identityDocumentCamera.alignIDFront': 'Kimlik kartınızın ön yüzünü hizalayın',
|
|
126
|
+
'identityDocumentCamera.alignIDBack': 'Kimlik kartınızın arka yüzünü hizalayın',
|
|
127
|
+
'identityDocumentCamera.alignPassport': 'Pasaportu hizalayın',
|
|
128
|
+
'identityDocumentCamera.moveCloser': 'Lütfen yaklaşın',
|
|
129
|
+
'identityDocumentCamera.moveFarther': 'Lütfen uzaklaşın',
|
|
130
|
+
'identityDocumentCamera.documentTooSmall': 'Belge çok uzak. Yaklaşın.',
|
|
131
|
+
'identityDocumentCamera.documentTooLarge': 'Belge çok yakın. Uzaklaşın.',
|
|
132
|
+
'identityDocumentCamera.holdSteady': 'Cihazı sabit tutun',
|
|
134
133
|
'identityDocumentCamera.centerDocument': 'Belgeyi çerçevede ortalayın',
|
|
135
|
-
'navigationManager.skipStepWarning': '
|
|
134
|
+
'navigationManager.skipStepWarning': 'Başarılı bir doğrulama için bu adımı tamamlamanız önerilir. Yine de atlamak istiyor musunuz?',
|
|
136
135
|
'navigationManager.skipStepLabel': 'Bu Adımı Atla'
|
|
137
136
|
};
|
package/lib/module/Trustchex.js
CHANGED
|
@@ -7,6 +7,7 @@ import { View, ActivityIndicator, StyleSheet } from 'react-native';
|
|
|
7
7
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
8
8
|
import 'react-native-get-random-values';
|
|
9
9
|
import { ThemeProvider } from "./Shared/Contexts/ThemeContext.js";
|
|
10
|
+
import { setDebugMode, setLogLevel, logWarn } from "./Shared/Libs/debug.utils.js";
|
|
10
11
|
import IdentityDocumentEIDScanningScreen from "./Screens/Dynamic/IdentityDocumentEIDScanningScreen.js";
|
|
11
12
|
import IdentityDocumentScanningScreen from "./Screens/Dynamic/IdentityDocumentScanningScreen.js";
|
|
12
13
|
import LivenessDetectionScreen from "./Screens/Dynamic/LivenessDetectionScreen.js";
|
|
@@ -36,7 +37,9 @@ const Trustchex = ({
|
|
|
36
37
|
locale: propLocale,
|
|
37
38
|
onCompleted,
|
|
38
39
|
onError,
|
|
39
|
-
enableAnalytics = true
|
|
40
|
+
enableAnalytics = true,
|
|
41
|
+
debug = false,
|
|
42
|
+
logLevel = 'trace'
|
|
40
43
|
}) => {
|
|
41
44
|
const [baseUrl, setBaseUrl] = useState(null);
|
|
42
45
|
const [sessionId, setSessionId] = useState(null);
|
|
@@ -84,10 +87,14 @@ const Trustchex = ({
|
|
|
84
87
|
source: 'sdk_init'
|
|
85
88
|
});
|
|
86
89
|
}).catch(error => {
|
|
87
|
-
|
|
90
|
+
logWarn('[Trustchex] Failed to initialize analytics:', error);
|
|
88
91
|
});
|
|
89
92
|
}
|
|
90
93
|
}, [enableAnalytics, baseUrl, sessionId, analyticsInitialized]);
|
|
94
|
+
useEffect(() => {
|
|
95
|
+
setDebugMode(debug);
|
|
96
|
+
setLogLevel(logLevel);
|
|
97
|
+
}, [debug, logLevel]);
|
|
91
98
|
useEffect(() => {
|
|
92
99
|
initializeTTS();
|
|
93
100
|
}, []);
|
package/lib/module/index.js
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
import Trustchex from "./Trustchex.js";
|
|
4
4
|
export { handleDeepLink } from "./Shared/Libs/deeplink.utils.js";
|
|
5
5
|
export { analyticsService } from "./Shared/Services/AnalyticsService.js";
|
|
6
|
+
export { LogLevel, setDebugMode, setLogLevel, isDebugEnabled, getLogLevel, traceLog, debugLog, infoLog, debugWarn, debugError, logError, logWarn } from "./Shared/Libs/debug.utils.js";
|
|
6
7
|
export { trackScreenView, trackScreenExit, trackButtonClick, trackError, trackErrorWithDetails, trackApiCall, trackVerificationStart, trackVerificationComplete, trackConsentGiven, trackSessionStart, trackSessionEnd, trackNFCScanStart, trackNFCScanComplete, trackNFCScanFailed, trackFunnelStep, trackStepAbandoned, trackStepSkipped, useScreenTracking } from "./Shared/Libs/analytics.utils.js";
|
|
7
8
|
export { AnalyticsEventCategory, AnalyticsEventName, ErrorCategory } from "./Shared/Types/analytics.types.js";
|
|
8
9
|
export default Trustchex;
|
package/lib/module/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdentityDocumentEIDScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx"],"names":[],"mappings":"AAoBA,QAAA,MAAM,iCAAiC,+
|
|
1
|
+
{"version":3,"file":"IdentityDocumentEIDScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx"],"names":[],"mappings":"AAoBA,QAAA,MAAM,iCAAiC,+CAsMtC,CAAC;AAoBF,eAAe,iCAAiC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdentityDocumentScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx"],"names":[],"mappings":"AAoBA,QAAA,MAAM,8BAA8B,+
|
|
1
|
+
{"version":3,"file":"IdentityDocumentScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx"],"names":[],"mappings":"AAoBA,QAAA,MAAM,8BAA8B,+CAkJnC,CAAC;AAgBF,eAAe,8BAA8B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LivenessDetectionScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/LivenessDetectionScreen.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"LivenessDetectionScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Dynamic/LivenessDetectionScreen.tsx"],"names":[],"mappings":"AA+EA,QAAA,MAAM,uBAAuB,+CAq1B5B,CAAC;AAoFF,eAAe,uBAAuB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OTPVerificationScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/OTPVerificationScreen.tsx"],"names":[],"mappings":"AA6CA,QAAA,MAAM,qBAAqB,+
|
|
1
|
+
{"version":3,"file":"OTPVerificationScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/OTPVerificationScreen.tsx"],"names":[],"mappings":"AA6CA,QAAA,MAAM,qBAAqB,+CAoQ1B,CAAC;AA+EF,eAAe,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QrCodeScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/QrCodeScanningScreen.tsx"],"names":[],"mappings":"AAQA,QAAA,MAAM,oBAAoB,+
|
|
1
|
+
{"version":3,"file":"QrCodeScanningScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/QrCodeScanningScreen.tsx"],"names":[],"mappings":"AAQA,QAAA,MAAM,oBAAoB,+CAoCzB,CAAC;AASF,eAAe,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ResultScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/ResultScreen.tsx"],"names":[],"mappings":"AAkDA,QAAA,MAAM,YAAY,+
|
|
1
|
+
{"version":3,"file":"ResultScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/ResultScreen.tsx"],"names":[],"mappings":"AAkDA,QAAA,MAAM,YAAY,+CAq2BjB,CAAC;AAoIF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerificationSessionCheckScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/VerificationSessionCheckScreen.tsx"],"names":[],"mappings":"AAiDA,QAAA,MAAM,8BAA8B,+
|
|
1
|
+
{"version":3,"file":"VerificationSessionCheckScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/VerificationSessionCheckScreen.tsx"],"names":[],"mappings":"AAiDA,QAAA,MAAM,8BAA8B,+CAyUnC,CAAC;AAiHF,eAAe,8BAA8B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugNavigationPanel.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/DebugNavigationPanel.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DebugNavigationPanel.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/DebugNavigationPanel.tsx"],"names":[],"mappings":"AAqCA,QAAA,MAAM,oBAAoB,+CA2UzB,CAAC;AAqJF,eAAe,oBAAoB,CAAC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MRZFields } from '../Types/mrzFields';
|
|
2
2
|
interface eIDScannerProps {
|
|
3
3
|
documentNumber: string;
|
|
4
4
|
dateOfBirth: string;
|
|
5
5
|
dateOfExpiry: string;
|
|
6
6
|
documentType?: string;
|
|
7
|
-
onScanSuccess?: (mrzInfo:
|
|
7
|
+
onScanSuccess?: (mrzInfo: MRZFields, faceImage: string, faceImageMimeType: string) => void;
|
|
8
8
|
isNFCSupported?: (supported: boolean) => void;
|
|
9
9
|
}
|
|
10
10
|
declare const EIDScanner: ({ documentNumber, dateOfBirth, dateOfExpiry, documentType, onScanSuccess, isNFCSupported, }: eIDScannerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EIDScanner.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/EIDScanner.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"EIDScanner.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/EIDScanner.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAcpD,UAAU,eAAe;IACvB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,CACd,OAAO,EAAE,SAAS,EAClB,SAAS,EAAE,MAAM,EACjB,iBAAiB,EAAE,MAAM,KACtB,IAAI,CAAC;IACV,cAAc,CAAC,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;CAC/C;AAED,QAAA,MAAM,UAAU,GAAI,6FAOjB,eAAe,4CA0nBjB,CAAC;AA+HF,eAAe,UAAU,CAAC"}
|