diff --git a/regula/documentreader/webclient/gen/models/process_params.py b/regula/documentreader/webclient/gen/models/process_params.py index 238cb5f..e9c670d 100644 --- a/regula/documentreader/webclient/gen/models/process_params.py +++ b/regula/documentreader/webclient/gen/models/process_params.py @@ -80,7 +80,7 @@ class ProcessParams(BaseModel): parse_barcodes: SkipValidation[Optional[bool]] = Field(alias="parseBarcodes", default=None, description="This option can be disabled to stop parsing after barcode is read. Enabled by default.") convert_case: SkipValidation[Optional[TextPostProcessing]] = Field(alias="convertCase", default=None) split_names: SkipValidation[Optional[bool]] = Field(alias="splitNames", default=None, description="When enabled, the Surname and GivenNames fields from MRZ will be divided into ft_First_Name, ft_Second_Name, ft_Third_Name, ft_Fourth_Name, ft_Last_Name fields. Disabled by default.") - disable_perforation_ocr: SkipValidation[Optional[bool]] = Field(alias="disablePerforationOCR", default=None, description="When enabled, OCR of perforated fields in the document template will not be performed. Disabled by default.") + disable_perforation_ocr: SkipValidation[Optional[bool]] = Field(alias="disablePerforationOCR", default=None, description="When enabled, OCR of perforated fields in the document template will not be performed. Enabled by default.") document_group_filter: SkipValidation[Optional[List[DocumentType]]] = Field(alias="documentGroupFilter", default=None, description="List of specific eligible document types from DocumentType enum to recognize from. You may, for example, specify only passports to be recognized by setting this property. Empty by default.") process_auth: SkipValidation[Optional[int]] = Field(alias="processAuth", default=None, description="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.") device_id: SkipValidation[Optional[int]] = Field(alias="deviceId", default=None, description="This parameter is used to specify the document reader device type from which input images were captured. Default 0.") diff --git a/regula/documentreader/webclient/gen/models/rfid_error_codes.py b/regula/documentreader/webclient/gen/models/rfid_error_codes.py index ba56632..71c0438 100644 --- a/regula/documentreader/webclient/gen/models/rfid_error_codes.py +++ b/regula/documentreader/webclient/gen/models/rfid_error_codes.py @@ -63,7 +63,7 @@ class RFIDErrorCodes(int, Enum): RFID_LAYER6_GENERAL_AUTH_FAILURE = 2248147721 RFID_LAYER6_FILE_NOT_FOUND = 2147510914 RFID_LAYER6_FILE_EOF1 = 2147508866 - RFID_LAYER6_FILE_EOF2 = 2147511040 + RFID_LAYER6_WRONG_PARAMS = 2147511040 RFID_LAYER6_WRONG_LENGTH = 2147510016 RFID_LAYER6_INCORRECT_PARAMS = 2147510912 RFID_LAYER6_NO_REFERENCE_DATA = 2147510920