regula-documentreader-webclient 8.2.425.dev0__py3-none-any.whl → 8.2.427.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.

@@ -11,7 +11,6 @@ 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_error_codes import ParsingErrorCodes
15
14
  from regula.documentreader.webclient.gen.models.rfid_access_control_procedure_type import RfidAccessControlProcedureType
16
15
  from regula.documentreader.webclient.gen.models.rfid_error_codes import RFIDErrorCodes
17
16
  from typing import Optional, Set
@@ -24,7 +23,7 @@ class RfidAccessControlInfo(BaseModel):
24
23
  type: RfidAccessControlProcedureType = Field(alias="Type")
25
24
  status: RFIDErrorCodes = Field(alias="Status")
26
25
  active_option_idx: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Index of the active variant of the procedure", alias="ActiveOptionIdx")
27
- notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the procedure.", alias="Notifications")
26
+ notifications: List[StrictInt] = Field(description="List of remarks arisen during the procedure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.", alias="Notifications")
28
27
  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
28
  __properties: ClassVar[List[str]] = ["Type", "Status", "ActiveOptionIdx", "Notifications", "AccessControlOptions"]
30
29
 
@@ -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, Union
14
- from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
14
  from regula.documentreader.webclient.gen.models.rfid_certificate_origin import RfidCertificateOrigin
16
15
  from regula.documentreader.webclient.gen.models.rfid_certificate_type import RfidCertificateType
17
16
  from regula.documentreader.webclient.gen.models.rfid_distinguished_name import RfidDistinguishedName
@@ -34,7 +33,7 @@ class RfidCertificateEx(BaseModel):
34
33
  subject: RfidDistinguishedName = Field(alias="Subject")
35
34
  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
35
  extensions: List[RfidPkiExtension] = Field(description="List of the certificate extensions", alias="Extensions")
37
- notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the analysis of the certificate data structure and its validity verification.", alias="Notifications")
36
+ notifications: List[StrictInt] = Field(description="List of remarks arisen during the analysis of the certificate data structure and its validity verification. Can be ParsingErrorCodes or ParsingNotificationCodes enum.", alias="Notifications")
38
37
  origin: RfidCertificateOrigin = Field(alias="Origin")
39
38
  type: RfidCertificateType = Field(alias="Type")
40
39
  file_name: TrfFtString = Field(alias="FileName")
@@ -13,7 +13,6 @@ 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_error_codes import ParsingErrorCodes
17
16
  from regula.documentreader.webclient.gen.models.rfid_data_file_type import RfidDataFileType
18
17
  from regula.documentreader.webclient.gen.models.rfid_error_codes import RFIDErrorCodes
19
18
  from regula.documentreader.webclient.gen.models.security_object_certificates import SecurityObjectCertificates
@@ -32,7 +31,7 @@ class RfidDataFile(BaseModel):
32
31
  reading_status: RFIDErrorCodes = Field(alias="ReadingStatus")
33
32
  reading_time: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Time of reading, milliseconds", alias="ReadingTime")
34
33
  pa_status: Optional[RFIDErrorCodes] = Field(default=None, alias="PA_Status")
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")
34
+ notifications: Optional[List[StrictInt]] = Field(default=None, description="List of remarks arisen when reading data from the memory of the chip and analysing their ASN.1-structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.", alias="Notifications")
36
35
  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
36
  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
37
  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,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, Union
14
- from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
14
  from regula.documentreader.webclient.gen.models.rfid_signer_info_ex import RfidSignerInfoEx
16
15
  from typing import Optional, Set
17
16
  from typing_extensions import Self
@@ -23,7 +22,7 @@ class RfidSecurityObject(BaseModel):
23
22
  version: Union[StrictFloat, StrictInt] = Field(description="Security object version", alias="Version")
24
23
  object_type: StrictStr = Field(description="Identifier of the security object", alias="ObjectType")
25
24
  file_reference: Union[StrictFloat, StrictInt] = Field(description="Reference to the source file of the security object data", alias="FileReference")
26
- notifications: List[ParsingErrorCodes] = Field(description="List of remarks arisen during the analysis of SO data structure.", alias="Notifications")
25
+ notifications: List[StrictInt] = Field(description="List of remarks arisen during the analysis of SO data structure. Can be ParsingErrorCodes or ParsingNotificationCodes enum.", alias="Notifications")
27
26
  signer_infos: List[RfidSignerInfoEx] = Field(description="List of containers to store information about digital signature objects contained in the SO", alias="SignerInfos")
28
27
  __properties: ClassVar[List[str]] = ["Version", "ObjectType", "FileReference", "Notifications", "SignerInfos"]
29
28
 
@@ -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, Union
14
- from regula.documentreader.webclient.gen.models.parsing_error_codes import ParsingErrorCodes
15
14
  from regula.documentreader.webclient.gen.models.rfid_attribute_data import RfidAttributeData
16
15
  from regula.documentreader.webclient.gen.models.rfid_certificate_ex import RfidCertificateEx
17
16
  from regula.documentreader.webclient.gen.models.rfid_distinguished_name import RfidDistinguishedName
@@ -35,7 +34,7 @@ class RfidSignerInfoEx(BaseModel):
35
34
  pa_status: RFIDErrorCodes = Field(alias="PA_Status")
36
35
  certificate_chain: List[RfidCertificateEx] = Field(description="Certificate chain, used for the digital signature verification.", alias="CertificateChain")
37
36
  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[ParsingErrorCodes] = Field(alias="Notifications")
37
+ notifications: List[StrictInt] = Field(description="Can be ParsingErrorCodes or ParsingNotificationCodes enum.", alias="Notifications")
39
38
  __properties: ClassVar[List[str]] = ["Version", "Issuer", "SerialNumber", "SubjectKeyIdentifier", "DigestAlgorithm", "SignedAttributes", "SignatureAlgorithm", "Signature", "PA_Status", "CertificateChain", "DataToHash", "Notifications"]
40
39
 
41
40
  model_config = ConfigDict(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: regula_documentreader_webclient
3
- Version: 8.2.425.dev0
3
+ Version: 8.2.427.dev0
4
4
  Summary: Regula's Document Reader python client
5
5
  Home-page: https://regulaforensics.com
6
6
  Author: Regula Forensics, Inc.
@@ -178,7 +178,7 @@ regula/documentreader/webclient/gen/models/result_item.py,sha256=_IYZJOnQHOuBEOB
178
178
  regula/documentreader/webclient/gen/models/result_mrz_detector.py,sha256=IdmjTAj-ULqeNx0R-UIwQx_59cM0FOPUgyyv3vikaSY,3238
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
- regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=Z0j3pa_VshT6Lxyg433uqaos0KvUvDj0PDmxzeE0dqI,3766
181
+ regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=tef7NPrE_FKAfC3SVvQ43i2wzLiOYNcgrpGpP4k7sK8,3724
182
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=MG_96fg0C9sWc5vH7pd2Qm6B82_OivIloRqc5ZNCMnw,4134
@@ -188,10 +188,10 @@ regula/documentreader/webclient/gen/models/rfid_attribute_name.py,sha256=pHRkzcV
188
188
  regula/documentreader/webclient/gen/models/rfid_authentication_procedure_type.py,sha256=Aot40N251tRBx1EM3ZmTlpmBm6Ga6CA-lg-KcC2MfyI,693
189
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
- regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=g9Hx08gznQ2V3hEUHLa7_E0ooDq4hYw-vVzhlOmnguo,6742
191
+ regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=ALN8tyg_pDbSqFqwLXDYflixbHU8L9Uhd0NJTW3nnS8,6700
192
192
  regula/documentreader/webclient/gen/models/rfid_certificate_origin.py,sha256=6Aso_sc8O0lyp8ivwt5zAWK2_9aWrzzJb7sx9C9jzh8,819
193
193
  regula/documentreader/webclient/gen/models/rfid_certificate_type.py,sha256=wKBEbAeufCBYQKP2r30B5JqZ3MCt15N4Rk5m9VLI4Xc,789
194
- regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=atcy-xrke2DxU-B1JuAM88TLQ8_CzrYXPHJEZUbzfEg,6465
194
+ regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=z_d_Vb69Grz_c4AOlEHBv2HXKOQ03WESz1RNraa-s4Y,6423
195
195
  regula/documentreader/webclient/gen/models/rfid_data_file_type.py,sha256=I8Ek0A51V6b46wHVnGYb7kOKVA0uqvqV2DR3PnbdD9o,2661
196
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
@@ -207,9 +207,9 @@ regula/documentreader/webclient/gen/models/rfid_origin.py,sha256=zfvRgfuT-EhovSS
207
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
- regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=Bh-w-EnnYNlq_BU9jV0-7xGuNew8vAzkDp22AVsG63U,4058
210
+ regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=rEEF688wRrmGrFNn2TcO30IN9wdFNZMhMF9D_N1NeDY,4016
211
211
  regula/documentreader/webclient/gen/models/rfid_session_data.py,sha256=0UG5scyEB6A3ako0V-OL2XGlBbtRgDhC9b7_Rb1iZ-g,9000
212
- regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py,sha256=b1J7oZZBOl4gDcRRAqAvev9nHi0OPemq1Hqpn2D8C44,7066
212
+ regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py,sha256=U9uEvD0U3hJdzKNh2FLg18hjYro5dq1zSfM9bJJX54w,7039
213
213
  regula/documentreader/webclient/gen/models/rfid_terminal.py,sha256=-wjp072lNA5XdozvRn4TjGogwSvyJVPxrQyVGFA3zvk,3081
214
214
  regula/documentreader/webclient/gen/models/rfid_terminal_type.py,sha256=DBzk3igWo7G2jUD6w6OxwjtZKGjs2GxERX-BeJnLg_U,739
215
215
  regula/documentreader/webclient/gen/models/rfid_text_data_result.py,sha256=K7oc0hE-ulsftzEUTJ6LKckoBtjRnfTzhwX2pz3VCYs,3227
@@ -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=IY61Fh_I1cfecOYHPywHX-C9zc0w9POm3Jn68tNXq-k,4713
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=3Q86Cngm5H0eIB7NzHtuT90-Kh6GQz4YzT2sDgJWsvM,5001
261
- regula_documentreader_webclient-8.2.425.dev0.dist-info/METADATA,sha256=Nb7yMzWIkKVp9xcDb2cz8ovvEXdLnFa3kYfT5uCVE0I,4001
262
- regula_documentreader_webclient-8.2.425.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
263
- regula_documentreader_webclient-8.2.425.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
264
- regula_documentreader_webclient-8.2.425.dev0.dist-info/RECORD,,
261
+ regula_documentreader_webclient-8.2.427.dev0.dist-info/METADATA,sha256=nvcgD0CKqBquRSizaXh8ObepPawgOB1hnX0SCGcZ7G8,4001
262
+ regula_documentreader_webclient-8.2.427.dev0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
263
+ regula_documentreader_webclient-8.2.427.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
264
+ regula_documentreader_webclient-8.2.427.dev0.dist-info/RECORD,,