samplehc 0.5.0__tar.gz → 0.7.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 (348) hide show
  1. samplehc-0.7.0/.release-please-manifest.json +3 -0
  2. {samplehc-0.5.0 → samplehc-0.7.0}/CHANGELOG.md +357 -0
  3. {samplehc-0.5.0 → samplehc-0.7.0}/PKG-INFO +1 -1
  4. {samplehc-0.5.0 → samplehc-0.7.0}/api.md +77 -1
  5. {samplehc-0.5.0 → samplehc-0.7.0}/pyproject.toml +2 -2
  6. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_version.py +1 -1
  7. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/__init__.py +14 -0
  8. samplehc-0.7.0/src/samplehc/resources/v2/browser_agents.py +177 -0
  9. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/claim.py +20 -36
  10. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/communication.py +8 -0
  11. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/database.py +19 -9
  12. samplehc-0.7.0/src/samplehc/resources/v2/events/__init__.py +33 -0
  13. {samplehc-0.5.0/src/samplehc/resources/v2 → samplehc-0.7.0/src/samplehc/resources/v2/events}/events.py +42 -10
  14. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/__init__.py +33 -0
  15. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/adt.py +249 -0
  16. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/hie.py +102 -0
  17. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/__init__.py +14 -0
  18. samplehc-0.7.0/src/samplehc/resources/v2/integrations/glidian/__init__.py +33 -0
  19. samplehc-0.7.0/src/samplehc/resources/v2/integrations/glidian/glidian.py +425 -0
  20. samplehc-0.7.0/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +33 -0
  21. samplehc-0.7.0/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +276 -0
  22. samplehc-0.7.0/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +527 -0
  23. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/integrations.py +32 -0
  24. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/ledger.py +152 -0
  25. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/v2.py +40 -8
  26. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/__init__.py +8 -0
  27. samplehc-0.7.0/src/samplehc/types/v2/browser_agent_invoke_params.py +13 -0
  28. samplehc-0.7.0/src/samplehc/types/v2/browser_agent_invoke_response.py +12 -0
  29. samplehc-0.7.0/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +2692 -0
  30. samplehc-0.7.0/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +18 -0
  31. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_email_params.py +3 -0
  32. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/database_execute_sql_params.py +5 -3
  33. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/event_emit_params.py +1 -1
  34. samplehc-0.7.0/src/samplehc/types/v2/events/__init__.py +3 -0
  35. samplehc-0.7.0/src/samplehc/types/v2/events/hie/__init__.py +5 -0
  36. samplehc-0.7.0/src/samplehc/types/v2/events/hie/adt_subscribe_params.py +92 -0
  37. samplehc-0.7.0/src/samplehc/types/v2/integrations/__init__.py +20 -0
  38. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/__init__.py +20 -0
  39. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +32 -0
  40. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +22 -0
  41. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +11 -0
  42. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +14 -0
  43. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +20 -0
  44. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +14 -0
  45. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +7 -0
  46. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +40 -0
  47. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +22 -0
  48. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +17 -0
  49. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +17 -0
  50. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +31 -0
  51. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +11 -0
  52. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +17 -0
  53. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_list_services_params.py +13 -0
  54. samplehc-0.7.0/src/samplehc/types/v2/integrations/glidian_list_services_response.py +19 -0
  55. samplehc-0.7.0/src/samplehc/types/v2/ledger_post_remittance_accepted_params.py +37 -0
  56. samplehc-0.7.0/src/samplehc/types/v2/ledger_post_remittance_accepted_response.py +12 -0
  57. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/test_v1.py +14 -14
  58. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/browser_automation/test_availity.py +6 -6
  59. samplehc-0.7.0/tests/api_resources/v2/clearinghouse/test_claim.py +2592 -0
  60. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/clearinghouse/test_payers.py +12 -12
  61. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_formats.py +8 -8
  62. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_legacy.py +12 -12
  63. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_pdf_template.py +8 -8
  64. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_templates.py +22 -22
  65. samplehc-0.7.0/tests/api_resources/v2/events/hie/test_adt.py +233 -0
  66. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/hie/test_documents.py +16 -16
  67. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +8 -8
  68. samplehc-0.7.0/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +253 -0
  69. samplehc-0.7.0/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +569 -0
  70. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +16 -16
  71. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/test_careviso.py +16 -16
  72. samplehc-0.7.0/tests/api_resources/v2/integrations/test_glidian.py +356 -0
  73. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/test_snowflake.py +8 -8
  74. samplehc-0.7.0/tests/api_resources/v2/ledger/__init__.py +1 -0
  75. samplehc-0.7.0/tests/api_resources/v2/ledger/institutions/__init__.py +1 -0
  76. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/institutions/test_orders.py +8 -8
  77. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_institutions.py +14 -14
  78. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_insurance.py +6 -6
  79. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_orders.py +14 -14
  80. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_patients.py +6 -6
  81. samplehc-0.7.0/tests/api_resources/v2/tasks/__init__.py +1 -0
  82. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/tasks/test_state.py +18 -18
  83. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_async_results.py +20 -20
  84. samplehc-0.7.0/tests/api_resources/v2/test_browser_agents.py +126 -0
  85. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_clearinghouse.py +26 -26
  86. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_communication.py +26 -24
  87. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_database.py +8 -8
  88. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_documents.py +92 -92
  89. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_events.py +10 -10
  90. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_ledger.py +213 -78
  91. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_policies.py +40 -40
  92. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_tasks.py +50 -50
  93. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_workflow_runs.py +34 -34
  94. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/test_workflows.py +26 -26
  95. samplehc-0.7.0/tests/api_resources/v2/workflow_runs/__init__.py +1 -0
  96. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/workflow_runs/test_step.py +8 -8
  97. samplehc-0.5.0/.release-please-manifest.json +0 -3
  98. samplehc-0.5.0/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -2362
  99. samplehc-0.5.0/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +0 -9
  100. samplehc-0.5.0/src/samplehc/types/v2/integrations/__init__.py +0 -10
  101. samplehc-0.5.0/tests/api_resources/v2/clearinghouse/test_claim.py +0 -2306
  102. {samplehc-0.5.0 → samplehc-0.7.0}/.gitignore +0 -0
  103. {samplehc-0.5.0 → samplehc-0.7.0}/CONTRIBUTING.md +0 -0
  104. {samplehc-0.5.0 → samplehc-0.7.0}/LICENSE +0 -0
  105. {samplehc-0.5.0 → samplehc-0.7.0}/README.md +0 -0
  106. {samplehc-0.5.0 → samplehc-0.7.0}/SECURITY.md +0 -0
  107. {samplehc-0.5.0 → samplehc-0.7.0}/bin/check-release-environment +0 -0
  108. {samplehc-0.5.0 → samplehc-0.7.0}/bin/publish-pypi +0 -0
  109. {samplehc-0.5.0 → samplehc-0.7.0}/examples/.keep +0 -0
  110. {samplehc-0.5.0 → samplehc-0.7.0}/mypy.ini +0 -0
  111. {samplehc-0.5.0 → samplehc-0.7.0}/noxfile.py +0 -0
  112. {samplehc-0.5.0 → samplehc-0.7.0}/release-please-config.json +0 -0
  113. {samplehc-0.5.0 → samplehc-0.7.0}/requirements-dev.lock +0 -0
  114. {samplehc-0.5.0 → samplehc-0.7.0}/requirements.lock +0 -0
  115. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/__init__.py +0 -0
  116. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_base_client.py +0 -0
  117. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_client.py +0 -0
  118. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_compat.py +0 -0
  119. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_constants.py +0 -0
  120. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_exceptions.py +0 -0
  121. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_files.py +0 -0
  122. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_models.py +0 -0
  123. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_qs.py +0 -0
  124. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_resource.py +0 -0
  125. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_response.py +0 -0
  126. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_streaming.py +0 -0
  127. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_types.py +0 -0
  128. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/__init__.py +0 -0
  129. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_logs.py +0 -0
  130. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_proxy.py +0 -0
  131. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_reflection.py +0 -0
  132. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
  133. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_streams.py +0 -0
  134. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_sync.py +0 -0
  135. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_transform.py +0 -0
  136. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_typing.py +0 -0
  137. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/_utils/_utils.py +0 -0
  138. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/lib/.keep +0 -0
  139. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/py.typed +0 -0
  140. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/__init__.py +0 -0
  141. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v1/__init__.py +0 -0
  142. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v1/v1.py +0 -0
  143. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/async_results.py +0 -0
  144. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/__init__.py +0 -0
  145. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/availity.py +0 -0
  146. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -0
  147. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
  148. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
  149. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/payers.py +0 -0
  150. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
  151. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/documents.py +0 -0
  152. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
  153. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
  154. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
  155. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
  156. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
  157. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
  158. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
  159. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
  160. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
  161. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
  162. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
  163. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
  164. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
  165. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
  166. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
  167. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/__init__.py +0 -0
  168. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/__init__.py +0 -0
  169. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/institutions.py +0 -0
  170. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/orders.py +0 -0
  171. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/insurance.py +0 -0
  172. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/orders.py +0 -0
  173. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/patients.py +0 -0
  174. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/policies.py +0 -0
  175. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
  176. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
  177. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/tasks.py +0 -0
  178. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
  179. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
  180. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
  181. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflows.py +0 -0
  182. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/__init__.py +0 -0
  183. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v1/__init__.py +0 -0
  184. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
  185. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v1_query_audit_logs_response.py +0 -0
  186. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
  187. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
  188. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
  189. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
  190. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
  191. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/__init__.py +0 -0
  192. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -0
  193. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -0
  194. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
  195. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +0 -0
  196. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_params.py +0 -0
  197. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_response.py +0 -0
  198. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
  199. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
  200. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +0 -0
  201. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
  202. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
  203. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +0 -0
  204. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_fax_params.py +0 -0
  205. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_fax_response.py +0 -0
  206. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_letter_params.py +0 -0
  207. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_letter_response.py +0 -0
  208. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/database_execute_sql_response.py +0 -0
  209. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_classify_params.py +0 -0
  210. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_classify_response.py +0 -0
  211. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
  212. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_combine_response.py +0 -0
  213. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_create_from_splits_params.py +0 -0
  214. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_create_from_splits_response.py +0 -0
  215. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_extract_params.py +0 -0
  216. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_extract_response.py +0 -0
  217. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
  218. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_generate_csv_response.py +0 -0
  219. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
  220. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +0 -0
  221. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +0 -0
  222. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +0 -0
  223. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
  224. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_search_params.py +0 -0
  225. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_search_response.py +0 -0
  226. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_split_params.py +0 -0
  227. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_split_response.py +0 -0
  228. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
  229. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
  230. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
  231. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
  232. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
  233. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +0 -0
  234. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
  235. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +0 -0
  236. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
  237. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +0 -0
  238. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +0 -0
  239. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
  240. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
  241. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
  242. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_render_document_response.py +0 -0
  243. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
  244. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
  245. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
  246. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
  247. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_upload_params.py +0 -0
  248. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
  249. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
  250. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
  251. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
  252. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
  253. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
  254. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +0 -0
  255. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +0 -0
  256. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
  257. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
  258. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/__init__.py +0 -0
  259. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py +0 -0
  260. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py +0 -0
  261. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institutions/__init__.py +0 -0
  262. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py +0 -0
  263. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py +0 -0
  264. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_balances_response.py +0 -0
  265. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py +0 -0
  266. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py +0 -0
  267. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py +0 -0
  268. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_assign_invoice_params.py +0 -0
  269. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_assign_invoice_response.py +0 -0
  270. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_adjustment_params.py +0 -0
  271. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_adjustment_response.py +0 -0
  272. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_payment_params.py +0 -0
  273. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_payment_response.py +0 -0
  274. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_adjustment_params.py +0 -0
  275. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_adjustment_response.py +0 -0
  276. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_payment_params.py +0 -0
  277. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_payment_response.py +0 -0
  278. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_new_order_params.py +0 -0
  279. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_new_order_response.py +0 -0
  280. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_order_writeoff_params.py +0 -0
  281. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_order_writeoff_response.py +0 -0
  282. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_adjustment_params.py +0 -0
  283. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_adjustment_response.py +0 -0
  284. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_payment_params.py +0 -0
  285. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_payment_response.py +0 -0
  286. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_reverse_entry_params.py +0 -0
  287. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_reverse_entry_response.py +0 -0
  288. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
  289. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_companies_response.py +0 -0
  290. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
  291. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
  292. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_plans_response.py +0 -0
  293. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_response.py +0 -0
  294. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +0 -0
  295. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +0 -0
  296. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_cancel_response.py +0 -0
  297. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
  298. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_complete_response.py +0 -0
  299. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
  300. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
  301. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
  302. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
  303. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
  304. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
  305. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
  306. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
  307. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
  308. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
  309. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
  310. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
  311. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
  312. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
  313. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +0 -0
  314. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +0 -0
  315. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
  316. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +0 -0
  317. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
  318. {samplehc-0.5.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_start_response.py +0 -0
  319. {samplehc-0.5.0 → samplehc-0.7.0}/tests/__init__.py +0 -0
  320. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/__init__.py +0 -0
  321. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v1/__init__.py +0 -0
  322. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/__init__.py +0 -0
  323. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/browser_automation/__init__.py +0 -0
  324. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/clearinghouse/__init__.py +0 -0
  325. {samplehc-0.5.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/__init__.py +0 -0
  326. {samplehc-0.5.0/tests/api_resources/v2/hie → samplehc-0.7.0/tests/api_resources/v2/events}/__init__.py +0 -0
  327. {samplehc-0.5.0/tests/api_resources/v2/integrations → samplehc-0.7.0/tests/api_resources/v2/events/hie}/__init__.py +0 -0
  328. {samplehc-0.5.0/tests/api_resources/v2/integrations/bank → samplehc-0.7.0/tests/api_resources/v2/hie}/__init__.py +0 -0
  329. {samplehc-0.5.0/tests/api_resources/v2/integrations/kno2 → samplehc-0.7.0/tests/api_resources/v2/integrations}/__init__.py +0 -0
  330. {samplehc-0.5.0/tests/api_resources/v2/ledger → samplehc-0.7.0/tests/api_resources/v2/integrations/bank}/__init__.py +0 -0
  331. {samplehc-0.5.0/tests/api_resources/v2/ledger/institutions → samplehc-0.7.0/tests/api_resources/v2/integrations/glidian}/__init__.py +0 -0
  332. {samplehc-0.5.0/tests/api_resources/v2/tasks → samplehc-0.7.0/tests/api_resources/v2/integrations/glidian/prior_authorizations}/__init__.py +0 -0
  333. {samplehc-0.5.0/tests/api_resources/v2/workflow_runs → samplehc-0.7.0/tests/api_resources/v2/integrations/kno2}/__init__.py +0 -0
  334. {samplehc-0.5.0 → samplehc-0.7.0}/tests/conftest.py +0 -0
  335. {samplehc-0.5.0 → samplehc-0.7.0}/tests/sample_file.txt +0 -0
  336. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_client.py +0 -0
  337. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_deepcopy.py +0 -0
  338. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_extract_files.py +0 -0
  339. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_files.py +0 -0
  340. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_models.py +0 -0
  341. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_qs.py +0 -0
  342. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_required_args.py +0 -0
  343. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_response.py +0 -0
  344. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_streaming.py +0 -0
  345. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_transform.py +0 -0
  346. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_utils/test_proxy.py +0 -0
  347. {samplehc-0.5.0 → samplehc-0.7.0}/tests/test_utils/test_typing.py +0 -0
  348. {samplehc-0.5.0 → samplehc-0.7.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.7.0"
3
+ }
@@ -1,5 +1,362 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.7.0 (2025-08-20)
4
+
5
+ Full Changelog: [v0.6.0...v0.7.0](https://github.com/samplehc/samplehc-python/compare/v0.6.0...v0.7.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** add clearinghouse endpoints ([35afeef](https://github.com/samplehc/samplehc-python/commit/35afeefd27cb50058f9972fb6bd1bcbdfbdae37c))
10
+ * **api:** add event emit ([bc778c2](https://github.com/samplehc/samplehc-python/commit/bc778c22207903412f32e6440d9150ff96df5fe7))
11
+ * **api:** add glidian and browser-agents resources ([a9a7bb7](https://github.com/samplehc/samplehc-python/commit/a9a7bb73db109723987bec73db9ea15901ad42e4))
12
+ * **api:** add hie endpoints ([1f67772](https://github.com/samplehc/samplehc-python/commit/1f67772f38bb7e26c2ae1d709da3462937e5f853))
13
+ * **api:** add more ledger endpoints ([421213a](https://github.com/samplehc/samplehc-python/commit/421213aa589b211d5a7625ea7d03d09f7fef2170))
14
+ * **api:** add send_fax, template methods, transform_json_to_html to sdk ([420b7dd](https://github.com/samplehc/samplehc-python/commit/420b7dd9b21797a102dcba9f4afa083b44e971a6))
15
+ * **api:** added cancel workflow endpoint ([c561c52](https://github.com/samplehc/samplehc-python/commit/c561c5280bac4233056890a754bb1db5c7740f42))
16
+ * **api:** api update ([b1bf1b8](https://github.com/samplehc/samplehc-python/commit/b1bf1b836eb7b08d65c2256ea5c76acd18161375))
17
+ * **api:** api update ([50495a7](https://github.com/samplehc/samplehc-python/commit/50495a781ca2edf0fe6c353eb69f49b456457f87))
18
+ * **api:** api update ([483689b](https://github.com/samplehc/samplehc-python/commit/483689ba280f5111ac4e23c8f776a9e186fbd2a4))
19
+ * **api:** api update ([13aa85d](https://github.com/samplehc/samplehc-python/commit/13aa85d16b77d15e7303b230598f084c6cd18995))
20
+ * **api:** api update ([e866c0e](https://github.com/samplehc/samplehc-python/commit/e866c0eb266d4e7b2e7e1072d5991a4a62ed80d1))
21
+ * **api:** api update ([828e93a](https://github.com/samplehc/samplehc-python/commit/828e93a02c840b17366a0360f69a526a99224510))
22
+ * **api:** api update ([05f3040](https://github.com/samplehc/samplehc-python/commit/05f30409de00c3fcccc09b2799a03b9969ea3cca))
23
+ * **api:** api update ([b3f5e6b](https://github.com/samplehc/samplehc-python/commit/b3f5e6b9d7c41252539d34f6fbe60a385f791d57))
24
+ * **api:** api update ([225628f](https://github.com/samplehc/samplehc-python/commit/225628f472ac6b9161735e41ba347141b3f95262))
25
+ * **api:** api update ([8f6dc2c](https://github.com/samplehc/samplehc-python/commit/8f6dc2c119ec7091fc314be7a7734084c9c3c9bf))
26
+ * **api:** api update ([1f5d054](https://github.com/samplehc/samplehc-python/commit/1f5d0542af4110d95ca38396dd4fe0b5bd3054cd))
27
+ * **api:** api update ([92ae67c](https://github.com/samplehc/samplehc-python/commit/92ae67cd3918aa8c7441f16ab89cc7ce05056cca))
28
+ * **api:** api update ([928b8a0](https://github.com/samplehc/samplehc-python/commit/928b8a03ca9c934052006966a43574fa62fdb109))
29
+ * **api:** api update ([428ea6e](https://github.com/samplehc/samplehc-python/commit/428ea6e1d13f618faf5463cf3239bfc17759e0b6))
30
+ * **api:** api update ([5e61c9a](https://github.com/samplehc/samplehc-python/commit/5e61c9aa29eb7d84116fa6cb799816ebfc9c43c9))
31
+ * **api:** api update ([55ff3b7](https://github.com/samplehc/samplehc-python/commit/55ff3b7f3ee47fbe750f546656239916081d76c5))
32
+ * **api:** api update ([84369b6](https://github.com/samplehc/samplehc-python/commit/84369b68cd4b4074b64192c871b795a64cf1af72))
33
+ * **api:** api update ([55ea4ae](https://github.com/samplehc/samplehc-python/commit/55ea4ae2924f36a3f262a82192e4f94cf87a4e81))
34
+ * **api:** api update ([9855e65](https://github.com/samplehc/samplehc-python/commit/9855e65e7a1e778b8d38d7b7ccefc7e5dea1ccc3))
35
+ * **api:** api update ([32ac1d1](https://github.com/samplehc/samplehc-python/commit/32ac1d123de3d104b7a84a5b16f228115fa9c918))
36
+ * **api:** api update ([314d38d](https://github.com/samplehc/samplehc-python/commit/314d38d2b9e00947494dc930e8ceb4c9b1a5255e))
37
+ * **api:** api update ([804ad91](https://github.com/samplehc/samplehc-python/commit/804ad91df85f661e8d9e6ebf3ae5bd97e800e9c8))
38
+ * **api:** api update ([761cbcc](https://github.com/samplehc/samplehc-python/commit/761cbccdb545a90ea8c9cf95042e92bfd3d021c5))
39
+ * **api:** api update ([46227f0](https://github.com/samplehc/samplehc-python/commit/46227f0bbc7b999571026fb02d66589925459f6d))
40
+ * **api:** api update ([46d1592](https://github.com/samplehc/samplehc-python/commit/46d159244ea9ea4796a36c28b7e81651d7d18b8e))
41
+ * **api:** api update ([ea43311](https://github.com/samplehc/samplehc-python/commit/ea43311a3d1a1591258451c90e5d6562ccf74bcb))
42
+ * **api:** api update ([361e6e4](https://github.com/samplehc/samplehc-python/commit/361e6e45f7172f6fe30ac5d5fbf37e9b46f33b40))
43
+ * **api:** api update ([4496690](https://github.com/samplehc/samplehc-python/commit/44966904c446d48296c1f49f97e9caa30ccf3abb))
44
+ * **api:** api update ([8018448](https://github.com/samplehc/samplehc-python/commit/80184483a39b5a52ade9eaac64b8feeb3b2b9598))
45
+ * **api:** api update ([ad6a316](https://github.com/samplehc/samplehc-python/commit/ad6a3169b1eecb31f685cbd6f4cd44ad51b77826))
46
+ * **api:** api update ([84f23ac](https://github.com/samplehc/samplehc-python/commit/84f23ac5f306f71b64a4072502b04d13ab5d9482))
47
+ * **api:** api update ([3d017f5](https://github.com/samplehc/samplehc-python/commit/3d017f52cb6dbb79a063e9b4002212c7d1ec291b))
48
+ * **api:** api update ([574d2dd](https://github.com/samplehc/samplehc-python/commit/574d2dd48dcf1ca226a841cfd933af2ccef733ed))
49
+ * **api:** api update ([ce499bb](https://github.com/samplehc/samplehc-python/commit/ce499bba786da09fdb448f15f3c84eefe2c202df))
50
+ * **api:** api update ([260f7c0](https://github.com/samplehc/samplehc-python/commit/260f7c07314d85434ad216eddde6b528e1faee2e))
51
+ * **api:** api update ([177a5d5](https://github.com/samplehc/samplehc-python/commit/177a5d54282a558706fa74cb41aa3d8a6577a920))
52
+ * **api:** api update ([56bef34](https://github.com/samplehc/samplehc-python/commit/56bef341fffcb959b8762cb6e278d710cfa43f87))
53
+ * **api:** api update ([c8ddd14](https://github.com/samplehc/samplehc-python/commit/c8ddd14cf7ad9ff208311cce0d6d23789fa0f231))
54
+ * **api:** api update ([822a171](https://github.com/samplehc/samplehc-python/commit/822a17105abb260e9d5707df55bffa31e90ceeb0))
55
+ * **api:** api update ([df45c30](https://github.com/samplehc/samplehc-python/commit/df45c3022cb40c76d41fdc804ed4d6df611967e3))
56
+ * **api:** api update ([c5fcd82](https://github.com/samplehc/samplehc-python/commit/c5fcd8272a56314b2a41f9978c53f666e87e3b65))
57
+ * **api:** api update ([8d4946b](https://github.com/samplehc/samplehc-python/commit/8d4946b84c8caa37f17e82ef3fab4a1df96a0010))
58
+ * **api:** api update ([1bcef0d](https://github.com/samplehc/samplehc-python/commit/1bcef0d8cb18d0f79dd3f849075b8f0d13ff312c))
59
+ * **api:** api update ([82dd1f0](https://github.com/samplehc/samplehc-python/commit/82dd1f015068d2e3828c2b8ce55edb1f20925b19))
60
+ * **api:** api update ([0c904aa](https://github.com/samplehc/samplehc-python/commit/0c904aa140d37f4c49709ff763cfe98794267b50))
61
+ * **api:** api update ([57b38d3](https://github.com/samplehc/samplehc-python/commit/57b38d32c3549b20425d4b7b0df2b717b4b2a22b))
62
+ * **api:** api update ([c2fb854](https://github.com/samplehc/samplehc-python/commit/c2fb854b43863e54b56e7f21d902d38a68e82ccb))
63
+ * **api:** api update ([699ce37](https://github.com/samplehc/samplehc-python/commit/699ce377d32332b0ab1025c855a6b4258075de4e))
64
+ * **api:** api update ([e91ebb7](https://github.com/samplehc/samplehc-python/commit/e91ebb782750db8e900c68fb782578dc832134e1))
65
+ * **api:** api update ([4ea415d](https://github.com/samplehc/samplehc-python/commit/4ea415dadec476f012ad56a9368684b085d3c15a))
66
+ * **api:** api update ([408f9d2](https://github.com/samplehc/samplehc-python/commit/408f9d2bd97df8694d452f41bfc91fbd9f549837))
67
+ * **api:** api update ([c94887e](https://github.com/samplehc/samplehc-python/commit/c94887ec0cddfb7689921e8063e7cd19abfe847a))
68
+ * **api:** api update ([30a6b42](https://github.com/samplehc/samplehc-python/commit/30a6b421a5ec28a716fe78ca5f0c3f0d5b3b51f7))
69
+ * **api:** api update ([e76a4b5](https://github.com/samplehc/samplehc-python/commit/e76a4b51071bd1c3621b9562956179f76d23be96))
70
+ * **api:** api update ([bb2e0e1](https://github.com/samplehc/samplehc-python/commit/bb2e0e1f59e41e0a299caebae8aee267ed9d2ebb))
71
+ * **api:** api update ([08bd386](https://github.com/samplehc/samplehc-python/commit/08bd38669d0683b38c3d61425594494727be683d))
72
+ * **api:** api update ([37e1427](https://github.com/samplehc/samplehc-python/commit/37e1427a15685dfad217c4f98271ed5cea5ba8f2))
73
+ * **api:** api update ([473af87](https://github.com/samplehc/samplehc-python/commit/473af8739f5fe02657897240c6bc36ff352a7e82))
74
+ * **api:** api update ([c08d0b3](https://github.com/samplehc/samplehc-python/commit/c08d0b3174daa64d23a4ed658a9bb6760bb5bb2e))
75
+ * **api:** browser-automation ([db98aa4](https://github.com/samplehc/samplehc-python/commit/db98aa4fcf374634e572b1e8d3a5360beb01c4a0))
76
+ * **api:** manual updates ([7356860](https://github.com/samplehc/samplehc-python/commit/735686002aa001831e5bde6fada03eb56f7f19c2))
77
+ * **api:** manual updates ([c921c53](https://github.com/samplehc/samplehc-python/commit/c921c534a54f8c63c4f38a97613a400ffcb00479))
78
+ * **api:** manual updates ([8992866](https://github.com/samplehc/samplehc-python/commit/89928665eeb039bb1c2683c8f8ab4b6baba09940))
79
+ * **api:** manual updates ([9af30bc](https://github.com/samplehc/samplehc-python/commit/9af30bcff3ccafcc13043757609488e068e2dc75))
80
+ * **api:** manual updates ([2080a6c](https://github.com/samplehc/samplehc-python/commit/2080a6cd72f58b63cca96b95f5e4b49303b0f625))
81
+ * **api:** manual updates ([1777693](https://github.com/samplehc/samplehc-python/commit/17776934df5421229cec22a7c8795395d2418568))
82
+ * **api:** manual updates ([ff9d6b8](https://github.com/samplehc/samplehc-python/commit/ff9d6b8546c7bd581b288f3a50f7d57233e681c7))
83
+ * **api:** manual updates ([94adce9](https://github.com/samplehc/samplehc-python/commit/94adce9a8105423fb49e7d945a1fcc9ea479124d))
84
+ * **api:** manual updates ([e10b9eb](https://github.com/samplehc/samplehc-python/commit/e10b9eb3ccb227eee48fca30bc99729041185d4b))
85
+ * **api:** manual updates ([aadc7f0](https://github.com/samplehc/samplehc-python/commit/aadc7f0902da2d779df45bdacafd88858dbfbf80))
86
+ * **api:** manual updates ([335eef0](https://github.com/samplehc/samplehc-python/commit/335eef02ac1e01e04ce9241b2e05426961f921e5))
87
+ * **api:** manual updates ([a500dc4](https://github.com/samplehc/samplehc-python/commit/a500dc48661bdd0b218d7a0cbfcdee0d02d9a4e3))
88
+ * **api:** manual updates ([d858779](https://github.com/samplehc/samplehc-python/commit/d8587798b1fd079779ed31960cb541faaf8861ec))
89
+ * **api:** manual updates ([76334bb](https://github.com/samplehc/samplehc-python/commit/76334bb5061745ca6eeee7c2bf6609405cfe9bbe))
90
+ * **api:** manual updates ([f8e63cc](https://github.com/samplehc/samplehc-python/commit/f8e63cc7b95626477848cc86bc8dde7936c2b1fd))
91
+ * **api:** manual updates ([131dcff](https://github.com/samplehc/samplehc-python/commit/131dcffb2bf1a1e47da9ddb96f33f66bee703786))
92
+ * **api:** manual updates ([34de1a5](https://github.com/samplehc/samplehc-python/commit/34de1a56c6c661bd4fa86e099658f2aea6d0e2cd))
93
+ * **api:** manual updates ([605874b](https://github.com/samplehc/samplehc-python/commit/605874ba94791ab18ba7a99cc36b3e4d81409575))
94
+ * **api:** manual updates ([54b9db2](https://github.com/samplehc/samplehc-python/commit/54b9db2f501465c78ff1b477d7e60d2e6f9df4c5))
95
+ * **api:** manual updates ([16d90ed](https://github.com/samplehc/samplehc-python/commit/16d90eddf41509b59d16555bc741a20b7be7b3b7))
96
+ * **api:** manual updates ([70ce884](https://github.com/samplehc/samplehc-python/commit/70ce884d0c8ca8c578cf304ea0d5e3ca541189f3))
97
+ * **api:** manual updates ([6437122](https://github.com/samplehc/samplehc-python/commit/6437122517578b00fbf784049b1d9e065f19a8cd))
98
+ * **api:** manual updates ([953ed06](https://github.com/samplehc/samplehc-python/commit/953ed06dc163c79ff7717832d4762d9273062828))
99
+ * **api:** manual updates ([e5e5eda](https://github.com/samplehc/samplehc-python/commit/e5e5eda07ea6d199fbda49bf25b7beaa367f6a51))
100
+ * **api:** manual updates ([66192ca](https://github.com/samplehc/samplehc-python/commit/66192ca46c580d8dce67430800235b2546784255))
101
+ * **api:** manual updates ([907a6ce](https://github.com/samplehc/samplehc-python/commit/907a6ce51efe872392a3317fc7837f1026c2960f))
102
+ * **api:** manual updates ([ed46720](https://github.com/samplehc/samplehc-python/commit/ed46720934d80534c37351e32a0691c43a76ea77))
103
+ * **api:** manual updates ([192b313](https://github.com/samplehc/samplehc-python/commit/192b313384f690165678c4b41630bd88fea406ec))
104
+ * **api:** manual updates ([69abc72](https://github.com/samplehc/samplehc-python/commit/69abc726594d6fac94d880e8dabdbeaef438d044))
105
+ * **api:** manual updates ([b0335fb](https://github.com/samplehc/samplehc-python/commit/b0335fbe86896567947a071ecc7507c8f285a681))
106
+ * **api:** manual updates ([ce2f673](https://github.com/samplehc/samplehc-python/commit/ce2f673ce71fb7926285c146039d14b8523b71d1))
107
+ * **api:** manual updates ([ad59580](https://github.com/samplehc/samplehc-python/commit/ad595801e0df97c23b8b2bdd8986f2b03ebe88d0))
108
+ * **api:** manual updates ([d334196](https://github.com/samplehc/samplehc-python/commit/d33419620e0ca33d701c344e92bf7e63aebba337))
109
+ * **api:** manual updates ([746738f](https://github.com/samplehc/samplehc-python/commit/746738fe54414796e0a186538613e33a584f25cd))
110
+ * **api:** update via SDK Studio ([a3779fb](https://github.com/samplehc/samplehc-python/commit/a3779fb1d3245bee3c8c0c4d11ad566972b14f24))
111
+ * **api:** update via SDK Studio ([27eba0e](https://github.com/samplehc/samplehc-python/commit/27eba0e28c3fb7a949151bf6291f33d602432e2b))
112
+ * **api:** update via SDK Studio ([dcfa909](https://github.com/samplehc/samplehc-python/commit/dcfa909f83d4484edcdd16538f0386ef0a41ee0a))
113
+ * **api:** update via SDK Studio ([9341e73](https://github.com/samplehc/samplehc-python/commit/9341e73c98e30327ac7cfa01f1b7fbf2c2d2ef6b))
114
+ * **api:** update via SDK Studio ([4a775dc](https://github.com/samplehc/samplehc-python/commit/4a775dcdd7800d0daac683d361fbc97801a3beb9))
115
+ * **api:** update via SDK Studio ([2e76582](https://github.com/samplehc/samplehc-python/commit/2e765826e2fe19d646f0a2d6906649fda6b52ca4))
116
+ * **api:** update via SDK Studio ([6634c74](https://github.com/samplehc/samplehc-python/commit/6634c7422b2cc7c130670f65c9136faf7c523adb))
117
+ * **api:** update via SDK Studio ([c4c777c](https://github.com/samplehc/samplehc-python/commit/c4c777c03bdca15e7ec03b3f9994115d5e69ef3a))
118
+ * **api:** update via SDK Studio ([a152337](https://github.com/samplehc/samplehc-python/commit/a15233783b6fbdaa9eb985e9efd6ad7bd062fd94))
119
+ * **api:** update via SDK Studio ([f99f475](https://github.com/samplehc/samplehc-python/commit/f99f47559f524f00631714e87587b83a7f3b3ed7))
120
+ * **api:** update via SDK Studio ([8d43d73](https://github.com/samplehc/samplehc-python/commit/8d43d73a31616b74606e161853381150a4b68f4f))
121
+ * **api:** update via SDK Studio ([22e76c5](https://github.com/samplehc/samplehc-python/commit/22e76c54871a10171706fe641af167ab71b59432))
122
+ * **api:** update via SDK Studio ([bd30754](https://github.com/samplehc/samplehc-python/commit/bd307540d542a721ff1b6604375d1df011b9a73a))
123
+ * **api:** update via SDK Studio ([c280361](https://github.com/samplehc/samplehc-python/commit/c280361e5dbf1e1e47f8859e0b4fbd160327a8bf))
124
+ * **api:** update via SDK Studio ([faf4028](https://github.com/samplehc/samplehc-python/commit/faf40287b6ec7d53012a6786729f5df4f58d79ca))
125
+ * **api:** update via SDK Studio ([4aa6660](https://github.com/samplehc/samplehc-python/commit/4aa666049024624e0f52c0a71f02564600cbd2a0))
126
+ * clean up environment call outs ([024c2a3](https://github.com/samplehc/samplehc-python/commit/024c2a369a276513558be8cd23fe10467e64f438))
127
+ * **client:** add follow_redirects request option ([2c453de](https://github.com/samplehc/samplehc-python/commit/2c453de3ecf91d404237ae62ffcd748cccd1207f))
128
+ * **client:** add support for aiohttp ([deb5586](https://github.com/samplehc/samplehc-python/commit/deb5586348324849ec7e915d95ca627ff6b13cc9))
129
+ * **client:** support file upload requests ([a0ea16d](https://github.com/samplehc/samplehc-python/commit/a0ea16db44c93cbb0c648ab70515937ae52d121a))
130
+
131
+
132
+ ### Bug Fixes
133
+
134
+ * **ci:** correct conditional ([8010e85](https://github.com/samplehc/samplehc-python/commit/8010e85014ab225894cf716747c9c109a1d8f766))
135
+ * **ci:** release-doctor — report correct token name ([451df5f](https://github.com/samplehc/samplehc-python/commit/451df5ff08a80bc9242a658e96547c0d94eab077))
136
+ * **client:** correctly parse binary response | stream ([9267326](https://github.com/samplehc/samplehc-python/commit/9267326b39dd1c5f8ef5a4e05c599e0ed4b2908e))
137
+ * **client:** don't send Content-Type header on GET requests ([aa7d9e9](https://github.com/samplehc/samplehc-python/commit/aa7d9e990b1a771312bab251094216a512af8428))
138
+ * **docs/api:** remove references to nonexistent types ([b98568d](https://github.com/samplehc/samplehc-python/commit/b98568d81b33e53fb5a0ffda292b41140b7bb2b9))
139
+ * **package:** support direct resource imports ([bbadc3c](https://github.com/samplehc/samplehc-python/commit/bbadc3c6fe75cef448da217652cb933168b1f9a9))
140
+ * **parsing:** correctly handle nested discriminated unions ([2757d8a](https://github.com/samplehc/samplehc-python/commit/2757d8a638bf86b3a7ccf9a61bb085a66122bf9c))
141
+ * **parsing:** ignore empty metadata ([2867f7c](https://github.com/samplehc/samplehc-python/commit/2867f7ca2eed031c4ed45b38167a6bea0002eb04))
142
+ * **parsing:** parse extra field types ([5b4d7fc](https://github.com/samplehc/samplehc-python/commit/5b4d7fce88bd7dd09a0c731a9aa91c9fd3ab1fd2))
143
+ * **tests:** fix: tests which call HTTP endpoints directly with the example parameters ([734a444](https://github.com/samplehc/samplehc-python/commit/734a444b43abbc74972c8200ecccb3b905cbedf8))
144
+
145
+
146
+ ### Chores
147
+
148
+ * **ci:** change upload type ([e78525a](https://github.com/samplehc/samplehc-python/commit/e78525ad3323c460261e7bb2e9ff421f6cec52c8))
149
+ * **ci:** enable for pull requests ([ec330b9](https://github.com/samplehc/samplehc-python/commit/ec330b91f25526e992ab9d8bc7bd1de7803b39f9))
150
+ * **ci:** fix installation instructions ([31c01f8](https://github.com/samplehc/samplehc-python/commit/31c01f8ee99aa2b4948916e5445a8fe8b5141ac9))
151
+ * **ci:** only run for pushes and fork pull requests ([6dd8a7b](https://github.com/samplehc/samplehc-python/commit/6dd8a7bd95aba2da45b535ba733287664faab1ba))
152
+ * **ci:** upload sdks to package manager ([3a714e3](https://github.com/samplehc/samplehc-python/commit/3a714e356cc8d3255f6f77ab164cd384400686d6))
153
+ * **docs:** grammar improvements ([1231484](https://github.com/samplehc/samplehc-python/commit/1231484743cee4a8a232ef95a999637c66135221))
154
+ * **docs:** remove reference to rye shell ([1506f9f](https://github.com/samplehc/samplehc-python/commit/1506f9f3903d72a21cedff3019457e1fa12834e4))
155
+ * **internal:** avoid errors for isinstance checks on proxies ([e2e4bfe](https://github.com/samplehc/samplehc-python/commit/e2e4bfe3e97c6eaf027edd071cc35ed07ab80b01))
156
+ * **internal:** bump pinned h11 dep ([0107310](https://github.com/samplehc/samplehc-python/commit/0107310bf54c50486e19378fc3e1dcfcefa090f5))
157
+ * **internal:** codegen related update ([b7f5e6e](https://github.com/samplehc/samplehc-python/commit/b7f5e6e5685e4bfefa2766702103ca98adc2801d))
158
+ * **internal:** codegen related update ([89822ea](https://github.com/samplehc/samplehc-python/commit/89822ea1dffb0d9a06cdfd158c1c742b18529875))
159
+ * **internal:** fix ruff target version ([12279c6](https://github.com/samplehc/samplehc-python/commit/12279c649f4dce5df802a075e2fadd1cb8900db3))
160
+ * **internal:** update comment in script ([bde1297](https://github.com/samplehc/samplehc-python/commit/bde1297ff6f449bbefb376e6288d7dd3c318d380))
161
+ * **internal:** update conftest.py ([2ee303b](https://github.com/samplehc/samplehc-python/commit/2ee303b129e69df436f3ca366ead1f4eb9b330de))
162
+ * **package:** mark python 3.13 as supported ([4d997a0](https://github.com/samplehc/samplehc-python/commit/4d997a09be629e2d7865e880e9a6bd713a7bcd0c))
163
+ * **project:** add settings file for vscode ([14429d0](https://github.com/samplehc/samplehc-python/commit/14429d07c840b2fe75f2a5bf2b3edbf341f2e4ac))
164
+ * **readme:** fix version rendering on pypi ([791810e](https://github.com/samplehc/samplehc-python/commit/791810e5d561fb6d6af221295c273d876e1e6799))
165
+ * **readme:** update badges ([790f492](https://github.com/samplehc/samplehc-python/commit/790f492a45af698bdfadcd53c2950e2695e7c7fc))
166
+ * sync repo ([3b67e7e](https://github.com/samplehc/samplehc-python/commit/3b67e7e513fb0ddf5321c3cd33d292c5ddcb02be))
167
+ * **tests:** add tests for httpx client instantiation & proxies ([f4779bb](https://github.com/samplehc/samplehc-python/commit/f4779bb1035239ff21a5a77be38fc9dad17b7067))
168
+ * **tests:** run tests in parallel ([fbcef60](https://github.com/samplehc/samplehc-python/commit/fbcef60eb4b07bc64f7969f113af0dc76c60b702))
169
+ * **tests:** skip some failing tests on the latest python versions ([973a519](https://github.com/samplehc/samplehc-python/commit/973a519f70d278f4cf88e9fe1799dfb21f2cb14e))
170
+ * update @stainless-api/prism-cli to v5.15.0 ([88f2f7d](https://github.com/samplehc/samplehc-python/commit/88f2f7d7ab70564e94ddc4ddc03c542714ef030b))
171
+ * update SDK settings ([079c79a](https://github.com/samplehc/samplehc-python/commit/079c79ae9170089e4c49147086cdcfb5178e4203))
172
+ * update SDK settings ([6644e1e](https://github.com/samplehc/samplehc-python/commit/6644e1e1bfaa5dccbb7efabec48c0edef70cc3e3))
173
+ * update SDK settings ([ee359d8](https://github.com/samplehc/samplehc-python/commit/ee359d8a9114768700862f01619a2ceb3b208850))
174
+ * update SDK settings ([84f3917](https://github.com/samplehc/samplehc-python/commit/84f391754a68d5831ffa3387b2f350d1ae04f5a1))
175
+ * update SDK settings ([dfcc2f2](https://github.com/samplehc/samplehc-python/commit/dfcc2f20e779f539fcf1acef514e1e0fba201cd4))
176
+ * update SDK settings ([73dda8a](https://github.com/samplehc/samplehc-python/commit/73dda8abc8bbabae73008671b9cc3d5e6939066a))
177
+
178
+
179
+ ### Documentation
180
+
181
+ * **client:** fix httpx.Timeout documentation reference ([ac5f9fe](https://github.com/samplehc/samplehc-python/commit/ac5f9fe3f348d094205567117f6ebd0549577539))
182
+ * remove or fix invalid readme examples ([87409ec](https://github.com/samplehc/samplehc-python/commit/87409ec2a34df1f6e3b861f902bbfc7396bed4ba))
183
+
184
+ ## 0.6.0 (2025-08-15)
185
+
186
+ Full Changelog: [v0.5.0...v0.6.0](https://github.com/samplehc/samplehc-python/compare/v0.5.0...v0.6.0)
187
+
188
+ ### Features
189
+
190
+ * **api:** add clearinghouse endpoints ([35afeef](https://github.com/samplehc/samplehc-python/commit/35afeefd27cb50058f9972fb6bd1bcbdfbdae37c))
191
+ * **api:** add event emit ([bc778c2](https://github.com/samplehc/samplehc-python/commit/bc778c22207903412f32e6440d9150ff96df5fe7))
192
+ * **api:** add glidian and browser-agents resources ([a9a7bb7](https://github.com/samplehc/samplehc-python/commit/a9a7bb73db109723987bec73db9ea15901ad42e4))
193
+ * **api:** add hie endpoints ([1f67772](https://github.com/samplehc/samplehc-python/commit/1f67772f38bb7e26c2ae1d709da3462937e5f853))
194
+ * **api:** add more ledger endpoints ([421213a](https://github.com/samplehc/samplehc-python/commit/421213aa589b211d5a7625ea7d03d09f7fef2170))
195
+ * **api:** add send_fax, template methods, transform_json_to_html to sdk ([420b7dd](https://github.com/samplehc/samplehc-python/commit/420b7dd9b21797a102dcba9f4afa083b44e971a6))
196
+ * **api:** added cancel workflow endpoint ([c561c52](https://github.com/samplehc/samplehc-python/commit/c561c5280bac4233056890a754bb1db5c7740f42))
197
+ * **api:** api update ([13aa85d](https://github.com/samplehc/samplehc-python/commit/13aa85d16b77d15e7303b230598f084c6cd18995))
198
+ * **api:** api update ([e866c0e](https://github.com/samplehc/samplehc-python/commit/e866c0eb266d4e7b2e7e1072d5991a4a62ed80d1))
199
+ * **api:** api update ([828e93a](https://github.com/samplehc/samplehc-python/commit/828e93a02c840b17366a0360f69a526a99224510))
200
+ * **api:** api update ([05f3040](https://github.com/samplehc/samplehc-python/commit/05f30409de00c3fcccc09b2799a03b9969ea3cca))
201
+ * **api:** api update ([b3f5e6b](https://github.com/samplehc/samplehc-python/commit/b3f5e6b9d7c41252539d34f6fbe60a385f791d57))
202
+ * **api:** api update ([225628f](https://github.com/samplehc/samplehc-python/commit/225628f472ac6b9161735e41ba347141b3f95262))
203
+ * **api:** api update ([8f6dc2c](https://github.com/samplehc/samplehc-python/commit/8f6dc2c119ec7091fc314be7a7734084c9c3c9bf))
204
+ * **api:** api update ([1f5d054](https://github.com/samplehc/samplehc-python/commit/1f5d0542af4110d95ca38396dd4fe0b5bd3054cd))
205
+ * **api:** api update ([92ae67c](https://github.com/samplehc/samplehc-python/commit/92ae67cd3918aa8c7441f16ab89cc7ce05056cca))
206
+ * **api:** api update ([928b8a0](https://github.com/samplehc/samplehc-python/commit/928b8a03ca9c934052006966a43574fa62fdb109))
207
+ * **api:** api update ([428ea6e](https://github.com/samplehc/samplehc-python/commit/428ea6e1d13f618faf5463cf3239bfc17759e0b6))
208
+ * **api:** api update ([5e61c9a](https://github.com/samplehc/samplehc-python/commit/5e61c9aa29eb7d84116fa6cb799816ebfc9c43c9))
209
+ * **api:** api update ([55ff3b7](https://github.com/samplehc/samplehc-python/commit/55ff3b7f3ee47fbe750f546656239916081d76c5))
210
+ * **api:** api update ([84369b6](https://github.com/samplehc/samplehc-python/commit/84369b68cd4b4074b64192c871b795a64cf1af72))
211
+ * **api:** api update ([55ea4ae](https://github.com/samplehc/samplehc-python/commit/55ea4ae2924f36a3f262a82192e4f94cf87a4e81))
212
+ * **api:** api update ([9855e65](https://github.com/samplehc/samplehc-python/commit/9855e65e7a1e778b8d38d7b7ccefc7e5dea1ccc3))
213
+ * **api:** api update ([32ac1d1](https://github.com/samplehc/samplehc-python/commit/32ac1d123de3d104b7a84a5b16f228115fa9c918))
214
+ * **api:** api update ([314d38d](https://github.com/samplehc/samplehc-python/commit/314d38d2b9e00947494dc930e8ceb4c9b1a5255e))
215
+ * **api:** api update ([804ad91](https://github.com/samplehc/samplehc-python/commit/804ad91df85f661e8d9e6ebf3ae5bd97e800e9c8))
216
+ * **api:** api update ([761cbcc](https://github.com/samplehc/samplehc-python/commit/761cbccdb545a90ea8c9cf95042e92bfd3d021c5))
217
+ * **api:** api update ([46227f0](https://github.com/samplehc/samplehc-python/commit/46227f0bbc7b999571026fb02d66589925459f6d))
218
+ * **api:** api update ([46d1592](https://github.com/samplehc/samplehc-python/commit/46d159244ea9ea4796a36c28b7e81651d7d18b8e))
219
+ * **api:** api update ([ea43311](https://github.com/samplehc/samplehc-python/commit/ea43311a3d1a1591258451c90e5d6562ccf74bcb))
220
+ * **api:** api update ([361e6e4](https://github.com/samplehc/samplehc-python/commit/361e6e45f7172f6fe30ac5d5fbf37e9b46f33b40))
221
+ * **api:** api update ([4496690](https://github.com/samplehc/samplehc-python/commit/44966904c446d48296c1f49f97e9caa30ccf3abb))
222
+ * **api:** api update ([8018448](https://github.com/samplehc/samplehc-python/commit/80184483a39b5a52ade9eaac64b8feeb3b2b9598))
223
+ * **api:** api update ([ad6a316](https://github.com/samplehc/samplehc-python/commit/ad6a3169b1eecb31f685cbd6f4cd44ad51b77826))
224
+ * **api:** api update ([84f23ac](https://github.com/samplehc/samplehc-python/commit/84f23ac5f306f71b64a4072502b04d13ab5d9482))
225
+ * **api:** api update ([3d017f5](https://github.com/samplehc/samplehc-python/commit/3d017f52cb6dbb79a063e9b4002212c7d1ec291b))
226
+ * **api:** api update ([574d2dd](https://github.com/samplehc/samplehc-python/commit/574d2dd48dcf1ca226a841cfd933af2ccef733ed))
227
+ * **api:** api update ([ce499bb](https://github.com/samplehc/samplehc-python/commit/ce499bba786da09fdb448f15f3c84eefe2c202df))
228
+ * **api:** api update ([260f7c0](https://github.com/samplehc/samplehc-python/commit/260f7c07314d85434ad216eddde6b528e1faee2e))
229
+ * **api:** api update ([177a5d5](https://github.com/samplehc/samplehc-python/commit/177a5d54282a558706fa74cb41aa3d8a6577a920))
230
+ * **api:** api update ([56bef34](https://github.com/samplehc/samplehc-python/commit/56bef341fffcb959b8762cb6e278d710cfa43f87))
231
+ * **api:** api update ([c8ddd14](https://github.com/samplehc/samplehc-python/commit/c8ddd14cf7ad9ff208311cce0d6d23789fa0f231))
232
+ * **api:** api update ([822a171](https://github.com/samplehc/samplehc-python/commit/822a17105abb260e9d5707df55bffa31e90ceeb0))
233
+ * **api:** api update ([df45c30](https://github.com/samplehc/samplehc-python/commit/df45c3022cb40c76d41fdc804ed4d6df611967e3))
234
+ * **api:** api update ([c5fcd82](https://github.com/samplehc/samplehc-python/commit/c5fcd8272a56314b2a41f9978c53f666e87e3b65))
235
+ * **api:** api update ([8d4946b](https://github.com/samplehc/samplehc-python/commit/8d4946b84c8caa37f17e82ef3fab4a1df96a0010))
236
+ * **api:** api update ([1bcef0d](https://github.com/samplehc/samplehc-python/commit/1bcef0d8cb18d0f79dd3f849075b8f0d13ff312c))
237
+ * **api:** api update ([82dd1f0](https://github.com/samplehc/samplehc-python/commit/82dd1f015068d2e3828c2b8ce55edb1f20925b19))
238
+ * **api:** api update ([0c904aa](https://github.com/samplehc/samplehc-python/commit/0c904aa140d37f4c49709ff763cfe98794267b50))
239
+ * **api:** api update ([57b38d3](https://github.com/samplehc/samplehc-python/commit/57b38d32c3549b20425d4b7b0df2b717b4b2a22b))
240
+ * **api:** api update ([c2fb854](https://github.com/samplehc/samplehc-python/commit/c2fb854b43863e54b56e7f21d902d38a68e82ccb))
241
+ * **api:** api update ([699ce37](https://github.com/samplehc/samplehc-python/commit/699ce377d32332b0ab1025c855a6b4258075de4e))
242
+ * **api:** api update ([e91ebb7](https://github.com/samplehc/samplehc-python/commit/e91ebb782750db8e900c68fb782578dc832134e1))
243
+ * **api:** api update ([4ea415d](https://github.com/samplehc/samplehc-python/commit/4ea415dadec476f012ad56a9368684b085d3c15a))
244
+ * **api:** api update ([408f9d2](https://github.com/samplehc/samplehc-python/commit/408f9d2bd97df8694d452f41bfc91fbd9f549837))
245
+ * **api:** api update ([c94887e](https://github.com/samplehc/samplehc-python/commit/c94887ec0cddfb7689921e8063e7cd19abfe847a))
246
+ * **api:** api update ([30a6b42](https://github.com/samplehc/samplehc-python/commit/30a6b421a5ec28a716fe78ca5f0c3f0d5b3b51f7))
247
+ * **api:** api update ([e76a4b5](https://github.com/samplehc/samplehc-python/commit/e76a4b51071bd1c3621b9562956179f76d23be96))
248
+ * **api:** api update ([bb2e0e1](https://github.com/samplehc/samplehc-python/commit/bb2e0e1f59e41e0a299caebae8aee267ed9d2ebb))
249
+ * **api:** api update ([08bd386](https://github.com/samplehc/samplehc-python/commit/08bd38669d0683b38c3d61425594494727be683d))
250
+ * **api:** api update ([37e1427](https://github.com/samplehc/samplehc-python/commit/37e1427a15685dfad217c4f98271ed5cea5ba8f2))
251
+ * **api:** api update ([473af87](https://github.com/samplehc/samplehc-python/commit/473af8739f5fe02657897240c6bc36ff352a7e82))
252
+ * **api:** api update ([c08d0b3](https://github.com/samplehc/samplehc-python/commit/c08d0b3174daa64d23a4ed658a9bb6760bb5bb2e))
253
+ * **api:** browser-automation ([db98aa4](https://github.com/samplehc/samplehc-python/commit/db98aa4fcf374634e572b1e8d3a5360beb01c4a0))
254
+ * **api:** manual updates ([8992866](https://github.com/samplehc/samplehc-python/commit/89928665eeb039bb1c2683c8f8ab4b6baba09940))
255
+ * **api:** manual updates ([9af30bc](https://github.com/samplehc/samplehc-python/commit/9af30bcff3ccafcc13043757609488e068e2dc75))
256
+ * **api:** manual updates ([2080a6c](https://github.com/samplehc/samplehc-python/commit/2080a6cd72f58b63cca96b95f5e4b49303b0f625))
257
+ * **api:** manual updates ([1777693](https://github.com/samplehc/samplehc-python/commit/17776934df5421229cec22a7c8795395d2418568))
258
+ * **api:** manual updates ([ff9d6b8](https://github.com/samplehc/samplehc-python/commit/ff9d6b8546c7bd581b288f3a50f7d57233e681c7))
259
+ * **api:** manual updates ([94adce9](https://github.com/samplehc/samplehc-python/commit/94adce9a8105423fb49e7d945a1fcc9ea479124d))
260
+ * **api:** manual updates ([e10b9eb](https://github.com/samplehc/samplehc-python/commit/e10b9eb3ccb227eee48fca30bc99729041185d4b))
261
+ * **api:** manual updates ([aadc7f0](https://github.com/samplehc/samplehc-python/commit/aadc7f0902da2d779df45bdacafd88858dbfbf80))
262
+ * **api:** manual updates ([335eef0](https://github.com/samplehc/samplehc-python/commit/335eef02ac1e01e04ce9241b2e05426961f921e5))
263
+ * **api:** manual updates ([a500dc4](https://github.com/samplehc/samplehc-python/commit/a500dc48661bdd0b218d7a0cbfcdee0d02d9a4e3))
264
+ * **api:** manual updates ([d858779](https://github.com/samplehc/samplehc-python/commit/d8587798b1fd079779ed31960cb541faaf8861ec))
265
+ * **api:** manual updates ([76334bb](https://github.com/samplehc/samplehc-python/commit/76334bb5061745ca6eeee7c2bf6609405cfe9bbe))
266
+ * **api:** manual updates ([f8e63cc](https://github.com/samplehc/samplehc-python/commit/f8e63cc7b95626477848cc86bc8dde7936c2b1fd))
267
+ * **api:** manual updates ([131dcff](https://github.com/samplehc/samplehc-python/commit/131dcffb2bf1a1e47da9ddb96f33f66bee703786))
268
+ * **api:** manual updates ([34de1a5](https://github.com/samplehc/samplehc-python/commit/34de1a56c6c661bd4fa86e099658f2aea6d0e2cd))
269
+ * **api:** manual updates ([605874b](https://github.com/samplehc/samplehc-python/commit/605874ba94791ab18ba7a99cc36b3e4d81409575))
270
+ * **api:** manual updates ([54b9db2](https://github.com/samplehc/samplehc-python/commit/54b9db2f501465c78ff1b477d7e60d2e6f9df4c5))
271
+ * **api:** manual updates ([16d90ed](https://github.com/samplehc/samplehc-python/commit/16d90eddf41509b59d16555bc741a20b7be7b3b7))
272
+ * **api:** manual updates ([70ce884](https://github.com/samplehc/samplehc-python/commit/70ce884d0c8ca8c578cf304ea0d5e3ca541189f3))
273
+ * **api:** manual updates ([6437122](https://github.com/samplehc/samplehc-python/commit/6437122517578b00fbf784049b1d9e065f19a8cd))
274
+ * **api:** manual updates ([953ed06](https://github.com/samplehc/samplehc-python/commit/953ed06dc163c79ff7717832d4762d9273062828))
275
+ * **api:** manual updates ([e5e5eda](https://github.com/samplehc/samplehc-python/commit/e5e5eda07ea6d199fbda49bf25b7beaa367f6a51))
276
+ * **api:** manual updates ([66192ca](https://github.com/samplehc/samplehc-python/commit/66192ca46c580d8dce67430800235b2546784255))
277
+ * **api:** manual updates ([907a6ce](https://github.com/samplehc/samplehc-python/commit/907a6ce51efe872392a3317fc7837f1026c2960f))
278
+ * **api:** manual updates ([ed46720](https://github.com/samplehc/samplehc-python/commit/ed46720934d80534c37351e32a0691c43a76ea77))
279
+ * **api:** manual updates ([192b313](https://github.com/samplehc/samplehc-python/commit/192b313384f690165678c4b41630bd88fea406ec))
280
+ * **api:** manual updates ([69abc72](https://github.com/samplehc/samplehc-python/commit/69abc726594d6fac94d880e8dabdbeaef438d044))
281
+ * **api:** manual updates ([b0335fb](https://github.com/samplehc/samplehc-python/commit/b0335fbe86896567947a071ecc7507c8f285a681))
282
+ * **api:** manual updates ([ce2f673](https://github.com/samplehc/samplehc-python/commit/ce2f673ce71fb7926285c146039d14b8523b71d1))
283
+ * **api:** manual updates ([ad59580](https://github.com/samplehc/samplehc-python/commit/ad595801e0df97c23b8b2bdd8986f2b03ebe88d0))
284
+ * **api:** manual updates ([d334196](https://github.com/samplehc/samplehc-python/commit/d33419620e0ca33d701c344e92bf7e63aebba337))
285
+ * **api:** manual updates ([746738f](https://github.com/samplehc/samplehc-python/commit/746738fe54414796e0a186538613e33a584f25cd))
286
+ * **api:** update via SDK Studio ([a3779fb](https://github.com/samplehc/samplehc-python/commit/a3779fb1d3245bee3c8c0c4d11ad566972b14f24))
287
+ * **api:** update via SDK Studio ([27eba0e](https://github.com/samplehc/samplehc-python/commit/27eba0e28c3fb7a949151bf6291f33d602432e2b))
288
+ * **api:** update via SDK Studio ([dcfa909](https://github.com/samplehc/samplehc-python/commit/dcfa909f83d4484edcdd16538f0386ef0a41ee0a))
289
+ * **api:** update via SDK Studio ([9341e73](https://github.com/samplehc/samplehc-python/commit/9341e73c98e30327ac7cfa01f1b7fbf2c2d2ef6b))
290
+ * **api:** update via SDK Studio ([4a775dc](https://github.com/samplehc/samplehc-python/commit/4a775dcdd7800d0daac683d361fbc97801a3beb9))
291
+ * **api:** update via SDK Studio ([2e76582](https://github.com/samplehc/samplehc-python/commit/2e765826e2fe19d646f0a2d6906649fda6b52ca4))
292
+ * **api:** update via SDK Studio ([6634c74](https://github.com/samplehc/samplehc-python/commit/6634c7422b2cc7c130670f65c9136faf7c523adb))
293
+ * **api:** update via SDK Studio ([c4c777c](https://github.com/samplehc/samplehc-python/commit/c4c777c03bdca15e7ec03b3f9994115d5e69ef3a))
294
+ * **api:** update via SDK Studio ([a152337](https://github.com/samplehc/samplehc-python/commit/a15233783b6fbdaa9eb985e9efd6ad7bd062fd94))
295
+ * **api:** update via SDK Studio ([f99f475](https://github.com/samplehc/samplehc-python/commit/f99f47559f524f00631714e87587b83a7f3b3ed7))
296
+ * **api:** update via SDK Studio ([8d43d73](https://github.com/samplehc/samplehc-python/commit/8d43d73a31616b74606e161853381150a4b68f4f))
297
+ * **api:** update via SDK Studio ([22e76c5](https://github.com/samplehc/samplehc-python/commit/22e76c54871a10171706fe641af167ab71b59432))
298
+ * **api:** update via SDK Studio ([bd30754](https://github.com/samplehc/samplehc-python/commit/bd307540d542a721ff1b6604375d1df011b9a73a))
299
+ * **api:** update via SDK Studio ([c280361](https://github.com/samplehc/samplehc-python/commit/c280361e5dbf1e1e47f8859e0b4fbd160327a8bf))
300
+ * **api:** update via SDK Studio ([faf4028](https://github.com/samplehc/samplehc-python/commit/faf40287b6ec7d53012a6786729f5df4f58d79ca))
301
+ * **api:** update via SDK Studio ([4aa6660](https://github.com/samplehc/samplehc-python/commit/4aa666049024624e0f52c0a71f02564600cbd2a0))
302
+ * clean up environment call outs ([024c2a3](https://github.com/samplehc/samplehc-python/commit/024c2a369a276513558be8cd23fe10467e64f438))
303
+ * **client:** add follow_redirects request option ([2c453de](https://github.com/samplehc/samplehc-python/commit/2c453de3ecf91d404237ae62ffcd748cccd1207f))
304
+ * **client:** add support for aiohttp ([deb5586](https://github.com/samplehc/samplehc-python/commit/deb5586348324849ec7e915d95ca627ff6b13cc9))
305
+ * **client:** support file upload requests ([a0ea16d](https://github.com/samplehc/samplehc-python/commit/a0ea16db44c93cbb0c648ab70515937ae52d121a))
306
+
307
+
308
+ ### Bug Fixes
309
+
310
+ * **ci:** correct conditional ([8010e85](https://github.com/samplehc/samplehc-python/commit/8010e85014ab225894cf716747c9c109a1d8f766))
311
+ * **ci:** release-doctor — report correct token name ([451df5f](https://github.com/samplehc/samplehc-python/commit/451df5ff08a80bc9242a658e96547c0d94eab077))
312
+ * **client:** correctly parse binary response | stream ([9267326](https://github.com/samplehc/samplehc-python/commit/9267326b39dd1c5f8ef5a4e05c599e0ed4b2908e))
313
+ * **client:** don't send Content-Type header on GET requests ([aa7d9e9](https://github.com/samplehc/samplehc-python/commit/aa7d9e990b1a771312bab251094216a512af8428))
314
+ * **docs/api:** remove references to nonexistent types ([b98568d](https://github.com/samplehc/samplehc-python/commit/b98568d81b33e53fb5a0ffda292b41140b7bb2b9))
315
+ * **package:** support direct resource imports ([bbadc3c](https://github.com/samplehc/samplehc-python/commit/bbadc3c6fe75cef448da217652cb933168b1f9a9))
316
+ * **parsing:** correctly handle nested discriminated unions ([2757d8a](https://github.com/samplehc/samplehc-python/commit/2757d8a638bf86b3a7ccf9a61bb085a66122bf9c))
317
+ * **parsing:** ignore empty metadata ([2867f7c](https://github.com/samplehc/samplehc-python/commit/2867f7ca2eed031c4ed45b38167a6bea0002eb04))
318
+ * **parsing:** parse extra field types ([5b4d7fc](https://github.com/samplehc/samplehc-python/commit/5b4d7fce88bd7dd09a0c731a9aa91c9fd3ab1fd2))
319
+ * **tests:** fix: tests which call HTTP endpoints directly with the example parameters ([734a444](https://github.com/samplehc/samplehc-python/commit/734a444b43abbc74972c8200ecccb3b905cbedf8))
320
+
321
+
322
+ ### Chores
323
+
324
+ * **ci:** change upload type ([e78525a](https://github.com/samplehc/samplehc-python/commit/e78525ad3323c460261e7bb2e9ff421f6cec52c8))
325
+ * **ci:** enable for pull requests ([ec330b9](https://github.com/samplehc/samplehc-python/commit/ec330b91f25526e992ab9d8bc7bd1de7803b39f9))
326
+ * **ci:** fix installation instructions ([31c01f8](https://github.com/samplehc/samplehc-python/commit/31c01f8ee99aa2b4948916e5445a8fe8b5141ac9))
327
+ * **ci:** only run for pushes and fork pull requests ([6dd8a7b](https://github.com/samplehc/samplehc-python/commit/6dd8a7bd95aba2da45b535ba733287664faab1ba))
328
+ * **ci:** upload sdks to package manager ([3a714e3](https://github.com/samplehc/samplehc-python/commit/3a714e356cc8d3255f6f77ab164cd384400686d6))
329
+ * **docs:** grammar improvements ([1231484](https://github.com/samplehc/samplehc-python/commit/1231484743cee4a8a232ef95a999637c66135221))
330
+ * **docs:** remove reference to rye shell ([1506f9f](https://github.com/samplehc/samplehc-python/commit/1506f9f3903d72a21cedff3019457e1fa12834e4))
331
+ * **internal:** avoid errors for isinstance checks on proxies ([e2e4bfe](https://github.com/samplehc/samplehc-python/commit/e2e4bfe3e97c6eaf027edd071cc35ed07ab80b01))
332
+ * **internal:** bump pinned h11 dep ([0107310](https://github.com/samplehc/samplehc-python/commit/0107310bf54c50486e19378fc3e1dcfcefa090f5))
333
+ * **internal:** codegen related update ([b7f5e6e](https://github.com/samplehc/samplehc-python/commit/b7f5e6e5685e4bfefa2766702103ca98adc2801d))
334
+ * **internal:** codegen related update ([89822ea](https://github.com/samplehc/samplehc-python/commit/89822ea1dffb0d9a06cdfd158c1c742b18529875))
335
+ * **internal:** fix ruff target version ([12279c6](https://github.com/samplehc/samplehc-python/commit/12279c649f4dce5df802a075e2fadd1cb8900db3))
336
+ * **internal:** update comment in script ([bde1297](https://github.com/samplehc/samplehc-python/commit/bde1297ff6f449bbefb376e6288d7dd3c318d380))
337
+ * **internal:** update conftest.py ([2ee303b](https://github.com/samplehc/samplehc-python/commit/2ee303b129e69df436f3ca366ead1f4eb9b330de))
338
+ * **package:** mark python 3.13 as supported ([4d997a0](https://github.com/samplehc/samplehc-python/commit/4d997a09be629e2d7865e880e9a6bd713a7bcd0c))
339
+ * **project:** add settings file for vscode ([14429d0](https://github.com/samplehc/samplehc-python/commit/14429d07c840b2fe75f2a5bf2b3edbf341f2e4ac))
340
+ * **readme:** fix version rendering on pypi ([791810e](https://github.com/samplehc/samplehc-python/commit/791810e5d561fb6d6af221295c273d876e1e6799))
341
+ * **readme:** update badges ([790f492](https://github.com/samplehc/samplehc-python/commit/790f492a45af698bdfadcd53c2950e2695e7c7fc))
342
+ * sync repo ([3b67e7e](https://github.com/samplehc/samplehc-python/commit/3b67e7e513fb0ddf5321c3cd33d292c5ddcb02be))
343
+ * **tests:** add tests for httpx client instantiation & proxies ([f4779bb](https://github.com/samplehc/samplehc-python/commit/f4779bb1035239ff21a5a77be38fc9dad17b7067))
344
+ * **tests:** run tests in parallel ([fbcef60](https://github.com/samplehc/samplehc-python/commit/fbcef60eb4b07bc64f7969f113af0dc76c60b702))
345
+ * **tests:** skip some failing tests on the latest python versions ([973a519](https://github.com/samplehc/samplehc-python/commit/973a519f70d278f4cf88e9fe1799dfb21f2cb14e))
346
+ * update @stainless-api/prism-cli to v5.15.0 ([88f2f7d](https://github.com/samplehc/samplehc-python/commit/88f2f7d7ab70564e94ddc4ddc03c542714ef030b))
347
+ * update SDK settings ([079c79a](https://github.com/samplehc/samplehc-python/commit/079c79ae9170089e4c49147086cdcfb5178e4203))
348
+ * update SDK settings ([6644e1e](https://github.com/samplehc/samplehc-python/commit/6644e1e1bfaa5dccbb7efabec48c0edef70cc3e3))
349
+ * update SDK settings ([ee359d8](https://github.com/samplehc/samplehc-python/commit/ee359d8a9114768700862f01619a2ceb3b208850))
350
+ * update SDK settings ([84f3917](https://github.com/samplehc/samplehc-python/commit/84f391754a68d5831ffa3387b2f350d1ae04f5a1))
351
+ * update SDK settings ([dfcc2f2](https://github.com/samplehc/samplehc-python/commit/dfcc2f20e779f539fcf1acef514e1e0fba201cd4))
352
+ * update SDK settings ([73dda8a](https://github.com/samplehc/samplehc-python/commit/73dda8abc8bbabae73008671b9cc3d5e6939066a))
353
+
354
+
355
+ ### Documentation
356
+
357
+ * **client:** fix httpx.Timeout documentation reference ([ac5f9fe](https://github.com/samplehc/samplehc-python/commit/ac5f9fe3f348d094205567117f6ebd0549577539))
358
+ * remove or fix invalid readme examples ([87409ec](https://github.com/samplehc/samplehc-python/commit/87409ec2a34df1f6e3b861f902bbfc7396bed4ba))
359
+
3
360
  ## 0.5.0 (2025-08-05)
4
361
 
5
362
  Full Changelog: [v0.4.0...v0.5.0](https://github.com/samplehc/samplehc-python/compare/v0.4.0...v0.5.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.5.0
3
+ Version: 0.7.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
@@ -274,6 +274,7 @@ from samplehc.types.v2 import (
274
274
  LedgerOrderWriteoffResponse,
275
275
  LedgerPatientAdjustmentResponse,
276
276
  LedgerPatientPaymentResponse,
277
+ LedgerPostRemittanceAcceptedResponse,
277
278
  LedgerReverseEntryResponse,
278
279
  )
279
280
  ```
@@ -289,6 +290,7 @@ Methods:
289
290
  - <code title="post /api/v2/ledger/order-writeoff">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">order_writeoff</a>(\*\*<a href="src/samplehc/types/v2/ledger_order_writeoff_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_order_writeoff_response.py">LedgerOrderWriteoffResponse</a></code>
290
291
  - <code title="post /api/v2/ledger/patient-adjustment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">patient_adjustment</a>(\*\*<a href="src/samplehc/types/v2/ledger_patient_adjustment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_patient_adjustment_response.py">LedgerPatientAdjustmentResponse</a></code>
291
292
  - <code title="post /api/v2/ledger/patient-payment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">patient_payment</a>(\*\*<a href="src/samplehc/types/v2/ledger_patient_payment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_patient_payment_response.py">LedgerPatientPaymentResponse</a></code>
293
+ - <code title="post /api/v2/ledger/remittance-accepted">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">post_remittance_accepted</a>(\*\*<a href="src/samplehc/types/v2/ledger_post_remittance_accepted_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_post_remittance_accepted_response.py">LedgerPostRemittanceAcceptedResponse</a></code>
292
294
  - <code title="post /api/v2/ledger/reverse-entry">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">reverse_entry</a>(\*\*<a href="src/samplehc/types/v2/ledger_reverse_entry_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_reverse_entry_response.py">LedgerReverseEntryResponse</a></code>
293
295
 
294
296
  ### Institutions
@@ -418,6 +420,60 @@ Methods:
418
420
  - <code title="get /api/v2/integrations/kno2/{slug}/messages/{messageId}">client.v2.integrations.kno2.messages.<a href="./src/samplehc/resources/v2/integrations/kno2/messages.py">retrieve</a>(message_id, \*, slug) -> <a href="./src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py">MessageRetrieveResponse</a></code>
419
421
  - <code title="get /api/v2/integrations/kno2/{slug}/messages/{messageId}/attachments/{attachmentId}">client.v2.integrations.kno2.messages.<a href="./src/samplehc/resources/v2/integrations/kno2/messages.py">get_attachment</a>(attachment_id, \*, slug, message_id) -> <a href="./src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py">MessageGetAttachmentResponse</a></code>
420
422
 
423
+ ### Glidian
424
+
425
+ Types:
426
+
427
+ ```python
428
+ from samplehc.types.v2.integrations import (
429
+ GlidianGetSubmissionRequirementsResponse,
430
+ GlidianListPayersResponse,
431
+ GlidianListServicesResponse,
432
+ )
433
+ ```
434
+
435
+ Methods:
436
+
437
+ - <code title="get /api/v2/integrations/glidian/{slug}/submission-requirements">client.v2.integrations.glidian.<a href="./src/samplehc/resources/v2/integrations/glidian/glidian.py">get_submission_requirements</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py">GlidianGetSubmissionRequirementsResponse</a></code>
438
+ - <code title="get /api/v2/integrations/glidian/{slug}/payers">client.v2.integrations.glidian.<a href="./src/samplehc/resources/v2/integrations/glidian/glidian.py">list_payers</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian_list_payers_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian_list_payers_response.py">GlidianListPayersResponse</a></code>
439
+ - <code title="get /api/v2/integrations/glidian/{slug}/services">client.v2.integrations.glidian.<a href="./src/samplehc/resources/v2/integrations/glidian/glidian.py">list_services</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian_list_services_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian_list_services_response.py">GlidianListServicesResponse</a></code>
440
+
441
+ #### PriorAuthorizations
442
+
443
+ Types:
444
+
445
+ ```python
446
+ from samplehc.types.v2.integrations.glidian import (
447
+ PriorAuthorizationCreateDraftResponse,
448
+ PriorAuthorizationRetrieveRecordResponse,
449
+ PriorAuthorizationSubmitResponse,
450
+ PriorAuthorizationUpdateRecordResponse,
451
+ )
452
+ ```
453
+
454
+ Methods:
455
+
456
+ - <code title="post /api/v2/integrations/glidian/{slug}/prior-authorizations">client.v2.integrations.glidian.prior_authorizations.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py">create_draft</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py">PriorAuthorizationCreateDraftResponse</a></code>
457
+ - <code title="get /api/v2/integrations/glidian/{slug}/prior-authorizations/{recordId}">client.v2.integrations.glidian.prior_authorizations.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py">retrieve_record</a>(record_id, \*, slug) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py">PriorAuthorizationRetrieveRecordResponse</a></code>
458
+ - <code title="post /api/v2/integrations/glidian/{slug}/prior-authorizations/{recordId}/submit">client.v2.integrations.glidian.prior_authorizations.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py">submit</a>(record_id, \*, slug) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py">PriorAuthorizationSubmitResponse</a></code>
459
+ - <code title="put /api/v2/integrations/glidian/{slug}/prior-authorizations/{recordId}">client.v2.integrations.glidian.prior_authorizations.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py">update_record</a>(record_id, \*, slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py">PriorAuthorizationUpdateRecordResponse</a></code>
460
+
461
+ ##### ClinicalQuestions
462
+
463
+ Types:
464
+
465
+ ```python
466
+ from samplehc.types.v2.integrations.glidian.prior_authorizations import (
467
+ ClinicalQuestionUpdateResponse,
468
+ ClinicalQuestionListResponse,
469
+ )
470
+ ```
471
+
472
+ Methods:
473
+
474
+ - <code title="put /api/v2/integrations/glidian/{slug}/prior-authorizations/{recordId}/clinical-questions">client.v2.integrations.glidian.prior_authorizations.clinical_questions.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py">update</a>(record_id, \*, slug, \*\*<a href="src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py">ClinicalQuestionUpdateResponse</a></code>
475
+ - <code title="get /api/v2/integrations/glidian/{slug}/prior-authorizations/{recordId}/clinical-questions">client.v2.integrations.glidian.prior_authorizations.clinical_questions.<a href="./src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py">list</a>(record_id, \*, slug) -> <a href="./src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py">ClinicalQuestionListResponse</a></code>
476
+
421
477
  ## Events
422
478
 
423
479
  Types:
@@ -428,7 +484,27 @@ from samplehc.types.v2 import EventEmitResponse
428
484
 
429
485
  Methods:
430
486
 
431
- - <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>
487
+ - <code title="post /api/v2/events/">client.v2.events.<a href="./src/samplehc/resources/v2/events/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>
488
+
489
+ ### Hie
490
+
491
+ #### Adt
492
+
493
+ Methods:
494
+
495
+ - <code title="post /api/v2/hie/adt/subscribe">client.v2.events.hie.adt.<a href="./src/samplehc/resources/v2/events/hie/adt.py">subscribe</a>(\*\*<a href="src/samplehc/types/v2/events/hie/adt_subscribe_params.py">params</a>) -> object</code>
496
+
497
+ ## BrowserAgents
498
+
499
+ Types:
500
+
501
+ ```python
502
+ from samplehc.types.v2 import BrowserAgentInvokeResponse
503
+ ```
504
+
505
+ Methods:
506
+
507
+ - <code title="post /api/v2/browser-agents/{slug}/invoke">client.v2.browser_agents.<a href="./src/samplehc/resources/v2/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>
432
508
 
433
509
  ## Policies
434
510
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "samplehc"
3
- version = "0.5.0"
3
+ version = "0.7.0"
4
4
  description = "The official Python library for the Sample Healthcare API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -159,7 +159,7 @@ reportPrivateUsage = false
159
159
  [tool.ruff]
160
160
  line-length = 120
161
161
  output-format = "grouped"
162
- target-version = "py37"
162
+ target-version = "py38"
163
163
 
164
164
  [tool.ruff.format]
165
165
  docstring-code-format = true
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "samplehc"
4
- __version__ = "0.5.0" # x-release-please-version
4
+ __version__ = "0.7.0" # x-release-please-version
@@ -112,6 +112,14 @@ from .workflow_runs import (
112
112
  WorkflowRunsResourceWithStreamingResponse,
113
113
  AsyncWorkflowRunsResourceWithStreamingResponse,
114
114
  )
115
+ from .browser_agents import (
116
+ BrowserAgentsResource,
117
+ AsyncBrowserAgentsResource,
118
+ BrowserAgentsResourceWithRawResponse,
119
+ AsyncBrowserAgentsResourceWithRawResponse,
120
+ BrowserAgentsResourceWithStreamingResponse,
121
+ AsyncBrowserAgentsResourceWithStreamingResponse,
122
+ )
115
123
  from .browser_automation import (
116
124
  BrowserAutomationResource,
117
125
  AsyncBrowserAutomationResource,
@@ -182,6 +190,12 @@ __all__ = [
182
190
  "AsyncEventsResourceWithRawResponse",
183
191
  "EventsResourceWithStreamingResponse",
184
192
  "AsyncEventsResourceWithStreamingResponse",
193
+ "BrowserAgentsResource",
194
+ "AsyncBrowserAgentsResource",
195
+ "BrowserAgentsResourceWithRawResponse",
196
+ "AsyncBrowserAgentsResourceWithRawResponse",
197
+ "BrowserAgentsResourceWithStreamingResponse",
198
+ "AsyncBrowserAgentsResourceWithStreamingResponse",
185
199
  "PoliciesResource",
186
200
  "AsyncPoliciesResource",
187
201
  "PoliciesResourceWithRawResponse",