onfido-python 5.1.0__py3-none-any.whl → 5.3.0__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.
onfido/__init__.py CHANGED
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "5.1.0"
17
+ __version__ = "5.3.0"
18
18
 
19
19
  # import apis into sdk package
20
20
  from onfido.api.default_api import DefaultApi
@@ -242,6 +242,8 @@ from onfido.models.proof_of_address_report import ProofOfAddressReport
242
242
  from onfido.models.repeat_attempts_list import RepeatAttemptsList
243
243
  from onfido.models.repeat_attempts_list_repeat_attempts_inner import RepeatAttemptsListRepeatAttemptsInner
244
244
  from onfido.models.report import Report
245
+ from onfido.models.report_configuration import ReportConfiguration
246
+ from onfido.models.report_configuration_facial_similarity import ReportConfigurationFacialSimilarity
245
247
  from onfido.models.report_document import ReportDocument
246
248
  from onfido.models.report_name import ReportName
247
249
  from onfido.models.report_result import ReportResult
onfido/api_client.py CHANGED
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'onfido-python/5.1.0'
93
+ self.user_agent = 'onfido-python/5.3.0'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  def __enter__(self):
onfido/configuration.py CHANGED
@@ -501,7 +501,7 @@ conf = onfido.Configuration(
501
501
  "OS: {env}\n"\
502
502
  "Python Version: {pyversion}\n"\
503
503
  "Version of the API: v3.6\n"\
504
- "SDK Package Version: 5.1.0".\
504
+ "SDK Package Version: 5.3.0".\
505
505
  format(env=sys.platform, pyversion=sys.version)
506
506
 
507
507
  def get_host_settings(self) -> List[HostSetting]:
onfido/models/__init__.py CHANGED
@@ -225,6 +225,8 @@ from onfido.models.proof_of_address_report import ProofOfAddressReport
225
225
  from onfido.models.repeat_attempts_list import RepeatAttemptsList
226
226
  from onfido.models.repeat_attempts_list_repeat_attempts_inner import RepeatAttemptsListRepeatAttemptsInner
227
227
  from onfido.models.report import Report
228
+ from onfido.models.report_configuration import ReportConfiguration
229
+ from onfido.models.report_configuration_facial_similarity import ReportConfigurationFacialSimilarity
228
230
  from onfido.models.report_document import ReportDocument
229
231
  from onfido.models.report_name import ReportName
230
232
  from onfido.models.report_result import ReportResult
@@ -19,6 +19,7 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
+ from onfido.models.report_configuration import ReportConfiguration
22
23
  from onfido.models.report_name import ReportName
23
24
  from onfido.models.us_driving_licence_builder import UsDrivingLicenceBuilder
24
25
  from typing import Optional, Set
@@ -41,8 +42,9 @@ class CheckBuilder(BaseModel):
41
42
  sub_result: Optional[StrictStr] = Field(default=None, description="Triggers responses for particular sub-results for sandbox Document reports.")
42
43
  consider: Optional[List[ReportName]] = Field(default=None, description="Array of names of particular reports to return consider as their results. This is a feature available in sandbox testing")
43
44
  us_driving_licence: Optional[UsDrivingLicenceBuilder] = None
45
+ report_configuration: Optional[ReportConfiguration] = None
44
46
  additional_properties: Dict[str, Any] = {}
45
- __properties: ClassVar[List[str]] = ["webhook_ids", "applicant_id", "applicant_provides_data", "tags", "redirect_uri", "privacy_notices_read_consent_given", "report_names", "document_ids", "asynchronous", "suppress_form_emails", "sub_result", "consider", "us_driving_licence"]
47
+ __properties: ClassVar[List[str]] = ["webhook_ids", "applicant_id", "applicant_provides_data", "tags", "redirect_uri", "privacy_notices_read_consent_given", "report_names", "document_ids", "asynchronous", "suppress_form_emails", "sub_result", "consider", "us_driving_licence", "report_configuration"]
46
48
 
47
49
  model_config = ConfigDict(
48
50
  populate_by_name=True,
@@ -88,6 +90,9 @@ class CheckBuilder(BaseModel):
88
90
  # override the default output from pydantic by calling `to_dict()` of us_driving_licence
89
91
  if self.us_driving_licence:
90
92
  _dict['us_driving_licence'] = self.us_driving_licence.to_dict()
93
+ # override the default output from pydantic by calling `to_dict()` of report_configuration
94
+ if self.report_configuration:
95
+ _dict['report_configuration'] = self.report_configuration.to_dict()
91
96
  # puts key-value pairs in additional_properties in the top level
92
97
  if self.additional_properties is not None:
93
98
  for _key, _value in self.additional_properties.items():
@@ -117,7 +122,8 @@ class CheckBuilder(BaseModel):
117
122
  "suppress_form_emails": obj.get("suppress_form_emails"),
118
123
  "sub_result": obj.get("sub_result"),
119
124
  "consider": obj.get("consider"),
120
- "us_driving_licence": UsDrivingLicenceBuilder.from_dict(obj["us_driving_licence"]) if obj.get("us_driving_licence") is not None else None
125
+ "us_driving_licence": UsDrivingLicenceBuilder.from_dict(obj["us_driving_licence"]) if obj.get("us_driving_licence") is not None else None,
126
+ "report_configuration": ReportConfiguration.from_dict(obj["report_configuration"]) if obj.get("report_configuration") is not None else None
121
127
  })
122
128
  # store additional fields in additional_properties
123
129
  for _key in obj.keys():
@@ -19,6 +19,7 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
+ from onfido.models.report_configuration import ReportConfiguration
22
23
  from onfido.models.report_name import ReportName
23
24
  from onfido.models.us_driving_licence_builder import UsDrivingLicenceBuilder
24
25
  from typing import Optional, Set
@@ -36,8 +37,9 @@ class CheckRequest(BaseModel):
36
37
  sub_result: Optional[StrictStr] = Field(default=None, description="Triggers responses for particular sub-results for sandbox Document reports.")
37
38
  consider: Optional[List[ReportName]] = Field(default=None, description="Array of names of particular reports to return consider as their results. This is a feature available in sandbox testing")
38
39
  us_driving_licence: Optional[UsDrivingLicenceBuilder] = None
40
+ report_configuration: Optional[ReportConfiguration] = None
39
41
  additional_properties: Dict[str, Any] = {}
40
- __properties: ClassVar[List[str]] = ["report_names", "document_ids", "applicant_provides_data", "asynchronous", "suppress_form_emails", "sub_result", "consider", "us_driving_licence"]
42
+ __properties: ClassVar[List[str]] = ["report_names", "document_ids", "applicant_provides_data", "asynchronous", "suppress_form_emails", "sub_result", "consider", "us_driving_licence", "report_configuration"]
41
43
 
42
44
  model_config = ConfigDict(
43
45
  populate_by_name=True,
@@ -83,6 +85,9 @@ class CheckRequest(BaseModel):
83
85
  # override the default output from pydantic by calling `to_dict()` of us_driving_licence
84
86
  if self.us_driving_licence:
85
87
  _dict['us_driving_licence'] = self.us_driving_licence.to_dict()
88
+ # override the default output from pydantic by calling `to_dict()` of report_configuration
89
+ if self.report_configuration:
90
+ _dict['report_configuration'] = self.report_configuration.to_dict()
86
91
  # puts key-value pairs in additional_properties in the top level
87
92
  if self.additional_properties is not None:
88
93
  for _key, _value in self.additional_properties.items():
@@ -107,7 +112,8 @@ class CheckRequest(BaseModel):
107
112
  "suppress_form_emails": obj.get("suppress_form_emails"),
108
113
  "sub_result": obj.get("sub_result"),
109
114
  "consider": obj.get("consider"),
110
- "us_driving_licence": UsDrivingLicenceBuilder.from_dict(obj["us_driving_licence"]) if obj.get("us_driving_licence") is not None else None
115
+ "us_driving_licence": UsDrivingLicenceBuilder.from_dict(obj["us_driving_licence"]) if obj.get("us_driving_licence") is not None else None,
116
+ "report_configuration": ReportConfiguration.from_dict(obj["report_configuration"]) if obj.get("report_configuration") is not None else None
111
117
  })
112
118
  # store additional fields in additional_properties
113
119
  for _key in obj.keys():
@@ -85,10 +85,11 @@ class DocumentWithDriverVerificationReportAllOfProperties(BaseModel):
85
85
  restricted_licence: Optional[StrictBool] = Field(default=None, description="True for **limited/restricted** driving license, including learner's permits")
86
86
  raw_licence_category: Optional[StrictStr] = Field(default=None, description="Underlying, non-normalised, licence category (e.g. \"Junior operators license\")")
87
87
  raw_vehicle_classes: Optional[StrictStr] = Field(default=None, description="Comma-separated vehicle classes that the user is qualified for")
88
+ manual_transmission_restriction: Optional[StrictBool] = Field(default=None, description="True if the user is not qualified to drive a manual transmission")
88
89
  vehicle_class_details: Optional[List[DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner]] = Field(default=None, description="Detailed classes/categories information")
89
90
  passenger_vehicle: Optional[DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle] = None
90
91
  additional_properties: Dict[str, Any] = {}
91
- __properties: ClassVar[List[str]] = ["date_of_birth", "date_of_expiry", "personal_number", "document_numbers", "document_type", "first_name", "middle_name", "last_name", "gender", "issuing_country", "nationality", "issuing_state", "issuing_date", "categorisation", "mrz_line1", "mrz_line2", "mrz_line3", "address", "place_of_birth", "spouse_name", "widow_name", "alias_name", "issuing_authority", "remarks", "civil_state", "expatriation", "father_name", "mother_name", "religion", "type_of_permit", "version_number", "document_subtype", "profession", "security_document_number", "tax_number", "nist_identity_evidence_strength", "has_issuance_confirmation", "real_id_compliance", "security_tier", "address_lines", "barcode", "nfc", "driving_licence_information", "document_classification", "extracted_data", "drivers_licence", "restricted_licence", "raw_licence_category", "raw_vehicle_classes", "vehicle_class_details", "passenger_vehicle"]
92
+ __properties: ClassVar[List[str]] = ["date_of_birth", "date_of_expiry", "personal_number", "document_numbers", "document_type", "first_name", "middle_name", "last_name", "gender", "issuing_country", "nationality", "issuing_state", "issuing_date", "categorisation", "mrz_line1", "mrz_line2", "mrz_line3", "address", "place_of_birth", "spouse_name", "widow_name", "alias_name", "issuing_authority", "remarks", "civil_state", "expatriation", "father_name", "mother_name", "religion", "type_of_permit", "version_number", "document_subtype", "profession", "security_document_number", "tax_number", "nist_identity_evidence_strength", "has_issuance_confirmation", "real_id_compliance", "security_tier", "address_lines", "barcode", "nfc", "driving_licence_information", "document_classification", "extracted_data", "drivers_licence", "restricted_licence", "raw_licence_category", "raw_vehicle_classes", "manual_transmission_restriction", "vehicle_class_details", "passenger_vehicle"]
92
93
 
93
94
  @field_validator('nist_identity_evidence_strength')
94
95
  def nist_identity_evidence_strength_validate_enum(cls, value):
@@ -270,6 +271,7 @@ class DocumentWithDriverVerificationReportAllOfProperties(BaseModel):
270
271
  "restricted_licence": obj.get("restricted_licence"),
271
272
  "raw_licence_category": obj.get("raw_licence_category"),
272
273
  "raw_vehicle_classes": obj.get("raw_vehicle_classes"),
274
+ "manual_transmission_restriction": obj.get("manual_transmission_restriction"),
273
275
  "vehicle_class_details": [DocumentWithDriverVerificationReportAllOfPropertiesAllOfVehicleClassDetailsInner.from_dict(_item) for _item in obj["vehicle_class_details"]] if obj.get("vehicle_class_details") is not None else None,
274
276
  "passenger_vehicle": DocumentWithDriverVerificationReportAllOfPropertiesAllOfPassengerVehicle.from_dict(obj["passenger_vehicle"]) if obj.get("passenger_vehicle") is not None else None
275
277
  })
@@ -0,0 +1,119 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Onfido API v3.6
5
+
6
+ The Onfido API (v3.6)
7
+
8
+ The version of the OpenAPI document: v3.6
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from onfido.models.report_configuration_facial_similarity import ReportConfigurationFacialSimilarity
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ReportConfiguration(BaseModel):
27
+ """
28
+ Defines configuration options for facial similarity checks used to distinguish between onboarding and reverification scenarios.
29
+ """ # noqa: E501
30
+ facial_similarity_photo: Optional[ReportConfigurationFacialSimilarity] = None
31
+ facial_similarity_photo_fully_auto: Optional[ReportConfigurationFacialSimilarity] = None
32
+ facial_similarity_video: Optional[ReportConfigurationFacialSimilarity] = None
33
+ facial_similarity_motion: Optional[ReportConfigurationFacialSimilarity] = None
34
+ additional_properties: Dict[str, Any] = {}
35
+ __properties: ClassVar[List[str]] = ["facial_similarity_photo", "facial_similarity_photo_fully_auto", "facial_similarity_video", "facial_similarity_motion"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of ReportConfiguration from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ * Fields in `self.additional_properties` are added to the output dict.
68
+ """
69
+ excluded_fields: Set[str] = set([
70
+ "additional_properties",
71
+ ])
72
+
73
+ _dict = self.model_dump(
74
+ by_alias=True,
75
+ exclude=excluded_fields,
76
+ exclude_none=True,
77
+ )
78
+ # override the default output from pydantic by calling `to_dict()` of facial_similarity_photo
79
+ if self.facial_similarity_photo:
80
+ _dict['facial_similarity_photo'] = self.facial_similarity_photo.to_dict()
81
+ # override the default output from pydantic by calling `to_dict()` of facial_similarity_photo_fully_auto
82
+ if self.facial_similarity_photo_fully_auto:
83
+ _dict['facial_similarity_photo_fully_auto'] = self.facial_similarity_photo_fully_auto.to_dict()
84
+ # override the default output from pydantic by calling `to_dict()` of facial_similarity_video
85
+ if self.facial_similarity_video:
86
+ _dict['facial_similarity_video'] = self.facial_similarity_video.to_dict()
87
+ # override the default output from pydantic by calling `to_dict()` of facial_similarity_motion
88
+ if self.facial_similarity_motion:
89
+ _dict['facial_similarity_motion'] = self.facial_similarity_motion.to_dict()
90
+ # puts key-value pairs in additional_properties in the top level
91
+ if self.additional_properties is not None:
92
+ for _key, _value in self.additional_properties.items():
93
+ _dict[_key] = _value
94
+
95
+ return _dict
96
+
97
+ @classmethod
98
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
99
+ """Create an instance of ReportConfiguration from a dict"""
100
+ if obj is None:
101
+ return None
102
+
103
+ if not isinstance(obj, dict):
104
+ return cls.model_validate(obj)
105
+
106
+ _obj = cls.model_validate({
107
+ "facial_similarity_photo": ReportConfigurationFacialSimilarity.from_dict(obj["facial_similarity_photo"]) if obj.get("facial_similarity_photo") is not None else None,
108
+ "facial_similarity_photo_fully_auto": ReportConfigurationFacialSimilarity.from_dict(obj["facial_similarity_photo_fully_auto"]) if obj.get("facial_similarity_photo_fully_auto") is not None else None,
109
+ "facial_similarity_video": ReportConfigurationFacialSimilarity.from_dict(obj["facial_similarity_video"]) if obj.get("facial_similarity_video") is not None else None,
110
+ "facial_similarity_motion": ReportConfigurationFacialSimilarity.from_dict(obj["facial_similarity_motion"]) if obj.get("facial_similarity_motion") is not None else None
111
+ })
112
+ # store additional fields in additional_properties
113
+ for _key in obj.keys():
114
+ if _key not in cls.__properties:
115
+ _obj.additional_properties[_key] = obj.get(_key)
116
+
117
+ return _obj
118
+
119
+
@@ -0,0 +1,110 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Onfido API v3.6
5
+
6
+ The Onfido API (v3.6)
7
+
8
+ The version of the OpenAPI document: v3.6
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class ReportConfigurationFacialSimilarity(BaseModel):
26
+ """
27
+ ReportConfigurationFacialSimilarity
28
+ """ # noqa: E501
29
+ use_case: Optional[StrictStr] = Field(default=None, description="You should set it to \"reverification\" on a post-onboarding scenario (e.g. ongoing authentication). ")
30
+ additional_properties: Dict[str, Any] = {}
31
+ __properties: ClassVar[List[str]] = ["use_case"]
32
+
33
+ @field_validator('use_case')
34
+ def use_case_validate_enum(cls, value):
35
+ """Validates the enum"""
36
+ if value is None:
37
+ return value
38
+
39
+ if value not in set(['onboarding', 'reverification', 'unknown_default_open_api']):
40
+ raise ValueError("must be one of enum values ('onboarding', 'reverification', 'unknown_default_open_api')")
41
+ return value
42
+
43
+ model_config = ConfigDict(
44
+ populate_by_name=True,
45
+ validate_assignment=True,
46
+ protected_namespaces=(),
47
+ )
48
+
49
+
50
+ def to_str(self) -> str:
51
+ """Returns the string representation of the model using alias"""
52
+ return pprint.pformat(self.model_dump(by_alias=True))
53
+
54
+ def to_json(self) -> str:
55
+ """Returns the JSON representation of the model using alias"""
56
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
57
+ return json.dumps(self.to_dict())
58
+
59
+ @classmethod
60
+ def from_json(cls, json_str: str) -> Optional[Self]:
61
+ """Create an instance of ReportConfigurationFacialSimilarity from a JSON string"""
62
+ return cls.from_dict(json.loads(json_str))
63
+
64
+ def to_dict(self) -> Dict[str, Any]:
65
+ """Return the dictionary representation of the model using alias.
66
+
67
+ This has the following differences from calling pydantic's
68
+ `self.model_dump(by_alias=True)`:
69
+
70
+ * `None` is only added to the output dict for nullable fields that
71
+ were set at model initialization. Other fields with value `None`
72
+ are ignored.
73
+ * Fields in `self.additional_properties` are added to the output dict.
74
+ """
75
+ excluded_fields: Set[str] = set([
76
+ "additional_properties",
77
+ ])
78
+
79
+ _dict = self.model_dump(
80
+ by_alias=True,
81
+ exclude=excluded_fields,
82
+ exclude_none=True,
83
+ )
84
+ # puts key-value pairs in additional_properties in the top level
85
+ if self.additional_properties is not None:
86
+ for _key, _value in self.additional_properties.items():
87
+ _dict[_key] = _value
88
+
89
+ return _dict
90
+
91
+ @classmethod
92
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
93
+ """Create an instance of ReportConfigurationFacialSimilarity from a dict"""
94
+ if obj is None:
95
+ return None
96
+
97
+ if not isinstance(obj, dict):
98
+ return cls.model_validate(obj)
99
+
100
+ _obj = cls.model_validate({
101
+ "use_case": obj.get("use_case")
102
+ })
103
+ # store additional fields in additional_properties
104
+ for _key in obj.keys():
105
+ if _key not in cls.__properties:
106
+ _obj.additional_properties[_key] = obj.get(_key)
107
+
108
+ return _obj
109
+
110
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: onfido-python
3
- Version: 5.1.0
3
+ Version: 5.3.0
4
4
  Summary: Python library for the Onfido API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,14 +1,14 @@
1
- onfido/__init__.py,sha256=RGMTWSKdU0a6Jbxhf7mjuUYfTDymzAj7E6euURKwl9I,28846
2
- onfido/api_client.py,sha256=2dUUKSyp8A9chRaEIJOQMKJxotSmYK9PZzIak9l15d8,27336
1
+ onfido/__init__.py,sha256=EV7NsMcWGkmeXyLZb6z3iunxE5NsXWREDWOhjmy1694,29014
2
+ onfido/api_client.py,sha256=gPx5NpvHZDfoLeTIuAn7NfxnY6ZiTI2iLbGRZLi0j3A,27336
3
3
  onfido/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- onfido/configuration.py,sha256=ieBRtciwq2kOv9FZzTA9BkErOTQ5mfnaiWvPRFAXhVs,17499
4
+ onfido/configuration.py,sha256=XJI4ykYuGZkUesrRffhkkdG5rwcozC21ge2CJi1VjW8,17499
5
5
  onfido/exceptions.py,sha256=WeiPD-xpPmBqoLZK859mtLTO5bM8aIsj_oSrkr4bUR4,6393
6
6
  onfido/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  onfido/rest.py,sha256=kI5k8RQ6_BemD6Zx99dJDmr7zwA1mSrHLlba2WwwoMM,9419
8
8
  onfido/webhook_event_verifier.py,sha256=RPoASdqspjgBn9Q_U4dRzOMuMVDYpXSaXluB_zydSIk,891
9
9
  onfido/api/__init__.py,sha256=hqeJm_GD67zukfFQ-H5PPPxYgZZ0DKOMPGTNRAjc3gw,94
10
10
  onfido/api/default_api.py,sha256=Kuo7DV2b_syxWEv3o99NLotLjqupATmKL8P8ZYorTjY,728215
11
- onfido/models/__init__.py,sha256=mvIdcOMTDxlyyk61hz0vjs2g5HgafRAo5lBctzwVxg8,28194
11
+ onfido/models/__init__.py,sha256=QgGBqOnwutfMAc7p9MGkaNTly2TbLCczdqIVkk7EXxo,28362
12
12
  onfido/models/address.py,sha256=47oVzKVhn6Qxd24HMIuAQmVKgHPyfOnlFmBnthi2wOE,6812
13
13
  onfido/models/address_builder.py,sha256=SjuOn2_T7Yic2l7qhaxd-euaijx85BziRkunp5j292M,6840
14
14
  onfido/models/address_shared.py,sha256=WSQNw_W-V63Jgsh1Jf6KYWb4qm-eOW1URx_8r0LBUMk,6836
@@ -26,8 +26,8 @@ onfido/models/applicant_update.py,sha256=aelyT_ryth0YBwqnHArJRT7VPTqKS4K7nqgvjNp
26
26
  onfido/models/applicant_updater.py,sha256=0sIqfLAc-Jlb6mlBgHgiPktbs-frH4hQTAjRNcRXCqk,6730
27
27
  onfido/models/applicants_list.py,sha256=8-PFHgc4lxMauoiNhGzqb3k7oAgKxP0vt9pnQfPsgwI,3489
28
28
  onfido/models/check.py,sha256=icUrgCpMW7-_b1k-3954mSm4kobZ4BZ5q_ha5k9Rtfs,6353
29
- onfido/models/check_builder.py,sha256=gbqjJic76g_43XSZJSHA9X01zU4FlnyfXr6fbCmbxP8,6629
30
- onfido/models/check_request.py,sha256=wmQIDTn9Oh1eANFRftMnvgvrjAn-nNqvpUAYFhwuf8M,5613
29
+ onfido/models/check_builder.py,sha256=hj8IPxkdVexJ3lwCxfMelwYsS_C88RQugst8Up6wkSU,7153
30
+ onfido/models/check_request.py,sha256=mtdQ_coWt1qqG0O9i2U8fDdIlEGKP56lWpUGhXd4Tf8,6137
31
31
  onfido/models/check_response.py,sha256=RiLJMHF1dXWzklEQ-QmD7u5AA707ciezoLydnt2Bouo,5038
32
32
  onfido/models/check_shared.py,sha256=slk77DorgZadhUoVlad3c-8yS8uPU5OCHJu7yL_KQCQ,4237
33
33
  onfido/models/check_status.py,sha256=R6mqk1tmXuiWsffSIKAoxbBMyPDPnMAxY5gqZ5wd2r4,906
@@ -101,7 +101,7 @@ onfido/models/document_video_report.py,sha256=Tn4FmpTstClrDbX2WJWjBi46Bq3asDMSZO
101
101
  onfido/models/document_video_with_address_information_report.py,sha256=_lY0TXi9XbjLVqzIYBqc9lxP6GSn4MMYpK0iBpSrkyQ,5895
102
102
  onfido/models/document_with_address_information_report.py,sha256=zGEpWmcmzURrdDJFWhdJfVB_WdOpaTftdd_00dt7E30,5875
103
103
  onfido/models/document_with_driver_verification_report.py,sha256=h7Oi6QXBtksCQjw40VebLNBwDK0ZtibAje-b2VCE89c,6013
104
- onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=qmQMfYGj3-jLwwNBK4OduzWy6rfucjOysmgf0fs5Uf0,16261
104
+ onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=JNqSzrlsTtGSVUd8cg5n57gbj2YLJnnOfLVPBe7c_Ik,16547
105
105
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_passenger_vehicle.py,sha256=xI7noUuOz8MIrJ7iErenQgww2EmgTukpYehLBcC1zZI,3792
106
106
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_vehicle_class_details_inner.py,sha256=7IYp8uXyMjA2WKyEDkQw_3_ZixPVosy3x7XcXSksXVQ,3866
107
107
  onfido/models/document_with_driving_licence_information_report.py,sha256=ZNBwUXWK41K6OMSvaGHZVLZoVVBqRickt7MpbSxjqKA,5903
@@ -220,6 +220,8 @@ onfido/models/proof_of_address_report.py,sha256=CNaXwG5vpkpQKAxmqPzUKokqj0aYHLee
220
220
  onfido/models/repeat_attempts_list.py,sha256=o525XbVZGuh51XkpaEcj9oZcm0tH1ARVaDQmc8Tg6ck,5115
221
221
  onfido/models/repeat_attempts_list_repeat_attempts_inner.py,sha256=7ws6yRbOkjoYnDG79ZvlBhBFqFFS6vz1DHw8Zfb6J68,5501
222
222
  onfido/models/report.py,sha256=vdjrro3KskRp8vfILJjUZX_pQMVGswXPTdac296ptwk,33635
223
+ onfido/models/report_configuration.py,sha256=I7LCGAtjzgLYpXcNZK9vmQER-CkM4nDUpE1wkTIGAXs,5325
224
+ onfido/models/report_configuration_facial_similarity.py,sha256=vgw0xjOxDEp_4WWK8taHc_8tQPBLufdkqFMBjenhcEU,3667
223
225
  onfido/models/report_document.py,sha256=f0C7yaCS2dF0y0Wv0tmL_UpaleEmE5ycJmpcHmpxdBs,3043
224
226
  onfido/models/report_name.py,sha256=2RnO0-DgwRXiRJG-1_SYJXk9tYtmTKtkeogeNZ6amls,1797
225
227
  onfido/models/report_result.py,sha256=Sc7o4kAmyMQrNKcd1R9LXdlkeJu_IgcaPTZ8x09GTw4,789
@@ -302,8 +304,8 @@ onfido/models/workflow_run_request.py,sha256=IGCpkcvqn6kJ2L2nZeuBHNeANqcSUfvx0Ig
302
304
  onfido/models/workflow_run_response.py,sha256=Ze469zDUWxZMxqIxas6Sjts3EB21z7PhZTfuWgs0Thw,5080
303
305
  onfido/models/workflow_run_shared.py,sha256=WP9qLkf79iaJTeK-QxkwzB2MvR4atT3LdZZRmZopPp4,4857
304
306
  onfido/models/workflow_run_status.py,sha256=JCHhcFSLM3aiW-fOve51psGJ0_RS-PI--NnvVNSG3fI,942
305
- onfido_python-5.1.0.dist-info/licenses/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
306
- onfido_python-5.1.0.dist-info/METADATA,sha256=DpwT6dz8L1dmdMnwApfyfwpnJ2qXq3ksKnf4XwNdPak,676
307
- onfido_python-5.1.0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
308
- onfido_python-5.1.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
309
- onfido_python-5.1.0.dist-info/RECORD,,
307
+ onfido_python-5.3.0.dist-info/licenses/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
308
+ onfido_python-5.3.0.dist-info/METADATA,sha256=Gk1nWllWFlUDtKNpUPw9OObu3Ya63yklDfbQ4WKC2HY,676
309
+ onfido_python-5.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
310
+ onfido_python-5.3.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
311
+ onfido_python-5.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5