diff --git a/BlinkID.xcframework/Info.plist b/BlinkID.xcframework/Info.plist
index 80ad117b4..10ec87311 100644
--- a/BlinkID.xcframework/Info.plist
+++ b/BlinkID.xcframework/Info.plist
@@ -39,9 +39,9 @@
CFBundlePackageType
XFWK
CFBundleShortVersionString
- 6.7.1
+ 6.8.0
CFBundleVersion
- 6.7.1
+ 6.8.0
XCFrameworkFormatVersion
1.0
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/BlinkID b/BlinkID.xcframework/ios-arm64/BlinkID.framework/BlinkID
index 952f7c678..4be2ac0b8 100755
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/BlinkID and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/BlinkID differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/BlinkID-Swift.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/BlinkID-Swift.h
index b900e7d91..f659ec63c 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/BlinkID-Swift.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/BlinkID-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef BLINKID_SWIFT_H
#define BLINKID_SWIFT_H
#pragma clang diagnostic push
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
index 30aaf9c97..9bccecad0 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
@@ -25,6 +25,7 @@
#import "MBEncodeSignatureImage.h"
#import "MBCameraFrames.h"
#import "MBClassAnonymization.h"
+#import "MBStrictnessLevel.h"
@protocol MBBlinkIdMultiSideRecognizerDelegate;
@@ -49,11 +50,33 @@ MB_INIT
@property (nonatomic, nullable, weak) id delegate;
/**
- * Defines whether blured frames filtering is allowed
+ * Skip processing of the blurred frames.
*
* Default: YES
*/
-@property (nonatomic, assign) BOOL allowBlurFilter;
+@property (nonatomic, assign) BOOL enableBlurFilter;
+
+
+/**
+ * Strictness level for blur detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel blurStrictnessLevel;
+
+/**
+ * Skip processing of the glared frames.
+ *
+ * Default: YES
+ */
+@property (nonatomic, assign) BOOL enableGlareFilter;
+
+/**
+ * Strictness level for glare detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel glareStrictnessLevel;
/**
* Defines whether returning of unparsed MRZ (Machine Readable Zone) results is allowed
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
index 2cd37196a..3923a92eb 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
@@ -183,6 +183,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
index 5777bf193..19cc4042d 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
@@ -49,6 +49,12 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, strong) NSString *firstSideInstructionsText;
+/**
+* Message that is shown while scanning back side of the document.
+* Default: Scan the back side of a document
+*/
+@property(nonatomic, strong) NSString *backSideInstructionsText;
+
/**
* Message that is shown after fornt side of the USDL document is scanned.
* Default: Scan the barcode
@@ -167,6 +173,18 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, assign) BOOL showIntroductionDialog;
+/**
+* Instructions for the user to avoid glare.
+* Default: Tilt or move document to remove reflection
+*/
+@property(nonatomic, strong) NSString *glareDetectedMessage;
+
+/**
+* Instructions for the user to avoid blur.
+* Default: Keep document and phone still
+*/
+@property(nonatomic, strong) NSString *blurDetectedMessage;
+
/**
* Designated initializer. Initializes the object with default settings.
*
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
index da9deda1b..64b228db1 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
@@ -23,6 +23,7 @@
#import "MBEncodeSignatureImage.h"
#import "MBCameraFrames.h"
#import "MBClassAnonymization.h"
+#import "MBStrictnessLevel.h"
@protocol MBBlinkIdSingleSideRecognizerDelegate;
@@ -47,11 +48,33 @@ MB_INIT
@property (nonatomic, nullable, weak) id delegate;
/**
- * Defines whether blured frames filtering is allowed
+ * Skip processing of the blurred frames.
*
* Default: YES
*/
-@property (nonatomic, assign) BOOL allowBlurFilter;
+@property (nonatomic, assign) BOOL enableBlurFilter;
+
+
+/**
+ * Strictness level for blur detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel blurStrictnessLevel;
+
+/**
+ * Skip processing of the glared frames.
+ *
+ * Default: YES
+ */
+@property (nonatomic, assign) BOOL enableGlareFilter;
+
+/**
+ * Strictness level for glare detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel glareStrictnessLevel;
/**
* Defines whether returning of unparsed MRZ (Machine Readable Zone) results is allowed
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
index 95e1f155d..d455a981e 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
@@ -180,6 +180,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBFieldType.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBFieldType.h
index d13155db4..100bb6a37 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBFieldType.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBFieldType.h
@@ -46,6 +46,7 @@ typedef NS_ENUM(NSInteger, MBFieldType) {
MBFieldTypeSex,
MBFieldTypeVehicleClass,
MBFieldTypeBloodType,
+ MBFieldTypeDocumentSubtype,
MBFieldTypeSponsor
};
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBImageAnalysisResult.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBImageAnalysisResult.h
index 0d4e746b2..f16b92878 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBImageAnalysisResult.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBImageAnalysisResult.h
@@ -32,9 +32,14 @@ MB_CLASS_AVAILABLE_IOS(13.0) MB_FINAL
MB_INIT_UNAVAILABLE
/**
- * Whether the image is blurred.
+ * Whether blur is detected on the image.
*/
-@property (nonatomic, readonly, assign) BOOL blurred;
+@property (nonatomic, readonly, assign) BOOL blurDetected;
+
+/**
+ * Whether glare is detected on the image.
+ */
+@property (nonatomic, readonly, assign) BOOL glareDetected;
/**
* The color status determined from scanned image.
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBStrictnessLevel.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBStrictnessLevel.h
new file mode 100644
index 000000000..a94d0cbc1
--- /dev/null
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBStrictnessLevel.h
@@ -0,0 +1,26 @@
+// Created by Toni Krešo on 23.05.2024.
+// Copyright (c) 2024 Microblink Ltd. All rights reserved.
+
+// ANY UNAUTHORIZED USE OR SALE, DUPLICATION, OR DISTRIBUTION
+// OF THIS PROGRAM OR ANY OF ITS PARTS, IN SOURCE OR BINARY FORMS,
+// WITH OR WITHOUT MODIFICATION, WITH THE PURPOSE OF ACQUIRING
+// UNLAWFUL MATERIAL OR ANY OTHER BENEFIT IS PROHIBITED!
+// THIS PROGRAM IS PROTECTED BY COPYRIGHT LAWS AND YOU MAY NOT
+// REVERSE ENGINEER, DECOMPILE, OR DISASSEMBLE IT.
+
+#ifndef MBStrictnessLevel_h
+#define MBStrictnessLevel_h
+
+/**
+ * MBStrictnessLevel is used to strictness level of filtering performed on images.
+ */
+typedef NS_ENUM(NSInteger, MBStrictnessLevel) {
+
+ MBStrictnessLevelStrict = 0,
+ MBStrictnessLevelNormal,
+ MBStrictnessLevelRelaxed
+
+};
+
+
+#endif /* MBStrictnessLevel_h */
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBVizResult.h b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBVizResult.h
index 5b3e531c5..f933dbeb7 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBVizResult.h
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Headers/MBVizResult.h
@@ -162,6 +162,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Info.plist b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Info.plist
index 8cd4ae4fd..2457218e6 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Info.plist and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Info.plist differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
index e35f9e1ef..03ee6640f 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
new file mode 100644
index 000000000..7464adf41
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
index d49e940f2..c73399bfe 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
index 448dbf12c..396b2eae6 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
index 01e2676f3..67ed1896d 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
deleted file mode 100644
index 5daee4bcd..000000000
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
new file mode 100644
index 000000000..779692025
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
index ddc53586a..fb5c80347 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
new file mode 100644
index 000000000..5a1f6d3e9
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
deleted file mode 100644
index 3f3522038..000000000
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
deleted file mode 100644
index 716dccf43..000000000
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
index d08e817ce..00c03ae28 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
index ab5ed577e..e92961198 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
index 87b310c33..2a09681f3 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
index a6e4529c8..a8d145ca0 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
new file mode 100644
index 000000000..5408d396d
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
index a86c352cb..d03023831 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
index 90ee07368..d7ecd824f 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.private.swiftinterface b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.private.swiftinterface
index 089f3d745..3e35b1ec8 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.private.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc
index 7553968da..45ba930f2 100644
Binary files a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc and b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface
index 089f3d745..3e35b1ec8 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/_CodeSignature/CodeResources b/BlinkID.xcframework/ios-arm64/BlinkID.framework/_CodeSignature/CodeResources
index 8adba5f9c..3f844c93a 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/_CodeSignature/CodeResources
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/_CodeSignature/CodeResources
@@ -18,7 +18,7 @@
Headers/BlinkID-Swift.h
- aDaMB/Lr5viIQo1raYMITY+Cbfc=
+ gjg4d/NuK0rDvShqX5q/Ah5vmLQ=
Headers/BlinkID.h
@@ -90,15 +90,15 @@
Headers/MBBlinkIdMultiSideRecognizer.h
- wsAfuotkm94qrS5PUZIaPl7OskA=
+ AgtWnmmxHhmxw2LhZW0sUWCP/rc=
Headers/MBBlinkIdMultiSideRecognizerResult.h
- xNubx/IPmJK8DdTa3nHIJDpEcuU=
+ eTtBRfg+5bePAZo/hO8XAwZBEUI=
Headers/MBBlinkIdOverlaySettings.h
- jKmAJZ7/IOXDH1A2p6RSIaPNSgM=
+ s4J4XHDz4v3or9K6jT3B+7zmpg0=
Headers/MBBlinkIdOverlayTheme.h
@@ -114,11 +114,11 @@
Headers/MBBlinkIdSingleSideRecognizer.h
- K4myI+Z7GzD8C8yFetzOUZjpD1g=
+ cBAwmYg/Szb1HbS9CAPkVdSEdxE=
Headers/MBBlinkIdSingleSideRecognizerResult.h
- bIqjaUxxNP28AwpWl53YJSgl2FE=
+ wdY57jCbR1x74z7cehKi9GRmtDA=
Headers/MBCameraFrames.h
@@ -342,7 +342,7 @@
Headers/MBFieldType.h
- Whfv8BNEYT+Z2lPnuO/m8UMeH8g=
+ jo5bkt1S+whetk47vx5kKpPP26U=
Headers/MBFirstSideFinishedRecognizerRunnerDelegate.h
@@ -422,7 +422,7 @@
Headers/MBImageAnalysisResult.h
- eueQ1aKywIaJg8PUmhiJxICLhn4=
+ LI2SXf6VNla5HA56Puqcj1yPIzU=
Headers/MBImageExtensionFactors.h
@@ -672,6 +672,10 @@
i9unxHnxe7ptk+I+/AI9zyDJ+nA=
+ Headers/MBStrictnessLevel.h
+
+ LziAgcT5WgTH2a26eryOdNMqezM=
+
Headers/MBStringProcessingRecognizerRunnerDelegate.h
c2v+SqYtbVxHFjshOAc4iUl3NX8=
@@ -750,67 +754,71 @@
Headers/MBVizResult.h
- Im4D2bWrUCI+Q4ZPIuEi/u2P6os=
+ nbXUwfx4fCAsN+xQKpGPJ0/8ggA=
Info.plist
- Syc/yfL7MUqp3mS13C8s5az4QKc=
+ zcnwmw+RPK0J2XkVuHXESAmywX0=
Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
- I1zNOhX5hF6PXQJa1Inl6EKeE1o=
+ 4cEwL1KYZpNfTon2k4+FlKtKfDU=
+
+ Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
+
+ RWZZ2rW0jzIQuO2WBKaYHpPsnl8=
Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
- UzxiG4vDECqP80Uh+C8vkh36a24=
+ wlLqADoHQ939ppp2tIeKhQSt0Zk=
Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
- mkvYFzl9EyVi0ScAYdXmxNB53Cg=
+ 7S5tn8ytff7jjys1qaBkpkQ1rWg=
Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
- oxGZqEfsBmpGYrnUqSFJpisoPmA=
+ F6NcNCyQzSUgQiOiq4xomDxj/K4=
- Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
+ Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
- ZzrMpfK7hF4hB4aD7/ulSHJ2bJQ=
+ heGt6f/lj0ySiit+XFoYZtsTgkE=
Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
- xVn4dumxtbimeOyrRtPUvp8B7Xw=
+ 6uFQGLsR0IppbOzqTT4mbjARb98=
- Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
+ Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
- piEyxED11GxLbYB47Rt7SHpkRM4=
-
- Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
-
- A9uVj9Vi2XfYFyuQYvrxN0UzXgs=
+ HdFS4M2QyWK3B8Y+O1tKjL/OrWQ=
Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
- VpJeNDgTCnILtspVl3a3LwETljs=
+ nyDcQAWf1N1xV6BMthu2lj545Lw=
Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
- uZjGrAqEmVZf24bMui92mMolmiQ=
+ Z1xY02M+NmbRbC+LC8kD6vNw8mY=
Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
- LdUy2Bm968bstr/qMgMvJuIZW+c=
+ FE0yeZo1sHKyXhbGw16zDe70lH4=
Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
- YRn6H+yk2OBfN6oZ447VLjr5MaA=
+ 4eQOlcLfCuyjwklX/wwnuUuamFM=
+
+ Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
+
+ n0BEVyCfl2Sptw9OaM4/wi/JVuc=
Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
- WDfKk6EB3JCsX6kJ4GoRNY2qYKs=
+ +4qW1foIBQD20tIG93+BhVT1iGo=
Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
- pAp605ocsL9xhPk98ITejzeqpK8=
+ UeXociVAPr6EcMkx8lV+/wRezUw=
Modules/BlinkID.swiftmodule/arm64-apple-ios.abi.json
@@ -818,19 +826,19 @@
Modules/BlinkID.swiftmodule/arm64-apple-ios.private.swiftinterface
- e8E8H/ZGVVhlG1KMP8OTp/Hyigg=
+ RhKXXw4UZIeNuQ4a4a/OfDMH3Hc=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc
- /jl8I+Kvsl9PtMb0n8XHYyJPfgQ=
+ Lea+ZFr9ajvStpj1W2Bbg+LbW/Y=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface
- e8E8H/ZGVVhlG1KMP8OTp/Hyigg=
+ RhKXXw4UZIeNuQ4a4a/OfDMH3Hc=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftmodule
- ZivcbPtiff5Ox/z7sk37Q47tPxE=
+ AxvQO7UYi9SrVaE2lUcKvSh8BUw=
Modules/module.modulemap
@@ -1102,7 +1110,7 @@
ar-AE.strings
- pQziLN8jRIR9Tix1oHA2+Nsurpk=
+ E49WcsJnnODXpLr/BfR/j4dgoBo=
arrow.png
@@ -1262,7 +1270,7 @@
cs.strings
- iP9uiRQj5L83G7If2Kfqz180LQ0=
+ K4+Wu4mTdHioZdUMQ1TkD4mHgQU=
ctl-error.png
@@ -1314,7 +1322,7 @@
de.strings
- HLtGnQLN6dwfLYlv4ArDRCwyYtk=
+ /7wlpR5KeA5efr2etFDS8N/b40w=
diners.png
@@ -1354,11 +1362,11 @@
en.strings
- Sueg2Po7ixR2VJ+29ERXCHzTIeg=
+ BzcS8phfOkEbuw3O9GuL5PGR5M0=
es.strings
- MOZnRkSiVUwZwYWWtMBhrLwYHHA=
+ B8kmtbInS7Mpug6gqsK0rAldzOw=
face_detector_model.zzip
@@ -1366,11 +1374,11 @@
fil.strings
- as44RkKWPSXB/OfIVtYG6V35IeU=
+ SEkWoNfXY9ImQcYlelB/PEhVBYM=
fr.strings
- tq30jCUNgvn8T5lwE4xJ0L3YUys=
+ P9FoloAMzgYOTq9XqrfNTXeIl30=
harsh-light-instruction-dark.png
@@ -1398,15 +1406,15 @@
he.strings
- I7hA5ymVxCEckDxFp45C/YHw/Lo=
+ UIcLQSu6/jirgL3td09ESySa/hM=
hr.strings
- S9gkCugBSfh2+H9WcNPGyRg98SE=
+ QQ4uAD7myNhOorakPEpJpzH85O0=
hu.strings
- 4pU6PcJR/WDgGCR8Wm1LmIs8Wdo=
+ uVzLaHWZ2NK54+0ZKIX+xF6YTU0=
icBackSide.png
@@ -1494,7 +1502,7 @@
id.strings
- zBkXMnDAQFQ9YOmQPVP3Yo87Bjo=
+ 61bqVBbUI6VO/CrB+gvfJu+w10M=
id_back_wide.png
@@ -1522,7 +1530,7 @@
it.strings
- 1HfC7xHgQgnt12/GHbsG9mv1b0k=
+ vkFNBx92U+zI7g6GvHseutdkTdk=
jcb.png
@@ -1590,7 +1598,7 @@
ms.strings
- vScNVF+GJGQGJNYQxa4tZB0okZ8=
+ WaqFlZDs3LuVvUtra3lwBUppJfY=
need-help-tooltip-dark.png
@@ -1618,15 +1626,15 @@
nl.strings
- zF7dVK3xU5gNTf3lwmpE+rjzJp0=
+ JcS/H7BSdWqNU9gJYxo1DSuLlfk=
pt.strings
- SSZW/n+M8WbARJavTQLdlmU/hWo=
+ 6CiwKMjaIWqQoNVa4t5CjBGxdk4=
ro.strings
- gxiYbwA5aU+xmBzBRt3RODx6yhw=
+ 6mk3M0qI4YpV+IN6narNwdCAC2A=
scan_line_white.png
@@ -1642,15 +1650,15 @@
sk.strings
- renSqPp6jrGx0G1EygycB5A0BHY=
+ wTtyo/U/sS74lpsBKQ52B+zepM0=
sl.strings
- YVJWHjXN2eVpanfHOQB8w1SNyH4=
+ QmL3e0AT4ZB1XMxGxOZGzz7XWjE=
th.strings
- 7BS5gK95VZ+1Dz1fJOfT831nRUE=
+ 6Lkge4D/g20eVGYhjJkROAX3CoE=
torchoff.png
@@ -1698,7 +1706,7 @@
vi.strings
- WBsC6VGVWS0wb56UQwZ2Id3SNko=
+ ZBIoLRS2WL19D5P9Q4GzjCPzCSw=
visa.png
@@ -1714,11 +1722,11 @@
zh-Hans.strings
- y005wuEVQ8WKRcFvGxgePBSIAgw=
+ REPSbaOCYx6f48+2HVfucnJe7b4=
zh-Hant.strings
- LaEsWbG2aJhbotMb+jO47FlzKJU=
+ mLgkBoUgS/nyRXjobfVQrTOzfDo=
files2
@@ -1748,7 +1756,7 @@
hash2
- 5DV/szdBC/j9KrW/YwhuzBZXIx9AVnxCBXuzZJmJg9o=
+ 7O2C7Bn5KvnCftaukUFjhMOt+XQnoGEIEpogOu9y+rc=
Headers/BlinkID.h
@@ -1874,21 +1882,21 @@
hash2
- WlPFHsRasZDxDWZ1s8vM2bD/YMuKNmlwAOgcBZJAv3Q=
+ +SLpfJIas01ce09shqlgd4XNBC1f8tIscXrev6WKrMA=
Headers/MBBlinkIdMultiSideRecognizerResult.h
hash2
- /kXoH/NEXgdsUKAUXaZpgIRTmJLzamqK6aqh+lv4jJU=
+ OEWZhK7qNrzzmrgNPRPbMdLqF+ivax/YoRoXyIBO6Xo=
Headers/MBBlinkIdOverlaySettings.h
hash2
- Pi6wGvD4++Lg0dWGpvej+n1dBWxrwKCuPJEXCENLJHM=
+ pgaYrMiOV50BgdPunpr0QakGfzc8npESCyA2B/0gDrw=
Headers/MBBlinkIdOverlayTheme.h
@@ -1916,14 +1924,14 @@
hash2
- +h9jFiYbSrzrRi9IY8qp1ml4L36DdqFMtR9zVI6xPLA=
+ wuF1k9LixTtlPIKmmeGT5bxq+VhKkHnPf+IyLGiAj/E=
Headers/MBBlinkIdSingleSideRecognizerResult.h
hash2
- Q8F464KGGgCX6GrQ19NeaXB9BfGd8rpucQURKtq2J5A=
+ akMFGPmLgjKBZPMYfSYb669F6egXWAHebo3zIOg3r24=
Headers/MBCameraFrames.h
@@ -2315,7 +2323,7 @@
hash2
- jlkPmUudok+vuD5ZlyBziowANo/K6C+Jg0+0dpROdFc=
+ Ss668qwo8sqIIsDUJgF9ArcbqWEBjjndTpEqPK4XJbE=
Headers/MBFirstSideFinishedRecognizerRunnerDelegate.h
@@ -2455,7 +2463,7 @@
hash2
- 2QHuZ970PH+gdITyHQNbLsL06waHtMOpX+Q1DZ6j97k=
+ ch2ThSCJkwn4CDLJjWZ9RItt0QTlbnztz1kWB+fZ8o8=
Headers/MBImageExtensionFactors.h
@@ -2892,6 +2900,13 @@
27JPw2T6BHGPfOK1rhOYuLM2o5DS7i70NsJ9HI7Y+yY=
+ Headers/MBStrictnessLevel.h
+
+ hash2
+
+ XVOlwvbed+TvSW0BrTrs4UErqJZ8Zdie2gUyLgj4chA=
+
+
Headers/MBStringProcessingRecognizerRunnerDelegate.h
hash2
@@ -3029,105 +3044,112 @@
hash2
- NIrk6cQQwUuSlDJ8NrFXJWBFm3qQAFwHnwJyMrSpfJI=
+ 1rZ8NsOib3zlW32j+so4LNnl1m3DXBcJXXcmTpX5spc=
Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
hash2
- AZlJ3TYEZIps7H0y5u61z9EjyGTzU8ONMPIE0BGCiOM=
+ klnnYuLyG2OvpWtQy61A/nfsmJ0YtEW8oYkJBFVYJfA=
- Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
+ Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
hash2
- OVGyL/zvHRpfS19OVrzbsB4P/Krgy5wnuW3FiEPD9jo=
+ J9cJq8UViEzHE5x7vu/JCHN/DjHVB0oRctGgDNn8Gts=
- Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
+ Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
hash2
- jq1+j9s0lMS0kH7AZIk5+uSz/xsKFj1ti7ap7EH43Kc=
+ 6aYDJUDK6ypw/1jGsNQnJ29EmvRFYdOarJrHdiE/BCs=
- Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
+ Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
hash2
- ZSY6Z+8mPZL5c2DBArmRrz8e/wBOLvi6PmW5DEv3e+c=
+ AeOQ622QYCGJI60JyLNmD4IEeiQPRmzeMPe8kDJP3G4=
- Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
+ Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
hash2
- g9d/LZcb7hSf2ldv+KZuX3lz4EIk4XFyPPvB6ApkW7Y=
+ L00GCNykKUx+1FfJcBoDUPcZ8ZCRxn8170H0FksaHiw=
- Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
+ Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
hash2
- sREG9iA8X6/EpNs7BgUYazjzPyD5jCDqo5AVmf25uLY=
+ ye1TqM6hQclmEuydeNp9HI1T4rGl2ky0u7v0alkSO0M=
- Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
+ Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
hash2
- 9v1b/2lEVcLxmr4tp52KLE55YRFIBJ3Td6ymwmikpnc=
+ rjUVHAcxEq69OLsZ8tyvL6mbzTiSn73WpphJZWwJjR4=
- Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
+ Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
hash2
- RpoToSxWnyI/llQ4haqmPnlSgHots40Or8JOtaOVcz8=
+ Dy4nXyAQZ6IF/l4DDFxdNj4klGA4Bx+OVR4dFOSTqG4=
Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
hash2
- PlYeQkzOXR05Wt/0rjlY/SIBIQVPkUh4SmrJYehLkDk=
+ Twe1gHWw9RoMneOZLP0oh4OFwvnVb+clUgcqgE6l2WI=
Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
hash2
- iSLXjJ0oF0O1aF7wKxLtDgP3kL1CfXt5ZWtBz1EuMOU=
+ NlsGQituNzwQseEehriyXqc5qr4xgXhvikCZYZfIdeo=
Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
hash2
- P6Irt6XsdU/4meFCxg5eIXl+3S6vvV/lh2N7h1xYDjY=
+ 8HwpIBwxm9hUK46ctwEVnPwOSvxxc8kH7YtVy1wmaMo=
Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
hash2
- TDl88cQHhsUlzpKV6Ek+hOYmT8C/pNU2H6FEypDENUU=
+ 65HN/B5590euz+rbbJbs6zA8uGmhH8qYPJUDecaOJz0=
+
+
+ Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
+
+ hash2
+
+ vxHe4qm2FO23kS2yglMZ1NAf5yagujjUt1ZKNHFCgCg=
Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
hash2
- LsNuvm8YymXnEnWBgBCp+/pPMjfUbgAC85Bj2qK+zDo=
+ rw2jjG39MMq/nEKDivC71ZUhRV8vL011EqdnwY0tVrk=
Modules/BlinkID.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
hash2
- UMfZyIHVtYwqibgYskZlJuDOrhyh8py5RAxGUxlDF2U=
+ /Ikpw+oGSYls0zdRSdfuhnGWzh7h2iz135k+Q5jDzHw=
Modules/BlinkID.swiftmodule/arm64-apple-ios.abi.json
@@ -3141,28 +3163,28 @@
hash2
- 3pCOhbqRL7UCYjkT8Uzmu8q3T4Qx1M1VXvGayzKdByA=
+ bz2HUZHy2XSFJJRnxiOiwbuQiEO5wHfSbqvLOEce0RY=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftdoc
hash2
- p9FoLUMY0X2B3EbrSGD6b5lj52S3s8e881YmEpaV7Zs=
+ MJcfYXx6y5RaFqjQvIuiiw+ZkNutcKLgCFwuyAd9IV8=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftinterface
hash2
- 3pCOhbqRL7UCYjkT8Uzmu8q3T4Qx1M1VXvGayzKdByA=
+ bz2HUZHy2XSFJJRnxiOiwbuQiEO5wHfSbqvLOEce0RY=
Modules/BlinkID.swiftmodule/arm64-apple-ios.swiftmodule
hash2
- ihulvpPRNtKrQdEX6iLFICBG3LObxP1nM4eH9Mu9Ek4=
+ uM5zsQBaqPV4QeJBdAGEk8v4HyE/J9o9xrVk7S03ypo=
Modules/module.modulemap
@@ -3638,7 +3660,7 @@
hash2
- mwFJ7/7du1Z5pW3d8cG7xvrK44i3GHFnH4FYLbzhMfU=
+ r2yw/BwXDrttpFSuPkFGksm6p0sVZuA5qOka8D4Va9w=
arrow.png
@@ -3918,7 +3940,7 @@
hash2
- KU/xzx79BtF+JcCDKO5vtZ6Kb4/s/FHMYa/fFxq2kUk=
+ h9CeYhHvG/J+GT/Uwp1LgjueDOVaJd/c00p+HWTX+jU=
ctl-error.png
@@ -4009,7 +4031,7 @@
hash2
- 53TQMYEfeDHeI7G4piphzKqR8qIxj9GnCI43Y/QBZr0=
+ 5abBiK+K4HVUdlDdvI2zmppcMiEEKSgTTKQpROxnaoY=
diners.png
@@ -4079,14 +4101,14 @@
hash2
- niAIa5QtVq1xRjOsm0ioHWPjSkpUmsQyPTnZhkeOVws=
+ bqVe2sKe/KuvYU1UkG6dNF2gvRhPXianNV1sXHWNWxM=
es.strings
hash2
- lqv+w6TCc5aGWpPYj1jOWAJXHprjEJD3/Dqaz+SQDqI=
+ PUSNYi1y/DG4yq9zb7WmaNOVpRUf0oCNXEICJCOY4jg=
face_detector_model.zzip
@@ -4100,14 +4122,14 @@
hash2
- jlOs2qz5LpfiU2Bp23UC8itQZe0RRpGbEIqsqb4JXi8=
+ SojH8h2Od/pbqODwpKYxSp58vRHpyhnt0Gy4Ztm2JMY=
fr.strings
hash2
- 4lcQGp2tBHHbNssUpH5pGMMuaUSqk91v3h/90BUu5ZU=
+ esUD8hol+n9BBouCNzSFu3iANtMW7ELtGqSOLMLA2zw=
harsh-light-instruction-dark.png
@@ -4156,21 +4178,21 @@
hash2
- mOIwJf+ZXh0bOyomJC8vTrbGPO0405jgZOL5rTbyG4o=
+ tdAXwqtBXBxFPC0Ux9Yv/bBw9ep17ZkLy7TT7erkWCU=
hr.strings
hash2
- dx6fPA6n8YzZ4+VHvUAOIkVgXrr74TZ2DCQhaVjMcT8=
+ whFGG5laJuStNNCgWK9T7XuWtAlaAX+KddIdEStBhTc=
hu.strings
hash2
- ZKZWLF7y+Z4EgZQGqxX3DHo3fxxJ95nWBY02zvMc4oI=
+ Po5UaeR+k4fC7VkIrsP7sc9EZYOtHXAcmvU2tijL6v4=
icBackSide.png
@@ -4324,7 +4346,7 @@
hash2
- K3ZqUNNF1N2k07qyK8XtSZQzlC9oxkUcQxoHuzvKGXo=
+ I0IeBfJ0JiDNxipyRzDKZJaF0g2UzjjxrznJEoRbwZo=
id_back_wide.png
@@ -4373,7 +4395,7 @@
hash2
- MI2Wkt9mpbS1fOCTPWfvQgVwhU8T8FVWzXDn9/irExo=
+ PfSAwcldTpd+9IYZ+Co8RVWDnD48L17Xgrbk7YL29aQ=
jcb.png
@@ -4492,7 +4514,7 @@
hash2
- QyMsc6fmRSJ0eW/KZwmjkSdboXTVvku6PscfKyAp+L0=
+ tO3sJS+yHVv0SHp1r8EwcSYmXEp9oX3MNj5EG9dDTmM=
need-help-tooltip-dark.png
@@ -4541,21 +4563,21 @@
hash2
- a86rg35t5EJhfMm+0tyL+oZYl+MjM6+kp2JprsR8lKc=
+ fwinLocdQ+MxPDsv89faMHAnYoO/Ei1yScle8z7dpC0=
pt.strings
hash2
- a0q7fjpIMEPj7DsMUUqUvo//9NydrBOT5cxp40UloSs=
+ OK8/Bm5ugJLSSHsqtS+Xr79Zj/lYfzsv1rVW7qh5dIE=
ro.strings
hash2
- v2vk9JDSEbioh94Ol8H6DIsVksqhS5C6i1E4mrG9KIg=
+ rF/DhER0BeBrTSR5HCPxq+xAQ62pX2g6IZjUML1Iuww=
scan_line_white.png
@@ -4583,21 +4605,21 @@
hash2
- u6OyS8OG9mQG3GqRBxkydMoW7bNXSs2ufDTUXtBIxQw=
+ V8c5/Dsqo1zY3SKbNebmPLyvZxLQlD58RaiK4xgo82E=
sl.strings
hash2
- v94f85U2LU5YRj0OQoF7DYsyYRU1MF2UFI843a3cb9o=
+ PaGd76NhhZKfJUhPUkzf9m+fATCaU33+1F6KF6ej7l4=
th.strings
hash2
- 2/5UThv4gz/cMCAdyWt5bAsNk6PQKizudiUis+HSZ3E=
+ 2PNeuB9DBCcxtZ9ORC2JomzPCX/dKGt6jZsbhZ2OA5M=
torchoff.png
@@ -4681,7 +4703,7 @@
hash2
- FqXnIaJaHA7kF9ofdZtQcAJl4v5JpyaxTO57fZFbF6c=
+ wdBEIAZYGrr2DpcTE/RpI2GcPh7aUq2mqzdLfwJzHAo=
visa.png
@@ -4709,14 +4731,14 @@
hash2
- 75dLBbHO38GM1le97227DcpsW9DnhyfYLPLrRMxh99U=
+ ECF5Ia+BZnyQjzFPZicAH+nED/fL458assufLwERz50=
zh-Hant.strings
hash2
- lDKzW+aSi6bt46G16UTfo69E1k6rsQOrYdn34Cfpo/o=
+ gRbOLPgDQbSogO5Ak52ZQ6n69GiRsVwjdPuNbkAiV6g=
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ar-AE.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ar-AE.strings
index 2721c3147..ed2a8af26 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ar-AE.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ar-AE.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "مسح وجه المستند";
"mb_blinkid_back_instructions_barcode" = "امسح الرمز الشريطي";
+"mb_blinkid_blur_detected" = "لا تحرّك المستند ولا الهاتف";
"mb_blinkid_camera_flip_document" = "اقلب المستند";
"mb_blinkid_camera_high" = "انقل إلى موضع أقرب";
"mb_blinkid_camera_near" = "انقل إلى موضع أبعد";
"mb_blinkid_document_too_close_to_edge" = "أبعد المستند عن الحافة";
+"mb_blinkid_glare_detected" = "أمِل المستند أو حرّكه لتتخلص من الانعكاس";
"mb_blinkid_introduction_dialog_message" = "تأكد من إبقاء المستند مضاءً بشكل جيد. كما يجب أن تكون جميع خانات المستندات واضحة على شاشة الكاميرا.";
"mb_blinkid_introduction_dialog_title" = "تأكد من وضوح جميع البيانات";
"mb_blinkid_mf_additional_address_information" = "معلومات العنوان";
@@ -55,6 +57,7 @@
"mb_data_not_match_msg" = "يُرجى بدء عملية المسح الضوئي من جديد.";
"mb_data_not_match_retry_button" = "إعادة المحاولة";
"mb_data_not_match_title" = "الجانبان غير متطابقين";
+"mb_document_verification_back_side_scan" = "المسح الضوئي للوجه الخلفي من المستند";
"mb_document_verification_onboarding_back_button" = "عودة";
"mb_document_verification_onboarding_cancel_button" = "إلغاء";
"mb_document_verification_onboarding_done_button" = "انتهى";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/cs.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/cs.strings
index 1c1da4da6..4604425ae 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/cs.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/cs.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Naskenujte přední\nstranu dokumentu.";
"mb_blinkid_back_instructions_barcode" = "Naskenujte čárový kód";
+"mb_blinkid_blur_detected" = "Držte dokument a telefon v klidu";
"mb_blinkid_camera_flip_document" = "Otočte dokument";
"mb_blinkid_camera_high" = "Kousek blíž";
"mb_blinkid_camera_near" = "Kousek dál";
"mb_blinkid_document_too_close_to_edge" = "Přesunout dokument dál od kraje";
+"mb_blinkid_glare_detected" = "Nakloňte nebo přesuňte dokument pro odstranění odrazů";
"mb_blinkid_introduction_dialog_message" = "Ujistěte se, že je dokument dobře osvětlen. Na obrazovce fotoaparátu by měla být vidět všechna pole dokumentu.";
"mb_blinkid_introduction_dialog_message_barcode" = "Různé typy dokumentů se mohou lišit formátem a umístěním čárového kódu. Kód může být jak na přední, tak na zadní straně dokumentu.";
"mb_blinkid_introduction_dialog_message_mrz" = "Ve spodní části přední či zadní strany dokumentu najdete dlouhý řetězec znaků. Bude rozdělený do 2 nebo 3 řádků a přerušovaný šipkami (<< a >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum vypršení platnosti";
"mb_blinkid_mf_date_of_issue" = "Datum vydání";
"mb_blinkid_mf_document_number" = "Číslo dokumentu";
+"mb_blinkid_mf_document_subtype" = "Podkategorie dokumentu";
"mb_blinkid_mf_employer" = "Zaměstnavatel";
"mb_blinkid_mf_endorsements" = "Potvrzení";
"mb_blinkid_mf_fathers_name" = "Jméno otce";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Spusťte proces skenování znovu.";
"mb_data_not_match_retry_button" = "Opakovat";
"mb_data_not_match_title" = "Strany neodpovídají";
+"mb_document_verification_back_side_scan" = "Naskenujte zadní stranu dokumentu";
"mb_document_verification_onboarding_back_button" = "Zpět";
"mb_document_verification_onboarding_cancel_button" = "Zrušit";
"mb_document_verification_onboarding_done_button" = "Hotovo";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/de.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/de.strings
index 1a012d5dd..4a5fc6cb3 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/de.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/de.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scannen Sie die Vorderseite \n eines Dokuments";
"mb_blinkid_back_instructions_barcode" = "Scannen Sie den Barcode";
+"mb_blinkid_blur_detected" = "Dokument und Telefon ruhig halten";
"mb_blinkid_camera_flip_document" = "Drehen Sie das Dokument um";
"mb_blinkid_camera_high" = "Kommen Sie näher";
"mb_blinkid_camera_near" = "Bewegen Sie sich weiter weg";
"mb_blinkid_document_too_close_to_edge" = "Verschieben des Dokuments vom Rand aus";
+"mb_blinkid_glare_detected" = "Dokument neigen oder bewegen, um die Spiegelung zu beseitigen";
"mb_blinkid_introduction_dialog_message" = "Sorgen Sie dafür, dass das Dokument gut belichtet ist. Alle Bereiche des Dokuments sollten auf dem Kamerabildschirm sichtbar sein.";
"mb_blinkid_introduction_dialog_message_barcode" = "Verschiedene Arten von Dokumenten können unterschiedliche Barcodeformate und -positionen haben. Suchen Sie auf der Vorder- und Rückseite des Dokuments nach einem Barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "Am unteren Rand der Vorder- oder Rückseite des Dokuments finden Sie eine lange Zeichenfolge. Sie ist in 2 oder 3 Zeilen unterteilt und durch Pfeile (<< und >>) getrennt.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Ablaufdatum";
"mb_blinkid_mf_date_of_issue" = "Ausstellungsdatum";
"mb_blinkid_mf_document_number" = "Ausweisnummer";
+"mb_blinkid_mf_document_subtype" = "Belegunterart";
"mb_blinkid_mf_employer" = "Arbeitgeber";
"mb_blinkid_mf_endorsements" = "Billigungen";
"mb_blinkid_mf_fathers_name" = "Name des Vaters";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Bitte starten Sie den Scanvorgang erneut.";
"mb_data_not_match_retry_button" = "Wiederholen";
"mb_data_not_match_title" = "Seiten passen nicht zusammen";
+"mb_document_verification_back_side_scan" = "Scannen Sie die Rückseite des Dokuments";
"mb_document_verification_onboarding_back_button" = "Zurück";
"mb_document_verification_onboarding_cancel_button" = "Abbrechen";
"mb_document_verification_onboarding_done_button" = "Fertig";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/en.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/en.strings
index ac1eedf16..747520eae 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/en.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/en.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
-"blinkid_generic_message" = "Scan the front side of the document";
+"blinkid_generic_message" = "Scan the front side of a document";
"mb_blinkid_back_instructions_barcode" = "Scan the barcode";
+"mb_blinkid_blur_detected" = "Keep document and phone still";
"mb_blinkid_camera_flip_document" = "Flip to the back side";
"mb_blinkid_camera_high" = "Move closer";
"mb_blinkid_camera_near" = "Move farther";
"mb_blinkid_document_too_close_to_edge" = "Move the document from the edge";
+"mb_blinkid_glare_detected" = "Tilt or move document to remove reflection";
"mb_blinkid_introduction_dialog_message" = "Make sure you keep the document well lit. All document fields should be visible on the camera screen.";
"mb_blinkid_introduction_dialog_message_barcode" = "Different types of documents may have different barcode formats and locations. Look at the front and back of the document for a barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "You’ll find a long string of characters at the bottom of the front or the back of the document. It’s divided into 2 or 3 lines and separated by arrows (<< and >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Date of expiry";
"mb_blinkid_mf_date_of_issue" = "Date of issue";
"mb_blinkid_mf_document_number" = "Document number";
+"mb_blinkid_mf_document_subtype" = "Document Subtype";
"mb_blinkid_mf_employer" = "Employer";
"mb_blinkid_mf_endorsements" = "Endorsements";
"mb_blinkid_mf_fathers_name" = "Fathers name";
@@ -63,11 +66,12 @@
"mb_data_not_match_msg" = "Please start the scanning process over.";
"mb_data_not_match_retry_button" = "Retry";
"mb_data_not_match_title" = "Sides don’t match";
+"mb_document_verification_back_side_scan" = "Scan the back side of a document";
"mb_document_verification_onboarding_back_button" = "Back";
"mb_document_verification_onboarding_cancel_button" = "Cancel";
"mb_document_verification_onboarding_done_button" = "Done";
"mb_document_verification_onboarding_next_button" = "Next";
-"mb_error_mandatory_field_missing" = "Keep the document fully visible";
+"mb_error_mandatory_field_missing" = "Keep document fully visible";
"mb_flashlight_glare_tooltip" = "Watch out for flashlight glare.\nGently move your ID around to avoid it.";
"mb_network_error" = "Network error";
"mb_recognition_timeout_dialog_message" = "Unable to read the document. Please try again.";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/es.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/es.strings
index 2d4f990f5..e4e991bf9 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/es.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/es.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Escaneo de la parte frontal\nde un documento";
"mb_blinkid_back_instructions_barcode" = "Escanea el código de barras";
+"mb_blinkid_blur_detected" = "No mueva ni el documento ni el teléfono ";
"mb_blinkid_camera_flip_document" = "Dele la vuelta al documento";
"mb_blinkid_camera_high" = "Acercarse";
"mb_blinkid_camera_near" = "Alejarse";
"mb_blinkid_document_too_close_to_edge" = "Mueva el documento desde el borde";
+"mb_blinkid_glare_detected" = "Incline o mueva el documento para evitar los reflejos";
"mb_blinkid_introduction_dialog_message" = "Asegúrese de mantener el documento bien iluminado. Todos los campos del documento deben ser visibles en la pantalla de la cámara.";
"mb_blinkid_introduction_dialog_message_barcode" = "Cada tipo de documento puede tener un formato y una ubicación de código de barras diferentes. Busque el código de barras tanto en la parte frontal como en el reverso del documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "En la parte inferior de la parte frontal o del reverso del documento encontrará una larga cadena de caracteres. Se divide en 2 o 3 líneas y está separada por flechas (<< y >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Fecha de caducidad";
"mb_blinkid_mf_date_of_issue" = "Fecha de emisión";
"mb_blinkid_mf_document_number" = "Número de documento";
+"mb_blinkid_mf_document_subtype" = "Subtipo de documento";
"mb_blinkid_mf_employer" = "Empleador";
"mb_blinkid_mf_endorsements" = "Avales";
"mb_blinkid_mf_fathers_name" = "Nombre del padre";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Por favor, inicie el proceso de escaneo de nuevo.";
"mb_data_not_match_retry_button" = "Reintentar";
"mb_data_not_match_title" = "Los lados no coinciden";
+"mb_document_verification_back_side_scan" = "Escanea la parte de atrás del documento";
"mb_document_verification_onboarding_back_button" = "Atrás";
"mb_document_verification_onboarding_cancel_button" = "Cancelar";
"mb_document_verification_onboarding_done_button" = "Hecho";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/fil.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/fil.strings
index c59c93806..d1ee446f8 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/fil.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/fil.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "I-scan ang unahang bahagi ng dokumento";
"mb_blinkid_back_instructions_barcode" = "I-scan ang barcode";
+"mb_blinkid_blur_detected" = "Panatilihing hindi gumagalaw ang dokumento at telepono";
"mb_blinkid_camera_flip_document" = "Baligtarin ang dokumento";
"mb_blinkid_camera_high" = "Ilapit pa";
"mb_blinkid_camera_near" = "Ilayo pa";
"mb_blinkid_document_too_close_to_edge" = "Iurong ang dokumento mula sa gilid";
+"mb_blinkid_glare_detected" = "I-tilt o iusog ang dokumento para maalis ang reflection";
"mb_blinkid_introduction_dialog_message" = "Tiyaki na lubos na naiilawan ang dokumento. Dapat nakikita sa screen ng camera ang lahat ng field ng dokumento.";
"mb_blinkid_introduction_dialog_message_barcode" = "Maaaring may iba't ibang format at lokasyon ng barcode ang iba't ibang uri ng mga dokumento. Tumingin sa harap at likod ng dokumento para sa isang barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "Makakakita ka ng mahabang string ng mga character sa ibaba ng harap o likod ng dokumento. Nahahati ito sa 2 o 3 linya at pinaghihiwalay ng mga arrow (<< at >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Petsa ng Pag-expire";
"mb_blinkid_mf_date_of_issue" = "Petsa ng Pag-isyu";
"mb_blinkid_mf_document_number" = "Numero ng Dokumento";
+"mb_blinkid_mf_document_subtype" = "Subtype ng Dokumento";
"mb_blinkid_mf_employer" = "Tagapag-empleyo";
"mb_blinkid_mf_endorsements" = "Mga pag-endorso";
"mb_blinkid_mf_fathers_name" = "Pangalan ng tatay";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Simulan ang proseso ng pag-i-scan.";
"mb_data_not_match_retry_button" = "Subukan ulit";
"mb_data_not_match_title" = "Hindi tugma ang mga gilid";
+"mb_document_verification_back_side_scan" = "I-scan ang likurang bahagi ng dokumento";
"mb_document_verification_onboarding_back_button" = "Bumalik";
"mb_document_verification_onboarding_cancel_button" = "Kanselahin";
"mb_document_verification_onboarding_done_button" = "Tapos na";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/fr.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/fr.strings
index 09fe7fcc1..0ca0a013a 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/fr.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/fr.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Numérisez le recto\nd'un document";
"mb_blinkid_back_instructions_barcode" = "Scanner le code-barres";
+"mb_blinkid_blur_detected" = "Maintenir le document et le téléphone immobiles";
"mb_blinkid_camera_flip_document" = "Retournez le document";
"mb_blinkid_camera_high" = "Rapprochez-vous";
"mb_blinkid_camera_near" = "Éloignez-vous";
"mb_blinkid_document_too_close_to_edge" = "Déplacer le document du bord";
+"mb_blinkid_glare_detected" = "Incliner ou déplacer le document afin d'éliminer les reflets";
"mb_blinkid_introduction_dialog_message" = "Prenez soin de garder le document bien éclairé. Tous les champs du document doivent être visibles sur l'écran de la caméra.";
"mb_blinkid_introduction_dialog_message_barcode" = "Les différents types de documents peuvent avoir des formats et des emplacements de codes-barres différents. Examinez le recto et le verso du document à la recherche d'un code-barres.";
"mb_blinkid_introduction_dialog_message_mrz" = "Vous trouverez une longue chaîne de caractères au bas du recto ou du verso du document. Elle est divisée en deux ou trois lignes et séparée par des flèches (<< et >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Date d'expiration";
"mb_blinkid_mf_date_of_issue" = "Date d'émission";
"mb_blinkid_mf_document_number" = "Numéro du document";
+"mb_blinkid_mf_document_subtype" = "Sous-type de document";
"mb_blinkid_mf_employer" = "Employeur";
"mb_blinkid_mf_endorsements" = "Approbations";
"mb_blinkid_mf_fathers_name" = "Nom du père";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Veuillez recommencer le processus de numérisation.";
"mb_data_not_match_retry_button" = "Réessayez";
"mb_data_not_match_title" = "Les côtés ne correspondent pas";
+"mb_document_verification_back_side_scan" = "Scanner le verso du document";
"mb_document_verification_onboarding_back_button" = "Retour";
"mb_document_verification_onboarding_cancel_button" = "Annuler";
"mb_document_verification_onboarding_done_button" = "Terminé";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/he.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/he.strings
index c9d21fbb0..4ca90eb58 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/he.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/he.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "לסרוק את הצד הקדמי של מסמך";
"mb_blinkid_back_instructions_barcode" = "לסרוק את הברקוד";
+"mb_blinkid_blur_detected" = "השאירו את המסמך והטלפון ללא תזוזה";
"mb_blinkid_camera_flip_document" = "להפוך את המסמך";
"mb_blinkid_camera_high" = "קרב/י";
"mb_blinkid_camera_near" = "התרחק/י";
"mb_blinkid_document_too_close_to_edge" = "הזז/י את המסמך מהקצה";
+"mb_blinkid_glare_detected" = "הטו או הזיזו את המסמך כדי להסיר את ההשתקפות";
"mb_blinkid_introduction_dialog_message" = "המסמך חייב להיות מואר היטב. כל שדות המסמכים צריכים להיות גלויים על מסך המצלמה.";
"mb_blinkid_introduction_dialog_message_barcode" = "לסוגים שונים של מסמכים עשויים להיות פורמטים ומיקומים שונים של ברקוד. חפשו ברקוד בחלק הקדמי והאחורי של המסמך.";
"mb_blinkid_introduction_dialog_message_mrz" = "תמצאו מחרוזת ארוכה של תווים בתחתית החלק הקדמי או האחורי של המסמך. היא מחולקת ל-2 או 3 שורות ומופרדת על ידי חיצים (<< ו->>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "תאריך תפוגה";
"mb_blinkid_mf_date_of_issue" = "תאריך הנפקה";
"mb_blinkid_mf_document_number" = "מספר מסמך";
+"mb_blinkid_mf_document_subtype" = "תת-סוג מסמך";
"mb_blinkid_mf_employer" = "מעסיק";
"mb_blinkid_mf_endorsements" = "אישורים";
"mb_blinkid_mf_fathers_name" = "שם האב";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "נא להתחיל את תהליך הסריקה מחדש.";
"mb_data_not_match_retry_button" = "לנסות שוב";
"mb_data_not_match_title" = "הצדדים אינם תואמים";
+"mb_document_verification_back_side_scan" = "סרקו את הצד האחורי של המסמך";
"mb_document_verification_onboarding_back_button" = "חזור";
"mb_document_verification_onboarding_cancel_button" = "ביטול";
"mb_document_verification_onboarding_done_button" = "בוצע";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/hr.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/hr.strings
index 35dba78b8..6db0ef134 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/hr.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/hr.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Skeniraj prednju\nstranu dokumenta";
"mb_blinkid_back_instructions_barcode" = "Skenirajte barkod";
+"mb_blinkid_blur_detected" = "Drži dokument i telefon mirno";
"mb_blinkid_camera_flip_document" = "Okreni dokument";
"mb_blinkid_camera_high" = "Približi dokument";
"mb_blinkid_camera_near" = "Udalji dokument";
"mb_blinkid_document_too_close_to_edge" = "Odmakni dokument od ruba";
+"mb_blinkid_glare_detected" = "Nagni ili premjesti dokument kako bi uklonio refleksiju";
"mb_blinkid_introduction_dialog_message" = "Pripazite da dokument bude dovoljno osvijetljen. Svi podaci s dokumenta trebaju biti vidljivi na ekranu vašeg uređaja.";
"mb_blinkid_introduction_dialog_message_barcode" = "Drugačiji tipovi dokumenata mogu imati različite formate barkodova. Barkod može biti na nekoliko različitih mjesta na dokumentu. Potražite ga na prednjoj i stražnoj strani.";
"mb_blinkid_introduction_dialog_message_mrz" = "Pronaći ćete niz znakova na dnu prednjeg ili zadnjeg dijela dokumenta. Podijeljen je u 2 ili 3 linije i odvojen znakovima strelica (<< i >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum isteka";
"mb_blinkid_mf_date_of_issue" = "Datum izdavanja";
"mb_blinkid_mf_document_number" = "Broj dokumenta";
+"mb_blinkid_mf_document_subtype" = "Podvrsta dokumenta";
"mb_blinkid_mf_employer" = "Poslodavac";
"mb_blinkid_mf_endorsements" = "Prava";
"mb_blinkid_mf_fathers_name" = "Ime oca";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Molimo ponovno skeniraj prednju i stražnju stranu istog dokumenta.";
"mb_data_not_match_retry_button" = "U redu";
"mb_data_not_match_title" = "Podaci se ne podudaraju";
+"mb_document_verification_back_side_scan" = "Skeniraj stražnju\nstranu dokumenta";
"mb_document_verification_onboarding_back_button" = "Natrag";
"mb_document_verification_onboarding_cancel_button" = "Poništi";
"mb_document_verification_onboarding_done_button" = "OK";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/hu.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/hu.strings
index 8d84e0131..7e5fef31e 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/hu.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/hu.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Szkennelje be egy dokumentum\nelülső oldalát";
"mb_blinkid_back_instructions_barcode" = "Szkennelje be a vonalkódot";
+"mb_blinkid_blur_detected" = "Tartsa a dokumentumot és a telefont mozdulatlanul";
"mb_blinkid_camera_flip_document" = "Fordítsa meg a dokumentumot";
"mb_blinkid_camera_high" = "Menjen közelebb";
"mb_blinkid_camera_near" = "Menjen távolabb";
"mb_blinkid_document_too_close_to_edge" = "Mozdítsa el a dokumentumot a széltől";
+"mb_blinkid_glare_detected" = "Döntse meg vagy mozgassa a dokumentumot a tükröződés megszüntetéséhez";
"mb_blinkid_introduction_dialog_message" = "Ügyeljen a dokumentum megfelelő megvilágítására. Minden dokumentummezőnek láthatónak kell lennie a kameraképernyőn.";
"mb_blinkid_introduction_dialog_message_barcode" = "A különböző típusú dokumentumok eltérő vonalkód-formátummal és helyekkel rendelkezhetnek. Nézze meg a dokumentum elejét és hátulját, hogy megtalálja a vonalkódot.";
"mb_blinkid_introduction_dialog_message_mrz" = "A dokumentum elején vagy hátulján egy hosszú karaktersort talál. 2 vagy 3 sorra van osztva, valamint (<< és >>) nyilak választják el.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Lejárati dátum";
"mb_blinkid_mf_date_of_issue" = "Kiadás dátuma";
"mb_blinkid_mf_document_number" = "Dokumentum szám";
+"mb_blinkid_mf_document_subtype" = "Dokumentum altípusa";
"mb_blinkid_mf_employer" = "Munkáltató";
"mb_blinkid_mf_endorsements" = "Elismerések";
"mb_blinkid_mf_fathers_name" = "Apai név";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Kérjük, kezdje újra a szkennelési folyamatot.";
"mb_data_not_match_retry_button" = "Próbálja újra";
"mb_data_not_match_title" = "Az oldalak nem egyeznek";
+"mb_document_verification_back_side_scan" = "Szkennelje be a dokumentum hátoldalát";
"mb_document_verification_onboarding_back_button" = "Vissza";
"mb_document_verification_onboarding_cancel_button" = "Törlés";
"mb_document_verification_onboarding_done_button" = "Kész";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/id.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/id.strings
index d9dfb1db2..15af03280 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/id.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/id.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Pindai sisi depan\ndokumen.";
"mb_blinkid_back_instructions_barcode" = "Pindai kode batang";
+"mb_blinkid_blur_detected" = "Jaga agar dokumen dan ponsel tidak bergerak";
"mb_blinkid_camera_flip_document" = "Balik dokumen";
"mb_blinkid_camera_high" = "Mohon dekatkan";
"mb_blinkid_camera_near" = "Mohon jauhkan";
"mb_blinkid_document_too_close_to_edge" = "Gerakkan dokumen dari tepian";
+"mb_blinkid_glare_detected" = "Miringkan atau pindahkan dokumen untuk menghilangkan pantulan";
"mb_blinkid_introduction_dialog_message" = "Pastikan dokumen cukup diterangi cahaya. Semua bagian dokumen harus terlihat di layar kamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Jenis dokumen berbeda dapat memiliki format dan lokasi kode batang yang berbeda juga. Lihat sisi depan dan belakang dokumen untuk menemukan kode batang.";
"mb_blinkid_introduction_dialog_message_mrz" = "Anda akan menemukan string panjang karakter di bagian bawah sisi depan atau belakang dokumen. Karakter dibagi menjadi 2 atau 3 baris dan dipisahkan oleh tanda panah (<< dan >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Tanggal Kedaluwarsa";
"mb_blinkid_mf_date_of_issue" = "Tanggal Terbit";
"mb_blinkid_mf_document_number" = "Nomor Dokumen";
+"mb_blinkid_mf_document_subtype" = "Subtipe Dokumen";
"mb_blinkid_mf_employer" = "Tempat Kerja";
"mb_blinkid_mf_endorsements" = "Pengesahan";
"mb_blinkid_mf_fathers_name" = "Nama ayah";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Mohon ulangi proses pemindaian dari awal.";
"mb_data_not_match_retry_button" = "Coba Lagi";
"mb_data_not_match_title" = "Sisi tidak cocok";
+"mb_document_verification_back_side_scan" = "Pindai sisi belakang dokumen";
"mb_document_verification_onboarding_back_button" = "Kembali";
"mb_document_verification_onboarding_cancel_button" = "Batal";
"mb_document_verification_onboarding_done_button" = "Selesai";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/it.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/it.strings
index f10628ec3..7a51d1083 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/it.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/it.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scansiona il fronte \ndi un documento";
"mb_blinkid_back_instructions_barcode" = "Scansiona il codice a barre";
+"mb_blinkid_blur_detected" = "Tieni immobili il documento e il telefono";
"mb_blinkid_camera_flip_document" = "Capovolgi il documento";
"mb_blinkid_camera_high" = "Avvicinati";
"mb_blinkid_camera_near" = "Spostati più lontano";
"mb_blinkid_document_too_close_to_edge" = "Sposta il documento dal bordo";
+"mb_blinkid_glare_detected" = "Inclina o muovi il documento per eliminare il riflesso";
"mb_blinkid_introduction_dialog_message" = "Controlla che il documento sia ben illuminato. Tutti i campi del documento devono essere visibili sullo schermo della fotocamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Su tipi diversi di documenti possono essere riportati codici a barre con formati e posizioni differenti. Cerca un codice a barre sul fronte e sul retro del documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "Troverai una lunga sequenza di caratteri nella parte inferiore del fronte o del retro del documento. È suddivisa in 2 o 3 linee e presenta delle frecce (<< e >>) come separatori.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data di scadenza";
"mb_blinkid_mf_date_of_issue" = "Data di rilascio";
"mb_blinkid_mf_document_number" = "Numero del documento";
+"mb_blinkid_mf_document_subtype" = "Sottotipo del documento";
"mb_blinkid_mf_employer" = "Datore di lavoro";
"mb_blinkid_mf_endorsements" = "Annotazioni";
"mb_blinkid_mf_fathers_name" = "Nome del padre";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Ricomincia il processo di scansione.";
"mb_data_not_match_retry_button" = "Riprova";
"mb_data_not_match_title" = "I lati non corrispondono";
+"mb_document_verification_back_side_scan" = "Scansiona il retro del documento";
"mb_document_verification_onboarding_back_button" = "Indietro";
"mb_document_verification_onboarding_cancel_button" = "Annulla";
"mb_document_verification_onboarding_done_button" = "Fatto";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ms.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ms.strings
index 806060c10..7eb71aad1 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ms.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ms.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Imbas bahagian hadapan\ndokumen";
"mb_blinkid_back_instructions_barcode" = "Imbas kod bar";
+"mb_blinkid_blur_detected" = "Pastikan dokumen dan telefon tidak bergegar";
"mb_blinkid_camera_flip_document" = "Balikkan dokumen";
"mb_blinkid_camera_high" = "Dekatkan lagi";
"mb_blinkid_camera_near" = "Jauhkan lagi";
"mb_blinkid_document_too_close_to_edge" = "Alihkan fokumen dari tepi";
+"mb_blinkid_glare_detected" = "Sengetkan atau gerakkan dokumen untuk mengelakkan pantulan cahaya";
"mb_blinkid_introduction_dialog_message" = "Pastikan dokumen anda menerima pencahayaan yang cukup. Semua medan dokumen hendaklah kelihatan pada skrin kamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Jenis dokumen yang berbeza mungkin mempunyai format dan lokasi kod bar yang berbeza. Lihat bahagian depan dan belakang dokumen untuk kod bar.";
"mb_blinkid_introduction_dialog_message_mrz" = "Anda akan menemui rentetan aksara yang panjang di bahagian bawah bahagian hadapan atau belakang dokumen. Ia dibahagikan kepada 2 atau 3 baris dan dipisahkan dengan anak panah (<< dan >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Tarikh luput";
"mb_blinkid_mf_date_of_issue" = "Tarikh diterbitkan";
"mb_blinkid_mf_document_number" = "Nombor dokumen";
+"mb_blinkid_mf_document_subtype" = "Subjenis Dokumen";
"mb_blinkid_mf_employer" = "Alamat majikan";
"mb_blinkid_mf_endorsements" = "Pengendorsan";
"mb_blinkid_mf_fathers_name" = "Nama bapa";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Sila mulakan proses pengimbasan dari awal.";
"mb_data_not_match_retry_button" = "Cuba semula";
"mb_data_not_match_title" = "Bahagian hadapan dan belakang tidak sepadan";
+"mb_document_verification_back_side_scan" = "Imbas bahagian belakang dokumen";
"mb_document_verification_onboarding_back_button" = "Kembali";
"mb_document_verification_onboarding_cancel_button" = "Batal";
"mb_document_verification_onboarding_done_button" = "Siap";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/nl.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/nl.strings
index 30b0a5ba8..3bc2e1b7c 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/nl.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/nl.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scan de voorzijde\nvan een document";
"mb_blinkid_back_instructions_barcode" = "Scan de barcode";
+"mb_blinkid_blur_detected" = "Houd het document en de telefoon stil";
"mb_blinkid_camera_flip_document" = "Draai het document om";
"mb_blinkid_camera_high" = "Beweeg dichterbij";
"mb_blinkid_camera_near" = "Beweeg verder weg";
"mb_blinkid_document_too_close_to_edge" = "Verplaats het document weg van de rand";
+"mb_blinkid_glare_detected" = "Kantel of verplaats het document om de reflectie te verwijderen";
"mb_blinkid_introduction_dialog_message" = "Zorg ervoor dat het document goed verlicht is. Alle velden op het document moeten onder het camerascherm zichtbaar zijn.";
"mb_blinkid_introduction_dialog_message_barcode" = "Verschillende soorten documenten kunnen verschillende formaten en locaties van de streepjescode hebben. Kijk op de voor- en achterzijde van het document voor een streepjescode.";
"mb_blinkid_introduction_dialog_message_mrz" = "U zult een lange reeks tekens vinden onderaan de voor- of achterzijde van het document. Ze is verdeeld in 2 of 3 lijnen en gescheiden door pijlen (<< en >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Vervaldatum";
"mb_blinkid_mf_date_of_issue" = "Afgiftedatum";
"mb_blinkid_mf_document_number" = "Documentnummer";
+"mb_blinkid_mf_document_subtype" = "Document sub soort ";
"mb_blinkid_mf_employer" = "Werkgever";
"mb_blinkid_mf_endorsements" = "Goedkeuringen";
"mb_blinkid_mf_fathers_name" = "Naam van de vader";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Begin het scanproces alstublieft nogmaals.";
"mb_data_not_match_retry_button" = "Probeer opnieuw";
"mb_data_not_match_title" = "Zijdes komen niet overeen";
+"mb_document_verification_back_side_scan" = "Scan de achterkant van het document";
"mb_document_verification_onboarding_back_button" = "Terug";
"mb_document_verification_onboarding_cancel_button" = "Annuleren";
"mb_document_verification_onboarding_done_button" = "Gereed";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/pt.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/pt.strings
index 1df3a9720..d28201296 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/pt.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/pt.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Digitalize a frente\nde um documento";
"mb_blinkid_back_instructions_barcode" = "Digitalizar o código de barras";
+"mb_blinkid_blur_detected" = "Mantenha o documento e o telemóvel imóveis";
"mb_blinkid_camera_flip_document" = "Vire o documento";
"mb_blinkid_camera_high" = "Aproxime";
"mb_blinkid_camera_near" = "Afaste";
"mb_blinkid_document_too_close_to_edge" = "Mova o documento da margem";
+"mb_blinkid_glare_detected" = "Incline ou desloque o documento para eliminar o reflexo";
"mb_blinkid_introduction_dialog_message" = "Assegure-se de que mantém o documento bem iluminado. Todos os campos do documento devem estar visíveis no ecrã da câmara.";
"mb_blinkid_introduction_dialog_message_barcode" = "Diferentes tipos de documentos podem ter diferentes formatos e localizações de códigos de barras. Procure um código de barras na frente e no verso do documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "Encontrará uma longa sequência de carateres na parte inferior da frente ou do verso do documento. Está dividida em 2 ou 3 linhas e separada por setas (<< e >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data de validade";
"mb_blinkid_mf_date_of_issue" = "Data de emissão";
"mb_blinkid_mf_document_number" = "Número do documento";
+"mb_blinkid_mf_document_subtype" = "Subtipo de documento";
"mb_blinkid_mf_employer" = "Endereço comercial";
"mb_blinkid_mf_endorsements" = "Apoios";
"mb_blinkid_mf_fathers_name" = "Nome do pai";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Reinicie o processo de digitalização.";
"mb_data_not_match_retry_button" = "Tente novamente";
"mb_data_not_match_title" = "Os lados não coincidem";
+"mb_document_verification_back_side_scan" = "Digitalize o verso do documento\n";
"mb_document_verification_onboarding_back_button" = "Anterior";
"mb_document_verification_onboarding_cancel_button" = "Cancelar";
"mb_document_verification_onboarding_done_button" = "Concluído";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ro.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ro.strings
index 1b1398de5..12cd20748 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/ro.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/ro.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scanați partea din față\na unui document";
"mb_blinkid_back_instructions_barcode" = "Scanare cod de bare";
+"mb_blinkid_blur_detected" = "Păstrați documentul și telefonul nemișcate";
"mb_blinkid_camera_flip_document" = "Întoarceți documentul";
"mb_blinkid_camera_high" = "Apropiați";
"mb_blinkid_camera_near" = "Îndepărtați";
"mb_blinkid_document_too_close_to_edge" = "Îndepărtați documentul de margine";
+"mb_blinkid_glare_detected" = "Înclinați sau deplasați documentul pentru a elimina reflexiile";
"mb_blinkid_introduction_dialog_message" = "Asigurați-vă că documentul este bine iluminat. Toate secțiunile din document trebuie să fie vizibile pe ecranul camerei.";
"mb_blinkid_introduction_dialog_message_barcode" = "Diferite tipuri de documente pot avea diferite formate de coduri de bare și amplasări. Căutați codul de bare pe ambele părți ale documentului.";
"mb_blinkid_introduction_dialog_message_mrz" = "Veți găsi un șir lung de caractere în partea de jos a documentului, pe fața sau pe spatele acestuia. Este împărțit în 2 sau 3 rânduri și separat prin săgeți (<< și >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data expirării";
"mb_blinkid_mf_date_of_issue" = "Data eliberării";
"mb_blinkid_mf_document_number" = "Numărul documentului";
+"mb_blinkid_mf_document_subtype" = "Subtipul documentului";
"mb_blinkid_mf_employer" = "Angajatorul";
"mb_blinkid_mf_endorsements" = "Aprobări";
"mb_blinkid_mf_fathers_name" = "Numele tatălui";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Reîncepeți procesul de scanare.";
"mb_data_not_match_retry_button" = "Reîncercare";
"mb_data_not_match_title" = "Fețele nu se potrivesc";
+"mb_document_verification_back_side_scan" = "Scanați partea din spate a documentului";
"mb_document_verification_onboarding_back_button" = "Înapoi";
"mb_document_verification_onboarding_cancel_button" = "Anulare";
"mb_document_verification_onboarding_done_button" = "Terminat";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/sk.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/sk.strings
index 6c0702284..b23cd7602 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/sk.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/sk.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Naskenujte prednú stranu \n preukazu";
"mb_blinkid_back_instructions_barcode" = "Naskenovať čiarový kód";
+"mb_blinkid_blur_detected" = "Držte dokument a telefón v jednej polohe";
"mb_blinkid_camera_flip_document" = "Otočte preukaz";
"mb_blinkid_camera_high" = "Posuňte sa bližšie";
"mb_blinkid_camera_near" = "Posuňte sa ďalej";
"mb_blinkid_document_too_close_to_edge" = "Presunúť dokument od okraja";
+"mb_blinkid_glare_detected" = "Nakloňte alebo posuňte dokument, aby ste odstránili odraz";
"mb_blinkid_introduction_dialog_message" = "Uistite sa, že máte dokument dobre osvetlený. Všetky polia dokumentu by mali byť viditeľné na obrazovke fotoaparátu.";
"mb_blinkid_introduction_dialog_message_barcode" = "Rôzne typy dokumentov môžu mať rôzne formáty čiarových kódov a rôzne umiestnenia. Pozrite sa na prednú a zadnú stranu dokumentu, kde nájdete čiarový kód.";
"mb_blinkid_introduction_dialog_message_mrz" = "V spodnej časti prednej alebo zadnej strany dokumentu nájdete dlhý reťazec znakov. Je rozdelená na 2 alebo 3 riadky a oddelené šípkami (<< a >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Dátum vypršania platnosti";
"mb_blinkid_mf_date_of_issue" = "Dátum vydania";
"mb_blinkid_mf_document_number" = "Číslo dokladu";
+"mb_blinkid_mf_document_subtype" = "Podtyp dokumentu";
"mb_blinkid_mf_employer" = "Zamestnávateľ";
"mb_blinkid_mf_endorsements" = "Potvrdenia";
"mb_blinkid_mf_fathers_name" = "Meno otca";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Spustite proces skenovania znova.";
"mb_data_not_match_retry_button" = "Skúsiť znova";
"mb_data_not_match_title" = "Strany sa nezhodujú";
+"mb_document_verification_back_side_scan" = "Nasnímajte zadnú stranu dokumentu";
"mb_document_verification_onboarding_back_button" = "Späť";
"mb_document_verification_onboarding_cancel_button" = "Zrušiť";
"mb_document_verification_onboarding_done_button" = "Hotovo";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/sl.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/sl.strings
index 35b52ec41..81048f7cd 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/sl.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/sl.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Optično preberite sprednjo\nstran dokumenta";
"mb_blinkid_back_instructions_barcode" = "Optično preberite črtno kodo";
+"mb_blinkid_blur_detected" = "Še vedno hranite dokumente in telefon";
"mb_blinkid_camera_flip_document" = "Obrnite dokument";
"mb_blinkid_camera_high" = "Približajte";
"mb_blinkid_camera_near" = "Oddaljite";
"mb_blinkid_document_too_close_to_edge" = "Dokument odmaknite od roba";
+"mb_blinkid_glare_detected" = "Nagnite ali premaknite dokument, da odstranite odsev";
"mb_blinkid_introduction_dialog_message" = "Poskrbite, da bo dokument dobro osvetljen. Na zaslonu kamere morajo biti vidna vsa polja dokumenta.";
"mb_blinkid_introduction_dialog_message_barcode" = "Različne vrste dokumentov imajo lahko različne oblike črtnih kod in lokacije. Črtno kodo poiščite na sprednji in zadnji strani dokumenta.";
"mb_blinkid_introduction_dialog_message_mrz" = "Na dnu sprednje ali zadnje strani dokumenta boste našli dolg niz znakov. Razdeljen je na 2 ali 3 vrstice in ločen s puščicami (<< in >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum poteka";
"mb_blinkid_mf_date_of_issue" = "Datum izdaje";
"mb_blinkid_mf_document_number" = "Številka dokumenta";
+"mb_blinkid_mf_document_subtype" = "Podvrsta dokumenta";
"mb_blinkid_mf_employer" = "Delodajalec";
"mb_blinkid_mf_endorsements" = "Potrditve";
"mb_blinkid_mf_fathers_name" = "Ime očeta";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Postopek optičnega branja začnite ponovno.";
"mb_data_not_match_retry_button" = "Poskusi znova";
"mb_data_not_match_title" = "Strani se ne ujemata";
+"mb_document_verification_back_side_scan" = "Optično preberite hrbtno stran dokumenta";
"mb_document_verification_onboarding_back_button" = "Nazaj";
"mb_document_verification_onboarding_cancel_button" = "Preklic";
"mb_document_verification_onboarding_done_button" = "Končano";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/th.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/th.strings
index df8bc79bc..fee3108a8 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/th.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/th.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "สแกนด้านหน้าของเอกสาร";
"mb_blinkid_back_instructions_barcode" = "สแกนบาร์โค้ด";
+"mb_blinkid_blur_detected" = "ประคองให้เอกสารและโทรศัพท์อยู่นิ่ง ๆ";
"mb_blinkid_camera_flip_document" = "พลิกเอกสาร";
"mb_blinkid_camera_high" = "เลื่อนเข้าใกล้";
"mb_blinkid_camera_near" = "เลื่อนออกห่าง";
"mb_blinkid_document_too_close_to_edge" = "เลื่อนเอกสารออกจากขอบ";
+"mb_blinkid_glare_detected" = "เอียงหรือย้ายเอกสารเพื่อลบแสงสะท้อน";
"mb_blinkid_introduction_dialog_message" = "ตรวจสอบว่าเอกสารของคุณมีแสงสว่างเพียงพอ คุณควรมองเห็นทุกส่วนของเอกสารบนหน้าจอกล้อง";
"mb_blinkid_introduction_dialog_message_barcode" = "เอกสารประเภทต่างๆ อาจมีรูปแบบบาร์โค้ดและตำแหน่งที่แตกต่างกัน ดูบาร์โค้ดที่ด้านหน้าและด้านหลังเอกสาร";
"mb_blinkid_introduction_dialog_message_mrz" = "คุณจะพบชุดอักขระยาวที่ด้านล่างของส่วนหน้าหรือส่วนหลังของเอกสาร แบ่งออกเป็น 2 หรือ 3 บรรทัดและคั่นด้วยลูกศร (<< และ >>)";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "วันที่หมดอายุ";
"mb_blinkid_mf_date_of_issue" = "วันที่ออกเอกสาร";
"mb_blinkid_mf_document_number" = "หมายเลขเอกสาร";
+"mb_blinkid_mf_document_subtype" = "ประเภทย่อยของเอกสาร";
"mb_blinkid_mf_employer" = "นายจ้าง";
"mb_blinkid_mf_endorsements" = "การรับรอง";
"mb_blinkid_mf_fathers_name" = "ชื่อบิดา";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "โปรดเริ่มขั้นตอนการสแกนใหม่อีกครั้ง";
"mb_data_not_match_retry_button" = "ลองอีกครั้ง";
"mb_data_not_match_title" = "ด้านข้างไม่ตรงกัน";
+"mb_document_verification_back_side_scan" = "สแกนด้านหลังของเอกสาร";
"mb_document_verification_onboarding_back_button" = "ย้อนกลับ";
"mb_document_verification_onboarding_cancel_button" = "ยกเลิก";
"mb_document_verification_onboarding_done_button" = "เสร็จสิ้น";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/vi.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/vi.strings
index 60f3b1a92..76982e2bb 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/vi.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/vi.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Quét mặt trước\ncủa tài liệu";
"mb_blinkid_back_instructions_barcode" = "Quét mã vạch";
+"mb_blinkid_blur_detected" = "Giữ tài liệu và điện thoại cố định";
"mb_blinkid_camera_flip_document" = "Lật tài liệu";
"mb_blinkid_camera_high" = "Di chuyển gần hơn";
"mb_blinkid_camera_near" = "Di chuyển xa hơn";
"mb_blinkid_document_too_close_to_edge" = "Di chuyển tài liệu từ cạnh";
+"mb_blinkid_glare_detected" = "Nghiêng hoặc di chuyển tài liệu để loại bỏ hiệu ứng phản chiếu";
"mb_blinkid_introduction_dialog_message" = "Đảm bảo rằng bạn giữ cho tài liệu được chiếu sáng tốt. Tất cả các trường tài liệu sẽ hiển thị trên màn hình camera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Các loại giấy tờ khác nhau có thể có định dạng và vị trí mã vạch khác nhau. Hãy xem mặt trước và mặt sau của giấy tờ để tìm mã vạch.";
"mb_blinkid_introduction_dialog_message_mrz" = "Bạn sẽ tìm thấy một chuỗi ký tự dài ở phía dưới mặt trước hoặc mặt sau của giấy tờ. Chuỗi ký tự này được chia thành 2 hoặc 3 dòng và được phân tách bằng mũi tên (<< và >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Ngày Hết hạn";
"mb_blinkid_mf_date_of_issue" = "Ngày Cấp";
"mb_blinkid_mf_document_number" = "Số Giấy tờ";
+"mb_blinkid_mf_document_subtype" = "Tiểu loại văn bản";
"mb_blinkid_mf_employer" = "Chủ lao động";
"mb_blinkid_mf_endorsements" = "Thông tin chứng thực";
"mb_blinkid_mf_fathers_name" = "Tên cha";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Xin vui lòng bắt đầu lại quá trình quét.";
"mb_data_not_match_retry_button" = "Thử lại";
"mb_data_not_match_title" = "Các mặt không khớp";
+"mb_document_verification_back_side_scan" = "Quét mặt sau của tài liệu";
"mb_document_verification_onboarding_back_button" = "Quay lại";
"mb_document_verification_onboarding_cancel_button" = "Hủy";
"mb_document_verification_onboarding_done_button" = "Đã xong";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hans.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hans.strings
index ec926b928..77b8469b6 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hans.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hans.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "扫描文件的\n正面";
"mb_blinkid_back_instructions_barcode" = "扫描条形码";
+"mb_blinkid_blur_detected" = "使文件和手机保持静止不动";
"mb_blinkid_camera_flip_document" = "给文件翻页";
"mb_blinkid_camera_high" = "靠近一些";
"mb_blinkid_camera_near" = "离远一些";
"mb_blinkid_document_too_close_to_edge" = "从边缘移动文件";
+"mb_blinkid_glare_detected" = "倾斜或移动文件以消除反光";
"mb_blinkid_introduction_dialog_message" = "确保文件处于光线充足的地方。所有文件字段应在相机屏幕上可见。";
"mb_blinkid_introduction_dialog_message_barcode" = "文件类型不同,其条形码的格式和位置也可能不同。请在文件的正面和反面查找条形码。";
"mb_blinkid_introduction_dialog_message_mrz" = "您会在文件的正面或反面底部找到一长串字符,这些字符被分成了 2 到 3 行,且以箭头(<< 和 >>)隔开。";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "到期日期";
"mb_blinkid_mf_date_of_issue" = "签发日期";
"mb_blinkid_mf_document_number" = "文件编号";
+"mb_blinkid_mf_document_subtype" = "文档子类型";
"mb_blinkid_mf_employer" = "雇主";
"mb_blinkid_mf_endorsements" = "背书";
"mb_blinkid_mf_fathers_name" = "父亲姓名";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "请重新开始扫描过程。";
"mb_data_not_match_retry_button" = "重试";
"mb_data_not_match_title" = "页数不匹配";
+"mb_document_verification_back_side_scan" = "扫描文件反面";
"mb_document_verification_onboarding_back_button" = "返回";
"mb_document_verification_onboarding_cancel_button" = "取消";
"mb_document_verification_onboarding_done_button" = "完成";
diff --git a/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hant.strings b/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hant.strings
index b21deeb4d..5ebc7e9a1 100644
--- a/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hant.strings
+++ b/BlinkID.xcframework/ios-arm64/BlinkID.framework/zh-Hant.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "掃描文件的正面。";
"mb_blinkid_back_instructions_barcode" = "掃描條碼";
+"mb_blinkid_blur_detected" = "讓文件與手機保持靜止";
"mb_blinkid_camera_flip_document" = "將文件翻面";
"mb_blinkid_camera_high" = "再靠近一點";
"mb_blinkid_camera_near" = "再離遠一點";
"mb_blinkid_document_too_close_to_edge" = "將文件從邊緣移開";
+"mb_blinkid_glare_detected" = "傾斜或移動文件以移除反光";
"mb_blinkid_introduction_dialog_message" = "確保文件光線充足。所有文件欄位在相機螢幕都應清楚可見。";
"mb_blinkid_introduction_dialog_message_barcode" = "不同類型的文件可能會有不同的條碼格式和位置。請在文件正反面尋找條碼。";
"mb_blinkid_introduction_dialog_message_mrz" = "您可以在文件正面或反面的底部找到一長串字元,分為 2 或 3 行,並以箭頭分隔(<< 和 >>)。";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "有效日期";
"mb_blinkid_mf_date_of_issue" = "發行日期";
"mb_blinkid_mf_document_number" = "文件編號";
+"mb_blinkid_mf_document_subtype" = "文件子類型";
"mb_blinkid_mf_employer" = "雇主";
"mb_blinkid_mf_endorsements" = "備註";
"mb_blinkid_mf_fathers_name" = "父親姓名";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "請重新開始掃描程序。";
"mb_data_not_match_retry_button" = "重試";
"mb_data_not_match_title" = "兩面不相符";
+"mb_document_verification_back_side_scan" = "掃描文件背面";
"mb_document_verification_onboarding_back_button" = "背面";
"mb_document_verification_onboarding_cancel_button" = "取消";
"mb_document_verification_onboarding_done_button" = "完成";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/BlinkID b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/BlinkID
index 7cab06bde..0a65353d8 100755
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/BlinkID and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/BlinkID differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/BlinkID-Swift.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/BlinkID-Swift.h
index fceeb09ce..ba633b8d5 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/BlinkID-Swift.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/BlinkID-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef BLINKID_SWIFT_H
#define BLINKID_SWIFT_H
#pragma clang diagnostic push
@@ -317,7 +317,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#elif defined(__x86_64__) && __x86_64__
-// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
+// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef BLINKID_SWIFT_H
#define BLINKID_SWIFT_H
#pragma clang diagnostic push
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
index 30aaf9c97..9bccecad0 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizer.h
@@ -25,6 +25,7 @@
#import "MBEncodeSignatureImage.h"
#import "MBCameraFrames.h"
#import "MBClassAnonymization.h"
+#import "MBStrictnessLevel.h"
@protocol MBBlinkIdMultiSideRecognizerDelegate;
@@ -49,11 +50,33 @@ MB_INIT
@property (nonatomic, nullable, weak) id delegate;
/**
- * Defines whether blured frames filtering is allowed
+ * Skip processing of the blurred frames.
*
* Default: YES
*/
-@property (nonatomic, assign) BOOL allowBlurFilter;
+@property (nonatomic, assign) BOOL enableBlurFilter;
+
+
+/**
+ * Strictness level for blur detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel blurStrictnessLevel;
+
+/**
+ * Skip processing of the glared frames.
+ *
+ * Default: YES
+ */
+@property (nonatomic, assign) BOOL enableGlareFilter;
+
+/**
+ * Strictness level for glare detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel glareStrictnessLevel;
/**
* Defines whether returning of unparsed MRZ (Machine Readable Zone) results is allowed
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
index 2cd37196a..3923a92eb 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdMultiSideRecognizerResult.h
@@ -183,6 +183,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
index 5777bf193..19cc4042d 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdOverlaySettings.h
@@ -49,6 +49,12 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, strong) NSString *firstSideInstructionsText;
+/**
+* Message that is shown while scanning back side of the document.
+* Default: Scan the back side of a document
+*/
+@property(nonatomic, strong) NSString *backSideInstructionsText;
+
/**
* Message that is shown after fornt side of the USDL document is scanned.
* Default: Scan the barcode
@@ -167,6 +173,18 @@ MB_CLASS_AVAILABLE_IOS(13.0)
*/
@property(nonatomic, assign) BOOL showIntroductionDialog;
+/**
+* Instructions for the user to avoid glare.
+* Default: Tilt or move document to remove reflection
+*/
+@property(nonatomic, strong) NSString *glareDetectedMessage;
+
+/**
+* Instructions for the user to avoid blur.
+* Default: Keep document and phone still
+*/
+@property(nonatomic, strong) NSString *blurDetectedMessage;
+
/**
* Designated initializer. Initializes the object with default settings.
*
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
index da9deda1b..64b228db1 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizer.h
@@ -23,6 +23,7 @@
#import "MBEncodeSignatureImage.h"
#import "MBCameraFrames.h"
#import "MBClassAnonymization.h"
+#import "MBStrictnessLevel.h"
@protocol MBBlinkIdSingleSideRecognizerDelegate;
@@ -47,11 +48,33 @@ MB_INIT
@property (nonatomic, nullable, weak) id delegate;
/**
- * Defines whether blured frames filtering is allowed
+ * Skip processing of the blurred frames.
*
* Default: YES
*/
-@property (nonatomic, assign) BOOL allowBlurFilter;
+@property (nonatomic, assign) BOOL enableBlurFilter;
+
+
+/**
+ * Strictness level for blur detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel blurStrictnessLevel;
+
+/**
+ * Skip processing of the glared frames.
+ *
+ * Default: YES
+ */
+@property (nonatomic, assign) BOOL enableGlareFilter;
+
+/**
+ * Strictness level for glare detection.
+ *
+ * Default: MBStrictnessLevelNormal
+ */
+@property (nonatomic, assign) MBStrictnessLevel glareStrictnessLevel;
/**
* Defines whether returning of unparsed MRZ (Machine Readable Zone) results is allowed
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
index 95e1f155d..d455a981e 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBBlinkIdSingleSideRecognizerResult.h
@@ -180,6 +180,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBFieldType.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBFieldType.h
index d13155db4..100bb6a37 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBFieldType.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBFieldType.h
@@ -46,6 +46,7 @@ typedef NS_ENUM(NSInteger, MBFieldType) {
MBFieldTypeSex,
MBFieldTypeVehicleClass,
MBFieldTypeBloodType,
+ MBFieldTypeDocumentSubtype,
MBFieldTypeSponsor
};
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBImageAnalysisResult.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBImageAnalysisResult.h
index 0d4e746b2..f16b92878 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBImageAnalysisResult.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBImageAnalysisResult.h
@@ -32,9 +32,14 @@ MB_CLASS_AVAILABLE_IOS(13.0) MB_FINAL
MB_INIT_UNAVAILABLE
/**
- * Whether the image is blurred.
+ * Whether blur is detected on the image.
*/
-@property (nonatomic, readonly, assign) BOOL blurred;
+@property (nonatomic, readonly, assign) BOOL blurDetected;
+
+/**
+ * Whether glare is detected on the image.
+ */
+@property (nonatomic, readonly, assign) BOOL glareDetected;
/**
* The color status determined from scanned image.
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBStrictnessLevel.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBStrictnessLevel.h
new file mode 100644
index 000000000..a94d0cbc1
--- /dev/null
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBStrictnessLevel.h
@@ -0,0 +1,26 @@
+// Created by Toni Krešo on 23.05.2024.
+// Copyright (c) 2024 Microblink Ltd. All rights reserved.
+
+// ANY UNAUTHORIZED USE OR SALE, DUPLICATION, OR DISTRIBUTION
+// OF THIS PROGRAM OR ANY OF ITS PARTS, IN SOURCE OR BINARY FORMS,
+// WITH OR WITHOUT MODIFICATION, WITH THE PURPOSE OF ACQUIRING
+// UNLAWFUL MATERIAL OR ANY OTHER BENEFIT IS PROHIBITED!
+// THIS PROGRAM IS PROTECTED BY COPYRIGHT LAWS AND YOU MAY NOT
+// REVERSE ENGINEER, DECOMPILE, OR DISASSEMBLE IT.
+
+#ifndef MBStrictnessLevel_h
+#define MBStrictnessLevel_h
+
+/**
+ * MBStrictnessLevel is used to strictness level of filtering performed on images.
+ */
+typedef NS_ENUM(NSInteger, MBStrictnessLevel) {
+
+ MBStrictnessLevelStrict = 0,
+ MBStrictnessLevelNormal,
+ MBStrictnessLevelRelaxed
+
+};
+
+
+#endif /* MBStrictnessLevel_h */
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBVizResult.h b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBVizResult.h
index 5b3e531c5..f933dbeb7 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBVizResult.h
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Headers/MBVizResult.h
@@ -162,6 +162,11 @@ MB_INIT_UNAVAILABLE
*/
@property (nonatomic, readonly, nullable) MBStringResult *issuingAuthority;
+/**
+ * The transcription of the document subtype.
+ */
+@property (nonatomic, readonly, nullable) MBStringResult *documentSubtype;
+
/**
* The sponsor of the document owner.
*/
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Info.plist b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Info.plist
index 708a1ed84..31d23c114 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Info.plist and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Info.plist differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
index 533451628..ac3403d96 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
new file mode 100644
index 000000000..ec5472ccf
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
index 98dc95517..867d927f8 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
index 604a84652..1f10b54b7 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
index e38ffff72..2f5071caf 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
deleted file mode 100644
index acae7f3a3..000000000
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
new file mode 100644
index 000000000..e7db09260
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
index ff7f19835..492df5c53 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
new file mode 100644
index 000000000..3e40abbc0
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
deleted file mode 100644
index cef223403..000000000
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
deleted file mode 100644
index 434ea4abe..000000000
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop and /dev/null differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
index 0bb6337ce..f7825c357 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
index 8c9b065c8..4422c9155 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
index cde6744d7..c7d4f9a96 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
index 3d21ba897..54356b862 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
new file mode 100644
index 000000000..088b375b4
Binary files /dev/null and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
index 9179bbae3..6c86d53d6 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo
index 412065d09..273db66d2 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo
index 05bb4eae7..e5adf7275 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
index 37b51a7de..49841c050 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc
index 9cdf265cf..9be26f86b 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface
index 37b51a7de..49841c050 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
index 7e38464e5..adb998930 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
index 4f3baf51c..02b3d0aa6 100644
Binary files a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
index 7e38464e5..adb998930 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
@@ -1,7 +1,6 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
-// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BlinkID
-// swift-module-flags-ignorable: -enable-bare-slash-regex
+// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
+// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BlinkID
@_exported import BlinkID
import Foundation
import Swift
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/_CodeSignature/CodeResources b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/_CodeSignature/CodeResources
index 76fbee619..270f7c58e 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/_CodeSignature/CodeResources
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/_CodeSignature/CodeResources
@@ -18,7 +18,7 @@
Headers/BlinkID-Swift.h
- cppNOhcwia7yo627uAXF8qeZxlI=
+ l/HtaoSnajbzg/IoMWiF3d21f4g=
Headers/BlinkID.h
@@ -90,15 +90,15 @@
Headers/MBBlinkIdMultiSideRecognizer.h
- wsAfuotkm94qrS5PUZIaPl7OskA=
+ AgtWnmmxHhmxw2LhZW0sUWCP/rc=
Headers/MBBlinkIdMultiSideRecognizerResult.h
- xNubx/IPmJK8DdTa3nHIJDpEcuU=
+ eTtBRfg+5bePAZo/hO8XAwZBEUI=
Headers/MBBlinkIdOverlaySettings.h
- jKmAJZ7/IOXDH1A2p6RSIaPNSgM=
+ s4J4XHDz4v3or9K6jT3B+7zmpg0=
Headers/MBBlinkIdOverlayTheme.h
@@ -114,11 +114,11 @@
Headers/MBBlinkIdSingleSideRecognizer.h
- K4myI+Z7GzD8C8yFetzOUZjpD1g=
+ cBAwmYg/Szb1HbS9CAPkVdSEdxE=
Headers/MBBlinkIdSingleSideRecognizerResult.h
- bIqjaUxxNP28AwpWl53YJSgl2FE=
+ wdY57jCbR1x74z7cehKi9GRmtDA=
Headers/MBCameraFrames.h
@@ -342,7 +342,7 @@
Headers/MBFieldType.h
- Whfv8BNEYT+Z2lPnuO/m8UMeH8g=
+ jo5bkt1S+whetk47vx5kKpPP26U=
Headers/MBFirstSideFinishedRecognizerRunnerDelegate.h
@@ -422,7 +422,7 @@
Headers/MBImageAnalysisResult.h
- eueQ1aKywIaJg8PUmhiJxICLhn4=
+ LI2SXf6VNla5HA56Puqcj1yPIzU=
Headers/MBImageExtensionFactors.h
@@ -672,6 +672,10 @@
i9unxHnxe7ptk+I+/AI9zyDJ+nA=
+ Headers/MBStrictnessLevel.h
+
+ LziAgcT5WgTH2a26eryOdNMqezM=
+
Headers/MBStringProcessingRecognizerRunnerDelegate.h
c2v+SqYtbVxHFjshOAc4iUl3NX8=
@@ -750,71 +754,75 @@
Headers/MBVizResult.h
- Im4D2bWrUCI+Q4ZPIuEi/u2P6os=
+ nbXUwfx4fCAsN+xQKpGPJ0/8ggA=
Info.plist
- e2p9lZlS9Q6zIaxTbqiDAGBBBRk=
+ u306hd9MUWFo7EoLDPzZUVWDp8E=
Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
- ENqVOfK/G0n/x+DFRPpdGP1tumw=
+ MYpkCYKRCGwOYrYUmZBWkoisG8w=
+
+ Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
+
+ FqPcQaEgm6+nofcL9uwLB6Mtlw8=
Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
- HYhGsIFJkrSjqs/2RJ+fwnD6pRs=
+ lVh7+D9D91iU9i2yi6ymLVO2eVA=
Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
- FfBl9hg42ZWDaCiRnDRTht/uOvo=
+ cY5+n2dlLoOT957PGjuQ2Qt1kZA=
Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
- a1xs66HrAGiRaO1zbAg+LYHib/0=
+ 59ZuaOyHwnt+HmzKVg0oZXa6g+s=
- Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
+ Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
- oU79YJI1FUFV9YR6wQgOLyDXbDE=
+ KM5GbBCGQ6FPiURtIcN90ZQRU1E=
Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
- WMzNjZLy82EJejLfRjI+hDWiRKY=
+ xwtGahw4FmTlSaEBs0P4o+W3mNc=
- Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
+ Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
- n7dNQwCfSQDaluk6npXzTnzQXrQ=
-
- Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
-
- uoJ0mcXFO7sFMZ09zm1p5S6gAUY=
+ b79iDMn23cvi8OA5IRUBYiXY4XE=
Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
- d4zl8pzT5m5a2or5WmkdXb18zag=
+ mD8XvrIW17oMLvIF6B7nJaypbGQ=
Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
- w8r/fLf/i3Iyj1Nxa6VwdogOX2U=
+ 1Mzdr1fZZ6hTUvp2FJoJO58DcvE=
Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
- 4lx0ub93bzqtETzhtjYV2t9kmX0=
+ v14noXDnu50iEzHw5R+tMu6HJV4=
Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
- nR2sW0LsPLRVLL7Gxh2xaFibZqo=
+ JYUUoMV2u1fyU3WnINoEABvn68o=
+
+ Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
+
+ VpCcExkIdTx4V7Hf3TSH3YrGFj0=
Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
- Z+Itvy5miqSIaBo62Zlri6a7KeY=
+ i4DcVoqBH/B3FvMpl42K/DW97pc=
Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo
- 2qGinHbAHzJ23wC4TOo2EjSF9cs=
+ CMF9i1GKhHfYxXzX70oN1VwlaJw=
Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo
- Bg/a2V/VjSqh0f47fai0HBlNYsQ=
+ hY789R47MKwhrfl4Ks3WBU7OvTE=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.abi.json
@@ -822,19 +830,19 @@
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
- Qr6mXnuuCM+qO8XvCJ0vNksfor4=
+ ueUDj7UytBBdKfDgGKVoqrMlKno=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc
- F4fu71icgOENfvfvjkDM8BRGIHw=
+ Bl4pnzWVWEuMwH57WBg3V5+j1Jg=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface
- Qr6mXnuuCM+qO8XvCJ0vNksfor4=
+ ueUDj7UytBBdKfDgGKVoqrMlKno=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftmodule
- auteSR/4f10vV5N2OW6zqZXtHZI=
+ z5zcSgwoqFQzYgY84nVTbqSdZHQ=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.abi.json
@@ -842,19 +850,19 @@
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
- 02swWEkOHm8aDv3RauDeqMaXA0Q=
+ LrFL0zqjpkqq+SdMp5eryy4Re2M=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
- ZqZS2kApKR5os9bkzA/oUXS6s+4=
+ WJTdsBMXNRxI/aWaRPecJ+599Eg=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
- 02swWEkOHm8aDv3RauDeqMaXA0Q=
+ LrFL0zqjpkqq+SdMp5eryy4Re2M=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
- VuozZWLKYra/RWzwNqu/tD2cCVk=
+ tbuKlTNFJs0bEGv7xE4N5gSlw2c=
Modules/module.modulemap
@@ -1126,7 +1134,7 @@
ar-AE.strings
- pQziLN8jRIR9Tix1oHA2+Nsurpk=
+ E49WcsJnnODXpLr/BfR/j4dgoBo=
arrow.png
@@ -1286,7 +1294,7 @@
cs.strings
- iP9uiRQj5L83G7If2Kfqz180LQ0=
+ K4+Wu4mTdHioZdUMQ1TkD4mHgQU=
ctl-error.png
@@ -1338,7 +1346,7 @@
de.strings
- HLtGnQLN6dwfLYlv4ArDRCwyYtk=
+ /7wlpR5KeA5efr2etFDS8N/b40w=
diners.png
@@ -1378,11 +1386,11 @@
en.strings
- Sueg2Po7ixR2VJ+29ERXCHzTIeg=
+ BzcS8phfOkEbuw3O9GuL5PGR5M0=
es.strings
- MOZnRkSiVUwZwYWWtMBhrLwYHHA=
+ B8kmtbInS7Mpug6gqsK0rAldzOw=
face_detector_model.zzip
@@ -1390,11 +1398,11 @@
fil.strings
- as44RkKWPSXB/OfIVtYG6V35IeU=
+ SEkWoNfXY9ImQcYlelB/PEhVBYM=
fr.strings
- tq30jCUNgvn8T5lwE4xJ0L3YUys=
+ P9FoloAMzgYOTq9XqrfNTXeIl30=
harsh-light-instruction-dark.png
@@ -1422,15 +1430,15 @@
he.strings
- I7hA5ymVxCEckDxFp45C/YHw/Lo=
+ UIcLQSu6/jirgL3td09ESySa/hM=
hr.strings
- S9gkCugBSfh2+H9WcNPGyRg98SE=
+ QQ4uAD7myNhOorakPEpJpzH85O0=
hu.strings
- 4pU6PcJR/WDgGCR8Wm1LmIs8Wdo=
+ uVzLaHWZ2NK54+0ZKIX+xF6YTU0=
icBackSide.png
@@ -1518,7 +1526,7 @@
id.strings
- zBkXMnDAQFQ9YOmQPVP3Yo87Bjo=
+ 61bqVBbUI6VO/CrB+gvfJu+w10M=
id_back_wide.png
@@ -1546,7 +1554,7 @@
it.strings
- 1HfC7xHgQgnt12/GHbsG9mv1b0k=
+ vkFNBx92U+zI7g6GvHseutdkTdk=
jcb.png
@@ -1614,7 +1622,7 @@
ms.strings
- vScNVF+GJGQGJNYQxa4tZB0okZ8=
+ WaqFlZDs3LuVvUtra3lwBUppJfY=
need-help-tooltip-dark.png
@@ -1642,15 +1650,15 @@
nl.strings
- zF7dVK3xU5gNTf3lwmpE+rjzJp0=
+ JcS/H7BSdWqNU9gJYxo1DSuLlfk=
pt.strings
- SSZW/n+M8WbARJavTQLdlmU/hWo=
+ 6CiwKMjaIWqQoNVa4t5CjBGxdk4=
ro.strings
- gxiYbwA5aU+xmBzBRt3RODx6yhw=
+ 6mk3M0qI4YpV+IN6narNwdCAC2A=
scan_line_white.png
@@ -1666,15 +1674,15 @@
sk.strings
- renSqPp6jrGx0G1EygycB5A0BHY=
+ wTtyo/U/sS74lpsBKQ52B+zepM0=
sl.strings
- YVJWHjXN2eVpanfHOQB8w1SNyH4=
+ QmL3e0AT4ZB1XMxGxOZGzz7XWjE=
th.strings
- 7BS5gK95VZ+1Dz1fJOfT831nRUE=
+ 6Lkge4D/g20eVGYhjJkROAX3CoE=
torchoff.png
@@ -1722,7 +1730,7 @@
vi.strings
- WBsC6VGVWS0wb56UQwZ2Id3SNko=
+ ZBIoLRS2WL19D5P9Q4GzjCPzCSw=
visa.png
@@ -1738,11 +1746,11 @@
zh-Hans.strings
- y005wuEVQ8WKRcFvGxgePBSIAgw=
+ REPSbaOCYx6f48+2HVfucnJe7b4=
zh-Hant.strings
- LaEsWbG2aJhbotMb+jO47FlzKJU=
+ mLgkBoUgS/nyRXjobfVQrTOzfDo=
files2
@@ -1772,7 +1780,7 @@
hash2
- QUPOCCwwqMNuucfAeSey/wifuYJLmJ8hYq4Hxa1ymaU=
+ eMf2O4V6n2Jur42HwSalsFMOXAct2MVjl5DsxukEEes=
Headers/BlinkID.h
@@ -1898,21 +1906,21 @@
hash2
- WlPFHsRasZDxDWZ1s8vM2bD/YMuKNmlwAOgcBZJAv3Q=
+ +SLpfJIas01ce09shqlgd4XNBC1f8tIscXrev6WKrMA=
Headers/MBBlinkIdMultiSideRecognizerResult.h
hash2
- /kXoH/NEXgdsUKAUXaZpgIRTmJLzamqK6aqh+lv4jJU=
+ OEWZhK7qNrzzmrgNPRPbMdLqF+ivax/YoRoXyIBO6Xo=
Headers/MBBlinkIdOverlaySettings.h
hash2
- Pi6wGvD4++Lg0dWGpvej+n1dBWxrwKCuPJEXCENLJHM=
+ pgaYrMiOV50BgdPunpr0QakGfzc8npESCyA2B/0gDrw=
Headers/MBBlinkIdOverlayTheme.h
@@ -1940,14 +1948,14 @@
hash2
- +h9jFiYbSrzrRi9IY8qp1ml4L36DdqFMtR9zVI6xPLA=
+ wuF1k9LixTtlPIKmmeGT5bxq+VhKkHnPf+IyLGiAj/E=
Headers/MBBlinkIdSingleSideRecognizerResult.h
hash2
- Q8F464KGGgCX6GrQ19NeaXB9BfGd8rpucQURKtq2J5A=
+ akMFGPmLgjKBZPMYfSYb669F6egXWAHebo3zIOg3r24=
Headers/MBCameraFrames.h
@@ -2339,7 +2347,7 @@
hash2
- jlkPmUudok+vuD5ZlyBziowANo/K6C+Jg0+0dpROdFc=
+ Ss668qwo8sqIIsDUJgF9ArcbqWEBjjndTpEqPK4XJbE=
Headers/MBFirstSideFinishedRecognizerRunnerDelegate.h
@@ -2479,7 +2487,7 @@
hash2
- 2QHuZ970PH+gdITyHQNbLsL06waHtMOpX+Q1DZ6j97k=
+ ch2ThSCJkwn4CDLJjWZ9RItt0QTlbnztz1kWB+fZ8o8=
Headers/MBImageExtensionFactors.h
@@ -2916,6 +2924,13 @@
27JPw2T6BHGPfOK1rhOYuLM2o5DS7i70NsJ9HI7Y+yY=
+ Headers/MBStrictnessLevel.h
+
+ hash2
+
+ XVOlwvbed+TvSW0BrTrs4UErqJZ8Zdie2gUyLgj4chA=
+
+
Headers/MBStringProcessingRecognizerRunnerDelegate.h
hash2
@@ -3053,112 +3068,119 @@
hash2
- NIrk6cQQwUuSlDJ8NrFXJWBFm3qQAFwHnwJyMrSpfJI=
+ 1rZ8NsOib3zlW32j+so4LNnl1m3DXBcJXXcmTpX5spc=
Model_07c7ab860e77ec2e92bb822f6d62424b8595a5beb4340f6b2f7f6a4cffa5d050.strop
hash2
- Vmxnl+2+wH6yPeKmQ6fDV0zwDyDvDl2A8O2BeHYeCI8=
+ oKtuRUkQR3Jk1NZ474Jj165Jr+EFYgt+Geo0ULUFGzg=
- Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
+ Model_277e866ac28502c8fb0b5e11ec940b078fb6f5a11068367c59b856dc9d8e8c62.strop
hash2
- 7cOyOoYQHlVVrxDG/CCbQ87g3vX3xY5uciTaENNEOEo=
+ lVVBE6gvEBwHp0ItFpYtlQLTcnTScT8tNqCWj1//8+s=
- Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
+ Model_2880751121560047e6dc571bc8ff4683aeb863886f7c0789234594ceb1e23577.strop
hash2
- LhnRxLbjctaxmhlH1FMgeX9T4C8rvu1LIsfV4MAOroU=
+ kZFam3nfTOWdiXAydrSIsrSl1b6fVJfogG8IOBCGqeI=
- Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
+ Model_36d8e94f4cb46097bd6b7385f2aa91fcdee1a5fefeec59e56d1b9e82c94b00a7.strop
hash2
- HAKF7+LS7kqWEgAUxZsVJruuacnyjq+UqUw5xHdNHCQ=
+ QH0NCIZ6hX5r4Yi9Ok1o+GN6rYClaZtypoaK18lfBNk=
- Model_500f4403bf221021bb85c3e758d59f69841635787f6f4201a4ffe5e68733f8bb.strop
+ Model_473ac5f5e256623c0a6b282698c1f1b033b9fb5359e6aa142e9fb4a4022afe4e.strop
hash2
- 4QPYcrJzrqbr8KkIem5XWOXlbLY2/BrcnL5h9B2LSvc=
+ B9WUGUjbtaGssfXV/rKmIky5apBroO3lS0IF68rcdvQ=
- Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
+ Model_6398ea2c289bf608aa301e04e30eabced3fe01d1cba34bab99916d906e10f2db.strop
hash2
- rYSjfYU2ugW/K+uT95X6V/qdeRP+z8xnpU5UiyYBsjw=
+ fBl/mwwuvzn6Svt/UbbarGXj1Ja1pPob6RBji98+Sk8=
- Model_80edc20a6f8f633671d2dccf75bb3efc1dc4ffc8873c060c7fad88e4cd22fb5b.strop
+ Model_63d9b8a72214cdbdfc3eee270a04e2a90adfaf7114fe68898130fa61bac7189d.strop
hash2
- /KfYhqNgLqw7TGORDfSS0j9xy8z/1cLhCLjuK2JK5zI=
+ 4YV7qJuvmlaocxj/UlA+a2rkuk1u2/Vkw2FByDE869Y=
- Model_a0fe6f57f1b9be97d6d3c0e8df49805a1b94e638413127c6edd3ce6b7c622e07.strop
+ Model_6d3b0a2f8d8c0cf75ff6af966b6ed47f4838de82805da2d29cda784f74a90373.strop
hash2
- tpunEyxSzi0a0uzRmpMGzyH3tT9kR9lf9MLDdl24D1Q=
+ MS3OvQNVNCXboyi0Sk+ONsXjSMGY3oH483wEKEdQTho=
Model_b452fd3cd4037080cfcb4c423dba5bc58c8ceafc28427fdf9c5778fb353f088e.strop
hash2
- 3J4HuSrqeVXO39HBavUA1VjtKpg8DUOL402sfVrEkwQ=
+ 6OT09TPN5OjFvsCBB/z1822ttZSNBwkbOLs6azvq+eE=
Model_d2bcaf18d17504513598e04f472c035b3d4f22d8653d5a79c05b4508a4b547b3.strop
hash2
- DG4v29CGEFSq3bUXXOQznDbSMnSDdp5VPJzyfQltPYY=
+ m2w1eeHqNOiPc2dOGE5l32uOZ+Mn379PdCW3DH8/6Oo=
Model_e4f1f62f68ec44b71ecad3fb3f3b48fe3790beb5ab325611e17d63af06e9f644.strop
hash2
- /jcoh3VeohNBtP/0F1Y6PYAbUw0wkOXc9R8Lnfpy2uY=
+ pxI9tS49W3Iy4NF1/cxJ4c4a6dFm79eT0VVHg8W5fnM=
Model_ed586fd6ca47c8eebb513c4ffaaacc2c54e92162b145062d7022519fba0911de.strop
hash2
- I3oFYpGZFYetaOCSmZDqZs6h1uIlVv9bTI/DcPGQ/mQ=
+ bRCGzUOuSnIEIOryDBMG1fcGDvf6sQhxFkf+OA6LY0w=
+
+
+ Model_f2874f5766b779c063dbe30467979163497dc4b29c43bab23d70c798ee32993a.strop
+
+ hash2
+
+ 6/+rZGxUfDKao9TDFU+900Vhmu+iTdmUkAt0aqv+OGQ=
Model_faf688599c7e261a2a7404730f69ed029115bb0d3e7a3657731d88e701720efe.strop
hash2
- foSbnnmjCuvxTw3fz0HZ+h4j9nkAKgWdRjvN2ETizu8=
+ XgijMwOm564BkXKXFfr5ELGsf1Vhaa88rcp4wjLru8U=
Modules/BlinkID.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo
hash2
- bfZgAPhJzD6WXubkUYQNJEzctqNES+A+R2UQ1UQwd7k=
+ p6ooinvubh6Tc5aCK1rTbM2v3UKJ2a0DXQb4MCJkc6o=
Modules/BlinkID.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo
hash2
- UrnNwhyZo9o+jPqylc6HxR/6/BjOaMOtQkRgdvM9f6E=
+ PTleEC5rObRqYDH9qh8Ayn0gMPcU6IWaKKNOWsDtW0Q=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.abi.json
@@ -3172,28 +3194,28 @@
hash2
- WIXrEiILsYKXQ0dQjYMmJq0oFOZEOJSGIbFbElF/ud4=
+ zUhHt6oPW0/1v0BGGSnawxJgOcNltWmqEBKdYxwK1tI=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftdoc
hash2
- YIKT8Ypezd88eRhhneW2Lf2ezBHGy117Ud8aV+qkVN0=
+ 3KeWyPVCSOvXAGtiHij2UWO1fHFiq3Hs1znttBv6R/o=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftinterface
hash2
- WIXrEiILsYKXQ0dQjYMmJq0oFOZEOJSGIbFbElF/ud4=
+ zUhHt6oPW0/1v0BGGSnawxJgOcNltWmqEBKdYxwK1tI=
Modules/BlinkID.swiftmodule/arm64-apple-ios-simulator.swiftmodule
hash2
- PgI66c4eNmSjTKZB+D5fweB+XUgeREgY8gy2uORS/dE=
+ a7WjKimrWDEdNMbk2REJVYYLQV//EBfyEiO0MaoyTqo=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.abi.json
@@ -3207,28 +3229,28 @@
hash2
- TlPfPg/BUiuWKCEDqNLnn3tsRb9D+zYAL443bFcrupQ=
+ YCz27oAvteaoQLCphJ/zf2kvQSxYMXjqKIMEZ2P1RsY=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
hash2
- w29jrnt/vcbQsGhw/jdeo0sCmqjTHacC+6xhC5lmdDY=
+ zsXU/TWrPLXTZEfSkayM3semOQp6tDSTbS6ypxIT+3Q=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
hash2
- TlPfPg/BUiuWKCEDqNLnn3tsRb9D+zYAL443bFcrupQ=
+ YCz27oAvteaoQLCphJ/zf2kvQSxYMXjqKIMEZ2P1RsY=
Modules/BlinkID.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
hash2
- Yyr3VtZBIOc53L+v45jYUvB0o8aQIbdqG8eZ7lM7LqQ=
+ KXKGkIpi+YDXbOB5RjzL0ECDYptfwgNn5klQcU+tYs8=
Modules/module.modulemap
@@ -3704,7 +3726,7 @@
hash2
- mwFJ7/7du1Z5pW3d8cG7xvrK44i3GHFnH4FYLbzhMfU=
+ r2yw/BwXDrttpFSuPkFGksm6p0sVZuA5qOka8D4Va9w=
arrow.png
@@ -3984,7 +4006,7 @@
hash2
- KU/xzx79BtF+JcCDKO5vtZ6Kb4/s/FHMYa/fFxq2kUk=
+ h9CeYhHvG/J+GT/Uwp1LgjueDOVaJd/c00p+HWTX+jU=
ctl-error.png
@@ -4075,7 +4097,7 @@
hash2
- 53TQMYEfeDHeI7G4piphzKqR8qIxj9GnCI43Y/QBZr0=
+ 5abBiK+K4HVUdlDdvI2zmppcMiEEKSgTTKQpROxnaoY=
diners.png
@@ -4145,14 +4167,14 @@
hash2
- niAIa5QtVq1xRjOsm0ioHWPjSkpUmsQyPTnZhkeOVws=
+ bqVe2sKe/KuvYU1UkG6dNF2gvRhPXianNV1sXHWNWxM=
es.strings
hash2
- lqv+w6TCc5aGWpPYj1jOWAJXHprjEJD3/Dqaz+SQDqI=
+ PUSNYi1y/DG4yq9zb7WmaNOVpRUf0oCNXEICJCOY4jg=
face_detector_model.zzip
@@ -4166,14 +4188,14 @@
hash2
- jlOs2qz5LpfiU2Bp23UC8itQZe0RRpGbEIqsqb4JXi8=
+ SojH8h2Od/pbqODwpKYxSp58vRHpyhnt0Gy4Ztm2JMY=
fr.strings
hash2
- 4lcQGp2tBHHbNssUpH5pGMMuaUSqk91v3h/90BUu5ZU=
+ esUD8hol+n9BBouCNzSFu3iANtMW7ELtGqSOLMLA2zw=
harsh-light-instruction-dark.png
@@ -4222,21 +4244,21 @@
hash2
- mOIwJf+ZXh0bOyomJC8vTrbGPO0405jgZOL5rTbyG4o=
+ tdAXwqtBXBxFPC0Ux9Yv/bBw9ep17ZkLy7TT7erkWCU=
hr.strings
hash2
- dx6fPA6n8YzZ4+VHvUAOIkVgXrr74TZ2DCQhaVjMcT8=
+ whFGG5laJuStNNCgWK9T7XuWtAlaAX+KddIdEStBhTc=
hu.strings
hash2
- ZKZWLF7y+Z4EgZQGqxX3DHo3fxxJ95nWBY02zvMc4oI=
+ Po5UaeR+k4fC7VkIrsP7sc9EZYOtHXAcmvU2tijL6v4=
icBackSide.png
@@ -4390,7 +4412,7 @@
hash2
- K3ZqUNNF1N2k07qyK8XtSZQzlC9oxkUcQxoHuzvKGXo=
+ I0IeBfJ0JiDNxipyRzDKZJaF0g2UzjjxrznJEoRbwZo=
id_back_wide.png
@@ -4439,7 +4461,7 @@
hash2
- MI2Wkt9mpbS1fOCTPWfvQgVwhU8T8FVWzXDn9/irExo=
+ PfSAwcldTpd+9IYZ+Co8RVWDnD48L17Xgrbk7YL29aQ=
jcb.png
@@ -4558,7 +4580,7 @@
hash2
- QyMsc6fmRSJ0eW/KZwmjkSdboXTVvku6PscfKyAp+L0=
+ tO3sJS+yHVv0SHp1r8EwcSYmXEp9oX3MNj5EG9dDTmM=
need-help-tooltip-dark.png
@@ -4607,21 +4629,21 @@
hash2
- a86rg35t5EJhfMm+0tyL+oZYl+MjM6+kp2JprsR8lKc=
+ fwinLocdQ+MxPDsv89faMHAnYoO/Ei1yScle8z7dpC0=
pt.strings
hash2
- a0q7fjpIMEPj7DsMUUqUvo//9NydrBOT5cxp40UloSs=
+ OK8/Bm5ugJLSSHsqtS+Xr79Zj/lYfzsv1rVW7qh5dIE=
ro.strings
hash2
- v2vk9JDSEbioh94Ol8H6DIsVksqhS5C6i1E4mrG9KIg=
+ rF/DhER0BeBrTSR5HCPxq+xAQ62pX2g6IZjUML1Iuww=
scan_line_white.png
@@ -4649,21 +4671,21 @@
hash2
- u6OyS8OG9mQG3GqRBxkydMoW7bNXSs2ufDTUXtBIxQw=
+ V8c5/Dsqo1zY3SKbNebmPLyvZxLQlD58RaiK4xgo82E=
sl.strings
hash2
- v94f85U2LU5YRj0OQoF7DYsyYRU1MF2UFI843a3cb9o=
+ PaGd76NhhZKfJUhPUkzf9m+fATCaU33+1F6KF6ej7l4=
th.strings
hash2
- 2/5UThv4gz/cMCAdyWt5bAsNk6PQKizudiUis+HSZ3E=
+ 2PNeuB9DBCcxtZ9ORC2JomzPCX/dKGt6jZsbhZ2OA5M=
torchoff.png
@@ -4747,7 +4769,7 @@
hash2
- FqXnIaJaHA7kF9ofdZtQcAJl4v5JpyaxTO57fZFbF6c=
+ wdBEIAZYGrr2DpcTE/RpI2GcPh7aUq2mqzdLfwJzHAo=
visa.png
@@ -4775,14 +4797,14 @@
hash2
- 75dLBbHO38GM1le97227DcpsW9DnhyfYLPLrRMxh99U=
+ ECF5Ia+BZnyQjzFPZicAH+nED/fL458assufLwERz50=
zh-Hant.strings
hash2
- lDKzW+aSi6bt46G16UTfo69E1k6rsQOrYdn34Cfpo/o=
+ gRbOLPgDQbSogO5Ak52ZQ6n69GiRsVwjdPuNbkAiV6g=
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ar-AE.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ar-AE.strings
index 2721c3147..ed2a8af26 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ar-AE.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ar-AE.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "مسح وجه المستند";
"mb_blinkid_back_instructions_barcode" = "امسح الرمز الشريطي";
+"mb_blinkid_blur_detected" = "لا تحرّك المستند ولا الهاتف";
"mb_blinkid_camera_flip_document" = "اقلب المستند";
"mb_blinkid_camera_high" = "انقل إلى موضع أقرب";
"mb_blinkid_camera_near" = "انقل إلى موضع أبعد";
"mb_blinkid_document_too_close_to_edge" = "أبعد المستند عن الحافة";
+"mb_blinkid_glare_detected" = "أمِل المستند أو حرّكه لتتخلص من الانعكاس";
"mb_blinkid_introduction_dialog_message" = "تأكد من إبقاء المستند مضاءً بشكل جيد. كما يجب أن تكون جميع خانات المستندات واضحة على شاشة الكاميرا.";
"mb_blinkid_introduction_dialog_title" = "تأكد من وضوح جميع البيانات";
"mb_blinkid_mf_additional_address_information" = "معلومات العنوان";
@@ -55,6 +57,7 @@
"mb_data_not_match_msg" = "يُرجى بدء عملية المسح الضوئي من جديد.";
"mb_data_not_match_retry_button" = "إعادة المحاولة";
"mb_data_not_match_title" = "الجانبان غير متطابقين";
+"mb_document_verification_back_side_scan" = "المسح الضوئي للوجه الخلفي من المستند";
"mb_document_verification_onboarding_back_button" = "عودة";
"mb_document_verification_onboarding_cancel_button" = "إلغاء";
"mb_document_verification_onboarding_done_button" = "انتهى";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/cs.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/cs.strings
index 1c1da4da6..4604425ae 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/cs.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/cs.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Naskenujte přední\nstranu dokumentu.";
"mb_blinkid_back_instructions_barcode" = "Naskenujte čárový kód";
+"mb_blinkid_blur_detected" = "Držte dokument a telefon v klidu";
"mb_blinkid_camera_flip_document" = "Otočte dokument";
"mb_blinkid_camera_high" = "Kousek blíž";
"mb_blinkid_camera_near" = "Kousek dál";
"mb_blinkid_document_too_close_to_edge" = "Přesunout dokument dál od kraje";
+"mb_blinkid_glare_detected" = "Nakloňte nebo přesuňte dokument pro odstranění odrazů";
"mb_blinkid_introduction_dialog_message" = "Ujistěte se, že je dokument dobře osvětlen. Na obrazovce fotoaparátu by měla být vidět všechna pole dokumentu.";
"mb_blinkid_introduction_dialog_message_barcode" = "Různé typy dokumentů se mohou lišit formátem a umístěním čárového kódu. Kód může být jak na přední, tak na zadní straně dokumentu.";
"mb_blinkid_introduction_dialog_message_mrz" = "Ve spodní části přední či zadní strany dokumentu najdete dlouhý řetězec znaků. Bude rozdělený do 2 nebo 3 řádků a přerušovaný šipkami (<< a >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum vypršení platnosti";
"mb_blinkid_mf_date_of_issue" = "Datum vydání";
"mb_blinkid_mf_document_number" = "Číslo dokumentu";
+"mb_blinkid_mf_document_subtype" = "Podkategorie dokumentu";
"mb_blinkid_mf_employer" = "Zaměstnavatel";
"mb_blinkid_mf_endorsements" = "Potvrzení";
"mb_blinkid_mf_fathers_name" = "Jméno otce";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Spusťte proces skenování znovu.";
"mb_data_not_match_retry_button" = "Opakovat";
"mb_data_not_match_title" = "Strany neodpovídají";
+"mb_document_verification_back_side_scan" = "Naskenujte zadní stranu dokumentu";
"mb_document_verification_onboarding_back_button" = "Zpět";
"mb_document_verification_onboarding_cancel_button" = "Zrušit";
"mb_document_verification_onboarding_done_button" = "Hotovo";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/de.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/de.strings
index 1a012d5dd..4a5fc6cb3 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/de.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/de.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scannen Sie die Vorderseite \n eines Dokuments";
"mb_blinkid_back_instructions_barcode" = "Scannen Sie den Barcode";
+"mb_blinkid_blur_detected" = "Dokument und Telefon ruhig halten";
"mb_blinkid_camera_flip_document" = "Drehen Sie das Dokument um";
"mb_blinkid_camera_high" = "Kommen Sie näher";
"mb_blinkid_camera_near" = "Bewegen Sie sich weiter weg";
"mb_blinkid_document_too_close_to_edge" = "Verschieben des Dokuments vom Rand aus";
+"mb_blinkid_glare_detected" = "Dokument neigen oder bewegen, um die Spiegelung zu beseitigen";
"mb_blinkid_introduction_dialog_message" = "Sorgen Sie dafür, dass das Dokument gut belichtet ist. Alle Bereiche des Dokuments sollten auf dem Kamerabildschirm sichtbar sein.";
"mb_blinkid_introduction_dialog_message_barcode" = "Verschiedene Arten von Dokumenten können unterschiedliche Barcodeformate und -positionen haben. Suchen Sie auf der Vorder- und Rückseite des Dokuments nach einem Barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "Am unteren Rand der Vorder- oder Rückseite des Dokuments finden Sie eine lange Zeichenfolge. Sie ist in 2 oder 3 Zeilen unterteilt und durch Pfeile (<< und >>) getrennt.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Ablaufdatum";
"mb_blinkid_mf_date_of_issue" = "Ausstellungsdatum";
"mb_blinkid_mf_document_number" = "Ausweisnummer";
+"mb_blinkid_mf_document_subtype" = "Belegunterart";
"mb_blinkid_mf_employer" = "Arbeitgeber";
"mb_blinkid_mf_endorsements" = "Billigungen";
"mb_blinkid_mf_fathers_name" = "Name des Vaters";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Bitte starten Sie den Scanvorgang erneut.";
"mb_data_not_match_retry_button" = "Wiederholen";
"mb_data_not_match_title" = "Seiten passen nicht zusammen";
+"mb_document_verification_back_side_scan" = "Scannen Sie die Rückseite des Dokuments";
"mb_document_verification_onboarding_back_button" = "Zurück";
"mb_document_verification_onboarding_cancel_button" = "Abbrechen";
"mb_document_verification_onboarding_done_button" = "Fertig";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/en.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/en.strings
index ac1eedf16..747520eae 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/en.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/en.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
-"blinkid_generic_message" = "Scan the front side of the document";
+"blinkid_generic_message" = "Scan the front side of a document";
"mb_blinkid_back_instructions_barcode" = "Scan the barcode";
+"mb_blinkid_blur_detected" = "Keep document and phone still";
"mb_blinkid_camera_flip_document" = "Flip to the back side";
"mb_blinkid_camera_high" = "Move closer";
"mb_blinkid_camera_near" = "Move farther";
"mb_blinkid_document_too_close_to_edge" = "Move the document from the edge";
+"mb_blinkid_glare_detected" = "Tilt or move document to remove reflection";
"mb_blinkid_introduction_dialog_message" = "Make sure you keep the document well lit. All document fields should be visible on the camera screen.";
"mb_blinkid_introduction_dialog_message_barcode" = "Different types of documents may have different barcode formats and locations. Look at the front and back of the document for a barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "You’ll find a long string of characters at the bottom of the front or the back of the document. It’s divided into 2 or 3 lines and separated by arrows (<< and >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Date of expiry";
"mb_blinkid_mf_date_of_issue" = "Date of issue";
"mb_blinkid_mf_document_number" = "Document number";
+"mb_blinkid_mf_document_subtype" = "Document Subtype";
"mb_blinkid_mf_employer" = "Employer";
"mb_blinkid_mf_endorsements" = "Endorsements";
"mb_blinkid_mf_fathers_name" = "Fathers name";
@@ -63,11 +66,12 @@
"mb_data_not_match_msg" = "Please start the scanning process over.";
"mb_data_not_match_retry_button" = "Retry";
"mb_data_not_match_title" = "Sides don’t match";
+"mb_document_verification_back_side_scan" = "Scan the back side of a document";
"mb_document_verification_onboarding_back_button" = "Back";
"mb_document_verification_onboarding_cancel_button" = "Cancel";
"mb_document_verification_onboarding_done_button" = "Done";
"mb_document_verification_onboarding_next_button" = "Next";
-"mb_error_mandatory_field_missing" = "Keep the document fully visible";
+"mb_error_mandatory_field_missing" = "Keep document fully visible";
"mb_flashlight_glare_tooltip" = "Watch out for flashlight glare.\nGently move your ID around to avoid it.";
"mb_network_error" = "Network error";
"mb_recognition_timeout_dialog_message" = "Unable to read the document. Please try again.";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/es.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/es.strings
index 2d4f990f5..e4e991bf9 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/es.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/es.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Escaneo de la parte frontal\nde un documento";
"mb_blinkid_back_instructions_barcode" = "Escanea el código de barras";
+"mb_blinkid_blur_detected" = "No mueva ni el documento ni el teléfono ";
"mb_blinkid_camera_flip_document" = "Dele la vuelta al documento";
"mb_blinkid_camera_high" = "Acercarse";
"mb_blinkid_camera_near" = "Alejarse";
"mb_blinkid_document_too_close_to_edge" = "Mueva el documento desde el borde";
+"mb_blinkid_glare_detected" = "Incline o mueva el documento para evitar los reflejos";
"mb_blinkid_introduction_dialog_message" = "Asegúrese de mantener el documento bien iluminado. Todos los campos del documento deben ser visibles en la pantalla de la cámara.";
"mb_blinkid_introduction_dialog_message_barcode" = "Cada tipo de documento puede tener un formato y una ubicación de código de barras diferentes. Busque el código de barras tanto en la parte frontal como en el reverso del documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "En la parte inferior de la parte frontal o del reverso del documento encontrará una larga cadena de caracteres. Se divide en 2 o 3 líneas y está separada por flechas (<< y >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Fecha de caducidad";
"mb_blinkid_mf_date_of_issue" = "Fecha de emisión";
"mb_blinkid_mf_document_number" = "Número de documento";
+"mb_blinkid_mf_document_subtype" = "Subtipo de documento";
"mb_blinkid_mf_employer" = "Empleador";
"mb_blinkid_mf_endorsements" = "Avales";
"mb_blinkid_mf_fathers_name" = "Nombre del padre";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Por favor, inicie el proceso de escaneo de nuevo.";
"mb_data_not_match_retry_button" = "Reintentar";
"mb_data_not_match_title" = "Los lados no coinciden";
+"mb_document_verification_back_side_scan" = "Escanea la parte de atrás del documento";
"mb_document_verification_onboarding_back_button" = "Atrás";
"mb_document_verification_onboarding_cancel_button" = "Cancelar";
"mb_document_verification_onboarding_done_button" = "Hecho";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fil.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fil.strings
index c59c93806..d1ee446f8 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fil.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fil.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "I-scan ang unahang bahagi ng dokumento";
"mb_blinkid_back_instructions_barcode" = "I-scan ang barcode";
+"mb_blinkid_blur_detected" = "Panatilihing hindi gumagalaw ang dokumento at telepono";
"mb_blinkid_camera_flip_document" = "Baligtarin ang dokumento";
"mb_blinkid_camera_high" = "Ilapit pa";
"mb_blinkid_camera_near" = "Ilayo pa";
"mb_blinkid_document_too_close_to_edge" = "Iurong ang dokumento mula sa gilid";
+"mb_blinkid_glare_detected" = "I-tilt o iusog ang dokumento para maalis ang reflection";
"mb_blinkid_introduction_dialog_message" = "Tiyaki na lubos na naiilawan ang dokumento. Dapat nakikita sa screen ng camera ang lahat ng field ng dokumento.";
"mb_blinkid_introduction_dialog_message_barcode" = "Maaaring may iba't ibang format at lokasyon ng barcode ang iba't ibang uri ng mga dokumento. Tumingin sa harap at likod ng dokumento para sa isang barcode.";
"mb_blinkid_introduction_dialog_message_mrz" = "Makakakita ka ng mahabang string ng mga character sa ibaba ng harap o likod ng dokumento. Nahahati ito sa 2 o 3 linya at pinaghihiwalay ng mga arrow (<< at >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Petsa ng Pag-expire";
"mb_blinkid_mf_date_of_issue" = "Petsa ng Pag-isyu";
"mb_blinkid_mf_document_number" = "Numero ng Dokumento";
+"mb_blinkid_mf_document_subtype" = "Subtype ng Dokumento";
"mb_blinkid_mf_employer" = "Tagapag-empleyo";
"mb_blinkid_mf_endorsements" = "Mga pag-endorso";
"mb_blinkid_mf_fathers_name" = "Pangalan ng tatay";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Simulan ang proseso ng pag-i-scan.";
"mb_data_not_match_retry_button" = "Subukan ulit";
"mb_data_not_match_title" = "Hindi tugma ang mga gilid";
+"mb_document_verification_back_side_scan" = "I-scan ang likurang bahagi ng dokumento";
"mb_document_verification_onboarding_back_button" = "Bumalik";
"mb_document_verification_onboarding_cancel_button" = "Kanselahin";
"mb_document_verification_onboarding_done_button" = "Tapos na";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fr.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fr.strings
index 09fe7fcc1..0ca0a013a 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fr.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/fr.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Numérisez le recto\nd'un document";
"mb_blinkid_back_instructions_barcode" = "Scanner le code-barres";
+"mb_blinkid_blur_detected" = "Maintenir le document et le téléphone immobiles";
"mb_blinkid_camera_flip_document" = "Retournez le document";
"mb_blinkid_camera_high" = "Rapprochez-vous";
"mb_blinkid_camera_near" = "Éloignez-vous";
"mb_blinkid_document_too_close_to_edge" = "Déplacer le document du bord";
+"mb_blinkid_glare_detected" = "Incliner ou déplacer le document afin d'éliminer les reflets";
"mb_blinkid_introduction_dialog_message" = "Prenez soin de garder le document bien éclairé. Tous les champs du document doivent être visibles sur l'écran de la caméra.";
"mb_blinkid_introduction_dialog_message_barcode" = "Les différents types de documents peuvent avoir des formats et des emplacements de codes-barres différents. Examinez le recto et le verso du document à la recherche d'un code-barres.";
"mb_blinkid_introduction_dialog_message_mrz" = "Vous trouverez une longue chaîne de caractères au bas du recto ou du verso du document. Elle est divisée en deux ou trois lignes et séparée par des flèches (<< et >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Date d'expiration";
"mb_blinkid_mf_date_of_issue" = "Date d'émission";
"mb_blinkid_mf_document_number" = "Numéro du document";
+"mb_blinkid_mf_document_subtype" = "Sous-type de document";
"mb_blinkid_mf_employer" = "Employeur";
"mb_blinkid_mf_endorsements" = "Approbations";
"mb_blinkid_mf_fathers_name" = "Nom du père";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Veuillez recommencer le processus de numérisation.";
"mb_data_not_match_retry_button" = "Réessayez";
"mb_data_not_match_title" = "Les côtés ne correspondent pas";
+"mb_document_verification_back_side_scan" = "Scanner le verso du document";
"mb_document_verification_onboarding_back_button" = "Retour";
"mb_document_verification_onboarding_cancel_button" = "Annuler";
"mb_document_verification_onboarding_done_button" = "Terminé";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/he.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/he.strings
index c9d21fbb0..4ca90eb58 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/he.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/he.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "לסרוק את הצד הקדמי של מסמך";
"mb_blinkid_back_instructions_barcode" = "לסרוק את הברקוד";
+"mb_blinkid_blur_detected" = "השאירו את המסמך והטלפון ללא תזוזה";
"mb_blinkid_camera_flip_document" = "להפוך את המסמך";
"mb_blinkid_camera_high" = "קרב/י";
"mb_blinkid_camera_near" = "התרחק/י";
"mb_blinkid_document_too_close_to_edge" = "הזז/י את המסמך מהקצה";
+"mb_blinkid_glare_detected" = "הטו או הזיזו את המסמך כדי להסיר את ההשתקפות";
"mb_blinkid_introduction_dialog_message" = "המסמך חייב להיות מואר היטב. כל שדות המסמכים צריכים להיות גלויים על מסך המצלמה.";
"mb_blinkid_introduction_dialog_message_barcode" = "לסוגים שונים של מסמכים עשויים להיות פורמטים ומיקומים שונים של ברקוד. חפשו ברקוד בחלק הקדמי והאחורי של המסמך.";
"mb_blinkid_introduction_dialog_message_mrz" = "תמצאו מחרוזת ארוכה של תווים בתחתית החלק הקדמי או האחורי של המסמך. היא מחולקת ל-2 או 3 שורות ומופרדת על ידי חיצים (<< ו->>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "תאריך תפוגה";
"mb_blinkid_mf_date_of_issue" = "תאריך הנפקה";
"mb_blinkid_mf_document_number" = "מספר מסמך";
+"mb_blinkid_mf_document_subtype" = "תת-סוג מסמך";
"mb_blinkid_mf_employer" = "מעסיק";
"mb_blinkid_mf_endorsements" = "אישורים";
"mb_blinkid_mf_fathers_name" = "שם האב";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "נא להתחיל את תהליך הסריקה מחדש.";
"mb_data_not_match_retry_button" = "לנסות שוב";
"mb_data_not_match_title" = "הצדדים אינם תואמים";
+"mb_document_verification_back_side_scan" = "סרקו את הצד האחורי של המסמך";
"mb_document_verification_onboarding_back_button" = "חזור";
"mb_document_verification_onboarding_cancel_button" = "ביטול";
"mb_document_verification_onboarding_done_button" = "בוצע";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hr.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hr.strings
index 35dba78b8..6db0ef134 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hr.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hr.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Skeniraj prednju\nstranu dokumenta";
"mb_blinkid_back_instructions_barcode" = "Skenirajte barkod";
+"mb_blinkid_blur_detected" = "Drži dokument i telefon mirno";
"mb_blinkid_camera_flip_document" = "Okreni dokument";
"mb_blinkid_camera_high" = "Približi dokument";
"mb_blinkid_camera_near" = "Udalji dokument";
"mb_blinkid_document_too_close_to_edge" = "Odmakni dokument od ruba";
+"mb_blinkid_glare_detected" = "Nagni ili premjesti dokument kako bi uklonio refleksiju";
"mb_blinkid_introduction_dialog_message" = "Pripazite da dokument bude dovoljno osvijetljen. Svi podaci s dokumenta trebaju biti vidljivi na ekranu vašeg uređaja.";
"mb_blinkid_introduction_dialog_message_barcode" = "Drugačiji tipovi dokumenata mogu imati različite formate barkodova. Barkod može biti na nekoliko različitih mjesta na dokumentu. Potražite ga na prednjoj i stražnoj strani.";
"mb_blinkid_introduction_dialog_message_mrz" = "Pronaći ćete niz znakova na dnu prednjeg ili zadnjeg dijela dokumenta. Podijeljen je u 2 ili 3 linije i odvojen znakovima strelica (<< i >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum isteka";
"mb_blinkid_mf_date_of_issue" = "Datum izdavanja";
"mb_blinkid_mf_document_number" = "Broj dokumenta";
+"mb_blinkid_mf_document_subtype" = "Podvrsta dokumenta";
"mb_blinkid_mf_employer" = "Poslodavac";
"mb_blinkid_mf_endorsements" = "Prava";
"mb_blinkid_mf_fathers_name" = "Ime oca";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Molimo ponovno skeniraj prednju i stražnju stranu istog dokumenta.";
"mb_data_not_match_retry_button" = "U redu";
"mb_data_not_match_title" = "Podaci se ne podudaraju";
+"mb_document_verification_back_side_scan" = "Skeniraj stražnju\nstranu dokumenta";
"mb_document_verification_onboarding_back_button" = "Natrag";
"mb_document_verification_onboarding_cancel_button" = "Poništi";
"mb_document_verification_onboarding_done_button" = "OK";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hu.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hu.strings
index 8d84e0131..7e5fef31e 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hu.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/hu.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Szkennelje be egy dokumentum\nelülső oldalát";
"mb_blinkid_back_instructions_barcode" = "Szkennelje be a vonalkódot";
+"mb_blinkid_blur_detected" = "Tartsa a dokumentumot és a telefont mozdulatlanul";
"mb_blinkid_camera_flip_document" = "Fordítsa meg a dokumentumot";
"mb_blinkid_camera_high" = "Menjen közelebb";
"mb_blinkid_camera_near" = "Menjen távolabb";
"mb_blinkid_document_too_close_to_edge" = "Mozdítsa el a dokumentumot a széltől";
+"mb_blinkid_glare_detected" = "Döntse meg vagy mozgassa a dokumentumot a tükröződés megszüntetéséhez";
"mb_blinkid_introduction_dialog_message" = "Ügyeljen a dokumentum megfelelő megvilágítására. Minden dokumentummezőnek láthatónak kell lennie a kameraképernyőn.";
"mb_blinkid_introduction_dialog_message_barcode" = "A különböző típusú dokumentumok eltérő vonalkód-formátummal és helyekkel rendelkezhetnek. Nézze meg a dokumentum elejét és hátulját, hogy megtalálja a vonalkódot.";
"mb_blinkid_introduction_dialog_message_mrz" = "A dokumentum elején vagy hátulján egy hosszú karaktersort talál. 2 vagy 3 sorra van osztva, valamint (<< és >>) nyilak választják el.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Lejárati dátum";
"mb_blinkid_mf_date_of_issue" = "Kiadás dátuma";
"mb_blinkid_mf_document_number" = "Dokumentum szám";
+"mb_blinkid_mf_document_subtype" = "Dokumentum altípusa";
"mb_blinkid_mf_employer" = "Munkáltató";
"mb_blinkid_mf_endorsements" = "Elismerések";
"mb_blinkid_mf_fathers_name" = "Apai név";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Kérjük, kezdje újra a szkennelési folyamatot.";
"mb_data_not_match_retry_button" = "Próbálja újra";
"mb_data_not_match_title" = "Az oldalak nem egyeznek";
+"mb_document_verification_back_side_scan" = "Szkennelje be a dokumentum hátoldalát";
"mb_document_verification_onboarding_back_button" = "Vissza";
"mb_document_verification_onboarding_cancel_button" = "Törlés";
"mb_document_verification_onboarding_done_button" = "Kész";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/id.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/id.strings
index d9dfb1db2..15af03280 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/id.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/id.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Pindai sisi depan\ndokumen.";
"mb_blinkid_back_instructions_barcode" = "Pindai kode batang";
+"mb_blinkid_blur_detected" = "Jaga agar dokumen dan ponsel tidak bergerak";
"mb_blinkid_camera_flip_document" = "Balik dokumen";
"mb_blinkid_camera_high" = "Mohon dekatkan";
"mb_blinkid_camera_near" = "Mohon jauhkan";
"mb_blinkid_document_too_close_to_edge" = "Gerakkan dokumen dari tepian";
+"mb_blinkid_glare_detected" = "Miringkan atau pindahkan dokumen untuk menghilangkan pantulan";
"mb_blinkid_introduction_dialog_message" = "Pastikan dokumen cukup diterangi cahaya. Semua bagian dokumen harus terlihat di layar kamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Jenis dokumen berbeda dapat memiliki format dan lokasi kode batang yang berbeda juga. Lihat sisi depan dan belakang dokumen untuk menemukan kode batang.";
"mb_blinkid_introduction_dialog_message_mrz" = "Anda akan menemukan string panjang karakter di bagian bawah sisi depan atau belakang dokumen. Karakter dibagi menjadi 2 atau 3 baris dan dipisahkan oleh tanda panah (<< dan >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Tanggal Kedaluwarsa";
"mb_blinkid_mf_date_of_issue" = "Tanggal Terbit";
"mb_blinkid_mf_document_number" = "Nomor Dokumen";
+"mb_blinkid_mf_document_subtype" = "Subtipe Dokumen";
"mb_blinkid_mf_employer" = "Tempat Kerja";
"mb_blinkid_mf_endorsements" = "Pengesahan";
"mb_blinkid_mf_fathers_name" = "Nama ayah";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Mohon ulangi proses pemindaian dari awal.";
"mb_data_not_match_retry_button" = "Coba Lagi";
"mb_data_not_match_title" = "Sisi tidak cocok";
+"mb_document_verification_back_side_scan" = "Pindai sisi belakang dokumen";
"mb_document_verification_onboarding_back_button" = "Kembali";
"mb_document_verification_onboarding_cancel_button" = "Batal";
"mb_document_verification_onboarding_done_button" = "Selesai";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/it.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/it.strings
index f10628ec3..7a51d1083 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/it.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/it.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scansiona il fronte \ndi un documento";
"mb_blinkid_back_instructions_barcode" = "Scansiona il codice a barre";
+"mb_blinkid_blur_detected" = "Tieni immobili il documento e il telefono";
"mb_blinkid_camera_flip_document" = "Capovolgi il documento";
"mb_blinkid_camera_high" = "Avvicinati";
"mb_blinkid_camera_near" = "Spostati più lontano";
"mb_blinkid_document_too_close_to_edge" = "Sposta il documento dal bordo";
+"mb_blinkid_glare_detected" = "Inclina o muovi il documento per eliminare il riflesso";
"mb_blinkid_introduction_dialog_message" = "Controlla che il documento sia ben illuminato. Tutti i campi del documento devono essere visibili sullo schermo della fotocamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Su tipi diversi di documenti possono essere riportati codici a barre con formati e posizioni differenti. Cerca un codice a barre sul fronte e sul retro del documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "Troverai una lunga sequenza di caratteri nella parte inferiore del fronte o del retro del documento. È suddivisa in 2 o 3 linee e presenta delle frecce (<< e >>) come separatori.";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data di scadenza";
"mb_blinkid_mf_date_of_issue" = "Data di rilascio";
"mb_blinkid_mf_document_number" = "Numero del documento";
+"mb_blinkid_mf_document_subtype" = "Sottotipo del documento";
"mb_blinkid_mf_employer" = "Datore di lavoro";
"mb_blinkid_mf_endorsements" = "Annotazioni";
"mb_blinkid_mf_fathers_name" = "Nome del padre";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Ricomincia il processo di scansione.";
"mb_data_not_match_retry_button" = "Riprova";
"mb_data_not_match_title" = "I lati non corrispondono";
+"mb_document_verification_back_side_scan" = "Scansiona il retro del documento";
"mb_document_verification_onboarding_back_button" = "Indietro";
"mb_document_verification_onboarding_cancel_button" = "Annulla";
"mb_document_verification_onboarding_done_button" = "Fatto";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ms.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ms.strings
index 806060c10..7eb71aad1 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ms.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ms.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Imbas bahagian hadapan\ndokumen";
"mb_blinkid_back_instructions_barcode" = "Imbas kod bar";
+"mb_blinkid_blur_detected" = "Pastikan dokumen dan telefon tidak bergegar";
"mb_blinkid_camera_flip_document" = "Balikkan dokumen";
"mb_blinkid_camera_high" = "Dekatkan lagi";
"mb_blinkid_camera_near" = "Jauhkan lagi";
"mb_blinkid_document_too_close_to_edge" = "Alihkan fokumen dari tepi";
+"mb_blinkid_glare_detected" = "Sengetkan atau gerakkan dokumen untuk mengelakkan pantulan cahaya";
"mb_blinkid_introduction_dialog_message" = "Pastikan dokumen anda menerima pencahayaan yang cukup. Semua medan dokumen hendaklah kelihatan pada skrin kamera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Jenis dokumen yang berbeza mungkin mempunyai format dan lokasi kod bar yang berbeza. Lihat bahagian depan dan belakang dokumen untuk kod bar.";
"mb_blinkid_introduction_dialog_message_mrz" = "Anda akan menemui rentetan aksara yang panjang di bahagian bawah bahagian hadapan atau belakang dokumen. Ia dibahagikan kepada 2 atau 3 baris dan dipisahkan dengan anak panah (<< dan >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Tarikh luput";
"mb_blinkid_mf_date_of_issue" = "Tarikh diterbitkan";
"mb_blinkid_mf_document_number" = "Nombor dokumen";
+"mb_blinkid_mf_document_subtype" = "Subjenis Dokumen";
"mb_blinkid_mf_employer" = "Alamat majikan";
"mb_blinkid_mf_endorsements" = "Pengendorsan";
"mb_blinkid_mf_fathers_name" = "Nama bapa";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Sila mulakan proses pengimbasan dari awal.";
"mb_data_not_match_retry_button" = "Cuba semula";
"mb_data_not_match_title" = "Bahagian hadapan dan belakang tidak sepadan";
+"mb_document_verification_back_side_scan" = "Imbas bahagian belakang dokumen";
"mb_document_verification_onboarding_back_button" = "Kembali";
"mb_document_verification_onboarding_cancel_button" = "Batal";
"mb_document_verification_onboarding_done_button" = "Siap";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/nl.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/nl.strings
index 30b0a5ba8..3bc2e1b7c 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/nl.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/nl.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scan de voorzijde\nvan een document";
"mb_blinkid_back_instructions_barcode" = "Scan de barcode";
+"mb_blinkid_blur_detected" = "Houd het document en de telefoon stil";
"mb_blinkid_camera_flip_document" = "Draai het document om";
"mb_blinkid_camera_high" = "Beweeg dichterbij";
"mb_blinkid_camera_near" = "Beweeg verder weg";
"mb_blinkid_document_too_close_to_edge" = "Verplaats het document weg van de rand";
+"mb_blinkid_glare_detected" = "Kantel of verplaats het document om de reflectie te verwijderen";
"mb_blinkid_introduction_dialog_message" = "Zorg ervoor dat het document goed verlicht is. Alle velden op het document moeten onder het camerascherm zichtbaar zijn.";
"mb_blinkid_introduction_dialog_message_barcode" = "Verschillende soorten documenten kunnen verschillende formaten en locaties van de streepjescode hebben. Kijk op de voor- en achterzijde van het document voor een streepjescode.";
"mb_blinkid_introduction_dialog_message_mrz" = "U zult een lange reeks tekens vinden onderaan de voor- of achterzijde van het document. Ze is verdeeld in 2 of 3 lijnen en gescheiden door pijlen (<< en >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Vervaldatum";
"mb_blinkid_mf_date_of_issue" = "Afgiftedatum";
"mb_blinkid_mf_document_number" = "Documentnummer";
+"mb_blinkid_mf_document_subtype" = "Document sub soort ";
"mb_blinkid_mf_employer" = "Werkgever";
"mb_blinkid_mf_endorsements" = "Goedkeuringen";
"mb_blinkid_mf_fathers_name" = "Naam van de vader";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Begin het scanproces alstublieft nogmaals.";
"mb_data_not_match_retry_button" = "Probeer opnieuw";
"mb_data_not_match_title" = "Zijdes komen niet overeen";
+"mb_document_verification_back_side_scan" = "Scan de achterkant van het document";
"mb_document_verification_onboarding_back_button" = "Terug";
"mb_document_verification_onboarding_cancel_button" = "Annuleren";
"mb_document_verification_onboarding_done_button" = "Gereed";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/pt.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/pt.strings
index 1df3a9720..d28201296 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/pt.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/pt.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Digitalize a frente\nde um documento";
"mb_blinkid_back_instructions_barcode" = "Digitalizar o código de barras";
+"mb_blinkid_blur_detected" = "Mantenha o documento e o telemóvel imóveis";
"mb_blinkid_camera_flip_document" = "Vire o documento";
"mb_blinkid_camera_high" = "Aproxime";
"mb_blinkid_camera_near" = "Afaste";
"mb_blinkid_document_too_close_to_edge" = "Mova o documento da margem";
+"mb_blinkid_glare_detected" = "Incline ou desloque o documento para eliminar o reflexo";
"mb_blinkid_introduction_dialog_message" = "Assegure-se de que mantém o documento bem iluminado. Todos os campos do documento devem estar visíveis no ecrã da câmara.";
"mb_blinkid_introduction_dialog_message_barcode" = "Diferentes tipos de documentos podem ter diferentes formatos e localizações de códigos de barras. Procure um código de barras na frente e no verso do documento.";
"mb_blinkid_introduction_dialog_message_mrz" = "Encontrará uma longa sequência de carateres na parte inferior da frente ou do verso do documento. Está dividida em 2 ou 3 linhas e separada por setas (<< e >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data de validade";
"mb_blinkid_mf_date_of_issue" = "Data de emissão";
"mb_blinkid_mf_document_number" = "Número do documento";
+"mb_blinkid_mf_document_subtype" = "Subtipo de documento";
"mb_blinkid_mf_employer" = "Endereço comercial";
"mb_blinkid_mf_endorsements" = "Apoios";
"mb_blinkid_mf_fathers_name" = "Nome do pai";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Reinicie o processo de digitalização.";
"mb_data_not_match_retry_button" = "Tente novamente";
"mb_data_not_match_title" = "Os lados não coincidem";
+"mb_document_verification_back_side_scan" = "Digitalize o verso do documento\n";
"mb_document_verification_onboarding_back_button" = "Anterior";
"mb_document_verification_onboarding_cancel_button" = "Cancelar";
"mb_document_verification_onboarding_done_button" = "Concluído";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ro.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ro.strings
index 1b1398de5..12cd20748 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ro.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/ro.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Scanați partea din față\na unui document";
"mb_blinkid_back_instructions_barcode" = "Scanare cod de bare";
+"mb_blinkid_blur_detected" = "Păstrați documentul și telefonul nemișcate";
"mb_blinkid_camera_flip_document" = "Întoarceți documentul";
"mb_blinkid_camera_high" = "Apropiați";
"mb_blinkid_camera_near" = "Îndepărtați";
"mb_blinkid_document_too_close_to_edge" = "Îndepărtați documentul de margine";
+"mb_blinkid_glare_detected" = "Înclinați sau deplasați documentul pentru a elimina reflexiile";
"mb_blinkid_introduction_dialog_message" = "Asigurați-vă că documentul este bine iluminat. Toate secțiunile din document trebuie să fie vizibile pe ecranul camerei.";
"mb_blinkid_introduction_dialog_message_barcode" = "Diferite tipuri de documente pot avea diferite formate de coduri de bare și amplasări. Căutați codul de bare pe ambele părți ale documentului.";
"mb_blinkid_introduction_dialog_message_mrz" = "Veți găsi un șir lung de caractere în partea de jos a documentului, pe fața sau pe spatele acestuia. Este împărțit în 2 sau 3 rânduri și separat prin săgeți (<< și >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Data expirării";
"mb_blinkid_mf_date_of_issue" = "Data eliberării";
"mb_blinkid_mf_document_number" = "Numărul documentului";
+"mb_blinkid_mf_document_subtype" = "Subtipul documentului";
"mb_blinkid_mf_employer" = "Angajatorul";
"mb_blinkid_mf_endorsements" = "Aprobări";
"mb_blinkid_mf_fathers_name" = "Numele tatălui";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Reîncepeți procesul de scanare.";
"mb_data_not_match_retry_button" = "Reîncercare";
"mb_data_not_match_title" = "Fețele nu se potrivesc";
+"mb_document_verification_back_side_scan" = "Scanați partea din spate a documentului";
"mb_document_verification_onboarding_back_button" = "Înapoi";
"mb_document_verification_onboarding_cancel_button" = "Anulare";
"mb_document_verification_onboarding_done_button" = "Terminat";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sk.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sk.strings
index 6c0702284..b23cd7602 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sk.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sk.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Naskenujte prednú stranu \n preukazu";
"mb_blinkid_back_instructions_barcode" = "Naskenovať čiarový kód";
+"mb_blinkid_blur_detected" = "Držte dokument a telefón v jednej polohe";
"mb_blinkid_camera_flip_document" = "Otočte preukaz";
"mb_blinkid_camera_high" = "Posuňte sa bližšie";
"mb_blinkid_camera_near" = "Posuňte sa ďalej";
"mb_blinkid_document_too_close_to_edge" = "Presunúť dokument od okraja";
+"mb_blinkid_glare_detected" = "Nakloňte alebo posuňte dokument, aby ste odstránili odraz";
"mb_blinkid_introduction_dialog_message" = "Uistite sa, že máte dokument dobre osvetlený. Všetky polia dokumentu by mali byť viditeľné na obrazovke fotoaparátu.";
"mb_blinkid_introduction_dialog_message_barcode" = "Rôzne typy dokumentov môžu mať rôzne formáty čiarových kódov a rôzne umiestnenia. Pozrite sa na prednú a zadnú stranu dokumentu, kde nájdete čiarový kód.";
"mb_blinkid_introduction_dialog_message_mrz" = "V spodnej časti prednej alebo zadnej strany dokumentu nájdete dlhý reťazec znakov. Je rozdelená na 2 alebo 3 riadky a oddelené šípkami (<< a >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Dátum vypršania platnosti";
"mb_blinkid_mf_date_of_issue" = "Dátum vydania";
"mb_blinkid_mf_document_number" = "Číslo dokladu";
+"mb_blinkid_mf_document_subtype" = "Podtyp dokumentu";
"mb_blinkid_mf_employer" = "Zamestnávateľ";
"mb_blinkid_mf_endorsements" = "Potvrdenia";
"mb_blinkid_mf_fathers_name" = "Meno otca";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Spustite proces skenovania znova.";
"mb_data_not_match_retry_button" = "Skúsiť znova";
"mb_data_not_match_title" = "Strany sa nezhodujú";
+"mb_document_verification_back_side_scan" = "Nasnímajte zadnú stranu dokumentu";
"mb_document_verification_onboarding_back_button" = "Späť";
"mb_document_verification_onboarding_cancel_button" = "Zrušiť";
"mb_document_verification_onboarding_done_button" = "Hotovo";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sl.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sl.strings
index 35b52ec41..81048f7cd 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sl.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/sl.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Optično preberite sprednjo\nstran dokumenta";
"mb_blinkid_back_instructions_barcode" = "Optično preberite črtno kodo";
+"mb_blinkid_blur_detected" = "Še vedno hranite dokumente in telefon";
"mb_blinkid_camera_flip_document" = "Obrnite dokument";
"mb_blinkid_camera_high" = "Približajte";
"mb_blinkid_camera_near" = "Oddaljite";
"mb_blinkid_document_too_close_to_edge" = "Dokument odmaknite od roba";
+"mb_blinkid_glare_detected" = "Nagnite ali premaknite dokument, da odstranite odsev";
"mb_blinkid_introduction_dialog_message" = "Poskrbite, da bo dokument dobro osvetljen. Na zaslonu kamere morajo biti vidna vsa polja dokumenta.";
"mb_blinkid_introduction_dialog_message_barcode" = "Različne vrste dokumentov imajo lahko različne oblike črtnih kod in lokacije. Črtno kodo poiščite na sprednji in zadnji strani dokumenta.";
"mb_blinkid_introduction_dialog_message_mrz" = "Na dnu sprednje ali zadnje strani dokumenta boste našli dolg niz znakov. Razdeljen je na 2 ali 3 vrstice in ločen s puščicami (<< in >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Datum poteka";
"mb_blinkid_mf_date_of_issue" = "Datum izdaje";
"mb_blinkid_mf_document_number" = "Številka dokumenta";
+"mb_blinkid_mf_document_subtype" = "Podvrsta dokumenta";
"mb_blinkid_mf_employer" = "Delodajalec";
"mb_blinkid_mf_endorsements" = "Potrditve";
"mb_blinkid_mf_fathers_name" = "Ime očeta";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Postopek optičnega branja začnite ponovno.";
"mb_data_not_match_retry_button" = "Poskusi znova";
"mb_data_not_match_title" = "Strani se ne ujemata";
+"mb_document_verification_back_side_scan" = "Optično preberite hrbtno stran dokumenta";
"mb_document_verification_onboarding_back_button" = "Nazaj";
"mb_document_verification_onboarding_cancel_button" = "Preklic";
"mb_document_verification_onboarding_done_button" = "Končano";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/th.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/th.strings
index df8bc79bc..fee3108a8 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/th.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/th.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "สแกนด้านหน้าของเอกสาร";
"mb_blinkid_back_instructions_barcode" = "สแกนบาร์โค้ด";
+"mb_blinkid_blur_detected" = "ประคองให้เอกสารและโทรศัพท์อยู่นิ่ง ๆ";
"mb_blinkid_camera_flip_document" = "พลิกเอกสาร";
"mb_blinkid_camera_high" = "เลื่อนเข้าใกล้";
"mb_blinkid_camera_near" = "เลื่อนออกห่าง";
"mb_blinkid_document_too_close_to_edge" = "เลื่อนเอกสารออกจากขอบ";
+"mb_blinkid_glare_detected" = "เอียงหรือย้ายเอกสารเพื่อลบแสงสะท้อน";
"mb_blinkid_introduction_dialog_message" = "ตรวจสอบว่าเอกสารของคุณมีแสงสว่างเพียงพอ คุณควรมองเห็นทุกส่วนของเอกสารบนหน้าจอกล้อง";
"mb_blinkid_introduction_dialog_message_barcode" = "เอกสารประเภทต่างๆ อาจมีรูปแบบบาร์โค้ดและตำแหน่งที่แตกต่างกัน ดูบาร์โค้ดที่ด้านหน้าและด้านหลังเอกสาร";
"mb_blinkid_introduction_dialog_message_mrz" = "คุณจะพบชุดอักขระยาวที่ด้านล่างของส่วนหน้าหรือส่วนหลังของเอกสาร แบ่งออกเป็น 2 หรือ 3 บรรทัดและคั่นด้วยลูกศร (<< และ >>)";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "วันที่หมดอายุ";
"mb_blinkid_mf_date_of_issue" = "วันที่ออกเอกสาร";
"mb_blinkid_mf_document_number" = "หมายเลขเอกสาร";
+"mb_blinkid_mf_document_subtype" = "ประเภทย่อยของเอกสาร";
"mb_blinkid_mf_employer" = "นายจ้าง";
"mb_blinkid_mf_endorsements" = "การรับรอง";
"mb_blinkid_mf_fathers_name" = "ชื่อบิดา";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "โปรดเริ่มขั้นตอนการสแกนใหม่อีกครั้ง";
"mb_data_not_match_retry_button" = "ลองอีกครั้ง";
"mb_data_not_match_title" = "ด้านข้างไม่ตรงกัน";
+"mb_document_verification_back_side_scan" = "สแกนด้านหลังของเอกสาร";
"mb_document_verification_onboarding_back_button" = "ย้อนกลับ";
"mb_document_verification_onboarding_cancel_button" = "ยกเลิก";
"mb_document_verification_onboarding_done_button" = "เสร็จสิ้น";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/vi.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/vi.strings
index 60f3b1a92..76982e2bb 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/vi.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/vi.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "Quét mặt trước\ncủa tài liệu";
"mb_blinkid_back_instructions_barcode" = "Quét mã vạch";
+"mb_blinkid_blur_detected" = "Giữ tài liệu và điện thoại cố định";
"mb_blinkid_camera_flip_document" = "Lật tài liệu";
"mb_blinkid_camera_high" = "Di chuyển gần hơn";
"mb_blinkid_camera_near" = "Di chuyển xa hơn";
"mb_blinkid_document_too_close_to_edge" = "Di chuyển tài liệu từ cạnh";
+"mb_blinkid_glare_detected" = "Nghiêng hoặc di chuyển tài liệu để loại bỏ hiệu ứng phản chiếu";
"mb_blinkid_introduction_dialog_message" = "Đảm bảo rằng bạn giữ cho tài liệu được chiếu sáng tốt. Tất cả các trường tài liệu sẽ hiển thị trên màn hình camera.";
"mb_blinkid_introduction_dialog_message_barcode" = "Các loại giấy tờ khác nhau có thể có định dạng và vị trí mã vạch khác nhau. Hãy xem mặt trước và mặt sau của giấy tờ để tìm mã vạch.";
"mb_blinkid_introduction_dialog_message_mrz" = "Bạn sẽ tìm thấy một chuỗi ký tự dài ở phía dưới mặt trước hoặc mặt sau của giấy tờ. Chuỗi ký tự này được chia thành 2 hoặc 3 dòng và được phân tách bằng mũi tên (<< và >>).";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "Ngày Hết hạn";
"mb_blinkid_mf_date_of_issue" = "Ngày Cấp";
"mb_blinkid_mf_document_number" = "Số Giấy tờ";
+"mb_blinkid_mf_document_subtype" = "Tiểu loại văn bản";
"mb_blinkid_mf_employer" = "Chủ lao động";
"mb_blinkid_mf_endorsements" = "Thông tin chứng thực";
"mb_blinkid_mf_fathers_name" = "Tên cha";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "Xin vui lòng bắt đầu lại quá trình quét.";
"mb_data_not_match_retry_button" = "Thử lại";
"mb_data_not_match_title" = "Các mặt không khớp";
+"mb_document_verification_back_side_scan" = "Quét mặt sau của tài liệu";
"mb_document_verification_onboarding_back_button" = "Quay lại";
"mb_document_verification_onboarding_cancel_button" = "Hủy";
"mb_document_verification_onboarding_done_button" = "Đã xong";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hans.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hans.strings
index ec926b928..77b8469b6 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hans.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hans.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "扫描文件的\n正面";
"mb_blinkid_back_instructions_barcode" = "扫描条形码";
+"mb_blinkid_blur_detected" = "使文件和手机保持静止不动";
"mb_blinkid_camera_flip_document" = "给文件翻页";
"mb_blinkid_camera_high" = "靠近一些";
"mb_blinkid_camera_near" = "离远一些";
"mb_blinkid_document_too_close_to_edge" = "从边缘移动文件";
+"mb_blinkid_glare_detected" = "倾斜或移动文件以消除反光";
"mb_blinkid_introduction_dialog_message" = "确保文件处于光线充足的地方。所有文件字段应在相机屏幕上可见。";
"mb_blinkid_introduction_dialog_message_barcode" = "文件类型不同,其条形码的格式和位置也可能不同。请在文件的正面和反面查找条形码。";
"mb_blinkid_introduction_dialog_message_mrz" = "您会在文件的正面或反面底部找到一长串字符,这些字符被分成了 2 到 3 行,且以箭头(<< 和 >>)隔开。";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "到期日期";
"mb_blinkid_mf_date_of_issue" = "签发日期";
"mb_blinkid_mf_document_number" = "文件编号";
+"mb_blinkid_mf_document_subtype" = "文档子类型";
"mb_blinkid_mf_employer" = "雇主";
"mb_blinkid_mf_endorsements" = "背书";
"mb_blinkid_mf_fathers_name" = "父亲姓名";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "请重新开始扫描过程。";
"mb_data_not_match_retry_button" = "重试";
"mb_data_not_match_title" = "页数不匹配";
+"mb_document_verification_back_side_scan" = "扫描文件反面";
"mb_document_verification_onboarding_back_button" = "返回";
"mb_document_verification_onboarding_cancel_button" = "取消";
"mb_document_verification_onboarding_done_button" = "完成";
diff --git a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hant.strings b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hant.strings
index b21deeb4d..5ebc7e9a1 100644
--- a/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hant.strings
+++ b/BlinkID.xcframework/ios-arm64_x86_64-simulator/BlinkID.framework/zh-Hant.strings
@@ -1,10 +1,12 @@
/* Generated by LocTool */
"blinkid_generic_message" = "掃描文件的正面。";
"mb_blinkid_back_instructions_barcode" = "掃描條碼";
+"mb_blinkid_blur_detected" = "讓文件與手機保持靜止";
"mb_blinkid_camera_flip_document" = "將文件翻面";
"mb_blinkid_camera_high" = "再靠近一點";
"mb_blinkid_camera_near" = "再離遠一點";
"mb_blinkid_document_too_close_to_edge" = "將文件從邊緣移開";
+"mb_blinkid_glare_detected" = "傾斜或移動文件以移除反光";
"mb_blinkid_introduction_dialog_message" = "確保文件光線充足。所有文件欄位在相機螢幕都應清楚可見。";
"mb_blinkid_introduction_dialog_message_barcode" = "不同類型的文件可能會有不同的條碼格式和位置。請在文件正反面尋找條碼。";
"mb_blinkid_introduction_dialog_message_mrz" = "您可以在文件正面或反面的底部找到一長串字元,分為 2 或 3 行,並以箭頭分隔(<< 和 >>)。";
@@ -22,6 +24,7 @@
"mb_blinkid_mf_date_of_expiry" = "有效日期";
"mb_blinkid_mf_date_of_issue" = "發行日期";
"mb_blinkid_mf_document_number" = "文件編號";
+"mb_blinkid_mf_document_subtype" = "文件子類型";
"mb_blinkid_mf_employer" = "雇主";
"mb_blinkid_mf_endorsements" = "備註";
"mb_blinkid_mf_fathers_name" = "父親姓名";
@@ -63,6 +66,7 @@
"mb_data_not_match_msg" = "請重新開始掃描程序。";
"mb_data_not_match_retry_button" = "重試";
"mb_data_not_match_title" = "兩面不相符";
+"mb_document_verification_back_side_scan" = "掃描文件背面";
"mb_document_verification_onboarding_back_button" = "背面";
"mb_document_verification_onboarding_cancel_button" = "取消";
"mb_document_verification_onboarding_done_button" = "完成";
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f11a667b5..971b034f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,36 @@
# Release notes
+## 6.8.0
+
+### New Features
+- **Glare detection**
+ - We’ve introduced glare detection to BlinkID, which removes occlusion on document images caused by glare. You can control the strictness of glare detection with three options (relaxed, normal, and strict) to suit your use case.
+ - Real-time feedback during scanning includes a new UI message to help users position the document correctly and reduce glare.
+- **Improved blur detection**
+ - We’ve raised the threshold for our blur model, making it stricter. This improvement ensures that sharper images are accepted for processing. You can now control the strictness of blur detection with three options (relaxed, normal, and strict).
+ - Real-time feedback during scanning includes a new UI message to help users position the document optimally for a clear image.
+- **Support for extracting the subtypes of US driver’s licenses & ID cards**
+ - BlinkID now extracts precise information about subtypes of driver’s licenses and ID cards (e.g., conditional driver’s license, learner’s permit, provision, enhanced, etc.). This information is included in the scanning results, allowing you to tailor workflows or processes based on document limitations.
+- **Classifier improvements**
+ - We upgraded our classifier model to prevent double-capturing of the front side of a document, ensuring the front and the back sides are captured correctly. If the back side of a document is not detected, the processing status will return `UnsupportedClass`.
+- **Option to anonymize barcode data**
+ - You can now anonymize specific fields in the barcode results from an identity document, in addition to the anonymized fields already supported in the Visual Inspection Zone (VIZ).
+- new message for back side scanning `backSideInstructionsText` in `BlinkIdOverlaySettings`
+
+### Breaking API changes
+- Changes to the `BlinkIdSingleSideRecognizer` and `BlinkIdMultiSideRecognizer` settings:
+ - renamed `allowBlurFilter` to `enableBlurFilter`
+
+### Minor API changes
+- Added a new result member `documentSubtype` in `BlinkIdSingleSideRecognizer::Result`, `BlinkIdMultiSideRecognizer::Result,` and `VIZResult` to include subtype information for US driver’s licenses or ID cards (commercial, provisional, etc.)
+- Changes to the `BlinkIdSingleSideRecognizer` and `BlinkIdMultiSideRecognizer` settings:
+ - added `enableGlareFilter` which is set to `true` by default
+ - added `blurStrictnessLevel` which is set to `Normal` by default (`Strict`, `Normal`, or `Relaxed`)
+ - added `glareStrictnessLevel` which is set to `Normal` by default (`Strict`, `Normal`, or `Relaxed`)
+- Changes to the `ImageAnalysisResult`:
+ - renamed `glare` to `glareDetected`
+ - renamed `blurred` to `blurDetected`
+
## 6.7.1
- Add file timestamp API required reason to the privacy manifest
diff --git a/PPBlinkID.podspec b/PPBlinkID.podspec
index 062009d61..37c68e63d 100644
--- a/PPBlinkID.podspec
+++ b/PPBlinkID.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "PPBlinkID"
- s.version = "6.7.1"
+ s.version = "6.8.0"
s.summary = "A delightful component for barcode scanning"
s.homepage = "http://microblink.com"
@@ -31,7 +31,7 @@ Pod::Spec.new do |s|
}
s.source = {
- :http => 'https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/blinkid-ios_v6.7.1.tar.gz'
+ :http => 'https://github.com/BlinkID/blinkid-ios/releases/download/v6.8.0/blinkid-ios_v6.8.0.tar.gz'
}
s.platform = :ios
diff --git a/Package.swift b/Package.swift
index c64a5ffbc..cddfd6577 100644
--- a/Package.swift
+++ b/Package.swift
@@ -16,7 +16,7 @@ let package = Package(
targets: [
.binaryTarget(
name: "BlinkID",
- url: "https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/BlinkID.xcframework.zip",
- checksum: "930f0959a51951f9b1e74a73810e5447309eb94d17696e17db100fefdce6b15e")
+ url: "https://github.com/BlinkID/blinkid-ios/releases/download/v6.8.0/BlinkID.xcframework.zip",
+ checksum: "ac880f817e471ef0536d1dae5b8274086207d6b90fe3c2aade002b037b2c7712")
]
)
diff --git a/README.md b/README.md
index a3bc0c571..30bd71e92 100644
--- a/README.md
+++ b/README.md
@@ -108,7 +108,7 @@ pod init
```ruby
platform :ios, '13.0'
target 'Your-App-Name' do
- pod 'PPBlinkID', '~> 6.7.1'
+ pod 'PPBlinkID', '~> 6.8.0'
end
```
diff --git a/Release notes.md b/Release notes.md
index f11a667b5..1409593ee 100644
--- a/Release notes.md
+++ b/Release notes.md
@@ -1,5 +1,35 @@
# Release notes
+## 6.8.0
+
+### New Features
+- **Glare detection**
+ - We’ve introduced glare detection to BlinkID, which removes occlusion on document images caused by glare. You can control the strictness of glare detection with three options (relaxed, normal, and strict) to suit your use case.
+ - Real-time feedback during scanning includes a new UI message to help users position the document correctly and reduce glare.
+- **Improved blur detection**
+ - We’ve raised the threshold for our blur model, making it stricter. This improvement ensures that sharper images are accepted for processing. You can now control the strictness of blur detection with three options (relaxed, normal, and strict).
+ - Real-time feedback during scanning includes a new UI message to help users position the document optimally for a clear image.
+- **Support for extracting the subtypes of US driver’s licenses & ID cards**
+ - BlinkID now extracts precise information about subtypes of driver’s licenses and ID cards (e.g., conditional driver’s license, learner’s permit, provision, enhanced, etc.). This information is included in the scanning results, allowing you to tailor workflows or processes based on document limitations.
+- **Classifier improvements**
+ - We upgraded our classifier model to prevent double-capturing of the front side of a document, ensuring the front and the back sides are captured correctly. If the back side of a document is not detected, the processing status will return `UnsupportedClass`.
+- **Option to anonymize barcode data**
+ - You can now anonymize specific fields in the barcode results from an identity document, in addition to the anonymized fields already supported in the Visual Inspection Zone (VIZ).
+
+### Breaking API changes
+- Changes to the `BlinkIdSingleSideRecognizer` and `BlinkIdMultiSideRecognizer` settings:
+ - renamed `allowBlurFilter` to `enableBlurFilter`
+
+### Minor API changes
+- Added a new result member `documentSubtype` in `BlinkIdSingleSideRecognizerResult`, `BlinkIdMultiSideRecognizerResult,` and `VIZResult` to include subtype information for US driver’s licenses or ID cards (commercial, provisional, etc.)
+- Changes to the `BlinkIdSingleSideRecognizer` and `BlinkIdMultiSideRecognizer` settings:
+ - added `enableGlareFilter` which is set to `true` by default
+ - added `blurStrictnessLevel` which is set to `Normal` by default (`Strict`, `Normal`, or `Relaxed`)
+ - added `glareStrictnessLevel` which is set to `Normal` by default (`Strict`, `Normal`, or `Relaxed`)
+- Changes to the `ImageAnalysisResult`:
+ - renamed `glare` to `glareDetected`
+ - renamed `blurred` to `blurDetected`
+
## 6.7.1
- Add file timestamp API required reason to the privacy manifest
diff --git a/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/ViewController.swift b/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/ViewController.swift
index 002ee541a..41d505ec9 100644
--- a/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/ViewController.swift
+++ b/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/ViewController.swift
@@ -16,7 +16,7 @@ class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
- // Valid until: 2024-10-19
+ // Valid until: 2024-10-10
MBMicroblinkSDK.shared().setLicenseResource("blinkid-license", withExtension: "txt", inSubdirectory: "", for: Bundle.main) { (_) in
}
}
diff --git a/Samples/BlinkID-sample-SwiftUI/BlinkID-sample-SwiftUI/AppDelegate.swift b/Samples/BlinkID-sample-SwiftUI/BlinkID-sample-SwiftUI/AppDelegate.swift
index cb2480e23..84f1c74ae 100644
--- a/Samples/BlinkID-sample-SwiftUI/BlinkID-sample-SwiftUI/AppDelegate.swift
+++ b/Samples/BlinkID-sample-SwiftUI/BlinkID-sample-SwiftUI/AppDelegate.swift
@@ -16,7 +16,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
- // Valid until: 2024-10-19
+ // Valid until: 2024-10-10
MBMicroblinkSDK.shared().setLicenseResource("blinkid-license", withExtension: "txt", inSubdirectory: nil, for: .main) { (_) in
}
return true
diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift
index bab420925..316e8c1bd 100644
--- a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift
+++ b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift
@@ -19,7 +19,7 @@ class ViewController: UIViewController, UINavigationControllerDelegate {
override func viewDidLoad() {
super.viewDidLoad()
- // Valid until: 2024-10-19
+ // Valid until: 2024-10-10
MBMicroblinkSDK.shared().setLicenseResource("blinkid-license", withExtension: "txt", inSubdirectory: "", for: Bundle.main) { (_) in
}
diff --git a/Samples/License/blinkid-license.txt b/Samples/License/blinkid-license.txt
index 4212277f8..b630f6e88 100644
Binary files a/Samples/License/blinkid-license.txt and b/Samples/License/blinkid-license.txt differ
diff --git a/Transition guide.md b/Transition guide.md
index a0619f45b..69304af6c 100644
--- a/Transition guide.md
+++ b/Transition guide.md
@@ -1,3 +1,9 @@
+## 6.8.0
+
+## Breaking changes
+- Changes to the `BlinkIdSingleSideRecognizer` and `BlinkIdMultiSideRecognizer` settings:
+ - renamed `allowBlurFilter` to `enableBlurFilter`
+
## 6.7.1
- No changes
diff --git a/blinkid-ios.json b/blinkid-ios.json
index 2d9b67869..64cdf1bcf 100644
--- a/blinkid-ios.json
+++ b/blinkid-ios.json
@@ -27,5 +27,6 @@
"6.5.1": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.5.1/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.5.1/BlinkID.xcframework.zip",
"6.6.0": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.6.0/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.6.0/BlinkID.xcframework.zip",
"6.7.0": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.0/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.0/BlinkID.xcframework.zip",
- "6.7.1": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/BlinkID.xcframework.zip"
+ "6.7.1": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.7.1/BlinkID.xcframework.zip",
+ "6.8.0": "https://github.com/BlinkID/blinkid-ios/releases/download/v6.8.0/BlinkID.framework.zip?alt=https://github.com/BlinkID/blinkid-ios/releases/download/v6.8.0/BlinkID.xcframework.zip"
}
diff --git a/buildCommit.txt b/buildCommit.txt
index 15a07c25b..6de2d1924 100644
--- a/buildCommit.txt
+++ b/buildCommit.txt
@@ -1 +1 @@
-Built from core repository commit 64b6c256c66e9d4f6adf2681e43b48501a8f06f8
+Built from core repository commit 168eeb5f1c15e32da244b67802e613613ed9e8b5
diff --git a/docs/Classes.html b/docs/Classes.html
index 62d08af52..72325d9fa 100644
--- a/docs/Classes.html
+++ b/docs/Classes.html
@@ -21,7 +21,7 @@