onfido-python 4.5.0__py3-none-any.whl → 5.0.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.
Files changed (71) hide show
  1. onfido/__init__.py +2 -1
  2. onfido/api/default_api.py +279 -0
  3. onfido/api_client.py +2 -2
  4. onfido/configuration.py +151 -39
  5. onfido/exceptions.py +17 -0
  6. onfido/models/__init__.py +1 -0
  7. onfido/models/applicant_consent_name.py +1 -0
  8. onfido/models/check.py +2 -2
  9. onfido/models/check_response.py +2 -2
  10. onfido/models/check_status.py +1 -0
  11. onfido/models/country_codes.py +1 -0
  12. onfido/models/device_intelligence_breakdown_properties_device.py +10 -10
  13. onfido/models/device_intelligence_report.py +1 -11
  14. onfido/models/document.py +2 -12
  15. onfido/models/document_properties.py +6 -6
  16. onfido/models/document_report.py +3 -3
  17. onfido/models/document_report_shared.py +108 -0
  18. onfido/models/document_shared.py +2 -12
  19. onfido/models/document_types.py +1 -0
  20. onfido/models/document_video_report.py +3 -3
  21. onfido/models/document_video_with_address_information_report.py +3 -3
  22. onfido/models/document_with_address_information_report.py +3 -3
  23. onfido/models/document_with_driver_verification_report.py +3 -3
  24. onfido/models/document_with_driver_verification_report_all_of_properties.py +6 -6
  25. onfido/models/document_with_driving_licence_information_report.py +3 -3
  26. onfido/models/extraction_document_classification.py +2 -2
  27. onfido/models/extraction_extracted_data.py +2 -2
  28. onfido/models/facial_similarity_motion_report.py +3 -3
  29. onfido/models/facial_similarity_photo_fully_auto_report.py +3 -3
  30. onfido/models/facial_similarity_photo_report.py +3 -3
  31. onfido/models/facial_similarity_report_shared.py +11 -1
  32. onfido/models/facial_similarity_video_report.py +3 -3
  33. onfido/models/id_number.py +2 -2
  34. onfido/models/identity_enhanced_report.py +1 -11
  35. onfido/models/india_pan_report.py +1 -11
  36. onfido/models/known_faces_report.py +1 -11
  37. onfido/models/proof_of_address_properties.py +2 -2
  38. onfido/models/proof_of_address_report.py +1 -11
  39. onfido/models/repeat_attempts_list_repeat_attempts_inner.py +6 -6
  40. onfido/models/report_name.py +1 -0
  41. onfido/models/report_result.py +1 -0
  42. onfido/models/report_shared.py +1 -11
  43. onfido/models/report_status.py +1 -0
  44. onfido/models/report_sub_result.py +1 -0
  45. onfido/models/results_feedback.py +2 -2
  46. onfido/models/us_driving_licence_builder.py +6 -6
  47. onfido/models/us_driving_licence_report.py +1 -11
  48. onfido/models/us_driving_licence_shared.py +6 -6
  49. onfido/models/watchlist_aml_properties.py +2 -2
  50. onfido/models/watchlist_aml_report.py +1 -11
  51. onfido/models/watchlist_enhanced_report.py +1 -11
  52. onfido/models/watchlist_monitor.py +2 -2
  53. onfido/models/watchlist_monitor_builder.py +2 -2
  54. onfido/models/watchlist_monitor_shared.py +2 -2
  55. onfido/models/watchlist_peps_only_report.py +1 -11
  56. onfido/models/watchlist_sanctions_only_report.py +1 -11
  57. onfido/models/watchlist_standard_properties.py +2 -2
  58. onfido/models/watchlist_standard_report.py +1 -11
  59. onfido/models/webhook_event_object_status.py +1 -0
  60. onfido/models/webhook_event_payload_object.py +1 -1
  61. onfido/models/webhook_event_payload_resource.py +4 -2
  62. onfido/models/webhook_event_resource_type.py +1 -0
  63. onfido/models/webhook_event_type.py +1 -1
  64. onfido/models/workflow_run_link.py +2 -2
  65. onfido/models/workflow_run_status.py +1 -0
  66. onfido/webhook_event_verifier.py +3 -2
  67. {onfido_python-4.5.0.dist-info → onfido_python-5.0.0.dist-info}/METADATA +10 -2
  68. {onfido_python-4.5.0.dist-info → onfido_python-5.0.0.dist-info}/RECORD +71 -70
  69. {onfido_python-4.5.0.dist-info → onfido_python-5.0.0.dist-info}/WHEEL +1 -1
  70. {onfido_python-4.5.0.dist-info → onfido_python-5.0.0.dist-info}/LICENSE +0 -0
  71. {onfido_python-4.5.0.dist-info → onfido_python-5.0.0.dist-info}/top_level.txt +0 -0
@@ -45,6 +45,7 @@ class WebhookEventObjectStatus(str, Enum):
45
45
  AWAITING_APPLICANT = 'awaiting_applicant'
46
46
  PAUSED = 'paused'
47
47
  REOPENED = 'reopened'
48
+ UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
48
49
 
49
50
  @classmethod
50
51
  def from_json(cls, json_str: str) -> Self:
@@ -32,7 +32,7 @@ class WebhookEventPayloadObject(BaseModel):
32
32
  status: Optional[WebhookEventObjectStatus] = None
33
33
  started_at_iso8601: Optional[datetime] = Field(default=None, description="The date and time when the operation was started, if available.")
34
34
  completed_at_iso8601: Optional[datetime] = Field(default=None, description="The date and time when the operation was completed, if available.")
35
- href: StrictStr = Field(description="The uri of the resource.")
35
+ href: Optional[StrictStr] = Field(default=None, description="The uri of the resource.")
36
36
  additional_properties: Dict[str, Any] = {}
37
37
  __properties: ClassVar[List[str]] = ["id", "status", "started_at_iso8601", "completed_at_iso8601", "href"]
38
38
 
@@ -45,8 +45,9 @@ class WebhookEventPayloadResource(BaseModel):
45
45
  reasons: Optional[List[StrictStr]] = Field(default=None, description="The reasons the Workflow Run outcome was reached. Configurable when creating the Workflow Version.")
46
46
  link: Optional[WorkflowRunLink] = Field(default=None, description="Object for the configuration of the Workflow Run link.")
47
47
  error: Optional[WorkflowRunError] = Field(default=None, description="Error object that details why a Workflow Run is in Error status.")
48
+ customer_user_id: Optional[Annotated[str, Field(strict=True, max_length=256)]] = Field(default=None, description="Customer-provided user identifier.")
48
49
  additional_properties: Dict[str, Any] = {}
49
- __properties: ClassVar[List[str]] = ["id", "applicant_id", "created_at", "updated_at", "dashboard_url", "workflow_id", "workflow_run_id", "workflow_version_id", "task_def_id", "task_def_version", "input", "output", "reasons", "link", "error"]
50
+ __properties: ClassVar[List[str]] = ["id", "applicant_id", "created_at", "updated_at", "dashboard_url", "workflow_id", "workflow_run_id", "workflow_version_id", "task_def_id", "task_def_version", "input", "output", "reasons", "link", "error", "customer_user_id"]
50
51
 
51
52
  @field_validator('task_def_id')
52
53
  def task_def_id_validate_regular_expression(cls, value):
@@ -146,7 +147,8 @@ class WebhookEventPayloadResource(BaseModel):
146
147
  "output": obj.get("output"),
147
148
  "reasons": obj.get("reasons"),
148
149
  "link": WorkflowRunLink.from_dict(obj["link"]) if obj.get("link") is not None else None,
149
- "error": WorkflowRunError.from_dict(obj["error"]) if obj.get("error") is not None else None
150
+ "error": WorkflowRunError.from_dict(obj["error"]) if obj.get("error") is not None else None,
151
+ "customer_user_id": obj.get("customer_user_id")
150
152
  })
151
153
  # store additional fields in additional_properties
152
154
  for _key in obj.keys():
@@ -34,6 +34,7 @@ class WebhookEventResourceType(str, Enum):
34
34
  WATCHLIST_MONITOR = 'watchlist_monitor'
35
35
  WORKFLOW_TIMELINE_FILE = 'workflow_timeline_file'
36
36
  WORKFLOW_RUN_EVIDENCE_FOLDER = 'workflow_run_evidence_folder'
37
+ UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
37
38
 
38
39
  @classmethod
39
40
  def from_json(cls, json_str: str) -> Self:
@@ -42,8 +42,8 @@ class WebhookEventType(str, Enum):
42
42
  REPORT_DOT_AWAITING_APPROVAL = 'report.awaiting_approval'
43
43
  REPORT_DOT_COMPLETED = 'report.completed'
44
44
  WORKFLOW_TIMELINE_FILE_DOT_CREATED = 'workflow_timeline_file.created'
45
- WORKFLOW_SIGNED_EVIDENCE_FILE_DOT_CREATED = 'workflow_signed_evidence_file.created'
46
45
  WORKFLOW_RUN_EVIDENCE_FOLDER_DOT_CREATED = 'workflow_run_evidence_folder.created'
46
+ UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
47
47
 
48
48
  @classmethod
49
49
  def from_json(cls, json_str: str) -> Self:
@@ -41,8 +41,8 @@ class WorkflowRunLink(BaseModel):
41
41
  if value is None:
42
42
  return value
43
43
 
44
- if value not in set(['en_US', 'de_DE', 'es_ES', 'fr_FR', 'it_IT', 'pt_PT', 'nl_NL']):
45
- raise ValueError("must be one of enum values ('en_US', 'de_DE', 'es_ES', 'fr_FR', 'it_IT', 'pt_PT', 'nl_NL')")
44
+ if value not in set(['en_US', 'de_DE', 'es_ES', 'fr_FR', 'it_IT', 'pt_PT', 'nl_NL', 'unknown_default_open_api']):
45
+ raise ValueError("must be one of enum values ('en_US', 'de_DE', 'es_ES', 'fr_FR', 'it_IT', 'pt_PT', 'nl_NL', 'unknown_default_open_api')")
46
46
  return value
47
47
 
48
48
  model_config = ConfigDict(
@@ -34,6 +34,7 @@ class WorkflowRunStatus(str, Enum):
34
34
  REVIEW = 'review'
35
35
  ABANDONED = 'abandoned'
36
36
  ERROR = 'error'
37
+ UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
37
38
 
38
39
  @classmethod
39
40
  def from_json(cls, json_str: str) -> Self:
@@ -1,5 +1,6 @@
1
1
  import hmac
2
2
  import hashlib
3
+ from typing import Optional
3
4
 
4
5
  from .models import WebhookEvent
5
6
 
@@ -9,10 +10,10 @@ class OnfidoInvalidSignatureError(Exception):
9
10
 
10
11
 
11
12
  class WebhookEventVerifier:
12
- def __init__(self, webhook_token):
13
+ def __init__(self, webhook_token: str) -> None:
13
14
  self.webhook_token = webhook_token
14
15
 
15
- def read_payload(self, raw_event, signature):
16
+ def read_payload(self, raw_event: str, signature: str) -> Optional[WebhookEvent]:
16
17
  # Compute the the actual HMAC signature from the raw request body.
17
18
  event_signature = hmac.new(
18
19
  key=self.webhook_token.encode("utf-8"),
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: onfido-python
3
- Version: 4.5.0
3
+ Version: 5.0.0
4
4
  Summary: Python library for the Onfido API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -13,6 +13,14 @@ Requires-Dist: urllib3<3.0.0,>=1.25.3
13
13
  Requires-Dist: python-dateutil>=2.8.2
14
14
  Requires-Dist: pydantic>=2
15
15
  Requires-Dist: typing-extensions>=4.7.1
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: description
19
+ Dynamic: description-content-type
20
+ Dynamic: keywords
21
+ Dynamic: license
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
16
24
 
17
25
  The Onfido API (v3.6)
18
26
 
@@ -1,14 +1,14 @@
1
- onfido/__init__.py,sha256=IISNoTtQUF9mrKHx_fC18_WzRkkWRU4CI1-L9SGOMIQ,28658
2
- onfido/api_client.py,sha256=nwzVvaboLWCQQI5cC5YSUzmyWF6gXFOtM9LYpSaS9fY,27329
1
+ onfido/__init__.py,sha256=056tEO3p6M1NHMuHRFt8egOymMyalj0_yLWc4-5lz_E,28728
2
+ onfido/api_client.py,sha256=TAD4uoiWtXk6GHSqKRs0utym8N92OOrZEXMaaFzfMJM,27336
3
3
  onfido/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- onfido/configuration.py,sha256=g3FuUPxBcVl3F2K2z05MR7lEDye935sS7KWfgh-t0BU,15012
5
- onfido/exceptions.py,sha256=5W4DJIPVwIzljxoedh5czPXOTBaq6CTTVD92h5ZyN88,5894
4
+ onfido/configuration.py,sha256=nGQzsUVjvHdOObHNVqEHgVBHEjVoUv-GbwuN89TFZPE,17499
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
- onfido/webhook_event_verifier.py,sha256=3BSbY5D8NTXDbxCX0POuyu5a09dEeWgmikrTe_pttkI,814
8
+ onfido/webhook_event_verifier.py,sha256=RPoASdqspjgBn9Q_U4dRzOMuMVDYpXSaXluB_zydSIk,891
9
9
  onfido/api/__init__.py,sha256=hqeJm_GD67zukfFQ-H5PPPxYgZZ0DKOMPGTNRAjc3gw,94
10
- onfido/api/default_api.py,sha256=1wPurpTPujKLD24OgqZqZ_pTOz1a_PpQhsQqcyKcr5w,707122
11
- onfido/models/__init__.py,sha256=Zzg8rYhIMdXSQf5d5C2G15jnbnHWsMHwo0KCp2R5NqU,28006
10
+ onfido/api/default_api.py,sha256=yJ7meWxCOsjHqHvtTzNjPq1BWe6Ohn-MIBBj8Xt2tYA,718164
11
+ onfido/models/__init__.py,sha256=tfLRPpOt3cP_sinrG_ZYXBg-KQSFV3qbLy7sdmTEQyE,28076
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
@@ -16,7 +16,7 @@ onfido/models/addresses_list.py,sha256=jRGJls3Q6Kp356ngIZBRLnMv5hi9iyvWbt2Ss0BkZ
16
16
  onfido/models/applicant.py,sha256=vbNaqoa2SJf1jVzmmDwIFLeIPkX4UY01EujKbZ4q-h4,6721
17
17
  onfido/models/applicant_builder.py,sha256=TxQXfh-EVPNxmiE1GhVY5iccz9g2iDtcFjL2SiekVKY,6578
18
18
  onfido/models/applicant_consent_builder.py,sha256=56H283tjE430WgY7p_u5_X0ZH96v1j5uPyX3kjeAQRM,3185
19
- onfido/models/applicant_consent_name.py,sha256=qjH0eC_bO36V97mA4dt4oyjW7De3Di2bah2NVMW8pWQ,803
19
+ onfido/models/applicant_consent_name.py,sha256=o8eRcl-XgrJo9Q4EZtuBIUVFG8PKY4eiJTpS1BSCCkE,861
20
20
  onfido/models/applicant_create.py,sha256=whgIDGEObzjoPEbjq4UztQTgUAxzm5AP0YCtodIoqAs,3924
21
21
  onfido/models/applicant_request.py,sha256=VDLf6vWiARfH-M3q5xEsGxBVktUOH5bHP4at57JnbEQ,4407
22
22
  onfido/models/applicant_response.py,sha256=HprhcoRbZdxUUG61uuvriOlENbco2Oil08Wpr6IVmaY,5613
@@ -24,26 +24,26 @@ onfido/models/applicant_shared.py,sha256=zHbXBjTXfrx5vOHsXOmTN9mWu7SjAT33gNp3fbd
24
24
  onfido/models/applicant_update.py,sha256=aelyT_ryth0YBwqnHArJRT7VPTqKS4K7nqgvjNpcVCY,4086
25
25
  onfido/models/applicant_updater.py,sha256=0sIqfLAc-Jlb6mlBgHgiPktbs-frH4hQTAjRNcRXCqk,6730
26
26
  onfido/models/applicants_list.py,sha256=8-PFHgc4lxMauoiNhGzqb3k7oAgKxP0vt9pnQfPsgwI,3489
27
- onfido/models/check.py,sha256=QmDBvDmtyeOYCBUgtD5ya2HC6l8WrmlUADlvn1iFIJI,6297
27
+ onfido/models/check.py,sha256=icUrgCpMW7-_b1k-3954mSm4kobZ4BZ5q_ha5k9Rtfs,6353
28
28
  onfido/models/check_builder.py,sha256=gbqjJic76g_43XSZJSHA9X01zU4FlnyfXr6fbCmbxP8,6629
29
29
  onfido/models/check_request.py,sha256=wmQIDTn9Oh1eANFRftMnvgvrjAn-nNqvpUAYFhwuf8M,5613
30
- onfido/models/check_response.py,sha256=TquWkQ0i9of9aXRdTNLLslArUSkkIts1lGMfkif1cHY,4982
30
+ onfido/models/check_response.py,sha256=RiLJMHF1dXWzklEQ-QmD7u5AA707ciezoLydnt2Bouo,5038
31
31
  onfido/models/check_shared.py,sha256=slk77DorgZadhUoVlad3c-8yS8uPU5OCHJu7yL_KQCQ,4237
32
- onfido/models/check_status.py,sha256=wZtRNBoY84i52Am5jYmwHYZEaA05_YQvjYDGucewiHs,848
32
+ onfido/models/check_status.py,sha256=R6mqk1tmXuiWsffSIKAoxbBMyPDPnMAxY5gqZ5wd2r4,906
33
33
  onfido/models/checks_list.py,sha256=_GDkN9e73HT0m2g3uGS_7i62_d6uDrEXqpryEARynJ8,3409
34
34
  onfido/models/complete_task_builder.py,sha256=ei2Xxhlnm5ZRuhz27Ptx_eLx7BzSDYb798w67Jf1MxI,3314
35
35
  onfido/models/complete_task_data_builder.py,sha256=jqn15cH3do9uIo1jKIRqgzq_fYgMsgssOgUxG0l4X9Q,5372
36
- onfido/models/country_codes.py,sha256=ceTcktMO3bSZdTh4OGKVaf7n8SOTjKYCV_KjUEzSGr0,4627
36
+ onfido/models/country_codes.py,sha256=i9dgxc_DZkV2h2xWe5P09rAkRPlJrBKlYPzmXjFq6co,4685
37
37
  onfido/models/device_intelligence_breakdown.py,sha256=ge4lLA_3rwzgJa7FyTPepuHlXMIvVZPYhzaNC9Zp5jQ,3978
38
38
  onfido/models/device_intelligence_breakdown_breakdown.py,sha256=CXYtzMzTEIA1NXy4Gu60TQWSbZXHPKYr8U-qA4XfOnw,3504
39
39
  onfido/models/device_intelligence_breakdown_breakdown_device.py,sha256=qpgVFyE2KTnTHhp9lOWUiF--QFsiF15kL932AleeC-A,3653
40
40
  onfido/models/device_intelligence_breakdown_breakdown_device_breakdown.py,sha256=Cs5BfPLtGoUIJhjGI6hK8HlZM_fvgJ2GXwFmyzgIBjg,4767
41
41
  onfido/models/device_intelligence_breakdown_properties.py,sha256=K44aalsUKtaTEvyKnQRDjnxbi1vGWkZgh7YF3PifhqQ,4519
42
- onfido/models/device_intelligence_breakdown_properties_device.py,sha256=SCTt2Ytfm5tExf4_ZV2sxgWqQEZw72vKx0TbL2eD74k,8496
42
+ onfido/models/device_intelligence_breakdown_properties_device.py,sha256=e8AHJTGbeXgr5XQ5fYalO0e0zPiAGdo1wZpVc2eCqX4,8776
43
43
  onfido/models/device_intelligence_breakdown_properties_geolocation.py,sha256=78wKBOHlNHAc96ZWMPa6hQQPbYKX6ospdNYgyL56-qM,3618
44
44
  onfido/models/device_intelligence_breakdown_properties_ip.py,sha256=Wtm2BPyovvwlRCSk51OhpUAJHp1yZvtb2RktesPXPvg,3205
45
- onfido/models/device_intelligence_report.py,sha256=MSrCgFg_N0PMzpfl5JC94a3v-4raiOAR_hn6fmTOwD4,5498
46
- onfido/models/document.py,sha256=p9cb7DHeWAtVhnhLfFkBYVPULQ1pdsQnNoC7PkVxyrQ,5600
45
+ onfido/models/device_intelligence_report.py,sha256=ivYsI_S-mpB0LKLfuHK7teciqipgG3Lsg-p0frEyJyw,4734
46
+ onfido/models/document.py,sha256=e0pLWAn6cfIkwieNUiVAW66aGd4WGLXpoP8UIIGRhsY,5321
47
47
  onfido/models/document_breakdown.py,sha256=x7lFBT2V2jJvW0JZ6-U_Ca9vjjPOvtCVJP0i__tYc_Y,7813
48
48
  onfido/models/document_breakdown_age_validation.py,sha256=ioeCHhNEJB4DnY7cqv-oBa87g46mpnq6BBzBIiafXB8,3699
49
49
  onfido/models/document_breakdown_age_validation_breakdown.py,sha256=6idaiBhh_9xFguIEwVbgJqO5qldeNwiAhWJg0U2h3io,3692
@@ -82,7 +82,7 @@ onfido/models/document_breakdown_visual_authenticity_breakdown_template.py,sha25
82
82
  onfido/models/document_cdq_reasons.py,sha256=1m2qxLuIeC1HKVQim9TLt95l76FDi_rJi0uBYKtd03E,5214
83
83
  onfido/models/document_iq_reasons.py,sha256=OKiCuxShiJ4uBrALjsK_Z_z28fnLwPEYev5YV6cDOVc,5392
84
84
  onfido/models/document_odp_reasons.py,sha256=RQ6UAGnhkg7hfwOaEqAbuxdjIh2F1QyAhsoIpRsQfN0,3966
85
- onfido/models/document_properties.py,sha256=rDILr25GUV-7NWZ8hJ4oIoWjh9zNrQzh6Q4R2kvzPNE,12935
85
+ onfido/models/document_properties.py,sha256=NC_eI8cnozD_3vBGm9SFsach5HdRAldbbXRVqs5Mu3c,13103
86
86
  onfido/models/document_properties_address_lines.py,sha256=KBEQPfyCQNpoA_VjP6vKroWqnOa_sy-G_UnyiBox-jI,3606
87
87
  onfido/models/document_properties_barcode_inner.py,sha256=FVPy1Gc65ECQDY3cuF8J5jhuUNBceyua0ldUepaGZmA,5150
88
88
  onfido/models/document_properties_document_classification.py,sha256=YRa0qNQBNXCPnHJn9_N0lKaXzhVCC-xKPezBBaYR7mU,3400
@@ -90,18 +90,19 @@ onfido/models/document_properties_document_numbers_inner.py,sha256=xUZ4yR2OXisMr
90
90
  onfido/models/document_properties_driving_licence_information.py,sha256=ij5akKUnk_-TZxXeh0jun4IGQf6d4NhmSURHeidjxpA,3486
91
91
  onfido/models/document_properties_extracted_data.py,sha256=vW-B2osOZhlGdeanDlgBDLTcDWYLT6-q5SudaSaBuo8,5376
92
92
  onfido/models/document_properties_nfc.py,sha256=0ToFxpEA45NN6Oy9jpOzmLktJpWLAWhBREjehJds-1Y,4475
93
- onfido/models/document_report.py,sha256=D7KINowcs5CjitSn7K1GYXsDVQpvBBE2PcfjYM8MKQE,5847
93
+ onfido/models/document_report.py,sha256=3TBwNCLsnAso7Mv0rWryIGRRTEBuL2bR3Sdx80A-G-4,5787
94
+ onfido/models/document_report_shared.py,sha256=7GwkkfW1rm93V4XuGsq5M5jWO8sThF_A3368_YR8IZ0,3658
94
95
  onfido/models/document_response.py,sha256=feTxv5jfkyXhoJaaE4fNlWPWrXqdjRGOYnqqUoMzuMg,3956
95
- onfido/models/document_shared.py,sha256=LuIYxmnF1T84GCYAxsiFw23_DxXl7T4g37zRt674wek,4617
96
- onfido/models/document_types.py,sha256=X-9JbFN6coPJ2la6ulpi3uWhekpQd9jP8mXCqKuEzDI,4354
97
- onfido/models/document_video_report.py,sha256=O_h7vRxsVW0ud76bI6qi4sMZ2edQv5bmd8TJ-3sd3XI,5867
98
- onfido/models/document_video_with_address_information_report.py,sha256=9fwt5aYlvEviI0Nc98qMPicSLzHfV39k8T_f9qcxEZ8,5955
99
- onfido/models/document_with_address_information_report.py,sha256=knVGNnCS_9jGCzPCZFWSsn156yWhYUpbQfLQZxRcfN8,5935
100
- onfido/models/document_with_driver_verification_report.py,sha256=xIYJ7bbrCsw7Nq9ak9uDwLhWaCYwVsR-Brp7KGyLiuE,6073
101
- onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=2bgLej5PWYk8JQOkCUewIRA6ckMqfjasBtVXwiaseuo,15825
96
+ onfido/models/document_shared.py,sha256=N4WUl3AUgcXPZlRNX5kZl4De4FlqktqOggr3erXDVcM,4338
97
+ onfido/models/document_types.py,sha256=h1i_XWecUXpCREeJ8bWUWRlOmlio0x6cN0T8-Xqo_0M,4412
98
+ onfido/models/document_video_report.py,sha256=Tn4FmpTstClrDbX2WJWjBi46Bq3asDMSZOl7SrLoQ2U,5807
99
+ onfido/models/document_video_with_address_information_report.py,sha256=_lY0TXi9XbjLVqzIYBqc9lxP6GSn4MMYpK0iBpSrkyQ,5895
100
+ onfido/models/document_with_address_information_report.py,sha256=zGEpWmcmzURrdDJFWhdJfVB_WdOpaTftdd_00dt7E30,5875
101
+ onfido/models/document_with_driver_verification_report.py,sha256=h7Oi6QXBtksCQjw40VebLNBwDK0ZtibAje-b2VCE89c,6013
102
+ onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=zJVCr0upQg4UbuqGBcGqdO3aqQiMK8oaaGGbf6DPb_c,15993
102
103
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_passenger_vehicle.py,sha256=xI7noUuOz8MIrJ7iErenQgww2EmgTukpYehLBcC1zZI,3792
103
104
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_vehicle_class_details_inner.py,sha256=7IYp8uXyMjA2WKyEDkQw_3_ZixPVosy3x7XcXSksXVQ,3866
104
- onfido/models/document_with_driving_licence_information_report.py,sha256=6V6EtWgSLW5OhXGqNM1J3YvhSyUs-i6_29c3p_3Tae8,5963
105
+ onfido/models/document_with_driving_licence_information_report.py,sha256=ZNBwUXWK41K6OMSvaGHZVLZoVVBqRickt7MpbSxjqKA,5903
105
106
  onfido/models/documents_list.py,sha256=MJ28B9LedXkA2St_3nLij-HqyZHPw6eojPmRHoz11ZQ,3469
106
107
  onfido/models/error.py,sha256=tlduNOTaRpaQoasXKnUTThBGTvj4Tik5Q1xAVYKhZZg,3260
107
108
  onfido/models/error1.py,sha256=2SYHDPFX4FT6o9V2P4ahpZRcSdTi6QzF44p0jRM11XA,3473
@@ -109,8 +110,8 @@ onfido/models/error_properties.py,sha256=Nrhw3heXQZKRKqN_TX0IO7CCT7XRsuE-mldWZTU
109
110
  onfido/models/error_properties1.py,sha256=Gqd5bU3YV3RSbgH8CquBq4xdd_nfqoElQVbGdcbrpFE,3118
110
111
  onfido/models/extract_request.py,sha256=ifRlGFy_t3uay565wr1I0Q7Z-HVlpKhVLoo5IjfNFJw,3115
111
112
  onfido/models/extraction.py,sha256=Ed-Q3MlsjUDmaOT0UcSVmH_F9q37gewuwl9Ys4GYINk,4204
112
- onfido/models/extraction_document_classification.py,sha256=cyD0fGqiTVWuR7ZDtjqD2Lq1O6lVCzSynVnYSey_OU0,4378
113
- onfido/models/extraction_extracted_data.py,sha256=mknNREdj9NgM8sCUS_Pw7nC_16ux-l8-eH7AgT4Pzug,8391
113
+ onfido/models/extraction_document_classification.py,sha256=_n2p0_jU7CbOFtzxRXYCN96xyzjgPzVQZXfFoSP28iQ,4434
114
+ onfido/models/extraction_extracted_data.py,sha256=1JnxwRl6bIfIRqLSuq82Cg2mNOOS8NKDG5N35Bt3xVg,8447
114
115
  onfido/models/facial_similarity_motion_breakdown.py,sha256=QY07PHJx5nxg6b2ay1dFZnXJvN0lKKkpxu7zG3vTWoc,4804
115
116
  onfido/models/facial_similarity_motion_breakdown_face_comparison.py,sha256=Zf6kqPNVMl9gEr365vWOoWwzHnEPAWfbEd1hnnlURE8,3749
116
117
  onfido/models/facial_similarity_motion_breakdown_image_integrity.py,sha256=Wvc3k3i_S2dMozxRTkoXgkvqIRma-z8SB9k20a36XOU,3782
@@ -121,7 +122,7 @@ onfido/models/facial_similarity_motion_breakdown_visual_authenticity.py,sha256=n
121
122
  onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown.py,sha256=b8PUGQweIBqcTmhRm-QZQF1WihQHKXQmJwZOURPhyGk,4556
122
123
  onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown_spoofing_detection.py,sha256=5iNNHe0VrkdX_WCiQeAiLKBwZEvWg6aJGOnkFhQyrjo,3981
123
124
  onfido/models/facial_similarity_motion_properties.py,sha256=NArgCwxmUcJzj3ShnztJD6EocBWVsSVVkfnicK-BIcM,3404
124
- onfido/models/facial_similarity_motion_report.py,sha256=rrkDItxxKysnKdZvNjBQhlDbX4cZiO7sa6d-Ss1YWYM,8926
125
+ onfido/models/facial_similarity_motion_report.py,sha256=Zs7pRFpy2p5GzLBJfmq5Em9dFaakFspv9AooNU6epK0,8866
125
126
  onfido/models/facial_similarity_photo_breakdown.py,sha256=sBCbOVjQNoz06f9-EE_HmtJLuNcch2wyEvu_8ajMD_A,4788
126
127
  onfido/models/facial_similarity_photo_breakdown_face_comparison.py,sha256=ZswMgUh-tXnUUX-symslySgj2MO0Kweh2xA0MVM0LSk,3742
127
128
  onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown.py,sha256=d94WHlgmmKmmjkCUe9juaudKXWTgiioUZEQpkZGeEIc,3692
@@ -140,11 +141,11 @@ onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity.py,sh
140
141
  onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown.py,sha256=5jonuB9aIXiq1M0vaUf8l2bizzDnfcb2AYNDIRjQKcc,4496
141
142
  onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown_source_integrity.py,sha256=J9r82MMGVB3pkyAsAVmWHzLrj9CDUpeXKh3E5FktnJ8,3749
142
143
  onfido/models/facial_similarity_photo_fully_auto_properties.py,sha256=RAbPf5W0xgFD6B3Qtfd6IvUnZkcXA3wQgpcQ6ifpuwU,3444
143
- onfido/models/facial_similarity_photo_fully_auto_report.py,sha256=W7jlnloT5rfjmqJ4Yc2-fOxsH3Rn6A0Ch6VLg7Oy0hQ,9026
144
+ onfido/models/facial_similarity_photo_fully_auto_report.py,sha256=9rPoBQ89OjprNoMOkWUe7jqX9uJjLNxxP_m9DFbmtNE,8966
144
145
  onfido/models/facial_similarity_photo_properties.py,sha256=LJN-rOA0PsOqW3ugUYEiTJ4gW0BIDtKG-Fa5ehN134Y,3408
145
- onfido/models/facial_similarity_photo_report.py,sha256=eMVLeYaTSI5nbvOMKn_LG37s57K_RbSdO5Q9-BVykMc,8914
146
+ onfido/models/facial_similarity_photo_report.py,sha256=C6A0hSlYr44SdOhW7Kh3naym4VtUOP205h-84FHaQxM,8854
146
147
  onfido/models/facial_similarity_report_media.py,sha256=tnMc7VS35Dtz_Kg5NR6-rPKqF2VQpfbhHVCRK-3tI4U,3102
147
- onfido/models/facial_similarity_report_shared.py,sha256=bgpZ04qI7WA3hBJ7rgF3VWZAbYyoPezeW918W4Qy4F4,5893
148
+ onfido/models/facial_similarity_report_shared.py,sha256=ARhdRhT4C6HfgO0XtdhUflZlyxKfG2ZBXA1T4lFFj50,6597
148
149
  onfido/models/facial_similarity_video_breakdown.py,sha256=qZ5f9NL8t2vQNOKQAbv6wiKkRHXzKuePo7qMnpwCjCY,4788
149
150
  onfido/models/facial_similarity_video_breakdown_face_comparison.py,sha256=_wQRLy0q2nAcGcQig6vQjlUbxL68tquZbNupRSMVDaQ,3742
150
151
  onfido/models/facial_similarity_video_breakdown_image_integrity.py,sha256=JE-aoxWX4xtplWaqW2zIuf8aCrNJtA7b-k6qPR0SqnA,3775
@@ -156,8 +157,8 @@ onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown.py
156
157
  onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_liveness_detected.py,sha256=Yux-_82hi3OJT7zDIXiKZ7dnR5cmBsT0IhQFYjFXHf0,3369
157
158
  onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_spoofing_detection.py,sha256=RRBNzE6u9YXQ8PmJxOa6kNdWineFm6EEg4qtPGTZcws,3974
158
159
  onfido/models/facial_similarity_video_properties.py,sha256=ICtG2ymOwHxDh0yLWeW5D8kvKBw8TJO752w3Vp9msBU,3400
159
- onfido/models/facial_similarity_video_report.py,sha256=3E9EtYOzfxpQ37PY6nhaj1A4pbC_dEkYuBTSu_m3fmw,8914
160
- onfido/models/id_number.py,sha256=iOfUgB49KpWxEf6HjEvvx3w2DHBGc-bXRYODzJQHA0Q,3913
160
+ onfido/models/facial_similarity_video_report.py,sha256=tk4TFUbUK9gFdNwOSiqHJBM_7AF_2Nr5e-Qpq_c35gA,8854
161
+ onfido/models/id_number.py,sha256=bEFBN4Ke0NFaDVdMoyWt-bsnX75zrF3qqxtYXgRwnnI,4007
161
162
  onfido/models/id_photo.py,sha256=MINVgfDRrOPPTZFyL-wYxQvmOHTXs9qKT3rbtMJksro,4085
162
163
  onfido/models/id_photo_response.py,sha256=MzNcewhNkp86SNn1JdTyy8yfhR-4m4tnWyIU2-3YA3s,4117
163
164
  onfido/models/id_photos_list.py,sha256=cng280Pm_0uVGfxHtJ1jGFDM4XXCRtsBJDxYnwbvw-8,3462
@@ -179,8 +180,8 @@ onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources.py,sha
179
180
  onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources_properties.py,sha256=Du9Y8Xf0A5lHgoniP3NX5v8s8zwK_7dQJ5zwlmoZ0jg,3288
180
181
  onfido/models/identity_enhanced_properties.py,sha256=oEymY65xe7GkyPOTwBXVzN4T42F9jlQXEFdyVnbWbVc,4191
181
182
  onfido/models/identity_enhanced_properties_matched_addresses_inner.py,sha256=-goAoZi5QDCKovx-Zd5vKPWSviuPSnTVQTnFutFZukQ,3435
182
- onfido/models/identity_enhanced_report.py,sha256=2jnUBqHtaEQEzNshR-53Ebdhx9d6DQ4rMXlcZKiureM,5945
183
- onfido/models/india_pan_report.py,sha256=frdCCDMh6DecQSU-SB2j4MAB15izvmIHz4TD3S5il60,5943
183
+ onfido/models/identity_enhanced_report.py,sha256=xcY0Y3pbZEbQfxey0BhsZ5oqqd0Q1DCGqsllLyVDU9k,5181
184
+ onfido/models/india_pan_report.py,sha256=_1FIEMd3wN3v8bALloe72-Pqrdav1-t5ekl_1F-mu78,5179
184
185
  onfido/models/india_pan_report_all_of_breakdown.py,sha256=mL26iWTEgOSGhb0J7-TIo7U9MhGPeNfh5gatwS_5C4Y,3442
185
186
  onfido/models/india_pan_report_all_of_breakdown_device.py,sha256=dxrcfnCBvo-XQV2cplSRv1j5hW03yYhBagHYp5c_CXw,3530
186
187
  onfido/models/india_pan_report_all_of_breakdown_device_breakdown.py,sha256=Mw9evkfaPYYoUuPJjn-4j2r8hJkQm1dLBgx1axgccWo,4031
@@ -192,7 +193,7 @@ onfido/models/known_faces_breakdown_image_integrity.py,sha256=LgJVLwlaICT1IpHpMD
192
193
  onfido/models/known_faces_breakdown_previously_seen_faces.py,sha256=RjAKoo2UT-jle7bZi_ERHKtwaC1J4Tk7gkF0GI8Q7_w,3251
193
194
  onfido/models/known_faces_properties.py,sha256=IbS5-zoiCo6IDW3HjodVNW3TS-M_qleenIzMdCbW6Qo,3730
194
195
  onfido/models/known_faces_properties_matches_inner.py,sha256=P1LCe20mtClS53CDS8hGpyO87NhcIw6fIXHqdrJ1Yy0,4135
195
- onfido/models/known_faces_report.py,sha256=hDUxiihOeK-YU3BLyaBpn1uPv-0cOOjRZAhe8BM4YHM,5873
196
+ onfido/models/known_faces_report.py,sha256=sSck6rJZre_X4S5KF-Epj-VS80wiI-VDZglpibm-EQY,5109
196
197
  onfido/models/live_photo.py,sha256=axN65z994uBW2iOHpcrL_SEhLyOfjoUtQIWsdvgKRdw,4093
197
198
  onfido/models/live_photo_response.py,sha256=HmLXOi5Mqsh0jw0TJUkaUudkfD2OMFqwdwGloj_Ho-8,4125
198
199
  onfido/models/live_photos_list.py,sha256=sSJ9-859WKOORLBhR7q8fz0vjbxPpAxkWylUliEWHmE,3502
@@ -212,19 +213,19 @@ onfido/models/proof_of_address_breakdown_document_classification.py,sha256=z3r_b
212
213
  onfido/models/proof_of_address_breakdown_document_classification_breakdown.py,sha256=iX0HUZXLNcMkfuC1W98_5v4MgwqmuKssQZNpVxZ6ZkM,3734
213
214
  onfido/models/proof_of_address_breakdown_image_integrity.py,sha256=Rb0YMBKzal96lE4f-rUCI6ldfYpYn4COk2Kqnb8KBNQ,3707
214
215
  onfido/models/proof_of_address_breakdown_image_integrity_breakdown.py,sha256=ZOYylaMivdTvkIbF4Ub2SxS2BwhMSlawTAolgSkaaa4,3657
215
- onfido/models/proof_of_address_properties.py,sha256=Lqeg3OE61CVOHojvM-4aKiILVTnrAqN97fU83YSdIhc,5498
216
- onfido/models/proof_of_address_report.py,sha256=LqmjqcuxVJ3x2BoYkV6WWDsHSx3SRElyQY2ds9B6P_I,5923
216
+ onfido/models/proof_of_address_properties.py,sha256=ZZmTaV9dUJ3A7cYBCFOQ-4L7biFdb5EttD5Dh4WegDc,5554
217
+ onfido/models/proof_of_address_report.py,sha256=CNaXwG5vpkpQKAxmqPzUKokqj0aYHLeebzF67XWxqAE,5159
217
218
  onfido/models/repeat_attempts_list.py,sha256=o525XbVZGuh51XkpaEcj9oZcm0tH1ARVaDQmc8Tg6ck,5115
218
- onfido/models/repeat_attempts_list_repeat_attempts_inner.py,sha256=7wTFGjYv13elegzMSifnrF8xmOij909oACL6cx3xiL4,5333
219
+ onfido/models/repeat_attempts_list_repeat_attempts_inner.py,sha256=7ws6yRbOkjoYnDG79ZvlBhBFqFFS6vz1DHw8Zfb6J68,5501
219
220
  onfido/models/report.py,sha256=vdjrro3KskRp8vfILJjUZX_pQMVGswXPTdac296ptwk,33635
220
221
  onfido/models/report_document.py,sha256=f0C7yaCS2dF0y0Wv0tmL_UpaleEmE5ycJmpcHmpxdBs,3043
221
- onfido/models/report_name.py,sha256=seSIKKKtuttM8hbJ1jQcHZZLc-_LizPcDr9oD7leJDk,1739
222
- onfido/models/report_result.py,sha256=cl0g1cU9oHsonYt4JTTOMzUcA5o4mckgzJT1rQnJ9T4,731
223
- onfido/models/report_shared.py,sha256=SUzxWaEvcWOIWFZUc11MUJ8tknWDjGY7Mrz144qN7Cc,4992
224
- onfido/models/report_status.py,sha256=qmhGQ2oA6Hfuh7RRm3k3Mn8GCu-Gf_JWNnzQK9PFY9M,844
225
- onfido/models/report_sub_result.py,sha256=gWSRqId8lSsaHSOH__7Yb1bbA4Gv2YGxPDxUGcd6KuM,846
222
+ onfido/models/report_name.py,sha256=2RnO0-DgwRXiRJG-1_SYJXk9tYtmTKtkeogeNZ6amls,1797
223
+ onfido/models/report_result.py,sha256=Sc7o4kAmyMQrNKcd1R9LXdlkeJu_IgcaPTZ8x09GTw4,789
224
+ onfido/models/report_shared.py,sha256=YmsT0xEscM6xSSw_jSem25O0OL-u6_hWQT7YpoLe0oE,4228
225
+ onfido/models/report_status.py,sha256=ZQEOiv6kH9IJdq7dN27mguTeBhbTlC9va1Mcumk9ZX4,902
226
+ onfido/models/report_sub_result.py,sha256=NccJYchs_8PzvOq0MEz0D4um5QAJhE5RwWF_ELBdci8,904
226
227
  onfido/models/reports_list.py,sha256=bu0GeYF4Qyb59oG7OyJho44Zob3EHPXP5r10T0u0Xu4,3429
227
- onfido/models/results_feedback.py,sha256=uyqLE2YoMvH62mN1_0qiYWPWEScpXSfmfM6vHvR-D9Y,4059
228
+ onfido/models/results_feedback.py,sha256=99TKhg8tXv_TUywDoQj5Oya2R1vXiil5SDfVUwWsRV8,4115
228
229
  onfido/models/sdk_token.py,sha256=DuB5r4k1KWGbcykbZDmVNvz9KPH9quI_51nK0R76cpc,3023
229
230
  onfido/models/sdk_token_builder.py,sha256=SkM6U6oGjZp762agxrgEoS3fDnPaUfQX2AKWR1WTcIQ,3666
230
231
  onfido/models/sdk_token_request.py,sha256=-JejrBUXbYxGRD6_o-vJ_CQCXI_g4pXYve7AIDI4sGs,3666
@@ -239,17 +240,17 @@ onfido/models/us_driving_licence_breakdown_document.py,sha256=MJdrBBgmqkZDlYrEDQ
239
240
  onfido/models/us_driving_licence_breakdown_document_breakdown.py,sha256=zG8bNjsPCUT5TlP2YvaDt-UYDRphLukoAIB33WVxuy8,4997
240
241
  onfido/models/us_driving_licence_breakdown_personal.py,sha256=wJhysFc2FxeWaFdwTDAsoMN4ho92-LJ3KbNbNgwf7E8,3699
241
242
  onfido/models/us_driving_licence_breakdown_personal_breakdown.py,sha256=7zDoZ4E3TFWA-AflFM_QLyHomX8PxfQ46ms3o1g1A2c,8993
242
- onfido/models/us_driving_licence_builder.py,sha256=DwBQ2j8jxwk__pdOQVv_pyNuChzFSAtuNZn588K_EFM,7866
243
- onfido/models/us_driving_licence_report.py,sha256=5CxozU50q7jo3pKJF0bAeO5LSWVQI-dMEUHp63uB-W8,5913
244
- onfido/models/us_driving_licence_shared.py,sha256=HfW2yBjJKAjPaC8OmHuttZc6E2L0vcNP78ZVDWk0a-c,7934
243
+ onfido/models/us_driving_licence_builder.py,sha256=EnnvgeXx_LKk3plGAgtJVZYWf07SDocGHNB-LfjK1-c,8034
244
+ onfido/models/us_driving_licence_report.py,sha256=WNFf6NqYZBEjDQ4T37vM_ft0ZoMIWbcsvi4Ijv0S-40,5149
245
+ onfido/models/us_driving_licence_shared.py,sha256=gRMLgy7Xo96K81dh7f_Fl2Ldojd-_xV8wkOmFVNtr3U,8102
245
246
  onfido/models/video_reasons.py,sha256=Zl3zruMz5VkfWMmTMM28-qpmjsykxo7ceMjNchoPymk,3816
246
247
  onfido/models/watchlist_aml_breakdown.py,sha256=mdbO7OWoVPG84zlgEBcHG517RopbXkpSABGhbE1e7Ho,5337
247
248
  onfido/models/watchlist_aml_breakdown_adverse_media.py,sha256=ilxwSfjfIpOO9lT_EjkC-tRJycGWKLx43Gg2zkcmXuQ,3184
248
249
  onfido/models/watchlist_aml_breakdown_legal_and_regulatory_warnings.py,sha256=HWVazo9UxQ5z24wxpvboMcFhFNgZAQ27pe_QriE8cR0,3267
249
250
  onfido/models/watchlist_aml_breakdown_politically_exposed_person.py,sha256=bpF1XScRoaYQ40FNWY6Xv4gm1J_Xk8xAaJWMmRr017U,3265
250
251
  onfido/models/watchlist_aml_breakdown_sanction.py,sha256=E8ey_9TUZVRzRg1WRN_XxRsBN3HE7RUv1bULoWr_Juo,3156
251
- onfido/models/watchlist_aml_properties.py,sha256=VH3M6wqR8GY4DUsAkllaMVeH7osDNFcS89xqGrCpWqQ,3244
252
- onfido/models/watchlist_aml_report.py,sha256=FDNr7T78sEr7_Qc1Y0stCFkhAz_pzYgXC2R4BcO37Cg,5897
252
+ onfido/models/watchlist_aml_properties.py,sha256=0ZXXvco_KnX-ZNR2-4rTCPePxg3j3X4QnUqpbrxhDxw,3238
253
+ onfido/models/watchlist_aml_report.py,sha256=AP-16szeXqfPjX424hgNPxpqA4tTKAnx-6bClSQfqzw,5133
253
254
  onfido/models/watchlist_enhanced_breakdown.py,sha256=DHuLezE2g-TArnMImvMeNlkuOGxjuyxinSRQeuuzJS0,5231
254
255
  onfido/models/watchlist_enhanced_properties.py,sha256=enFzeifL4Nh7M06113Gph-XgBqbI3cY_4XWcJhqKj_s,3834
255
256
  onfido/models/watchlist_enhanced_properties_records_inner.py,sha256=cCfmLJhj1sYvdl8Wo7gV93pXWTYqG3OBfG1VcHctlhk,8456
@@ -260,30 +261,30 @@ onfido/models/watchlist_enhanced_properties_records_inner_attribute_inner.py,sha
260
261
  onfido/models/watchlist_enhanced_properties_records_inner_event_inner.py,sha256=_RYJKwrt71ayppXfZS4jAaCb1WkRlxQdLwOjwpEzgTQ,4095
261
262
  onfido/models/watchlist_enhanced_properties_records_inner_event_inner_source.py,sha256=XBLXd--mRvN-PNPqjtrCqfZwaLa45ul3Xwwj1hb3TOU,3563
262
263
  onfido/models/watchlist_enhanced_properties_records_inner_source_inner.py,sha256=WijE3B3xOJWJYqNPrQrQxdqvfJ2_rTM4ZBD9GWSak-4,3538
263
- onfido/models/watchlist_enhanced_report.py,sha256=nQPZ8Se0HlBYlQ-hKqCt6dd2rMIZHvd4yJPOzCxUO7A,5957
264
- onfido/models/watchlist_monitor.py,sha256=J6YoiTB5FI4QjhvSGlgX1WWxds2pcKzLhLlE88mWOmQ,4680
265
- onfido/models/watchlist_monitor_builder.py,sha256=G0VuDZqa8XAQ4wYrDl-h4YYP2E5eMhUjH_02IxszThI,3866
264
+ onfido/models/watchlist_enhanced_report.py,sha256=f2lV1A17vn7USwcnAFZZkxwD63CQJ9AtEjmQCDJ5_E8,5193
265
+ onfido/models/watchlist_monitor.py,sha256=zdPZPNSsNimnXBSwXHprAtRw3bVsvaK_7Oh1BQWqFZQ,4736
266
+ onfido/models/watchlist_monitor_builder.py,sha256=l-i6sknTDPGVA1vqxy1pJ9_xwQXtNSGIj7nBM-lT_c0,3922
266
267
  onfido/models/watchlist_monitor_match.py,sha256=E5RUaftKhw9DOGjXcZ586enHYcbqsM-C6zaRi6tcf2Q,3236
267
268
  onfido/models/watchlist_monitor_matches_list.py,sha256=yPBL4zzvxZsF_-ysPYcZrnO_L1UU-_Fnwu9JXAAT12I,3555
268
269
  onfido/models/watchlist_monitor_matches_updater.py,sha256=_Y-E0uZEEq0VVur1WqbnQGx1caLd5y359w3auQvfjp8,3194
269
270
  onfido/models/watchlist_monitor_response.py,sha256=O-HtvwH6bf5hXiBfnrrf8iZekwNMEMbqlc9mCzxGT7k,3823
270
- onfido/models/watchlist_monitor_shared.py,sha256=pwdKpilB2zAqEvg5sRdethilQvOVTSA8ZrL7iNHVs5o,3862
271
+ onfido/models/watchlist_monitor_shared.py,sha256=kxEZyB047vkor9CbFhzNvP2kzIknAH3ffLBPEWv5ufA,3918
271
272
  onfido/models/watchlist_monitors_list.py,sha256=DakWDpZVkSjqt8r1MPmfPP3b5XszlnIVlg5USUEpzL8,3522
272
- onfido/models/watchlist_peps_only_report.py,sha256=w5QOuiZmY-4CxaZZphsjCrSaMCYWKgnYyeG9XLVmKUM,5957
273
- onfido/models/watchlist_sanctions_only_report.py,sha256=3xM5I4gNwyowo5zl2NBC351Yb3SwSthw_03DMjC1iAY,5977
273
+ onfido/models/watchlist_peps_only_report.py,sha256=s8SBXGJXuKVzfSWDEDj6qkJ7WEYDssfSjDtYOy5w3W4,5193
274
+ onfido/models/watchlist_sanctions_only_report.py,sha256=rmp04GCVBnLDjS_3uOEV9jNGqlUv5WawZz-Tr73Ja9o,5213
274
275
  onfido/models/watchlist_standard_breakdown.py,sha256=S-y95QaIFHX7mxpTM7Icw3MSf6zRIxvWP9sogqGLruQ,4837
275
- onfido/models/watchlist_standard_properties.py,sha256=AmDHYsAYpkp7JJaQf7dJdbrzFixybkdRTLze2OxXFzY,3264
276
- onfido/models/watchlist_standard_report.py,sha256=NhT9MlzmZ0pRY-DXskzUnML3DpNX1818Yu7Pzv3EjZ0,5957
276
+ onfido/models/watchlist_standard_properties.py,sha256=H6PQLnRUJyVB6iEqNzbcq2b8sL0uHKvZ3bvlnjvAxMo,3258
277
+ onfido/models/watchlist_standard_report.py,sha256=mh6YqlnlKGnKk9dt4Gs1qWrhuE71rKPu7k6X9AlHhvo,5193
277
278
  onfido/models/webhook.py,sha256=jfqOqga-muzPOTCX90N0yRY41FOWDHsRbwK-2SMHGBI,4613
278
279
  onfido/models/webhook_builder.py,sha256=pwhg4W9CuRSdup25LJAV099md70EHPJ9H9gEaREGHy0,4172
279
280
  onfido/models/webhook_create.py,sha256=8Ur6l4YhUAaIl4WCd-dWqPVmHGZ-2cxROA--U0BLVus,3070
280
281
  onfido/models/webhook_event.py,sha256=g5lobXwKJsA0J34puBVMcLbm7vcrVlZoFTuvRvCFE9o,3323
281
- onfido/models/webhook_event_object_status.py,sha256=4jEEia3Ecbji5bNaD4weG21BrgucVod3EKnEdKVJF6A,1267
282
+ onfido/models/webhook_event_object_status.py,sha256=5R3ggSbPedMyHsiRfx4DXfb-nkURFzhN7EteA3mhXQ8,1325
282
283
  onfido/models/webhook_event_payload.py,sha256=aHlXjU0FX3F30zau9JBDkZqsZ2HgeBd_QXN19cNiRVo,4317
283
- onfido/models/webhook_event_payload_object.py,sha256=VbRajHlUahupevBm464VVuVWbYS4NrsXpEJFgC20KmU,3912
284
- onfido/models/webhook_event_payload_resource.py,sha256=sGoNAlIX4AjxfM_QN3IglsHOxT4KVpB1Ba2jTxUkxbo,7245
285
- onfido/models/webhook_event_resource_type.py,sha256=paadOwFMD8K8JCuBCAE3F_sWV-32HD3qhkabEl1Ae0E,967
286
- onfido/models/webhook_event_type.py,sha256=S863kbG9lmTrvxcRUTHpKA5Nng9-uD-naW7XP2nVbS4,1655
284
+ onfido/models/webhook_event_payload_object.py,sha256=Tx8zHLWWlUFO7Ywo1nLgQZs9zdgWjQ7yhKHKBMwku7w,3936
285
+ onfido/models/webhook_event_payload_resource.py,sha256=7kWajSY3e_1Pe7aT04z5AMIcPSKpdYBNkgJNR-07C1Q,7481
286
+ onfido/models/webhook_event_resource_type.py,sha256=OGkDFWQNxYZOv871DW5xc4eB-oeQoAuQ-zD3Sy9uuOk,1025
287
+ onfido/models/webhook_event_type.py,sha256=YY-PhXB_Hb9O5QOxinQgjRZYIH6XSu5QF5TJyCviWjg,1625
287
288
  onfido/models/webhook_resend.py,sha256=H_qpNUnh0y1FJQUy1B6ngY69iH7nHU9qjglRXLXKmPc,3478
288
289
  onfido/models/webhook_response.py,sha256=VpnpGMafbWR7oj2Tws-sQlVmNzP9RPEMKvQ_g6wrbt0,3557
289
290
  onfido/models/webhook_shared.py,sha256=5KI0bTRB_XbewC1xG1Uhezj5lBjnKGqCIXfrdJvgFJI,4025
@@ -294,13 +295,13 @@ onfido/models/webhooks_resend_item.py,sha256=huJSQx0TfXawHiGG7ftxQH399DeK0xWsvTT
294
295
  onfido/models/workflow_run.py,sha256=0LI2s-9Rv3VxRQfYU8kofRJcqp3k0hrB64tvNNXXgUw,6952
295
296
  onfido/models/workflow_run_builder.py,sha256=cC3cZW2U8hjAzqidzvqZlp5S0_ERRqR5hyOed2NnYJ0,5068
296
297
  onfido/models/workflow_run_error.py,sha256=CZARb7e9DD_VDPvnkALeQ6f166SPIEdAYkHqys5LTCI,3240
297
- onfido/models/workflow_run_link.py,sha256=MjlZH1M7VSemeo0gLvlifP9bE6ASV6QzTe4a8OUsVrw,5597
298
+ onfido/models/workflow_run_link.py,sha256=p714CLnaO0mIpTxVcHXFTz5gu2_M0XkU9eP1UbFoj7I,5653
298
299
  onfido/models/workflow_run_request.py,sha256=IGCpkcvqn6kJ2L2nZeuBHNeANqcSUfvx0IgcKOqv-4s,3153
299
300
  onfido/models/workflow_run_response.py,sha256=Ze469zDUWxZMxqIxas6Sjts3EB21z7PhZTfuWgs0Thw,5080
300
301
  onfido/models/workflow_run_shared.py,sha256=WP9qLkf79iaJTeK-QxkwzB2MvR4atT3LdZZRmZopPp4,4857
301
- onfido/models/workflow_run_status.py,sha256=34P9aHn0FEAirtAo64ej00LH4h-3V36ShZG1XbS_hZo,884
302
- onfido_python-4.5.0.dist-info/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
303
- onfido_python-4.5.0.dist-info/METADATA,sha256=lTDua1kdg7D3MDaob0JM559ihJq6zjNYyf_-F1aREIE,486
304
- onfido_python-4.5.0.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
305
- onfido_python-4.5.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
306
- onfido_python-4.5.0.dist-info/RECORD,,
302
+ onfido/models/workflow_run_status.py,sha256=JCHhcFSLM3aiW-fOve51psGJ0_RS-PI--NnvVNSG3fI,942
303
+ onfido_python-5.0.0.dist-info/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
304
+ onfido_python-5.0.0.dist-info/METADATA,sha256=MTsN_8L3kP6ms0hgl3l6jLrGoDXUN3D3n30jewdI458,654
305
+ onfido_python-5.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
306
+ onfido_python-5.0.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
307
+ onfido_python-5.0.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.7.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5