regula-documentreader-webclient 8.3.465rc0__py3-none-any.whl → 8.3.466.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of regula-documentreader-webclient might be problematic. Click here for more details.

@@ -25,6 +25,7 @@ class ImageQualityCheckType(int, Enum):
25
25
  Perspective = 4
26
26
  Bounds = 5
27
27
  Portrait = 7
28
+ Handwritten = 8
28
29
  Brightness = 9
29
30
  Occlusion = 10
30
31
 
@@ -99,7 +99,8 @@ class ProcessParams(BaseModel):
99
99
  generate_alpha2_codes: Optional[StrictBool] = Field(default=None, description="Set to generate Alpha-2 codes for nationality and issuing state fields.", alias="generateAlpha2Codes")
100
100
  pdf_pages_limit: Optional[StrictInt] = Field(default=None, description="Limits the number of pages to be processed from a PDF file.", alias="pdfPagesLimit")
101
101
  disable_auth_resolution_filter: Optional[StrictBool] = Field(default=None, description="This parameter if enabled will ignore the minimum barcode resolution needed to start processing.", alias="disableAuthResolutionFilter")
102
- __properties: ClassVar[List[str]] = ["generateDTCVC", "lcidFilter", "checkLiveness", "lcidIgnoreFilter", "oneShotIdentification", "useFaceApi", "faceApi", "doDetectCan", "imageOutputMaxHeight", "imageOutputMaxWidth", "scenario", "resultTypeOutput", "doublePageSpread", "generateDoublePageSpreadImage", "fieldTypesFilter", "dateFormat", "measureSystem", "imageDpiOutMax", "alreadyCropped", "customParams", "config", "log", "logLevel", "forceDocID", "matchTextFieldMask", "fastDocDetect", "updateOCRValidityByGlare", "checkRequiredTextFields", "returnCroppedBarcode", "imageQa", "strictImageQuality", "respectImageQuality", "forceDocFormat", "noGraphics", "depersonalizeLog", "multiDocOnImage", "shiftExpiryDate", "minimalHolderAge", "returnUncroppedImage", "mrzFormatsFilter", "forceReadMrzBeforeLocate", "parseBarcodes", "convertCase", "splitNames", "disablePerforationOCR", "documentGroupFilter", "processAuth", "deviceId", "deviceType", "deviceTypeHex", "ignoreDeviceIdFromImage", "documentIdList", "rfid", "checkAuth", "authParams", "mrzDetectMode", "generateNumericCodes", "strictBarcodeDigitalSignatureCheck", "selectLongestNames", "doBarcodes", "strictDLCategoryExpiry", "generateAlpha2Codes", "pdfPagesLimit", "disableAuthResolutionFilter"]
102
+ strict_security_checks: Optional[StrictBool] = Field(default=None, description="When enabled, this parameter marks security checks that don’t meet minimum requirements as 'Failed' (instead of 'WasNotDone'), which causes the overall security status to be 'Failed'.", alias="strictSecurityChecks")
103
+ __properties: ClassVar[List[str]] = ["generateDTCVC", "lcidFilter", "checkLiveness", "lcidIgnoreFilter", "oneShotIdentification", "useFaceApi", "faceApi", "doDetectCan", "imageOutputMaxHeight", "imageOutputMaxWidth", "scenario", "resultTypeOutput", "doublePageSpread", "generateDoublePageSpreadImage", "fieldTypesFilter", "dateFormat", "measureSystem", "imageDpiOutMax", "alreadyCropped", "customParams", "config", "log", "logLevel", "forceDocID", "matchTextFieldMask", "fastDocDetect", "updateOCRValidityByGlare", "checkRequiredTextFields", "returnCroppedBarcode", "imageQa", "strictImageQuality", "respectImageQuality", "forceDocFormat", "noGraphics", "depersonalizeLog", "multiDocOnImage", "shiftExpiryDate", "minimalHolderAge", "returnUncroppedImage", "mrzFormatsFilter", "forceReadMrzBeforeLocate", "parseBarcodes", "convertCase", "splitNames", "disablePerforationOCR", "documentGroupFilter", "processAuth", "deviceId", "deviceType", "deviceTypeHex", "ignoreDeviceIdFromImage", "documentIdList", "rfid", "checkAuth", "authParams", "mrzDetectMode", "generateNumericCodes", "strictBarcodeDigitalSignatureCheck", "selectLongestNames", "doBarcodes", "strictDLCategoryExpiry", "generateAlpha2Codes", "pdfPagesLimit", "disableAuthResolutionFilter", "strictSecurityChecks"]
103
104
 
104
105
  model_config = ConfigDict(
105
106
  populate_by_name=True,
@@ -234,7 +235,8 @@ class ProcessParams(BaseModel):
234
235
  "strictDLCategoryExpiry": obj.get("strictDLCategoryExpiry"),
235
236
  "generateAlpha2Codes": obj.get("generateAlpha2Codes"),
236
237
  "pdfPagesLimit": obj.get("pdfPagesLimit"),
237
- "disableAuthResolutionFilter": obj.get("disableAuthResolutionFilter")
238
+ "disableAuthResolutionFilter": obj.get("disableAuthResolutionFilter"),
239
+ "strictSecurityChecks": obj.get("strictSecurityChecks")
238
240
  })
239
241
  return _obj
240
242
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: regula_documentreader_webclient
3
- Version: 8.3.465rc0
3
+ Version: 8.3.466.dev0
4
4
  Summary: Regula's Document Reader python client
5
5
  Home-page: https://regulaforensics.com
6
6
  Author: Regula Forensics, Inc.
@@ -111,7 +111,7 @@ regula/documentreader/webclient/gen/models/image_qa.py,sha256=1Qwp1XC7RzthIxdk54
111
111
  regula/documentreader/webclient/gen/models/image_quality_check.py,sha256=MALhX1QdG18h9KmnKAHWkX9iLmqsyV_udCe8yeDrwTs,3562
112
112
  regula/documentreader/webclient/gen/models/image_quality_check_list.py,sha256=IqtlTqo0yeqJ2Ptxs6CW0b5CPDIPcBytDV9VV1UUQ1Y,3137
113
113
  regula/documentreader/webclient/gen/models/image_quality_check_list_item.py,sha256=rwDopUsRIeEwYJUhGv6hrPv5YkqH6gXElkr7OhfWYa8,2810
114
- regula/documentreader/webclient/gen/models/image_quality_check_type.py,sha256=NPAa3aYG6jZZB0Fsvt1hGQo7onh0m3FJJot1Tv_dvLA,668
114
+ regula/documentreader/webclient/gen/models/image_quality_check_type.py,sha256=4rSuU2CtU5UnZdcusMgewFzPtjARU9Vz2ftOm3ivVEw,688
115
115
  regula/documentreader/webclient/gen/models/image_quality_result.py,sha256=K8-r8pN_5YvzByv-4pxTEW7YDj_MopRXzVea5AC2xNE,3210
116
116
  regula/documentreader/webclient/gen/models/image_transaction_data.py,sha256=85U5meSEgv_EHEtTVO2vlxOYrj5VVNl35FIIvekYxyg,2594
117
117
  regula/documentreader/webclient/gen/models/images.py,sha256=cCk1hGUHKfKekGrx8DFLRpo6pS8HJBx_75KW9AkPmUE,4013
@@ -162,7 +162,7 @@ regula/documentreader/webclient/gen/models/photo_ident_result.py,sha256=tB98MvBb
162
162
  regula/documentreader/webclient/gen/models/point.py,sha256=_khsO-Zo2SIqXIPHQALJz4F6kB2lDqIi0Yhg7c8ImRw,2234
163
163
  regula/documentreader/webclient/gen/models/point_array.py,sha256=rStlJhZKtub6lxrY-cucENBN9zJouMkdPsdlJ4VRRt8,2767
164
164
  regula/documentreader/webclient/gen/models/points_container.py,sha256=mTI2e_gNj-ov9CLO8y9bnSke2bL31fa5dYjbUUq5H7o,2950
165
- regula/documentreader/webclient/gen/models/process_params.py,sha256=YT7ULugBUicimOFo8h4-UMf6_aX4IrGVNvMqWsDxH3Q,24680
165
+ regula/documentreader/webclient/gen/models/process_params.py,sha256=bB5931_dVuyRVE6YpC8t34OSuxyJWCZqEag91zNt6Yg,25075
166
166
  regula/documentreader/webclient/gen/models/process_params_rfid.py,sha256=3oZtyyUdAKF83XU1AnCqAQLQIRX1zydn1MK743o3ua8,2656
167
167
  regula/documentreader/webclient/gen/models/process_request.py,sha256=DLjhS5DHzmyXAntpYav7AW6aauFM9-r9VnCcifdxEwA,5814
168
168
  regula/documentreader/webclient/gen/models/process_request_image.py,sha256=yA0hfvr-KGBGFyR97fQZsAkDX3mh4XZEVsWDXiOLTPQ,2948
@@ -257,7 +257,7 @@ regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR5
257
257
  regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=IY61Fh_I1cfecOYHPywHX-C9zc0w9POm3Jn68tNXq-k,4713
258
258
  regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
259
259
  regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=3Q86Cngm5H0eIB7NzHtuT90-Kh6GQz4YzT2sDgJWsvM,5001
260
- regula_documentreader_webclient-8.3.465rc0.dist-info/METADATA,sha256=vfeXbVKWYN06xLBZtVCiN1VK49b7am46bPGAWQ9xu94,3999
261
- regula_documentreader_webclient-8.3.465rc0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
- regula_documentreader_webclient-8.3.465rc0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
- regula_documentreader_webclient-8.3.465rc0.dist-info/RECORD,,
260
+ regula_documentreader_webclient-8.3.466.dev0.dist-info/METADATA,sha256=awqvxfiIyhcmU-tGKM9X3WdKczg1iU-7iYiU-3Ts9rA,4001
261
+ regula_documentreader_webclient-8.3.466.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
+ regula_documentreader_webclient-8.3.466.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
+ regula_documentreader_webclient-8.3.466.dev0.dist-info/RECORD,,