regula-documentreader-webclient 8.1.380rc0__py3-none-any.whl → 8.1.381.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.
- regula/documentreader/webclient/gen/models/certificate_data.py +2 -2
- regula/documentreader/webclient/gen/models/doc_visual_extended_field.py +1 -3
- regula/documentreader/webclient/gen/models/fiber_item.py +2 -4
- regula/documentreader/webclient/gen/models/fiber_result.py +2 -4
- regula/documentreader/webclient/gen/models/ident_item.py +2 -4
- regula/documentreader/webclient/gen/models/ident_result.py +2 -4
- regula/documentreader/webclient/gen/models/light.py +3 -1
- regula/documentreader/webclient/gen/models/ocr_security_text_item.py +6 -7
- regula/documentreader/webclient/gen/models/ocr_security_text_result.py +6 -7
- regula/documentreader/webclient/gen/models/p_array_field.py +2 -1
- regula/documentreader/webclient/gen/models/parsing_error_codes.py +8 -0
- regula/documentreader/webclient/gen/models/parsing_notification_codes.py +105 -6
- regula/documentreader/webclient/gen/models/photo_ident_item.py +1 -3
- regula/documentreader/webclient/gen/models/photo_ident_result.py +1 -3
- regula/documentreader/webclient/gen/models/process_params.py +1 -2
- regula/documentreader/webclient/gen/models/process_request.py +2 -5
- regula/documentreader/webclient/gen/models/rfid_access_control_procedure_type.py +1 -0
- regula/documentreader/webclient/gen/models/rfid_baud_rate.py +3 -0
- regula/documentreader/webclient/gen/models/rfid_certificate_type.py +4 -0
- regula/documentreader/webclient/gen/models/rfid_data_file_type.py +9 -1
- regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py +6 -1
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field.py +1 -3
- regula/documentreader/webclient/gen/models/rfid_error_codes.py +116 -114
- regula/documentreader/webclient/gen/models/rfid_password_type.py +1 -0
- regula/documentreader/webclient/gen/models/security_feature_item.py +1 -3
- regula/documentreader/webclient/gen/models/security_feature_result.py +1 -3
- regula/documentreader/webclient/gen/models/symbol_recognition_result.py +2 -4
- regula/documentreader/webclient/gen/models/verified_field_map.py +3 -5
- regula/documentreader/webclient/gen/models/visual_extended_field_item.py +1 -3
- {regula_documentreader_webclient-8.1.380rc0.dist-info → regula_documentreader_webclient-8.1.381.dev0.dist-info}/METADATA +1 -1
- {regula_documentreader_webclient-8.1.380rc0.dist-info → regula_documentreader_webclient-8.1.381.dev0.dist-info}/RECORD +33 -33
- {regula_documentreader_webclient-8.1.380rc0.dist-info → regula_documentreader_webclient-8.1.381.dev0.dist-info}/WHEEL +0 -0
- {regula_documentreader_webclient-8.1.380rc0.dist-info → regula_documentreader_webclient-8.1.381.dev0.dist-info}/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@ import pprint
|
|
|
9
9
|
import re # noqa: F401
|
|
10
10
|
import json
|
|
11
11
|
|
|
12
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
12
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List
|
|
14
14
|
from typing import Optional, Set
|
|
15
15
|
from typing_extensions import Self
|
|
@@ -19,7 +19,7 @@ class CertificateData(BaseModel):
|
|
|
19
19
|
CertificateData
|
|
20
20
|
""" # noqa: E501
|
|
21
21
|
data: StrictStr = Field(alias="Data")
|
|
22
|
-
length:
|
|
22
|
+
length: StrictInt = Field(alias="Length")
|
|
23
23
|
__properties: ClassVar[List[str]] = ["Data", "Length"]
|
|
24
24
|
|
|
25
25
|
model_config = ConfigDict(
|
|
@@ -21,7 +21,6 @@ class DocVisualExtendedField(BaseModel):
|
|
|
21
21
|
"""
|
|
22
22
|
DocVisualExtendedField
|
|
23
23
|
""" # noqa: E501
|
|
24
|
-
field_type: StrictInt = Field(alias="FieldType")
|
|
25
24
|
w_field_type: TextFieldType = Field(alias="wFieldType")
|
|
26
25
|
field_name: StrictStr = Field(description="Field symbolic name (null-terminated string)", alias="FieldName")
|
|
27
26
|
strings_count: Union[StrictFloat, StrictInt] = Field(description="Number of StringsResult array elements", alias="StringsCount")
|
|
@@ -35,7 +34,7 @@ class DocVisualExtendedField(BaseModel):
|
|
|
35
34
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
36
35
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
37
36
|
field_rect: RectangleCoordinates = Field(alias="FieldRect")
|
|
38
|
-
__properties: ClassVar[List[str]] = ["
|
|
37
|
+
__properties: ClassVar[List[str]] = ["wFieldType", "FieldName", "StringsCount", "StringsResult", "Buf_Length", "Buf_Text", "FieldMask", "Validity", "InComparison", "wLCID", "Reserved2", "Reserved3", "FieldRect"]
|
|
39
38
|
|
|
40
39
|
model_config = ConfigDict(
|
|
41
40
|
populate_by_name=True,
|
|
@@ -98,7 +97,6 @@ class DocVisualExtendedField(BaseModel):
|
|
|
98
97
|
return cls.model_validate(obj)
|
|
99
98
|
|
|
100
99
|
_obj = cls.model_validate({
|
|
101
|
-
"FieldType": obj.get("FieldType"),
|
|
102
100
|
"wFieldType": obj.get("wFieldType"),
|
|
103
101
|
"FieldName": obj.get("FieldName"),
|
|
104
102
|
"StringsCount": obj.get("StringsCount"),
|
|
@@ -29,8 +29,7 @@ class FiberItem(BaseModel):
|
|
|
29
29
|
length: List[StrictInt] = Field(description="Fibers length value for located areas (in pixels)", alias="Length")
|
|
30
30
|
area: List[StrictInt] = Field(description="Fibers value for areas (in pixels)", alias="Area")
|
|
31
31
|
color_values: List[StrictInt] = Field(description="Fibers color value", alias="ColorValues")
|
|
32
|
-
|
|
33
|
-
__properties: ClassVar[List[str]] = ["RectCount", "ExpectedCount", "LightValue", "LightDisp", "RectArray", "Width", "Length", "Area", "ColorValues", "ErrorCode"]
|
|
32
|
+
__properties: ClassVar[List[str]] = ["RectCount", "ExpectedCount", "LightValue", "LightDisp", "RectArray", "Width", "Length", "Area", "ColorValues"]
|
|
34
33
|
|
|
35
34
|
model_config = ConfigDict(
|
|
36
35
|
populate_by_name=True,
|
|
@@ -98,8 +97,7 @@ class FiberItem(BaseModel):
|
|
|
98
97
|
"Width": obj.get("Width"),
|
|
99
98
|
"Length": obj.get("Length"),
|
|
100
99
|
"Area": obj.get("Area"),
|
|
101
|
-
"ColorValues": obj.get("ColorValues")
|
|
102
|
-
"ErrorCode": obj.get("ErrorCode")
|
|
100
|
+
"ColorValues": obj.get("ColorValues")
|
|
103
101
|
})
|
|
104
102
|
return _obj
|
|
105
103
|
|
|
@@ -33,8 +33,7 @@ class FiberResult(AuthenticityCheckResultItem):
|
|
|
33
33
|
length: List[StrictInt] = Field(description="Fibers length value for located areas (in pixels)", alias="Length")
|
|
34
34
|
area: List[StrictInt] = Field(description="Fibers value for areas (in pixels)", alias="Area")
|
|
35
35
|
color_values: List[StrictInt] = Field(description="Fibers color value", alias="ColorValues")
|
|
36
|
-
|
|
37
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "RectCount", "ExpectedCount", "LightValue", "LightDisp", "RectArray", "Width", "Length", "Area", "ColorValues", "ErrorCode"]
|
|
36
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "RectCount", "ExpectedCount", "LightValue", "LightDisp", "RectArray", "Width", "Length", "Area", "ColorValues"]
|
|
38
37
|
|
|
39
38
|
model_config = ConfigDict(
|
|
40
39
|
populate_by_name=True,
|
|
@@ -106,8 +105,7 @@ class FiberResult(AuthenticityCheckResultItem):
|
|
|
106
105
|
"Width": obj.get("Width"),
|
|
107
106
|
"Length": obj.get("Length"),
|
|
108
107
|
"Area": obj.get("Area"),
|
|
109
|
-
"ColorValues": obj.get("ColorValues")
|
|
110
|
-
"ErrorCode": obj.get("ErrorCode")
|
|
108
|
+
"ColorValues": obj.get("ColorValues")
|
|
111
109
|
})
|
|
112
110
|
return _obj
|
|
113
111
|
|
|
@@ -30,8 +30,7 @@ class IdentItem(BaseModel):
|
|
|
30
30
|
etalon_image: ImageData = Field(alias="EtalonImage")
|
|
31
31
|
area_list: Optional[AreaContainer] = Field(default=None, alias="AreaList")
|
|
32
32
|
element_id: Optional[StrictInt] = Field(default=None, alias="ElementID")
|
|
33
|
-
|
|
34
|
-
__properties: ClassVar[List[str]] = ["ElementType", "LightIndex", "Area", "Image", "EtalonImage", "AreaList", "ElementID", "Result"]
|
|
33
|
+
__properties: ClassVar[List[str]] = ["ElementType", "LightIndex", "Area", "Image", "EtalonImage", "AreaList", "ElementID"]
|
|
35
34
|
|
|
36
35
|
model_config = ConfigDict(
|
|
37
36
|
populate_by_name=True,
|
|
@@ -102,8 +101,7 @@ class IdentItem(BaseModel):
|
|
|
102
101
|
"Image": ImageData.from_dict(obj["Image"]) if obj.get("Image") is not None else None,
|
|
103
102
|
"EtalonImage": ImageData.from_dict(obj["EtalonImage"]) if obj.get("EtalonImage") is not None else None,
|
|
104
103
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
105
|
-
"ElementID": obj.get("ElementID")
|
|
106
|
-
"Result": obj.get("Result")
|
|
104
|
+
"ElementID": obj.get("ElementID")
|
|
107
105
|
})
|
|
108
106
|
return _obj
|
|
109
107
|
|
|
@@ -34,8 +34,7 @@ class IdentResult(AuthenticityCheckResultItem):
|
|
|
34
34
|
etalon_image: ImageData = Field(alias="EtalonImage")
|
|
35
35
|
area_list: Optional[AreaContainer] = Field(default=None, alias="AreaList")
|
|
36
36
|
element_id: Optional[StrictInt] = Field(default=None, alias="ElementID")
|
|
37
|
-
|
|
38
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "LightIndex", "Area", "Image", "EtalonImage", "AreaList", "ElementID", "Result"]
|
|
37
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "LightIndex", "Area", "Image", "EtalonImage", "AreaList", "ElementID"]
|
|
39
38
|
|
|
40
39
|
model_config = ConfigDict(
|
|
41
40
|
populate_by_name=True,
|
|
@@ -110,8 +109,7 @@ class IdentResult(AuthenticityCheckResultItem):
|
|
|
110
109
|
"Image": ImageData.from_dict(obj["Image"]) if obj.get("Image") is not None else None,
|
|
111
110
|
"EtalonImage": ImageData.from_dict(obj["EtalonImage"]) if obj.get("EtalonImage") is not None else None,
|
|
112
111
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
113
|
-
"ElementID": obj.get("ElementID")
|
|
114
|
-
"Result": obj.get("Result")
|
|
112
|
+
"ElementID": obj.get("ElementID")
|
|
115
113
|
})
|
|
116
114
|
return _obj
|
|
117
115
|
|
|
@@ -19,10 +19,12 @@ class Light(int, Enum):
|
|
|
19
19
|
allowed enum values
|
|
20
20
|
"""
|
|
21
21
|
OFF = 0
|
|
22
|
+
WHITE_TOP = 2
|
|
23
|
+
WHITE_SIDE = 4
|
|
22
24
|
WHITE = 6
|
|
23
25
|
IR = 24
|
|
24
26
|
UV = 128
|
|
25
|
-
|
|
27
|
+
AXIAL_WHITE = 3072
|
|
26
28
|
|
|
27
29
|
@classmethod
|
|
28
30
|
def from_json(cls, json_str: str) -> Self:
|
|
@@ -14,6 +14,7 @@ from typing import Any, ClassVar, Dict, List, Optional
|
|
|
14
14
|
from regula.documentreader.webclient.gen.models.critical import Critical
|
|
15
15
|
from regula.documentreader.webclient.gen.models.light import Light
|
|
16
16
|
from regula.documentreader.webclient.gen.models.rectangle_coordinates import RectangleCoordinates
|
|
17
|
+
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
17
18
|
from typing import Optional, Set
|
|
18
19
|
from typing_extensions import Self
|
|
19
20
|
|
|
@@ -24,16 +25,15 @@ class OCRSecurityTextItem(BaseModel):
|
|
|
24
25
|
critical_flag: Critical = Field(alias="CriticalFlag")
|
|
25
26
|
light_type: Light = Field(alias="LightType")
|
|
26
27
|
field_rect: RectangleCoordinates = Field(alias="FieldRect")
|
|
27
|
-
etalon_result_type: StrictInt = Field(alias="EtalonResultType")
|
|
28
|
-
etalon_field_type:
|
|
29
|
-
etalon_light_type:
|
|
28
|
+
etalon_result_type: StrictInt = Field(description="Same as Result type, but used for safe parsing of not-described values. See Result type.", alias="EtalonResultType")
|
|
29
|
+
etalon_field_type: TextFieldType = Field(alias="EtalonFieldType")
|
|
30
|
+
etalon_light_type: Light = Field(alias="EtalonLightType")
|
|
30
31
|
etalon_field_rect: RectangleCoordinates = Field(alias="EtalonFieldRect")
|
|
31
32
|
security_text_result_ocr: StrictStr = Field(alias="SecurityTextResultOCR")
|
|
32
33
|
etalon_result_ocr: StrictStr = Field(alias="EtalonResultOCR")
|
|
33
|
-
result_code: Optional[StrictInt] = Field(default=None, alias="ResultCode")
|
|
34
34
|
reserved1: Optional[StrictInt] = Field(default=None, alias="Reserved1")
|
|
35
35
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
36
|
-
__properties: ClassVar[List[str]] = ["CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "
|
|
36
|
+
__properties: ClassVar[List[str]] = ["CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "Reserved1", "Reserved2"]
|
|
37
37
|
|
|
38
38
|
model_config = ConfigDict(
|
|
39
39
|
populate_by_name=True,
|
|
@@ -95,13 +95,12 @@ class OCRSecurityTextItem(BaseModel):
|
|
|
95
95
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
96
96
|
"LightType": obj.get("LightType"),
|
|
97
97
|
"FieldRect": RectangleCoordinates.from_dict(obj["FieldRect"]) if obj.get("FieldRect") is not None else None,
|
|
98
|
-
"EtalonResultType": obj.get("EtalonResultType"),
|
|
98
|
+
"EtalonResultType": obj.get("EtalonResultType") if obj.get("EtalonResultType") is not None else 0,
|
|
99
99
|
"EtalonFieldType": obj.get("EtalonFieldType"),
|
|
100
100
|
"EtalonLightType": obj.get("EtalonLightType"),
|
|
101
101
|
"EtalonFieldRect": RectangleCoordinates.from_dict(obj["EtalonFieldRect"]) if obj.get("EtalonFieldRect") is not None else None,
|
|
102
102
|
"SecurityTextResultOCR": obj.get("SecurityTextResultOCR"),
|
|
103
103
|
"EtalonResultOCR": obj.get("EtalonResultOCR"),
|
|
104
|
-
"ResultCode": obj.get("ResultCode"),
|
|
105
104
|
"Reserved1": obj.get("Reserved1"),
|
|
106
105
|
"Reserved2": obj.get("Reserved2")
|
|
107
106
|
})
|
|
@@ -18,6 +18,7 @@ from regula.documentreader.webclient.gen.models.check_result import CheckResult
|
|
|
18
18
|
from regula.documentreader.webclient.gen.models.critical import Critical
|
|
19
19
|
from regula.documentreader.webclient.gen.models.light import Light
|
|
20
20
|
from regula.documentreader.webclient.gen.models.rectangle_coordinates import RectangleCoordinates
|
|
21
|
+
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
21
22
|
from typing import Optional, Set
|
|
22
23
|
from typing_extensions import Self
|
|
23
24
|
|
|
@@ -28,16 +29,15 @@ class OCRSecurityTextResult(AuthenticityCheckResultItem):
|
|
|
28
29
|
critical_flag: Critical = Field(alias="CriticalFlag")
|
|
29
30
|
light_type: Light = Field(alias="LightType")
|
|
30
31
|
field_rect: RectangleCoordinates = Field(alias="FieldRect")
|
|
31
|
-
etalon_result_type: StrictInt = Field(alias="EtalonResultType")
|
|
32
|
-
etalon_field_type:
|
|
33
|
-
etalon_light_type:
|
|
32
|
+
etalon_result_type: StrictInt = Field(description="Same as Result type, but used for safe parsing of not-described values. See Result type.", alias="EtalonResultType")
|
|
33
|
+
etalon_field_type: TextFieldType = Field(alias="EtalonFieldType")
|
|
34
|
+
etalon_light_type: Light = Field(alias="EtalonLightType")
|
|
34
35
|
etalon_field_rect: RectangleCoordinates = Field(alias="EtalonFieldRect")
|
|
35
36
|
security_text_result_ocr: StrictStr = Field(alias="SecurityTextResultOCR")
|
|
36
37
|
etalon_result_ocr: StrictStr = Field(alias="EtalonResultOCR")
|
|
37
|
-
result_code: Optional[StrictInt] = Field(default=None, alias="ResultCode")
|
|
38
38
|
reserved1: Optional[StrictInt] = Field(default=None, alias="Reserved1")
|
|
39
39
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
40
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "
|
|
40
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "CriticalFlag", "LightType", "FieldRect", "EtalonResultType", "EtalonFieldType", "EtalonLightType", "EtalonFieldRect", "SecurityTextResultOCR", "EtalonResultOCR", "Reserved1", "Reserved2"]
|
|
41
41
|
|
|
42
42
|
model_config = ConfigDict(
|
|
43
43
|
populate_by_name=True,
|
|
@@ -103,13 +103,12 @@ class OCRSecurityTextResult(AuthenticityCheckResultItem):
|
|
|
103
103
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
104
104
|
"LightType": obj.get("LightType"),
|
|
105
105
|
"FieldRect": RectangleCoordinates.from_dict(obj["FieldRect"]) if obj.get("FieldRect") is not None else None,
|
|
106
|
-
"EtalonResultType": obj.get("EtalonResultType"),
|
|
106
|
+
"EtalonResultType": obj.get("EtalonResultType") if obj.get("EtalonResultType") is not None else 0,
|
|
107
107
|
"EtalonFieldType": obj.get("EtalonFieldType"),
|
|
108
108
|
"EtalonLightType": obj.get("EtalonLightType"),
|
|
109
109
|
"EtalonFieldRect": RectangleCoordinates.from_dict(obj["EtalonFieldRect"]) if obj.get("EtalonFieldRect") is not None else None,
|
|
110
110
|
"SecurityTextResultOCR": obj.get("SecurityTextResultOCR"),
|
|
111
111
|
"EtalonResultOCR": obj.get("EtalonResultOCR"),
|
|
112
|
-
"ResultCode": obj.get("ResultCode"),
|
|
113
112
|
"Reserved1": obj.get("Reserved1"),
|
|
114
113
|
"Reserved2": obj.get("Reserved2")
|
|
115
114
|
})
|
|
@@ -15,6 +15,7 @@ from regula.documentreader.webclient.gen.models.barcode_type import BarcodeType
|
|
|
15
15
|
from regula.documentreader.webclient.gen.models.bc_pdf417_info import BcPDF417INFO
|
|
16
16
|
from regula.documentreader.webclient.gen.models.bc_roidetect import BcROIDETECT
|
|
17
17
|
from regula.documentreader.webclient.gen.models.data_module import DataModule
|
|
18
|
+
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
18
19
|
from typing import Optional, Set
|
|
19
20
|
from typing_extensions import Self
|
|
20
21
|
|
|
@@ -29,7 +30,7 @@ class PArrayField(BaseModel):
|
|
|
29
30
|
bc_pdf417_info: Optional[BcPDF417INFO] = Field(default=None, alias="bcPDF417INFO")
|
|
30
31
|
bc_roi_detect: BcROIDETECT = Field(alias="bcROI_DETECT")
|
|
31
32
|
bc_text_decoder_types: Optional[StrictInt] = Field(default=None, alias="bcTextDecoderTypes")
|
|
32
|
-
bc_text_field_type: Optional[
|
|
33
|
+
bc_text_field_type: Optional[TextFieldType] = Field(default=None, alias="bcTextFieldType")
|
|
33
34
|
bc_type_decode: BarcodeType = Field(alias="bcType_DECODE")
|
|
34
35
|
bc_type_detect: StrictInt = Field(alias="bcType_DETECT")
|
|
35
36
|
__properties: ClassVar[List[str]] = ["bcAngle_DETECT", "bcCodeResult", "bcCountModule", "bcDataModule", "bcPDF417INFO", "bcROI_DETECT", "bcTextDecoderTypes", "bcTextFieldType", "bcType_DECODE", "bcType_DETECT"]
|
|
@@ -48,6 +48,14 @@ class ParsingErrorCodes(int, Enum):
|
|
|
48
48
|
errLDS_ASN_SignerInfo_SignAlg_IncorrectData = 2147483685
|
|
49
49
|
errLDS_ASN_SignerInfo_Signature_IncorrectData = 2147483686
|
|
50
50
|
errLDS_ASN_SignerInfo_UnsignedAttrs_IncorrectData = 2147483687
|
|
51
|
+
errLDS_ASN_DTC_SignerInfo_IncorrectData = 2147483712
|
|
52
|
+
errLDS_ASN_DTC_SignerInfo_Certificate_IncorrectData = 2147483713
|
|
53
|
+
errLDS_ASN_DTC_SignerInfo_DigestAlg_IncorrectData = 2147483714
|
|
54
|
+
errLDS_ASN_DTC_SignerInfo_SignedAttrs_IncorrectData = 2147483715
|
|
55
|
+
errLDS_ASN_DTC_SignerInfo_SignAlg_IncorrectData = 2147483716
|
|
56
|
+
errLDS_ASN_DTC_SignerInfo_Signature_IncorrectData = 2147483717
|
|
57
|
+
errLDS_ASN_DTC_SecurityInfo_IncorrectData = 2147483718
|
|
58
|
+
errLDS_ASN_DTC_ContentInfo_IncorrectData = 2147483719
|
|
51
59
|
errLDS_ICAO_LDSObject_UnsupportedDigestAlgorithm = 2147483696
|
|
52
60
|
errLDS_ICAO_SignedData_SignerInfos_Empty = 2147483697
|
|
53
61
|
errLDS_ICAO_SignerInfo_UnsupportedDigestAlgorithm = 2147483698
|
|
@@ -107,6 +107,11 @@ class ParsingNotificationCodes(int, Enum):
|
|
|
107
107
|
ntfLDS_ICAO_Certificate_Ext_Optional_Critical = 2415919693
|
|
108
108
|
ntfLDS_ICAO_Certificate_Subject_NonCompliant = 2415919694
|
|
109
109
|
ntfLDS_ICAO_Certificate_Subject_CommonNameNonCompliant = 2415919695
|
|
110
|
+
ntfLDS_ICAO_Certificate_Chain_Country_NonMatching = 2415919696
|
|
111
|
+
ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching = 2415919697
|
|
112
|
+
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698
|
|
113
|
+
ntfLDS_ICAO_Certificate_Issuer_CountryNonUpperCase = 2415919699
|
|
114
|
+
ntfLDS_ICAO_Certificate_Subject_CountryNonUpperCase = 2415919700
|
|
110
115
|
ntfLDS_ICAO_COM_LDS_Version_Incorrect = 2415919136
|
|
111
116
|
ntfLDS_ICAO_COM_LDS_Version_Missing = 2415919137
|
|
112
117
|
ntfLDS_ICAO_COM_Unicode_Version_Incorrect = 2415919138
|
|
@@ -172,6 +177,7 @@ class ParsingNotificationCodes(int, Enum):
|
|
|
172
177
|
ntfLDS_MRZ_OptionalData_IncorrectChecksum = 139286
|
|
173
178
|
ntfLDS_MRZ_IncorrectChecksum = 139287
|
|
174
179
|
ntfLDS_MRZ_Incorrect = 139288
|
|
180
|
+
ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching = 139289
|
|
175
181
|
ntfLDS_Biometrics_FormatOwner_Missing = 2415984640
|
|
176
182
|
ntfLDS_Biometrics_FormatOwner_Incorrect = 2416050176
|
|
177
183
|
ntfLDS_Biometrics_FormatType_Missing = 2416115712
|
|
@@ -183,6 +189,7 @@ class ParsingNotificationCodes(int, Enum):
|
|
|
183
189
|
ntfLDS_Biometrics_BDB_FormatID_Incorrect = 2416508928
|
|
184
190
|
ntfLDS_Biometrics_BDB_Version_Incorrect = 2416574464
|
|
185
191
|
ntfLDS_Biometrics_BDB_DataLength_Incorrect = 2416640000
|
|
192
|
+
ntfLDS_Biometrics_BDB_Data_Incorrect = 2416705536
|
|
186
193
|
ntfLDS_Biometrics_BDB_Data_Gender = 2416967680
|
|
187
194
|
ntfLDS_Biometrics_BDB_Data_EyeColor = 2417033216
|
|
188
195
|
ntfLDS_Biometrics_BDB_Data_HairColor = 2417098752
|
|
@@ -194,6 +201,104 @@ class ParsingNotificationCodes(int, Enum):
|
|
|
194
201
|
ntfLDS_Biometrics_BDB_Data_PoseAngleU_Roll = 2417491968
|
|
195
202
|
ntfLDS_Biometrics_BDB_Data_FaceImageType = 2417557504
|
|
196
203
|
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040
|
|
204
|
+
ntfLDS_Biometrics_RB_Data_Incorrect = 2449539072
|
|
205
|
+
ntfLDS_Biometrics_RB_Item_Incorrect = 2449604608
|
|
206
|
+
ntfLDS_Biometrics_RB_Item_Missing = 2449670144
|
|
207
|
+
ntfLDS_Biometrics_RB_Item_Unexpected = 2449735680
|
|
208
|
+
ntfLDS_Biometrics_RB_RID_Incorrect = 2449801232
|
|
209
|
+
ntfLDS_Biometrics_RB_ImageR_Incorrect = 2449801248
|
|
210
|
+
ntfLDS_Biometrics_RB_Image_Item_Incorrect = 2449801264
|
|
211
|
+
ntfLDS_Biometrics_RB_Image_Item_Missing = 2449801265
|
|
212
|
+
ntfLDS_Biometrics_RB_Image_Item_Unexpected = 2449801266
|
|
213
|
+
ntfLDS_Biometrics_RB_Image_Info_Item_Incorrect = 2449801280
|
|
214
|
+
ntfLDS_Biometrics_RB_Image_Info_Item_Missing = 2449801281
|
|
215
|
+
ntfLDS_Biometrics_RB_Image_Info_Item_Unexpected = 2449801282
|
|
216
|
+
ntfLDS_Biometrics_RB_Image_Info_Format_Incorrect = 2449801283
|
|
217
|
+
ntfLDS_Biometrics_RB_Image_Info_Format_Unsupported = 2449801284
|
|
218
|
+
ntfLDS_Biometrics_RB_Image_Info_Kind_Incorrect = 2449801285
|
|
219
|
+
ntfLDS_Biometrics_RB_Image_Info_Kind_Unsupported = 2449801286
|
|
220
|
+
ntfLDS_Biometrics_RB_Image_Info_PostAPB_Incorrect = 2449801287
|
|
221
|
+
ntfLDS_Biometrics_RB_Image_Info_LossyTA_Incorrect = 2449801288
|
|
222
|
+
ntfLDS_Biometrics_RB_Image_Info_LossyTA_Unsupported = 2449801289
|
|
223
|
+
ntfLDS_Biometrics_RB_Image_Info_Cam2Subj_Unsupported = 2449801290
|
|
224
|
+
ntfLDS_Biometrics_RB_Image_Info_SensDiag_Unsupported = 2449801291
|
|
225
|
+
ntfLDS_Biometrics_RB_Image_Info_LensF_Unsupported = 2449801292
|
|
226
|
+
ntfLDS_Biometrics_RB_Image_Info_ImSize_Incorrect = 2449801293
|
|
227
|
+
ntfLDS_Biometrics_RB_Image_Info_ImSize_Unsupported = 2449801294
|
|
228
|
+
ntfLDS_Biometrics_RB_Image_Info_ImMeas_Incorrect = 2449801295
|
|
229
|
+
ntfLDS_Biometrics_RB_Image_Info_Color_Incorrect = 2449801296
|
|
230
|
+
ntfLDS_Biometrics_RB_Image_Info_Color_Unsupported = 2449801297
|
|
231
|
+
ntfLDS_Biometrics_RB_Image_Info_ColorMap_Incorrect = 2449801298
|
|
232
|
+
ntfLDS_Biometrics_RB_Image_Capt_Item_Incorrect = 2449801312
|
|
233
|
+
ntfLDS_Biometrics_RB_Image_Capt_Item_Unexpected = 2449801313
|
|
234
|
+
ntfLDS_Biometrics_RB_Image_Capt_Spectral_Unsupported = 2449801314
|
|
235
|
+
ntfLDS_Biometrics_RB_Image_Capt_TechCode_Incorrect = 2449801315
|
|
236
|
+
ntfLDS_Biometrics_RB_Image_Capt_TechCode_Unsupported = 2449801316
|
|
237
|
+
ntfLDS_Biometrics_RB_Date_Item_Incorrect = 2449801328
|
|
238
|
+
ntfLDS_Biometrics_RB_Date_Item_Missing = 2449801329
|
|
239
|
+
ntfLDS_Biometrics_RB_Date_Item_Unexpected = 2449801330
|
|
240
|
+
ntfLDS_Biometrics_RB_Date_Incorrect = 2449801331
|
|
241
|
+
ntfLDS_Biometrics_RB_Quality_Item_Incorrect = 2449801344
|
|
242
|
+
ntfLDS_Biometrics_RB_Quality_Item_Missing = 2449801345
|
|
243
|
+
ntfLDS_Biometrics_RB_Quality_Item_Unexpected = 2449801346
|
|
244
|
+
ntfLDS_Biometrics_RB_Quality_AlgID_Item_Incorrect = 2449801347
|
|
245
|
+
ntfLDS_Biometrics_RB_Quality_SoE_Item_Incorrect = 2449801348
|
|
246
|
+
ntfLDS_Biometrics_RB_Quality_Score_Item_Incorrect = 2449801349
|
|
247
|
+
ntfLDS_Biometrics_RB_Quality_Error_Item_Incorrect = 2449801350
|
|
248
|
+
ntfLDS_Biometrics_RB_Quality_Error_Item_Unsupported = 2449801351
|
|
249
|
+
ntfLDS_Biometrics_RB_PAD_Item_Incorrect = 2449801360
|
|
250
|
+
ntfLDS_Biometrics_RB_PAD_Item_Unexpected = 2449801361
|
|
251
|
+
ntfLDS_Biometrics_RB_PAD_Decision_Item_Incorrect = 2449801362
|
|
252
|
+
ntfLDS_Biometrics_RB_PAD_Decision_Item_Unsupported = 2449801363
|
|
253
|
+
ntfLDS_Biometrics_RB_PAD_Score_Item_Incorrect = 2449801364
|
|
254
|
+
ntfLDS_Biometrics_RB_PAD_Score_RegID_Item_Incorrect = 2449801365
|
|
255
|
+
ntfLDS_Biometrics_RB_PAD_SoE_Item_Incorrect = 2449801366
|
|
256
|
+
ntfLDS_Biometrics_RB_PAD_SoE_Score_Item_Incorrect = 2449801367
|
|
257
|
+
ntfLDS_Biometrics_RB_PAD_SoE_Error_Item_Incorrect = 2449801368
|
|
258
|
+
ntfLDS_Biometrics_RB_PAD_SoE_Error_Item_Unsupported = 2449801369
|
|
259
|
+
ntfLDS_Biometrics_RB_PAD_ExtData_Item_Incorrect = 2449801370
|
|
260
|
+
ntfLDS_Biometrics_RB_PAD_ExtData_Type_Item_Incorrect = 2449801371
|
|
261
|
+
ntfLDS_Biometrics_RB_PAD_Context_Item_Incorrect = 2449801372
|
|
262
|
+
ntfLDS_Biometrics_RB_PAD_Context_Item_Unsupported = 2449801373
|
|
263
|
+
ntfLDS_Biometrics_RB_PAD_SLevel_Item_Incorrect = 2449801374
|
|
264
|
+
ntfLDS_Biometrics_RB_PAD_SLevel_Item_Unsupported = 2449801375
|
|
265
|
+
ntfLDS_Biometrics_RB_PAD_RiskLevel_Item_Incorrect = 2449801376
|
|
266
|
+
ntfLDS_Biometrics_RB_PAD_Criteria_Item_Incorrect = 2449801377
|
|
267
|
+
ntfLDS_Biometrics_RB_PAD_Criteria_Item_Unsupported = 2449801378
|
|
268
|
+
ntfLDS_Biometrics_RB_PAD_Date_Item_Incorrect = 2449801379
|
|
269
|
+
ntfLDS_Biometrics_RB_PAD_Date_Item_Missing = 2449801380
|
|
270
|
+
ntfLDS_Biometrics_RB_PAD_Date_Item_Unexpected = 2449801381
|
|
271
|
+
ntfLDS_Biometrics_RB_PAD_Date_Incorrect = 2449801382
|
|
272
|
+
ntfLDS_Biometrics_RB_SessionID_Incorrect = 2449801392
|
|
273
|
+
ntfLDS_Biometrics_RB_Derived_Incorrect = 2449801408
|
|
274
|
+
ntfLDS_Biometrics_RB_Device_Incorrect = 2449801424
|
|
275
|
+
ntfLDS_Biometrics_RB_Device_Item_Unexpected = 2449801425
|
|
276
|
+
ntfLDS_Biometrics_RB_Device_ModelID_Item_Incorrect = 2449801426
|
|
277
|
+
ntfLDS_Biometrics_RB_Device_CertID_Item_Incorrect = 2449801427
|
|
278
|
+
ntfLDS_Biometrics_RB_Metadata_Item_Incorrect = 2449801440
|
|
279
|
+
ntfLDS_Biometrics_RB_Metadata_Item_Unexpected = 2449801441
|
|
280
|
+
ntfLDS_Biometrics_RB_Metadata_Gender_Item_Incorrect = 2449801442
|
|
281
|
+
ntfLDS_Biometrics_RB_Metadata_Gender_Item_Unsupported = 2449801443
|
|
282
|
+
ntfLDS_Biometrics_RB_Metadata_Eye_Item_Incorrect = 2449801444
|
|
283
|
+
ntfLDS_Biometrics_RB_Metadata_Eye_Item_Unsupported = 2449801445
|
|
284
|
+
ntfLDS_Biometrics_RB_Metadata_Hair_Item_Incorrect = 2449801446
|
|
285
|
+
ntfLDS_Biometrics_RB_Metadata_Hair_Item_Unsupported = 2449801447
|
|
286
|
+
ntfLDS_Biometrics_RB_Metadata_Height_Item_Incorrect = 2449801448
|
|
287
|
+
ntfLDS_Biometrics_RB_Metadata_Props_Item_Incorrect = 2449801449
|
|
288
|
+
ntfLDS_Biometrics_RB_Metadata_Props_Item_Unexpected = 2449801450
|
|
289
|
+
ntfLDS_Biometrics_RB_Metadata_Express_Item_Incorrect = 2449801451
|
|
290
|
+
ntfLDS_Biometrics_RB_Metadata_Express_Item_Unexpected = 2449801452
|
|
291
|
+
ntfLDS_Biometrics_RB_Metadata_Pose_Item_Incorrect = 2449801453
|
|
292
|
+
ntfLDS_Biometrics_RB_Metadata_Pose_Item_Unexpected = 2449801454
|
|
293
|
+
ntfLDS_Biometrics_RB_LandMark_Item_Incorrect = 2449801456
|
|
294
|
+
ntfLDS_Biometrics_RB_LandMark_Item_Missing = 2449801457
|
|
295
|
+
ntfLDS_Biometrics_RB_LandMark_Item_Unexpected = 2449801458
|
|
296
|
+
ntfLDS_Biometrics_RB_LandMark_Kind_Item_Incorrect = 2449801459
|
|
297
|
+
ntfLDS_Biometrics_RB_LandMark_Mpeg4_Item_Incorrect = 2449801460
|
|
298
|
+
ntfLDS_Biometrics_RB_LandMark_Mpeg4_Item_Unsupported = 2449801461
|
|
299
|
+
ntfLDS_Biometrics_RB_LandMark_AntrL_Item_Incorrect = 2449801462
|
|
300
|
+
ntfLDS_Biometrics_RB_LandMark_Coord_Item_Incorrect = 2449801463
|
|
301
|
+
ntfLDS_DTC_ContentInfo_Version_Incorrect = 2415919872
|
|
197
302
|
ntfLDS_SI_PACE_Info_UnsupportedStdParameters = 2432696320
|
|
198
303
|
ntfLDS_SI_PACE_Info_DeprecatedVersion = 2432696321
|
|
199
304
|
ntfLDS_SI_PACE_DomainParams_UsingStdRef = 2432696322
|
|
@@ -236,12 +341,6 @@ class ParsingNotificationCodes(int, Enum):
|
|
|
236
341
|
ntfLDS_Auth_MLSignerInfo_Certificate_CantFindCSCA = 2449473815
|
|
237
342
|
ntfLDS_Auth_MLSignerInfo_Certificate_Revoked = 2449473816
|
|
238
343
|
ntfLDS_Auth_MLSignerInfo_Certificate_SignatureInvalid = 2449473817
|
|
239
|
-
ntfLDS_ICAO_Certificate_Chain_Country_NonMatching = 2415919696
|
|
240
|
-
ntfLDS_ICAO_Certificate_VisualMrz_Country_NonMatching = 2415919697
|
|
241
|
-
ntfLDS_MRZ_CountryCode_VisualMrz_NonMatching = 139289
|
|
242
|
-
ntfLDS_ICAO_Certificate_MRZ_Country_NonMatching = 2415919698
|
|
243
|
-
ntfLDS_ICAO_Certificate_Issuer_CountryNonUpperCase = 2415919699
|
|
244
|
-
ntfLDS_ICAO_Certificate_Subject_CountryNonUpperCase = 2415919700
|
|
245
344
|
|
|
246
345
|
@classmethod
|
|
247
346
|
def from_json(cls, json_str: str) -> Self:
|
|
@@ -30,9 +30,8 @@ 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
|
-
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
34
33
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
35
|
-
__properties: ClassVar[List[str]] = ["LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "
|
|
34
|
+
__properties: ClassVar[List[str]] = ["LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "Reserved3"]
|
|
36
35
|
|
|
37
36
|
model_config = ConfigDict(
|
|
38
37
|
populate_by_name=True,
|
|
@@ -102,7 +101,6 @@ class PhotoIdentItem(BaseModel):
|
|
|
102
101
|
"FieldTypesList": obj.get("FieldTypesList"),
|
|
103
102
|
"Step": obj.get("Step"),
|
|
104
103
|
"Angle": obj.get("Angle"),
|
|
105
|
-
"Result": obj.get("Result"),
|
|
106
104
|
"Reserved3": obj.get("Reserved3")
|
|
107
105
|
})
|
|
108
106
|
return _obj
|
|
@@ -34,9 +34,8 @@ 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
|
-
result: Optional[StrictInt] = Field(default=None, alias="Result")
|
|
38
37
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
39
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "
|
|
38
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "LightIndex", "Area", "SourceImage", "ResultImages", "FieldTypesCount", "FieldTypesList", "Step", "Angle", "Reserved3"]
|
|
40
39
|
|
|
41
40
|
model_config = ConfigDict(
|
|
42
41
|
populate_by_name=True,
|
|
@@ -110,7 +109,6 @@ class PhotoIdentResult(AuthenticityCheckResultItem):
|
|
|
110
109
|
"FieldTypesList": obj.get("FieldTypesList"),
|
|
111
110
|
"Step": obj.get("Step"),
|
|
112
111
|
"Angle": obj.get("Angle"),
|
|
113
|
-
"Result": obj.get("Result"),
|
|
114
112
|
"Reserved3": obj.get("Reserved3")
|
|
115
113
|
})
|
|
116
114
|
return _obj
|
|
@@ -12,7 +12,6 @@ import json
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
14
14
|
from regula.documentreader.webclient.gen.models.auth_params import AuthParams
|
|
15
|
-
from regula.documentreader.webclient.gen.models.authenticity_result_type import AuthenticityResultType
|
|
16
15
|
from regula.documentreader.webclient.gen.models.document_format import DocumentFormat
|
|
17
16
|
from regula.documentreader.webclient.gen.models.document_type import DocumentType
|
|
18
17
|
from regula.documentreader.webclient.gen.models.face_api import FaceApi
|
|
@@ -82,7 +81,7 @@ class ProcessParams(BaseModel):
|
|
|
82
81
|
split_names: Optional[StrictBool] = Field(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.", alias="splitNames")
|
|
83
82
|
disable_perforation_ocr: Optional[StrictBool] = Field(default=None, description="When enabled, OCR of perforated fields in the document template will not be performed. Disabled by default.", alias="disablePerforationOCR")
|
|
84
83
|
document_group_filter: Optional[List[DocumentType]] = Field(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.", alias="documentGroupFilter")
|
|
85
|
-
process_auth: Optional[
|
|
84
|
+
process_auth: Optional[StrictInt] = Field(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.", alias="processAuth")
|
|
86
85
|
device_id: Optional[StrictInt] = Field(default=None, description="This parameter is used to specify the document reader device type from which input images were captured. Default 0.", alias="deviceId")
|
|
87
86
|
device_type: Optional[StrictInt] = Field(default=None, description="This parameter is used to specify the document reader device type from which input images were captured. Default 0.", alias="deviceType")
|
|
88
87
|
device_type_hex: Optional[StrictStr] = Field(default=None, description="This parameter is used to specify the document reader device type from which input images were captured", alias="deviceTypeHex")
|
|
@@ -12,7 +12,6 @@ import json
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
14
14
|
from regula.documentreader.webclient.gen.models.container_list import ContainerList
|
|
15
|
-
from regula.documentreader.webclient.gen.models.lcid import LCID
|
|
16
15
|
from regula.documentreader.webclient.gen.models.process_params import ProcessParams
|
|
17
16
|
from regula.documentreader.webclient.gen.models.process_request_image import ProcessRequestImage
|
|
18
17
|
from regula.documentreader.webclient.gen.models.process_system_info import ProcessSystemInfo
|
|
@@ -35,8 +34,7 @@ class ProcessRequest(BaseModel):
|
|
|
35
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")
|
|
36
35
|
dtc: Optional[StrictStr] = Field(default=None, description="Digital Travel Credential (DTC-VC) data in base64 format for processing")
|
|
37
36
|
image_urls: Optional[List[StrictStr]] = Field(default=None, description="URLs to the document images for processing.", alias="ImageUrls")
|
|
38
|
-
|
|
39
|
-
__properties: ClassVar[List[str]] = ["processParam", "List", "tag", "tenant", "env", "livePortrait", "extPortrait", "ContainerList", "systemInfo", "passBackObject", "dtc", "ImageUrls", "lcidFilter"]
|
|
37
|
+
__properties: ClassVar[List[str]] = ["processParam", "List", "tag", "tenant", "env", "livePortrait", "extPortrait", "ContainerList", "systemInfo", "passBackObject", "dtc", "ImageUrls"]
|
|
40
38
|
|
|
41
39
|
model_config = ConfigDict(
|
|
42
40
|
populate_by_name=True,
|
|
@@ -116,8 +114,7 @@ class ProcessRequest(BaseModel):
|
|
|
116
114
|
"systemInfo": ProcessSystemInfo.from_dict(obj["systemInfo"]) if obj.get("systemInfo") is not None else None,
|
|
117
115
|
"passBackObject": obj.get("passBackObject"),
|
|
118
116
|
"dtc": obj.get("dtc"),
|
|
119
|
-
"ImageUrls": obj.get("ImageUrls")
|
|
120
|
-
"lcidFilter": obj.get("lcidFilter")
|
|
117
|
+
"ImageUrls": obj.get("ImageUrls")
|
|
121
118
|
})
|
|
122
119
|
return _obj
|
|
123
120
|
|
|
@@ -93,22 +93,30 @@ class RfidDataFileType(int, Enum):
|
|
|
93
93
|
MIFARE_VALIDITY = 301
|
|
94
94
|
AUTHENTICITY_V2 = 302
|
|
95
95
|
ATR = 400
|
|
96
|
+
DIR = 401
|
|
96
97
|
_E_SIGN_PK = 500
|
|
97
98
|
_E_SIGN_SIGNED_DATA = 501
|
|
98
99
|
CERTIFICATE = 600
|
|
99
100
|
MASTER_LIST = 601
|
|
100
101
|
DEFECT_LIST = 602
|
|
101
|
-
|
|
102
|
+
DEVIATION_LIST = 603
|
|
103
|
+
BLACK_LIST = 604
|
|
102
104
|
APP_DIRECTORY = 700
|
|
103
105
|
SESSION = 701
|
|
104
106
|
LOG_DATA = 702
|
|
105
107
|
CHIP_PROPERTIES = 703
|
|
108
|
+
DTC_INFO = 704
|
|
106
109
|
POST_CA_RESPONSE = 710
|
|
107
110
|
POST_CA_PUBLIC_KEY = 711
|
|
108
111
|
POST_CA_INFO = 712
|
|
109
112
|
POST_CA_D_PARAMS = 713
|
|
110
113
|
POST_CA_CHECK_PK = 714
|
|
111
114
|
POST_CA_CHECK_SK = 715
|
|
115
|
+
SAM_DATA = 800
|
|
116
|
+
SAM_DATA_MAX = 832
|
|
117
|
+
VDS = 900
|
|
118
|
+
VDS_NC = 901
|
|
119
|
+
DS = 902
|
|
112
120
|
USER_DEFINED = 1000
|
|
113
121
|
|
|
114
122
|
@classmethod
|
|
@@ -36,6 +36,11 @@ class RfidDataGroupTypeTag(int, Enum):
|
|
|
36
36
|
DG15 = 111
|
|
37
37
|
DG16 = 112
|
|
38
38
|
SOD = 119
|
|
39
|
+
DG17 = 113
|
|
40
|
+
DG18 = 114
|
|
41
|
+
DG22 = 115
|
|
42
|
+
DG23 = 116
|
|
43
|
+
DG24 = 98
|
|
39
44
|
EID_DG1 = 97
|
|
40
45
|
EID_DG2 = 98
|
|
41
46
|
EID_DG3 = 99
|
|
@@ -59,7 +64,7 @@ class RfidDataGroupTypeTag(int, Enum):
|
|
|
59
64
|
EID_DG21 = 117
|
|
60
65
|
EDL_COM = 96
|
|
61
66
|
EDL_SOD = 119
|
|
62
|
-
EDL_CE =
|
|
67
|
+
EDL_CE = 83
|
|
63
68
|
EDL_DG1 = 97
|
|
64
69
|
EDL_DG2 = 107
|
|
65
70
|
EDL_DG3 = 108
|
|
@@ -20,7 +20,6 @@ class RFIDDocVisualExtendedField(BaseModel):
|
|
|
20
20
|
"""
|
|
21
21
|
RFIDDocVisualExtendedField
|
|
22
22
|
""" # noqa: E501
|
|
23
|
-
field_type: StrictInt = Field(alias="FieldType")
|
|
24
23
|
w_field_type: TextFieldType = Field(alias="wFieldType")
|
|
25
24
|
field_name: StrictStr = Field(description="Field symbolic name (null-terminated string)", alias="FieldName")
|
|
26
25
|
strings_count: Union[StrictFloat, StrictInt] = Field(description="Number of StringsResult array elements", alias="StringsCount")
|
|
@@ -37,7 +36,7 @@ class RFIDDocVisualExtendedField(BaseModel):
|
|
|
37
36
|
origin_dg_tag: Optional[StrictInt] = Field(default=None, alias="OriginDGTag")
|
|
38
37
|
origin_tag_entry: Union[StrictFloat, StrictInt] = Field(description="Record index of the text field source in the data group", alias="OriginTagEntry")
|
|
39
38
|
origin_entry_view: Optional[StrictInt] = Field(default=None, alias="OriginEntryView")
|
|
40
|
-
__properties: ClassVar[List[str]] = ["
|
|
39
|
+
__properties: ClassVar[List[str]] = ["wFieldType", "FieldName", "StringsCount", "StringsResult", "Buf_Length", "Buf_Text", "FieldMask", "Validity", "InComparison", "wLCID", "Reserved2", "Reserved3", "OriginDG", "OriginDGTag", "OriginTagEntry", "OriginEntryView"]
|
|
41
40
|
|
|
42
41
|
model_config = ConfigDict(
|
|
43
42
|
populate_by_name=True,
|
|
@@ -97,7 +96,6 @@ class RFIDDocVisualExtendedField(BaseModel):
|
|
|
97
96
|
return cls.model_validate(obj)
|
|
98
97
|
|
|
99
98
|
_obj = cls.model_validate({
|
|
100
|
-
"FieldType": obj.get("FieldType"),
|
|
101
99
|
"wFieldType": obj.get("wFieldType"),
|
|
102
100
|
"FieldName": obj.get("FieldName"),
|
|
103
101
|
"StringsCount": obj.get("StringsCount"),
|
|
@@ -18,120 +18,122 @@ class RFIDErrorCodes(int, Enum):
|
|
|
18
18
|
"""
|
|
19
19
|
allowed enum values
|
|
20
20
|
"""
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
21
|
+
RFID_Error_NoError = 1
|
|
22
|
+
RFID_Error_AlreadyDone = 2
|
|
23
|
+
RFID_Error_Failed = 4294967295
|
|
24
|
+
RFID_Error_NoChipDetected = 2147549185
|
|
25
|
+
RFID_Error_NotAvailable = 2147549186
|
|
26
|
+
RFID_Error_InvalidParameter = 2147549188
|
|
27
|
+
RFID_Error_NotInitialized = 2147549189
|
|
28
|
+
RFID_Error_NotEnoughMemory = 2147549190
|
|
29
|
+
RFID_Error_NotEnoughData = 2147549191
|
|
30
|
+
RFID_Error_InvalidDirectory = 2147549192
|
|
31
|
+
RFID_Error_UnknownCommand = 2147549193
|
|
32
|
+
RFID_Error_FileIOError = 2147549194
|
|
33
|
+
RFID_Error_Busy = 2147549195
|
|
34
|
+
RFID_Error_OldFirmware = 2147549196
|
|
35
|
+
RFID_Error_PCSC_Failed = 2147614720
|
|
36
|
+
RFID_Error_PCSC_ReaderNotAvailable = 2147614721
|
|
37
|
+
RFID_Error_PCSC_CantConnectCard = 2147614722
|
|
38
|
+
RFID_Error_PCSC_CardIsNotConnected = 2147614723
|
|
39
|
+
RFID_Error_PCSC_OperationCancelled = 2147614724
|
|
40
|
+
RFID_Error_PCSC_CardIsBusy = 2147614725
|
|
41
|
+
RFID_Error_PCSC_FailedSCard = 2147614726
|
|
42
|
+
RFID_Error_PCSC_ExtLe_Failed = 2147614736
|
|
43
|
+
RFID_LAYER6_SECURITY_MANAGER = 2248146944
|
|
44
|
+
RFID_LAYER6_APP_SELECTION_FAILURE = 2248146945
|
|
45
|
+
RFID_LAYER6_MUTUAL_AUTH_MAC_FAIL = 2248147200
|
|
46
|
+
RFID_LAYER6_MUTUAL_AUTH_ENC_FAIL = 2248147201
|
|
47
|
+
RFID_LAYER6_MUTUAL_AUTH_FAILURE = 2248147202
|
|
48
|
+
RFID_LAYER6_MUTUAL_AUTH_FAILURE_DATA = 2248147203
|
|
49
|
+
RFID_LAYER6_SM_DO8E_MISSING = 2248147456
|
|
50
|
+
RFID_LAYER6_SM_DO87_MISSING = 2248147457
|
|
51
|
+
RFID_LAYER6_SM_DO99_MISSING = 2248147458
|
|
52
|
+
RFID_LAYER6_SM_MAC_INCORRECT = 2248147459
|
|
53
|
+
RFID_LAYER6_SM_DO87_INCORRECT = 2248147460
|
|
54
|
+
RFID_LAYER6_NON_TLV_RESPONSE_DATA = 2248147712
|
|
55
|
+
RFID_LAYER6_WRONG_RND_ICC_LENGTH = 2248147713
|
|
56
|
+
RFID_LAYER6_INT_AUTH_FAILURE = 2248147714
|
|
57
|
+
RFID_LAYER6_MSE_SET_KAT_FAILURE = 2248147715
|
|
58
|
+
RFID_LAYER6_MSE_SET_DST_FAILURE = 2248147716
|
|
59
|
+
RFID_LAYER6_PSO_CERTIFICATE_FAILURE = 2248147717
|
|
60
|
+
RFID_LAYER6_MSE_SET_AT_FAILURE = 2248147718
|
|
61
|
+
RFID_LAYER6_GET_CHALLENGE_FAILURE = 2248147719
|
|
62
|
+
RFID_LAYER6_EXT_AUTH_FAILURE = 2248147720
|
|
63
|
+
RFID_LAYER6_GENERAL_AUTH_FAILURE = 2248147721
|
|
64
|
+
RFID_LAYER6_FILE_NOT_FOUND = 2147510914
|
|
65
|
+
RFID_LAYER6_FILE_EOF1 = 2147508866
|
|
66
|
+
RFID_LAYER6_FILE_EOF2 = 2147511040
|
|
67
|
+
RFID_LAYER6_WRONG_LENGTH = 2147510016
|
|
68
|
+
RFID_LAYER6_INCORRECT_PARAMS = 2147510912
|
|
69
|
+
RFID_LAYER6_NO_REFERENCE_DATA = 2147510920
|
|
70
|
+
RFID_LAYER6_PWD_SUSPENDED = 2147509185
|
|
71
|
+
RFID_LAYER6_PWD_BLOCKED = 2147509184
|
|
72
|
+
RFID_LAYER6_PWD_DEACTIVATED = 2147508867
|
|
73
|
+
RFID_LAYER6_PWD_BLOCKED_2 = 2147510659
|
|
74
|
+
RFID_LAYER6_PWD_DEACTIVATED_2 = 2147510660
|
|
75
|
+
RFID_LAYER6_PWD_SUSPENDED_2 = 2147510661
|
|
76
|
+
RFID_LAYER6_PWD_FAILED = 2148557760
|
|
77
|
+
RFID_Error_NotPerformed = 2197815296
|
|
78
|
+
RFID_Error_Session_IsClosed = 2197815297
|
|
79
|
+
RFID_Error_Session_Terminal_UnsupportedOperation = 2197815298
|
|
80
|
+
RFID_Error_Session_TerminalType_Unknown = 2197815312
|
|
81
|
+
RFID_Error_Session_TerminalType_BadCertificate = 2197815313
|
|
82
|
+
RFID_Error_Session_TerminalType_NotSet = 2197815314
|
|
83
|
+
RFID_Error_Session_ProcedureType_Unknown = 2197815315
|
|
84
|
+
RFID_Error_Session_ProcedureType_Unsupported = 2197815316
|
|
85
|
+
RFID_Error_Session_ProcedureType_NotSet = 2197815317
|
|
86
|
+
RFID_Error_Session_AccessKey_UnknownType = 2197815318
|
|
87
|
+
RFID_Error_Session_AccessKey_UnsupportedSMType = 2197815319
|
|
88
|
+
RFID_Error_Session_AccessKey_IncorrectSMType = 2197815320
|
|
89
|
+
RFID_Error_Session_AccessKey_Restricted = 2197815321
|
|
90
|
+
RFID_Error_Session_AccessKey_IncorrectData = 2197815322
|
|
91
|
+
RFID_Error_Session_AccessKey_NotSet = 2197815323
|
|
92
|
+
RFID_Error_Session_PwdManagement_NotAuthorized = 2197815324
|
|
93
|
+
RFID_Error_Session_AccessControl_UnknownType = 2197815328
|
|
94
|
+
RFID_Error_Session_AccessControl_RequiresSM = 2197815329
|
|
95
|
+
RFID_Error_Session_AccessControl_RequiresPACE = 2197815330
|
|
96
|
+
RFID_Error_Session_AccessControl_RequiresCAKeys = 2197815331
|
|
97
|
+
RFID_Error_Session_AccessControl_RequiresTA = 2197815332
|
|
98
|
+
RFID_Error_Session_AccessControl_RequiresCA = 2197815333
|
|
99
|
+
RFID_Error_Session_AccessControl_IncorrectOptionCA = 2197815334
|
|
100
|
+
RFID_Error_Session_AccessControl_CA_Failed = 2197815335
|
|
101
|
+
RFID_Error_Session_AccessControl_TA_Failed = 2197815336
|
|
102
|
+
RFID_Error_Session_AccessControl_AA_Failed = 2197815337
|
|
103
|
+
RFID_Error_Session_AccessControl_RI_Failed = 2197815338
|
|
104
|
+
RFID_Error_Session_PA_SignatureCheckFailed = 2197815344
|
|
105
|
+
RFID_Error_Session_PA_HashCheckFailed = 2197815345
|
|
106
|
+
RFID_Error_Session_InvalidAuxData_DateOfExpiry = 2197815360
|
|
107
|
+
RFID_Error_Session_InvalidAuxData_DateOfBirth = 2197815361
|
|
108
|
+
RFID_Error_Session_InvalidAuxData_CommunityID = 2197815362
|
|
109
|
+
RFID_Error_Session_eSign_RequiresAppSelection = 2197815376
|
|
110
|
+
RFID_Error_Session_eSign_PIN_NotSet = 2197815377
|
|
111
|
+
RFID_Error_Session_eSign_PIN_NotVerified = 2197815378
|
|
112
|
+
RFID_Error_Session_IncorrectData = 2197815392
|
|
113
|
+
RFID_Error_Session_File_NotEnoughData = 2197880832
|
|
114
|
+
RFID_Error_Session_File_IncorrectData = 2197946368
|
|
115
|
+
RFID_Error_Session_File_UnexpectedData = 2198011904
|
|
116
|
+
RFID_Error_Session_File_Contents_UnexpectedData = 2198077440
|
|
117
|
+
RFID_Error_Session_File_WrongTag = 2198142976
|
|
118
|
+
RFID_Error_Session_File_CantUseData = 2198208512
|
|
119
|
+
RFID_Error_Session_File_CantReadData = 2198274048
|
|
120
|
+
RFID_Error_Session_File_AccessDenied = 2198339584
|
|
121
|
+
RFID_Error_Layer34_NoError = 2214592512
|
|
122
|
+
RFID_Error_Layer34_TimeOut = 2214658048
|
|
123
|
+
RFID_Error_Layer34_Collision = 2214723584
|
|
124
|
+
RFID_Error_Layer34_CRC = 2214789120
|
|
125
|
+
RFID_Error_Layer34_DataIntegrity = 2214854656
|
|
126
|
+
RFID_Error_Layer34_DataLength = 2214920192
|
|
127
|
+
RFID_Error_Layer34_RFU = 2214985728
|
|
128
|
+
RFID_Error_Layer34_Collision_TooMany = 2215051264
|
|
129
|
+
RFID_Error_Layer34_ProtocolB = 2215116800
|
|
130
|
+
RFID_Error_Layer34_DataContents = 2215182336
|
|
131
|
+
RFID_Error_Layer34_Protocol = 2215247872
|
|
132
|
+
RFID_Error_Layer34_GlobalTimeOut = 2215313408
|
|
133
|
+
RFID_Error_Layer34_MIFARE_Auth = 2215378944
|
|
134
|
+
RFID_Error_Layer34_SAM_Error = 2215444480
|
|
135
|
+
RFID_Error_Layer34_SAM_Collision = 2215510016
|
|
136
|
+
RFID_Error_Layer34_SAM_Acknowledge = 2215575552
|
|
135
137
|
|
|
136
138
|
@classmethod
|
|
137
139
|
def from_json(cls, json_str: str) -> Self:
|
|
@@ -28,9 +28,8 @@ 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")
|
|
32
31
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
33
|
-
__properties: ClassVar[List[str]] = ["ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "
|
|
32
|
+
__properties: ClassVar[List[str]] = ["ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Reserved2"]
|
|
34
33
|
|
|
35
34
|
model_config = ConfigDict(
|
|
36
35
|
populate_by_name=True,
|
|
@@ -94,7 +93,6 @@ class SecurityFeatureItem(BaseModel):
|
|
|
94
93
|
"Visibility": obj.get("Visibility"),
|
|
95
94
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
96
95
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
97
|
-
"Result": obj.get("Result"),
|
|
98
96
|
"Reserved2": obj.get("Reserved2")
|
|
99
97
|
})
|
|
100
98
|
return _obj
|
|
@@ -32,9 +32,8 @@ 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")
|
|
36
35
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
37
|
-
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "
|
|
36
|
+
__properties: ClassVar[List[str]] = ["Type", "ElementResult", "ElementDiagnose", "PercentValue", "ElementType", "ElementRect", "Visibility", "CriticalFlag", "AreaList", "Reserved2"]
|
|
38
37
|
|
|
39
38
|
model_config = ConfigDict(
|
|
40
39
|
populate_by_name=True,
|
|
@@ -102,7 +101,6 @@ class SecurityFeatureResult(AuthenticityCheckResultItem):
|
|
|
102
101
|
"Visibility": obj.get("Visibility"),
|
|
103
102
|
"CriticalFlag": obj.get("CriticalFlag"),
|
|
104
103
|
"AreaList": AreaContainer.from_dict(obj["AreaList"]) if obj.get("AreaList") is not None else None,
|
|
105
|
-
"Result": obj.get("Result"),
|
|
106
104
|
"Reserved2": obj.get("Reserved2")
|
|
107
105
|
})
|
|
108
106
|
return _obj
|
|
@@ -25,8 +25,7 @@ class SymbolRecognitionResult(BaseModel):
|
|
|
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")
|
|
27
27
|
base_line_top: Optional[StrictInt] = Field(default=None, alias="BaseLineTop")
|
|
28
|
-
|
|
29
|
-
__properties: ClassVar[List[str]] = ["SymbolRect", "CandidatesCount", "ListOfCandidates", "BaseLineBottom", "BaseLineTop", "Reserved"]
|
|
28
|
+
__properties: ClassVar[List[str]] = ["SymbolRect", "CandidatesCount", "ListOfCandidates", "BaseLineBottom", "BaseLineTop"]
|
|
30
29
|
|
|
31
30
|
model_config = ConfigDict(
|
|
32
31
|
populate_by_name=True,
|
|
@@ -93,8 +92,7 @@ class SymbolRecognitionResult(BaseModel):
|
|
|
93
92
|
"CandidatesCount": obj.get("CandidatesCount"),
|
|
94
93
|
"ListOfCandidates": [SymbolCandidate.from_dict(_item) for _item in obj["ListOfCandidates"]] if obj.get("ListOfCandidates") is not None else None,
|
|
95
94
|
"BaseLineBottom": obj.get("BaseLineBottom"),
|
|
96
|
-
"BaseLineTop": obj.get("BaseLineTop")
|
|
97
|
-
"Reserved": obj.get("Reserved")
|
|
95
|
+
"BaseLineTop": obj.get("BaseLineTop")
|
|
98
96
|
})
|
|
99
97
|
return _obj
|
|
100
98
|
|
|
@@ -9,7 +9,7 @@ import pprint
|
|
|
9
9
|
import re # noqa: F401
|
|
10
10
|
import json
|
|
11
11
|
|
|
12
|
-
from pydantic import BaseModel, ConfigDict, Field,
|
|
12
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
14
14
|
from typing_extensions import Annotated
|
|
15
15
|
from regula.documentreader.webclient.gen.models.lcid import LCID
|
|
@@ -29,8 +29,7 @@ class VerifiedFieldMap(BaseModel):
|
|
|
29
29
|
field_barcode: Optional[StrictStr] = Field(default=None, description="Field data extracted from barcode", alias="Field_Barcode")
|
|
30
30
|
field_rfid: Optional[StrictStr] = Field(default=None, description="Field data extracted from rfid chip", alias="Field_RFID")
|
|
31
31
|
matrix: Annotated[List[VerificationResult], Field(min_length=10, max_length=10)] = Field(description="results comparison matrix. Elements of the matrix with indices 0, 1, 2, 3 take one of the values Disabled(0), Verified(1) or Not_Verified(2), elements with indices 4, 5, 6, 7, 8 are one of the values Disabled(0), Compare_Match(3) or Compare_Not_Match(4). Elements of the Matrix matrix have the following semantic meaning: - element with index 0 –– the result of verification of data from the MRZ; - 1 –– the result of verification of data from the RFID microcircuit; - 2 –– the result of verification of data from text areas of the document; - 3 –– the result of verification data from barcodes; - 4 - the result of comparing MRZ data and RFID microcircuits; - 5 - the result of comparing MRZ data and text areas of document filling; - 6 - the result of comparing MRZ data and bar codes; - 7 - the result of comparing the data of text areas of the document and the RFID chip; - 8 - the result of comparing the data of the text areas of the document and barcodes; - 9 - the result of comparing the data of the RFID chip and barcodes.", alias="Matrix")
|
|
32
|
-
|
|
33
|
-
__properties: ClassVar[List[str]] = ["wFieldType", "wLCID", "Field_MRZ", "Field_Visual", "Field_Barcode", "Field_RFID", "Matrix", "FieldType"]
|
|
32
|
+
__properties: ClassVar[List[str]] = ["wFieldType", "wLCID", "Field_MRZ", "Field_Visual", "Field_Barcode", "Field_RFID", "Matrix"]
|
|
34
33
|
|
|
35
34
|
model_config = ConfigDict(
|
|
36
35
|
populate_by_name=True,
|
|
@@ -89,8 +88,7 @@ class VerifiedFieldMap(BaseModel):
|
|
|
89
88
|
"Field_Visual": obj.get("Field_Visual"),
|
|
90
89
|
"Field_Barcode": obj.get("Field_Barcode"),
|
|
91
90
|
"Field_RFID": obj.get("Field_RFID"),
|
|
92
|
-
"Matrix": obj.get("Matrix")
|
|
93
|
-
"FieldType": obj.get("FieldType")
|
|
91
|
+
"Matrix": obj.get("Matrix")
|
|
94
92
|
})
|
|
95
93
|
return _obj
|
|
96
94
|
|
|
@@ -20,7 +20,6 @@ class VisualExtendedFieldItem(BaseModel):
|
|
|
20
20
|
"""
|
|
21
21
|
VisualExtendedFieldItem
|
|
22
22
|
""" # noqa: E501
|
|
23
|
-
field_type: StrictInt = Field(alias="FieldType")
|
|
24
23
|
w_field_type: TextFieldType = Field(alias="wFieldType")
|
|
25
24
|
field_name: StrictStr = Field(description="Field symbolic name (null-terminated string)", alias="FieldName")
|
|
26
25
|
strings_count: Union[StrictFloat, StrictInt] = Field(description="Number of StringsResult array elements", alias="StringsCount")
|
|
@@ -33,7 +32,7 @@ class VisualExtendedFieldItem(BaseModel):
|
|
|
33
32
|
w_lcid: Optional[StrictInt] = Field(default=None, alias="wLCID")
|
|
34
33
|
reserved2: Optional[StrictInt] = Field(default=None, alias="Reserved2")
|
|
35
34
|
reserved3: Optional[StrictInt] = Field(default=None, alias="Reserved3")
|
|
36
|
-
__properties: ClassVar[List[str]] = ["
|
|
35
|
+
__properties: ClassVar[List[str]] = ["wFieldType", "FieldName", "StringsCount", "StringsResult", "Buf_Length", "Buf_Text", "FieldMask", "Validity", "InComparison", "wLCID", "Reserved2", "Reserved3"]
|
|
37
36
|
|
|
38
37
|
model_config = ConfigDict(
|
|
39
38
|
populate_by_name=True,
|
|
@@ -93,7 +92,6 @@ class VisualExtendedFieldItem(BaseModel):
|
|
|
93
92
|
return cls.model_validate(obj)
|
|
94
93
|
|
|
95
94
|
_obj = cls.model_validate({
|
|
96
|
-
"FieldType": obj.get("FieldType"),
|
|
97
95
|
"wFieldType": obj.get("wFieldType"),
|
|
98
96
|
"FieldName": obj.get("FieldName"),
|
|
99
97
|
"StringsCount": obj.get("StringsCount"),
|
|
@@ -47,7 +47,7 @@ regula/documentreader/webclient/gen/models/binary_data.py,sha256=RAtDtODB5NpztIA
|
|
|
47
47
|
regula/documentreader/webclient/gen/models/byte_array_item.py,sha256=ysZdODi3m-2cmG1qU7saYwL-MxHYcCNpdnSrvp8QMu0,2316
|
|
48
48
|
regula/documentreader/webclient/gen/models/byte_array_result.py,sha256=U52AsyrdiJJlR4AcZ_wFNmG13SM-Sa-hjbNuMOW0pxo,2752
|
|
49
49
|
regula/documentreader/webclient/gen/models/candidates_list_item.py,sha256=JvgjJoWCeIyZR-q3GtkcB9u5edaekkVlkKBkJl_5hA0,2762
|
|
50
|
-
regula/documentreader/webclient/gen/models/certificate_data.py,sha256=
|
|
50
|
+
regula/documentreader/webclient/gen/models/certificate_data.py,sha256=hhIi_ilqVnfvxyOf1p11D6yrKDkqH1KmFUeRHA4zTV4,2370
|
|
51
51
|
regula/documentreader/webclient/gen/models/check_diagnose.py,sha256=STU6JMh1vn2sOLKtXIynXO86mgoP-f2MqUqSSTDtoDM,5297
|
|
52
52
|
regula/documentreader/webclient/gen/models/check_result.py,sha256=8dR5KtJtyeSv4sW6oyJz9HXbUF-xpeJnSDqDp5Zk1ZE,570
|
|
53
53
|
regula/documentreader/webclient/gen/models/chosen_document_type.py,sha256=MRkkAV4Og5SsGQFi_EzCvu7DsYCfD1HvYtaiSj4QcKk,5311
|
|
@@ -65,7 +65,7 @@ regula/documentreader/webclient/gen/models/doc_bar_code_info.py,sha256=o-3dq242Y
|
|
|
65
65
|
regula/documentreader/webclient/gen/models/doc_bar_code_info_fields_list.py,sha256=OHOPOYURF-eoKPM1peqHzMlr89p1TilKDjfCau6ShGg,3067
|
|
66
66
|
regula/documentreader/webclient/gen/models/doc_bar_code_info_item.py,sha256=XVcBmHeuohJDczAlze3VLcD5hcwpjm5a9ITFNpv6qtA,2726
|
|
67
67
|
regula/documentreader/webclient/gen/models/doc_graphics_info_item.py,sha256=u7-REGL0TCMZpuymHI2dy9oNOSDu3Ok1j9f_k14uY64,2705
|
|
68
|
-
regula/documentreader/webclient/gen/models/doc_visual_extended_field.py,sha256=
|
|
68
|
+
regula/documentreader/webclient/gen/models/doc_visual_extended_field.py,sha256=RLusGAYUZf2Wdi-qzrUGLTbqduBlmUvCNKLe4ZsmIt8,5395
|
|
69
69
|
regula/documentreader/webclient/gen/models/doc_visual_extended_field_item.py,sha256=E_9gx_VromlXjovakmyuwwwkS3OUhAifybI437B4Vac,2680
|
|
70
70
|
regula/documentreader/webclient/gen/models/doc_visual_extended_info.py,sha256=co5bmFgPPb-WprGytRir9kqPY2BJjnSiL7S38zYvG6I,3181
|
|
71
71
|
regula/documentreader/webclient/gen/models/doc_visual_extended_info_item.py,sha256=tJPcwsdkRd1jUU6__s-NPQJKkuQVlBargIpOg7RpHcY,2810
|
|
@@ -92,8 +92,8 @@ regula/documentreader/webclient/gen/models/face_detection_item.py,sha256=MQB56In
|
|
|
92
92
|
regula/documentreader/webclient/gen/models/face_detection_result.py,sha256=6bepD2k0KPNeNMFnhD_OjVO0Szf-2PN4-d--U8mHgJA,3126
|
|
93
93
|
regula/documentreader/webclient/gen/models/face_item.py,sha256=iAKQ0Qjwu71R4qaOsDzQ9EMmO4BehyrcMz8HMbs_qZ0,4336
|
|
94
94
|
regula/documentreader/webclient/gen/models/fdsid_list.py,sha256=eominQ40FH24IH9fITDAfX4EYqUebXg_-HXpY-0Bm4w,4402
|
|
95
|
-
regula/documentreader/webclient/gen/models/fiber_item.py,sha256=
|
|
96
|
-
regula/documentreader/webclient/gen/models/fiber_result.py,sha256=
|
|
95
|
+
regula/documentreader/webclient/gen/models/fiber_item.py,sha256=sEDgN7gNa-las71L0Z3AKvqrxvT0zKaOr5KMUGkI8j4,4319
|
|
96
|
+
regula/documentreader/webclient/gen/models/fiber_result.py,sha256=aQqJUP_H75JZGRTazOWa_z3yFfBymw85Pu2WJEn8Q9o,4979
|
|
97
97
|
regula/documentreader/webclient/gen/models/field_item.py,sha256=S8NQ3Km13jS76AfFyJJWFEzoLnFPsL_tBAns6qHt-F8,2832
|
|
98
98
|
regula/documentreader/webclient/gen/models/file_image.py,sha256=8YISAAWhvdm3Ggf2lD81q7o-W2HUT9jXfEXuLbbVBS0,2346
|
|
99
99
|
regula/documentreader/webclient/gen/models/get_transactions_by_tag_response.py,sha256=Hovh3jws3u1awXNzK1w4P6J3MK3l5v0lhK1gyxabNgo,2701
|
|
@@ -104,8 +104,8 @@ regula/documentreader/webclient/gen/models/graphic_fields_list.py,sha256=XCTJa8A
|
|
|
104
104
|
regula/documentreader/webclient/gen/models/graphics_result.py,sha256=SOJp2H-oohDg6fm2no-5vsEVd1Lcwo9oFyvgtHbNKb4,3206
|
|
105
105
|
regula/documentreader/webclient/gen/models/healthcheck.py,sha256=E8s9nM-bgNZ5Uc7WxfYHY8UapDPY1OTqpCafXOezrfk,5379
|
|
106
106
|
regula/documentreader/webclient/gen/models/healthcheck_documents_database.py,sha256=qCKEglC_BIHve0iNn0UM9mZewrufHtIg1w4dNE4rqD8,3713
|
|
107
|
-
regula/documentreader/webclient/gen/models/ident_item.py,sha256=
|
|
108
|
-
regula/documentreader/webclient/gen/models/ident_result.py,sha256=
|
|
107
|
+
regula/documentreader/webclient/gen/models/ident_item.py,sha256=UEOu2jmlDdJEPk2ET7uGI4w9wSzUwGehC3Yqr4w8bN4,4365
|
|
108
|
+
regula/documentreader/webclient/gen/models/ident_result.py,sha256=WY-O0SL2Q18D5fknkdLHPKF6W4EOf0bweUVUDrZvNEo,5025
|
|
109
109
|
regula/documentreader/webclient/gen/models/image_data.py,sha256=A8YcmCS6uV02yBLw5yIUAzRcPQcyZbprmTSCkKLXiPA,2431
|
|
110
110
|
regula/documentreader/webclient/gen/models/image_qa.py,sha256=1Qwp1XC7RzthIxdk54drD5cnhOJmr2TFYvLcq4qIjU4,4856
|
|
111
111
|
regula/documentreader/webclient/gen/models/image_quality_check.py,sha256=MALhX1QdG18h9KmnKAHWkX9iLmqsyV_udCe8yeDrwTs,3562
|
|
@@ -129,7 +129,7 @@ regula/documentreader/webclient/gen/models/lcid.py,sha256=D0MBIfktXYPPkRVCUSSHyN
|
|
|
129
129
|
regula/documentreader/webclient/gen/models/lexical_analysis_result.py,sha256=14ymAFRmQV3xgXdHkH1lf3wU-xq9sAEUYJby_U3VAHA,3473
|
|
130
130
|
regula/documentreader/webclient/gen/models/license_item.py,sha256=niMcTCpIz_b1MaVxsnah5f5iXJaHWtpns3qQ8HoM5D4,2336
|
|
131
131
|
regula/documentreader/webclient/gen/models/license_result.py,sha256=xzd8-RvvEsRaGbQiBko1594vGhya6aDtMLBEZqdw6oI,2775
|
|
132
|
-
regula/documentreader/webclient/gen/models/light.py,sha256=
|
|
132
|
+
regula/documentreader/webclient/gen/models/light.py,sha256=ykIcDr9aCnMtr9FWI6pitdRak39VS5eQ12tkZOG53To,564
|
|
133
133
|
regula/documentreader/webclient/gen/models/list_transactions_by_tag_response.py,sha256=yT8dwshY6BI-pk2prcLvCE3OOwWt5IBXEczkwpgtXHc,2968
|
|
134
134
|
regula/documentreader/webclient/gen/models/list_verified_fields.py,sha256=jklFQCZR9n9SXgpdp4Yz2AFPttiKTkSqHoWL81ZM4UU,3216
|
|
135
135
|
regula/documentreader/webclient/gen/models/list_verified_fields_item.py,sha256=LHm1JtDx1GumCOfhaqVv6NlY8eTS0ND-11_2KG4HaYU,2751
|
|
@@ -146,26 +146,26 @@ regula/documentreader/webclient/gen/models/mrz_rows_item.py,sha256=jUol6GdIYRdEc
|
|
|
146
146
|
regula/documentreader/webclient/gen/models/mrz_test_quality.py,sha256=jYfkanSz4tts6BMjTH48sifaB0XRDDrukV0zA9ToHsE,3889
|
|
147
147
|
regula/documentreader/webclient/gen/models/mrz_test_quality_item.py,sha256=N1DHfX2oC7uz1WtMB1RpicfeABn0e5q3DfM6ois_L2E,2679
|
|
148
148
|
regula/documentreader/webclient/gen/models/mrz_test_quality_result.py,sha256=-2iqwp3CniTSHud0tPWvx_2cF4GUMaknfWq-isvnuQA,3115
|
|
149
|
-
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=
|
|
150
|
-
regula/documentreader/webclient/gen/models/ocr_security_text_result.py,sha256=
|
|
149
|
+
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=MI1YmaH1P_S-xgA2aXzuxtO5UQGgN7Uj6vf3D_Uk-no,4765
|
|
150
|
+
regula/documentreader/webclient/gen/models/ocr_security_text_result.py,sha256=6N-mKQlmaj-k0Rtif391LHsERiLzzm4akWoC38jjMSk,5425
|
|
151
151
|
regula/documentreader/webclient/gen/models/one_candidate.py,sha256=hcEri2myKvWxsssEZ-DGAP62-uYrgR2KpJyIogdB6sQ,5293
|
|
152
152
|
regula/documentreader/webclient/gen/models/one_candidate_item.py,sha256=hplvxqurTiNEtf_GkZrem5b-Su3O8tc0IyxK1qTzbLc,2876
|
|
153
153
|
regula/documentreader/webclient/gen/models/original_symbol.py,sha256=PdeHzkXeYMmzt-uAYwzdF4Ky6CZ7UThPtoCoDLr3L2Q,2954
|
|
154
154
|
regula/documentreader/webclient/gen/models/out_data.py,sha256=ZE0UNzLFvTWp6PdAhrIlSNV2OJ-z8BKfc3Mjwm4jjw4,2953
|
|
155
155
|
regula/documentreader/webclient/gen/models/out_data_transaction_images_field_value.py,sha256=tez6qBxPTIQPktbjbYYmVr5k8vMUtFJibziOM2UxhC4,3083
|
|
156
|
-
regula/documentreader/webclient/gen/models/p_array_field.py,sha256=
|
|
156
|
+
regula/documentreader/webclient/gen/models/p_array_field.py,sha256=tMy-Wf-De32cnR095ybtuOvkek8chhxDS9lRdUvp_JE,5043
|
|
157
157
|
regula/documentreader/webclient/gen/models/parsed_data.py,sha256=n2fh8nO8B-CpBsmUqFRMVkS7ZtMRDA7sCqIty1RRzuE,2363
|
|
158
|
-
regula/documentreader/webclient/gen/models/parsing_error_codes.py,sha256=
|
|
159
|
-
regula/documentreader/webclient/gen/models/parsing_notification_codes.py,sha256
|
|
158
|
+
regula/documentreader/webclient/gen/models/parsing_error_codes.py,sha256=e_VDR7zU5DEJCz9ZDYR0-bfAKI92Sb8gU5uEQuFniyU,8066
|
|
159
|
+
regula/documentreader/webclient/gen/models/parsing_notification_codes.py,sha256=FzztR3jTXvPUjf-geHOCIl9UhEJ291KhTFdDXcai_bM,20697
|
|
160
160
|
regula/documentreader/webclient/gen/models/per_document_config.py,sha256=yTCwXM3eqkGZhKMAZKDojpjuUMkoF9lcFafm43LVkgU,2659
|
|
161
|
-
regula/documentreader/webclient/gen/models/photo_ident_item.py,sha256=
|
|
162
|
-
regula/documentreader/webclient/gen/models/photo_ident_result.py,sha256=
|
|
161
|
+
regula/documentreader/webclient/gen/models/photo_ident_item.py,sha256=dWYC0Tn38I7OKn0rYAL4mvoIMqisvlIJrHSYpbI0lrk,4436
|
|
162
|
+
regula/documentreader/webclient/gen/models/photo_ident_result.py,sha256=tB98MvBbTmYY1UNaEzzgR5W1Vr9AiCM5cfjjKkGKI3E,5096
|
|
163
163
|
regula/documentreader/webclient/gen/models/point.py,sha256=_khsO-Zo2SIqXIPHQALJz4F6kB2lDqIi0Yhg7c8ImRw,2234
|
|
164
164
|
regula/documentreader/webclient/gen/models/point_array.py,sha256=xcg4DqZl-oNKJt9BPyASdeGNTlPrO7G31zTMEzZkL2g,2768
|
|
165
165
|
regula/documentreader/webclient/gen/models/points_container.py,sha256=6KKKe2sFAwg3d0QDWyejfQEHTqTzTE56o6MqSX5gO6A,2951
|
|
166
|
-
regula/documentreader/webclient/gen/models/process_params.py,sha256=
|
|
166
|
+
regula/documentreader/webclient/gen/models/process_params.py,sha256=xn2nNvjDlRIv8HUZKFVompbPmp3ULPf2CGpZ5QLiDw8,24323
|
|
167
167
|
regula/documentreader/webclient/gen/models/process_params_rfid.py,sha256=3oZtyyUdAKF83XU1AnCqAQLQIRX1zydn1MK743o3ua8,2656
|
|
168
|
-
regula/documentreader/webclient/gen/models/process_request.py,sha256=
|
|
168
|
+
regula/documentreader/webclient/gen/models/process_request.py,sha256=f7qYw-iVm569UiEvmxh7L3gk0hXu8GXkw9R97ufZiQc,5795
|
|
169
169
|
regula/documentreader/webclient/gen/models/process_request_image.py,sha256=yA0hfvr-KGBGFyR97fQZsAkDX3mh4XZEVsWDXiOLTPQ,2948
|
|
170
170
|
regula/documentreader/webclient/gen/models/process_response.py,sha256=BcYBupKooHkVS9540-RotyYZuHSeARUlA3rsGpTyegk,4681
|
|
171
171
|
regula/documentreader/webclient/gen/models/process_system_info.py,sha256=A3dNTl_Cwwcu3jQ6Fvm3zOcpxIu2nc5nAvzHK7j5E5Y,2547
|
|
@@ -179,32 +179,32 @@ regula/documentreader/webclient/gen/models/result_mrz_detector.py,sha256=lfypDpP
|
|
|
179
179
|
regula/documentreader/webclient/gen/models/result_mrz_detector_item.py,sha256=nNrW_cjobe9gE1TPdneWeV94w5L2ZWGhHmw2rDo6-9Y,2733
|
|
180
180
|
regula/documentreader/webclient/gen/models/rfid_a_chip.py,sha256=UyJYlx6g9NXxGPfcRGMwYkL_GeP8JydF81NftfLVau4,684
|
|
181
181
|
regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=q4EPaIfdRZK-qzmtPVn7MDzqskm7neE_fhTCdJLBE4Q,3787
|
|
182
|
-
regula/documentreader/webclient/gen/models/rfid_access_control_procedure_type.py,sha256=
|
|
182
|
+
regula/documentreader/webclient/gen/models/rfid_access_control_procedure_type.py,sha256=4sZv-krwp4q3LSz9Wi4of-tKAulHh-n4V2LD60tfL6A,720
|
|
183
183
|
regula/documentreader/webclient/gen/models/rfid_access_key.py,sha256=GVB1vHA2VdxNIzQYdUXEnCqPiW2CkK3yGcn2gFUXRq4,3206
|
|
184
184
|
regula/documentreader/webclient/gen/models/rfid_application.py,sha256=_a-Ow-bNHonVD6WTvtpnwUMx8RYreWkO2EHM-nkhX-s,4123
|
|
185
185
|
regula/documentreader/webclient/gen/models/rfid_application_type.py,sha256=7Gx8aVPefs3u-ytYSJCrgjEq9UUvQGktTK3HTutXQwc,806
|
|
186
186
|
regula/documentreader/webclient/gen/models/rfid_attribute_data.py,sha256=6IZaVLsw-GdjAK4r6E08hcumgsdBj5HlF-55MasLx6U,2596
|
|
187
187
|
regula/documentreader/webclient/gen/models/rfid_attribute_name.py,sha256=pHRkzcVoChxaZuVDFYHlQlQWh_2uEL8CilOmej0Fo1o,2907
|
|
188
188
|
regula/documentreader/webclient/gen/models/rfid_authentication_procedure_type.py,sha256=Aot40N251tRBx1EM3ZmTlpmBm6Ga6CA-lg-KcC2MfyI,693
|
|
189
|
-
regula/documentreader/webclient/gen/models/rfid_baud_rate.py,sha256=
|
|
189
|
+
regula/documentreader/webclient/gen/models/rfid_baud_rate.py,sha256=gpuy0XNmcVuO3XXbihl8C95clNwMl3P43cYOTtH1ecs,704
|
|
190
190
|
regula/documentreader/webclient/gen/models/rfid_card_properties_ext.py,sha256=_c7mzRTGHA74nxZYK80lgOkVkHpvGKmdx2XMM_PR6AE,5720
|
|
191
191
|
regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=kb-_CJeBBUhc9b91TaTMtPdRVV-keEjYj2eapZJMFKU,6753
|
|
192
192
|
regula/documentreader/webclient/gen/models/rfid_certificate_origin.py,sha256=6Aso_sc8O0lyp8ivwt5zAWK2_9aWrzzJb7sx9C9jzh8,819
|
|
193
|
-
regula/documentreader/webclient/gen/models/rfid_certificate_type.py,sha256
|
|
193
|
+
regula/documentreader/webclient/gen/models/rfid_certificate_type.py,sha256=wKBEbAeufCBYQKP2r30B5JqZ3MCt15N4Rk5m9VLI4Xc,789
|
|
194
194
|
regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=utAWfTJsXNmj-nR07Ws9OCiTnwuhEgVsdO70Pf9bMHo,6486
|
|
195
|
-
regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=
|
|
196
|
-
regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py,sha256=
|
|
195
|
+
regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=kOgg-YHte4LPSYrcwu9GQA5Sy4acQBrgcr0hA4oY_to,2663
|
|
196
|
+
regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py,sha256=T6rliGapGxzdcjAYlW4FZ8f19Tele7_IOuZxFRBUa00,1694
|
|
197
197
|
regula/documentreader/webclient/gen/models/rfid_dg1.py,sha256=DgVKzHAY389J3ypOUjpvDz2RtxbIz1hdRDCDIgQUCpM,5304
|
|
198
198
|
regula/documentreader/webclient/gen/models/rfid_distinguished_name.py,sha256=mayQnTYvVbPEbDXyi-QCzjxUXQQMm9cTh6Yjqggz7MM,3604
|
|
199
|
-
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field.py,sha256=
|
|
199
|
+
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field.py,sha256=eOJSVeTgwLnFrfSL8vDIXnR3lPhyT6F0DYFCF8njguM,5593
|
|
200
200
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field_item.py,sha256=H282wIPcJzu2BV6YfFU1MAdYpd5MaXkj3-5bBxk07Ls,2919
|
|
201
201
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info.py,sha256=jaeL-hWlaHLWikk3wY_kIYOeNn58UBQVuma6KOFElQs,3210
|
|
202
202
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info_item.py,sha256=-bbg--7bdonK_N7WSQP7GSL2mS-WJcJc8XHW5OilIXo,2843
|
|
203
|
-
regula/documentreader/webclient/gen/models/rfid_error_codes.py,sha256=
|
|
203
|
+
regula/documentreader/webclient/gen/models/rfid_error_codes.py,sha256=9Gn2_s_ZRDApw02SMxp_IKupJbR0Mg3x3B_B_6_QZw8,6352
|
|
204
204
|
regula/documentreader/webclient/gen/models/rfid_graphics_info_result.py,sha256=EOOP6mFPqPHEjBoONXI4naMQKq8E-MsRPsPVewOilC4,3287
|
|
205
205
|
regula/documentreader/webclient/gen/models/rfid_location.py,sha256=DQ66ASnrU4HV5jN5MiDEKwRvvnqvxPY1RzXdZX5z6Vs,693
|
|
206
206
|
regula/documentreader/webclient/gen/models/rfid_origin.py,sha256=zfvRgfuT-EhovSSqAzhfqIX3uVr19rphGVvhfbkLC-0,2841
|
|
207
|
-
regula/documentreader/webclient/gen/models/rfid_password_type.py,sha256=
|
|
207
|
+
regula/documentreader/webclient/gen/models/rfid_password_type.py,sha256=7zkWjkyhflKnIdCG9rmd0UywmKhKDmQPGQ3ERa5-nl4,683
|
|
208
208
|
regula/documentreader/webclient/gen/models/rfid_pki_extension.py,sha256=P_Ju77ncoITcDAzrwP5dR90YS45lcbcUrMDdgCLoeJA,2709
|
|
209
209
|
regula/documentreader/webclient/gen/models/rfid_raw_data.py,sha256=WR4qedgLDA4JV9iS0B9isLqpTtRuTRTPLyX7OQe-6RI,2370
|
|
210
210
|
regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=kXEHXGd5D3z4hFJPGIWgdcqjBlQZZxuEAlwa44nKQpw,4070
|
|
@@ -217,8 +217,8 @@ regula/documentreader/webclient/gen/models/rfid_type.py,sha256=Iar7yWbbSUnMsac5N
|
|
|
217
217
|
regula/documentreader/webclient/gen/models/rfid_validity.py,sha256=GdTJug93a4K1REDy4QeMLgVNf878TtbnYGT1R-0fuD4,2980
|
|
218
218
|
regula/documentreader/webclient/gen/models/rfidpkd_resource_type.py,sha256=apzhMDECSR6nA1XshnyBhF1UvssokP7oAk3xOPVB9p0,658
|
|
219
219
|
regula/documentreader/webclient/gen/models/scenario.py,sha256=-KpZ-K-YwK8pNz3-lDg6gofCZppDNfI6wFYTTihlmTs,1062
|
|
220
|
-
regula/documentreader/webclient/gen/models/security_feature_item.py,sha256=
|
|
221
|
-
regula/documentreader/webclient/gen/models/security_feature_result.py,sha256=
|
|
220
|
+
regula/documentreader/webclient/gen/models/security_feature_item.py,sha256=lxGJV8GjuCEu6JhduIk5coK0GHsO4NpAbfsVtmbLCHQ,3912
|
|
221
|
+
regula/documentreader/webclient/gen/models/security_feature_result.py,sha256=_4kxK_BPPZhV7z8mJtlNhh-K3Halmv7tR09gs_PxgwY,4572
|
|
222
222
|
regula/documentreader/webclient/gen/models/security_feature_type.py,sha256=Z9qIAKRFU_MvpSkHABQLssAFXv8uJJQzefZYwnk7Bi8,2285
|
|
223
223
|
regula/documentreader/webclient/gen/models/security_object_certificates.py,sha256=T-qOwejw7bwUM-baidHAMfC_kaQfjt2JboQAxoPJfDQ,2760
|
|
224
224
|
regula/documentreader/webclient/gen/models/source.py,sha256=j869nKh9ZZQaTWN_BLvwMQ_1xQBZSPmMMumiF6s8ojw,591
|
|
@@ -231,7 +231,7 @@ regula/documentreader/webclient/gen/models/string_recognition_result.py,sha256=a
|
|
|
231
231
|
regula/documentreader/webclient/gen/models/symbol.py,sha256=c5p8WFPEQS7I9SvIoN49VekjNG4e2_F1OXTZyMtL2fI,2273
|
|
232
232
|
regula/documentreader/webclient/gen/models/symbol_candidate.py,sha256=WCywBDAYYK2MS6tw5CsO3pP_KjpGXbg_U5c18Fr4Kt0,2923
|
|
233
233
|
regula/documentreader/webclient/gen/models/symbol_estimation_item.py,sha256=TaNaYi3cM0ZGZx0gruyzYdgVMjtAibJPX6lTcA3hk0w,5192
|
|
234
|
-
regula/documentreader/webclient/gen/models/symbol_recognition_result.py,sha256
|
|
234
|
+
regula/documentreader/webclient/gen/models/symbol_recognition_result.py,sha256=ZkYRFTVPz9tVLJTxSWRnDbOArqmVC8REX1wWSFcoaCo,4233
|
|
235
235
|
regula/documentreader/webclient/gen/models/t_doc_binary_info.py,sha256=Kwb-GcTKJGyQ-rz2qSPxEMBKrM1WYcXBlA0tgAivs8A,3398
|
|
236
236
|
regula/documentreader/webclient/gen/models/t_doc_binary_info_item.py,sha256=Q23P-odDMVeVjAOGRFLN4IASCAAesysAvP3Oq-w0HLA,2684
|
|
237
237
|
regula/documentreader/webclient/gen/models/t_original_rfid_graphics_info.py,sha256=D7_cQi_DwxkJ0ojTrAT7o-eUYM31Nb7yC3becKlzrcI,3020
|
|
@@ -255,10 +255,10 @@ regula/documentreader/webclient/gen/models/transaction_process_result.py,sha256=
|
|
|
255
255
|
regula/documentreader/webclient/gen/models/trf_ft_bytes.py,sha256=oJM0u8uC5MQ5mopgLYAwXi0Kshr6_aJ0uP10K46BH_E,3170
|
|
256
256
|
regula/documentreader/webclient/gen/models/trf_ft_string.py,sha256=_Gf4giJgTAPAx39nMc0SK7NLWX2_CYP0UKUw2fa1-fo,2989
|
|
257
257
|
regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR52S9-i3ZVOkzJ38w3qAc7G2K3HUPpYWC2D-wc,583
|
|
258
|
-
regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=
|
|
258
|
+
regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=IY61Fh_I1cfecOYHPywHX-C9zc0w9POm3Jn68tNXq-k,4713
|
|
259
259
|
regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
|
|
260
|
-
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=
|
|
261
|
-
regula_documentreader_webclient-8.1.
|
|
262
|
-
regula_documentreader_webclient-8.1.
|
|
263
|
-
regula_documentreader_webclient-8.1.
|
|
264
|
-
regula_documentreader_webclient-8.1.
|
|
260
|
+
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=EgCnGaKcfdPxcMr50j_p66EYSg6xmF9UI6b54IgodrM,4927
|
|
261
|
+
regula_documentreader_webclient-8.1.381.dev0.dist-info/METADATA,sha256=PgSoM4WHw4_HjgzuG2gVk7aRk6g0COxa4cBU3umdDqU,4001
|
|
262
|
+
regula_documentreader_webclient-8.1.381.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
263
|
+
regula_documentreader_webclient-8.1.381.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
|
|
264
|
+
regula_documentreader_webclient-8.1.381.dev0.dist-info/RECORD,,
|
|
File without changes
|