@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,8 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { type TrustchexCameraHandle } from './TrustchexCamera';
|
|
2
|
+
export type Face = {
|
|
3
|
+
bounds: {
|
|
4
|
+
x: number;
|
|
5
|
+
y: number;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
};
|
|
9
|
+
yawAngle: number;
|
|
10
|
+
pitchAngle: number;
|
|
11
|
+
rollAngle: number;
|
|
12
|
+
trackingId?: number;
|
|
13
|
+
smilingProbability: number;
|
|
14
|
+
leftEyeOpenProbability: number;
|
|
15
|
+
rightEyeOpenProbability: number;
|
|
16
|
+
};
|
|
3
17
|
export type FaceCameraProps = {
|
|
4
|
-
onFacesDetected: (faces: Face[], image: string, isImageBright: boolean) => void;
|
|
5
|
-
onCameraInitialized: (camera:
|
|
18
|
+
onFacesDetected: (faces: Face[], image: string, isImageBright: boolean, frameWidth: number, frameHeight: number) => void;
|
|
19
|
+
onCameraInitialized: (camera: TrustchexCameraHandle) => void;
|
|
6
20
|
previewRect?: {
|
|
7
21
|
minX: number;
|
|
8
22
|
minY: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FaceCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/FaceCamera.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FaceCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/FaceCamera.tsx"],"names":[],"mappings":"AAeA,OAAO,EAEL,KAAK,qBAAqB,EAE3B,MAAM,mBAAmB,CAAC;AAa3B,MAAM,MAAM,IAAI,GAAG;IACjB,MAAM,EAAE;QACN,CAAC,EAAE,MAAM,CAAC;QACV,CAAC,EAAE,MAAM,CAAC;QACV,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,sBAAsB,EAAE,MAAM,CAAC;IAC/B,uBAAuB,EAAE,MAAM,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,eAAe,EAAE,CACf,KAAK,EAAE,IAAI,EAAE,EACb,KAAK,EAAE,MAAM,EACb,aAAa,EAAE,OAAO,EACtB,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM,KAChB,IAAI,CAAC;IACV,mBAAmB,EAAE,CAAC,MAAM,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC7D,WAAW,CAAC,EAAE;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;QACd,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;CACH,CAAC;AAEF,QAAA,MAAM,UAAU,GAAI,wDAIjB,eAAe,4CAwSjB,CAAC;AA6BF,eAAe,UAAU,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MRZFields } from '../Types/mrzFields';
|
|
2
2
|
export type DocumentScannedData = {
|
|
3
3
|
documentType: 'ID_FRONT' | 'ID_BACK' | 'PASSPORT' | 'UNKNOWN';
|
|
4
4
|
image: string;
|
|
@@ -7,7 +7,7 @@ export type DocumentScannedData = {
|
|
|
7
7
|
hologramImage?: string;
|
|
8
8
|
barcodeValue?: string;
|
|
9
9
|
mrzText?: string;
|
|
10
|
-
mrzFields?:
|
|
10
|
+
mrzFields?: MRZFields;
|
|
11
11
|
};
|
|
12
12
|
export type BlockText = {
|
|
13
13
|
blocks: BlocksData[];
|
|
@@ -51,8 +51,7 @@ export type PhotoOptions = {
|
|
|
51
51
|
export interface IdentityDocumentCameraProps {
|
|
52
52
|
onlyMRZScan: boolean;
|
|
53
53
|
onIdentityDocumentScanned: (scannedData: DocumentScannedData) => void;
|
|
54
|
-
showDebugImages?: boolean;
|
|
55
54
|
}
|
|
56
|
-
declare const IdentityDocumentCamera: ({ onlyMRZScan, onIdentityDocumentScanned,
|
|
55
|
+
declare const IdentityDocumentCamera: ({ onlyMRZScan, onIdentityDocumentScanned, }: IdentityDocumentCameraProps) => import("react/jsx-runtime").JSX.Element;
|
|
57
56
|
export default IdentityDocumentCamera;
|
|
58
57
|
//# sourceMappingURL=IdentityDocumentCamera.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdentityDocumentCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/IdentityDocumentCamera.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IdentityDocumentCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/IdentityDocumentCamera.tsx"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAcpD,MAAM,MAAM,mBAAmB,GAAG;IAChC,YAAY,EAAE,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC9D,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,UAAU,GAAG;IAChB,UAAU,EAAE,SAAS,CAAC;IACtB,iBAAiB,EAAE,gBAAgB,CAAC;IACpC,KAAK,EAAE,SAAS,CAAC;IACjB,cAAc,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;IAC9B,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,gBAAgB,GAAG,CAAC;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEnD,KAAK,SAAS,GAAG;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,KAAK,SAAS,GAAG;IACf,gBAAgB,EAAE,gBAAgB;IAClC,QAAQ,EAAE,YAAY;IACtB,SAAS,EAAE,SAAS;IACpB,aAAa,EAAE,MAAM,EAAE,GAAG,EAAE;IAC5B,QAAQ,EAAE,MAAM;CACjB,CAAC;AAEF,KAAK,YAAY,GAAG;IAClB,mBAAmB,EAAE,gBAAgB;IACrC,YAAY,EAAE,SAAS;IACvB,WAAW,EAAE,MAAM;CACpB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EACR,gBAAgB,GAChB,UAAU,GACV,oBAAoB,GACpB,eAAe,CAAC;CACrB,CAAC;AAEF,MAAM,WAAW,2BAA2B;IAC1C,WAAW,EAAE,OAAO,CAAC;IACrB,yBAAyB,EAAE,CAAC,WAAW,EAAE,mBAAmB,KAAK,IAAI,CAAC;CACvE;AA4BD,QAAA,MAAM,sBAAsB,GAAI,6CAG7B,2BAA2B,4CAm0G7B,CAAC;AA0LF,eAAe,sBAAsB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export interface QrCodeScannerCameraProps {
|
|
2
2
|
onQrCodeScanned: (data: string) => void;
|
|
3
|
+
onClose?: () => void;
|
|
3
4
|
}
|
|
4
|
-
declare const QrCodeScannerCamera: ({ onQrCodeScanned }: QrCodeScannerCameraProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const QrCodeScannerCamera: ({ onQrCodeScanned, onClose, }: QrCodeScannerCameraProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export default QrCodeScannerCamera;
|
|
6
7
|
//# sourceMappingURL=QrCodeScannerCamera.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QrCodeScannerCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/QrCodeScannerCamera.tsx"],"names":[],"mappings":"AA2BA,MAAM,WAAW,wBAAwB;IACvC,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"QrCodeScannerCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/QrCodeScannerCamera.tsx"],"names":[],"mappings":"AA2BA,MAAM,WAAW,wBAAwB;IACvC,eAAe,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,QAAA,MAAM,mBAAmB,GAAI,+BAG1B,wBAAwB,4CA6L1B,CAAC;AAwGF,eAAe,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type NativeSyntheticEvent, type ViewStyle, type StyleProp } from 'react-native';
|
|
3
|
+
export interface Frame {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
orientation: number;
|
|
7
|
+
timestamp: number;
|
|
8
|
+
brightness?: number;
|
|
9
|
+
base64Image?: string;
|
|
10
|
+
faces?: NativeFace[];
|
|
11
|
+
textBlocks?: NativeTextBlock[];
|
|
12
|
+
resultText?: string;
|
|
13
|
+
barcodes?: NativeBarcode[];
|
|
14
|
+
mrzResult?: NativeMRZResult;
|
|
15
|
+
}
|
|
16
|
+
export interface NativeFace {
|
|
17
|
+
bounds: {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
width: number;
|
|
21
|
+
height: number;
|
|
22
|
+
};
|
|
23
|
+
yawAngle: number;
|
|
24
|
+
pitchAngle: number;
|
|
25
|
+
rollAngle: number;
|
|
26
|
+
smilingProbability?: number;
|
|
27
|
+
leftEyeOpenProbability?: number;
|
|
28
|
+
rightEyeOpenProbability?: number;
|
|
29
|
+
}
|
|
30
|
+
export interface NativeTextBlock {
|
|
31
|
+
text: string;
|
|
32
|
+
blockFrame?: {
|
|
33
|
+
x: number;
|
|
34
|
+
y: number;
|
|
35
|
+
width: number;
|
|
36
|
+
height: number;
|
|
37
|
+
boundingCenterX: number;
|
|
38
|
+
boundingCenterY: number;
|
|
39
|
+
};
|
|
40
|
+
cornerPoints?: Array<{
|
|
41
|
+
x: number;
|
|
42
|
+
y: number;
|
|
43
|
+
}>;
|
|
44
|
+
}
|
|
45
|
+
export interface NativeBarcode {
|
|
46
|
+
rawValue: string;
|
|
47
|
+
displayValue: string;
|
|
48
|
+
format: number;
|
|
49
|
+
boundingBox?: {
|
|
50
|
+
left: number;
|
|
51
|
+
top: number;
|
|
52
|
+
right: number;
|
|
53
|
+
bottom: number;
|
|
54
|
+
};
|
|
55
|
+
cornerPoints?: Array<{
|
|
56
|
+
x: number;
|
|
57
|
+
y: number;
|
|
58
|
+
}>;
|
|
59
|
+
}
|
|
60
|
+
export interface NativeMRZResult {
|
|
61
|
+
valid: boolean;
|
|
62
|
+
format: string;
|
|
63
|
+
error?: string;
|
|
64
|
+
documentCode?: string;
|
|
65
|
+
issuingState?: string;
|
|
66
|
+
documentNumber?: string;
|
|
67
|
+
lastName?: string;
|
|
68
|
+
firstName?: string;
|
|
69
|
+
birthDate?: string;
|
|
70
|
+
sex?: string;
|
|
71
|
+
expirationDate?: string;
|
|
72
|
+
nationality?: string;
|
|
73
|
+
optional1?: string;
|
|
74
|
+
optional2?: string;
|
|
75
|
+
rawLines?: string;
|
|
76
|
+
}
|
|
77
|
+
interface TrustchexCameraProps {
|
|
78
|
+
style?: StyleProp<ViewStyle>;
|
|
79
|
+
cameraType?: 'front' | 'back';
|
|
80
|
+
torchEnabled?: boolean;
|
|
81
|
+
enableFrameProcessing?: boolean;
|
|
82
|
+
targetFps?: number;
|
|
83
|
+
enableFaceDetection?: boolean;
|
|
84
|
+
enableTextRecognition?: boolean;
|
|
85
|
+
enableBarcodeScanning?: boolean;
|
|
86
|
+
enableMrzValidation?: boolean;
|
|
87
|
+
includeBase64?: boolean;
|
|
88
|
+
onFrameAvailable?: (event: NativeSyntheticEvent<{
|
|
89
|
+
frame: Frame;
|
|
90
|
+
}>) => void;
|
|
91
|
+
onCameraReady?: (event: NativeSyntheticEvent<{
|
|
92
|
+
minExposureOffset: number;
|
|
93
|
+
maxExposureOffset: number;
|
|
94
|
+
}>) => void;
|
|
95
|
+
onCameraError?: (event: NativeSyntheticEvent<{
|
|
96
|
+
error: string;
|
|
97
|
+
}>) => void;
|
|
98
|
+
onRecordingFinished?: (event: NativeSyntheticEvent<{
|
|
99
|
+
path: string;
|
|
100
|
+
}>) => void;
|
|
101
|
+
onRecordingError?: (event: NativeSyntheticEvent<{
|
|
102
|
+
error: string;
|
|
103
|
+
}>) => void;
|
|
104
|
+
}
|
|
105
|
+
export interface TrustchexCameraHandle {
|
|
106
|
+
setFocusPoint: (x: number, y: number) => void;
|
|
107
|
+
setExposureOffset: (offset: number) => void;
|
|
108
|
+
startRecording: (options: {
|
|
109
|
+
fileType?: string;
|
|
110
|
+
videoCodec?: string;
|
|
111
|
+
onRecordingFinished?: (video: {
|
|
112
|
+
path: string;
|
|
113
|
+
}) => void;
|
|
114
|
+
onRecordingError?: (error: {
|
|
115
|
+
error: string;
|
|
116
|
+
}) => void;
|
|
117
|
+
}) => void;
|
|
118
|
+
stopRecording: () => Promise<void>;
|
|
119
|
+
cancelRecording: () => Promise<void>;
|
|
120
|
+
deleteRecording: (filePath: string) => void;
|
|
121
|
+
}
|
|
122
|
+
export declare const TrustchexCamera: React.ForwardRefExoticComponent<TrustchexCameraProps & React.RefAttributes<TrustchexCameraHandle>>;
|
|
123
|
+
export {};
|
|
124
|
+
//# sourceMappingURL=TrustchexCamera.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TrustchexCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/TrustchexCamera.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ASN1Constants } from './asn1Constants';
|
|
2
|
+
export declare class TLVHelpers extends ASN1Constants {
|
|
3
|
+
static isPrimitive(tag: number): boolean;
|
|
4
|
+
static getTagLength(tag: number): number;
|
|
5
|
+
static getLengthLength(length: number): number;
|
|
6
|
+
static getTagAsBytes(tag: number): number[];
|
|
7
|
+
static getLengthAsBytes(length: number): number[];
|
|
8
|
+
static getTagClass(tag: number): number;
|
|
9
|
+
private static log;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=tlv.helpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tlv.helpers.d.ts","sourceRoot":"","sources":["../../../../../../src/Shared/EIDReader/tlv/tlv.helpers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,qBAAa,UAAW,SAAQ,aAAa;WAC7B,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;WAYjC,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;WAIjC,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM;WAIvC,aAAa,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE;WA2BpC,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE;IAexD,MAAM,CAAC,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;IAsBvC,OAAO,CAAC,MAAM,CAAC,GAAG;CAQnB"}
|
|
@@ -1,44 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare class TLVUtil extends
|
|
3
|
-
static isPrimitive(tag: number): boolean;
|
|
4
|
-
static getTagLength(tag: number): number;
|
|
5
|
-
static getLengthLength(length: number): number;
|
|
6
|
-
/**
|
|
7
|
-
* The tag bytes of this object.
|
|
8
|
-
*
|
|
9
|
-
* @param tag the tag
|
|
10
|
-
*
|
|
11
|
-
* @return the tag bytes of this object.
|
|
12
|
-
*/
|
|
13
|
-
static getTagAsBytes(tag: number): number[];
|
|
14
|
-
/**
|
|
15
|
-
* The length bytes of this object.
|
|
16
|
-
*
|
|
17
|
-
* @param length the length
|
|
18
|
-
*
|
|
19
|
-
* @return length of encoded value as bytes
|
|
20
|
-
*/
|
|
21
|
-
static getLengthAsBytes(length: number): number[];
|
|
22
|
-
/**
|
|
23
|
-
* TLV encodes an encoded data object with a tag.
|
|
24
|
-
*
|
|
25
|
-
* @param tag the tag
|
|
26
|
-
* @param data the data to encode
|
|
27
|
-
*
|
|
28
|
-
* @return the TLV encoded data
|
|
29
|
-
*/
|
|
1
|
+
import { TLVHelpers } from './tlv.helpers';
|
|
2
|
+
declare class TLVUtil extends TLVHelpers {
|
|
30
3
|
static wrapDO(tag: number, data: number[]): Uint8Array;
|
|
31
|
-
/**
|
|
32
|
-
* TLV decodes tagged TLV data object.
|
|
33
|
-
*
|
|
34
|
-
* @param expectedTag the tag to expect, an {@code IllegalArgumentException} will be throws if a different tag is read
|
|
35
|
-
* @param wrappedData the encoded data
|
|
36
|
-
*
|
|
37
|
-
* @return the decoded data
|
|
38
|
-
*/
|
|
39
4
|
static unwrapDO(expectedTag: number, wrappedData: number[]): Promise<number[]>;
|
|
40
|
-
static getTagClass(tag: number): number;
|
|
41
|
-
private static log;
|
|
42
5
|
}
|
|
43
6
|
export default TLVUtil;
|
|
44
7
|
//# sourceMappingURL=tlv.utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tlv.utils.d.ts","sourceRoot":"","sources":["../../../../../../src/Shared/EIDReader/tlv/tlv.utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tlv.utils.d.ts","sourceRoot":"","sources":["../../../../../../src/Shared/EIDReader/tlv/tlv.utils.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,cAAM,OAAQ,SAAQ,UAAU;WAEhB,MAAM,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,UAAU;WAyBzC,QAAQ,CAC1B,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,MAAM,EAAE,GACpB,OAAO,CAAC,MAAM,EAAE,CAAC;CAsCrB;AAED,eAAe,OAAO,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"analytics.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/analytics.utils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAQH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"analytics.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/analytics.utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Debug logging utility with log levels for SDK development
|
|
3
|
+
* Logs are filtered based on the current log level and debug mode
|
|
4
|
+
*
|
|
5
|
+
* Log Levels (lower number = more verbose):
|
|
6
|
+
* 0 - TRACE (all debug information)
|
|
7
|
+
* 1 - DEBUG (important debug information)
|
|
8
|
+
* 2 - INFO (informational messages)
|
|
9
|
+
* 3 - WARN (warnings and important issues)
|
|
10
|
+
* 4 - ERROR (errors only)
|
|
11
|
+
* 5 - SILENT (no logging)
|
|
12
|
+
*
|
|
13
|
+
* Enable debug mode via:
|
|
14
|
+
* 1. Environment variable: TRUSTCHEX_DEBUG=true
|
|
15
|
+
* 2. Global flag: (global as any).TRUSTCHEX_DEBUG = true
|
|
16
|
+
* 3. TrustchexProvider prop: debug={true}
|
|
17
|
+
*
|
|
18
|
+
* Set log level via:
|
|
19
|
+
* 1. setLogLevel(LogLevel.TRACE)
|
|
20
|
+
* 2. TRUSTCHEX_LOG_LEVEL environment variable
|
|
21
|
+
* 3. TrustchexProvider prop: logLevel="trace"
|
|
22
|
+
*/
|
|
23
|
+
export declare enum LogLevel {
|
|
24
|
+
TRACE = 0,
|
|
25
|
+
DEBUG = 1,
|
|
26
|
+
INFO = 2,
|
|
27
|
+
WARN = 3,
|
|
28
|
+
ERROR = 4,
|
|
29
|
+
SILENT = 5
|
|
30
|
+
}
|
|
31
|
+
export declare const setDebugMode: (enabled: boolean) => void;
|
|
32
|
+
export declare const setLogLevel: (level: LogLevel | string) => void;
|
|
33
|
+
export declare const isDebugEnabled: () => boolean;
|
|
34
|
+
export declare const getLogLevel: () => LogLevel;
|
|
35
|
+
export declare const traceLog: (tag: string, message: string, data?: unknown) => void;
|
|
36
|
+
export declare const debugLog: (tag: string, message: string, data?: unknown) => void;
|
|
37
|
+
export declare const infoLog: (tag: string, message: string, data?: unknown) => void;
|
|
38
|
+
export declare const debugWarn: (tag: string, message: string, data?: unknown) => void;
|
|
39
|
+
export declare const debugError: (tag: string, message: string, error?: unknown) => void;
|
|
40
|
+
export declare const logError: (tag: string, message: string, error?: unknown) => void;
|
|
41
|
+
export declare const logWarn: (tag: string, message: string, data?: unknown) => void;
|
|
42
|
+
//# sourceMappingURL=debug.utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/debug.utils.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,oBAAY,QAAQ;IAClB,KAAK,IAAI;IACT,KAAK,IAAI;IACT,IAAI,IAAI;IACR,IAAI,IAAI;IACR,KAAK,IAAI;IACT,MAAM,IAAI;CACX;AA2BD,eAAO,MAAM,YAAY,GAAI,SAAS,OAAO,SAM5C,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,OAAO,QAAQ,GAAG,MAAM,SAEnD,CAAC;AAEF,eAAO,MAAM,cAAc,eAE1B,CAAC;AAEF,eAAO,MAAM,WAAW,gBAEvB,CAAC;AAOF,eAAO,MAAM,QAAQ,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,OAAO,OAAO,SAQpE,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,OAAO,OAAO,SAQpE,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,OAAO,OAAO,SAQnE,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,OAAO,OAAO,SAQrE,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,QAAQ,OAAO,SAQvE,CAAC;AAGF,eAAO,MAAM,QAAQ,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,QAAQ,OAAO,SAMrE,CAAC;AAGF,eAAO,MAAM,OAAO,GAAI,KAAK,MAAM,EAAE,SAAS,MAAM,EAAE,OAAO,OAAO,SAMnE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deeplink.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/deeplink.utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"deeplink.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/deeplink.utils.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,cAAc,GAAI,SAAS;IAAE,GAAG,EAAE,MAAM,CAAA;CAAE,aAqB/C,CAAC;AAEF,OAAO,EAAE,cAAc,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"demo.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/demo.utils.ts"],"names":[],"mappings":"AAEA,KAAK,iBAAiB,GAClB,qBAAqB,GACrB,wBAAwB,GACxB,aAAa,GACb,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"demo.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/demo.utils.ts"],"names":[],"mappings":"AAEA,KAAK,iBAAiB,GAClB,qBAAqB,GACrB,wBAAwB,GACxB,aAAa,GACb,sBAAsB,CAAC;AAkD3B,QAAA,MAAM,aAAa,GAAI,aAAa,MAAM,YACA,CAAC;AAE3C,QAAA,MAAM,oBAAoB,GAAI,SAAS,EAAE,KAAK,EAC5C,UAAU,iBAAiB,EAC3B,OAAO,KAAK,cAuBb,CAAC;AAEF,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"http-client.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/http-client.ts"],"names":[],"mappings":"AAMA,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,iBAAkB,SAAQ,eAAe;gBACxC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,cAAe,SAAQ,eAAe;gBACrC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,aAAc,SAAQ,eAAe;gBACpC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,eAAgB,SAAQ,eAAe;gBACtC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,oBAAqB,SAAQ,eAAe;gBAC3C,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,mBAAoB,SAAQ,eAAe;gBAC1C,OAAO,CAAC,EAAE,MAAM;CAG7B;;
|
|
1
|
+
{"version":3,"file":"http-client.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/http-client.ts"],"names":[],"mappings":"AAMA,qBAAa,eAAgB,SAAQ,KAAK;gBAC5B,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,iBAAkB,SAAQ,eAAe;gBACxC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,cAAe,SAAQ,eAAe;gBACrC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,aAAc,SAAQ,eAAe;gBACpC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,eAAgB,SAAQ,eAAe;gBACtC,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,oBAAqB,SAAQ,eAAe;gBAC3C,OAAO,CAAC,EAAE,MAAM;CAG7B;AAED,qBAAa,mBAAoB,SAAQ,eAAe;gBAC1C,OAAO,CAAC,EAAE,MAAM;CAG7B;;UA6IY,SAAS,OAAO,MAAM,sBAAsB,SAAS;WASpD,SAAS,EAAE,KAAK,OACvB,MAAM,SACJ,KAAK,sBACQ,SAAS;UAKlB,SAAS,EAAE,KAAK,OACtB,MAAM,SACJ,GAAG,sBACU,SAAS;UAKlB,SAAS,OAAO,MAAM,sBAAsB,SAAS;kBASvC,MAAM,QAAQ,IAAI;;AAe7C,wBAA+C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mrz.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/mrz.utils.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"mrz.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/mrz.utils.ts"],"names":[],"mappings":";wCAK2C,MAAM,GAAG,IAAI;;AAgBxD,wBAEE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native-device-info.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/native-device-info.utils.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB;2CACgB,OAAO,CAAC,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"native-device-info.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/native-device-info.utils.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB;2CACgB,OAAO,CAAC,MAAM,CAAC;CAe3D,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
declare const speak: (text: string) => Promise<void>;
|
|
2
|
-
declare const speakWithDebounce: (text: string) => void;
|
|
1
|
+
declare const speak: (text: string, bypassInterval?: boolean) => Promise<void>;
|
|
2
|
+
declare const speakWithDebounce: (text: string, bypassInterval?: boolean) => void;
|
|
3
3
|
declare const stopSpeaking: () => Promise<void>;
|
|
4
|
+
declare const resetLastMessage: () => void;
|
|
4
5
|
declare const initializeTTS: () => void;
|
|
5
|
-
export { speak, speakWithDebounce, stopSpeaking, initializeTTS };
|
|
6
|
+
export { speak, speakWithDebounce, stopSpeaking, resetLastMessage, initializeTTS, };
|
|
6
7
|
//# sourceMappingURL=tts.utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tts.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/tts.utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tts.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/tts.utils.ts"],"names":[],"mappings":"AAqBA,QAAA,MAAM,KAAK,GAAU,MAAM,MAAM,EAAE,iBAAgB,OAAe,kBA8BjE,CAAC;AAEF,QAAA,MAAM,iBAAiB,kDAAwB,CAAC;AAEhD,QAAA,MAAM,YAAY,qBAGjB,CAAC;AAEF,QAAA,MAAM,gBAAgB,YAErB,CAAC;AAEF,QAAA,MAAM,aAAa,YASlB,CAAC;AAEF,OAAO,EACL,KAAK,EACL,iBAAiB,EACjB,YAAY,EACZ,gBAAgB,EAChB,aAAa,GACd,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AnalyticsService.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Services/AnalyticsService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,gCAAgC,CAAC;AAGxC,OAAO,EACL,sBAAsB,EAEvB,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"AnalyticsService.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Services/AnalyticsService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,gCAAgC,CAAC;AAGxC,OAAO,EACL,sBAAsB,EAEvB,MAAM,0BAA0B,CAAC;AAElC,OAAO,KAAK,EACV,eAAe,EAEf,sBAAsB,EAEtB,iBAAiB,EAClB,MAAM,0BAA0B,CAAC;AAElC,cAAM,gBAAiB,YAAW,iBAAiB;IACjD,OAAO,CAAC,MAAM,CAAgC;IAC9C,OAAO,CAAC,SAAS,CAAuB;IACxC,OAAO,CAAC,UAAU,CAAqC;IACvD,OAAO,CAAC,aAAa,CAAkB;IAGvC,OAAO,CAAC,KAAK,CAAwB;IACrC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAM;IACjC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAO;IACtC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAQ;IACvC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAgE;IAChG,OAAO,CAAC,UAAU,CAA+C;IACjE,OAAO,CAAC,UAAU,CAAS;IAC3B,OAAO,CAAC,oBAAoB,CAAuC;IAGnE,OAAO,CAAC,QAAQ,CAAC,eAAe,CAI9B;IAEF;;OAEG;IACH,cAAc,CAAC,aAAa,EAAE,OAAO,GAAG,IAAI;IAI5C;;;OAGG;IACG,UAAU,CAAC,MAAM,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAsCxD;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAS5B;;OAEG;YACW,kBAAkB;IAuBhC;;OAEG;YACW,YAAY;IAkB1B;;OAEG;IACG,UAAU,CACd,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,sBAAsB,EAChC,QAAQ,CAAC,EAAE,sBAAsB,GAChC,OAAO,CAAC,IAAI,CAAC;IAyDhB;;OAEG;IACH,OAAO,CAAC,eAAe;IAQvB;;OAEG;IACH,OAAO,CAAC,cAAc;IAOtB;;OAEG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IA2C5B;;OAEG;YACW,kBAAkB;IA4DhC;;OAEG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAkB5B;;OAEG;IACH,SAAS,IAAI,OAAO;IAIpB;;OAEG;YACW,iBAAiB;IAiC/B;;OAEG;IACI,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAMtC;;OAEG;IACH,OAAO,CAAC,gBAAgB;CAsFzB;AAGD,eAAO,MAAM,gBAAgB,kBAAyB,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { MRZFields } from './mrzFields';
|
|
2
2
|
import type { LivenessInstructionType } from './livenessIntructionType';
|
|
3
3
|
export interface IdentificationInfo {
|
|
4
4
|
sessionId: string;
|
|
@@ -22,7 +22,7 @@ export interface ScannedIdentityDocument {
|
|
|
22
22
|
faceImageMimeType?: string;
|
|
23
23
|
barcodeValue?: string;
|
|
24
24
|
mrzText?: string;
|
|
25
|
-
mrzFields?:
|
|
25
|
+
mrzFields?: MRZFields;
|
|
26
26
|
}
|
|
27
27
|
export interface LivenessDetection {
|
|
28
28
|
instructions: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identificationInfo.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Types/identificationInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"identificationInfo.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Types/identificationInfo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAExE,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,OAAO,EAAE;QACP,WAAW,EAAE,MAAM,EAAE,CAAC;QACtB,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,eAAe,CAAC,EAAE,uBAAuB,CAAC;IAC1C,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IACtC,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,uBAAuB;IACtC,YAAY,EAAE,IAAI,GAAG,UAAU,GAAG,SAAS,CAAC;IAC5C,UAAU,EAAE,SAAS,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;IAC9C,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AAED,MAAM,WAAW,iBAAiB;IAChC,YAAY,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACvD,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,YAAY;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,EACA,qBAAqB,GACrB,wBAAwB,GACxB,4BAA4B,GAC5B,gBAAgB,GAChB,WAAW,CAAC;IAChB,IAAI,CAAC,EAAE;QACL,SAAS,CAAC,EAAE;YACV,EAAE,EAAE;gBACF,EAAE,EAAE,MAAM,CAAC;gBACX,IAAI,EAAE,MAAM,CAAC;gBACb,GAAG,EAAE,MAAM,CAAC;aACb,CAAC;YACF,EAAE,EAAE;gBACF,EAAE,EAAE,MAAM,CAAC;gBACX,IAAI,EAAE,MAAM,CAAC;gBACb,GAAG,EAAE,MAAM,CAAC;aACb,CAAC;SACH,CAAC;QACF,oBAAoB,CAAC,EAAE,CAAC,GAAG,GAAG,GAAG,CAAC,EAAE,GAAG,IAAI,CAAC;QAC5C,gBAAgB,CAAC,EAAE,KAAK,EAAE,GAAG,IAAI,CAAC;QAClC,+BAA+B,CAAC,EAAE,uBAAuB,EAAE,GAAG,IAAI,CAAC;QACnE,mBAAmB,CAAC,EAAE,OAAO,CAAC;KAC/B,CAAC;IACF,QAAQ,EAAE,OAAO,CAAC;CACnB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MRZ Field Names - ICAO 9303 Standard Machine Readable Zone Fields
|
|
3
|
+
* Local type definitions to replace dependency on 'mrz' package
|
|
4
|
+
*/
|
|
5
|
+
export type MRZFieldName = 'documentCode' | 'issuingState' | 'documentNumber' | 'documentNumberCheckDigit' | 'nationality' | 'lastName' | 'firstName' | 'sex' | 'birthDate' | 'birthDateCheckDigit' | 'expirationDate' | 'expirationDateCheckDigit' | 'personalNumber' | 'personalNumberCheckDigit' | 'compositeCheckDigit' | 'optional1' | 'optional2';
|
|
6
|
+
/**
|
|
7
|
+
* MRZ Fields - Parsed data from Machine Readable Zone
|
|
8
|
+
* Compatible with native module output
|
|
9
|
+
*/
|
|
10
|
+
export type MRZFields = Partial<Record<MRZFieldName, string | null>>;
|
|
11
|
+
//# sourceMappingURL=mrzFields.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mrzFields.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Types/mrzFields.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,MAAM,YAAY,GACpB,cAAc,GACd,cAAc,GACd,gBAAgB,GAChB,0BAA0B,GAC1B,aAAa,GACb,UAAU,GACV,WAAW,GACX,KAAK,GACL,WAAW,GACX,qBAAqB,GACrB,gBAAgB,GAChB,0BAA0B,GAC1B,gBAAgB,GAChB,0BAA0B,GAC1B,qBAAqB,GACrB,WAAW,GACX,WAAW,CAAC;AAEhB;;;GAGG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC,CAAC,CAAC"}
|
|
@@ -39,11 +39,6 @@ declare const _default: {
|
|
|
39
39
|
'resultScreen.demoImageHologram': string;
|
|
40
40
|
'resultScreen.demoLivenessDetection': string;
|
|
41
41
|
'resultScreen.demoVideo': string;
|
|
42
|
-
'resultScreen.demoInstruction_smile': string;
|
|
43
|
-
'resultScreen.demoInstruction_look_straight_and_blink': string;
|
|
44
|
-
'resultScreen.demoInstruction_turn_head_left': string;
|
|
45
|
-
'resultScreen.demoInstruction_turn_head_right': string;
|
|
46
|
-
'resultScreen.demoInstruction_look_up': string;
|
|
47
42
|
'resultScreen.demoStartOver': string;
|
|
48
43
|
'livenessDetectionScreen.guideHeader': string;
|
|
49
44
|
'livenessDetectionScreen.guideText': string;
|
|
@@ -123,7 +118,11 @@ declare const _default: {
|
|
|
123
118
|
'identityDocumentCamera.wrongSideBack': string;
|
|
124
119
|
'identityDocumentCamera.idCardDetected': string;
|
|
125
120
|
'identityDocumentCamera.idCardFrontDetected': string;
|
|
121
|
+
'identityDocumentCamera.idCardBackDetected': string;
|
|
126
122
|
'identityDocumentCamera.passportDetected': string;
|
|
123
|
+
'identityDocumentCamera.alignIDFront': string;
|
|
124
|
+
'identityDocumentCamera.alignIDBack': string;
|
|
125
|
+
'identityDocumentCamera.alignPassport': string;
|
|
127
126
|
'identityDocumentCamera.moveCloser': string;
|
|
128
127
|
'identityDocumentCamera.moveFarther': string;
|
|
129
128
|
'identityDocumentCamera.documentTooSmall': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAuKE"}
|
|
@@ -39,11 +39,6 @@ declare const _default: {
|
|
|
39
39
|
'resultScreen.demoImageHologram': string;
|
|
40
40
|
'resultScreen.demoLivenessDetection': string;
|
|
41
41
|
'resultScreen.demoVideo': string;
|
|
42
|
-
'resultScreen.demoInstruction_smile': string;
|
|
43
|
-
'resultScreen.demoInstruction_look_straight_and_blink': string;
|
|
44
|
-
'resultScreen.demoInstruction_turn_head_left': string;
|
|
45
|
-
'resultScreen.demoInstruction_turn_head_right': string;
|
|
46
|
-
'resultScreen.demoInstruction_look_up': string;
|
|
47
42
|
'resultScreen.demoStartOver': string;
|
|
48
43
|
'livenessDetectionScreen.guideHeader': string;
|
|
49
44
|
'livenessDetectionScreen.guideText': string;
|
|
@@ -123,7 +118,11 @@ declare const _default: {
|
|
|
123
118
|
'identityDocumentCamera.wrongSideBack': string;
|
|
124
119
|
'identityDocumentCamera.idCardDetected': string;
|
|
125
120
|
'identityDocumentCamera.idCardFrontDetected': string;
|
|
121
|
+
'identityDocumentCamera.idCardBackDetected': string;
|
|
126
122
|
'identityDocumentCamera.passportDetected': string;
|
|
123
|
+
'identityDocumentCamera.alignIDFront': string;
|
|
124
|
+
'identityDocumentCamera.alignIDBack': string;
|
|
125
|
+
'identityDocumentCamera.alignPassport': string;
|
|
127
126
|
'identityDocumentCamera.moveCloser': string;
|
|
128
127
|
'identityDocumentCamera.moveFarther': string;
|
|
129
128
|
'identityDocumentCamera.documentTooSmall': string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tr.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/tr.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tr.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/tr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAyKE"}
|
|
@@ -14,6 +14,8 @@ interface TrustchexProps {
|
|
|
14
14
|
onCompleted?: () => void;
|
|
15
15
|
onError?: (error: string) => void;
|
|
16
16
|
enableAnalytics?: boolean;
|
|
17
|
+
debug?: boolean;
|
|
18
|
+
logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'silent';
|
|
17
19
|
}
|
|
18
20
|
declare const Trustchex: React.FC<TrustchexProps>;
|
|
19
21
|
export default Trustchex;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Trustchex.d.ts","sourceRoot":"","sources":["../../../src/Trustchex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAK5D,OAAO,gCAAgC,CAAC;
|
|
1
|
+
{"version":3,"file":"Trustchex.d.ts","sourceRoot":"","sources":["../../../src/Trustchex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAK5D,OAAO,gCAAgC,CAAC;AAwBxC,UAAU,iBAAiB;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,UAAU,cAAc;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B,MAAM,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IACzB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;CACrE;AASD,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAqLvC,CAAC;AAWF,eAAe,SAAS,CAAC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import Trustchex from './Trustchex';
|
|
2
2
|
export { handleDeepLink } from './Shared/Libs/deeplink.utils';
|
|
3
3
|
export { analyticsService } from './Shared/Services/AnalyticsService';
|
|
4
|
+
export { LogLevel, setDebugMode, setLogLevel, isDebugEnabled, getLogLevel, traceLog, debugLog, infoLog, debugWarn, debugError, logError, logWarn, } from './Shared/Libs/debug.utils';
|
|
4
5
|
export { trackScreenView, trackScreenExit, trackButtonClick, trackError, trackErrorWithDetails, trackApiCall, trackVerificationStart, trackVerificationComplete, trackConsentGiven, trackSessionStart, trackSessionEnd, trackNFCScanStart, trackNFCScanComplete, trackNFCScanFailed, trackFunnelStep, trackStepAbandoned, trackStepSkipped, useScreenTracking, } from './Shared/Libs/analytics.utils';
|
|
5
6
|
export { AnalyticsEventCategory, AnalyticsEventName, ErrorCategory, } from './Shared/Types/analytics.types';
|
|
6
7
|
export type { AnalyticsConfig, AnalyticsEvent, ErrorSeverity, ErrorContext, ErrorEventMetadata, } from './Shared/Types/analytics.types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EACL,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,UAAU,EACV,qBAAqB,EACrB,YAAY,EACZ,sBAAsB,EACtB,yBAAyB,EACzB,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,EACf,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,eAAe,EACf,kBAAkB,EAClB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,sBAAsB,EACtB,kBAAkB,EAClB,aAAa,GACd,MAAM,gCAAgC,CAAC;AACxC,YAAY,EACV,eAAe,EACf,cAAc,EACd,aAAa,EACb,YAAY,EACZ,kBAAkB,GACnB,MAAM,gCAAgC,CAAC;AAExC,eAAe,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,aAAa,CAAC;AAEpC,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AACtE,OAAO,EACL,QAAQ,EACR,YAAY,EACZ,WAAW,EACX,cAAc,EACd,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,SAAS,EACT,UAAU,EACV,QAAQ,EACR,OAAO,GACR,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,UAAU,EACV,qBAAqB,EACrB,YAAY,EACZ,sBAAsB,EACtB,yBAAyB,EACzB,iBAAiB,EACjB,iBAAiB,EACjB,eAAe,EACf,iBAAiB,EACjB,oBAAoB,EACpB,kBAAkB,EAClB,eAAe,EACf,kBAAkB,EAClB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,sBAAsB,EACtB,kBAAkB,EAClB,aAAa,GACd,MAAM,gCAAgC,CAAC;AACxC,YAAY,EACV,eAAe,EACf,cAAc,EACd,aAAa,EACb,YAAY,EACZ,kBAAkB,GACnB,MAAM,gCAAgC,CAAC;AAExC,eAAe,SAAS,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.
|
|
1
|
+
export declare const SDK_VERSION = "1.357.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|