v3.19.0
Description
NEW:
Allows Session Handoff
User can now configure the session to be initiated on desktop and continued on mobile device.
new SdkConfigBuilder()
.withAllowHandoff(true)
Enables Session Attempts
User can now specify the number of retries for the ID Document text extraction
new SdkConfigBuilder()
.withIdDocumentTextExtractionGenericRetries(5)
.withIdDocumentTextExtractionReclassificationRetries(5)
Alternative Session TTL as Deadline
User can specify a date as alternative way to set the session TTL
new SessionSpecificationBuilder()
.withSessionDeadline(new Date('2021-12-15T16:30:00.000Z'))
FIX:
Custom Account Watchlist Advanced CA handling of tags elements
Made the tags
optional in both request and response, this is addressing a bug when the response is being consumed.