regula-documentreader-webclient 8.1.302.dev0__py3-none-any.whl → 8.1.339.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.
- regula/documentreader/webclient/ext/models/authenticity/authenticity_check_list.py +45 -15
- regula/documentreader/webclient/ext/models/authenticity/fiber.py +4 -4
- regula/documentreader/webclient/ext/models/authenticity/ident.py +5 -5
- regula/documentreader/webclient/ext/models/authenticity/image_ident.py +4 -4
- regula/documentreader/webclient/ext/models/authenticity/ocr_security_text.py +4 -4
- regula/documentreader/webclient/ext/models/authenticity/security_feature.py +5 -5
- regula/documentreader/webclient/ext/models/images.py +2 -2
- regula/documentreader/webclient/ext/models/recognition_response.py +3 -3
- regula/documentreader/webclient/ext/models/text.py +6 -6
- regula/documentreader/webclient/gen/__init__.py +1 -0
- regula/documentreader/webclient/gen/configuration.py +1 -1
- regula/documentreader/webclient/gen/models/__init__.py +1 -0
- regula/documentreader/webclient/gen/models/authenticity_check_result_item.py +3 -15
- regula/documentreader/webclient/gen/models/authenticity_result_type.py +0 -5
- regula/documentreader/webclient/gen/models/barcode_type.py +0 -1
- regula/documentreader/webclient/gen/models/document_image.py +1 -1
- regula/documentreader/webclient/gen/models/face_detection_item.py +2 -2
- regula/documentreader/webclient/gen/models/face_detection_result.py +2 -2
- regula/documentreader/webclient/gen/models/fiber_item.py +4 -2
- regula/documentreader/webclient/gen/models/fiber_result.py +4 -2
- regula/documentreader/webclient/gen/models/ident_item.py +7 -3
- regula/documentreader/webclient/gen/models/ident_result.py +7 -3
- regula/documentreader/webclient/gen/models/image_data.py +1 -1
- regula/documentreader/webclient/gen/models/light.py +6 -0
- regula/documentreader/webclient/gen/models/liveness_params.py +4 -2
- regula/documentreader/webclient/gen/models/ocr_security_text_item.py +3 -1
- regula/documentreader/webclient/gen/models/ocr_security_text_result.py +3 -1
- regula/documentreader/webclient/gen/models/parsing_error_codes.py +153 -0
- regula/documentreader/webclient/gen/models/photo_ident_item.py +3 -5
- regula/documentreader/webclient/gen/models/photo_ident_result.py +3 -5
- regula/documentreader/webclient/gen/models/process_params.py +4 -2
- regula/documentreader/webclient/gen/models/scenario.py +1 -0
- regula/documentreader/webclient/gen/models/security_feature_item.py +3 -1
- regula/documentreader/webclient/gen/models/security_feature_result.py +3 -1
- regula/documentreader/webclient/gen/models/security_feature_type.py +2 -0
- regula/documentreader/webclient/gen/models/symbol_recognition_result.py +1 -1
- regula/documentreader/webclient/gen/models/transaction_process_request.py +7 -1
- {regula_documentreader_webclient-8.1.302.dev0.dist-info → regula_documentreader_webclient-8.1.339.dev0.dist-info}/METADATA +2 -2
- {regula_documentreader_webclient-8.1.302.dev0.dist-info → regula_documentreader_webclient-8.1.339.dev0.dist-info}/RECORD +41 -40
- {regula_documentreader_webclient-8.1.302.dev0.dist-info → regula_documentreader_webclient-8.1.339.dev0.dist-info}/WHEEL +0 -0
- {regula_documentreader_webclient-8.1.302.dev0.dist-info → regula_documentreader_webclient-8.1.339.dev0.dist-info}/top_level.txt +0 -0
|
@@ -30,9 +30,10 @@ class OCRSecurityTextItem(BaseModel):
|
|
|
30
30
|
etalon_field_rect: RectangleCoordinates = Field(alias="EtalonFieldRect")
|
|
31
31
|
security_text_result_ocr: StrictStr = Field(alias="SecurityTextResultOCR")
|
|
32
32
|
etalon_result_ocr: StrictStr = Field(alias="EtalonResultOCR")
|
|
33
|
+
result_code: Optional[StrictInt] = Field(default=None, alias="ResultCode")
|
|
33
34
|
reserved1: Optional[StrictInt] = Field(default=None, alias="Reserved1")
|
|
34
35
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
35
|
-
__properties: ClassVar[List[str]] = ["CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "Reserved1", "Reserved2"]
|
|
36
|
+
__properties: ClassVar[List[str]] = ["CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "ResultCode", "Reserved1", "Reserved2"]
|
|
36
37
|
|
|
37
38
|
model_config = ConfigDict(
|
|
38
39
|
populate_by_name=True,
|
|
@@ -100,6 +101,7 @@ class OCRSecurityTextItem(BaseModel):
|
|
|
100
101
|
"EtalonFieldRect": RectangleCoordinates.from_dict(obj["EtalonFieldRect"]) if obj.get("EtalonFieldRect") is not None else None,
|
|
101
102
|
"SecurityTextResultOCR": obj.get("SecurityTextResultOCR"),
|
|
102
103
|
"EtalonResultOCR": obj.get("EtalonResultOCR"),
|
|
104
|
+
"ResultCode": obj.get("ResultCode"),
|
|
103
105
|
"Reserved1": obj.get("Reserved1"),
|
|
104
106
|
"Reserved2": obj.get("Reserved2")
|
|
105
107
|
})
|
|
@@ -34,9 +34,10 @@ class OCRSecurityTextResult(AuthenticityCheckResultItem):
|
|
|
34
34
|
etalon_field_rect: RectangleCoordinates = Field(alias="EtalonFieldRect")
|
|
35
35
|
security_text_result_ocr: StrictStr = Field(alias="SecurityTextResultOCR")
|
|
36
36
|
etalon_result_ocr: StrictStr = Field(alias="EtalonResultOCR")
|
|
37
|
+
result_code: Optional[StrictInt] = Field(default=None, alias="ResultCode")
|
|
37
38
|
reserved1: Optional[StrictInt] = Field(default=None, alias="Reserved1")
|
|
38
39
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
39
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "Reserved1", "Reserved2"]
|
|
40
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "ResultCode", "Reserved1", "Reserved2"]
|
|
40
41
|
|
|
41
42
|
model_config = ConfigDict(
|
|
42
43
|
populate_by_name=True,
|
|
@@ -108,6 +109,7 @@ class OCRSecurityTextResult(AuthenticityCheckResultItem):
|
|
|
108
109
|
"EtalonFieldRect": RectangleCoordinates.from_dict(obj["EtalonFieldRect"]) if obj.get("EtalonFieldRect") is not None else None,
|
|
109
110
|
"SecurityTextResultOCR": obj.get("SecurityTextResultOCR"),
|
|
110
111
|
"EtalonResultOCR": obj.get("EtalonResultOCR"),
|
|
112
|
+
"ResultCode": obj.get("ResultCode"),
|
|
111
113
|
"Reserved1": obj.get("Reserved1"),
|
|
112
114
|
"Reserved2": obj.get("Reserved2")
|
|
113
115
|
})
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Generated by: https://openapi-generator.tech
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
import json
|
|
9
|
+
from enum import Enum
|
|
10
|
+
from typing_extensions import Self
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ParsingErrorCodes(int, Enum):
|
|
14
|
+
"""
|
|
15
|
+
The enumeration contains error codes that can return during the RFID chip processing.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
allowed enum values
|
|
20
|
+
"""
|
|
21
|
+
errLDS_Ok = 1
|
|
22
|
+
errLDS_ASN_IncorrectData = 2147483649
|
|
23
|
+
errLDS_ASN_NotEnoughData = 2147483650
|
|
24
|
+
errLDS_ASN_Contents_UnexpectedData = 2147483651
|
|
25
|
+
errLDS_ASN_SignedData_IncorrectData = 2147483656
|
|
26
|
+
errLDS_ASN_SignedData_EncapContents_IncorrectData = 2147483657
|
|
27
|
+
errLDS_ASN_SignedData_Version_IncorrectData = 2147483658
|
|
28
|
+
errLDS_ASN_SignedData_DigestAlgorithms_IncorrectData = 2147483665
|
|
29
|
+
errLDS_ASN_LDSObject_IncorrectData = 2147483667
|
|
30
|
+
errLDS_ASN_LDSObject_Version_IncorrectData = 2147483668
|
|
31
|
+
errLDS_ASN_LDSObject_DigestAlgorithm_IncorrectData = 2147483669
|
|
32
|
+
errLDS_ASN_LDSObject_DGHashes_IncorrectData = 2147483670
|
|
33
|
+
errLDS_ASN_LDSObject_VersionInfo_IncorrectData = 2147483666
|
|
34
|
+
errLDS_ASN_Certificate_IncorrectData = 2147483671
|
|
35
|
+
errLDS_ASN_Certificate_Version_IncorrectData = 2147483672
|
|
36
|
+
errLDS_ASN_Certificate_SN_IncorrectData = 2147483673
|
|
37
|
+
errLDS_ASN_Certificate_Signature_IncorrectData = 2147483674
|
|
38
|
+
errLDS_ASN_Certificate_Issuer_IncorrectData = 2147483675
|
|
39
|
+
errLDS_ASN_Certificate_Validity_IncorrectData = 2147483676
|
|
40
|
+
errLDS_ASN_Certificate_Subject_IncorrectData = 2147483677
|
|
41
|
+
errLDS_ASN_Certificate_SubjectPK_IncorrectData = 2147483678
|
|
42
|
+
errLDS_ASN_Certificate_Extensions_IncorrectData = 2147483679
|
|
43
|
+
errLDS_ASN_SignerInfo_IncorrectData = 2147483680
|
|
44
|
+
errLDS_ASN_SignerInfo_Version_IncorrectData = 2147483681
|
|
45
|
+
errLDS_ASN_SignerInfo_SID_IncorrectData = 2147483682
|
|
46
|
+
errLDS_ASN_SignerInfo_DigestAlg_IncorrectData = 2147483683
|
|
47
|
+
errLDS_ASN_SignerInfo_SignedAttrs_IncorrectData = 2147483684
|
|
48
|
+
errLDS_ASN_SignerInfo_SignAlg_IncorrectData = 2147483685
|
|
49
|
+
errLDS_ASN_SignerInfo_Signature_IncorrectData = 2147483686
|
|
50
|
+
errLDS_ASN_SignerInfo_UnsignedAttrs_IncorrectData = 2147483687
|
|
51
|
+
errLDS_ICAO_LDSObject_UnsupportedDigestAlgorithm = 2147483696
|
|
52
|
+
errLDS_ICAO_SignedData_SignerInfos_Empty = 2147483697
|
|
53
|
+
errLDS_ICAO_SignerInfo_UnsupportedDigestAlgorithm = 2147483698
|
|
54
|
+
errLDS_ICAO_SignerInfo_UnsupportedSignatureAlgorithm = 2147483699
|
|
55
|
+
errLDS_ICAO_SignerInfo_MessageDigestError = 2147483700
|
|
56
|
+
errLDS_ICAO_SignerInfo_SignedAttrs_Missed = 2147483702
|
|
57
|
+
errLDS_Auth_SignerInfo_CantFindCertificate = 2147483701
|
|
58
|
+
errLDS_Auth_Error = 2147483728
|
|
59
|
+
errLDS_Auth_UnsupportedSignatureAlgorithm = 2147483729
|
|
60
|
+
errLDS_Auth_UnsupportedPublicKeyAlgorithm = 2147483730
|
|
61
|
+
errLDS_Auth_MessedAlgorithms = 2147483731
|
|
62
|
+
errLDS_Auth_PublicKeyDataInvalid = 2147483732
|
|
63
|
+
errLDS_Auth_AlgorithmParametersDataInvalid = 2147483733
|
|
64
|
+
errLDS_Auth_SignatureDataInvalid = 2147483734
|
|
65
|
+
errLDS_Auth_UnsupportedDigestAlgorithm = 2147483735
|
|
66
|
+
errLDS_Auth_SignatureDataIncorrect = 2147483736
|
|
67
|
+
errLDS_Auth_AlgorithmParametersNotDefined = 2147483737
|
|
68
|
+
errLDS_Auth_SignatureCheckFailed = 2147483738
|
|
69
|
+
errLDS_DG_WrongTag = 2147483760
|
|
70
|
+
errLDS_DG_Contents_UnexpectedData = 2147483761
|
|
71
|
+
errLDS_BAP_SymmetricCypher_CantInitialize = 2164260881
|
|
72
|
+
errLDS_PACE_Info_NotAvailable = 2164260896
|
|
73
|
+
errLDS_PACE_SymmetricCypher_CantInitialize = 2164260897
|
|
74
|
+
errLDS_PACE_KeyAgreement_CantInitialize = 2164260898
|
|
75
|
+
errLDS_PACE_EphemeralKeys_CantCreate = 2164260899
|
|
76
|
+
errLDS_PACE_Mapping_CantDecodeNonce = 2164260900
|
|
77
|
+
errLDS_PACE_SharedSecret_CantCreate = 2164260901
|
|
78
|
+
errLDS_PACE_DomainParams_UnsupportedFormat = 2164260902
|
|
79
|
+
errLDS_PACE_EphemeralKeys_Incorrect = 2164260903
|
|
80
|
+
errLDS_PACE_Mapping_EphemeralKeys_Incorrect = 2164260904
|
|
81
|
+
errLDS_PACE_Mapping_CantPerform = 2164260905
|
|
82
|
+
errLDS_PACE_NonMatchingAuthTokens = 2164260906
|
|
83
|
+
errLDS_PACE_CAM_Data_Incorrect = 2164260907
|
|
84
|
+
errLDS_PACE_CAM_Data_CantVerify = 2164260908
|
|
85
|
+
errLDS_PACE_CAM_Data_NonMatching = 2164260909
|
|
86
|
+
errLDS_PACE_IM_Scheme_Incorrect = 2164260910
|
|
87
|
+
errLDS_PACE_IM_RandomMapping_Failed = 2164260911
|
|
88
|
+
errLDS_CA_CantFindPublicKey = 2164260912
|
|
89
|
+
errLDS_CA_CantFindInfo = 2164260913
|
|
90
|
+
errLDS_CA_IncorrectVersion = 2164260914
|
|
91
|
+
errLDS_CA_CantFindDomainParameters = 2164260915
|
|
92
|
+
errLDS_CA_KeyAgreement_CantInitialize = 2164260916
|
|
93
|
+
errLDS_CA_PublicKey_UnsupportedAlgorithm = 2164260917
|
|
94
|
+
errLDS_CA_EphemeralKeys_CantCreate = 2164260918
|
|
95
|
+
errLDS_CA_SharedSecret_CantCreate = 2164260919
|
|
96
|
+
errLDS_CA_NonMatchingAuthTokens = 2164260920
|
|
97
|
+
errLDS_TA_IncorrectVersion = 2164260928
|
|
98
|
+
errLDS_TA_CantBuildCertificateChain = 2164260929
|
|
99
|
+
errLDS_TA_CantFindISPrivateKey = 2164260930
|
|
100
|
+
errLDS_TA_PublicKey_UnsupportedAlgorithm = 2164260931
|
|
101
|
+
errLDS_TA_SignatureBuildingError = 2164260932
|
|
102
|
+
errLDS_TA_InvalidKeyAlgorithmParameters = 2164260933
|
|
103
|
+
errLDS_AA_PublicKey_UnsupportedAlgorithm = 2164260944
|
|
104
|
+
errLDS_AA_PublicKey_IncorrectData = 2164260945
|
|
105
|
+
errLDS_AA_PublicKey_IncorrectParameters = 2164260946
|
|
106
|
+
errLDS_AA_PublicKey_UndefinedParameters = 2164260947
|
|
107
|
+
errLDS_AA_Signature_IncorrectData = 2164260948
|
|
108
|
+
errLDS_AA_UnsupportedRecoveryScheme = 2164260949
|
|
109
|
+
errLDS_AA_IncorrectTrailer = 2164260950
|
|
110
|
+
errLDS_AA_UnsupportedDigestAlgorithm = 2164260951
|
|
111
|
+
errLDS_RI_SectorKey_CantFind = 2164260976
|
|
112
|
+
errLDS_RI_SectorKey_IncorrectData = 2164260977
|
|
113
|
+
errLDS_RI_SectorKey_IncompleteData = 2164260978
|
|
114
|
+
errLDS_CV_Certificate_MissingMandatoryData_PK = 2164260960
|
|
115
|
+
errLDS_CV_Certificate_PublicKey_Unsupported = 2164260962
|
|
116
|
+
errLDS_CV_Certificate_CHAT_UnsupportedTerminalType = 2164260963
|
|
117
|
+
errLDS_CV_Certificate_PrivateKey_Unsupported = 2164260964
|
|
118
|
+
errLDS_CV_Certificate_PrivateKey_InvalidParams = 2164260965
|
|
119
|
+
errLDS_CV_Certificate_IncorrectData = 2164261216
|
|
120
|
+
errLDS_CV_Certificate_CPI_IncorrectData = 2164261217
|
|
121
|
+
errLDS_CV_Certificate_CAR_IncorrectData = 2164261218
|
|
122
|
+
errLDS_CV_Certificate_PublicKey_IncorrectData = 2164261219
|
|
123
|
+
errLDS_CV_Certificate_CHR_IncorrectData = 2164261220
|
|
124
|
+
errLDS_CV_Certificate_CHAT_IncorrectData = 2164261221
|
|
125
|
+
errLDS_CV_Certificate_ValidFrom_IncorrectData = 2164261222
|
|
126
|
+
errLDS_CV_Certificate_ValidTo_IncorrectData = 2164261223
|
|
127
|
+
errLDS_CV_Certificate_Extensions_IncorrectData = 2164261224
|
|
128
|
+
errLDS_CV_Certificate_PrivateKey_IncorrectData = 2164261225
|
|
129
|
+
errLDS_CV_Certificate_PrivateKey_Missing = 2164261226
|
|
130
|
+
errLDS_VDS_UnsupportedVersion = 2164261376
|
|
131
|
+
errLDS_VDS_Issuing_Country_Size = 2164261377
|
|
132
|
+
errLDS_VDS_Issuing_Country_IncorrectData = 2164261378
|
|
133
|
+
errLDS_VDS_Signer_Certificate_Size = 2164261379
|
|
134
|
+
errLDS_VDS_Signer_Certificate_Data = 2164261380
|
|
135
|
+
errLDS_VDS_Signature_IncorrectData = 2164261381
|
|
136
|
+
errLDS_VDS_NC_IncorrectData = 2164261632
|
|
137
|
+
errLDS_VDS_NC_MissingOrIncorrect_Data = 2164261633
|
|
138
|
+
errLDS_VDS_NC_MissingOrIncorrect_Header = 2164261634
|
|
139
|
+
errLDS_VDS_NC_MissingOrIncorrect_Type = 2164261635
|
|
140
|
+
errLDS_VDS_NC_MissingOrIncorrect_Version = 2164261636
|
|
141
|
+
errLDS_VDS_NC_MissingOrIncorrect_IssuingCountry = 2164261637
|
|
142
|
+
errLDS_VDS_NC_MissingOrIncorrect_Message = 2164261638
|
|
143
|
+
errLDS_VDS_NC_MissingOrIncorrect_Signature = 2164261639
|
|
144
|
+
errLDS_VDS_NC_MissingOrIncorrect_SigAlgorithm = 2164261640
|
|
145
|
+
errLDS_VDS_NC_MissingOrIncorrect_Certificate = 2164261641
|
|
146
|
+
errLDS_VDS_NC_MissingOrIncorrect_SigValue = 2164261642
|
|
147
|
+
|
|
148
|
+
@classmethod
|
|
149
|
+
def from_json(cls, json_str: str) -> Self:
|
|
150
|
+
"""Create an instance of ParsingErrorCodes from a JSON string"""
|
|
151
|
+
return cls(json.loads(json_str))
|
|
152
|
+
|
|
153
|
+
|
|
@@ -30,10 +30,9 @@ class PhotoIdentItem(BaseModel):
|
|
|
30
30
|
field_types_list: Optional[List[StrictInt]] = Field(default=None, alias="FieldTypesList")
|
|
31
31
|
step: Optional[StrictInt] = Field(default=None, alias="Step")
|
|
32
32
|
angle: Optional[StrictInt] = Field(default=None, alias="Angle")
|
|
33
|
-
|
|
34
|
-
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
33
|
+
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
35
34
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
36
|
-
__properties: ClassVar[List[str]] = ["LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "
|
|
35
|
+
__properties: ClassVar[List[str]] = ["LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "Result", "Reserved3"]
|
|
37
36
|
|
|
38
37
|
model_config = ConfigDict(
|
|
39
38
|
populate_by_name=True,
|
|
@@ -103,8 +102,7 @@ class PhotoIdentItem(BaseModel):
|
|
|
103
102
|
"FieldTypesList": obj.get("FieldTypesList"),
|
|
104
103
|
"Step": obj.get("Step"),
|
|
105
104
|
"Angle": obj.get("Angle"),
|
|
106
|
-
"
|
|
107
|
-
"Reserved2": obj.get("Reserved2"),
|
|
105
|
+
"Result": obj.get("Result"),
|
|
108
106
|
"Reserved3": obj.get("Reserved3")
|
|
109
107
|
})
|
|
110
108
|
return _obj
|
|
@@ -34,10 +34,9 @@ class PhotoIdentResult(AuthenticityCheckResultItem):
|
|
|
34
34
|
field_types_list: Optional[List[StrictInt]] = Field(default=None, alias="FieldTypesList")
|
|
35
35
|
step: Optional[StrictInt] = Field(default=None, alias="Step")
|
|
36
36
|
angle: Optional[StrictInt] = Field(default=None, alias="Angle")
|
|
37
|
-
|
|
38
|
-
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
37
|
+
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
39
38
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
40
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "
|
|
39
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "Result", "Reserved3"]
|
|
41
40
|
|
|
42
41
|
model_config = ConfigDict(
|
|
43
42
|
populate_by_name=True,
|
|
@@ -111,8 +110,7 @@ class PhotoIdentResult(AuthenticityCheckResultItem):
|
|
|
111
110
|
"FieldTypesList": obj.get("FieldTypesList"),
|
|
112
111
|
"Step": obj.get("Step"),
|
|
113
112
|
"Angle": obj.get("Angle"),
|
|
114
|
-
"
|
|
115
|
-
"Reserved2": obj.get("Reserved2"),
|
|
113
|
+
"Result": obj.get("Result"),
|
|
116
114
|
"Reserved3": obj.get("Reserved3")
|
|
117
115
|
})
|
|
118
116
|
return _obj
|
|
@@ -97,7 +97,8 @@ class ProcessParams(BaseModel):
|
|
|
97
97
|
select_longest_names: Optional[StrictBool] = Field(default=None, description="Select the longest value from the different value sources and write it to the value field if comparison is done successfully. The parameter applies this logic to the personal names, such as given name, surname, surname and given name, middle name and etc.", alias="selectLongestNames")
|
|
98
98
|
do_barcodes: Optional[List[InputBarcodeType]] = Field(default=None, description="Set the types of barcodes to process.", alias="doBarcodes")
|
|
99
99
|
strict_dl_category_expiry: Optional[StrictBool] = Field(default=None, description="Set to force DL categories expiry date to affect the overall status or not. As documents usually have their own date of expiry, which might be less or greater than category expiry date, this might be handy for specific cases.", alias="strictDLCategoryExpiry")
|
|
100
|
-
|
|
100
|
+
generate_alpha2_codes: Optional[StrictBool] = Field(default=None, description="Set to generate Alpha-2 codes for nationality and issuing state fields.", alias="generateAlpha2Codes")
|
|
101
|
+
__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"]
|
|
101
102
|
|
|
102
103
|
model_config = ConfigDict(
|
|
103
104
|
populate_by_name=True,
|
|
@@ -229,7 +230,8 @@ class ProcessParams(BaseModel):
|
|
|
229
230
|
"strictBarcodeDigitalSignatureCheck": obj.get("strictBarcodeDigitalSignatureCheck"),
|
|
230
231
|
"selectLongestNames": obj.get("selectLongestNames"),
|
|
231
232
|
"doBarcodes": obj.get("doBarcodes"),
|
|
232
|
-
"strictDLCategoryExpiry": obj.get("strictDLCategoryExpiry")
|
|
233
|
+
"strictDLCategoryExpiry": obj.get("strictDLCategoryExpiry"),
|
|
234
|
+
"generateAlpha2Codes": obj.get("generateAlpha2Codes")
|
|
233
235
|
})
|
|
234
236
|
return _obj
|
|
235
237
|
|
|
@@ -28,8 +28,9 @@ class SecurityFeatureItem(BaseModel):
|
|
|
28
28
|
visibility: Visibility = Field(alias="Visibility")
|
|
29
29
|
critical_flag: Critical = Field(alias="CriticalFlag")
|
|
30
30
|
area_list: Optional[AreaContainer] = Field(default=None, alias="AreaList")
|
|
31
|
+
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
31
32
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
32
|
-
__properties: ClassVar[List[str]] = ["ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Reserved2"]
|
|
33
|
+
__properties: ClassVar[List[str]] = ["ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Result", "Reserved2"]
|
|
33
34
|
|
|
34
35
|
model_config = ConfigDict(
|
|
35
36
|
populate_by_name=True,
|
|
@@ -93,6 +94,7 @@ class SecurityFeatureItem(BaseModel):
|
|
|
93
94
|
"Visibility": obj.get("Visibility"),
|
|
94
95
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
95
96
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
97
|
+
"Result": obj.get("Result"),
|
|
96
98
|
"Reserved2": obj.get("Reserved2")
|
|
97
99
|
})
|
|
98
100
|
return _obj
|
|
@@ -32,8 +32,9 @@ class SecurityFeatureResult(AuthenticityCheckResultItem):
|
|
|
32
32
|
visibility: Visibility = Field(alias="Visibility")
|
|
33
33
|
critical_flag: Critical = Field(alias="CriticalFlag")
|
|
34
34
|
area_list: Optional[AreaContainer] = Field(default=None, alias="AreaList")
|
|
35
|
+
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
35
36
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
36
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Reserved2"]
|
|
37
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Result", "Reserved2"]
|
|
37
38
|
|
|
38
39
|
model_config = ConfigDict(
|
|
39
40
|
populate_by_name=True,
|
|
@@ -101,6 +102,7 @@ class SecurityFeatureResult(AuthenticityCheckResultItem):
|
|
|
101
102
|
"Visibility": obj.get("Visibility"),
|
|
102
103
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
103
104
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
105
|
+
"Result": obj.get("Result"),
|
|
104
106
|
"Reserved2": obj.get("Reserved2")
|
|
105
107
|
})
|
|
106
108
|
return _obj
|
|
@@ -71,6 +71,8 @@ class SecurityFeatureType(int, Enum):
|
|
|
71
71
|
CONTACT_CHIP_CLASSIFICATION = 51
|
|
72
72
|
HEAD_POSITION_CHECK = 52
|
|
73
73
|
LIVENESS_BLACK_AND_WHITE_COPY_CHECK = 53
|
|
74
|
+
LIVENESS_DYNAPRINT = 54
|
|
75
|
+
LIVENESS_GEOMETRY_CHECK = 55
|
|
74
76
|
|
|
75
77
|
@classmethod
|
|
76
78
|
def from_json(cls, json_str: str) -> Self:
|
|
@@ -20,7 +20,7 @@ class SymbolRecognitionResult(BaseModel):
|
|
|
20
20
|
"""
|
|
21
21
|
Describes a single character recognition results in the text field line
|
|
22
22
|
""" # noqa: E501
|
|
23
|
-
symbol_rect: RectangleCoordinates = Field(alias="SymbolRect")
|
|
23
|
+
symbol_rect: Optional[RectangleCoordinates] = Field(default=None, alias="SymbolRect")
|
|
24
24
|
candidates_count: Union[StrictFloat, StrictInt] = Field(description="Number of significant elements of ListOfCandidates array", alias="CandidatesCount")
|
|
25
25
|
list_of_candidates: List[SymbolCandidate] = Field(description="Array of candidate characters. Sorted in descending order of recognition probabilities (the first element has highest probability)", alias="ListOfCandidates")
|
|
26
26
|
base_line_bottom: Optional[StrictInt] = Field(default=None, alias="BaseLineBottom")
|
|
@@ -24,13 +24,16 @@ class TransactionProcessRequest(BaseModel):
|
|
|
24
24
|
""" # noqa: E501
|
|
25
25
|
process_param: ProcessParams = Field(alias="processParam")
|
|
26
26
|
list: Optional[List[ProcessRequestImage]] = Field(default=None, alias="List")
|
|
27
|
+
tag: Optional[StrictStr] = Field(default=None, description="Session ID")
|
|
28
|
+
tenant: Optional[StrictStr] = Field(default=None, description="Customer name")
|
|
29
|
+
env: Optional[StrictStr] = Field(default=None, description="Environment type")
|
|
27
30
|
live_portrait: Optional[StrictStr] = Field(default=None, description="Live portrait photo", alias="livePortrait")
|
|
28
31
|
ext_portrait: Optional[StrictStr] = Field(default=None, description="Portrait photo from an external source", alias="extPortrait")
|
|
29
32
|
container_list: Optional[ContainerList] = Field(default=None, alias="ContainerList")
|
|
30
33
|
system_info: Optional[ProcessSystemInfo] = Field(default=None, alias="systemInfo")
|
|
31
34
|
pass_back_object: Optional[Dict[str, Any]] = Field(default=None, description="Free-form object to be included in response. Must be object, not list or simple value. Do not affect document processing. Use it freely to pass your app params. Stored in process logs.", alias="passBackObject")
|
|
32
35
|
dtc: Optional[StrictStr] = Field(default=None, description="Digital Travel Credential (DTC-VC) data in base64 format for processing")
|
|
33
|
-
__properties: ClassVar[List[str]] = ["processParam", "List", "livePortrait", "extPortrait", "ContainerList", "systemInfo", "passBackObject", "dtc"]
|
|
36
|
+
__properties: ClassVar[List[str]] = ["processParam", "List", "tag", "tenant", "env", "livePortrait", "extPortrait", "ContainerList", "systemInfo", "passBackObject", "dtc"]
|
|
34
37
|
|
|
35
38
|
model_config = ConfigDict(
|
|
36
39
|
populate_by_name=True,
|
|
@@ -101,6 +104,9 @@ class TransactionProcessRequest(BaseModel):
|
|
|
101
104
|
_obj = cls.model_validate({
|
|
102
105
|
"processParam": ProcessParams.from_dict(obj["processParam"]) if obj.get("processParam") is not None else None,
|
|
103
106
|
"List": [ProcessRequestImage.from_dict(_item) for _item in obj["List"]] if obj.get("List") is not None else None,
|
|
107
|
+
"tag": obj.get("tag"),
|
|
108
|
+
"tenant": obj.get("tenant"),
|
|
109
|
+
"env": obj.get("env"),
|
|
104
110
|
"livePortrait": obj.get("livePortrait"),
|
|
105
111
|
"extPortrait": obj.get("extPortrait"),
|
|
106
112
|
"ContainerList": ContainerList.from_dict(obj["ContainerList"]) if obj.get("ContainerList") is not None else None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: regula_documentreader_webclient
|
|
3
|
-
Version: 8.1.
|
|
3
|
+
Version: 8.1.339.dev0
|
|
4
4
|
Summary: Regula's Document Reader python client
|
|
5
5
|
Home-page: https://regulaforensics.com
|
|
6
6
|
Author: Regula Forensics, Inc.
|
|
@@ -59,7 +59,7 @@ with open("australia_passport.jpg", "rb") as f:
|
|
|
59
59
|
|
|
60
60
|
with DocumentReaderApi(host='http://localhost:8080') as api:
|
|
61
61
|
params = ProcessParams(
|
|
62
|
-
scenario=Scenario.
|
|
62
|
+
scenario=Scenario.FULLPROCESS,
|
|
63
63
|
result_type_output=[Result.DOCUMENT_IMAGE, Result.STATUS, Result.TEXT, Result.IMAGES]
|
|
64
64
|
)
|
|
65
65
|
request = RecognitionRequest(process_params=params, images=[input_image])
|
|
@@ -5,22 +5,22 @@ regula/documentreader/webclient/ext/__init__.py,sha256=9ahgPOBtNOMhuCo7I0FqNOlrl
|
|
|
5
5
|
regula/documentreader/webclient/ext/api/__init__.py,sha256=Xzygo6zcLQaUJmchHGc2awK1kGwgIcqdBBqexU8iZfI,90
|
|
6
6
|
regula/documentreader/webclient/ext/api/document_reader_api.py,sha256=HjH3A3p93hd63d8q9Kr-y-oQbtsA8CWUYTXinsFkIOc,1785
|
|
7
7
|
regula/documentreader/webclient/ext/models/__init__.py,sha256=c8SIj9HZVotag-5rsFbSeQdTAD_kkCe4POpf6WHgSs0,1103
|
|
8
|
-
regula/documentreader/webclient/ext/models/images.py,sha256=
|
|
8
|
+
regula/documentreader/webclient/ext/models/images.py,sha256=x4BU2eQoE7AlDskSFlXHzMDJtEUldiN84VHyxWoN980,1409
|
|
9
9
|
regula/documentreader/webclient/ext/models/recognition_request.py,sha256=GWOhOqSm8weoo4ngHK1G1sKbmCpxmy1O33RhooCTpMQ,3385
|
|
10
|
-
regula/documentreader/webclient/ext/models/recognition_response.py,sha256=
|
|
11
|
-
regula/documentreader/webclient/ext/models/text.py,sha256=
|
|
10
|
+
regula/documentreader/webclient/ext/models/recognition_response.py,sha256=vYC7VNS3ZspiCnmCYdvb44BM68118LdryUTvgPzXii8,3468
|
|
11
|
+
regula/documentreader/webclient/ext/models/text.py,sha256=QFdMUhomAndod9_HY1VyowEkJpvY6SVGL-l0UfQz-bU,1757
|
|
12
12
|
regula/documentreader/webclient/ext/models/text_field.py,sha256=WaSlf6ndJK-4HSuocCMoNlSFBP0vNKUb_18acnPTM7I,1130
|
|
13
13
|
regula/documentreader/webclient/ext/models/authenticity/__init__.py,sha256=skkU16L7VlcFWNCurXRqntGW2kqKMYrIMuuSdv3Cpos,597
|
|
14
|
-
regula/documentreader/webclient/ext/models/authenticity/authenticity_check_list.py,sha256=
|
|
15
|
-
regula/documentreader/webclient/ext/models/authenticity/fiber.py,sha256=
|
|
16
|
-
regula/documentreader/webclient/ext/models/authenticity/ident.py,sha256=
|
|
17
|
-
regula/documentreader/webclient/ext/models/authenticity/image_ident.py,sha256=
|
|
18
|
-
regula/documentreader/webclient/ext/models/authenticity/ocr_security_text.py,sha256=
|
|
19
|
-
regula/documentreader/webclient/ext/models/authenticity/security_feature.py,sha256=
|
|
20
|
-
regula/documentreader/webclient/gen/__init__.py,sha256=
|
|
14
|
+
regula/documentreader/webclient/ext/models/authenticity/authenticity_check_list.py,sha256=UPFGpUtzgRyaP3Am9vI3HyaRR6wwCUcTLuPhZs0YHJ0,4913
|
|
15
|
+
regula/documentreader/webclient/ext/models/authenticity/fiber.py,sha256=ufy68CtFekBgzy_tlhjgmGFVXDu_qHQhcFDhZENMyEc,333
|
|
16
|
+
regula/documentreader/webclient/ext/models/authenticity/ident.py,sha256=DSmXEJ-v3SpFhhBOrd--R_lZGSS1qLXb6qftTNaNnlQ,539
|
|
17
|
+
regula/documentreader/webclient/ext/models/authenticity/image_ident.py,sha256=QmKTghP4Lo7bHBEubwzsVt1ob97NNaNIu_5QN_LUF9M,370
|
|
18
|
+
regula/documentreader/webclient/ext/models/authenticity/ocr_security_text.py,sha256=BV0h2_UDrwUlWczoJQW8qTSkdZ0icm0n0pPDRY9Qwq4,407
|
|
19
|
+
regula/documentreader/webclient/ext/models/authenticity/security_feature.py,sha256=t8egDyT1wlGvsyvZboAFOvcaYsALGpj41E50FUbvx68,622
|
|
20
|
+
regula/documentreader/webclient/gen/__init__.py,sha256=pgq20ZqtwGg6nHsu4phO5RmSAOo2vTu-yKsD5lIXhTY,21764
|
|
21
21
|
regula/documentreader/webclient/gen/api_client.py,sha256=HHg6WD9kdtzfaP_W15MQDVv6dHAC3axjYT-CnnL4iwQ,27357
|
|
22
22
|
regula/documentreader/webclient/gen/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
23
|
-
regula/documentreader/webclient/gen/configuration.py,sha256=
|
|
23
|
+
regula/documentreader/webclient/gen/configuration.py,sha256=0hMqlAxYaL30050LBPnHrh6Sg1EIfSfQLr0eGNRNz1w,18084
|
|
24
24
|
regula/documentreader/webclient/gen/exceptions.py,sha256=fYFXlhg-wAlI9z7BBe-1Eifxm9tiBONwsXkH_VMq4RE,6228
|
|
25
25
|
regula/documentreader/webclient/gen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
regula/documentreader/webclient/gen/rest.py,sha256=y7sJJqeEmZH-cdSovKzh4w3GhJZ7-fQH6C9tNr7NLao,9246
|
|
@@ -28,19 +28,19 @@ regula/documentreader/webclient/gen/api/__init__.py,sha256=uTpCYjhu-y6l3fzZZtnb0
|
|
|
28
28
|
regula/documentreader/webclient/gen/api/healthcheck_api.py,sha256=g3Q3XsdgYfEmmdgnnspRX5DluONia4bDANKUZLRMMlQ,29942
|
|
29
29
|
regula/documentreader/webclient/gen/api/process_api.py,sha256=RnJXVZy-M1bNfiXK0tHEQEuhOgxkXk9jMG-hpZfTjZ8,12123
|
|
30
30
|
regula/documentreader/webclient/gen/api/transaction_api.py,sha256=gloxQil4dSiOQ_pfxrjVj1IU0-K0TTlq1OIBwD_gL_w,65601
|
|
31
|
-
regula/documentreader/webclient/gen/models/__init__.py,sha256=
|
|
31
|
+
regula/documentreader/webclient/gen/models/__init__.py,sha256=vaSyDVBijG7Q583kH53UDaILOZm-H4K4pkOuq2-w51k,20790
|
|
32
32
|
regula/documentreader/webclient/gen/models/area_array.py,sha256=4MSvqoocqZjfsXxniYQTOackHbhbi4cboIelOYbiFBo,3522
|
|
33
33
|
regula/documentreader/webclient/gen/models/area_container.py,sha256=FLl6DdW1kxcFFLPvHkGcUjk0zpbhpAKRpKCd3gjbpaw,3480
|
|
34
34
|
regula/documentreader/webclient/gen/models/auth_params.py,sha256=7YlqQeS23EmPgDUUUWo6BNICdU4Zp86aNVOVwncKos8,6463
|
|
35
35
|
regula/documentreader/webclient/gen/models/authenticity_check_list.py,sha256=JQjhomvZZECbAFmqj7Ee03Pi5JdpHwhZxZHmGQ2lnKk,2976
|
|
36
36
|
regula/documentreader/webclient/gen/models/authenticity_check_list_item.py,sha256=dFGG8z561X5pX1rB6rNGadtOvn-zqJT3yFmpddv_n1c,2805
|
|
37
37
|
regula/documentreader/webclient/gen/models/authenticity_check_result.py,sha256=ObntM7U3n_1chf1P-voNk12aZicIvL29rx2g70Q-bns,3383
|
|
38
|
-
regula/documentreader/webclient/gen/models/authenticity_check_result_item.py,sha256=
|
|
38
|
+
regula/documentreader/webclient/gen/models/authenticity_check_result_item.py,sha256=FWuvXqHB-1j4pxF_r63tdmwOkZT-yESHMui6RtD3FIw,11229
|
|
39
39
|
regula/documentreader/webclient/gen/models/authenticity_check_result_list_inner.py,sha256=TyEkWc6svhI71uz0eTEd1QSFKqimnfGVdLBE9QghQHo,7839
|
|
40
40
|
regula/documentreader/webclient/gen/models/authenticity_result.py,sha256=rjtFnaPpW77ME-9_trWYXuV1ck1Xp_ot7uTxWtNGrlU,3205
|
|
41
|
-
regula/documentreader/webclient/gen/models/authenticity_result_type.py,sha256=
|
|
41
|
+
regula/documentreader/webclient/gen/models/authenticity_result_type.py,sha256=uQBErugMJRv0bUV5ieAUpvNU7EQZXbi0oSpQV30Rr14,1191
|
|
42
42
|
regula/documentreader/webclient/gen/models/bar_code_module_type.py,sha256=1rPvDumVLLGda985QJxg3yLcUGL1EFQs6uPgFXx170M,541
|
|
43
|
-
regula/documentreader/webclient/gen/models/barcode_type.py,sha256=
|
|
43
|
+
regula/documentreader/webclient/gen/models/barcode_type.py,sha256=N22D3d2XPizAhsE-ZXGUKnEQRQF851WSVzBAp2iru5M,811
|
|
44
44
|
regula/documentreader/webclient/gen/models/bc_pdf417_info.py,sha256=os0oyHUQvPsRWqrannfiwddDhzz593O68oniHVMoUbY,2841
|
|
45
45
|
regula/documentreader/webclient/gen/models/bc_roidetect.py,sha256=06vsU1T7FodmEIpEDvje_grsy8rsjpDHgK_HoYFI_Io,2420
|
|
46
46
|
regula/documentreader/webclient/gen/models/binary_data.py,sha256=RAtDtODB5NpztIAbp_h4dXLhJcg8RU_7aHcGP7H9A4M,12705
|
|
@@ -70,7 +70,7 @@ regula/documentreader/webclient/gen/models/doc_visual_extended_info.py,sha256=co
|
|
|
70
70
|
regula/documentreader/webclient/gen/models/doc_visual_extended_info_item.py,sha256=tJPcwsdkRd1jUU6__s-NPQJKkuQVlBargIpOg7RpHcY,2810
|
|
71
71
|
regula/documentreader/webclient/gen/models/document_binary_info_result.py,sha256=WkIxAlycd8OUr3Dt5l-PvzCdiyNwPy3RyIQ1mZt87C8,3242
|
|
72
72
|
regula/documentreader/webclient/gen/models/document_format.py,sha256=xoL4imYTxHnt8kBmOTxv-OHRtMc3nzxld3JsdHJWs-M,743
|
|
73
|
-
regula/documentreader/webclient/gen/models/document_image.py,sha256
|
|
73
|
+
regula/documentreader/webclient/gen/models/document_image.py,sha256=j1GFGHo16AzqE7jGgKSCF43nyK2fOopdby4GXwcqzbE,2447
|
|
74
74
|
regula/documentreader/webclient/gen/models/document_image_result.py,sha256=WUPQcZO5LQ8FpTZ1ZbSEs-xUU27IL_3UtIGapuix0y0,3125
|
|
75
75
|
regula/documentreader/webclient/gen/models/document_position.py,sha256=xY7zqxxDjf8ED9Z-9zBrpfLZ-BkUPIg2Iqwylia-Jto,5375
|
|
76
76
|
regula/documentreader/webclient/gen/models/document_position_item.py,sha256=6KK7h8IptRYkTfizUFCS5JhMk12GCERmeP9JFYmZkU0,2710
|
|
@@ -87,12 +87,12 @@ regula/documentreader/webclient/gen/models/error_coordinates.py,sha256=qfgNu5QtM
|
|
|
87
87
|
regula/documentreader/webclient/gen/models/face_api.py,sha256=6dCuD8vPcp7mqhMBIeLt78q85261jAu9hAVkrZ4Luuk,4772
|
|
88
88
|
regula/documentreader/webclient/gen/models/face_api_search.py,sha256=l0WOblzvbLiU8wRc9As5Sw7ZAg7uwLOoD9kMeVaG1ME,3065
|
|
89
89
|
regula/documentreader/webclient/gen/models/face_detection.py,sha256=zNNJVCXtxd5pk1QWGtnm6wxkiz2AvtZP8jwudNMOOxQ,3244
|
|
90
|
-
regula/documentreader/webclient/gen/models/face_detection_item.py,sha256=
|
|
91
|
-
regula/documentreader/webclient/gen/models/face_detection_result.py,sha256=
|
|
90
|
+
regula/documentreader/webclient/gen/models/face_detection_item.py,sha256=MQB56InlH0T63QHuk0vkz-SVDWx-2zaLxmjxmoSfR5Q,2690
|
|
91
|
+
regula/documentreader/webclient/gen/models/face_detection_result.py,sha256=6bepD2k0KPNeNMFnhD_OjVO0Szf-2PN4-d--U8mHgJA,3126
|
|
92
92
|
regula/documentreader/webclient/gen/models/face_item.py,sha256=iAKQ0Qjwu71R4qaOsDzQ9EMmO4BehyrcMz8HMbs_qZ0,4336
|
|
93
93
|
regula/documentreader/webclient/gen/models/fdsid_list.py,sha256=eominQ40FH24IH9fITDAfX4EYqUebXg_-HXpY-0Bm4w,4402
|
|
94
|
-
regula/documentreader/webclient/gen/models/fiber_item.py,sha256=
|
|
95
|
-
regula/documentreader/webclient/gen/models/fiber_result.py,sha256=
|
|
94
|
+
regula/documentreader/webclient/gen/models/fiber_item.py,sha256=59_yFPlLxSjFgfIoT4pXdfwknVID4EWxkbR1oWNgA4g,4456
|
|
95
|
+
regula/documentreader/webclient/gen/models/fiber_result.py,sha256=ITQ2cc8d7OVN-Td5S7kpXNUkrfR_Is3iRwVi9t1Oqiw,5116
|
|
96
96
|
regula/documentreader/webclient/gen/models/field_item.py,sha256=S8NQ3Km13jS76AfFyJJWFEzoLnFPsL_tBAns6qHt-F8,2832
|
|
97
97
|
regula/documentreader/webclient/gen/models/file_image.py,sha256=8YISAAWhvdm3Ggf2lD81q7o-W2HUT9jXfEXuLbbVBS0,2346
|
|
98
98
|
regula/documentreader/webclient/gen/models/get_transactions_by_tag_response.py,sha256=Hovh3jws3u1awXNzK1w4P6J3MK3l5v0lhK1gyxabNgo,2701
|
|
@@ -103,9 +103,9 @@ regula/documentreader/webclient/gen/models/graphic_fields_list.py,sha256=XCTJa8A
|
|
|
103
103
|
regula/documentreader/webclient/gen/models/graphics_result.py,sha256=SOJp2H-oohDg6fm2no-5vsEVd1Lcwo9oFyvgtHbNKb4,3206
|
|
104
104
|
regula/documentreader/webclient/gen/models/healthcheck.py,sha256=E8s9nM-bgNZ5Uc7WxfYHY8UapDPY1OTqpCafXOezrfk,5379
|
|
105
105
|
regula/documentreader/webclient/gen/models/healthcheck_documents_database.py,sha256=qCKEglC_BIHve0iNn0UM9mZewrufHtIg1w4dNE4rqD8,3713
|
|
106
|
-
regula/documentreader/webclient/gen/models/ident_item.py,sha256=
|
|
107
|
-
regula/documentreader/webclient/gen/models/ident_result.py,sha256=
|
|
108
|
-
regula/documentreader/webclient/gen/models/image_data.py,sha256=
|
|
106
|
+
regula/documentreader/webclient/gen/models/ident_item.py,sha256=MQebw7n79-CygoxW2H4d-wfDWaAsngIq9D34SlOnCxs,4486
|
|
107
|
+
regula/documentreader/webclient/gen/models/ident_result.py,sha256=vUAEUwvWyayDhrkPvsJu71Obo6hekGESfbFoxke7a_Y,5146
|
|
108
|
+
regula/documentreader/webclient/gen/models/image_data.py,sha256=A8YcmCS6uV02yBLw5yIUAzRcPQcyZbprmTSCkKLXiPA,2431
|
|
109
109
|
regula/documentreader/webclient/gen/models/image_qa.py,sha256=1Qwp1XC7RzthIxdk54drD5cnhOJmr2TFYvLcq4qIjU4,4856
|
|
110
110
|
regula/documentreader/webclient/gen/models/image_quality_check.py,sha256=MALhX1QdG18h9KmnKAHWkX9iLmqsyV_udCe8yeDrwTs,3562
|
|
111
111
|
regula/documentreader/webclient/gen/models/image_quality_check_list.py,sha256=LiI7qiamCQKomwG0J9B2xOAhyIJd0nmDaCInXX_hiik,3120
|
|
@@ -128,11 +128,11 @@ regula/documentreader/webclient/gen/models/lcid.py,sha256=D0MBIfktXYPPkRVCUSSHyN
|
|
|
128
128
|
regula/documentreader/webclient/gen/models/lexical_analysis_result.py,sha256=14ymAFRmQV3xgXdHkH1lf3wU-xq9sAEUYJby_U3VAHA,3473
|
|
129
129
|
regula/documentreader/webclient/gen/models/license_item.py,sha256=niMcTCpIz_b1MaVxsnah5f5iXJaHWtpns3qQ8HoM5D4,2336
|
|
130
130
|
regula/documentreader/webclient/gen/models/license_result.py,sha256=xzd8-RvvEsRaGbQiBko1594vGhya6aDtMLBEZqdw6oI,2775
|
|
131
|
-
regula/documentreader/webclient/gen/models/light.py,sha256=
|
|
131
|
+
regula/documentreader/webclient/gen/models/light.py,sha256=6VPk1tZpZn0ph0ykDxLuMDM2eq-va-eIWguP100tPa4,1544
|
|
132
132
|
regula/documentreader/webclient/gen/models/list_transactions_by_tag_response.py,sha256=yT8dwshY6BI-pk2prcLvCE3OOwWt5IBXEczkwpgtXHc,2968
|
|
133
133
|
regula/documentreader/webclient/gen/models/list_verified_fields.py,sha256=jklFQCZR9n9SXgpdp4Yz2AFPttiKTkSqHoWL81ZM4UU,3216
|
|
134
134
|
regula/documentreader/webclient/gen/models/list_verified_fields_item.py,sha256=LHm1JtDx1GumCOfhaqVv6NlY8eTS0ND-11_2KG4HaYU,2751
|
|
135
|
-
regula/documentreader/webclient/gen/models/liveness_params.py,sha256=
|
|
135
|
+
regula/documentreader/webclient/gen/models/liveness_params.py,sha256=nlxqwyvUXqjLqojNtOQYmw9wQ2e7s4xKwUN2yoE-Dp0,3702
|
|
136
136
|
regula/documentreader/webclient/gen/models/log_level.py,sha256=50zJkPpvDt4PYrlgBJp0QHGW2wYO2TLa_5qy_MIxPcY,562
|
|
137
137
|
regula/documentreader/webclient/gen/models/measure_system.py,sha256=CltBZGhqVVeuAIKEkrSnN7A2Ao65BBEtwaieEJMbdnQ,497
|
|
138
138
|
regula/documentreader/webclient/gen/models/mrz_detect_mode_enum.py,sha256=gc8c4HTAa5yRutUhXOFbO2ZKhphArW0vhenb24bEJTE,643
|
|
@@ -145,8 +145,8 @@ regula/documentreader/webclient/gen/models/mrz_rows_item.py,sha256=jUol6GdIYRdEc
|
|
|
145
145
|
regula/documentreader/webclient/gen/models/mrz_test_quality.py,sha256=jYfkanSz4tts6BMjTH48sifaB0XRDDrukV0zA9ToHsE,3889
|
|
146
146
|
regula/documentreader/webclient/gen/models/mrz_test_quality_item.py,sha256=N1DHfX2oC7uz1WtMB1RpicfeABn0e5q3DfM6ois_L2E,2679
|
|
147
147
|
regula/documentreader/webclient/gen/models/mrz_test_quality_result.py,sha256=-2iqwp3CniTSHud0tPWvx_2cF4GUMaknfWq-isvnuQA,3115
|
|
148
|
-
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=
|
|
149
|
-
regula/documentreader/webclient/gen/models/ocr_security_text_result.py,sha256=
|
|
148
|
+
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=kOScbMRyy1yqT1h71zEKJdUPCPSYuy__4rCIJkq8f6M,4668
|
|
149
|
+
regula/documentreader/webclient/gen/models/ocr_security_text_result.py,sha256=tebup1He_P27Q8cE0c_hVQQlnDHUJf5B5_-rP0b9OQs,5328
|
|
150
150
|
regula/documentreader/webclient/gen/models/one_candidate.py,sha256=YKWQ1j-zQz3zc93K8KPwuXI0WC5pEeDAeiPLPOPo-Fs,5240
|
|
151
151
|
regula/documentreader/webclient/gen/models/one_candidate_item.py,sha256=hplvxqurTiNEtf_GkZrem5b-Su3O8tc0IyxK1qTzbLc,2876
|
|
152
152
|
regula/documentreader/webclient/gen/models/original_symbol.py,sha256=PdeHzkXeYMmzt-uAYwzdF4Ky6CZ7UThPtoCoDLr3L2Q,2954
|
|
@@ -154,14 +154,15 @@ regula/documentreader/webclient/gen/models/out_data.py,sha256=ZE0UNzLFvTWp6PdAhr
|
|
|
154
154
|
regula/documentreader/webclient/gen/models/out_data_transaction_images_field_value.py,sha256=tez6qBxPTIQPktbjbYYmVr5k8vMUtFJibziOM2UxhC4,3083
|
|
155
155
|
regula/documentreader/webclient/gen/models/p_array_field.py,sha256=8kVa-HuHKQhbCZducLXl9gvkwGbqKnDWXeLdM9Jqv5Y,4954
|
|
156
156
|
regula/documentreader/webclient/gen/models/parsed_data.py,sha256=n2fh8nO8B-CpBsmUqFRMVkS7ZtMRDA7sCqIty1RRzuE,2363
|
|
157
|
+
regula/documentreader/webclient/gen/models/parsing_error_codes.py,sha256=y2UW12CAoxsHIlfavTVdewW6gGUV1LrD2PyB4tJKhns,7555
|
|
157
158
|
regula/documentreader/webclient/gen/models/parsing_notification_codes.py,sha256=WhBQk4elweDIOxBB0dgzmMez6tXJ6ajs4pZP-xkMWm8,14216
|
|
158
159
|
regula/documentreader/webclient/gen/models/per_document_config.py,sha256=yTCwXM3eqkGZhKMAZKDojpjuUMkoF9lcFafm43LVkgU,2659
|
|
159
|
-
regula/documentreader/webclient/gen/models/photo_ident_item.py,sha256=
|
|
160
|
-
regula/documentreader/webclient/gen/models/photo_ident_result.py,sha256=
|
|
160
|
+
regula/documentreader/webclient/gen/models/photo_ident_item.py,sha256=2fO3D3XHfN4Ge18uwmgQgBKyKy7Kbqhe8km8LQBmAM8,4557
|
|
161
|
+
regula/documentreader/webclient/gen/models/photo_ident_result.py,sha256=YpDPqn3622dPsyU7E_4zS04SFinXj2o7XCG_BC6kBUY,5217
|
|
161
162
|
regula/documentreader/webclient/gen/models/point.py,sha256=_khsO-Zo2SIqXIPHQALJz4F6kB2lDqIi0Yhg7c8ImRw,2234
|
|
162
163
|
regula/documentreader/webclient/gen/models/point_array.py,sha256=xcg4DqZl-oNKJt9BPyASdeGNTlPrO7G31zTMEzZkL2g,2768
|
|
163
164
|
regula/documentreader/webclient/gen/models/points_container.py,sha256=6KKKe2sFAwg3d0QDWyejfQEHTqTzTE56o6MqSX5gO6A,2951
|
|
164
|
-
regula/documentreader/webclient/gen/models/process_params.py,sha256=
|
|
165
|
+
regula/documentreader/webclient/gen/models/process_params.py,sha256=FiEgx5Qs2MKltIeb7zysVTMv7wBHgksvBbfFb9LQChk,23987
|
|
165
166
|
regula/documentreader/webclient/gen/models/process_params_rfid.py,sha256=YzSY3dormyWNln3ispy5G4j_7yhNhWJgKQpT45_ad5k,2646
|
|
166
167
|
regula/documentreader/webclient/gen/models/process_request.py,sha256=SC4zwX2P9A9VjLe7tGXhUvx5Z3mzmsgJOWZAUocZ4JI,6129
|
|
167
168
|
regula/documentreader/webclient/gen/models/process_request_image.py,sha256=yA0hfvr-KGBGFyR97fQZsAkDX3mh4XZEVsWDXiOLTPQ,2948
|
|
@@ -214,10 +215,10 @@ regula/documentreader/webclient/gen/models/rfid_text_data_result.py,sha256=K7oc0
|
|
|
214
215
|
regula/documentreader/webclient/gen/models/rfid_type.py,sha256=Iar7yWbbSUnMsac5NMgG4BpkULYe4j97iJAZ01oM7dk,639
|
|
215
216
|
regula/documentreader/webclient/gen/models/rfid_validity.py,sha256=GdTJug93a4K1REDy4QeMLgVNf878TtbnYGT1R-0fuD4,2980
|
|
216
217
|
regula/documentreader/webclient/gen/models/rfidpkd_resource_type.py,sha256=apzhMDECSR6nA1XshnyBhF1UvssokP7oAk3xOPVB9p0,658
|
|
217
|
-
regula/documentreader/webclient/gen/models/scenario.py,sha256=
|
|
218
|
-
regula/documentreader/webclient/gen/models/security_feature_item.py,sha256=
|
|
219
|
-
regula/documentreader/webclient/gen/models/security_feature_result.py,sha256=
|
|
220
|
-
regula/documentreader/webclient/gen/models/security_feature_type.py,sha256=
|
|
218
|
+
regula/documentreader/webclient/gen/models/scenario.py,sha256=8uKVzKXSk0cHuskSOYANSzT3q2rrJXkYyywntSwgxSU,1043
|
|
219
|
+
regula/documentreader/webclient/gen/models/security_feature_item.py,sha256=a1ka9Tw-riXi0HfrLY1CWxdwg0xSO5wBb-bIIDQ1HOY,4033
|
|
220
|
+
regula/documentreader/webclient/gen/models/security_feature_result.py,sha256=cVastS4po4D0X5ob2yGYKMDwcHHZWbh8-eQ49_U5MaU,4693
|
|
221
|
+
regula/documentreader/webclient/gen/models/security_feature_type.py,sha256=Z9qIAKRFU_MvpSkHABQLssAFXv8uJJQzefZYwnk7Bi8,2285
|
|
221
222
|
regula/documentreader/webclient/gen/models/security_object_certificates.py,sha256=T-qOwejw7bwUM-baidHAMfC_kaQfjt2JboQAxoPJfDQ,2760
|
|
222
223
|
regula/documentreader/webclient/gen/models/source.py,sha256=j869nKh9ZZQaTWN_BLvwMQ_1xQBZSPmMMumiF6s8ojw,591
|
|
223
224
|
regula/documentreader/webclient/gen/models/source_validity.py,sha256=LQI27yhQHF2PkwTpzsJeycoKu-zI4GJ18buyRoPRulg,2447
|
|
@@ -229,7 +230,7 @@ regula/documentreader/webclient/gen/models/string_recognition_result.py,sha256=a
|
|
|
229
230
|
regula/documentreader/webclient/gen/models/symbol.py,sha256=c5p8WFPEQS7I9SvIoN49VekjNG4e2_F1OXTZyMtL2fI,2273
|
|
230
231
|
regula/documentreader/webclient/gen/models/symbol_candidate.py,sha256=WCywBDAYYK2MS6tw5CsO3pP_KjpGXbg_U5c18Fr4Kt0,2923
|
|
231
232
|
regula/documentreader/webclient/gen/models/symbol_estimation_item.py,sha256=TaNaYi3cM0ZGZx0gruyzYdgVMjtAibJPX6lTcA3hk0w,5192
|
|
232
|
-
regula/documentreader/webclient/gen/models/symbol_recognition_result.py,sha256
|
|
233
|
+
regula/documentreader/webclient/gen/models/symbol_recognition_result.py,sha256=-ug0c7lvggzzdG2aD0IavkJg8Gy1WfiWj90Dskj8Uqo,4364
|
|
233
234
|
regula/documentreader/webclient/gen/models/t_doc_binary_info.py,sha256=Kwb-GcTKJGyQ-rz2qSPxEMBKrM1WYcXBlA0tgAivs8A,3398
|
|
234
235
|
regula/documentreader/webclient/gen/models/t_doc_binary_info_item.py,sha256=Q23P-odDMVeVjAOGRFLN4IASCAAesysAvP3Oq-w0HLA,2684
|
|
235
236
|
regula/documentreader/webclient/gen/models/t_original_rfid_graphics_info.py,sha256=D7_cQi_DwxkJ0ojTrAT7o-eUYM31Nb7yC3becKlzrcI,3020
|
|
@@ -246,7 +247,7 @@ regula/documentreader/webclient/gen/models/text_result.py,sha256=D7AsopRakMp0H9S
|
|
|
246
247
|
regula/documentreader/webclient/gen/models/transaction_image.py,sha256=iHquHMGdRrfC6rfEejk_JvAINBdWihbRBBI1jCtGirE,2578
|
|
247
248
|
regula/documentreader/webclient/gen/models/transaction_info.py,sha256=8cGPX_2LGhuBIr_60iZYiZ6CrfRuYPk9SzyqunukYx0,3909
|
|
248
249
|
regula/documentreader/webclient/gen/models/transaction_process_get_response.py,sha256=ovNFtcdHVSNU3eHGYVXjMdi47FHHaRuuWY2EGOzEKKg,3310
|
|
249
|
-
regula/documentreader/webclient/gen/models/transaction_process_request.py,sha256=
|
|
250
|
+
regula/documentreader/webclient/gen/models/transaction_process_request.py,sha256=gNMFvXgokeU1IyYA1nFd854839nceDZc6iNfL41WP9w,5637
|
|
250
251
|
regula/documentreader/webclient/gen/models/transaction_process_response.py,sha256=g-_YG51D9N17UwWjjPrjPkDDEBykKItS-z68CBUb0GA,4701
|
|
251
252
|
regula/documentreader/webclient/gen/models/transaction_process_response_item.py,sha256=D-tascu0Ios_WeE0rXseORYj_gQi6q-IQ70YzeHxgNQ,2390
|
|
252
253
|
regula/documentreader/webclient/gen/models/transaction_process_result.py,sha256=5dcL6OF7IhiFrnLLrYoW0j4lveWLzEiYPtQk8jDPSsY,3290
|
|
@@ -256,7 +257,7 @@ regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR5
|
|
|
256
257
|
regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=sOnkL-c9WIJPHcUjT5_KzxMiVZK574iOBppANc7zRSs,4861
|
|
257
258
|
regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
|
|
258
259
|
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=55PY8Wwn1Nh0msc-ynPZqlkmc6QwsghIy9-ICqvbRcA,5040
|
|
259
|
-
regula_documentreader_webclient-8.1.
|
|
260
|
-
regula_documentreader_webclient-8.1.
|
|
261
|
-
regula_documentreader_webclient-8.1.
|
|
262
|
-
regula_documentreader_webclient-8.1.
|
|
260
|
+
regula_documentreader_webclient-8.1.339.dev0.dist-info/METADATA,sha256=cbbsHXRUiyXb8Dy7SBMpiXr12tr_rSepXBqPO1bY9yM,3805
|
|
261
|
+
regula_documentreader_webclient-8.1.339.dev0.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
|
262
|
+
regula_documentreader_webclient-8.1.339.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
|
|
263
|
+
regula_documentreader_webclient-8.1.339.dev0.dist-info/RECORD,,
|
|
File without changes
|