2024-09 Changelog
by Gael Bonn🆕 Added
- Added: Four new fields in payslip
- downPayment: Extracts "acompte ou avance sur salaire" if it exists.
- salaryDeduction: Extracts "saisie ou pénalité sur salaire" if it exists.
- hasSalaryDeduction: True if there is a "saisie ou pénalité" in the salary.
- hasDownPayment: True if there is an "acompte ou avance" in the salary.
✅ Improved
- Controls nSSConformity and SSCeilingConformity in payslip now return 'None' if the required information is unavailable in the extracted data.
- Passport validity for minors is now 5 years (instead of the default 10 years).
This adjustment is now reflected in the date conformity control. - Better orientation correction for bank details.
- Language proficiency test templates for TOEIC 1 and TOEIC 3.
- Fixed bugs related to expiry date extraction for driver licenses and residence permits.
In case the user input is a combination of spouse name and birth name then the match with the last name is OK.
Fixed orientation correction on bank details
by Gael BonnRemoved automatic orientation correction on bank details as it has unintended consequences on edge cases.
Improved Global Status for ID cards
by Gael BonnImproved global status on Id cards for edge cases.
dateValidityDelivery is deprecated
by Gael BonnThe control dateValidityDelivery
for id cards is deprecated and will be removed in future versions.
Added new date conformity control for id cards
by Gael BonnA new control dateConformity
is added to id controls: it verifies the coherence between the deliveryDate
and expiryDate
. The control is True is the difference between the two dates is the number validity years minus one day.
Entities
by Gael BonnA new output is added to each extractor, entities
, it lists all the entities found in the document:
{
"entities": [{"fullName": "Charles L'Heureux", "firstName": "Charles", "lastName":"L'Heureux", "id": "zakoz35az234251f"}],
"extractedInformation": {...},
"controls": {...}
}
ID documents' API have been improved for better extraction and verification:
- If both front and back and sent in the request, global status is adjusted to take account of both sides.
- Face matching is more robust to image orientation. We strongly recommend you to take the face photo in portrait mode.
- Driver license FR 2013 is added to the ID API support.
- The extraction performance have been improved across the different fields.
Improved handling of multi page documents
by Gael BonnThe document extraction APIs have been improved to better support multi page handling:
- The accepted inputs are restricted to multiple pdfs or multiple images, each of them represents a document. Pdfs and images are not accepted simultaneously,
- The response of a request is redefined to be a single output, that is the output of the extraction on a single document (a list of pdf or a list of images).