@trustchex/react-native-sdk 1.493.1 → 1.494.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/lib/module/Shared/Components/DiagnosticReportButton.js +118 -29
- package/lib/module/Shared/Components/NavigationManager.js +12 -0
- package/lib/module/Shared/Libs/diagnosticPow.js +56 -3
- package/lib/module/Shared/Libs/diagnosticReport.js +8 -1
- package/lib/module/Shared/Libs/diagnostics.js +61 -2
- package/lib/module/Shared/Libs/sendDiagnosticReport.js +20 -3
- package/lib/module/Translation/Resources/en.js +5 -2
- package/lib/module/Translation/Resources/tr.js +5 -2
- package/lib/module/version.js +1 -1
- package/lib/typescript/src/Shared/Components/DiagnosticReportButton.d.ts +5 -4
- package/lib/typescript/src/Shared/Components/DiagnosticReportButton.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/NavigationManager.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/diagnosticPow.d.ts +26 -3
- package/lib/typescript/src/Shared/Libs/diagnosticPow.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/diagnosticReport.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/diagnostics.d.ts +39 -1
- package/lib/typescript/src/Shared/Libs/diagnostics.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/sendDiagnosticReport.d.ts +9 -0
- package/lib/typescript/src/Shared/Libs/sendDiagnosticReport.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/en.d.ts +3 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/tr.d.ts +3 -0
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -1
- package/lib/typescript/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/Shared/Components/DiagnosticReportButton.tsx +128 -34
- package/src/Shared/Components/NavigationManager.tsx +12 -0
- package/src/Shared/Libs/diagnosticPow.ts +71 -3
- package/src/Shared/Libs/diagnosticReport.ts +21 -3
- package/src/Shared/Libs/diagnostics.ts +77 -2
- package/src/Shared/Libs/sendDiagnosticReport.ts +37 -3
- package/src/Translation/Resources/en.ts +6 -2
- package/src/Translation/Resources/tr.ts +6 -2
- package/src/version.ts +1 -1
|
@@ -59,8 +59,12 @@ export default {
|
|
|
59
59
|
'This sends your scan data, document images and technical details to support so they can help resolve a scanning issue.',
|
|
60
60
|
'diagnosticReport.continue': 'Continue',
|
|
61
61
|
'diagnosticReport.cancel': 'Cancel',
|
|
62
|
-
'diagnosticReport.
|
|
63
|
-
'diagnosticReport.
|
|
62
|
+
'diagnosticReport.sending': 'Sending diagnostic report',
|
|
63
|
+
'diagnosticReport.sendingPreparing': 'Preparing…',
|
|
64
|
+
'diagnosticReport.sendingProgress': 'Preparing… {{pct}}%',
|
|
65
|
+
'diagnosticReport.sentTitle': 'Thank you!',
|
|
66
|
+
'diagnosticReport.sentBody':
|
|
67
|
+
'Thanks for sending your diagnostic data — it helps us improve scanning. Our team will look into the issue.',
|
|
64
68
|
'diagnosticReport.failedTitle': "Couldn't send the report",
|
|
65
69
|
'diagnosticReport.failedBody': 'Please try again later.',
|
|
66
70
|
'livenessDetectionScreen.guideHeader': 'Face Verification',
|
|
@@ -59,8 +59,12 @@ export default {
|
|
|
59
59
|
'Bu işlem; tarama verilerinizi, belge görüntülerinizi ve teknik ayrıntıları destek ekibine gönderir; böylece tarama sorununu çözebilirler.',
|
|
60
60
|
'diagnosticReport.continue': 'Devam et',
|
|
61
61
|
'diagnosticReport.cancel': 'İptal',
|
|
62
|
-
'diagnosticReport.
|
|
63
|
-
'diagnosticReport.
|
|
62
|
+
'diagnosticReport.sending': 'Tanılama raporu gönderiliyor',
|
|
63
|
+
'diagnosticReport.sendingPreparing': 'Hazırlanıyor…',
|
|
64
|
+
'diagnosticReport.sendingProgress': 'Hazırlanıyor… %{{pct}}',
|
|
65
|
+
'diagnosticReport.sentTitle': 'Teşekkürler!',
|
|
66
|
+
'diagnosticReport.sentBody':
|
|
67
|
+
'Tanılama verilerinizi gönderdiğiniz için teşekkürler — taramayı iyileştirmemize yardımcı oluyor. Ekibimiz sorunu inceleyecek.',
|
|
64
68
|
'diagnosticReport.failedTitle': 'Rapor gönderilemedi',
|
|
65
69
|
'diagnosticReport.failedBody': 'Lütfen daha sonra tekrar deneyin.',
|
|
66
70
|
'livenessDetectionScreen.guideHeader': 'Yüz Doğrulaması',
|
package/src/version.ts
CHANGED