regula-documentreader-webclient 8.2.428rc0__py3-none-any.whl → 8.2.430rc0__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
 
@@ -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, StrictFloat, StrictInt, StrictStr
12
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictFloat, StrictInt, StrictStr
13
13
  from typing import Any, ClassVar, Dict, List, Optional, Union
14
14
  from regula.documentreader.webclient.gen.models.check_result import CheckResult
15
15
  from regula.documentreader.webclient.gen.models.rfid_access_control_info import RfidAccessControlInfo
@@ -27,7 +27,7 @@ class RfidSessionData(BaseModel):
27
27
  """
28
28
  Structure is used to describe the results of work with the SDK within the context of the current communication session with electronic document
29
29
  """ # noqa: E501
30
- virtual_mode: Optional[StrictStr] = Field(default=None, description="Sign of virtual session when working with loaded data from a previous communication session with the electronic document", alias="VirtualMode")
30
+ virtual_mode: Optional[StrictBool] = Field(default=None, description="Sign of virtual session when working with loaded data from a previous communication session with the electronic document", alias="VirtualMode")
31
31
  sdk_version: Optional[StrictStr] = Field(default=None, description="Text SDKVersion value in format A.B (e.g. 3.1)", alias="SDKVersion")
32
32
  driver_version: Optional[StrictStr] = Field(default=None, description="Text DriverVersion value in format A.B.C.D (e.g. 6.2.5.4)", alias="DriverVersion")
33
33
  firmware_version: Optional[StrictStr] = Field(default=None, description="Text FirmwareVersion value in format A.B (e.g. 5.19)", alias="FirmwareVersion")
@@ -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(
@@ -26,6 +26,8 @@ class RFIDPKDResourceType(int, Enum):
26
26
  DEFL = 5
27
27
  DEVL = 6
28
28
  BL = 7
29
+ LDIF_TA = 8
30
+ ML_TA = 9
29
31
 
30
32
  @classmethod
31
33
  def from_json(cls, json_str: str) -> Self:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: regula_documentreader_webclient
3
- Version: 8.2.428rc0
3
+ Version: 8.2.430rc0
4
4
  Summary: Regula's Document Reader python client
5
5
  Home-page: https://regulaforensics.com
6
6
  Author: Regula Forensics, Inc.
@@ -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=Z0j3pa_VshT6Lxyg433uqaos0KvUvDj0PDmxzeE0dqI,3766
180
+ regula/documentreader/webclient/gen/models/rfid_access_control_info.py,sha256=tef7NPrE_FKAfC3SVvQ43i2wzLiOYNcgrpGpP4k7sK8,3724
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=g9Hx08gznQ2V3hEUHLa7_E0ooDq4hYw-vVzhlOmnguo,6742
190
+ regula/documentreader/webclient/gen/models/rfid_certificate_ex.py,sha256=ALN8tyg_pDbSqFqwLXDYflixbHU8L9Uhd0NJTW3nnS8,6700
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=atcy-xrke2DxU-B1JuAM88TLQ8_CzrYXPHJEZUbzfEg,6465
193
+ regula/documentreader/webclient/gen/models/rfid_data_file.py,sha256=z_d_Vb69Grz_c4AOlEHBv2HXKOQ03WESz1RNraa-s4Y,6423
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,15 +206,15 @@ 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=Bh-w-EnnYNlq_BU9jV0-7xGuNew8vAzkDp22AVsG63U,4058
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=b1J7oZZBOl4gDcRRAqAvev9nHi0OPemq1Hqpn2D8C44,7066
209
+ regula/documentreader/webclient/gen/models/rfid_security_object.py,sha256=rEEF688wRrmGrFNn2TcO30IN9wdFNZMhMF9D_N1NeDY,4016
210
+ regula/documentreader/webclient/gen/models/rfid_session_data.py,sha256=ERpSwcngrDZrCNWOycONw2Jkuj5Ky1XvFrkM_Ujk-9U,9013
211
+ regula/documentreader/webclient/gen/models/rfid_signer_info_ex.py,sha256=U9uEvD0U3hJdzKNh2FLg18hjYro5dq1zSfM9bJJX54w,7039
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
215
215
  regula/documentreader/webclient/gen/models/rfid_type.py,sha256=Iar7yWbbSUnMsac5NMgG4BpkULYe4j97iJAZ01oM7dk,639
216
216
  regula/documentreader/webclient/gen/models/rfid_validity.py,sha256=GdTJug93a4K1REDy4QeMLgVNf878TtbnYGT1R-0fuD4,2980
217
- regula/documentreader/webclient/gen/models/rfidpkd_resource_type.py,sha256=apzhMDECSR6nA1XshnyBhF1UvssokP7oAk3xOPVB9p0,658
217
+ regula/documentreader/webclient/gen/models/rfidpkd_resource_type.py,sha256=kAXscFhVGfJOoKM_Eh50AX5TUKHhKS9KYAsA2lR1l0g,688
218
218
  regula/documentreader/webclient/gen/models/scenario.py,sha256=-KpZ-K-YwK8pNz3-lDg6gofCZppDNfI6wFYTTihlmTs,1062
219
219
  regula/documentreader/webclient/gen/models/security_feature_item.py,sha256=lxGJV8GjuCEu6JhduIk5coK0GHsO4NpAbfsVtmbLCHQ,3912
220
220
  regula/documentreader/webclient/gen/models/security_feature_result.py,sha256=_4kxK_BPPZhV7z8mJtlNhh-K3Halmv7tR09gs_PxgwY,4572
@@ -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.428rc0.dist-info/METADATA,sha256=OU0hhR0fNeOLn8wF1JmHeJGAxNbWhYyF57DWhQ7TbZ0,3999
261
- regula_documentreader_webclient-8.2.428rc0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
- regula_documentreader_webclient-8.2.428rc0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
- regula_documentreader_webclient-8.2.428rc0.dist-info/RECORD,,
260
+ regula_documentreader_webclient-8.2.430rc0.dist-info/METADATA,sha256=22egS-dfkn24yYpwnV9Qki-HHHAI1Mnm3Zj9VUzJ71Q,3999
261
+ regula_documentreader_webclient-8.2.430rc0.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
262
+ regula_documentreader_webclient-8.2.430rc0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
263
+ regula_documentreader_webclient-8.2.430rc0.dist-info/RECORD,,