regula-documentreader-webclient 8.2.417rc0__py3-none-any.whl → 8.2.419rc0__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.

@@ -9,8 +9,9 @@ import pprint
9
9
  import re # noqa: F401
10
10
  import json
11
11
 
12
- from pydantic import BaseModel, ConfigDict, Field, StrictInt
12
+ from pydantic import BaseModel, ConfigDict, Field
13
13
  from typing import Any, ClassVar, Dict, List, Optional
14
+ from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
14
15
  from typing import Optional, Set
15
16
  from typing_extensions import Self
16
17
 
@@ -18,7 +19,7 @@ class ParsedData(BaseModel):
18
19
  """
19
20
  ParsedData
20
21
  """ # noqa: E501
21
- parsing_notifications: Optional[List[StrictInt]] = Field(default=None, alias="ParsingNotifications")
22
+ parsing_notifications: Optional[List[ParsingNotificationCodes]] = Field(default=None, alias="ParsingNotifications")
22
23
  __properties: ClassVar[List[str]] = ["ParsingNotifications"]
23
24
 
24
25
  model_config = ConfigDict(
@@ -11,7 +11,7 @@ import json
11
11
 
12
12
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
13
13
  from typing import Any, ClassVar, Dict, List, Optional, Union
14
- from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
14
+ from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
15
  from regula.documentreader.webclient.gen.models.rfid_access_control_procedure_type import RfidAccessControlProcedureType
16
16
  from regula.documentreader.webclient.gen.models.rfid_error_codes import RFIDErrorCodes
17
17
  from typing import Optional, Set
@@ -24,7 +24,7 @@ class RfidAccessControlInfo(BaseModel):
24
24
  type: RfidAccessControlProcedureType = Field(alias="Type")
25
25
  status: RFIDErrorCodes = Field(alias="Status")
26
26
  active_option_idx: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Index of the active variant of the procedure", alias="ActiveOptionIdx")
27
- notifications: List[ParsingNotificationCodes] = Field(description="List of remarks arisen during the procedure.", alias="Notifications")
27
+ notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the procedure.", alias="Notifications")
28
28
  access_control_options: Optional[List[Any]] = Field(default=None, description="List of structures with are used to describe the variants of the authentication or secure data access procedure performance within the context of the communication session with electronic document", alias="AccessControlOptions")
29
29
  __properties: ClassVar[List[str]] = ["Type", "Status", "ActiveOptionIdx", "Notifications", "AccessControlOptions"]
30
30
 
@@ -11,7 +11,7 @@ import json
11
11
 
12
12
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
13
13
  from typing import Any, ClassVar, Dict, List, Union
14
- from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
14
+ from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
15
  from regula.documentreader.webclient.gen.models.rfid_certificate_origin import RfidCertificateOrigin
16
16
  from regula.documentreader.webclient.gen.models.rfid_certificate_type import RfidCertificateType
17
17
  from regula.documentreader.webclient.gen.models.rfid_distinguished_name import RfidDistinguishedName
@@ -34,7 +34,7 @@ class RfidCertificateEx(BaseModel):
34
34
  subject: RfidDistinguishedName = Field(alias="Subject")
35
35
  subject_pk_algorithm: StrictStr = Field(description="Certificate public key algorithm identifier (OID); String in the format S1 (S2), where S1 – algorithm name, S2 – identifier (OID string).", alias="SubjectPKAlgorithm")
36
36
  extensions: List[RfidPkiExtension] = Field(description="List of the certificate extensions", alias="Extensions")
37
- notifications: List[ParsingNotificationCodes] = Field(description="List of remarks arisen during the analysis of the certificate data structure and its validity verification.", alias="Notifications")
37
+ notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the analysis of the certificate data structure and its validity verification.", alias="Notifications")
38
38
  origin: RfidCertificateOrigin = Field(alias="Origin")
39
39
  type: RfidCertificateType = Field(alias="Type")
40
40
  file_name: TrfFtString = Field(alias="FileName")
@@ -13,7 +13,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, Stric
13
13
  from typing import Any, ClassVar, Dict, List, Optional, Union
14
14
  from regula.documentreader.webclient.gen.models.graphic_field_type import GraphicFieldType
15
15
  from regula.documentreader.webclient.gen.models.parsed_data import ParsedData
16
- from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
16
+ from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
17
17
  from regula.documentreader.webclient.gen.models.rfid_data_file_type import RfidDataFileType
18
18
  from regula.documentreader.webclient.gen.models.rfid_error_codes import RFIDErrorCodes
19
19
  from regula.documentreader.webclient.gen.models.security_object_certificates import SecurityObjectCertificates
@@ -32,7 +32,7 @@ class RfidDataFile(BaseModel):
32
32
  reading_status: RFIDErrorCodes = Field(alias="ReadingStatus")
33
33
  reading_time: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Time of reading, milliseconds", alias="ReadingTime")
34
34
  pa_status: Optional[RFIDErrorCodes] = Field(default=None, alias="PA_Status")
35
- notifications: Optional[List[ParsingNotificationCodes]] = Field(default=None, description="List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure.", alias="Notifications")
35
+ notifications: Optional[List[ParsingErrorCodes]] = Field(default=None, description="List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure.", alias="Notifications")
36
36
  doc_fields_text: Optional[List[TextFieldType]] = Field(default=None, description="List of document text fields formed on the basis of the file contents", alias="DocFields_Text")
37
37
  doc_fields_graphics: Optional[List[GraphicFieldType]] = Field(default=None, description="List of document graphic fields formed on the basis of the file contents", alias="DocFields_Graphics")
38
38
  doc_fields_originals: Optional[List[GraphicFieldType]] = Field(default=None, description="List of the original binary representation of graphic document fields formed on the basis of the file contents", alias="DocFields_Originals")
@@ -11,7 +11,7 @@ import json
11
11
 
12
12
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
13
13
  from typing import Any, ClassVar, Dict, List, Union
14
- from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
14
+ from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
15
  from regula.documentreader.webclient.gen.models.rfid_signer_info_ex import RfidSignerInfoEx
16
16
  from typing import Optional, Set
17
17
  from typing_extensions import Self
@@ -23,7 +23,7 @@ class RfidSecurityObject(BaseModel):
23
23
  version: Union[StrictFloat, StrictInt] = Field(description="Security object version", alias="Version")
24
24
  object_type: StrictStr = Field(description="Identifier of the security object", alias="ObjectType")
25
25
  file_reference: Union[StrictFloat, StrictInt] = Field(description="Reference to the source file of the security object data", alias="FileReference")
26
- notifications: List[ParsingNotificationCodes] = Field(description="List of remarks arisen during the analysis of SO data structure.", alias="Notifications")
26
+ notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the analysis of SO data structure.", alias="Notifications")
27
27
  signer_infos: List[RfidSignerInfoEx] = Field(description="List of containers to store information about digital signature objects contained in the SO", alias="SignerInfos")
28
28
  __properties: ClassVar[List[str]] = ["Version", "ObjectType", "FileReference", "Notifications", "SignerInfos"]
29
29
 
@@ -11,7 +11,7 @@ import json
11
11
 
12
12
  from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
13
13
  from typing import Any, ClassVar, Dict, List, Union
14
- from regula.documentreader.webclient.gen.models.parsing_notification_codes import ParsingNotificationCodes
14
+ from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
15
  from regula.documentreader.webclient.gen.models.rfid_attribute_data import RfidAttributeData
16
16
  from regula.documentreader.webclient.gen.models.rfid_certificate_ex import RfidCertificateEx
17
17
  from regula.documentreader.webclient.gen.models.rfid_distinguished_name import RfidDistinguishedName
@@ -35,7 +35,7 @@ class RfidSignerInfoEx(BaseModel):
35
35
  pa_status: RFIDErrorCodes = Field(alias="PA_Status")
36
36
  certificate_chain: List[RfidCertificateEx] = Field(description="Certificate chain, used for the digital signature verification.", alias="CertificateChain")
37
37
  data_to_hash: StrictStr = Field(description="Binary data array used to calculate the hash value for digital signature verification. Base64 encoded.", alias="DataToHash")
38
- notifications: List[ParsingNotificationCodes] = Field(alias="Notifications")
38
+ notifications: List[ParsingErrorCodes] = Field(alias="Notifications")
39
39
  __properties: ClassVar[List[str]] = ["Version", "Issuer", "SerialNumber", "SubjectKeyIdentifier", "DigestAlgorithm", "SignedAttributes", "SignatureAlgorithm", "Signature", "PA_Status", "CertificateChain", "DataToHash", "Notifications"]
40
40
 
41
41
  model_config = ConfigDict(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: regula_documentreader_webclient
3
- Version: 8.2.417rc0
3
+ Version: 8.2.419rc0
4
4
  Summary: Regula's Document Reader python client
5
5
  Home-page: https://regulaforensics.com
6
6
  Author: Regula Forensics, Inc.
@@ -153,7 +153,7 @@ regula/documentreader/webclient/gen/models/original_symbol.py,sha256=PdeHzkXeYMm
153
153
  regula/documentreader/webclient/gen/models/out_data.py,sha256=XThmwQADKTU05783scBnUAsTDpkDTR_sSh0qdFZW1mM,2985
154
154
  regula/documentreader/webclient/gen/models/out_data_transaction_images_field_value.py,sha256=tez6qBxPTIQPktbjbYYmVr5k8vMUtFJibziOM2UxhC4,3083
155
155
  regula/documentreader/webclient/gen/models/p_array_field.py,sha256=AyTM_eOJkoyKIuzNFR-Twv86_KTuuX5IpwB8Qdc6tOo,5045
156
- regula/documentreader/webclient/gen/models/parsed_data.py,sha256=n2fh8nO8B-CpBsmUqFRMVkS7ZtMRDA7sCqIty1RRzuE,2363
156
+ regula/documentreader/webclient/gen/models/parsed_data.py,sha256=Y277AN--SdtueBRnSBZ2EM6RlJwp4K7horHMl60gsso,2474
157
157
  regula/documentreader/webclient/gen/models/parsing_error_codes.py,sha256=e_VDR7zU5DEJCz9ZDYR0-bfAKI92Sb8gU5uEQuFniyU,8066
158
158
  regula/documentreader/webclient/gen/models/parsing_notification_codes.py,sha256=FzztR3jTXvPUjf-geHOCIl9UhEJ291KhTFdDXcai_bM,20697
159
159
  regula/documentreader/webclient/gen/models/per_document_config.py,sha256=yTCwXM3eqkGZhKMAZKDojpjuUMkoF9lcFafm43LVkgU,2659
@@ -177,7 +177,7 @@ regula/documentreader/webclient/gen/models/result_item.py,sha256=_IYZJOnQHOuBEOB
177
177
  regula/documentreader/webclient/gen/models/result_mrz_detector.py,sha256=IdmjTAj-ULqeNx0R-UIwQx_59cM0FOPUgyyv3vikaSY,3238
178
178
  regula/documentreader/webclient/gen/models/result_mrz_detector_item.py,sha256=nNrW_cjobe9gE1TPdneWeV94w5L2ZWGhHmw2rDo6-9Y,2733
179
179
  regula/documentreader/webclient/gen/models/rfid_a_chip.py,sha256=UyJYlx6g9NXxGPfcRGMwYkL_GeP8JydF81NftfLVau4,684
180
- regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=q4EPaIfdRZK-qzmtPVn7MDzqskm7neE_fhTCdJLBE4Q,3787
180
+ regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=Z0j3pa_VshT6Lxyg433uqaos0KvUvDj0PDmxzeE0dqI,3766
181
181
  regula/documentreader/webclient/gen/models/rfid_access_control_procedure_type.py,sha256=4sZv-krwp4q3LSz9Wi4of-tKAulHh-n4V2LD60tfL6A,720
182
182
  regula/documentreader/webclient/gen/models/rfid_access_key.py,sha256=GVB1vHA2VdxNIzQYdUXEnCqPiW2CkK3yGcn2gFUXRq4,3206
183
183
  regula/documentreader/webclient/gen/models/rfid_application.py,sha256=MG_96fg0C9sWc5vH7pd2Qm6B82_OivIloRqc5ZNCMnw,4134
@@ -187,10 +187,10 @@ regula/documentreader/webclient/gen/models/rfid_attribute_name.py,sha256=pHRkzcV
187
187
  regula/documentreader/webclient/gen/models/rfid_authentication_procedure_type.py,sha256=Aot40N251tRBx1EM3ZmTlpmBm6Ga6CA-lg-KcC2MfyI,693
188
188
  regula/documentreader/webclient/gen/models/rfid_baud_rate.py,sha256=gpuy0XNmcVuO3XXbihl8C95clNwMl3P43cYOTtH1ecs,704
189
189
  regula/documentreader/webclient/gen/models/rfid_card_properties_ext.py,sha256=_c7mzRTGHA74nxZYK80lgOkVkHpvGKmdx2XMM_PR6AE,5720
190
- regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=OhjBKRQWu0twHulNBTFBWR89HWGPdcLEHfZ0YdeVzvk,6763
190
+ regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=g9Hx08gznQ2V3hEUHLa7_E0ooDq4hYw-vVzhlOmnguo,6742
191
191
  regula/documentreader/webclient/gen/models/rfid_certificate_origin.py,sha256=6Aso_sc8O0lyp8ivwt5zAWK2_9aWrzzJb7sx9C9jzh8,819
192
192
  regula/documentreader/webclient/gen/models/rfid_certificate_type.py,sha256=wKBEbAeufCBYQKP2r30B5JqZ3MCt15N4Rk5m9VLI4Xc,789
193
- regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=utAWfTJsXNmj-nR07Ws9OCiTnwuhEgVsdO70Pf9bMHo,6486
193
+ regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=atcy-xrke2DxU-B1JuAM88TLQ8_CzrYXPHJEZUbzfEg,6465
194
194
  regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=I8Ek0A51V6b46wHVnGYb7kOKVA0uqvqV2DR3PnbdD9o,2661
195
195
  regula/documentreader/webclient/gen/models/rfid_data_group_type_tag.py,sha256=T6rliGapGxzdcjAYlW4FZ8f19Tele7_IOuZxFRBUa00,1694
196
196
  regula/documentreader/webclient/gen/models/rfid_dg1.py,sha256=DgVKzHAY389J3ypOUjpvDz2RtxbIz1hdRDCDIgQUCpM,5304
@@ -206,9 +206,9 @@ regula/documentreader/webclient/gen/models/rfid_origin.py,sha256=zfvRgfuT-EhovSS
206
206
  regula/documentreader/webclient/gen/models/rfid_password_type.py,sha256=7zkWjkyhflKnIdCG9rmd0UywmKhKDmQPGQ3ERa5-nl4,683
207
207
  regula/documentreader/webclient/gen/models/rfid_pki_extension.py,sha256=P_Ju77ncoITcDAzrwP5dR90YS45lcbcUrMDdgCLoeJA,2709
208
208
  regula/documentreader/webclient/gen/models/rfid_raw_data.py,sha256=WR4qedgLDA4JV9iS0B9isLqpTtRuTRTPLyX7OQe-6RI,2370
209
- regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=Vfogse0XpjP2liAUqTfFWLMGHe4QfRlYOhQE4_3vT9A,4079
209
+ regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=Bh-w-EnnYNlq_BU9jV0-7xGuNew8vAzkDp22AVsG63U,4058
210
210
  regula/documentreader/webclient/gen/models/rfid_session_data.py,sha256=0UG5scyEB6A3ako0V-OL2XGlBbtRgDhC9b7_Rb1iZ-g,9000
211
- regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py,sha256=ZVVTcjyxT19pRdWgie5NiVJ0D1cHFHlLzXE4Q2Tr8CA,7087
211
+ regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py,sha256=b1J7oZZBOl4gDcRRAqAvev9nHi0OPemq1Hqpn2D8C44,7066
212
212
  regula/documentreader/webclient/gen/models/rfid_terminal.py,sha256=-wjp072lNA5XdozvRn4TjGogwSvyJVPxrQyVGFA3zvk,3081
213
213
  regula/documentreader/webclient/gen/models/rfid_terminal_type.py,sha256=DBzk3igWo7G2jUD6w6OxwjtZKGjs2GxERX-BeJnLg_U,739
214
214
  regula/documentreader/webclient/gen/models/rfid_text_data_result.py,sha256=K7oc0hE-ulsftzEUTJ6LKckoBtjRnfTzhwX2pz3VCYs,3227
@@ -257,7 +257,7 @@ regula/documentreader/webclient/gen/models/verification_result.py,sha256=E6bCVR5
257
257
  regula/documentreader/webclient/gen/models/verified_field_map.py,sha256=IY61Fh_I1cfecOYHPywHX-C9zc0w9POm3Jn68tNXq-k,4713
258
258
  regula/documentreader/webclient/gen/models/visibility.py,sha256=GACgQd_8lx_cwMwI5lCi7cTxEWxw2atbJo6uI4mTKpQ,602
259
259
  regula/documentreader/webclient/gen/models/visual_extended_field_item.py,sha256=3Q86Cngm5H0eIB7NzHtuT90-Kh6GQz4YzT2sDgJWsvM,5001
260
- regula_documentreader_webclient-8.2.417rc0.dist-info/METADATA,sha256=1NEsE3pCl3IqxoiXQbafFRYGitt2wpFOjePSShpBBqM,3999
261
- regula_documentreader_webclient-8.2.417rc0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
- regula_documentreader_webclient-8.2.417rc0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
- regula_documentreader_webclient-8.2.417rc0.dist-info/RECORD,,
260
+ regula_documentreader_webclient-8.2.419rc0.dist-info/METADATA,sha256=eI5IHgddxbHl-ALQmgJs8mR-eUY3O_Qg0udnaMdF23Y,3999
261
+ regula_documentreader_webclient-8.2.419rc0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
+ regula_documentreader_webclient-8.2.419rc0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
+ regula_documentreader_webclient-8.2.419rc0.dist-info/RECORD,,