diff --git a/regula/documentreader/webclient/gen/configuration.py b/regula/documentreader/webclient/gen/configuration.py index 48bcfdb..156deba 100755 --- a/regula/documentreader/webclient/gen/configuration.py +++ b/regula/documentreader/webclient/gen/configuration.py @@ -374,7 +374,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 6.8.0\n"\ + "Version of the API: 6.9.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/regula/documentreader/webclient/gen/models/process_params.py b/regula/documentreader/webclient/gen/models/process_params.py index 49c1b68..0c44911 100755 --- a/regula/documentreader/webclient/gen/models/process_params.py +++ b/regula/documentreader/webclient/gen/models/process_params.py @@ -74,7 +74,7 @@ class ProcessParams(object): 'split_names': 'bool', 'disable_perforation_ocr': 'bool', 'document_group_filter': 'list[DocumentType]', - 'process_auth': 'AuthenticityResultType[object]', + 'process_auth': 'int', 'device_id': 'int', 'device_type': 'int', 'device_type_hex': 'str', @@ -1248,9 +1248,10 @@ def document_group_filter(self, document_group_filter): def process_auth(self): """Gets the process_auth of this ProcessParams. # noqa: E501 + Authenticity checks that should be performed regardless of the document type. The available checks are listed in the eRPRM_Authenticity enum. Note that only supported by your license checks can be added. # noqa: E501 :return: The process_auth of this ProcessParams. # noqa: E501 - :rtype: AuthenticityResultType[object] + :rtype: int """ return self._process_auth @@ -1258,9 +1259,10 @@ def process_auth(self): def process_auth(self, process_auth): """Sets the process_auth of this ProcessParams. + Authenticity checks that should be performed regardless of the document type. The available checks are listed in the eRPRM_Authenticity enum. Note that only supported by your license checks can be added. # noqa: E501 :param process_auth: The process_auth of this ProcessParams. # noqa: E501 - :type process_auth: AuthenticityResultType[object] + :type process_auth: int """ self._process_auth = process_auth diff --git a/regula/documentreader/webclient/gen/models/result.py b/regula/documentreader/webclient/gen/models/result.py index de1311c..425ab99 100755 --- a/regula/documentreader/webclient/gen/models/result.py +++ b/regula/documentreader/webclient/gen/models/result.py @@ -50,10 +50,14 @@ class Result(object): STATUS = int("33") + PORTRAIT_COMPARISON = int("34") + TEXT = int("36") IMAGES = int("37") + FINGERPRINT_COMPARISON = int("39") + ENCRYPTED_RCL = int("49") LICENSE = int("50") @@ -70,7 +74,7 @@ class Result(object): RFID_ORIGINAL_GRAPHICS = int("105") - allowable_values = [DOCUMENT_IMAGE, MRZ_TEXT, BARCODES, VISUAL_GRAPHICS, DOCUMENT_TYPE_CANDIDATES, DOCUMENT_TYPE, LEXICAL_ANALYSIS, VISUAL_TEXT, BARCODE_TEXT, BARCODE_GRAPHICS, AUTHENTICITY, IMAGE_QUALITY, STATUS, TEXT, IMAGES, ENCRYPTED_RCL, LICENSE, DOCUMENT_POSITION, RFID_RAW_DATA, RFID_TEXT, RFID_GRAPHICS, RFID_BINARY_DATA, RFID_ORIGINAL_GRAPHICS] # noqa: E501 + allowable_values = [DOCUMENT_IMAGE, MRZ_TEXT, BARCODES, VISUAL_GRAPHICS, DOCUMENT_TYPE_CANDIDATES, DOCUMENT_TYPE, LEXICAL_ANALYSIS, VISUAL_TEXT, BARCODE_TEXT, BARCODE_GRAPHICS, AUTHENTICITY, IMAGE_QUALITY, STATUS, PORTRAIT_COMPARISON, TEXT, IMAGES, FINGERPRINT_COMPARISON, ENCRYPTED_RCL, LICENSE, DOCUMENT_POSITION, RFID_RAW_DATA, RFID_TEXT, RFID_GRAPHICS, RFID_BINARY_DATA, RFID_ORIGINAL_GRAPHICS] # noqa: E501 """ Attributes: diff --git a/regula/documentreader/webclient/gen/models/result_item.py b/regula/documentreader/webclient/gen/models/result_item.py index 3b5cabe..41c2c6c 100755 --- a/regula/documentreader/webclient/gen/models/result_item.py +++ b/regula/documentreader/webclient/gen/models/result_item.py @@ -58,8 +58,10 @@ class ResultItem(object): 3 : 'TextDataResult', 30 : 'ImageQualityResult', 33 : 'StatusResult', + 34 : 'AuthenticityResult', 36 : 'TextResult', 37 : 'ImagesResult', + 39 : 'AuthenticityResult', 49 : 'EncryptedRCLResult', 5 : 'DocBarCodeInfo', 50 : 'LicenseResult',