onfido-python 5.0.0__py3-none-any.whl → 5.2.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 (29) hide show
  1. onfido/__init__.py +8 -4
  2. onfido/api/default_api.py +262 -0
  3. onfido/api_client.py +1 -1
  4. onfido/configuration.py +1 -1
  5. onfido/models/__init__.py +7 -3
  6. onfido/models/applicant_consent.py +111 -0
  7. onfido/models/check_builder.py +8 -2
  8. onfido/models/check_request.py +8 -2
  9. onfido/models/device_intelligence_breakdown.py +7 -1
  10. onfido/models/device_intelligence_breakdown_breakdown.py +3 -3
  11. onfido/models/{device_intelligence_breakdown_breakdown_device.py → device_intelligence_breakdown_device.py} +6 -6
  12. onfido/models/{device_intelligence_breakdown_breakdown_device_breakdown.py → device_intelligence_breakdown_device_breakdown.py} +4 -4
  13. onfido/models/device_intelligence_breakdown_properties_device.py +3 -3
  14. onfido/models/device_intelligence_properties.py +116 -0
  15. onfido/models/device_intelligence_report.py +8 -2
  16. onfido/models/document_properties.py +9 -5
  17. onfido/models/{document_properties_driving_licence_information.py → document_properties_driving_licence_information_item.py} +4 -4
  18. onfido/models/document_with_driver_verification_report_all_of_properties.py +9 -5
  19. onfido/models/report_configuration.py +119 -0
  20. onfido/models/report_configuration_facial_similarity.py +110 -0
  21. onfido/models/webhook.py +11 -1
  22. onfido/models/webhook_builder.py +11 -1
  23. onfido/models/webhook_shared.py +12 -2
  24. onfido/models/webhook_updater.py +11 -1
  25. {onfido_python-5.0.0.dist-info → onfido_python-5.2.0.dist-info}/METADATA +3 -2
  26. {onfido_python-5.0.0.dist-info → onfido_python-5.2.0.dist-info}/RECORD +29 -25
  27. {onfido_python-5.0.0.dist-info → onfido_python-5.2.0.dist-info}/WHEEL +1 -1
  28. {onfido_python-5.0.0.dist-info → onfido_python-5.2.0.dist-info/licenses}/LICENSE +0 -0
  29. {onfido_python-5.0.0.dist-info → onfido_python-5.2.0.dist-info}/top_level.txt +0 -0
@@ -31,9 +31,14 @@ class WebhookBuilder(BaseModel):
31
31
  events: Optional[List[WebhookEventType]] = Field(default=None, description="The events that will be published to the webhook. If the events parameter is omitted all the events will be subscribed. ")
32
32
  environments: Optional[List[StrictStr]] = Field(default=None, description="The environments from which the webhook will receive events. Allowed values are “sandbox” and “live”. If the environments parameter is omitted the webhook will receive events from both environments. ")
33
33
  payload_version: Optional[StrictInt] = Field(default=None, description="Webhook version used to control the payload object when sending webhooks.")
34
+ oauth_enabled: Optional[StrictBool] = Field(default=None, description="Determines if the webhook will fetch OAuth access tokens to send in the Authorization header.")
35
+ oauth_server_url: Optional[StrictStr] = Field(default=None, description="The url to fetch the OAuth access token using client credentials grant.")
36
+ oauth_server_client_id: Optional[StrictStr] = Field(default=None, description="The client id to authenticate the client credentials grant.")
37
+ oauth_server_client_secret: Optional[StrictStr] = Field(default=None, description="The client secret to authenticate the client credentials grant.")
38
+ oauth_server_scope: Optional[StrictStr] = Field(default=None, description="The scopes to be sent when requesting the access token.")
34
39
  url: StrictStr = Field(description="The url that will listen to notifications (must be https).")
35
40
  additional_properties: Dict[str, Any] = {}
36
- __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version", "url"]
41
+ __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version", "oauth_enabled", "oauth_server_url", "oauth_server_client_id", "oauth_server_client_secret", "oauth_server_scope", "url"]
37
42
 
38
43
  model_config = ConfigDict(
39
44
  populate_by_name=True,
@@ -97,6 +102,11 @@ class WebhookBuilder(BaseModel):
97
102
  "events": obj.get("events"),
98
103
  "environments": obj.get("environments"),
99
104
  "payload_version": obj.get("payload_version"),
105
+ "oauth_enabled": obj.get("oauth_enabled"),
106
+ "oauth_server_url": obj.get("oauth_server_url"),
107
+ "oauth_server_client_id": obj.get("oauth_server_client_id"),
108
+ "oauth_server_client_secret": obj.get("oauth_server_client_secret"),
109
+ "oauth_server_scope": obj.get("oauth_server_scope"),
100
110
  "url": obj.get("url")
101
111
  })
102
112
  # store additional fields in additional_properties
@@ -31,8 +31,13 @@ class WebhookShared(BaseModel):
31
31
  events: Optional[List[WebhookEventType]] = Field(default=None, description="The events that will be published to the webhook. If the events parameter is omitted all the events will be subscribed. ")
32
32
  environments: Optional[List[StrictStr]] = Field(default=None, description="The environments from which the webhook will receive events. Allowed values are “sandbox” and “live”. If the environments parameter is omitted the webhook will receive events from both environments. ")
33
33
  payload_version: Optional[StrictInt] = Field(default=None, description="Webhook version used to control the payload object when sending webhooks.")
34
+ oauth_enabled: Optional[StrictBool] = Field(default=None, description="Determines if the webhook will fetch OAuth access tokens to send in the Authorization header.")
35
+ oauth_server_url: Optional[StrictStr] = Field(default=None, description="The url to fetch the OAuth access token using client credentials grant.")
36
+ oauth_server_client_id: Optional[StrictStr] = Field(default=None, description="The client id to authenticate the client credentials grant.")
37
+ oauth_server_client_secret: Optional[StrictStr] = Field(default=None, description="The client secret to authenticate the client credentials grant.")
38
+ oauth_server_scope: Optional[StrictStr] = Field(default=None, description="The scopes to be sent when requesting the access token.")
34
39
  additional_properties: Dict[str, Any] = {}
35
- __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version"]
40
+ __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version", "oauth_enabled", "oauth_server_url", "oauth_server_client_id", "oauth_server_client_secret", "oauth_server_scope"]
36
41
 
37
42
  model_config = ConfigDict(
38
43
  populate_by_name=True,
@@ -95,7 +100,12 @@ class WebhookShared(BaseModel):
95
100
  "enabled": obj.get("enabled"),
96
101
  "events": obj.get("events"),
97
102
  "environments": obj.get("environments"),
98
- "payload_version": obj.get("payload_version")
103
+ "payload_version": obj.get("payload_version"),
104
+ "oauth_enabled": obj.get("oauth_enabled"),
105
+ "oauth_server_url": obj.get("oauth_server_url"),
106
+ "oauth_server_client_id": obj.get("oauth_server_client_id"),
107
+ "oauth_server_client_secret": obj.get("oauth_server_client_secret"),
108
+ "oauth_server_scope": obj.get("oauth_server_scope")
99
109
  })
100
110
  # store additional fields in additional_properties
101
111
  for _key in obj.keys():
@@ -31,9 +31,14 @@ class WebhookUpdater(BaseModel):
31
31
  events: Optional[List[WebhookEventType]] = Field(default=None, description="The events that will be published to the webhook. If the events parameter is omitted all the events will be subscribed. ")
32
32
  environments: Optional[List[StrictStr]] = Field(default=None, description="The environments from which the webhook will receive events. Allowed values are “sandbox” and “live”. If the environments parameter is omitted the webhook will receive events from both environments. ")
33
33
  payload_version: Optional[StrictInt] = Field(default=None, description="Webhook version used to control the payload object when sending webhooks.")
34
+ oauth_enabled: Optional[StrictBool] = Field(default=None, description="Determines if the webhook will fetch OAuth access tokens to send in the Authorization header.")
35
+ oauth_server_url: Optional[StrictStr] = Field(default=None, description="The url to fetch the OAuth access token using client credentials grant.")
36
+ oauth_server_client_id: Optional[StrictStr] = Field(default=None, description="The client id to authenticate the client credentials grant.")
37
+ oauth_server_client_secret: Optional[StrictStr] = Field(default=None, description="The client secret to authenticate the client credentials grant.")
38
+ oauth_server_scope: Optional[StrictStr] = Field(default=None, description="The scopes to be sent when requesting the access token.")
34
39
  url: Optional[StrictStr] = Field(default=None, description="The url that will listen to notifications (must be https).")
35
40
  additional_properties: Dict[str, Any] = {}
36
- __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version", "url"]
41
+ __properties: ClassVar[List[str]] = ["enabled", "events", "environments", "payload_version", "oauth_enabled", "oauth_server_url", "oauth_server_client_id", "oauth_server_client_secret", "oauth_server_scope", "url"]
37
42
 
38
43
  model_config = ConfigDict(
39
44
  populate_by_name=True,
@@ -97,6 +102,11 @@ class WebhookUpdater(BaseModel):
97
102
  "events": obj.get("events"),
98
103
  "environments": obj.get("environments"),
99
104
  "payload_version": obj.get("payload_version"),
105
+ "oauth_enabled": obj.get("oauth_enabled"),
106
+ "oauth_server_url": obj.get("oauth_server_url"),
107
+ "oauth_server_client_id": obj.get("oauth_server_client_id"),
108
+ "oauth_server_client_secret": obj.get("oauth_server_client_secret"),
109
+ "oauth_server_scope": obj.get("oauth_server_scope"),
100
110
  "url": obj.get("url")
101
111
  })
102
112
  # store additional fields in additional_properties
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: onfido-python
3
- Version: 5.0.0
3
+ Version: 5.2.0
4
4
  Summary: Python library for the Onfido API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -19,6 +19,7 @@ Dynamic: description
19
19
  Dynamic: description-content-type
20
20
  Dynamic: keywords
21
21
  Dynamic: license
22
+ Dynamic: license-file
22
23
  Dynamic: requires-dist
23
24
  Dynamic: summary
24
25
 
@@ -1,20 +1,21 @@
1
- onfido/__init__.py,sha256=056tEO3p6M1NHMuHRFt8egOymMyalj0_yLWc4-5lz_E,28728
2
- onfido/api_client.py,sha256=TAD4uoiWtXk6GHSqKRs0utym8N92OOrZEXMaaFzfMJM,27336
1
+ onfido/__init__.py,sha256=eRqKV1kkzMuntu3TifXbsPzpocJSzFJlsYEfVCvyC1A,29014
2
+ onfido/api_client.py,sha256=YAFY0OVQ-NYKJO4B7EhqAJg1Rjg6av6-1xy9hVNBldA,27336
3
3
  onfido/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- onfido/configuration.py,sha256=nGQzsUVjvHdOObHNVqEHgVBHEjVoUv-GbwuN89TFZPE,17499
4
+ onfido/configuration.py,sha256=6v1Qf2OJqtYhH1AV5I0Lg39L47cPxsIVncl2NmHf5GU,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
- onfido/api/default_api.py,sha256=yJ7meWxCOsjHqHvtTzNjPq1BWe6Ohn-MIBBj8Xt2tYA,718164
11
- onfido/models/__init__.py,sha256=tfLRPpOt3cP_sinrG_ZYXBg-KQSFV3qbLy7sdmTEQyE,28076
10
+ onfido/api/default_api.py,sha256=Kuo7DV2b_syxWEv3o99NLotLjqupATmKL8P8ZYorTjY,728215
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
15
15
  onfido/models/addresses_list.py,sha256=jRGJls3Q6Kp356ngIZBRLnMv5hi9iyvWbt2Ss0BkZ4w,3492
16
16
  onfido/models/applicant.py,sha256=vbNaqoa2SJf1jVzmmDwIFLeIPkX4UY01EujKbZ4q-h4,6721
17
17
  onfido/models/applicant_builder.py,sha256=TxQXfh-EVPNxmiE1GhVY5iccz9g2iDtcFjL2SiekVKY,6578
18
+ onfido/models/applicant_consent.py,sha256=IYuhM0BGuniQIQbnCkpIDi7mrp114UNFCn5nolCnRKM,3640
18
19
  onfido/models/applicant_consent_builder.py,sha256=56H283tjE430WgY7p_u5_X0ZH96v1j5uPyX3kjeAQRM,3185
19
20
  onfido/models/applicant_consent_name.py,sha256=o8eRcl-XgrJo9Q4EZtuBIUVFG8PKY4eiJTpS1BSCCkE,861
20
21
  onfido/models/applicant_create.py,sha256=whgIDGEObzjoPEbjq4UztQTgUAxzm5AP0YCtodIoqAs,3924
@@ -25,8 +26,8 @@ onfido/models/applicant_update.py,sha256=aelyT_ryth0YBwqnHArJRT7VPTqKS4K7nqgvjNp
25
26
  onfido/models/applicant_updater.py,sha256=0sIqfLAc-Jlb6mlBgHgiPktbs-frH4hQTAjRNcRXCqk,6730
26
27
  onfido/models/applicants_list.py,sha256=8-PFHgc4lxMauoiNhGzqb3k7oAgKxP0vt9pnQfPsgwI,3489
27
28
  onfido/models/check.py,sha256=icUrgCpMW7-_b1k-3954mSm4kobZ4BZ5q_ha5k9Rtfs,6353
28
- onfido/models/check_builder.py,sha256=gbqjJic76g_43XSZJSHA9X01zU4FlnyfXr6fbCmbxP8,6629
29
- 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
30
31
  onfido/models/check_response.py,sha256=RiLJMHF1dXWzklEQ-QmD7u5AA707ciezoLydnt2Bouo,5038
31
32
  onfido/models/check_shared.py,sha256=slk77DorgZadhUoVlad3c-8yS8uPU5OCHJu7yL_KQCQ,4237
32
33
  onfido/models/check_status.py,sha256=R6mqk1tmXuiWsffSIKAoxbBMyPDPnMAxY5gqZ5wd2r4,906
@@ -34,15 +35,16 @@ onfido/models/checks_list.py,sha256=_GDkN9e73HT0m2g3uGS_7i62_d6uDrEXqpryEARynJ8,
34
35
  onfido/models/complete_task_builder.py,sha256=ei2Xxhlnm5ZRuhz27Ptx_eLx7BzSDYb798w67Jf1MxI,3314
35
36
  onfido/models/complete_task_data_builder.py,sha256=jqn15cH3do9uIo1jKIRqgzq_fYgMsgssOgUxG0l4X9Q,5372
36
37
  onfido/models/country_codes.py,sha256=i9dgxc_DZkV2h2xWe5P09rAkRPlJrBKlYPzmXjFq6co,4685
37
- onfido/models/device_intelligence_breakdown.py,sha256=ge4lLA_3rwzgJa7FyTPepuHlXMIvVZPYhzaNC9Zp5jQ,3978
38
- onfido/models/device_intelligence_breakdown_breakdown.py,sha256=CXYtzMzTEIA1NXy4Gu60TQWSbZXHPKYr8U-qA4XfOnw,3504
39
- onfido/models/device_intelligence_breakdown_breakdown_device.py,sha256=qpgVFyE2KTnTHhp9lOWUiF--QFsiF15kL932AleeC-A,3653
40
- onfido/models/device_intelligence_breakdown_breakdown_device_breakdown.py,sha256=Cs5BfPLtGoUIJhjGI6hK8HlZM_fvgJ2GXwFmyzgIBjg,4767
38
+ onfido/models/device_intelligence_breakdown.py,sha256=Of9_f4p7ohqK2wNYkMLH8u9jrcwIAmn0g2nejaS_Zg4,4434
39
+ onfido/models/device_intelligence_breakdown_breakdown.py,sha256=2_wgbsN4UqV9f8OJmiQjvcYTzPxz_zWApHsvyqPc3pQ,3467
40
+ onfido/models/device_intelligence_breakdown_device.py,sha256=t3rQ5jmIoVT6hVMZ0GHgsEEwOrHKE0infiPduZR79MU,3589
41
+ onfido/models/device_intelligence_breakdown_device_breakdown.py,sha256=d-tihT0UYoO4aXHmo5x0tEBKCMt24B8JBc3WFE2gw6E,4731
41
42
  onfido/models/device_intelligence_breakdown_properties.py,sha256=K44aalsUKtaTEvyKnQRDjnxbi1vGWkZgh7YF3PifhqQ,4519
42
- onfido/models/device_intelligence_breakdown_properties_device.py,sha256=e8AHJTGbeXgr5XQ5fYalO0e0zPiAGdo1wZpVc2eCqX4,8776
43
+ onfido/models/device_intelligence_breakdown_properties_device.py,sha256=sQYwHHetd7UR0z7KIXhLd6sn8BQyivJutXI1R2RG8sc,8816
43
44
  onfido/models/device_intelligence_breakdown_properties_geolocation.py,sha256=78wKBOHlNHAc96ZWMPa6hQQPbYKX6ospdNYgyL56-qM,3618
44
45
  onfido/models/device_intelligence_breakdown_properties_ip.py,sha256=Wtm2BPyovvwlRCSk51OhpUAJHp1yZvtb2RktesPXPvg,3205
45
- onfido/models/device_intelligence_report.py,sha256=ivYsI_S-mpB0LKLfuHK7teciqipgG3Lsg-p0frEyJyw,4734
46
+ onfido/models/device_intelligence_properties.py,sha256=cZek94wE-s7P_ye3cZhAIna8B4jm99izNkDOZ_ubZ8U,4483
47
+ onfido/models/device_intelligence_report.py,sha256=Cf-6sTV2pK32LPyZJiA0enkMfuwHZ7W07NRS5s1pnEE,5205
46
48
  onfido/models/document.py,sha256=e0pLWAn6cfIkwieNUiVAW66aGd4WGLXpoP8UIIGRhsY,5321
47
49
  onfido/models/document_breakdown.py,sha256=x7lFBT2V2jJvW0JZ6-U_Ca9vjjPOvtCVJP0i__tYc_Y,7813
48
50
  onfido/models/document_breakdown_age_validation.py,sha256=ioeCHhNEJB4DnY7cqv-oBa87g46mpnq6BBzBIiafXB8,3699
@@ -82,12 +84,12 @@ onfido/models/document_breakdown_visual_authenticity_breakdown_template.py,sha25
82
84
  onfido/models/document_cdq_reasons.py,sha256=1m2qxLuIeC1HKVQim9TLt95l76FDi_rJi0uBYKtd03E,5214
83
85
  onfido/models/document_iq_reasons.py,sha256=OKiCuxShiJ4uBrALjsK_Z_z28fnLwPEYev5YV6cDOVc,5392
84
86
  onfido/models/document_odp_reasons.py,sha256=RQ6UAGnhkg7hfwOaEqAbuxdjIh2F1QyAhsoIpRsQfN0,3966
85
- onfido/models/document_properties.py,sha256=NC_eI8cnozD_3vBGm9SFsach5HdRAldbbXRVqs5Mu3c,13103
87
+ onfido/models/document_properties.py,sha256=Miaz_TMMXU7IfPdlp1hqgePNC0AabER2JYdZIDV0Cs8,13371
86
88
  onfido/models/document_properties_address_lines.py,sha256=KBEQPfyCQNpoA_VjP6vKroWqnOa_sy-G_UnyiBox-jI,3606
87
89
  onfido/models/document_properties_barcode_inner.py,sha256=FVPy1Gc65ECQDY3cuF8J5jhuUNBceyua0ldUepaGZmA,5150
88
90
  onfido/models/document_properties_document_classification.py,sha256=YRa0qNQBNXCPnHJn9_N0lKaXzhVCC-xKPezBBaYR7mU,3400
89
91
  onfido/models/document_properties_document_numbers_inner.py,sha256=xUZ4yR2OXisMrBjygBDhJGYySvfdcfc1VEvMLrOqN1k,3198
90
- onfido/models/document_properties_driving_licence_information.py,sha256=ij5akKUnk_-TZxXeh0jun4IGQf6d4NhmSURHeidjxpA,3486
92
+ onfido/models/document_properties_driving_licence_information_item.py,sha256=avQ-fOOqkW7FGZ-Y8NUFSlCWG3Y9SzPgRc97eCEuj8U,3502
91
93
  onfido/models/document_properties_extracted_data.py,sha256=vW-B2osOZhlGdeanDlgBDLTcDWYLT6-q5SudaSaBuo8,5376
92
94
  onfido/models/document_properties_nfc.py,sha256=0ToFxpEA45NN6Oy9jpOzmLktJpWLAWhBREjehJds-1Y,4475
93
95
  onfido/models/document_report.py,sha256=3TBwNCLsnAso7Mv0rWryIGRRTEBuL2bR3Sdx80A-G-4,5787
@@ -99,7 +101,7 @@ onfido/models/document_video_report.py,sha256=Tn4FmpTstClrDbX2WJWjBi46Bq3asDMSZO
99
101
  onfido/models/document_video_with_address_information_report.py,sha256=_lY0TXi9XbjLVqzIYBqc9lxP6GSn4MMYpK0iBpSrkyQ,5895
100
102
  onfido/models/document_with_address_information_report.py,sha256=zGEpWmcmzURrdDJFWhdJfVB_WdOpaTftdd_00dt7E30,5875
101
103
  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
104
+ onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=qmQMfYGj3-jLwwNBK4OduzWy6rfucjOysmgf0fs5Uf0,16261
103
105
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_passenger_vehicle.py,sha256=xI7noUuOz8MIrJ7iErenQgww2EmgTukpYehLBcC1zZI,3792
104
106
  onfido/models/document_with_driver_verification_report_all_of_properties_all_of_vehicle_class_details_inner.py,sha256=7IYp8uXyMjA2WKyEDkQw_3_ZixPVosy3x7XcXSksXVQ,3866
105
107
  onfido/models/document_with_driving_licence_information_report.py,sha256=ZNBwUXWK41K6OMSvaGHZVLZoVVBqRickt7MpbSxjqKA,5903
@@ -218,6 +220,8 @@ onfido/models/proof_of_address_report.py,sha256=CNaXwG5vpkpQKAxmqPzUKokqj0aYHLee
218
220
  onfido/models/repeat_attempts_list.py,sha256=o525XbVZGuh51XkpaEcj9oZcm0tH1ARVaDQmc8Tg6ck,5115
219
221
  onfido/models/repeat_attempts_list_repeat_attempts_inner.py,sha256=7ws6yRbOkjoYnDG79ZvlBhBFqFFS6vz1DHw8Zfb6J68,5501
220
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
221
225
  onfido/models/report_document.py,sha256=f0C7yaCS2dF0y0Wv0tmL_UpaleEmE5ycJmpcHmpxdBs,3043
222
226
  onfido/models/report_name.py,sha256=2RnO0-DgwRXiRJG-1_SYJXk9tYtmTKtkeogeNZ6amls,1797
223
227
  onfido/models/report_result.py,sha256=Sc7o4kAmyMQrNKcd1R9LXdlkeJu_IgcaPTZ8x09GTw4,789
@@ -275,8 +279,8 @@ onfido/models/watchlist_sanctions_only_report.py,sha256=rmp04GCVBnLDjS_3uOEV9jNG
275
279
  onfido/models/watchlist_standard_breakdown.py,sha256=S-y95QaIFHX7mxpTM7Icw3MSf6zRIxvWP9sogqGLruQ,4837
276
280
  onfido/models/watchlist_standard_properties.py,sha256=H6PQLnRUJyVB6iEqNzbcq2b8sL0uHKvZ3bvlnjvAxMo,3258
277
281
  onfido/models/watchlist_standard_report.py,sha256=mh6YqlnlKGnKk9dt4Gs1qWrhuE71rKPu7k6X9AlHhvo,5193
278
- onfido/models/webhook.py,sha256=jfqOqga-muzPOTCX90N0yRY41FOWDHsRbwK-2SMHGBI,4613
279
- onfido/models/webhook_builder.py,sha256=pwhg4W9CuRSdup25LJAV099md70EHPJ9H9gEaREGHy0,4172
282
+ onfido/models/webhook.py,sha256=pMgD0U2WSquDQSa0dAjztD2AzuDl8ZYfpRJoPUZ5PTo,5820
283
+ onfido/models/webhook_builder.py,sha256=EAvRZdklz5zPoQ_tDl2Ywetq_kRaRAWV09l5rkKPA5I,5379
280
284
  onfido/models/webhook_create.py,sha256=8Ur6l4YhUAaIl4WCd-dWqPVmHGZ-2cxROA--U0BLVus,3070
281
285
  onfido/models/webhook_event.py,sha256=g5lobXwKJsA0J34puBVMcLbm7vcrVlZoFTuvRvCFE9o,3323
282
286
  onfido/models/webhook_event_object_status.py,sha256=5R3ggSbPedMyHsiRfx4DXfb-nkURFzhN7EteA3mhXQ8,1325
@@ -287,9 +291,9 @@ onfido/models/webhook_event_resource_type.py,sha256=OGkDFWQNxYZOv871DW5xc4eB-oeQ
287
291
  onfido/models/webhook_event_type.py,sha256=YY-PhXB_Hb9O5QOxinQgjRZYIH6XSu5QF5TJyCviWjg,1625
288
292
  onfido/models/webhook_resend.py,sha256=H_qpNUnh0y1FJQUy1B6ngY69iH7nHU9qjglRXLXKmPc,3478
289
293
  onfido/models/webhook_response.py,sha256=VpnpGMafbWR7oj2Tws-sQlVmNzP9RPEMKvQ_g6wrbt0,3557
290
- onfido/models/webhook_shared.py,sha256=5KI0bTRB_XbewC1xG1Uhezj5lBjnKGqCIXfrdJvgFJI,4025
294
+ onfido/models/webhook_shared.py,sha256=SWwKu5H9l7bDt1sKZD_SvrsDfEafVcnP_LNsbxXPHkE,5232
291
295
  onfido/models/webhook_update.py,sha256=gHE4t1uN84tbCLAcXv5ntfV-HHsWMNCcxjqsDG-r38E,3104
292
- onfido/models/webhook_updater.py,sha256=6Ff3y5eObsgIDFON-LOjPNyOCbCQ3PF7Eb-dvN6mpuc,4196
296
+ onfido/models/webhook_updater.py,sha256=rtB5nVG6BHjo4xihLLSq77RezySx8OV_SDt2ozJzSKs,5403
293
297
  onfido/models/webhooks_list.py,sha256=Mgq7ViW-WcNbQjxTkAyU-RxY3SOBqdDxY3RcwFu6yTU,3449
294
298
  onfido/models/webhooks_resend_item.py,sha256=huJSQx0TfXawHiGG7ftxQH399DeK0xWsvTTSLXKM4Nw,3356
295
299
  onfido/models/workflow_run.py,sha256=0LI2s-9Rv3VxRQfYU8kofRJcqp3k0hrB64tvNNXXgUw,6952
@@ -300,8 +304,8 @@ onfido/models/workflow_run_request.py,sha256=IGCpkcvqn6kJ2L2nZeuBHNeANqcSUfvx0Ig
300
304
  onfido/models/workflow_run_response.py,sha256=Ze469zDUWxZMxqIxas6Sjts3EB21z7PhZTfuWgs0Thw,5080
301
305
  onfido/models/workflow_run_shared.py,sha256=WP9qLkf79iaJTeK-QxkwzB2MvR4atT3LdZZRmZopPp4,4857
302
306
  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,,
307
+ onfido_python-5.2.0.dist-info/licenses/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
308
+ onfido_python-5.2.0.dist-info/METADATA,sha256=bdjXCmYxLaDS_ZIWCuFS_nlJgAgZAjYN2_6R-XJU2WY,676
309
+ onfido_python-5.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
310
+ onfido_python-5.2.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
311
+ onfido_python-5.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5