[MS-1383] Non-credential fields (name, dob, etc.) can now be returned in the MFID#1656
Merged
alexandr-simprints merged 10 commits intoMay 7, 2026
Merged
Conversation
meladRaouf
approved these changes
May 6, 2026
…al` from LibSimprints
luhmirin-s
reviewed
May 7, 2026
…ut returns the original bitmap instead
…detected values of given length. This should not happen normally, and was caused by a racing condition
…el, where a new frame from a camera might start processing before the finish is processed by fragment
|
luhmirin-s
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



JIRA ticket
Will be released in: 2026.2.0
Notable changes
The majority of the changes is related to refactoring of
ScannedCredentialusage in favor ofExternalCredentialSearchResult. See the details below1. Non-credential fields can now be scanned
This requires
isCapturingAllFieldsflag to be set totrueinMultiFactorIdConfigurationfor the specific document type. We haven't agreed on the specific card fields yet, so currently there are only two options: capture everything or nothing. The credential capture is not affected by that flag.GhanaNhisCardOcrReaderUseCaseandGhanaIdCardOcrReaderUseCasefor examples.LibSimprintsResponseMapper. If enabled, the response can look like this:2. OCR result set expanded into a model.
The OCR scan results are now structured as an
MfidDocumentsealed class (GhanaNhisCard,GhanaIdCard,GhanaQrCode), with each carrying a credential + document-specific non-credential fields (name, date of birth, nationality, etc.).3.
ScannedCredentialis renamed toScannedCredentialResultThis helps to better represent
ScannedCredentialResultas a part of the step result.4.
ExternalCredentialSearchResultreplacesScannedCredentialacross the flow.This allows downstream steps to receive a complete data of the credential scan, search and its matches.
ExternalCredentialSearchResultcarries:ScannedCredentialResult, that contains the entireMfidDocumentwith all OCR-extracted fieldsconfirmedCredential: what the user actually confirmed as correct after scanningmatchResults: biometric matches against credentials linked to credential (if any)This way the entire outcome of the MFID flow is accessible from a single object through the orchestrator steps cache.
Additional work checklist