samplehc 0.14.0__tar.gz → 0.16.0__tar.gz

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 (342) hide show
  1. samplehc-0.16.0/.release-please-manifest.json +3 -0
  2. {samplehc-0.14.0 → samplehc-0.16.0}/CHANGELOG.md +60 -0
  3. {samplehc-0.14.0 → samplehc-0.16.0}/LICENSE +1 -1
  4. {samplehc-0.14.0 → samplehc-0.16.0}/PKG-INFO +7 -6
  5. {samplehc-0.14.0 → samplehc-0.16.0}/README.md +4 -3
  6. {samplehc-0.14.0 → samplehc-0.16.0}/api.md +6 -80
  7. {samplehc-0.14.0 → samplehc-0.16.0}/pyproject.toml +13 -11
  8. {samplehc-0.14.0 → samplehc-0.16.0}/requirements-dev.lock +62 -50
  9. {samplehc-0.14.0 → samplehc-0.16.0}/requirements.lock +20 -19
  10. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_base_client.py +140 -11
  11. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_client.py +107 -35
  12. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_models.py +53 -16
  13. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_streaming.py +12 -12
  14. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_types.py +12 -2
  15. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_sync.py +3 -31
  16. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_utils.py +1 -1
  17. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_version.py +1 -1
  18. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/__init__.py +0 -42
  19. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/communication.py +5 -4
  20. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/documents.py +8 -0
  21. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/tasks/tasks.py +12 -3
  22. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/v2.py +0 -96
  23. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v1_query_audit_logs_response.py +4 -0
  24. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/__init__.py +1 -2
  25. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +5 -0
  26. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +2 -0
  27. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/payer_search_response.py +2 -0
  28. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +4 -0
  29. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +2 -0
  30. samplehc-0.16.0/src/samplehc/types/v2/communication_send_email_response.py +27 -0
  31. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/communication_send_fax_params.py +2 -0
  32. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/communication_send_fax_response.py +2 -0
  33. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/communication_send_letter_params.py +8 -0
  34. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/communication_send_letter_response.py +2 -0
  35. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/database_execute_sql_response.py +2 -0
  36. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_classify_params.py +2 -0
  37. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_classify_response.py +2 -0
  38. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_combine_response.py +4 -0
  39. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_create_from_splits_params.py +2 -0
  40. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_create_from_splits_response.py +2 -0
  41. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_extract_params.py +40 -3
  42. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_extract_response.py +2 -0
  43. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_generate_csv_response.py +4 -0
  44. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +2 -0
  45. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +2 -0
  46. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +2 -0
  47. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_search_response.py +2 -0
  48. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_split_params.py +2 -0
  49. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_split_response.py +2 -0
  50. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +2 -0
  51. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +2 -0
  52. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +2 -0
  53. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_split_params.py +2 -0
  54. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_split_response.py +2 -0
  55. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +2 -0
  56. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/template_render_document_response.py +2 -0
  57. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/hie/document_upload_params.py +2 -0
  58. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +2 -0
  59. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +2 -0
  60. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +2 -0
  61. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +2 -0
  62. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +2 -0
  63. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +2 -0
  64. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +2 -0
  65. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +2 -0
  66. samplehc-0.16.0/src/samplehc/types/v2/ledger/__init__.py +3 -0
  67. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_companies_response.py +2 -0
  68. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_plans_response.py +2 -0
  69. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_response.py +2 -0
  70. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +2 -0
  71. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +2 -0
  72. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_cancel_response.py +2 -0
  73. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_complete_response.py +2 -0
  74. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_update_column_params.py +6 -3
  75. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +2 -0
  76. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +2 -0
  77. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +2 -0
  78. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_start_response.py +2 -0
  79. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_communication.py +9 -8
  80. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_documents.py +18 -0
  81. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_tasks.py +30 -8
  82. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_client.py +391 -166
  83. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_models.py +4 -4
  84. samplehc-0.14.0/.release-please-manifest.json +0 -3
  85. samplehc-0.14.0/src/samplehc/resources/v2/browser_agents/__init__.py +0 -33
  86. samplehc-0.14.0/src/samplehc/resources/v2/browser_agents/browser_agents.py +0 -209
  87. samplehc-0.14.0/src/samplehc/resources/v2/browser_agents/runs/__init__.py +0 -33
  88. samplehc-0.14.0/src/samplehc/resources/v2/browser_agents/runs/help_requests.py +0 -191
  89. samplehc-0.14.0/src/samplehc/resources/v2/browser_agents/runs/runs.py +0 -233
  90. samplehc-0.14.0/src/samplehc/resources/v2/browser_automation/__init__.py +0 -33
  91. samplehc-0.14.0/src/samplehc/resources/v2/browser_automation/availity.py +0 -249
  92. samplehc-0.14.0/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -102
  93. samplehc-0.14.0/src/samplehc/resources/v2/ledger/__init__.py +0 -47
  94. samplehc-0.14.0/src/samplehc/resources/v2/ledger/account.py +0 -297
  95. samplehc-0.14.0/src/samplehc/resources/v2/ledger/entry.py +0 -381
  96. samplehc-0.14.0/src/samplehc/resources/v2/ledger/ledger.py +0 -134
  97. samplehc-0.14.0/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -13
  98. samplehc-0.14.0/src/samplehc/types/v2/browser_agent_invoke_response.py +0 -15
  99. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/__init__.py +0 -6
  100. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/run_list_events_params.py +0 -15
  101. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/run_list_events_response.py +0 -30
  102. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/runs/__init__.py +0 -6
  103. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +0 -18
  104. samplehc-0.14.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -28
  105. samplehc-0.14.0/src/samplehc/types/v2/browser_automation/__init__.py +0 -6
  106. samplehc-0.14.0/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -59
  107. samplehc-0.14.0/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -12
  108. samplehc-0.14.0/src/samplehc/types/v2/ledger/__init__.py +0 -10
  109. samplehc-0.14.0/src/samplehc/types/v2/ledger/account_writeoff_params.py +0 -23
  110. samplehc-0.14.0/src/samplehc/types/v2/ledger/account_writeoff_response.py +0 -12
  111. samplehc-0.14.0/src/samplehc/types/v2/ledger/entry_post_params.py +0 -60
  112. samplehc-0.14.0/src/samplehc/types/v2/ledger/entry_post_response.py +0 -10
  113. samplehc-0.14.0/src/samplehc/types/v2/ledger/entry_reverse_params.py +0 -18
  114. samplehc-0.14.0/src/samplehc/types/v2/ledger/entry_reverse_response.py +0 -10
  115. samplehc-0.14.0/tests/api_resources/v2/browser_agents/runs/test_help_requests.py +0 -164
  116. samplehc-0.14.0/tests/api_resources/v2/browser_agents/test_runs.py +0 -128
  117. samplehc-0.14.0/tests/api_resources/v2/browser_automation/test_availity.py +0 -182
  118. samplehc-0.14.0/tests/api_resources/v2/integrations/wellsky/__init__.py +0 -1
  119. samplehc-0.14.0/tests/api_resources/v2/ledger/__init__.py +0 -1
  120. samplehc-0.14.0/tests/api_resources/v2/ledger/test_account.py +0 -266
  121. samplehc-0.14.0/tests/api_resources/v2/ledger/test_entry.py +0 -248
  122. samplehc-0.14.0/tests/api_resources/v2/tasks/__init__.py +0 -1
  123. samplehc-0.14.0/tests/api_resources/v2/test_browser_agents.py +0 -126
  124. samplehc-0.14.0/tests/api_resources/v2/workflow_runs/__init__.py +0 -1
  125. {samplehc-0.14.0 → samplehc-0.16.0}/.gitignore +0 -0
  126. {samplehc-0.14.0 → samplehc-0.16.0}/CONTRIBUTING.md +0 -0
  127. {samplehc-0.14.0 → samplehc-0.16.0}/SECURITY.md +0 -0
  128. {samplehc-0.14.0 → samplehc-0.16.0}/bin/check-release-environment +0 -0
  129. {samplehc-0.14.0 → samplehc-0.16.0}/bin/publish-pypi +0 -0
  130. {samplehc-0.14.0 → samplehc-0.16.0}/examples/.keep +0 -0
  131. {samplehc-0.14.0 → samplehc-0.16.0}/noxfile.py +0 -0
  132. {samplehc-0.14.0 → samplehc-0.16.0}/release-please-config.json +0 -0
  133. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/__init__.py +0 -0
  134. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_compat.py +0 -0
  135. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_constants.py +0 -0
  136. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_exceptions.py +0 -0
  137. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_files.py +0 -0
  138. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_qs.py +0 -0
  139. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_resource.py +0 -0
  140. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_response.py +0 -0
  141. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/__init__.py +0 -0
  142. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_compat.py +0 -0
  143. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_datetime_parse.py +0 -0
  144. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_logs.py +0 -0
  145. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_proxy.py +0 -0
  146. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_reflection.py +0 -0
  147. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
  148. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_streams.py +0 -0
  149. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_transform.py +0 -0
  150. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/_utils/_typing.py +0 -0
  151. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/lib/.keep +0 -0
  152. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/py.typed +0 -0
  153. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/__init__.py +0 -0
  154. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v1/__init__.py +0 -0
  155. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v1/v1.py +0 -0
  156. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/async_results.py +0 -0
  157. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
  158. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/clearinghouse/claim.py +0 -0
  159. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
  160. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/clearinghouse/payers.py +0 -0
  161. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/database.py +0 -0
  162. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
  163. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
  164. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
  165. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
  166. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
  167. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/events.py +0 -0
  168. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
  169. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/hie/adt.py +0 -0
  170. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
  171. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
  172. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/__init__.py +0 -0
  173. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
  174. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
  175. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
  176. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
  177. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
  178. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +0 -0
  179. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  180. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +0 -0
  181. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +0 -0
  182. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/integrations.py +0 -0
  183. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
  184. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
  185. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
  186. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/salesforce.py +0 -0
  187. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
  188. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/wellsky/__init__.py +0 -0
  189. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/wellsky/patients.py +0 -0
  190. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/wellsky/wellsky.py +0 -0
  191. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/integrations/xcures.py +0 -0
  192. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/policies.py +0 -0
  193. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
  194. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
  195. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
  196. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
  197. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
  198. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/resources/v2/workflows.py +0 -0
  199. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/__init__.py +0 -0
  200. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v1/__init__.py +0 -0
  201. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
  202. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
  203. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
  204. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
  205. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
  206. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
  207. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
  208. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -0
  209. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse/payer_search_params.py +0 -0
  210. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
  211. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_check_claim_status_params.py +0 -0
  212. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
  213. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
  214. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
  215. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
  216. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
  217. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
  218. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
  219. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
  220. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
  221. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_search_params.py +0 -0
  222. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
  223. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
  224. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_unzip_async_response.py +0 -0
  225. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
  226. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
  227. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
  228. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
  229. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
  230. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
  231. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
  232. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
  233. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
  234. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
  235. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
  236. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/hie/adt_subscribe_params.py +0 -0
  237. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
  238. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
  239. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/__init__.py +0 -0
  240. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
  241. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
  242. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
  243. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
  244. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
  245. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
  246. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
  247. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
  248. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  249. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +0 -0
  250. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
  251. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
  252. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
  253. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
  254. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
  255. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
  256. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
  257. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/salesforce_run_crud_action_params.py +0 -0
  258. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +0 -0
  259. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
  260. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
  261. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/wellsky/__init__.py +0 -0
  262. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/wellsky/patient_add_params.py +0 -0
  263. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/wellsky/patient_search_params.py +0 -0
  264. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/integrations/xcure_make_request_params.py +0 -0
  265. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
  266. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
  267. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
  268. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
  269. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
  270. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
  271. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
  272. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_update_column_response.py +0 -0
  273. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
  274. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
  275. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
  276. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
  277. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
  278. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
  279. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
  280. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
  281. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
  282. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
  283. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
  284. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
  285. {samplehc-0.14.0 → samplehc-0.16.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
  286. {samplehc-0.14.0 → samplehc-0.16.0}/tests/__init__.py +0 -0
  287. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/__init__.py +0 -0
  288. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/test_v1.py +0 -0
  289. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v1/__init__.py +0 -0
  290. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/__init__.py +0 -0
  291. {samplehc-0.14.0/tests/api_resources/v2/browser_agents → samplehc-0.16.0/tests/api_resources/v2/clearinghouse}/__init__.py +0 -0
  292. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -0
  293. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/clearinghouse/test_payers.py +0 -0
  294. {samplehc-0.14.0/tests/api_resources/v2/browser_agents/runs → samplehc-0.16.0/tests/api_resources/v2/documents}/__init__.py +0 -0
  295. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
  296. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/documents/test_legacy.py +0 -0
  297. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
  298. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/documents/test_templates.py +0 -0
  299. {samplehc-0.14.0/tests/api_resources/v2/browser_automation → samplehc-0.16.0/tests/api_resources/v2/hie}/__init__.py +0 -0
  300. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/hie/test_adt.py +0 -0
  301. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
  302. {samplehc-0.14.0/tests/api_resources/v2/clearinghouse → samplehc-0.16.0/tests/api_resources/v2/integrations}/__init__.py +0 -0
  303. {samplehc-0.14.0/tests/api_resources/v2/documents → samplehc-0.16.0/tests/api_resources/v2/integrations/bank}/__init__.py +0 -0
  304. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
  305. {samplehc-0.14.0/tests/api_resources/v2/hie → samplehc-0.16.0/tests/api_resources/v2/integrations/glidian}/__init__.py +0 -0
  306. {samplehc-0.14.0/tests/api_resources/v2/integrations → samplehc-0.16.0/tests/api_resources/v2/integrations/glidian/prior_authorizations}/__init__.py +0 -0
  307. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
  308. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
  309. {samplehc-0.14.0/tests/api_resources/v2/integrations/bank → samplehc-0.16.0/tests/api_resources/v2/integrations/kno2}/__init__.py +0 -0
  310. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
  311. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
  312. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
  313. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/test_salesforce.py +0 -0
  314. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
  315. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/test_xcures.py +0 -0
  316. {samplehc-0.14.0/tests/api_resources/v2/integrations/glidian → samplehc-0.16.0/tests/api_resources/v2/integrations/wellsky}/__init__.py +0 -0
  317. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/integrations/wellsky/test_patients.py +0 -0
  318. {samplehc-0.14.0/tests/api_resources/v2/integrations/glidian/prior_authorizations → samplehc-0.16.0/tests/api_resources/v2/tasks}/__init__.py +0 -0
  319. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
  320. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_async_results.py +0 -0
  321. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
  322. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_database.py +0 -0
  323. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_events.py +0 -0
  324. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_policies.py +0 -0
  325. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
  326. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/test_workflows.py +0 -0
  327. {samplehc-0.14.0/tests/api_resources/v2/integrations/kno2 → samplehc-0.16.0/tests/api_resources/v2/workflow_runs}/__init__.py +0 -0
  328. {samplehc-0.14.0 → samplehc-0.16.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
  329. {samplehc-0.14.0 → samplehc-0.16.0}/tests/conftest.py +0 -0
  330. {samplehc-0.14.0 → samplehc-0.16.0}/tests/sample_file.txt +0 -0
  331. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_deepcopy.py +0 -0
  332. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_extract_files.py +0 -0
  333. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_files.py +0 -0
  334. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_qs.py +0 -0
  335. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_required_args.py +0 -0
  336. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_response.py +0 -0
  337. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_streaming.py +0 -0
  338. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_transform.py +0 -0
  339. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_utils/test_datetime_parse.py +0 -0
  340. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_utils/test_proxy.py +0 -0
  341. {samplehc-0.14.0 → samplehc-0.16.0}/tests/test_utils/test_typing.py +0 -0
  342. {samplehc-0.14.0 → samplehc-0.16.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.16.0"
3
+ }
@@ -1,5 +1,65 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.0 (2026-01-22)
4
+
5
+ Full Changelog: [v0.15.0...v0.16.0](https://github.com/samplehc/samplehc-python/compare/v0.15.0...v0.16.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([2c5ebca](https://github.com/samplehc/samplehc-python/commit/2c5ebcaad40061800432214ba9684de5027cd214))
10
+ * **api:** api update ([6c12619](https://github.com/samplehc/samplehc-python/commit/6c1261941a01ae6691409542d792ce3f8527c893))
11
+ * **client:** add support for binary request streaming ([bd7faea](https://github.com/samplehc/samplehc-python/commit/bd7faeac1f2926620b2fb9f9151e91c22429f365))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **client:** loosen auth header validation ([08b85a9](https://github.com/samplehc/samplehc-python/commit/08b85a9a0735cedf0a650ac8ef704f36880dbe01))
17
+
18
+
19
+ ### Chores
20
+
21
+ * **internal:** update `actions/checkout` version ([7aa87fa](https://github.com/samplehc/samplehc-python/commit/7aa87faade3b1943520e2f95018a675f0513eaa9))
22
+
23
+ ## 0.15.0 (2026-01-06)
24
+
25
+ Full Changelog: [v0.14.0...v0.15.0](https://github.com/samplehc/samplehc-python/compare/v0.14.0...v0.15.0)
26
+
27
+ ### Features
28
+
29
+ * **api:** api update ([932fd3d](https://github.com/samplehc/samplehc-python/commit/932fd3dd41ab9e219b36078fcc55627961ef4af7))
30
+ * **api:** api update ([9567314](https://github.com/samplehc/samplehc-python/commit/956731408f0f8a28a9c81af4e2d2661bdad9babd))
31
+ * **api:** api update ([28caf01](https://github.com/samplehc/samplehc-python/commit/28caf01f1d11a3ab29f4a745d10b1a65b4e38bff))
32
+ * **api:** api update ([4313d2a](https://github.com/samplehc/samplehc-python/commit/4313d2a914c9b1c841893e58ce749b00ae2aa25a))
33
+ * **api:** api update ([956505a](https://github.com/samplehc/samplehc-python/commit/956505a9dc0644b71932296cb1a928cd36914778))
34
+ * **api:** api update ([f49bb43](https://github.com/samplehc/samplehc-python/commit/f49bb435cfcb4e289bd61c99e5d27038024b4b76))
35
+ * **api:** manual updates ([403a3bc](https://github.com/samplehc/samplehc-python/commit/403a3bc523258299fcb8196a598ac8c8bf91a3ca))
36
+ * **api:** manual updates ([384b359](https://github.com/samplehc/samplehc-python/commit/384b359246101a209494271a4e5f2103537d3c26))
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **client:** close streams without requiring full consumption ([f8efd76](https://github.com/samplehc/samplehc-python/commit/f8efd76e0aea684502cbd4264f05bafe34984c91))
42
+ * compat with Python 3.14 ([63aebd3](https://github.com/samplehc/samplehc-python/commit/63aebd32f1870e98f8aa08328cf54d426843d57a))
43
+ * **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([5e8848c](https://github.com/samplehc/samplehc-python/commit/5e8848c6856a409b525a0b71211dccebf004a7bc))
44
+ * ensure streams are always closed ([3b83779](https://github.com/samplehc/samplehc-python/commit/3b83779ccd6d66fba95889a8e534daea6dff2dd2))
45
+ * **types:** allow pyright to infer TypedDict types within SequenceNotStr ([6c2844a](https://github.com/samplehc/samplehc-python/commit/6c2844ab6b542c26fe2d64b737aaba4b0c81ff02))
46
+ * use async_to_httpx_files in patch method ([d13b471](https://github.com/samplehc/samplehc-python/commit/d13b4714668e3eecc9e7e0d38f627e37f84fb4b9))
47
+
48
+
49
+ ### Chores
50
+
51
+ * add missing docstrings ([823e285](https://github.com/samplehc/samplehc-python/commit/823e2858b5f280dd2b5287560f91d65800a70e66))
52
+ * add Python 3.14 classifier and testing ([5d169a2](https://github.com/samplehc/samplehc-python/commit/5d169a2bf452c6df92f96d57bfe3429a83bbf511))
53
+ * **deps:** mypy 1.18.1 has a regression, pin to 1.17 ([76b2aec](https://github.com/samplehc/samplehc-python/commit/76b2aecf1bac822171c8ee0fe9c52355f5b3d92b))
54
+ * **docs:** use environment variables for authentication in code snippets ([5f82bf4](https://github.com/samplehc/samplehc-python/commit/5f82bf40b10539574e3b77afc3a77a8a22d1bdab))
55
+ * **internal/tests:** avoid race condition with implicit client cleanup ([cdb29fd](https://github.com/samplehc/samplehc-python/commit/cdb29fd8c1604cc5a42bc9b54b212222b7d1b01f))
56
+ * **internal:** add `--fix` argument to lint script ([797d372](https://github.com/samplehc/samplehc-python/commit/797d372d36c2d433105e3a12830550b719e4b4ea))
57
+ * **internal:** add missing files argument to base client ([d538823](https://github.com/samplehc/samplehc-python/commit/d538823975291569d89b020457fa0e03aafe176f))
58
+ * **internal:** grammar fix (it's -> its) ([ec252ac](https://github.com/samplehc/samplehc-python/commit/ec252acf2409f35e27811471775b3957f4a4d3e7))
59
+ * **package:** drop Python 3.8 support ([c73ebc2](https://github.com/samplehc/samplehc-python/commit/c73ebc2b5d8d10a38c4f8bc63f3b14a331861d3a))
60
+ * speedup initial import ([fa2c710](https://github.com/samplehc/samplehc-python/commit/fa2c7100e9e138a69f9f0243f81a64650ae13ae2))
61
+ * update lockfile ([89945d5](https://github.com/samplehc/samplehc-python/commit/89945d5d11c9320f3a269236f0b78751c0fc2373))
62
+
3
63
  ## 0.14.0 (2025-10-21)
4
64
 
5
65
  Full Changelog: [v0.13.0...v0.14.0](https://github.com/samplehc/samplehc-python/compare/v0.13.0...v0.14.0)
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2025 Sample Healthcare
189
+ Copyright 2026 Sample Healthcare
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.14.0
3
+ Version: 0.16.0
4
4
  Summary: The official Python library for the Sample Healthcare API
5
5
  Project-URL: Homepage, https://github.com/samplehc/samplehc-python
6
6
  Project-URL: Repository, https://github.com/samplehc/samplehc-python
@@ -13,15 +13,15 @@ Classifier: Operating System :: Microsoft :: Windows
13
13
  Classifier: Operating System :: OS Independent
14
14
  Classifier: Operating System :: POSIX
15
15
  Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Programming Language :: Python :: 3.8
17
16
  Classifier: Programming Language :: Python :: 3.9
18
17
  Classifier: Programming Language :: Python :: 3.10
19
18
  Classifier: Programming Language :: Python :: 3.11
20
19
  Classifier: Programming Language :: Python :: 3.12
21
20
  Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
22
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
23
  Classifier: Typing :: Typed
24
- Requires-Python: >=3.8
24
+ Requires-Python: >=3.9
25
25
  Requires-Dist: anyio<5,>=3.5.0
26
26
  Requires-Dist: distro<2,>=1.7.0
27
27
  Requires-Dist: httpx<1,>=0.23.0
@@ -38,7 +38,7 @@ Description-Content-Type: text/markdown
38
38
  <!-- prettier-ignore -->
39
39
  [![PyPI version](https://img.shields.io/pypi/v/samplehc.svg?label=pypi%20(stable))](https://pypi.org/project/samplehc/)
40
40
 
41
- The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.8+
41
+ The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.9+
42
42
  application. The library includes type definitions for all request params and response fields,
43
43
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
44
 
@@ -118,6 +118,7 @@ pip install samplehc[aiohttp]
118
118
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
119
119
 
120
120
  ```python
121
+ import os
121
122
  import asyncio
122
123
  from samplehc import DefaultAioHttpClient
123
124
  from samplehc import AsyncSampleHealthcare
@@ -125,7 +126,7 @@ from samplehc import AsyncSampleHealthcare
125
126
 
126
127
  async def main() -> None:
127
128
  async with AsyncSampleHealthcare(
128
- api_key="My API Key",
129
+ api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
129
130
  http_client=DefaultAioHttpClient(),
130
131
  ) as client:
131
132
  response = await client.v1.sql_execute(
@@ -431,7 +432,7 @@ print(samplehc.__version__)
431
432
 
432
433
  ## Requirements
433
434
 
434
- Python 3.8 or higher.
435
+ Python 3.9 or higher.
435
436
 
436
437
  ## Contributing
437
438
 
@@ -3,7 +3,7 @@
3
3
  <!-- prettier-ignore -->
4
4
  [![PyPI version](https://img.shields.io/pypi/v/samplehc.svg?label=pypi%20(stable))](https://pypi.org/project/samplehc/)
5
5
 
6
- The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.8+
6
+ The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.9+
7
7
  application. The library includes type definitions for all request params and response fields,
8
8
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
9
9
 
@@ -83,6 +83,7 @@ pip install samplehc[aiohttp]
83
83
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
84
84
 
85
85
  ```python
86
+ import os
86
87
  import asyncio
87
88
  from samplehc import DefaultAioHttpClient
88
89
  from samplehc import AsyncSampleHealthcare
@@ -90,7 +91,7 @@ from samplehc import AsyncSampleHealthcare
90
91
 
91
92
  async def main() -> None:
92
93
  async with AsyncSampleHealthcare(
93
- api_key="My API Key",
94
+ api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
94
95
  http_client=DefaultAioHttpClient(),
95
96
  ) as client:
96
97
  response = await client.v1.sql_execute(
@@ -396,7 +397,7 @@ print(samplehc.__version__)
396
397
 
397
398
  ## Requirements
398
399
 
399
- Python 3.8 or higher.
400
+ Python 3.9 or higher.
400
401
 
401
402
  ## Contributing
402
403
 
@@ -214,12 +214,16 @@ Methods:
214
214
  Types:
215
215
 
216
216
  ```python
217
- from samplehc.types.v2 import CommunicationSendFaxResponse, CommunicationSendLetterResponse
217
+ from samplehc.types.v2 import (
218
+ CommunicationSendEmailResponse,
219
+ CommunicationSendFaxResponse,
220
+ CommunicationSendLetterResponse,
221
+ )
218
222
  ```
219
223
 
220
224
  Methods:
221
225
 
222
- - <code title="post /api/v2/communication/send-email">client.v2.communication.<a href="./src/samplehc/resources/v2/communication.py">send_email</a>(\*\*<a href="src/samplehc/types/v2/communication_send_email_params.py">params</a>) -> object</code>
226
+ - <code title="post /api/v2/communication/send-email">client.v2.communication.<a href="./src/samplehc/resources/v2/communication.py">send_email</a>(\*\*<a href="src/samplehc/types/v2/communication_send_email_params.py">params</a>) -> <a href="./src/samplehc/types/v2/communication_send_email_response.py">CommunicationSendEmailResponse</a></code>
223
227
  - <code title="post /api/v2/communication/send-fax">client.v2.communication.<a href="./src/samplehc/resources/v2/communication.py">send_fax</a>(\*\*<a href="src/samplehc/types/v2/communication_send_fax_params.py">params</a>) -> <a href="./src/samplehc/types/v2/communication_send_fax_response.py">CommunicationSendFaxResponse</a></code>
224
228
  - <code title="post /api/v2/communication/letters">client.v2.communication.<a href="./src/samplehc/resources/v2/communication.py">send_letter</a>(\*\*<a href="src/samplehc/types/v2/communication_send_letter_params.py">params</a>) -> <a href="./src/samplehc/types/v2/communication_send_letter_response.py">CommunicationSendLetterResponse</a></code>
225
229
 
@@ -269,34 +273,6 @@ Methods:
269
273
  - <code title="get /api/v2/clearinghouse/claim/{claimId}">client.v2.clearinghouse.claim.<a href="./src/samplehc/resources/v2/clearinghouse/claim.py">retrieve_status</a>(claim_id) -> object</code>
270
274
  - <code title="post /api/v2/clearinghouse/claim">client.v2.clearinghouse.claim.<a href="./src/samplehc/resources/v2/clearinghouse/claim.py">submit</a>(\*\*<a href="src/samplehc/types/v2/clearinghouse/claim_submit_params.py">params</a>) -> <a href="./src/samplehc/types/v2/clearinghouse/claim_submit_response.py">ClaimSubmitResponse</a></code>
271
275
 
272
- ## Ledger
273
-
274
- ### Entry
275
-
276
- Types:
277
-
278
- ```python
279
- from samplehc.types.v2.ledger import EntryPostResponse, EntryReverseResponse
280
- ```
281
-
282
- Methods:
283
-
284
- - <code title="post /api/v2/ledger/entry">client.v2.ledger.entry.<a href="./src/samplehc/resources/v2/ledger/entry.py">post</a>(\*\*<a href="src/samplehc/types/v2/ledger/entry_post_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/entry_post_response.py">EntryPostResponse</a></code>
285
- - <code title="post /api/v2/ledger/entry/{id}/reverse">client.v2.ledger.entry.<a href="./src/samplehc/resources/v2/ledger/entry.py">reverse</a>(id, \*\*<a href="src/samplehc/types/v2/ledger/entry_reverse_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/entry_reverse_response.py">EntryReverseResponse</a></code>
286
-
287
- ### Account
288
-
289
- Types:
290
-
291
- ```python
292
- from samplehc.types.v2.ledger import AccountWriteoffResponse
293
- ```
294
-
295
- Methods:
296
-
297
- - <code title="get /api/v2/ledger/account/{orderId}/line-item/{lineItemId}/balance">client.v2.ledger.account.<a href="./src/samplehc/resources/v2/ledger/account.py">get_balance</a>(line_item_id, \*, order_id) -> None</code>
298
- - <code title="post /api/v2/ledger/account/{orderId}/line-item/{lineItemId}/writeoff">client.v2.ledger.account.<a href="./src/samplehc/resources/v2/ledger/account.py">writeoff</a>(line_item_id, \*, order_id, \*\*<a href="src/samplehc/types/v2/ledger/account_writeoff_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/account_writeoff_response.py">AccountWriteoffResponse</a></code>
299
-
300
276
  ## Integrations
301
277
 
302
278
  ### Snowflake
@@ -444,42 +420,6 @@ Methods:
444
420
 
445
421
  - <code title="post /api/v2/events/">client.v2.events.<a href="./src/samplehc/resources/v2/events.py">emit</a>(\*\*<a href="src/samplehc/types/v2/event_emit_params.py">params</a>) -> <a href="./src/samplehc/types/v2/event_emit_response.py">EventEmitResponse</a></code>
446
422
 
447
- ## BrowserAgents
448
-
449
- Types:
450
-
451
- ```python
452
- from samplehc.types.v2 import BrowserAgentInvokeResponse
453
- ```
454
-
455
- Methods:
456
-
457
- - <code title="post /api/v2/browser-agents/{slug}/invoke">client.v2.browser_agents.<a href="./src/samplehc/resources/v2/browser_agents/browser_agents.py">invoke</a>(slug, \*\*<a href="src/samplehc/types/v2/browser_agent_invoke_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agent_invoke_response.py">BrowserAgentInvokeResponse</a></code>
458
-
459
- ### Runs
460
-
461
- Types:
462
-
463
- ```python
464
- from samplehc.types.v2.browser_agents import RunListEventsResponse
465
- ```
466
-
467
- Methods:
468
-
469
- - <code title="get /api/v2/browser-agents/runs/{browserAgentRunId}/events">client.v2.browser_agents.runs.<a href="./src/samplehc/resources/v2/browser_agents/runs/runs.py">list_events</a>(browser_agent_run_id, \*\*<a href="src/samplehc/types/v2/browser_agents/run_list_events_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agents/run_list_events_response.py">RunListEventsResponse</a></code>
470
-
471
- #### HelpRequests
472
-
473
- Types:
474
-
475
- ```python
476
- from samplehc.types.v2.browser_agents.runs import HelpRequestResolveResponse
477
- ```
478
-
479
- Methods:
480
-
481
- - <code title="patch /api/v2/browser-agents/{slug}/runs/{browserAgentRunId}/help-requests/{helpRequestId}/resolution">client.v2.browser_agents.runs.help_requests.<a href="./src/samplehc/resources/v2/browser_agents/runs/help_requests.py">resolve</a>(help_request_id, \*, slug, browser_agent_run_id, \*\*<a href="src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py">HelpRequestResolveResponse</a></code>
482
-
483
423
  ## Policies
484
424
 
485
425
  Types:
@@ -534,17 +474,3 @@ from samplehc.types.v2 import DatabaseExecuteSqlResponse
534
474
  Methods:
535
475
 
536
476
  - <code title="post /api/v2/database/sql">client.v2.database.<a href="./src/samplehc/resources/v2/database.py">execute_sql</a>(\*\*<a href="src/samplehc/types/v2/database_execute_sql_params.py">params</a>) -> <a href="./src/samplehc/types/v2/database_execute_sql_response.py">DatabaseExecuteSqlResponse</a></code>
537
-
538
- ## BrowserAutomation
539
-
540
- ### Availity
541
-
542
- Types:
543
-
544
- ```python
545
- from samplehc.types.v2.browser_automation import AvailitySubmitAppealResponse
546
- ```
547
-
548
- Methods:
549
-
550
- - <code title="post /api/v2/browser-automation/availity/submit-appeal">client.v2.browser_automation.availity.<a href="./src/samplehc/resources/v2/browser_automation/availity.py">submit_appeal</a>(\*\*<a href="src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py">AvailitySubmitAppealResponse</a></code>
@@ -1,30 +1,32 @@
1
1
  [project]
2
2
  name = "samplehc"
3
- version = "0.14.0"
3
+ version = "0.16.0"
4
4
  description = "The official Python library for the Sample Healthcare API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
7
7
  authors = [
8
8
  { name = "Sample Healthcare", email = "support@samplehc.com" },
9
9
  ]
10
+
10
11
  dependencies = [
11
- "httpx>=0.23.0, <1",
12
- "pydantic>=1.9.0, <3",
13
- "typing-extensions>=4.10, <5",
14
- "anyio>=3.5.0, <5",
15
- "distro>=1.7.0, <2",
16
- "sniffio",
12
+ "httpx>=0.23.0, <1",
13
+ "pydantic>=1.9.0, <3",
14
+ "typing-extensions>=4.10, <5",
15
+ "anyio>=3.5.0, <5",
16
+ "distro>=1.7.0, <2",
17
+ "sniffio",
17
18
  ]
18
- requires-python = ">= 3.8"
19
+
20
+ requires-python = ">= 3.9"
19
21
  classifiers = [
20
22
  "Typing :: Typed",
21
23
  "Intended Audience :: Developers",
22
- "Programming Language :: Python :: 3.8",
23
24
  "Programming Language :: Python :: 3.9",
24
25
  "Programming Language :: Python :: 3.10",
25
26
  "Programming Language :: Python :: 3.11",
26
27
  "Programming Language :: Python :: 3.12",
27
28
  "Programming Language :: Python :: 3.13",
29
+ "Programming Language :: Python :: 3.14",
28
30
  "Operating System :: OS Independent",
29
31
  "Operating System :: POSIX",
30
32
  "Operating System :: MacOS",
@@ -46,7 +48,7 @@ managed = true
46
48
  # version pins are in requirements-dev.lock
47
49
  dev-dependencies = [
48
50
  "pyright==1.1.399",
49
- "mypy",
51
+ "mypy==1.17",
50
52
  "respx",
51
53
  "pytest",
52
54
  "pytest-asyncio",
@@ -141,7 +143,7 @@ filterwarnings = [
141
143
  # there are a couple of flags that are still disabled by
142
144
  # default in strict mode as they are experimental and niche.
143
145
  typeCheckingMode = "strict"
144
- pythonVersion = "3.8"
146
+ pythonVersion = "3.9"
145
147
 
146
148
  exclude = [
147
149
  "_dev",
@@ -12,40 +12,45 @@
12
12
  -e file:.
13
13
  aiohappyeyeballs==2.6.1
14
14
  # via aiohttp
15
- aiohttp==3.12.8
15
+ aiohttp==3.13.2
16
16
  # via httpx-aiohttp
17
17
  # via samplehc
18
- aiosignal==1.3.2
18
+ aiosignal==1.4.0
19
19
  # via aiohttp
20
- annotated-types==0.6.0
20
+ annotated-types==0.7.0
21
21
  # via pydantic
22
- anyio==4.4.0
22
+ anyio==4.12.0
23
23
  # via httpx
24
24
  # via samplehc
25
- argcomplete==3.1.2
25
+ argcomplete==3.6.3
26
26
  # via nox
27
27
  async-timeout==5.0.1
28
28
  # via aiohttp
29
- attrs==25.3.0
29
+ attrs==25.4.0
30
30
  # via aiohttp
31
- certifi==2023.7.22
31
+ # via nox
32
+ backports-asyncio-runner==1.2.0
33
+ # via pytest-asyncio
34
+ certifi==2025.11.12
32
35
  # via httpcore
33
36
  # via httpx
34
- colorlog==6.7.0
37
+ colorlog==6.10.1
38
+ # via nox
39
+ dependency-groups==1.3.1
35
40
  # via nox
36
- dirty-equals==0.6.0
37
- distlib==0.3.7
41
+ dirty-equals==0.11
42
+ distlib==0.4.0
38
43
  # via virtualenv
39
- distro==1.8.0
44
+ distro==1.9.0
40
45
  # via samplehc
41
- exceptiongroup==1.2.2
46
+ exceptiongroup==1.3.1
42
47
  # via anyio
43
48
  # via pytest
44
- execnet==2.1.1
49
+ execnet==2.1.2
45
50
  # via pytest-xdist
46
- filelock==3.12.4
51
+ filelock==3.19.1
47
52
  # via virtualenv
48
- frozenlist==1.6.2
53
+ frozenlist==1.8.0
49
54
  # via aiohttp
50
55
  # via aiosignal
51
56
  h11==0.16.0
@@ -58,80 +63,87 @@ httpx==0.28.1
58
63
  # via samplehc
59
64
  httpx-aiohttp==0.1.9
60
65
  # via samplehc
61
- idna==3.4
66
+ humanize==4.13.0
67
+ # via nox
68
+ idna==3.11
62
69
  # via anyio
63
70
  # via httpx
64
71
  # via yarl
65
- importlib-metadata==7.0.0
66
- iniconfig==2.0.0
72
+ importlib-metadata==8.7.0
73
+ iniconfig==2.1.0
67
74
  # via pytest
68
75
  markdown-it-py==3.0.0
69
76
  # via rich
70
77
  mdurl==0.1.2
71
78
  # via markdown-it-py
72
- multidict==6.4.4
79
+ multidict==6.7.0
73
80
  # via aiohttp
74
81
  # via yarl
75
- mypy==1.14.1
76
- mypy-extensions==1.0.0
82
+ mypy==1.17.0
83
+ mypy-extensions==1.1.0
77
84
  # via mypy
78
- nodeenv==1.8.0
85
+ nodeenv==1.9.1
79
86
  # via pyright
80
- nox==2023.4.22
81
- packaging==23.2
87
+ nox==2025.11.12
88
+ packaging==25.0
89
+ # via dependency-groups
82
90
  # via nox
83
91
  # via pytest
84
- platformdirs==3.11.0
92
+ pathspec==0.12.1
93
+ # via mypy
94
+ platformdirs==4.4.0
85
95
  # via virtualenv
86
- pluggy==1.5.0
96
+ pluggy==1.6.0
87
97
  # via pytest
88
- propcache==0.3.1
98
+ propcache==0.4.1
89
99
  # via aiohttp
90
100
  # via yarl
91
- pydantic==2.11.9
101
+ pydantic==2.12.5
92
102
  # via samplehc
93
- pydantic-core==2.33.2
103
+ pydantic-core==2.41.5
94
104
  # via pydantic
95
- pygments==2.18.0
105
+ pygments==2.19.2
106
+ # via pytest
96
107
  # via rich
97
108
  pyright==1.1.399
98
- pytest==8.3.3
109
+ pytest==8.4.2
99
110
  # via pytest-asyncio
100
111
  # via pytest-xdist
101
- pytest-asyncio==0.24.0
102
- pytest-xdist==3.7.0
103
- python-dateutil==2.8.2
112
+ pytest-asyncio==1.2.0
113
+ pytest-xdist==3.8.0
114
+ python-dateutil==2.9.0.post0
104
115
  # via time-machine
105
- pytz==2023.3.post1
106
- # via dirty-equals
107
116
  respx==0.22.0
108
- rich==13.7.1
109
- ruff==0.9.4
110
- setuptools==68.2.2
111
- # via nodeenv
112
- six==1.16.0
117
+ rich==14.2.0
118
+ ruff==0.14.7
119
+ six==1.17.0
113
120
  # via python-dateutil
114
- sniffio==1.3.0
115
- # via anyio
121
+ sniffio==1.3.1
116
122
  # via samplehc
117
- time-machine==2.9.0
118
- tomli==2.0.2
123
+ time-machine==2.19.0
124
+ tomli==2.3.0
125
+ # via dependency-groups
119
126
  # via mypy
127
+ # via nox
120
128
  # via pytest
121
- typing-extensions==4.12.2
129
+ typing-extensions==4.15.0
130
+ # via aiosignal
122
131
  # via anyio
132
+ # via exceptiongroup
123
133
  # via multidict
124
134
  # via mypy
125
135
  # via pydantic
126
136
  # via pydantic-core
127
137
  # via pyright
138
+ # via pytest-asyncio
128
139
  # via samplehc
129
140
  # via typing-inspection
130
- typing-inspection==0.4.1
141
+ # via virtualenv
142
+ typing-inspection==0.4.2
131
143
  # via pydantic
132
- virtualenv==20.24.5
144
+ virtualenv==20.35.4
133
145
  # via nox
134
- yarl==1.20.0
146
+ yarl==1.22.0
135
147
  # via aiohttp
136
- zipp==3.17.0
148
+ zipp==3.23.0
137
149
  # via importlib-metadata
@@ -12,28 +12,28 @@
12
12
  -e file:.
13
13
  aiohappyeyeballs==2.6.1
14
14
  # via aiohttp
15
- aiohttp==3.12.8
15
+ aiohttp==3.13.2
16
16
  # via httpx-aiohttp
17
17
  # via samplehc
18
- aiosignal==1.3.2
18
+ aiosignal==1.4.0
19
19
  # via aiohttp
20
- annotated-types==0.6.0
20
+ annotated-types==0.7.0
21
21
  # via pydantic
22
- anyio==4.4.0
22
+ anyio==4.12.0
23
23
  # via httpx
24
24
  # via samplehc
25
25
  async-timeout==5.0.1
26
26
  # via aiohttp
27
- attrs==25.3.0
27
+ attrs==25.4.0
28
28
  # via aiohttp
29
- certifi==2023.7.22
29
+ certifi==2025.11.12
30
30
  # via httpcore
31
31
  # via httpx
32
- distro==1.8.0
32
+ distro==1.9.0
33
33
  # via samplehc
34
- exceptiongroup==1.2.2
34
+ exceptiongroup==1.3.1
35
35
  # via anyio
36
- frozenlist==1.6.2
36
+ frozenlist==1.8.0
37
37
  # via aiohttp
38
38
  # via aiosignal
39
39
  h11==0.16.0
@@ -45,31 +45,32 @@ httpx==0.28.1
45
45
  # via samplehc
46
46
  httpx-aiohttp==0.1.9
47
47
  # via samplehc
48
- idna==3.4
48
+ idna==3.11
49
49
  # via anyio
50
50
  # via httpx
51
51
  # via yarl
52
- multidict==6.4.4
52
+ multidict==6.7.0
53
53
  # via aiohttp
54
54
  # via yarl
55
- propcache==0.3.1
55
+ propcache==0.4.1
56
56
  # via aiohttp
57
57
  # via yarl
58
- pydantic==2.11.9
58
+ pydantic==2.12.5
59
59
  # via samplehc
60
- pydantic-core==2.33.2
60
+ pydantic-core==2.41.5
61
61
  # via pydantic
62
- sniffio==1.3.0
63
- # via anyio
62
+ sniffio==1.3.1
64
63
  # via samplehc
65
- typing-extensions==4.12.2
64
+ typing-extensions==4.15.0
65
+ # via aiosignal
66
66
  # via anyio
67
+ # via exceptiongroup
67
68
  # via multidict
68
69
  # via pydantic
69
70
  # via pydantic-core
70
71
  # via samplehc
71
72
  # via typing-inspection
72
- typing-inspection==0.4.1
73
+ typing-inspection==0.4.2
73
74
  # via pydantic
74
- yarl==1.20.0
75
+ yarl==1.22.0
75
76
  # via aiohttp