regula-documentreader-webclient 8.1.398rc0__py3-none-any.whl → 8.2.400.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/__init__.py +1 -0
- regula/documentreader/webclient/gen/models/__init__.py +1 -0
- regula/documentreader/webclient/gen/models/doc_visual_extended_field.py +1 -2
- regula/documentreader/webclient/gen/models/mrz_position.py +124 -0
- regula/documentreader/webclient/gen/models/mrz_position_item.py +3 -3
- regula/documentreader/webclient/gen/models/mrz_position_result.py +3 -3
- regula/documentreader/webclient/gen/models/mrz_test_quality.py +6 -7
- regula/documentreader/webclient/gen/models/rfid_data_file_type.py +2 -2
- regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field.py +1 -2
- regula/documentreader/webclient/gen/models/string_item.py +10 -11
- regula/documentreader/webclient/gen/models/visual_extended_field_item.py +1 -2
- {regula_documentreader_webclient-8.1.398rc0.dist-info → regula_documentreader_webclient-8.2.400.dev0.dist-info}/METADATA +1 -1
- {regula_documentreader_webclient-8.1.398rc0.dist-info → regula_documentreader_webclient-8.2.400.dev0.dist-info}/RECORD +15 -14
- {regula_documentreader_webclient-8.1.398rc0.dist-info → regula_documentreader_webclient-8.2.400.dev0.dist-info}/WHEEL +0 -0
- {regula_documentreader_webclient-8.1.398rc0.dist-info → regula_documentreader_webclient-8.2.400.dev0.dist-info}/top_level.txt +0 -0
|
@@ -140,6 +140,7 @@ from regula.documentreader.webclient.gen.models.mrz_test_quality_item import MRZ
|
|
|
140
140
|
from regula.documentreader.webclient.gen.models.mrz_test_quality_result import MRZTestQualityResult
|
|
141
141
|
from regula.documentreader.webclient.gen.models.measure_system import MeasureSystem
|
|
142
142
|
from regula.documentreader.webclient.gen.models.mrz_detect_mode_enum import MrzDetectModeEnum
|
|
143
|
+
from regula.documentreader.webclient.gen.models.mrz_position import MrzPosition
|
|
143
144
|
from regula.documentreader.webclient.gen.models.mrz_position_item import MrzPositionItem
|
|
144
145
|
from regula.documentreader.webclient.gen.models.ocr_security_text_item import OCRSecurityTextItem
|
|
145
146
|
from regula.documentreader.webclient.gen.models.ocr_security_text_result import OCRSecurityTextResult
|
|
@@ -121,6 +121,7 @@ from regula.documentreader.webclient.gen.models.mrz_test_quality_item import MRZ
|
|
|
121
121
|
from regula.documentreader.webclient.gen.models.mrz_test_quality_result import MRZTestQualityResult
|
|
122
122
|
from regula.documentreader.webclient.gen.models.measure_system import MeasureSystem
|
|
123
123
|
from regula.documentreader.webclient.gen.models.mrz_detect_mode_enum import MrzDetectModeEnum
|
|
124
|
+
from regula.documentreader.webclient.gen.models.mrz_position import MrzPosition
|
|
124
125
|
from regula.documentreader.webclient.gen.models.mrz_position_item import MrzPositionItem
|
|
125
126
|
from regula.documentreader.webclient.gen.models.ocr_security_text_item import OCRSecurityTextItem
|
|
126
127
|
from regula.documentreader.webclient.gen.models.ocr_security_text_result import OCRSecurityTextResult
|
|
@@ -11,7 +11,6 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
14
|
-
from regula.documentreader.webclient.gen.models.lcid import LCID
|
|
15
14
|
from regula.documentreader.webclient.gen.models.rectangle_coordinates import RectangleCoordinates
|
|
16
15
|
from regula.documentreader.webclient.gen.models.string_recognition_result import StringRecognitionResult
|
|
17
16
|
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
@@ -31,7 +30,7 @@ class DocVisualExtendedField(BaseModel):
|
|
|
31
30
|
field_mask: Optional[StrictStr] = Field(default=None, alias="FieldMask")
|
|
32
31
|
validity: Optional[StrictInt] = Field(default=None, alias="Validity")
|
|
33
32
|
in_comparison: Optional[StrictInt] = Field(default=None, alias="InComparison")
|
|
34
|
-
w_lcid: Optional[
|
|
33
|
+
w_lcid: Optional[StrictInt] = Field(default=None, alias="wLCID")
|
|
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")
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Generated by: https://openapi-generator.tech
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
import pprint
|
|
9
|
+
import re # noqa: F401
|
|
10
|
+
import json
|
|
11
|
+
|
|
12
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
13
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
14
|
+
from regula.documentreader.webclient.gen.models.document_format import DocumentFormat
|
|
15
|
+
from regula.documentreader.webclient.gen.models.point import Point
|
|
16
|
+
from typing import Optional, Set
|
|
17
|
+
from typing_extensions import Self
|
|
18
|
+
|
|
19
|
+
class MrzPosition(BaseModel):
|
|
20
|
+
"""
|
|
21
|
+
MrzPosition
|
|
22
|
+
""" # noqa: E501
|
|
23
|
+
doc_format: DocumentFormat = Field(alias="docFormat")
|
|
24
|
+
angle: Union[StrictFloat, StrictInt] = Field(description="Document rotation angle", alias="Angle")
|
|
25
|
+
width: StrictInt = Field(description="Document width", alias="Width")
|
|
26
|
+
height: StrictInt = Field(description="Document height", alias="Height")
|
|
27
|
+
center: Point = Field(alias="Center")
|
|
28
|
+
left_bottom: Point = Field(alias="LeftBottom")
|
|
29
|
+
left_top: Point = Field(alias="LeftTop")
|
|
30
|
+
right_bottom: Point = Field(alias="RightBottom")
|
|
31
|
+
right_top: Point = Field(alias="RightTop")
|
|
32
|
+
dpi: StrictInt = Field(alias="Dpi")
|
|
33
|
+
inverse: Optional[StrictInt] = Field(default=None, alias="Inverse")
|
|
34
|
+
obj_area: Optional[StrictInt] = Field(default=None, alias="ObjArea")
|
|
35
|
+
obj_int_angle_dev: Optional[StrictInt] = Field(default=None, alias="ObjIntAngleDev")
|
|
36
|
+
perspective_tr: Optional[StrictInt] = Field(default=None, alias="PerspectiveTr")
|
|
37
|
+
result_status: Optional[StrictInt] = Field(default=None, alias="ResultStatus")
|
|
38
|
+
__properties: ClassVar[List[str]] = ["docFormat", "Angle", "Width", "Height", "Center", "LeftBottom", "LeftTop", "RightBottom", "RightTop", "Dpi", "Inverse", "ObjArea", "ObjIntAngleDev", "PerspectiveTr", "ResultStatus"]
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of MrzPosition from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of center
|
|
80
|
+
if self.center:
|
|
81
|
+
_dict['Center'] = self.center.to_dict()
|
|
82
|
+
# override the default output from pydantic by calling `to_dict()` of left_bottom
|
|
83
|
+
if self.left_bottom:
|
|
84
|
+
_dict['LeftBottom'] = self.left_bottom.to_dict()
|
|
85
|
+
# override the default output from pydantic by calling `to_dict()` of left_top
|
|
86
|
+
if self.left_top:
|
|
87
|
+
_dict['LeftTop'] = self.left_top.to_dict()
|
|
88
|
+
# override the default output from pydantic by calling `to_dict()` of right_bottom
|
|
89
|
+
if self.right_bottom:
|
|
90
|
+
_dict['RightBottom'] = self.right_bottom.to_dict()
|
|
91
|
+
# override the default output from pydantic by calling `to_dict()` of right_top
|
|
92
|
+
if self.right_top:
|
|
93
|
+
_dict['RightTop'] = self.right_top.to_dict()
|
|
94
|
+
return _dict
|
|
95
|
+
|
|
96
|
+
@classmethod
|
|
97
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
98
|
+
"""Create an instance of MrzPosition from a dict"""
|
|
99
|
+
if obj is None:
|
|
100
|
+
return None
|
|
101
|
+
|
|
102
|
+
if not isinstance(obj, dict):
|
|
103
|
+
return cls.model_validate(obj)
|
|
104
|
+
|
|
105
|
+
_obj = cls.model_validate({
|
|
106
|
+
"docFormat": obj.get("docFormat"),
|
|
107
|
+
"Angle": obj.get("Angle"),
|
|
108
|
+
"Width": obj.get("Width"),
|
|
109
|
+
"Height": obj.get("Height"),
|
|
110
|
+
"Center": Point.from_dict(obj["Center"]) if obj.get("Center") is not None else None,
|
|
111
|
+
"LeftBottom": Point.from_dict(obj["LeftBottom"]) if obj.get("LeftBottom") is not None else None,
|
|
112
|
+
"LeftTop": Point.from_dict(obj["LeftTop"]) if obj.get("LeftTop") is not None else None,
|
|
113
|
+
"RightBottom": Point.from_dict(obj["RightBottom"]) if obj.get("RightBottom") is not None else None,
|
|
114
|
+
"RightTop": Point.from_dict(obj["RightTop"]) if obj.get("RightTop") is not None else None,
|
|
115
|
+
"Dpi": obj.get("Dpi"),
|
|
116
|
+
"Inverse": obj.get("Inverse"),
|
|
117
|
+
"ObjArea": obj.get("ObjArea"),
|
|
118
|
+
"ObjIntAngleDev": obj.get("ObjIntAngleDev"),
|
|
119
|
+
"PerspectiveTr": obj.get("PerspectiveTr"),
|
|
120
|
+
"ResultStatus": obj.get("ResultStatus")
|
|
121
|
+
})
|
|
122
|
+
return _obj
|
|
123
|
+
|
|
124
|
+
|
|
@@ -11,7 +11,7 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field
|
|
13
13
|
from typing import Any, ClassVar, Dict, List
|
|
14
|
-
from regula.documentreader.webclient.gen.models.
|
|
14
|
+
from regula.documentreader.webclient.gen.models.mrz_position import MrzPosition
|
|
15
15
|
from typing import Optional, Set
|
|
16
16
|
from typing_extensions import Self
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ class MrzPositionItem(BaseModel):
|
|
|
19
19
|
"""
|
|
20
20
|
MrzPositionItem
|
|
21
21
|
""" # noqa: E501
|
|
22
|
-
mrz_position:
|
|
22
|
+
mrz_position: MrzPosition = Field(alias="MrzPosition")
|
|
23
23
|
__properties: ClassVar[List[str]] = ["MrzPosition"]
|
|
24
24
|
|
|
25
25
|
model_config = ConfigDict(
|
|
@@ -76,7 +76,7 @@ class MrzPositionItem(BaseModel):
|
|
|
76
76
|
return cls.model_validate(obj)
|
|
77
77
|
|
|
78
78
|
_obj = cls.model_validate({
|
|
79
|
-
"MrzPosition":
|
|
79
|
+
"MrzPosition": MrzPosition.from_dict(obj["MrzPosition"]) if obj.get("MrzPosition") is not None else None
|
|
80
80
|
})
|
|
81
81
|
return _obj
|
|
82
82
|
|
|
@@ -11,7 +11,7 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import ConfigDict, Field
|
|
13
13
|
from typing import Any, ClassVar, Dict, List
|
|
14
|
-
from regula.documentreader.webclient.gen.models.
|
|
14
|
+
from regula.documentreader.webclient.gen.models.mrz_position import MrzPosition
|
|
15
15
|
from regula.documentreader.webclient.gen.models.result import Result
|
|
16
16
|
from regula.documentreader.webclient.gen.models.result_item import ResultItem
|
|
17
17
|
from typing import Optional, Set
|
|
@@ -21,7 +21,7 @@ class MRZPositionResult(ResultItem):
|
|
|
21
21
|
"""
|
|
22
22
|
MRZPositionResult
|
|
23
23
|
""" # noqa: E501
|
|
24
|
-
mrz_position:
|
|
24
|
+
mrz_position: MrzPosition = Field(alias="MrzPosition")
|
|
25
25
|
__properties: ClassVar[List[str]] = ["buf_length", "light", "list_idx", "page_idx", "result_type", "MrzPosition"]
|
|
26
26
|
|
|
27
27
|
model_config = ConfigDict(
|
|
@@ -83,7 +83,7 @@ class MRZPositionResult(ResultItem):
|
|
|
83
83
|
"list_idx": obj.get("list_idx"),
|
|
84
84
|
"page_idx": obj.get("page_idx"),
|
|
85
85
|
"result_type": obj.get("result_type"),
|
|
86
|
-
"MrzPosition":
|
|
86
|
+
"MrzPosition": MrzPosition.from_dict(obj["MrzPosition"]) if obj.get("MrzPosition") is not None else None
|
|
87
87
|
})
|
|
88
88
|
return _obj
|
|
89
89
|
|
|
@@ -11,7 +11,6 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictInt
|
|
13
13
|
from typing import Any, ClassVar, Dict, List
|
|
14
|
-
from regula.documentreader.webclient.gen.models.check_result import CheckResult
|
|
15
14
|
from regula.documentreader.webclient.gen.models.string_item import StringItem
|
|
16
15
|
from typing import Optional, Set
|
|
17
16
|
from typing_extensions import Self
|
|
@@ -20,16 +19,16 @@ class MRZTestQuality(BaseModel):
|
|
|
20
19
|
"""
|
|
21
20
|
MRZTestQuality
|
|
22
21
|
""" # noqa: E501
|
|
23
|
-
check_sums:
|
|
24
|
-
contrast_print:
|
|
22
|
+
check_sums: StrictInt = Field(alias="CHECK_SUMS")
|
|
23
|
+
contrast_print: StrictInt = Field(alias="CONTRAST_PRINT")
|
|
25
24
|
doc_format: StrictInt = Field(alias="DOC_FORMAT")
|
|
26
25
|
mrz_format: StrictInt = Field(alias="MRZ_FORMAT")
|
|
27
|
-
print_position:
|
|
28
|
-
stain_mrz:
|
|
29
|
-
symbols_param:
|
|
26
|
+
print_position: StrictInt = Field(alias="PRINT_POSITION")
|
|
27
|
+
stain_mrz: StrictInt = Field(alias="STAIN_MRZ")
|
|
28
|
+
symbols_param: StrictInt = Field(alias="SYMBOLS_PARAM")
|
|
30
29
|
str_count: StrictInt = Field(alias="StrCount")
|
|
31
30
|
strings: List[StringItem] = Field(alias="Strings")
|
|
32
|
-
textual_filling:
|
|
31
|
+
textual_filling: StrictInt = Field(alias="TEXTUAL_FILLING")
|
|
33
32
|
__properties: ClassVar[List[str]] = ["CHECK_SUMS", "CONTRAST_PRINT", "DOC_FORMAT", "MRZ_FORMAT", "PRINT_POSITION", "STAIN_MRZ", "SYMBOLS_PARAM", "StrCount", "Strings", "TEXTUAL_FILLING"]
|
|
34
33
|
|
|
35
34
|
model_config = ConfigDict(
|
|
@@ -11,7 +11,6 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
14
|
-
from regula.documentreader.webclient.gen.models.lcid import LCID
|
|
15
14
|
from regula.documentreader.webclient.gen.models.string_recognition_result import StringRecognitionResult
|
|
16
15
|
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
17
16
|
from typing import Optional, Set
|
|
@@ -30,7 +29,7 @@ class RFIDDocVisualExtendedField(BaseModel):
|
|
|
30
29
|
field_mask: Optional[StrictStr] = Field(default=None, alias="FieldMask")
|
|
31
30
|
validity: Optional[StrictInt] = Field(default=None, alias="Validity")
|
|
32
31
|
in_comparison: Optional[StrictInt] = Field(default=None, alias="InComparison")
|
|
33
|
-
w_lcid: Optional[
|
|
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
35
|
origin_dg: StrictInt = Field(alias="OriginDG")
|
|
@@ -10,8 +10,7 @@ import re # noqa: F401
|
|
|
10
10
|
import json
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
13
|
-
from typing import Any, ClassVar, Dict, List,
|
|
14
|
-
from regula.documentreader.webclient.gen.models.check_result import CheckResult
|
|
13
|
+
from typing import Any, ClassVar, Dict, List, Union
|
|
15
14
|
from regula.documentreader.webclient.gen.models.error_coordinates import ErrorCoordinates
|
|
16
15
|
from regula.documentreader.webclient.gen.models.field_item import FieldItem
|
|
17
16
|
from regula.documentreader.webclient.gen.models.rectangle_coordinates import RectangleCoordinates
|
|
@@ -23,16 +22,16 @@ class StringItem(BaseModel):
|
|
|
23
22
|
"""
|
|
24
23
|
StringItem
|
|
25
24
|
""" # noqa: E501
|
|
26
|
-
alignment_symbols_in_string:
|
|
27
|
-
check_sums:
|
|
25
|
+
alignment_symbols_in_string: StrictInt = Field(alias="ALIGNMENT_SYMBOLS_IN_STRING")
|
|
26
|
+
check_sums: StrictInt = Field(alias="CHECK_SUMS")
|
|
28
27
|
error_position: ErrorCoordinates = Field(alias="ErrorPOSITION")
|
|
29
28
|
field_count: StrictInt = Field(alias="FieldCount")
|
|
30
29
|
fields: List[FieldItem] = Field(alias="Fields")
|
|
31
|
-
strings_distance:
|
|
32
|
-
strings_interval:
|
|
33
|
-
string_filling:
|
|
34
|
-
|
|
35
|
-
symbols_param:
|
|
30
|
+
strings_distance: StrictInt = Field(alias="STRINGS_DISTANCE")
|
|
31
|
+
strings_interval: StrictInt = Field(alias="STRINGS_INTERVAL")
|
|
32
|
+
string_filling: StrictInt = Field(alias="STRING_FILLING")
|
|
33
|
+
string_position: StrictInt = Field(alias="STRING_POSITION")
|
|
34
|
+
symbols_param: StrictInt = Field(alias="SYMBOLS_PARAM")
|
|
36
35
|
size_error_alignment: Union[StrictFloat, StrictInt] = Field(alias="SizeError_ALIGNMENT")
|
|
37
36
|
size_error_distance: Union[StrictFloat, StrictInt] = Field(alias="SizeError_DISTANCE")
|
|
38
37
|
size_error_interval: Union[StrictFloat, StrictInt] = Field(alias="SizeError_INTERVAL")
|
|
@@ -40,7 +39,7 @@ class StringItem(BaseModel):
|
|
|
40
39
|
string_borders: RectangleCoordinates = Field(alias="StringBorders")
|
|
41
40
|
symbols_count: StrictInt = Field(alias="SymbolsCount")
|
|
42
41
|
symbols_estimations: List[SymbolEstimationItem] = Field(alias="SymbolsEstimations")
|
|
43
|
-
__properties: ClassVar[List[str]] = ["ALIGNMENT_SYMBOLS_IN_STRING", "CHECK_SUMS", "ErrorPOSITION", "FieldCount", "Fields", "STRINGS_DISTANCE", "STRINGS_INTERVAL", "STRING_FILLING", "
|
|
42
|
+
__properties: ClassVar[List[str]] = ["ALIGNMENT_SYMBOLS_IN_STRING", "CHECK_SUMS", "ErrorPOSITION", "FieldCount", "Fields", "STRINGS_DISTANCE", "STRINGS_INTERVAL", "STRING_FILLING", "STRING_POSITION", "SYMBOLS_PARAM", "SizeError_ALIGNMENT", "SizeError_DISTANCE", "SizeError_INTERVAL", "StringAngle", "StringBorders", "SymbolsCount", "SymbolsEstimations"]
|
|
44
43
|
|
|
45
44
|
model_config = ConfigDict(
|
|
46
45
|
populate_by_name=True,
|
|
@@ -121,7 +120,7 @@ class StringItem(BaseModel):
|
|
|
121
120
|
"STRINGS_DISTANCE": obj.get("STRINGS_DISTANCE"),
|
|
122
121
|
"STRINGS_INTERVAL": obj.get("STRINGS_INTERVAL"),
|
|
123
122
|
"STRING_FILLING": obj.get("STRING_FILLING"),
|
|
124
|
-
"
|
|
123
|
+
"STRING_POSITION": obj.get("STRING_POSITION"),
|
|
125
124
|
"SYMBOLS_PARAM": obj.get("SYMBOLS_PARAM"),
|
|
126
125
|
"SizeError_ALIGNMENT": obj.get("SizeError_ALIGNMENT"),
|
|
127
126
|
"SizeError_DISTANCE": obj.get("SizeError_DISTANCE"),
|
|
@@ -11,7 +11,6 @@ import json
|
|
|
11
11
|
|
|
12
12
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
13
13
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
14
|
-
from regula.documentreader.webclient.gen.models.lcid import LCID
|
|
15
14
|
from regula.documentreader.webclient.gen.models.string_recognition_result import StringRecognitionResult
|
|
16
15
|
from regula.documentreader.webclient.gen.models.text_field_type import TextFieldType
|
|
17
16
|
from typing import Optional, Set
|
|
@@ -30,7 +29,7 @@ class VisualExtendedFieldItem(BaseModel):
|
|
|
30
29
|
field_mask: Optional[StrictStr] = Field(default=None, alias="FieldMask")
|
|
31
30
|
validity: Optional[StrictInt] = Field(default=None, alias="Validity")
|
|
32
31
|
in_comparison: Optional[StrictInt] = Field(default=None, alias="InComparison")
|
|
33
|
-
w_lcid: Optional[
|
|
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
35
|
__properties: ClassVar[List[str]] = ["wFieldType", "FieldName", "StringsCount", "StringsResult", "Buf_Length", "Buf_Text", "FieldMask", "Validity", "InComparison", "wLCID", "Reserved2", "Reserved3"]
|
|
@@ -17,7 +17,7 @@ regula/documentreader/webclient/ext/models/authenticity/ident.py,sha256=DSmXEJ-v
|
|
|
17
17
|
regula/documentreader/webclient/ext/models/authenticity/image_ident.py,sha256=QmKTghP4Lo7bHBEubwzsVt1ob97NNaNIu_5QN_LUF9M,370
|
|
18
18
|
regula/documentreader/webclient/ext/models/authenticity/ocr_security_text.py,sha256=BV0h2_UDrwUlWczoJQW8qTSkdZ0icm0n0pPDRY9Qwq4,407
|
|
19
19
|
regula/documentreader/webclient/ext/models/authenticity/security_feature.py,sha256=t8egDyT1wlGvsyvZboAFOvcaYsALGpj41E50FUbvx68,622
|
|
20
|
-
regula/documentreader/webclient/gen/__init__.py,sha256=
|
|
20
|
+
regula/documentreader/webclient/gen/__init__.py,sha256=XV0t3wsDikpVE8rPtcG4FnwltBF218O5eZFkG0zx_ww,21878
|
|
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
23
|
regula/documentreader/webclient/gen/configuration.py,sha256=0hMqlAxYaL30050LBPnHrh6Sg1EIfSfQLr0eGNRNz1w,18084
|
|
@@ -28,7 +28,7 @@ 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=Kw8nesOzUHMG44Vh8nOiH7vo-bgHMTZ8lr2Arj-Jtdg,20904
|
|
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
|
|
@@ -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
|
|
@@ -139,10 +139,11 @@ regula/documentreader/webclient/gen/models/measure_system.py,sha256=CltBZGhqVVeu
|
|
|
139
139
|
regula/documentreader/webclient/gen/models/mrz_detect_mode_enum.py,sha256=gc8c4HTAa5yRutUhXOFbO2ZKhphArW0vhenb24bEJTE,643
|
|
140
140
|
regula/documentreader/webclient/gen/models/mrz_detector_result.py,sha256=3Iy1Emh-78SLcNadQnU4tD5d8WS1Qgt06qXlWO9L7SA,3145
|
|
141
141
|
regula/documentreader/webclient/gen/models/mrz_format.py,sha256=Uct326zRg58CUYdSyKdFbLU76JTSuw1KnDbFaidY5aQ,559
|
|
142
|
-
regula/documentreader/webclient/gen/models/
|
|
143
|
-
regula/documentreader/webclient/gen/models/
|
|
142
|
+
regula/documentreader/webclient/gen/models/mrz_position.py,sha256=6FgL2GlrCFdiWlHN0lzx2JLAzT8_eCzdGWVlFdY4Th0,5355
|
|
143
|
+
regula/documentreader/webclient/gen/models/mrz_position_item.py,sha256=i9EGfdteEBbwgn4hyiQhhBAYU0mu2E-9KvwjHSRvSRw,2620
|
|
144
|
+
regula/documentreader/webclient/gen/models/mrz_position_result.py,sha256=tcWPaRiu0se18IyztKPy552_OvCu5zK3Pg7modOXZjc,3056
|
|
144
145
|
regula/documentreader/webclient/gen/models/mrz_rows_item.py,sha256=jUol6GdIYRdEcdZgoQPASLN67T-KiZYVxcbe0cBtbk0,2902
|
|
145
|
-
regula/documentreader/webclient/gen/models/mrz_test_quality.py,sha256=
|
|
146
|
+
regula/documentreader/webclient/gen/models/mrz_test_quality.py,sha256=jYfkanSz4tts6BMjTH48sifaB0XRDDrukV0zA9ToHsE,3889
|
|
146
147
|
regula/documentreader/webclient/gen/models/mrz_test_quality_item.py,sha256=N1DHfX2oC7uz1WtMB1RpicfeABn0e5q3DfM6ois_L2E,2679
|
|
147
148
|
regula/documentreader/webclient/gen/models/mrz_test_quality_result.py,sha256=-2iqwp3CniTSHud0tPWvx_2cF4GUMaknfWq-isvnuQA,3115
|
|
148
149
|
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=MI1YmaH1P_S-xgA2aXzuxtO5UQGgN7Uj6vf3D_Uk-no,4765
|
|
@@ -191,11 +192,11 @@ regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=kb-_CJe
|
|
|
191
192
|
regula/documentreader/webclient/gen/models/rfid_certificate_origin.py,sha256=6Aso_sc8O0lyp8ivwt5zAWK2_9aWrzzJb7sx9C9jzh8,819
|
|
192
193
|
regula/documentreader/webclient/gen/models/rfid_certificate_type.py,sha256=wKBEbAeufCBYQKP2r30B5JqZ3MCt15N4Rk5m9VLI4Xc,789
|
|
193
194
|
regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=utAWfTJsXNmj-nR07Ws9OCiTnwuhEgVsdO70Pf9bMHo,6486
|
|
194
|
-
regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=
|
|
195
|
+
regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=kOgg-YHte4LPSYrcwu9GQA5Sy4acQBrgcr0hA4oY_to,2663
|
|
195
196
|
regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py,sha256=T6rliGapGxzdcjAYlW4FZ8f19Tele7_IOuZxFRBUa00,1694
|
|
196
197
|
regula/documentreader/webclient/gen/models/rfid_dg1.py,sha256=DgVKzHAY389J3ypOUjpvDz2RtxbIz1hdRDCDIgQUCpM,5304
|
|
197
198
|
regula/documentreader/webclient/gen/models/rfid_distinguished_name.py,sha256=mayQnTYvVbPEbDXyi-QCzjxUXQQMm9cTh6Yjqggz7MM,3604
|
|
198
|
-
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
|
|
199
200
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_field_item.py,sha256=H282wIPcJzu2BV6YfFU1MAdYpd5MaXkj3-5bBxk07Ls,2919
|
|
200
201
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info.py,sha256=jaeL-hWlaHLWikk3wY_kIYOeNn58UBQVuma6KOFElQs,3210
|
|
201
202
|
regula/documentreader/webclient/gen/models/rfid_doc_visual_extended_info_item.py,sha256=-bbg--7bdonK_N7WSQP7GSL2mS-WJcJc8XHW5OilIXo,2843
|
|
@@ -225,7 +226,7 @@ regula/documentreader/webclient/gen/models/source_validity.py,sha256=LQI27yhQHF2
|
|
|
225
226
|
regula/documentreader/webclient/gen/models/status.py,sha256=Bu7g1l6oVSIXtC5wqX6BxUoCjI85CgUIi2SHkIflhcM,3670
|
|
226
227
|
regula/documentreader/webclient/gen/models/status_item.py,sha256=MK6wT1ExR3I3jJreg5zb6Nsuds4iroyuUYuKKMPcxsE,2525
|
|
227
228
|
regula/documentreader/webclient/gen/models/status_result.py,sha256=-b0dxZs_KQ21uqDGUjAiA_CBc_BaGC7Qn0jMIPuqcvY,2961
|
|
228
|
-
regula/documentreader/webclient/gen/models/string_item.py,sha256=
|
|
229
|
+
regula/documentreader/webclient/gen/models/string_item.py,sha256=tTHJdNES5Fa7fJOL5QZKN5O-SzGmIf2i-gOewhCaHu0,6507
|
|
229
230
|
regula/documentreader/webclient/gen/models/string_recognition_result.py,sha256=aFDbdjeDQgTxLHO6sgeqAiTq7zGmD9ceS5YmsfkK1R8,3902
|
|
230
231
|
regula/documentreader/webclient/gen/models/symbol.py,sha256=c5p8WFPEQS7I9SvIoN49VekjNG4e2_F1OXTZyMtL2fI,2273
|
|
231
232
|
regula/documentreader/webclient/gen/models/symbol_candidate.py,sha256=WCywBDAYYK2MS6tw5CsO3pP_KjpGXbg_U5c18Fr4Kt0,2923
|
|
@@ -256,8 +257,8 @@ regula/documentreader/webclient/gen/models/trf_ft_string.py,sha256=_Gf4giJgTAPAx
|
|
|
256
257
|
regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR52S9-i3ZVOkzJ38w3qAc7G2K3HUPpYWC2D-wc,583
|
|
257
258
|
regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=IY61Fh_I1cfecOYHPywHX-C9zc0w9POm3Jn68tNXq-k,4713
|
|
258
259
|
regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
|
|
259
|
-
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=
|
|
260
|
-
regula_documentreader_webclient-8.
|
|
261
|
-
regula_documentreader_webclient-8.
|
|
262
|
-
regula_documentreader_webclient-8.
|
|
263
|
-
regula_documentreader_webclient-8.
|
|
260
|
+
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=EgCnGaKcfdPxcMr50j_p66EYSg6xmF9UI6b54IgodrM,4927
|
|
261
|
+
regula_documentreader_webclient-8.2.400.dev0.dist-info/METADATA,sha256=vNd7owysWZYulroD2yMQMy2BC1Tx2qnO0FiB_eicdDY,4001
|
|
262
|
+
regula_documentreader_webclient-8.2.400.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
263
|
+
regula_documentreader_webclient-8.2.400.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
|
|
264
|
+
regula_documentreader_webclient-8.2.400.dev0.dist-info/RECORD,,
|
|
File without changes
|