onfido-python 2.10.1__py3-none-any.whl → 3.1.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 (326) hide show
  1. onfido/__init__.py +311 -2
  2. onfido/api/__init__.py +5 -0
  3. onfido/api/default_api.py +17207 -0
  4. onfido/api_client.py +770 -0
  5. onfido/api_response.py +21 -0
  6. onfido/configuration.py +460 -0
  7. onfido/exceptions.py +184 -77
  8. onfido/models/__init__.py +291 -0
  9. onfido/models/address.py +169 -0
  10. onfido/models/address_builder.py +169 -0
  11. onfido/models/address_shared.py +169 -0
  12. onfido/models/addresses_list.py +108 -0
  13. onfido/models/applicant.py +162 -0
  14. onfido/models/applicant_builder.py +152 -0
  15. onfido/models/applicant_create.py +117 -0
  16. onfido/models/applicant_request.py +116 -0
  17. onfido/models/applicant_response.py +146 -0
  18. onfido/models/applicant_shared.py +115 -0
  19. onfido/models/applicant_update.py +123 -0
  20. onfido/models/applicant_updater.py +158 -0
  21. onfido/models/applicants_list.py +108 -0
  22. onfido/models/check.py +147 -0
  23. onfido/models/check_builder.py +127 -0
  24. onfido/models/check_request.py +119 -0
  25. onfido/models/check_response.py +137 -0
  26. onfido/models/check_shared.py +108 -0
  27. onfido/models/checks_list.py +108 -0
  28. onfido/models/complete_task_builder.py +104 -0
  29. onfido/models/complete_task_data_builder.py +143 -0
  30. onfido/models/consent_item.py +109 -0
  31. onfido/models/consents_builder.py +98 -0
  32. onfido/models/country_codes.py +285 -0
  33. onfido/models/device_intelligence_breakdown.py +110 -0
  34. onfido/models/device_intelligence_breakdown_breakdown.py +104 -0
  35. onfido/models/device_intelligence_breakdown_breakdown_device.py +104 -0
  36. onfido/models/device_intelligence_breakdown_breakdown_device_breakdown.py +114 -0
  37. onfido/models/device_intelligence_breakdown_properties.py +116 -0
  38. onfido/models/device_intelligence_breakdown_properties_device.py +189 -0
  39. onfido/models/device_intelligence_breakdown_properties_geolocation.py +105 -0
  40. onfido/models/device_intelligence_breakdown_properties_ip.py +106 -0
  41. onfido/models/device_intelligence_report.py +135 -0
  42. onfido/models/document.py +142 -0
  43. onfido/models/document_breakdown.py +152 -0
  44. onfido/models/document_breakdown_age_validation.py +106 -0
  45. onfido/models/document_breakdown_age_validation_breakdown.py +104 -0
  46. onfido/models/document_breakdown_compromised_document.py +106 -0
  47. onfido/models/document_breakdown_compromised_document_breakdown.py +109 -0
  48. onfido/models/document_breakdown_data_comparison.py +106 -0
  49. onfido/models/document_breakdown_data_comparison_breakdown.py +139 -0
  50. onfido/models/document_breakdown_data_comparison_breakdown_issuing_country.py +102 -0
  51. onfido/models/document_breakdown_data_consistency.py +106 -0
  52. onfido/models/document_breakdown_data_consistency_breakdown.py +149 -0
  53. onfido/models/document_breakdown_data_validation.py +106 -0
  54. onfido/models/document_breakdown_data_validation_breakdown.py +136 -0
  55. onfido/models/document_breakdown_data_validation_breakdown_document_expiration.py +102 -0
  56. onfido/models/document_breakdown_data_validation_breakdown_expiry_date.py +102 -0
  57. onfido/models/document_breakdown_image_integrity.py +106 -0
  58. onfido/models/document_breakdown_image_integrity_breakdown.py +122 -0
  59. onfido/models/document_breakdown_image_integrity_breakdown_colour_picture.py +102 -0
  60. onfido/models/document_breakdown_image_integrity_breakdown_conclusive_document_quality.py +106 -0
  61. onfido/models/document_breakdown_image_integrity_breakdown_image_quality.py +106 -0
  62. onfido/models/document_breakdown_image_integrity_breakdown_supported_document.py +102 -0
  63. onfido/models/document_breakdown_issuing_authority.py +106 -0
  64. onfido/models/document_breakdown_issuing_authority_breakdown.py +110 -0
  65. onfido/models/document_breakdown_issuing_authority_breakdown_nfc_active_authentication.py +102 -0
  66. onfido/models/document_breakdown_issuing_authority_breakdown_nfc_passive_authentication.py +102 -0
  67. onfido/models/document_breakdown_police_record.py +100 -0
  68. onfido/models/document_breakdown_visual_authenticity.py +106 -0
  69. onfido/models/document_breakdown_visual_authenticity_breakdown.py +146 -0
  70. onfido/models/document_breakdown_visual_authenticity_breakdown_digital_tampering.py +102 -0
  71. onfido/models/document_breakdown_visual_authenticity_breakdown_face_detection.py +102 -0
  72. onfido/models/document_breakdown_visual_authenticity_breakdown_fonts.py +102 -0
  73. onfido/models/document_breakdown_visual_authenticity_breakdown_original_document_present.py +106 -0
  74. onfido/models/document_breakdown_visual_authenticity_breakdown_other.py +102 -0
  75. onfido/models/document_breakdown_visual_authenticity_breakdown_picture_face_integrity.py +102 -0
  76. onfido/models/document_breakdown_visual_authenticity_breakdown_security_features.py +102 -0
  77. onfido/models/document_breakdown_visual_authenticity_breakdown_template.py +102 -0
  78. onfido/models/document_cdq_reasons.py +114 -0
  79. onfido/models/document_iq_reasons.py +118 -0
  80. onfido/models/document_odp_reasons.py +106 -0
  81. onfido/models/document_properties.py +191 -0
  82. onfido/models/document_properties_address_lines.py +110 -0
  83. onfido/models/document_properties_barcode_inner.py +135 -0
  84. onfido/models/document_properties_document_classification.py +104 -0
  85. onfido/models/document_properties_document_numbers_inner.py +102 -0
  86. onfido/models/document_properties_driving_licence_information.py +107 -0
  87. onfido/models/document_properties_extracted_data.py +141 -0
  88. onfido/models/document_properties_nfc.py +125 -0
  89. onfido/models/document_report.py +141 -0
  90. onfido/models/document_response.py +111 -0
  91. onfido/models/document_shared.py +129 -0
  92. onfido/models/document_types.py +60 -0
  93. onfido/models/document_video_report.py +141 -0
  94. onfido/models/document_video_with_address_information_report.py +141 -0
  95. onfido/models/document_with_address_information_report.py +141 -0
  96. onfido/models/document_with_driver_verification_report.py +141 -0
  97. onfido/models/document_with_driver_verification_report_all_of_properties.py +215 -0
  98. onfido/models/document_with_driver_verification_report_all_of_properties_all_of_passenger_vehicle.py +105 -0
  99. onfido/models/document_with_driver_verification_report_all_of_properties_all_of_vehicle_class_details_inner.py +107 -0
  100. onfido/models/document_with_driving_licence_information_report.py +141 -0
  101. onfido/models/documents_list.py +108 -0
  102. onfido/models/error.py +104 -0
  103. onfido/models/error1.py +106 -0
  104. onfido/models/error_properties.py +104 -0
  105. onfido/models/error_properties1.py +102 -0
  106. onfido/models/extract_request.py +100 -0
  107. onfido/models/extraction.py +112 -0
  108. onfido/models/extraction_document_classification.py +120 -0
  109. onfido/models/extraction_extracted_data.py +176 -0
  110. onfido/models/facial_similarity_motion_breakdown.py +116 -0
  111. onfido/models/facial_similarity_motion_breakdown_face_comparison.py +106 -0
  112. onfido/models/facial_similarity_motion_breakdown_image_integrity.py +106 -0
  113. onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown.py +110 -0
  114. onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown_face_detected.py +102 -0
  115. onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown_source_integrity.py +106 -0
  116. onfido/models/facial_similarity_motion_breakdown_visual_authenticity.py +106 -0
  117. onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown.py +110 -0
  118. onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown_spoofing_detection.py +106 -0
  119. onfido/models/facial_similarity_motion_properties.py +100 -0
  120. onfido/models/facial_similarity_motion_report.py +141 -0
  121. onfido/models/facial_similarity_photo_breakdown.py +116 -0
  122. onfido/models/facial_similarity_photo_breakdown_face_comparison.py +106 -0
  123. onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown.py +104 -0
  124. onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown_face_match.py +106 -0
  125. onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown_face_match_properties.py +102 -0
  126. onfido/models/facial_similarity_photo_breakdown_image_integrity.py +106 -0
  127. onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown.py +110 -0
  128. onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown_face_detected.py +102 -0
  129. onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown_source_integrity.py +106 -0
  130. onfido/models/facial_similarity_photo_breakdown_visual_authenticity.py +106 -0
  131. onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown.py +104 -0
  132. onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown_spoofing_detection.py +106 -0
  133. onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown_spoofing_detection_properties.py +100 -0
  134. onfido/models/facial_similarity_photo_fully_auto_breakdown.py +116 -0
  135. onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity.py +106 -0
  136. onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown.py +110 -0
  137. onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown_source_integrity.py +106 -0
  138. onfido/models/facial_similarity_photo_fully_auto_properties.py +100 -0
  139. onfido/models/facial_similarity_photo_fully_auto_report.py +141 -0
  140. onfido/models/facial_similarity_photo_properties.py +100 -0
  141. onfido/models/facial_similarity_photo_report.py +141 -0
  142. onfido/models/facial_similarity_video_breakdown.py +116 -0
  143. onfido/models/facial_similarity_video_breakdown_face_comparison.py +106 -0
  144. onfido/models/facial_similarity_video_breakdown_image_integrity.py +106 -0
  145. onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown.py +110 -0
  146. onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown_face_detected.py +102 -0
  147. onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown_source_integrity.py +106 -0
  148. onfido/models/facial_similarity_video_breakdown_visual_authenticity.py +106 -0
  149. onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown.py +110 -0
  150. onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_liveness_detected.py +102 -0
  151. onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_spoofing_detection.py +106 -0
  152. onfido/models/facial_similarity_video_properties.py +100 -0
  153. onfido/models/facial_similarity_video_report.py +141 -0
  154. onfido/models/id_number.py +114 -0
  155. onfido/models/id_photo.py +113 -0
  156. onfido/models/id_photo_response.py +113 -0
  157. onfido/models/id_photos_list.py +108 -0
  158. onfido/models/identity_enhanced_breakdown.py +122 -0
  159. onfido/models/identity_enhanced_breakdown_address.py +106 -0
  160. onfido/models/identity_enhanced_breakdown_address_breakdown.py +116 -0
  161. onfido/models/identity_enhanced_breakdown_address_breakdown_credit_agencies.py +106 -0
  162. onfido/models/identity_enhanced_breakdown_address_breakdown_credit_agencies_properties.py +100 -0
  163. onfido/models/identity_enhanced_breakdown_address_breakdown_telephone_database.py +102 -0
  164. onfido/models/identity_enhanced_breakdown_address_breakdown_voting_register.py +102 -0
  165. onfido/models/identity_enhanced_breakdown_date_of_birth.py +106 -0
  166. onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown.py +110 -0
  167. onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown_credit_agencies.py +102 -0
  168. onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown_voting_register.py +102 -0
  169. onfido/models/identity_enhanced_breakdown_mortality.py +100 -0
  170. onfido/models/identity_enhanced_breakdown_sources.py +106 -0
  171. onfido/models/identity_enhanced_breakdown_sources_breakdown.py +104 -0
  172. onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources.py +106 -0
  173. onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources_properties.py +100 -0
  174. onfido/models/identity_enhanced_properties.py +110 -0
  175. onfido/models/identity_enhanced_properties_matched_addresses_inner.py +102 -0
  176. onfido/models/identity_enhanced_report.py +141 -0
  177. onfido/models/india_pan_report.py +141 -0
  178. onfido/models/india_pan_report_all_of_breakdown.py +104 -0
  179. onfido/models/india_pan_report_all_of_breakdown_device.py +104 -0
  180. onfido/models/india_pan_report_all_of_breakdown_device_breakdown.py +109 -0
  181. onfido/models/india_pan_report_all_of_breakdown_device_breakdown_pan_valid.py +100 -0
  182. onfido/models/india_pan_report_all_of_properties.py +104 -0
  183. onfido/models/india_pan_report_all_of_properties_device.py +102 -0
  184. onfido/models/known_faces_breakdown.py +110 -0
  185. onfido/models/known_faces_breakdown_image_integrity.py +100 -0
  186. onfido/models/known_faces_breakdown_previously_seen_faces.py +100 -0
  187. onfido/models/known_faces_properties.py +108 -0
  188. onfido/models/known_faces_properties_matches_inner.py +108 -0
  189. onfido/models/known_faces_report.py +141 -0
  190. onfido/models/live_photo.py +113 -0
  191. onfido/models/live_photo_response.py +113 -0
  192. onfido/models/live_photos_list.py +108 -0
  193. onfido/models/live_video.py +115 -0
  194. onfido/models/live_videos_list.py +108 -0
  195. onfido/models/location.py +103 -0
  196. onfido/models/location_builder.py +103 -0
  197. onfido/models/location_shared.py +103 -0
  198. onfido/models/motion_capture.py +113 -0
  199. onfido/models/motion_captures_list.py +108 -0
  200. onfido/models/photo_auto_reasons.py +108 -0
  201. onfido/models/photo_reasons.py +108 -0
  202. onfido/models/proof_of_address_breakdown.py +116 -0
  203. onfido/models/proof_of_address_breakdown_data_comparison.py +106 -0
  204. onfido/models/proof_of_address_breakdown_data_comparison_breakdown.py +114 -0
  205. onfido/models/proof_of_address_breakdown_document_classification.py +106 -0
  206. onfido/models/proof_of_address_breakdown_document_classification_breakdown.py +104 -0
  207. onfido/models/proof_of_address_breakdown_image_integrity.py +106 -0
  208. onfido/models/proof_of_address_breakdown_image_integrity_breakdown.py +104 -0
  209. onfido/models/proof_of_address_properties.py +125 -0
  210. onfido/models/proof_of_address_report.py +141 -0
  211. onfido/models/repeat_attempts_list.py +117 -0
  212. onfido/models/repeat_attempts_list_repeat_attempts_inner.py +143 -0
  213. onfido/models/report.py +621 -0
  214. onfido/models/report_document.py +100 -0
  215. onfido/models/report_name.py +56 -0
  216. onfido/models/report_result.py +38 -0
  217. onfido/models/report_shared.py +129 -0
  218. onfido/models/report_status.py +40 -0
  219. onfido/models/report_sub_result.py +39 -0
  220. onfido/models/reports_list.py +108 -0
  221. onfido/models/results_feedback.py +116 -0
  222. onfido/models/sdk_token.py +100 -0
  223. onfido/models/sdk_token_builder.py +106 -0
  224. onfido/models/sdk_token_request.py +106 -0
  225. onfido/models/sdk_token_response.py +100 -0
  226. onfido/models/task.py +146 -0
  227. onfido/models/task_item.py +128 -0
  228. onfido/models/timeline_file_reference.py +102 -0
  229. onfido/models/us_driving_licence_breakdown.py +116 -0
  230. onfido/models/us_driving_licence_breakdown_address.py +106 -0
  231. onfido/models/us_driving_licence_breakdown_address_breakdown.py +129 -0
  232. onfido/models/us_driving_licence_breakdown_document.py +106 -0
  233. onfido/models/us_driving_licence_breakdown_document_breakdown.py +119 -0
  234. onfido/models/us_driving_licence_breakdown_personal.py +106 -0
  235. onfido/models/us_driving_licence_breakdown_personal_breakdown.py +164 -0
  236. onfido/models/us_driving_licence_builder.py +185 -0
  237. onfido/models/us_driving_licence_report.py +141 -0
  238. onfido/models/us_driving_licence_shared.py +185 -0
  239. onfido/models/video_reasons.py +106 -0
  240. onfido/models/watchlist_aml_breakdown.py +122 -0
  241. onfido/models/watchlist_aml_breakdown_adverse_media.py +100 -0
  242. onfido/models/watchlist_aml_breakdown_legal_and_regulatory_warnings.py +100 -0
  243. onfido/models/watchlist_aml_breakdown_politically_exposed_person.py +100 -0
  244. onfido/models/watchlist_aml_breakdown_sanction.py +100 -0
  245. onfido/models/watchlist_aml_properties.py +100 -0
  246. onfido/models/watchlist_aml_report.py +141 -0
  247. onfido/models/watchlist_enhanced_breakdown.py +122 -0
  248. onfido/models/watchlist_enhanced_properties.py +100 -0
  249. onfido/models/watchlist_enhanced_report.py +141 -0
  250. onfido/models/watchlist_monitor.py +120 -0
  251. onfido/models/watchlist_monitor_builder.py +111 -0
  252. onfido/models/watchlist_monitor_match.py +102 -0
  253. onfido/models/watchlist_monitor_matches_list.py +108 -0
  254. onfido/models/watchlist_monitor_matches_updater.py +102 -0
  255. onfido/models/watchlist_monitor_response.py +107 -0
  256. onfido/models/watchlist_monitor_shared.py +111 -0
  257. onfido/models/watchlist_monitors_list.py +108 -0
  258. onfido/models/watchlist_peps_only_report.py +141 -0
  259. onfido/models/watchlist_sanctions_only_report.py +141 -0
  260. onfido/models/watchlist_standard_breakdown.py +116 -0
  261. onfido/models/watchlist_standard_properties.py +100 -0
  262. onfido/models/watchlist_standard_report.py +141 -0
  263. onfido/models/webhook.py +115 -0
  264. onfido/models/webhook_builder.py +109 -0
  265. onfido/models/webhook_create.py +100 -0
  266. onfido/models/webhook_event.py +104 -0
  267. onfido/models/webhook_event_payload.py +111 -0
  268. onfido/models/webhook_event_payload_object.py +107 -0
  269. onfido/models/webhook_event_type.py +52 -0
  270. onfido/models/webhook_resend.py +108 -0
  271. onfido/models/webhook_response.py +106 -0
  272. onfido/models/webhook_shared.py +107 -0
  273. onfido/models/webhook_update.py +100 -0
  274. onfido/models/webhook_updater.py +109 -0
  275. onfido/models/webhooks_list.py +108 -0
  276. onfido/models/webhooks_resend_item.py +103 -0
  277. onfido/models/workflow_run.py +149 -0
  278. onfido/models/workflow_run_builder.py +123 -0
  279. onfido/models/workflow_run_request.py +100 -0
  280. onfido/models/workflow_run_response.py +126 -0
  281. onfido/models/workflow_run_response_error.py +102 -0
  282. onfido/models/workflow_run_shared.py +121 -0
  283. onfido/models/workflow_run_shared_link.py +119 -0
  284. onfido/py.typed +0 -0
  285. onfido/rest.py +258 -0
  286. onfido/webhook_event_verifier.py +7 -3
  287. {onfido_python-2.10.1.dist-info → onfido_python-3.1.0.dist-info}/LICENSE +1 -1
  288. onfido_python-3.1.0.dist-info/METADATA +18 -0
  289. onfido_python-3.1.0.dist-info/RECORD +291 -0
  290. {onfido_python-2.10.1.dist-info → onfido_python-3.1.0.dist-info}/WHEEL +2 -1
  291. onfido_python-3.1.0.dist-info/top_level.txt +1 -0
  292. onfido/aio_resource.py +0 -131
  293. onfido/mimetype.py +0 -5
  294. onfido/onfido.py +0 -71
  295. onfido/onfido_download.py +0 -11
  296. onfido/regions.py +0 -11
  297. onfido/resource.py +0 -88
  298. onfido/resources/address_picker.py +0 -6
  299. onfido/resources/applicants.py +0 -23
  300. onfido/resources/checks.py +0 -19
  301. onfido/resources/documents.py +0 -16
  302. onfido/resources/extraction.py +0 -6
  303. onfido/resources/live_photos.py +0 -17
  304. onfido/resources/live_videos.py +0 -16
  305. onfido/resources/motion_captures.py +0 -16
  306. onfido/resources/reports.py +0 -16
  307. onfido/resources/sdk_tokens.py +0 -5
  308. onfido/resources/watchlist_monitors.py +0 -16
  309. onfido/resources/webhooks.py +0 -18
  310. onfido/resources/workflow_runs.py +0 -17
  311. onfido/resources_aio/address_picker.py +0 -6
  312. onfido/resources_aio/applicants.py +0 -23
  313. onfido/resources_aio/checks.py +0 -19
  314. onfido/resources_aio/documents.py +0 -16
  315. onfido/resources_aio/extraction.py +0 -6
  316. onfido/resources_aio/live_photos.py +0 -17
  317. onfido/resources_aio/live_videos.py +0 -16
  318. onfido/resources_aio/motion_captures.py +0 -16
  319. onfido/resources_aio/reports.py +0 -16
  320. onfido/resources_aio/sdk_tokens.py +0 -6
  321. onfido/resources_aio/watchlist_monitors.py +0 -16
  322. onfido/resources_aio/webhooks.py +0 -18
  323. onfido/resources_aio/workflow_runs.py +0 -17
  324. onfido/utils.py +0 -22
  325. onfido_python-2.10.1.dist-info/METADATA +0 -181
  326. onfido_python-2.10.1.dist-info/RECORD +0 -40
onfido/rest.py ADDED
@@ -0,0 +1,258 @@
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
+ import io
16
+ import json
17
+ import re
18
+ import ssl
19
+
20
+ import urllib3
21
+
22
+ from onfido.exceptions import ApiException, ApiValueError
23
+
24
+ SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
25
+ RESTResponseType = urllib3.HTTPResponse
26
+
27
+
28
+ def is_socks_proxy_url(url):
29
+ if url is None:
30
+ return False
31
+ split_section = url.split("://")
32
+ if len(split_section) < 2:
33
+ return False
34
+ else:
35
+ return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
36
+
37
+
38
+ class RESTResponse(io.IOBase):
39
+
40
+ def __init__(self, resp) -> None:
41
+ self.response = resp
42
+ self.status = resp.status
43
+ self.reason = resp.reason
44
+ self.data = None
45
+
46
+ def read(self):
47
+ if self.data is None:
48
+ self.data = self.response.data
49
+ return self.data
50
+
51
+ def getheaders(self):
52
+ """Returns a dictionary of the response headers."""
53
+ return self.response.headers
54
+
55
+ def getheader(self, name, default=None):
56
+ """Returns a given response header."""
57
+ return self.response.headers.get(name, default)
58
+
59
+
60
+ class RESTClientObject:
61
+
62
+ def __init__(self, configuration) -> None:
63
+ # urllib3.PoolManager will pass all kw parameters to connectionpool
64
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
65
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
66
+ # Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
67
+
68
+ # cert_reqs
69
+ if configuration.verify_ssl:
70
+ cert_reqs = ssl.CERT_REQUIRED
71
+ else:
72
+ cert_reqs = ssl.CERT_NONE
73
+
74
+ pool_args = {
75
+ "cert_reqs": cert_reqs,
76
+ "ca_certs": configuration.ssl_ca_cert,
77
+ "cert_file": configuration.cert_file,
78
+ "key_file": configuration.key_file,
79
+ "timeout": configuration.timeout,
80
+ }
81
+ if configuration.assert_hostname is not None:
82
+ pool_args['assert_hostname'] = (
83
+ configuration.assert_hostname
84
+ )
85
+
86
+ if configuration.retries is not None:
87
+ pool_args['retries'] = configuration.retries
88
+
89
+ if configuration.tls_server_name:
90
+ pool_args['server_hostname'] = configuration.tls_server_name
91
+
92
+
93
+ if configuration.socket_options is not None:
94
+ pool_args['socket_options'] = configuration.socket_options
95
+
96
+ if configuration.connection_pool_maxsize is not None:
97
+ pool_args['maxsize'] = configuration.connection_pool_maxsize
98
+
99
+ # https pool manager
100
+ self.pool_manager: urllib3.PoolManager
101
+
102
+ if configuration.proxy:
103
+ if is_socks_proxy_url(configuration.proxy):
104
+ from urllib3.contrib.socks import SOCKSProxyManager
105
+ pool_args["proxy_url"] = configuration.proxy
106
+ pool_args["headers"] = configuration.proxy_headers
107
+ self.pool_manager = SOCKSProxyManager(**pool_args)
108
+ else:
109
+ pool_args["proxy_url"] = configuration.proxy
110
+ pool_args["proxy_headers"] = configuration.proxy_headers
111
+ self.pool_manager = urllib3.ProxyManager(**pool_args)
112
+ else:
113
+ self.pool_manager = urllib3.PoolManager(**pool_args)
114
+
115
+ def request(
116
+ self,
117
+ method,
118
+ url,
119
+ headers=None,
120
+ body=None,
121
+ post_params=None,
122
+ _request_timeout=None
123
+ ):
124
+ """Perform requests.
125
+
126
+ :param method: http request method
127
+ :param url: http request url
128
+ :param headers: http request headers
129
+ :param body: request json body, for `application/json`
130
+ :param post_params: request post parameters,
131
+ `application/x-www-form-urlencoded`
132
+ and `multipart/form-data`
133
+ :param _request_timeout: timeout setting for this request. If one
134
+ number provided, it will be total request
135
+ timeout. It can also be a pair (tuple) of
136
+ (connection, read) timeouts.
137
+ """
138
+ method = method.upper()
139
+ assert method in [
140
+ 'GET',
141
+ 'HEAD',
142
+ 'DELETE',
143
+ 'POST',
144
+ 'PUT',
145
+ 'PATCH',
146
+ 'OPTIONS'
147
+ ]
148
+
149
+ if post_params and body:
150
+ raise ApiValueError(
151
+ "body parameter cannot be used with post_params parameter."
152
+ )
153
+
154
+ post_params = post_params or {}
155
+ headers = headers or {}
156
+
157
+ timeout = self.pool_manager.connection_pool_kw.get('timeout')
158
+ if _request_timeout:
159
+ if isinstance(_request_timeout, (int, float)):
160
+ timeout = urllib3.Timeout(total=_request_timeout)
161
+ elif (
162
+ isinstance(_request_timeout, tuple)
163
+ and len(_request_timeout) == 2
164
+ ):
165
+ timeout = urllib3.Timeout(
166
+ connect=_request_timeout[0],
167
+ read=_request_timeout[1]
168
+ )
169
+
170
+ try:
171
+ # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
172
+ if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
173
+
174
+ # no content type provided or payload is json
175
+ content_type = headers.get('Content-Type')
176
+ if (
177
+ not content_type
178
+ or re.search('json', content_type, re.IGNORECASE)
179
+ ):
180
+ request_body = None
181
+ if body is not None:
182
+ request_body = json.dumps(body)
183
+ r = self.pool_manager.request(
184
+ method,
185
+ url,
186
+ body=request_body,
187
+ timeout=timeout,
188
+ headers=headers,
189
+ preload_content=False
190
+ )
191
+ elif content_type == 'application/x-www-form-urlencoded':
192
+ r = self.pool_manager.request(
193
+ method,
194
+ url,
195
+ fields=post_params,
196
+ encode_multipart=False,
197
+ timeout=timeout,
198
+ headers=headers,
199
+ preload_content=False
200
+ )
201
+ elif content_type == 'multipart/form-data':
202
+ # must del headers['Content-Type'], or the correct
203
+ # Content-Type which generated by urllib3 will be
204
+ # overwritten.
205
+ del headers['Content-Type']
206
+ # Ensures that dict objects are serialized
207
+ post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
208
+ r = self.pool_manager.request(
209
+ method,
210
+ url,
211
+ fields=post_params,
212
+ encode_multipart=True,
213
+ timeout=timeout,
214
+ headers=headers,
215
+ preload_content=False
216
+ )
217
+ # Pass a `string` parameter directly in the body to support
218
+ # other content types than JSON when `body` argument is
219
+ # provided in serialized form.
220
+ elif isinstance(body, str) or isinstance(body, bytes):
221
+ r = self.pool_manager.request(
222
+ method,
223
+ url,
224
+ body=body,
225
+ timeout=timeout,
226
+ headers=headers,
227
+ preload_content=False
228
+ )
229
+ elif headers['Content-Type'] == 'text/plain' and isinstance(body, bool):
230
+ request_body = "true" if body else "false"
231
+ r = self.pool_manager.request(
232
+ method,
233
+ url,
234
+ body=request_body,
235
+ preload_content=False,
236
+ timeout=timeout,
237
+ headers=headers)
238
+ else:
239
+ # Cannot generate the request from given parameters
240
+ msg = """Cannot prepare a request message for provided
241
+ arguments. Please check that your arguments match
242
+ declared content type."""
243
+ raise ApiException(status=0, reason=msg)
244
+ # For `GET`, `HEAD`
245
+ else:
246
+ r = self.pool_manager.request(
247
+ method,
248
+ url,
249
+ fields={},
250
+ timeout=timeout,
251
+ headers=headers,
252
+ preload_content=False
253
+ )
254
+ except urllib3.exceptions.SSLError as e:
255
+ msg = "\n".join([type(e).__name__, str(e)])
256
+ raise ApiException(status=0, reason=msg)
257
+
258
+ return RESTResponse(r)
@@ -1,7 +1,11 @@
1
1
  import hmac
2
2
  import hashlib
3
3
  import json
4
- from .exceptions import OnfidoInvalidSignatureError
4
+
5
+ from .models import WebhookEvent
6
+
7
+ class OnfidoInvalidSignatureError(Exception):
8
+ pass
5
9
 
6
10
  class WebhookEventVerifier:
7
11
  def __init__(self, webhook_token):
@@ -15,6 +19,6 @@ class WebhookEventVerifier:
15
19
 
16
20
  # Compare the signatures (prevent against timing attacks).
17
21
  if not hmac.compare_digest(signature, event_signature):
18
- raise OnfidoInvalidSignatureError()
22
+ raise OnfidoInvalidSignatureError("Invalid signature for webhook event")
19
23
 
20
- return json.loads(raw_event)["payload"]
24
+ return WebhookEvent.from_json(raw_event)
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Onfido
3
+ Copyright (c) 2024 Onfido
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: onfido-python
3
+ Version: 3.1.0
4
+ Summary: Python library for the Onfido API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ License: MIT
9
+ Keywords: OpenAPI,OpenAPI-Generator,onfido,identity
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: urllib3 <2.1.0,>=1.25.3
13
+ Requires-Dist: python-dateutil
14
+ Requires-Dist: pydantic >=2
15
+ Requires-Dist: typing-extensions >=4.7.1
16
+
17
+ The Onfido API (v3.6)
18
+
@@ -0,0 +1,291 @@
1
+ onfido/__init__.py,sha256=VrBQDCcdxyUQsfrw0d2SJihjONvolMo8xk60aodGfL4,27053
2
+ onfido/api_client.py,sha256=vg4wTa9ZeuzaM1CgZyhMT9-GV_pRm828uAf3lfqh0wA,26205
3
+ onfido/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ onfido/configuration.py,sha256=moVSShURgTuKaLvP7ibfuqI0AiqxtuO21m6T-GStR1A,14613
5
+ onfido/exceptions.py,sha256=5W4DJIPVwIzljxoedh5czPXOTBaq6CTTVD92h5ZyN88,5894
6
+ onfido/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ onfido/rest.py,sha256=NSJRLqL8U0UzO2YY0KCP4_BmvhOedRHC7zGVTrJ1VFU,9415
8
+ onfido/webhook_event_verifier.py,sha256=Xy1eK8zorxqCKvLmJw9hS_-B6j_N-akJjxjZp0M8u20,847
9
+ onfido/api/__init__.py,sha256=hqeJm_GD67zukfFQ-H5PPPxYgZZ0DKOMPGTNRAjc3gw,94
10
+ onfido/api/default_api.py,sha256=LlouO2AJZplA7pOfPqDsmUSaPS8dFoQZG-0CDd1l77Y,675834
11
+ onfido/models/__init__.py,sha256=XJ5d4YV52FNXwBYQabTrtVBd-Y61_po8BdxlCJd-prg,26401
12
+ onfido/models/address.py,sha256=47oVzKVhn6Qxd24HMIuAQmVKgHPyfOnlFmBnthi2wOE,6812
13
+ onfido/models/address_builder.py,sha256=SjuOn2_T7Yic2l7qhaxd-euaijx85BziRkunp5j292M,6840
14
+ onfido/models/address_shared.py,sha256=WSQNw_W-V63Jgsh1Jf6KYWb4qm-eOW1URx_8r0LBUMk,6836
15
+ onfido/models/addresses_list.py,sha256=HHddp2FkEwylh0EwSNzDv364mC_qX0CGNMnO_ie5mv4,3462
16
+ onfido/models/applicant.py,sha256=XJ5PHVODsg-DOJJuDZsm9BVfmzyb7kuzVXRfAVz5GkQ,6688
17
+ onfido/models/applicant_builder.py,sha256=lkOrVuJXRXSy0ZyfE1Wdj66LoNvYGvvavOoa1x2OBHk,6263
18
+ onfido/models/applicant_create.py,sha256=whgIDGEObzjoPEbjq4UztQTgUAxzm5AP0YCtodIoqAs,3924
19
+ onfido/models/applicant_request.py,sha256=RnZsg1BNCUr8HVZzVnGUH0-BZ-JEELKCReyjOm8zztQ,4118
20
+ onfido/models/applicant_response.py,sha256=HprhcoRbZdxUUG61uuvriOlENbco2Oil08Wpr6IVmaY,5613
21
+ onfido/models/applicant_shared.py,sha256=UiX5uTOBeocWFhcqz371mOB6ZD6DZgDE5lvGzyr5at0,4072
22
+ onfido/models/applicant_update.py,sha256=aelyT_ryth0YBwqnHArJRT7VPTqKS4K7nqgvjNpcVCY,4086
23
+ onfido/models/applicant_updater.py,sha256=dXJuumulrKR5jRfnIMFDHzoaYi7GZliGMGzdV_4zE0s,6415
24
+ onfido/models/applicants_list.py,sha256=DAJy9mJhczX-9gL7ZkX2JBV5jdIOs1Q7cJpqq7soTPY,3456
25
+ onfido/models/check.py,sha256=FoDuri-tvS5NJWk-T22ozLPAGOQrit4epMoMAbw53gM,6383
26
+ onfido/models/check_builder.py,sha256=uoim0tcbqUksPRs4W_g9iYCdoyFZbltvF59tgPN26Ss,6426
27
+ onfido/models/check_request.py,sha256=wmQIDTn9Oh1eANFRftMnvgvrjAn-nNqvpUAYFhwuf8M,5613
28
+ onfido/models/check_response.py,sha256=u801KFBMw84HFR_T3D56GTtVHrYEuy73E69Tt0HrwHM,5322
29
+ onfido/models/check_shared.py,sha256=CiK_CoIfqs-_JeKW9XnLIUwy2faX3au9l7O92P4oL9U,4034
30
+ onfido/models/checks_list.py,sha256=0XZO84IuJsAFLXd8p-yDqvfqESwIYnYSBeCC-LnlL2c,3388
31
+ onfido/models/complete_task_builder.py,sha256=ei2Xxhlnm5ZRuhz27Ptx_eLx7BzSDYb798w67Jf1MxI,3314
32
+ onfido/models/complete_task_data_builder.py,sha256=jqn15cH3do9uIo1jKIRqgzq_fYgMsgssOgUxG0l4X9Q,5372
33
+ onfido/models/consent_item.py,sha256=ROKSLE4-uQHxWY7gtv8zYN27c3HhDtWjAlshULvS1MQ,3458
34
+ onfido/models/consents_builder.py,sha256=KiEY6Hpnr_0Zp-jPm0B2ukpZOlFAv49enFEidnFcoyQ,2920
35
+ onfido/models/country_codes.py,sha256=ceTcktMO3bSZdTh4OGKVaf7n8SOTjKYCV_KjUEzSGr0,4627
36
+ onfido/models/device_intelligence_breakdown.py,sha256=ge4lLA_3rwzgJa7FyTPepuHlXMIvVZPYhzaNC9Zp5jQ,3978
37
+ onfido/models/device_intelligence_breakdown_breakdown.py,sha256=CXYtzMzTEIA1NXy4Gu60TQWSbZXHPKYr8U-qA4XfOnw,3504
38
+ onfido/models/device_intelligence_breakdown_breakdown_device.py,sha256=qpgVFyE2KTnTHhp9lOWUiF--QFsiF15kL932AleeC-A,3653
39
+ onfido/models/device_intelligence_breakdown_breakdown_device_breakdown.py,sha256=Cs5BfPLtGoUIJhjGI6hK8HlZM_fvgJ2GXwFmyzgIBjg,4767
40
+ onfido/models/device_intelligence_breakdown_properties.py,sha256=K44aalsUKtaTEvyKnQRDjnxbi1vGWkZgh7YF3PifhqQ,4519
41
+ onfido/models/device_intelligence_breakdown_properties_device.py,sha256=DUWTZDuhv368clW0KjPS4_lU611HtduDxF1yr9f4W3o,9256
42
+ onfido/models/device_intelligence_breakdown_properties_geolocation.py,sha256=78wKBOHlNHAc96ZWMPa6hQQPbYKX6ospdNYgyL56-qM,3618
43
+ onfido/models/device_intelligence_breakdown_properties_ip.py,sha256=NaFRkErYehw5bOf-hbz2xuWYJ0gz0ErDhBR0SpcZpBQ,3783
44
+ onfido/models/device_intelligence_report.py,sha256=5loxXEhqlhMrZc9r4lJ8XzaLpz-NoOD11P2gPzckqPs,5468
45
+ onfido/models/document.py,sha256=ZFRqyDtso3DtKSbRecnlc6VAhCxGGGlp-8YGDSs1TdQ,5525
46
+ onfido/models/document_breakdown.py,sha256=x7lFBT2V2jJvW0JZ6-U_Ca9vjjPOvtCVJP0i__tYc_Y,7813
47
+ onfido/models/document_breakdown_age_validation.py,sha256=ioeCHhNEJB4DnY7cqv-oBa87g46mpnq6BBzBIiafXB8,3699
48
+ onfido/models/document_breakdown_age_validation_breakdown.py,sha256=6idaiBhh_9xFguIEwVbgJqO5qldeNwiAhWJg0U2h3io,3692
49
+ onfido/models/document_breakdown_compromised_document.py,sha256=q9peLfI12brxJDLt3mGHYzotItpdCJEwKKAYAg4_d-A,3728
50
+ onfido/models/document_breakdown_compromised_document_breakdown.py,sha256=tzqd__S3JAwmc3r9x5BMbevN1Ok2FbfGPN4ciX4rKqA,4171
51
+ onfido/models/document_breakdown_data_comparison.py,sha256=7i_MReBs_1ag-1okeapZe_e9KUuuoc4K8gkR6fOXKlU,3686
52
+ onfido/models/document_breakdown_data_comparison_breakdown.py,sha256=x2d_Vxxq4PV_z9-e8QnbuHENnnIeVc2O_v6cGIEMEj4,6809
53
+ onfido/models/document_breakdown_data_comparison_breakdown_issuing_country.py,sha256=h7eB5Z4YNRM6ZMO6aykI54ONznrFzQtQStcn6K7OnSI,3295
54
+ onfido/models/document_breakdown_data_consistency.py,sha256=ojrqjQXu9VdXQe1no3rL6egcVXXUPbq-MSIG-lGraPY,3662
55
+ onfido/models/document_breakdown_data_consistency_breakdown.py,sha256=QGRXh9V4h4m5I9ahml4gate6MoclxSME4sMwjCsZ-kw,7867
56
+ onfido/models/document_breakdown_data_validation.py,sha256=EyquEgLYdf9NX6HIPpIes5j_Mf-5MUIvCGQi-1DlqjI,3638
57
+ onfido/models/document_breakdown_data_validation_breakdown.py,sha256=1x1PcFv12KWIeM6SSYMiJJ1-d8KtTgVI5qGHiw78Ybw,6557
58
+ onfido/models/document_breakdown_data_validation_breakdown_document_expiration.py,sha256=pvgUNxiW08lxtdDXnbDkvEr6yatoFyx_cYgh7TE8wvU,3298
59
+ onfido/models/document_breakdown_data_validation_breakdown_expiry_date.py,sha256=yEg_ZTxO2Rb21Oq_IEu8SOOUn_zY3Hm99a5ZmYckCaA,3294
60
+ onfido/models/document_breakdown_image_integrity.py,sha256=wW1JS66bdlbOWhsXoo7WRHrA79SQMDNw305ekmiI6zI,3632
61
+ onfido/models/document_breakdown_image_integrity_breakdown.py,sha256=wcorx8Kj4Nj46b84o9qvzBqkB1Qn1697VzCH_M7RBxY,5676
62
+ onfido/models/document_breakdown_image_integrity_breakdown_colour_picture.py,sha256=ZzxHOuc-5k7YXUcx966_MpqqwQqY_rXCnxRRLkhUeeE,3281
63
+ onfido/models/document_breakdown_image_integrity_breakdown_conclusive_document_quality.py,sha256=E5clrd993cYawcZDOqM8EB4x4cEX190pIQmbcmiL91g,3681
64
+ onfido/models/document_breakdown_image_integrity_breakdown_image_quality.py,sha256=ByXPzCXA9RzLinySvwdmFIWaA7hsQM6m4UExIKjJdgM,3622
65
+ onfido/models/document_breakdown_image_integrity_breakdown_supported_document.py,sha256=NROivMWrsq8z_R3xCKYdRJMj0sXuprDSgtE2KtYfTxo,3302
66
+ onfido/models/document_breakdown_issuing_authority.py,sha256=mlWMQEkMWutMtXd0YnP6jtDPQyhdfAXWqa6g2BtmbA8,3659
67
+ onfido/models/document_breakdown_issuing_authority_breakdown.py,sha256=5RHiD3uVUjfHJE6-VfYd2ZO_sGLPTkzk01jsLSs98IA,4566
68
+ onfido/models/document_breakdown_issuing_authority_breakdown_nfc_active_authentication.py,sha256=MlIh4wRWuK05DTn9-f_EG1bbLdNXKe11aHK7WXhJ0LE,3334
69
+ onfido/models/document_breakdown_issuing_authority_breakdown_nfc_passive_authentication.py,sha256=c7b78Bf18D4l0HAtlwpqTe-FtACWzx34dZQiagdWq94,3333
70
+ onfido/models/document_breakdown_police_record.py,sha256=3t2S5StFOf8bo4bSZYbn3BU4qllpkCSdQEM_Wd-gJcQ,3145
71
+ onfido/models/document_breakdown_visual_authenticity.py,sha256=lJkONi7lLgOkaKTiygoHrCu9Zrk1hOdQRN6_bjw0g9w,3686
72
+ onfido/models/document_breakdown_visual_authenticity_breakdown.py,sha256=p4EBm-QzcxOZYnziWijx_P_9AotrHpAODMDtkArWHH0,8075
73
+ onfido/models/document_breakdown_visual_authenticity_breakdown_digital_tampering.py,sha256=mIjgCceUIrwemP-gurLk5vyWCpZrYl20uk5VCVMJ2lA,3304
74
+ onfido/models/document_breakdown_visual_authenticity_breakdown_face_detection.py,sha256=NfGW3tWvry-zuB9KPn-Tuff5QZCYflznMswb0FMvScM,3287
75
+ onfido/models/document_breakdown_visual_authenticity_breakdown_fonts.py,sha256=Xwi1GZWHHI9csQJDhoIttt9AhdS5I-ld2FagOl8pNt4,3278
76
+ onfido/models/document_breakdown_visual_authenticity_breakdown_original_document_present.py,sha256=RlIOKAdEul_JxVaE0ezALTYr9ccAOpr_QtRLzvi9tYE,3654
77
+ onfido/models/document_breakdown_visual_authenticity_breakdown_other.py,sha256=A6PH0ALRW1tP0O48cIQU6IKrGvqZOjBvI5YH085qJSg,3425
78
+ onfido/models/document_breakdown_visual_authenticity_breakdown_picture_face_integrity.py,sha256=aghCe_ZLHy1u9KngnXCTNMb3xjjX-aQWjzeeE6fEPvU,3363
79
+ onfido/models/document_breakdown_visual_authenticity_breakdown_security_features.py,sha256=X_T2PdHIAtGmZA8-fifthdq_GJLpZUy6BFTl0PLu9EU,3323
80
+ onfido/models/document_breakdown_visual_authenticity_breakdown_template.py,sha256=MSL4Jc1Wz_VJr7T0di8nW6lvIUuvc5u4yJG0hAOMquw,3329
81
+ onfido/models/document_cdq_reasons.py,sha256=1m2qxLuIeC1HKVQim9TLt95l76FDi_rJi0uBYKtd03E,5214
82
+ onfido/models/document_iq_reasons.py,sha256=OKiCuxShiJ4uBrALjsK_Z_z28fnLwPEYev5YV6cDOVc,5392
83
+ onfido/models/document_odp_reasons.py,sha256=RQ6UAGnhkg7hfwOaEqAbuxdjIh2F1QyAhsoIpRsQfN0,3966
84
+ onfido/models/document_properties.py,sha256=owd2EBTyVzz3Q1tO4GkvBYrBgs6z2aIDvnK6uLC_6kk,9420
85
+ onfido/models/document_properties_address_lines.py,sha256=KBEQPfyCQNpoA_VjP6vKroWqnOa_sy-G_UnyiBox-jI,3606
86
+ onfido/models/document_properties_barcode_inner.py,sha256=FVPy1Gc65ECQDY3cuF8J5jhuUNBceyua0ldUepaGZmA,5150
87
+ onfido/models/document_properties_document_classification.py,sha256=YRa0qNQBNXCPnHJn9_N0lKaXzhVCC-xKPezBBaYR7mU,3400
88
+ onfido/models/document_properties_document_numbers_inner.py,sha256=xUZ4yR2OXisMrBjygBDhJGYySvfdcfc1VEvMLrOqN1k,3198
89
+ onfido/models/document_properties_driving_licence_information.py,sha256=ij5akKUnk_-TZxXeh0jun4IGQf6d4NhmSURHeidjxpA,3486
90
+ onfido/models/document_properties_extracted_data.py,sha256=vW-B2osOZhlGdeanDlgBDLTcDWYLT6-q5SudaSaBuo8,5376
91
+ onfido/models/document_properties_nfc.py,sha256=0ToFxpEA45NN6Oy9jpOzmLktJpWLAWhBREjehJds-1Y,4475
92
+ onfido/models/document_report.py,sha256=0D7BPKmtW1yi_STY_pnS0yHS1prACWFZUqFyn1iBaEw,5817
93
+ onfido/models/document_response.py,sha256=feTxv5jfkyXhoJaaE4fNlWPWrXqdjRGOYnqqUoMzuMg,3956
94
+ onfido/models/document_shared.py,sha256=EF8s5VmoocjhuGII5Nb9qhpwYar7cS7h0ilbIIcRdSs,4542
95
+ onfido/models/document_types.py,sha256=i-LPmO8G7e-YfuzvvvJZ40SZYebjk227CndXtZOXCrk,1824
96
+ onfido/models/document_video_report.py,sha256=os-qrNYCUECejSC35jPLUsXDxe7y6f5g0s3_QD8__Eo,5837
97
+ onfido/models/document_video_with_address_information_report.py,sha256=m_-BBX6i36ETlHJO9NwZIY7eVmJMdgoiYPjjg0NT9Sw,5925
98
+ onfido/models/document_with_address_information_report.py,sha256=BkksAiZC-ooMik5JJxVMFrKtIZ5ZzMFIO2roRx7lhxU,5905
99
+ onfido/models/document_with_driver_verification_report.py,sha256=LkwKvOa7WaQRXw2A3incYjK8_b4tC_upnoxpaQ8Eek0,6043
100
+ onfido/models/document_with_driver_verification_report_all_of_properties.py,sha256=27ZUfACsDEEqgFnGZllE7LqhWJkpQocQ_An00QO1qNk,12244
101
+ onfido/models/document_with_driver_verification_report_all_of_properties_all_of_passenger_vehicle.py,sha256=xI7noUuOz8MIrJ7iErenQgww2EmgTukpYehLBcC1zZI,3792
102
+ onfido/models/document_with_driver_verification_report_all_of_properties_all_of_vehicle_class_details_inner.py,sha256=7IYp8uXyMjA2WKyEDkQw_3_ZixPVosy3x7XcXSksXVQ,3866
103
+ onfido/models/document_with_driving_licence_information_report.py,sha256=vGMnVXPNdsgCcvWLGPNvO2FnGUZFYK89SVAbAQlXkUY,5933
104
+ onfido/models/documents_list.py,sha256=uoEgjUcqK4y3-XearfEor3R0ZcaTqJPgVr0iJDiOyB0,3439
105
+ onfido/models/error.py,sha256=tlduNOTaRpaQoasXKnUTThBGTvj4Tik5Q1xAVYKhZZg,3260
106
+ onfido/models/error1.py,sha256=2SYHDPFX4FT6o9V2P4ahpZRcSdTi6QzF44p0jRM11XA,3473
107
+ onfido/models/error_properties.py,sha256=Nrhw3heXQZKRKqN_TX0IO7CCT7XRsuE-mldWZTUeLoI,3209
108
+ onfido/models/error_properties1.py,sha256=Gqd5bU3YV3RSbgH8CquBq4xdd_nfqoElQVbGdcbrpFE,3118
109
+ onfido/models/extract_request.py,sha256=ifRlGFy_t3uay565wr1I0Q7Z-HVlpKhVLoo5IjfNFJw,3115
110
+ onfido/models/extraction.py,sha256=Ed-Q3MlsjUDmaOT0UcSVmH_F9q37gewuwl9Ys4GYINk,4204
111
+ onfido/models/extraction_document_classification.py,sha256=cyD0fGqiTVWuR7ZDtjqD2Lq1O6lVCzSynVnYSey_OU0,4378
112
+ onfido/models/extraction_extracted_data.py,sha256=mknNREdj9NgM8sCUS_Pw7nC_16ux-l8-eH7AgT4Pzug,8391
113
+ onfido/models/facial_similarity_motion_breakdown.py,sha256=QY07PHJx5nxg6b2ay1dFZnXJvN0lKKkpxu7zG3vTWoc,4804
114
+ onfido/models/facial_similarity_motion_breakdown_face_comparison.py,sha256=Zf6kqPNVMl9gEr365vWOoWwzHnEPAWfbEd1hnnlURE8,3749
115
+ onfido/models/facial_similarity_motion_breakdown_image_integrity.py,sha256=Wvc3k3i_S2dMozxRTkoXgkvqIRma-z8SB9k20a36XOU,3782
116
+ onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown.py,sha256=LRtuC8iZsJ757DEQ1xWiiBUsowEVwQ7XzLrIC9qidyo,4434
117
+ onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown_face_detected.py,sha256=omi73_oCJZ_eo_3wnAEIbwZWAAY8OJdq74-Gt4VnBRA,3390
118
+ onfido/models/facial_similarity_motion_breakdown_image_integrity_breakdown_source_integrity.py,sha256=9p87pwSIlekTr8-AUHRD8VWhSD9Ewms-TNLrhaQ8lFU,3661
119
+ onfido/models/facial_similarity_motion_breakdown_visual_authenticity.py,sha256=nNf7tbX0eGBOf8LMlAyt4joLxRH3upAenLTRmG9bD6o,3781
120
+ onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown.py,sha256=b8PUGQweIBqcTmhRm-QZQF1WihQHKXQmJwZOURPhyGk,4556
121
+ onfido/models/facial_similarity_motion_breakdown_visual_authenticity_breakdown_spoofing_detection.py,sha256=5iNNHe0VrkdX_WCiQeAiLKBwZEvWg6aJGOnkFhQyrjo,3981
122
+ onfido/models/facial_similarity_motion_properties.py,sha256=NArgCwxmUcJzj3ShnztJD6EocBWVsSVVkfnicK-BIcM,3404
123
+ onfido/models/facial_similarity_motion_report.py,sha256=wlRPNqVL_evo3TkUAEKD-x_TU26iIfcF-YrS_2y0AOQ,5989
124
+ onfido/models/facial_similarity_photo_breakdown.py,sha256=sBCbOVjQNoz06f9-EE_HmtJLuNcch2wyEvu_8ajMD_A,4788
125
+ onfido/models/facial_similarity_photo_breakdown_face_comparison.py,sha256=ZswMgUh-tXnUUX-symslySgj2MO0Kweh2xA0MVM0LSk,3742
126
+ onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown.py,sha256=d94WHlgmmKmmjkCUe9juaudKXWTgiioUZEQpkZGeEIc,3692
127
+ onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown_face_match.py,sha256=XkAhajyOBq0L57t5poxHrZr6KmlE-QDtQJCfH99M6Aw,3856
128
+ onfido/models/facial_similarity_photo_breakdown_face_comparison_breakdown_face_match_properties.py,sha256=uy8KM7jrOQopQjuqkWzEM9DJv6Y_f9k0Emuc4fDhIcM,3683
129
+ onfido/models/facial_similarity_photo_breakdown_image_integrity.py,sha256=DLUReJZJyvRB1zcD7AB7RvjJsVArGa12v1SHjyRQ57Y,3775
130
+ onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown.py,sha256=22khADacBvJmdG2Mzk9l5ljJunTrtJmrEBFGXhIuePo,4422
131
+ onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown_face_detected.py,sha256=317p88qM5b9Liaifnq6yyORuEN4H098sfONJ5-MixwQ,3380
132
+ onfido/models/facial_similarity_photo_breakdown_image_integrity_breakdown_source_integrity.py,sha256=Q38UmiVIVVwu2HLRiNZ94myn4J89wn5f-QluLvd-lcc,3705
133
+ onfido/models/facial_similarity_photo_breakdown_visual_authenticity.py,sha256=0BteRP6iita1RNjYxPf2RXntDYLoU3kZqKcDzC1YXBQ,3763
134
+ onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown.py,sha256=G5U-dS-cMCRtbp8fos4VPzW35kup9UTNjNUHjmSvP0Y,3828
135
+ onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown_spoofing_detection.py,sha256=OWNBtXVBcAeQlL4iWxadg-68GJtEsLlB7DV56bmArK8,3940
136
+ onfido/models/facial_similarity_photo_breakdown_visual_authenticity_breakdown_spoofing_detection_properties.py,sha256=3yRgNTynVxbd5zIrzZxfLj4hXuhD0otYBmKpKabSHII,3485
137
+ onfido/models/facial_similarity_photo_fully_auto_breakdown.py,sha256=VrW1IszRkv6c1o4fEWOQ4M2X330WANiiitSBe4iHX-U,4862
138
+ onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity.py,sha256=cwscLIYjrYOVbeQHftX0sbp42SLxJ_aneH5fOffv22k,3840
139
+ onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown.py,sha256=5jonuB9aIXiq1M0vaUf8l2bizzDnfcb2AYNDIRjQKcc,4496
140
+ onfido/models/facial_similarity_photo_fully_auto_breakdown_image_integrity_breakdown_source_integrity.py,sha256=J9r82MMGVB3pkyAsAVmWHzLrj9CDUpeXKh3E5FktnJ8,3749
141
+ onfido/models/facial_similarity_photo_fully_auto_properties.py,sha256=RAbPf5W0xgFD6B3Qtfd6IvUnZkcXA3wQgpcQ6ifpuwU,3444
142
+ onfido/models/facial_similarity_photo_fully_auto_report.py,sha256=m2XAoIw-m48iYBpluWfFBsZQjN6zvSUB3x0I8AyErow,6089
143
+ onfido/models/facial_similarity_photo_properties.py,sha256=LJN-rOA0PsOqW3ugUYEiTJ4gW0BIDtKG-Fa5ehN134Y,3408
144
+ onfido/models/facial_similarity_photo_report.py,sha256=C5dvkLR1oegaVuiEXsnZZnVGJ8Kltvz5oC4e2f-qXMU,5977
145
+ onfido/models/facial_similarity_video_breakdown.py,sha256=qZ5f9NL8t2vQNOKQAbv6wiKkRHXzKuePo7qMnpwCjCY,4788
146
+ onfido/models/facial_similarity_video_breakdown_face_comparison.py,sha256=_wQRLy0q2nAcGcQig6vQjlUbxL68tquZbNupRSMVDaQ,3742
147
+ onfido/models/facial_similarity_video_breakdown_image_integrity.py,sha256=JE-aoxWX4xtplWaqW2zIuf8aCrNJtA7b-k6qPR0SqnA,3775
148
+ onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown.py,sha256=b09Z-wvUTSk3ki1aap4n9oT2wCGjc-QUNTFHD7Rj4aY,4422
149
+ onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown_face_detected.py,sha256=NjOzibtCRDy1_i5xqYz_jvKSEPqasX1fTXfCeAyKN-U,3380
150
+ onfido/models/facial_similarity_video_breakdown_image_integrity_breakdown_source_integrity.py,sha256=IHGJVcnGSrA6RhwoKaxawqITy9zyBk1DUqAzobHpEns,3654
151
+ onfido/models/facial_similarity_video_breakdown_visual_authenticity.py,sha256=c5BGyXrXFObG9DpsilYXmAYD-JNCiM-Ab0nIcSkB5q8,3770
152
+ onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown.py,sha256=poFPNMm1kzImg4oyk2eqI-6CTwm85LOGfu60dIYe2jM,4548
153
+ onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_liveness_detected.py,sha256=Yux-_82hi3OJT7zDIXiKZ7dnR5cmBsT0IhQFYjFXHf0,3369
154
+ onfido/models/facial_similarity_video_breakdown_visual_authenticity_breakdown_spoofing_detection.py,sha256=RRBNzE6u9YXQ8PmJxOa6kNdWineFm6EEg4qtPGTZcws,3974
155
+ onfido/models/facial_similarity_video_properties.py,sha256=ICtG2ymOwHxDh0yLWeW5D8kvKBw8TJO752w3Vp9msBU,3400
156
+ onfido/models/facial_similarity_video_report.py,sha256=7KfKfAX8amrDubjfoQOQaEUk-UydT2NPL-9WX2Rgi7k,5977
157
+ onfido/models/id_number.py,sha256=iOfUgB49KpWxEf6HjEvvx3w2DHBGc-bXRYODzJQHA0Q,3913
158
+ onfido/models/id_photo.py,sha256=MINVgfDRrOPPTZFyL-wYxQvmOHTXs9qKT3rbtMJksro,4085
159
+ onfido/models/id_photo_response.py,sha256=MzNcewhNkp86SNn1JdTyy8yfhR-4m4tnWyIU2-3YA3s,4117
160
+ onfido/models/id_photos_list.py,sha256=z84vSzhtfH7FNhZgOkma8ZoO6ViN5m9x783O0R1o7l8,3432
161
+ onfido/models/identity_enhanced_breakdown.py,sha256=mkTikudYYUluqOm75AMyzPyYFC3LPl44oXuzI7em3pM,4909
162
+ onfido/models/identity_enhanced_breakdown_address.py,sha256=Y4xOi7XqwKQKr_fSwUeE5PTZqz9dnnmdsfA9HxEuXe4,3635
163
+ onfido/models/identity_enhanced_breakdown_address_breakdown.py,sha256=eFKDC9DjAUkSDLlhyoVV0XAmiOZFKXpnObkDSQVVtCg,4954
164
+ onfido/models/identity_enhanced_breakdown_address_breakdown_credit_agencies.py,sha256=HxfIo85ZSBHPFxfFtCxs2MPoJ3uQSCd3ledfV7xcWoc,3811
165
+ onfido/models/identity_enhanced_breakdown_address_breakdown_credit_agencies_properties.py,sha256=bQ5CwIkF0YwajKdQCkbCuU5xlaTFr-ibnQKBcnkQank,3272
166
+ onfido/models/identity_enhanced_breakdown_address_breakdown_telephone_database.py,sha256=397VWLYeP2ickft5bAiSsoMJgxc5Ijp-YqM7R0G6WkI,3294
167
+ onfido/models/identity_enhanced_breakdown_address_breakdown_voting_register.py,sha256=DmipYor1aizZnic4HAVjcUZnddF9vnRBWNr21rl8h9k,3282
168
+ onfido/models/identity_enhanced_breakdown_date_of_birth.py,sha256=6_Jtq7el-e7UZxZj5WxI8Bu5evkQSCgUIzea3YcNNB8,3671
169
+ onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown.py,sha256=yrCua0vQsUuAn5kM7mUpuhJCNlzeOFqvpb4ogQV6rh8,4339
170
+ onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown_credit_agencies.py,sha256=TAbgCx06NsCYudmMOUN5abZIfW6Juy2jw2l5TZIBQ58,3300
171
+ onfido/models/identity_enhanced_breakdown_date_of_birth_breakdown_voting_register.py,sha256=Z7YkxKXytPT9gwO0Sh404O592nti__wXCUUWXPXTtis,3300
172
+ onfido/models/identity_enhanced_breakdown_mortality.py,sha256=RuuJOq8CFJZtX5XKoryiqutbKuXmaEvSVoBArkpGEnc,3129
173
+ onfido/models/identity_enhanced_breakdown_sources.py,sha256=vq2Z1m6KAPHb6LriGq0BuL0GmjHUEtKjUmdd876J30E,3680
174
+ onfido/models/identity_enhanced_breakdown_sources_breakdown.py,sha256=m2wS2zQzePyTg3pvyXIeukFgjzG2wHnjZ7Ry7_leVCk,3633
175
+ onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources.py,sha256=9z4ygbx1iaUijFI3ekZa7VN1LlA9Hsl5xFW5BpB52QM,3809
176
+ onfido/models/identity_enhanced_breakdown_sources_breakdown_total_sources_properties.py,sha256=Du9Y8Xf0A5lHgoniP3NX5v8s8zwK_7dQJ5zwlmoZ0jg,3288
177
+ onfido/models/identity_enhanced_properties.py,sha256=Q5lzWFwPP9Z9xJC6U9hWJJk40CH4YK1vvI2P4WFeJ2g,4137
178
+ onfido/models/identity_enhanced_properties_matched_addresses_inner.py,sha256=-goAoZi5QDCKovx-Zd5vKPWSviuPSnTVQTnFutFZukQ,3435
179
+ onfido/models/identity_enhanced_report.py,sha256=wqrV9DMXI4YCj0ippaYYAgOpFDbsL4QcmJ2MSQZUdjU,5915
180
+ onfido/models/india_pan_report.py,sha256=M_8Jx6Gtr7Ax0TimRzcH_6u1dpdtfk4ke6AZ9LSNGNw,5913
181
+ onfido/models/india_pan_report_all_of_breakdown.py,sha256=mL26iWTEgOSGhb0J7-TIo7U9MhGPeNfh5gatwS_5C4Y,3442
182
+ onfido/models/india_pan_report_all_of_breakdown_device.py,sha256=dxrcfnCBvo-XQV2cplSRv1j5hW03yYhBagHYp5c_CXw,3530
183
+ onfido/models/india_pan_report_all_of_breakdown_device_breakdown.py,sha256=Mw9evkfaPYYoUuPJjn-4j2r8hJkQm1dLBgx1axgccWo,4031
184
+ onfido/models/india_pan_report_all_of_breakdown_device_breakdown_pan_valid.py,sha256=HNHmpJXlRJnHTBZLora4oaIKbO0FtzXbIHXinu-bMwI,3172
185
+ onfido/models/india_pan_report_all_of_properties.py,sha256=QAB_Nwgqohc3Ij0S4XygLPRwyHg9-zqH_bnQjtm8ruk,3450
186
+ onfido/models/india_pan_report_all_of_properties_device.py,sha256=GuYNeKEigVoP6vU16NPjtGDRtc6SLz7DbTj5MK8VICw,3344
187
+ onfido/models/known_faces_breakdown.py,sha256=Ou59155OFqWESpFN_uB9iom3SfWSSQnPMe9WK5tIQhE,4094
188
+ onfido/models/known_faces_breakdown_image_integrity.py,sha256=LgJVLwlaICT1IpHpMD9IFawcWmwzr8yOvFB1mfsIFKY,3213
189
+ onfido/models/known_faces_breakdown_previously_seen_faces.py,sha256=RjAKoo2UT-jle7bZi_ERHKtwaC1J4Tk7gkF0GI8Q7_w,3251
190
+ onfido/models/known_faces_properties.py,sha256=z3Qjna7lDlQakaBj-56e19qMiWvAYKCs2iWEqIwUahM,3706
191
+ onfido/models/known_faces_properties_matches_inner.py,sha256=P1LCe20mtClS53CDS8hGpyO87NhcIw6fIXHqdrJ1Yy0,4135
192
+ onfido/models/known_faces_report.py,sha256=jgEArRRFl8kd2T72-VAp4ETX17LYyxvinrcEszM_5EQ,5843
193
+ onfido/models/live_photo.py,sha256=axN65z994uBW2iOHpcrL_SEhLyOfjoUtQIWsdvgKRdw,4093
194
+ onfido/models/live_photo_response.py,sha256=HmLXOi5Mqsh0jw0TJUkaUudkfD2OMFqwdwGloj_Ho-8,4125
195
+ onfido/models/live_photos_list.py,sha256=02p6rjiS3_mMl9xgEMqVq0-nCMxPhRcSkey_42oh5eI,3466
196
+ onfido/models/live_video.py,sha256=iOC4__Ifv8Gp8904I7x9LRN95cwdyCrciem1FzFQ22I,4332
197
+ onfido/models/live_videos_list.py,sha256=yom-1x4j0FZ9JMEVuoHZVkafgfYFw1QWMPSeCrDWQYA,3466
198
+ onfido/models/location.py,sha256=lyff1R6T27xbewdhUIud7XaBKFJY4AoQpKXPTLX7kgM,3372
199
+ onfido/models/location_builder.py,sha256=JdcBXrNw-FfHyBmoOA0CVq_FKHAwjaWAHxGr2Cm6XCE,3400
200
+ onfido/models/location_shared.py,sha256=pYoD1ERK-Z3TtExZ_oVyJV8jn4zxTpnW7IMvfURP6iI,3396
201
+ onfido/models/motion_capture.py,sha256=E0qWqAwSBrxiXopxwDMMvVvLDXgCJPyh8xf3nQJWR7g,4160
202
+ onfido/models/motion_captures_list.py,sha256=0GDqmT7vvUy86l4ex6PN6x6QKAhE9UScCqKWHu5l0LU,3534
203
+ onfido/models/photo_auto_reasons.py,sha256=hQn2H8odpT6LnHRHN7EnbHEb0a0HHpE_vEfYtwttBUw,4098
204
+ onfido/models/photo_reasons.py,sha256=8RdlORIFiuW3rqWOqfMPxDqYYMAX__ETBo0bC1xfYi0,4082
205
+ onfido/models/proof_of_address_breakdown.py,sha256=X4lNSctV6oudyeXcV4KAwhbNRgWMVclnxrKljextlIU,4728
206
+ onfido/models/proof_of_address_breakdown_data_comparison.py,sha256=bTDgzk-lJP-0Cb8116TsEo87ReVADavct28nr3eHWZk,3729
207
+ onfido/models/proof_of_address_breakdown_data_comparison_breakdown.py,sha256=t5-1SVjp1F8oxugbcgpA8muMhdblwCiUgOVhKv5VSFU,4468
208
+ onfido/models/proof_of_address_breakdown_document_classification.py,sha256=z3r_bsX1Ha1v3nKhXapYgTr0lKWniqeDaUopn1DJHaI,3728
209
+ onfido/models/proof_of_address_breakdown_document_classification_breakdown.py,sha256=iX0HUZXLNcMkfuC1W98_5v4MgwqmuKssQZNpVxZ6ZkM,3734
210
+ onfido/models/proof_of_address_breakdown_image_integrity.py,sha256=Rb0YMBKzal96lE4f-rUCI6ldfYpYn4COk2Kqnb8KBNQ,3707
211
+ onfido/models/proof_of_address_breakdown_image_integrity_breakdown.py,sha256=ZOYylaMivdTvkIbF4Ub2SxS2BwhMSlawTAolgSkaaa4,3657
212
+ onfido/models/proof_of_address_properties.py,sha256=Lqeg3OE61CVOHojvM-4aKiILVTnrAqN97fU83YSdIhc,5498
213
+ onfido/models/proof_of_address_report.py,sha256=nyPgdaV7dr0-VNaIu0B10MFJ1RCb4XPZfk_WvoHitqs,5893
214
+ onfido/models/repeat_attempts_list.py,sha256=oUHKLzmpnGwHFi58EHlNDS0p96_edm9GoxVljilud2o,5067
215
+ onfido/models/repeat_attempts_list_repeat_attempts_inner.py,sha256=7wTFGjYv13elegzMSifnrF8xmOij909oACL6cx3xiL4,5333
216
+ onfido/models/report.py,sha256=vdjrro3KskRp8vfILJjUZX_pQMVGswXPTdac296ptwk,33635
217
+ onfido/models/report_document.py,sha256=f0C7yaCS2dF0y0Wv0tmL_UpaleEmE5ycJmpcHmpxdBs,3043
218
+ onfido/models/report_name.py,sha256=seSIKKKtuttM8hbJ1jQcHZZLc-_LizPcDr9oD7leJDk,1739
219
+ onfido/models/report_result.py,sha256=cl0g1cU9oHsonYt4JTTOMzUcA5o4mckgzJT1rQnJ9T4,731
220
+ onfido/models/report_shared.py,sha256=ZcCty260pLyLAfyvurkZAo6g2nLDdk1caVN1Y276ubk,4962
221
+ onfido/models/report_status.py,sha256=qmhGQ2oA6Hfuh7RRm3k3Mn8GCu-Gf_JWNnzQK9PFY9M,844
222
+ onfido/models/report_sub_result.py,sha256=gWSRqId8lSsaHSOH__7Yb1bbA4Gv2YGxPDxUGcd6KuM,846
223
+ onfido/models/reports_list.py,sha256=ph9b2mqEiR0F-XdZHOM0evxb96iwJWPsGmXCVZTfjrc,3405
224
+ onfido/models/results_feedback.py,sha256=uyqLE2YoMvH62mN1_0qiYWPWEScpXSfmfM6vHvR-D9Y,4059
225
+ onfido/models/sdk_token.py,sha256=DuB5r4k1KWGbcykbZDmVNvz9KPH9quI_51nK0R76cpc,3023
226
+ onfido/models/sdk_token_builder.py,sha256=SkM6U6oGjZp762agxrgEoS3fDnPaUfQX2AKWR1WTcIQ,3666
227
+ onfido/models/sdk_token_request.py,sha256=-JejrBUXbYxGRD6_o-vJ_CQCXI_g4pXYve7AIDI4sGs,3666
228
+ onfido/models/sdk_token_response.py,sha256=GearM-RfjX9Spc1_zI7y6rLbpRWLmbGl07TlniviF-4,3055
229
+ onfido/models/task.py,sha256=gnVzaGASfV8GvNvI8uUHA1_OJZunwxtVzDjxidOmebo,5612
230
+ onfido/models/task_item.py,sha256=gS14aEExmI5quTNgy1GV-dOuNxLnduoPgfuvXqW1sr0,4411
231
+ onfido/models/timeline_file_reference.py,sha256=t14T8-wVy-sxvQN0zZZ5p5V7SxB2ZvzE0JGuHWWWfWY,3340
232
+ onfido/models/us_driving_licence_breakdown.py,sha256=sdYebAjfe0zhfOPCYcjKmVqi8dKJXAC17zgGsblynLg,4379
233
+ onfido/models/us_driving_licence_breakdown_address.py,sha256=orpqPDyd4js1T79iRVW6OzrTrrC5Tcw_MbJkvq_8oUs,3691
234
+ onfido/models/us_driving_licence_breakdown_address_breakdown.py,sha256=0YIHji6TjIilpPIkQhLeXP1NF4Xzhhghq72AlXKgWpY,5561
235
+ onfido/models/us_driving_licence_breakdown_document.py,sha256=MJdrBBgmqkZDlYrEDQ2igx97buS9C6OyuAewGQ42Dok,3699
236
+ onfido/models/us_driving_licence_breakdown_document_breakdown.py,sha256=zG8bNjsPCUT5TlP2YvaDt-UYDRphLukoAIB33WVxuy8,4997
237
+ onfido/models/us_driving_licence_breakdown_personal.py,sha256=wJhysFc2FxeWaFdwTDAsoMN4ho92-LJ3KbNbNgwf7E8,3699
238
+ onfido/models/us_driving_licence_breakdown_personal_breakdown.py,sha256=7zDoZ4E3TFWA-AflFM_QLyHomX8PxfQ46ms3o1g1A2c,8993
239
+ onfido/models/us_driving_licence_builder.py,sha256=DwBQ2j8jxwk__pdOQVv_pyNuChzFSAtuNZn588K_EFM,7866
240
+ onfido/models/us_driving_licence_report.py,sha256=5HRAAMVllC_mlIE-nTAQpYjPc48ibLoSx3PPvQP3HGY,5883
241
+ onfido/models/us_driving_licence_shared.py,sha256=HfW2yBjJKAjPaC8OmHuttZc6E2L0vcNP78ZVDWk0a-c,7934
242
+ onfido/models/video_reasons.py,sha256=Zl3zruMz5VkfWMmTMM28-qpmjsykxo7ceMjNchoPymk,3816
243
+ onfido/models/watchlist_aml_breakdown.py,sha256=mdbO7OWoVPG84zlgEBcHG517RopbXkpSABGhbE1e7Ho,5337
244
+ onfido/models/watchlist_aml_breakdown_adverse_media.py,sha256=ilxwSfjfIpOO9lT_EjkC-tRJycGWKLx43Gg2zkcmXuQ,3184
245
+ onfido/models/watchlist_aml_breakdown_legal_and_regulatory_warnings.py,sha256=HWVazo9UxQ5z24wxpvboMcFhFNgZAQ27pe_QriE8cR0,3267
246
+ onfido/models/watchlist_aml_breakdown_politically_exposed_person.py,sha256=bpF1XScRoaYQ40FNWY6Xv4gm1J_Xk8xAaJWMmRr017U,3265
247
+ onfido/models/watchlist_aml_breakdown_sanction.py,sha256=E8ey_9TUZVRzRg1WRN_XxRsBN3HE7RUv1bULoWr_Juo,3156
248
+ onfido/models/watchlist_aml_properties.py,sha256=VH3M6wqR8GY4DUsAkllaMVeH7osDNFcS89xqGrCpWqQ,3244
249
+ onfido/models/watchlist_aml_report.py,sha256=PFdQjkyh61nxjcbb-CFisvaO8gklGG2LRvNNxkPpqaY,5867
250
+ onfido/models/watchlist_enhanced_breakdown.py,sha256=DHuLezE2g-TArnMImvMeNlkuOGxjuyxinSRQeuuzJS0,5231
251
+ onfido/models/watchlist_enhanced_properties.py,sha256=cOFo0at_AmldyezBsAgy2E1ym5z_7hsXwbqegtb2oK0,3264
252
+ onfido/models/watchlist_enhanced_report.py,sha256=dMT9GqZZAGxYQUOT0yhck9TS_mjsu1bn_sPTOG2wHls,5927
253
+ onfido/models/watchlist_monitor.py,sha256=J6YoiTB5FI4QjhvSGlgX1WWxds2pcKzLhLlE88mWOmQ,4680
254
+ onfido/models/watchlist_monitor_builder.py,sha256=G0VuDZqa8XAQ4wYrDl-h4YYP2E5eMhUjH_02IxszThI,3866
255
+ onfido/models/watchlist_monitor_match.py,sha256=E5RUaftKhw9DOGjXcZ586enHYcbqsM-C6zaRi6tcf2Q,3236
256
+ onfido/models/watchlist_monitor_matches_list.py,sha256=Qpa6VEnjBVAHR_ecoP0WXVQ9Cj7c1n3ogfGYWbpsnzo,3531
257
+ onfido/models/watchlist_monitor_matches_updater.py,sha256=_Y-E0uZEEq0VVur1WqbnQGx1caLd5y359w3auQvfjp8,3194
258
+ onfido/models/watchlist_monitor_response.py,sha256=O-HtvwH6bf5hXiBfnrrf8iZekwNMEMbqlc9mCzxGT7k,3823
259
+ onfido/models/watchlist_monitor_shared.py,sha256=pwdKpilB2zAqEvg5sRdethilQvOVTSA8ZrL7iNHVs5o,3862
260
+ onfido/models/watchlist_monitors_list.py,sha256=2zAy1sB1xat_as-O7Yn86IPVslJ8FI7Pgl2FigKHBXo,3495
261
+ onfido/models/watchlist_peps_only_report.py,sha256=YrwT8K5CpL5pJ0PyBVQ4F3YUljpUEsNbSm3Bd3dZc5k,5927
262
+ onfido/models/watchlist_sanctions_only_report.py,sha256=-5dzEKYOPQ03pDFS9n_x6wmRmdo2-lF90co25suU9Wg,5947
263
+ onfido/models/watchlist_standard_breakdown.py,sha256=S-y95QaIFHX7mxpTM7Icw3MSf6zRIxvWP9sogqGLruQ,4837
264
+ onfido/models/watchlist_standard_properties.py,sha256=AmDHYsAYpkp7JJaQf7dJdbrzFixybkdRTLze2OxXFzY,3264
265
+ onfido/models/watchlist_standard_report.py,sha256=fD55jijHfzFIEJ6evmd_ZpO3xzfLLvY6-gJKwiAzC0w,5927
266
+ onfido/models/webhook.py,sha256=jfqOqga-muzPOTCX90N0yRY41FOWDHsRbwK-2SMHGBI,4613
267
+ onfido/models/webhook_builder.py,sha256=pwhg4W9CuRSdup25LJAV099md70EHPJ9H9gEaREGHy0,4172
268
+ onfido/models/webhook_create.py,sha256=8Ur6l4YhUAaIl4WCd-dWqPVmHGZ-2cxROA--U0BLVus,3070
269
+ onfido/models/webhook_event.py,sha256=g5lobXwKJsA0J34puBVMcLbm7vcrVlZoFTuvRvCFE9o,3323
270
+ onfido/models/webhook_event_payload.py,sha256=06DUF1HdWTbWhB6_tSHoGXiZuEwoil3WJxoDiNoPZUk,3954
271
+ onfido/models/webhook_event_payload_object.py,sha256=99d1pPcVCyjZAttqiimNekwdj2JU4Seu31zTGoqeXcI,3664
272
+ onfido/models/webhook_event_type.py,sha256=AP1JjrpjTyoATidiS0O_WnKyIEN4wrW-V0udJu-aLqs,1569
273
+ onfido/models/webhook_resend.py,sha256=pDG9j6l-hrUq9UU_XI_g5zZTsvE69zgeSynYQ936R6Y,3463
274
+ onfido/models/webhook_response.py,sha256=VpnpGMafbWR7oj2Tws-sQlVmNzP9RPEMKvQ_g6wrbt0,3557
275
+ onfido/models/webhook_shared.py,sha256=5KI0bTRB_XbewC1xG1Uhezj5lBjnKGqCIXfrdJvgFJI,4025
276
+ onfido/models/webhook_update.py,sha256=gHE4t1uN84tbCLAcXv5ntfV-HHsWMNCcxjqsDG-r38E,3104
277
+ onfido/models/webhook_updater.py,sha256=6Ff3y5eObsgIDFON-LOjPNyOCbCQ3PF7Eb-dvN6mpuc,4196
278
+ onfido/models/webhooks_list.py,sha256=t3KMrohj-rTiW0VJN5KLsicNIsAYZXXV52aieIteI3E,3422
279
+ onfido/models/webhooks_resend_item.py,sha256=huJSQx0TfXawHiGG7ftxQH399DeK0xWsvTTSLXKM4Nw,3356
280
+ onfido/models/workflow_run.py,sha256=Dy7a7fLvT1Z7aZPwCdXw69QSb9kE26k2kXq8UBEkx1s,6566
281
+ onfido/models/workflow_run_builder.py,sha256=_gi9ZqIP59_RHOQ0eatxwCiiELpXbNgZzXT_BqmoyaM,4772
282
+ onfido/models/workflow_run_request.py,sha256=IGCpkcvqn6kJ2L2nZeuBHNeANqcSUfvx0IgcKOqv-4s,3153
283
+ onfido/models/workflow_run_response.py,sha256=YKYOf78z7GA2IG0B_EDJMqEtdqssVdzzhC5il0Lceaw,4990
284
+ onfido/models/workflow_run_response_error.py,sha256=93xJUVTdo4PUsMzOdcsAifRWlZiTh6nO-nDPUc2SMTs,3311
285
+ onfido/models/workflow_run_shared.py,sha256=fHcZBs61MokjwyaAD1tDKoefpoTwM-DCeiBkjV5n6E8,4561
286
+ onfido/models/workflow_run_shared_link.py,sha256=8uAlWkhDF9g_7CuVfhoAXgZqcv6LZHOIc4c_CqMxths,4682
287
+ onfido_python-3.1.0.dist-info/LICENSE,sha256=SKY_O1OkFX8yNWFuVVfYTsXvN46jsgtff-xReserHw4,1073
288
+ onfido_python-3.1.0.dist-info/METADATA,sha256=YCqVUTzumAzHazUwigv74xlbaKG87pcZH6bsDvz3E1c,482
289
+ onfido_python-3.1.0.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
290
+ onfido_python-3.1.0.dist-info/top_level.txt,sha256=NHu8xI4S4Avh7xUark3dpdk9atpIVgyf-ptjHXU0-Ns,7
291
+ onfido_python-3.1.0.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.8.1
2
+ Generator: setuptools (70.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ onfido