regula-documentreader-webclient 8.1.371.dev0__py3-none-any.whl → 8.1.374.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of regula-documentreader-webclient might be problematic. Click here for more details.
- regula/documentreader/webclient/gen/models/chosen_document_type.py +1 -1
- regula/documentreader/webclient/gen/models/light.py +0 -43
- regula/documentreader/webclient/gen/models/one_candidate.py +1 -1
- {regula_documentreader_webclient-8.1.371.dev0.dist-info → regula_documentreader_webclient-8.1.374.dev0.dist-info}/METADATA +1 -1
- {regula_documentreader_webclient-8.1.371.dev0.dist-info → regula_documentreader_webclient-8.1.374.dev0.dist-info}/RECORD +7 -7
- {regula_documentreader_webclient-8.1.371.dev0.dist-info → regula_documentreader_webclient-8.1.374.dev0.dist-info}/WHEEL +0 -0
- {regula_documentreader_webclient-8.1.371.dev0.dist-info → regula_documentreader_webclient-8.1.374.dev0.dist-info}/top_level.txt +0 -0
|
@@ -24,7 +24,7 @@ class ChosenDocumentType(BaseModel):
|
|
|
24
24
|
document_name: Optional[StrictStr] = Field(default=None, description="Document name", alias="DocumentName")
|
|
25
25
|
id: StrictInt = Field(description="Unique document type template identifier (Regula's internal numeric code)", alias="ID")
|
|
26
26
|
p: Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]] = Field(description="A measure of the likelihood of correct recognition in the analysis of this type of document", alias="P")
|
|
27
|
-
rotated180: StrictInt = Field(description="
|
|
27
|
+
rotated180: StrictInt = Field(description="Indicates if the document of the given type is rotated by 180 degrees", alias="Rotated180")
|
|
28
28
|
rfid_presence: RfidLocation = Field(alias="RFID_Presence")
|
|
29
29
|
fdsid_list: Optional[FDSIDList] = Field(default=None, alias="FDSIDList")
|
|
30
30
|
necessary_lights: StrictInt = Field(description="Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document", alias="NecessaryLights")
|
|
@@ -19,53 +19,10 @@ class Light(int, Enum):
|
|
|
19
19
|
allowed enum values
|
|
20
20
|
"""
|
|
21
21
|
OFF = 0
|
|
22
|
-
OVI = 1
|
|
23
|
-
WHITE_TOP = 2
|
|
24
|
-
WHITE_SIDE = 4
|
|
25
|
-
WHITE_FRONT = 8388608
|
|
26
22
|
WHITE = 6
|
|
27
|
-
IR_TOP = 8
|
|
28
|
-
IR_SIDE = 16
|
|
29
|
-
IR_FRONT = 16777216
|
|
30
23
|
IR = 24
|
|
31
|
-
WHITE_GRAY = 33554432
|
|
32
24
|
UV = 128
|
|
33
|
-
OVD = 67108864
|
|
34
|
-
VIDEODETECTION = 134217728
|
|
35
|
-
IR_870_OBL = 268435456
|
|
36
|
-
IR_LUMINESCENCE = 256
|
|
37
|
-
AXIAL_WHITE_LEFT = 1024
|
|
38
|
-
AXIAL_WHITE_RIGHT = 2048
|
|
39
|
-
AXIAL_WHITE_FRONT = 512
|
|
40
|
-
IR_720 = 4096
|
|
41
|
-
IR_940 = 8192
|
|
42
25
|
AXIAL_WHITE_FULL = 3072
|
|
43
|
-
RAW_DATA = 2147483648
|
|
44
|
-
RAW_DATA_GRBG = 2415919104
|
|
45
|
-
RAW_DATA_GBGR = 2684354560
|
|
46
|
-
RAW_DATA_RGGB = 2952790016
|
|
47
|
-
RAW_DATA_BGGR = 3221225472
|
|
48
|
-
TRANSMITTED = 32
|
|
49
|
-
TRANSMITTED_IR = 64
|
|
50
|
-
ANTI_STOKES = 65536
|
|
51
|
-
TRANSMITTED_IR940 = 16384
|
|
52
|
-
OVD_RIGHT = 262144
|
|
53
|
-
OVD_LEFT = 131072
|
|
54
|
-
IR_700 = 32768
|
|
55
|
-
IR_870 = 16777216
|
|
56
|
-
HOLO = 67108864
|
|
57
|
-
IR_BOTTOM = 64
|
|
58
|
-
WHITE_BOTTOM = 32
|
|
59
|
-
UVC = 524288
|
|
60
|
-
UVB = 1048576
|
|
61
|
-
WHITE_OBL = 2097152
|
|
62
|
-
WHITE_SPECIAL = 4194304
|
|
63
|
-
WHITE_UV = 134
|
|
64
|
-
WHITE_FULL_HOLO = 67108870
|
|
65
|
-
HR_LIGHT = 1073741824
|
|
66
|
-
HR_WHITE = 1073741830
|
|
67
|
-
HR_UV = 1073741952
|
|
68
|
-
HR_IR = 1073741848
|
|
69
26
|
|
|
70
27
|
@classmethod
|
|
71
28
|
def from_json(cls, json_str: str) -> Self:
|
|
@@ -24,7 +24,7 @@ class OneCandidate(BaseModel):
|
|
|
24
24
|
document_name: Optional[StrictStr] = Field(default=None, description="Document name", alias="DocumentName")
|
|
25
25
|
id: StrictInt = Field(description="Unique document type template identifier (Regula's internal numeric code)", alias="ID")
|
|
26
26
|
p: Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]] = Field(description="A measure of the likelihood of correct recognition in the analysis of this type of document", alias="P")
|
|
27
|
-
rotated180: StrictInt = Field(description="
|
|
27
|
+
rotated180: StrictInt = Field(description="Indicates if the document of the given type is rotated by 180 degrees", alias="Rotated180")
|
|
28
28
|
rfid_presence: RfidLocation = Field(alias="RFID_Presence")
|
|
29
29
|
fdsid_list: Optional[FDSIDList] = Field(default=None, alias="FDSIDList")
|
|
30
30
|
necessary_lights: StrictInt = Field(description="Combination of lighting scheme identifiers (Light enum) required to conduct OCR for this type of document", alias="NecessaryLights")
|
|
@@ -50,7 +50,7 @@ regula/documentreader/webclient/gen/models/candidates_list_item.py,sha256=JvgjJo
|
|
|
50
50
|
regula/documentreader/webclient/gen/models/certificate_data.py,sha256=pIOvBydpWaW5i2i_1Y8oMMDQfYUUOD-BJKb8y5R4KD0,2359
|
|
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
|
-
regula/documentreader/webclient/gen/models/chosen_document_type.py,sha256=
|
|
53
|
+
regula/documentreader/webclient/gen/models/chosen_document_type.py,sha256=MRkkAV4Og5SsGQFi_EzCvu7DsYCfD1HvYtaiSj4QcKk,5311
|
|
54
54
|
regula/documentreader/webclient/gen/models/chosen_document_type_result.py,sha256=TWMYGRwS8s7OSKR1uYGKSnJveHKXQ9SSG1s-nmGaA6w,3423
|
|
55
55
|
regula/documentreader/webclient/gen/models/container_list.py,sha256=6o1pmioLmB3Hnwc1Uomi0lqOGX_cZfmPOk67x3Sfmik,2944
|
|
56
56
|
regula/documentreader/webclient/gen/models/container_list_list_inner.py,sha256=MEC8Ys5QytsB_aqaTRkyEbx_ag_EyB969RQb3Y7x7MQ,23195
|
|
@@ -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=2vFPd1QetZLTZIZgkTpFeo2T0RbWogfnn5DM65pblBY,532
|
|
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
|
|
@@ -148,7 +148,7 @@ regula/documentreader/webclient/gen/models/mrz_test_quality_item.py,sha256=N1DHf
|
|
|
148
148
|
regula/documentreader/webclient/gen/models/mrz_test_quality_result.py,sha256=-2iqwp3CniTSHud0tPWvx_2cF4GUMaknfWq-isvnuQA,3115
|
|
149
149
|
regula/documentreader/webclient/gen/models/ocr_security_text_item.py,sha256=kOScbMRyy1yqT1h71zEKJdUPCPSYuy__4rCIJkq8f6M,4668
|
|
150
150
|
regula/documentreader/webclient/gen/models/ocr_security_text_result.py,sha256=tebup1He_P27Q8cE0c_hVQQlnDHUJf5B5_-rP0b9OQs,5328
|
|
151
|
-
regula/documentreader/webclient/gen/models/one_candidate.py,sha256=
|
|
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
|
|
@@ -258,7 +258,7 @@ regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR5
|
|
|
258
258
|
regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=sOnkL-c9WIJPHcUjT5_KzxMiVZK574iOBppANc7zRSs,4861
|
|
259
259
|
regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
|
|
260
260
|
regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=55PY8Wwn1Nh0msc-ynPZqlkmc6QwsghIy9-ICqvbRcA,5040
|
|
261
|
-
regula_documentreader_webclient-8.1.
|
|
262
|
-
regula_documentreader_webclient-8.1.
|
|
263
|
-
regula_documentreader_webclient-8.1.
|
|
264
|
-
regula_documentreader_webclient-8.1.
|
|
261
|
+
regula_documentreader_webclient-8.1.374.dev0.dist-info/METADATA,sha256=8qMuGz3dLq_oJk9LbwPEvXU5KZOtaLFKV5siIE84Qxc,4001
|
|
262
|
+
regula_documentreader_webclient-8.1.374.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
263
|
+
regula_documentreader_webclient-8.1.374.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
|
|
264
|
+
regula_documentreader_webclient-8.1.374.dev0.dist-info/RECORD,,
|
|
File without changes
|