Releases: getyoti/yoti-python-sdk
Releases · getyoti/yoti-python-sdk
v2.14.2
v2.14.1
v2.14.0
Added
- Supplementary document support (Doc Scan)
DynamicPolicyBuilder().with_document_images()
accept_self_asserted
option can now be passed toDynamicPolicyBuilder
methods
Fixed
DocScanClient.get_media_content()
will now returnNone
for204
no content responses (Doc Scan)
v2.13.0
Doc Scan
Added
- Support for ID document comparison checks
- Ability to block the collection of biometric consent
- Allow the configuration of the
manual_check
value for requested Document Authenticity checks - Add support for chip data
RequestedTextExtractionTaskBuilder().with_chip_data_desired()
RequestedTextExtractionTaskBuilder().with_chip_data_ignore()
IdDocumentResourceResponse
property:document_id_photo
- Add support for document page frames
Fixed
RequestedDocumentAuthenticityCheckBuilder.build()
is no longer static. Python 2 implementations must change this toRequestedDocumentAuthenticityCheckBuilder().build()
v2.12.2
v2.12.1
v2.12.0
Added
yoti_python_sdk.doc_scan
session.create.filter
- Contains builders and objects used for specifying required documents during session creation (see snippets below)DocScanClient
get_supported_documents()
- retrieve all currently supported documents
Creating a required document
document_restriction = (DocumentRestrictionBuilder()
.with_document_types(["PASSPORT", "DRIVING_LICENCE"])
.with_country_codes(["GBR"])
.build())
document_filter = (DocumentRestrictionsFilterBuilder()
.for_whitelist()
.with_document_restriction(document_restriction)
.build())
required_id_document = (RequiredIdDocumentBuilder()
.with_filter(document_filter)
.build())
v2.11.2
v2.11.1
Fixed
IdDocumentResourceResponse
now correctly inheritsResourceResponse
- Although none of the properties were missing, tasks on all ID documents were being parsed as generic
TaskResponse
objects. TextExtractionTaskResponse
should now be available in the list of tasks
- Although none of the properties were missing, tasks on all ID documents were being parsed as generic