samplehc 0.6.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 (344) hide show
  1. samplehc-0.7.0/.release-please-manifest.json +3 -0
  2. {samplehc-0.6.0 → samplehc-0.7.0}/CHANGELOG.md +181 -0
  3. {samplehc-0.6.0 → samplehc-0.7.0}/PKG-INFO +1 -1
  4. {samplehc-0.6.0 → samplehc-0.7.0}/api.md +11 -1
  5. {samplehc-0.6.0 → samplehc-0.7.0}/pyproject.toml +1 -1
  6. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_version.py +1 -1
  7. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/claim.py +0 -4
  8. samplehc-0.7.0/src/samplehc/resources/v2/events/__init__.py +33 -0
  9. {samplehc-0.6.0/src/samplehc/resources/v2 → samplehc-0.7.0/src/samplehc/resources/v2/events}/events.py +40 -8
  10. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/__init__.py +33 -0
  11. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/adt.py +249 -0
  12. samplehc-0.7.0/src/samplehc/resources/v2/events/hie/hie.py +102 -0
  13. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/ledger.py +152 -0
  14. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/v2.py +8 -8
  15. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/__init__.py +6 -0
  16. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -2
  17. samplehc-0.7.0/src/samplehc/types/v2/events/__init__.py +3 -0
  18. samplehc-0.7.0/src/samplehc/types/v2/events/hie/__init__.py +5 -0
  19. samplehc-0.7.0/src/samplehc/types/v2/events/hie/adt_subscribe_params.py +92 -0
  20. samplehc-0.7.0/src/samplehc/types/v2/ledger_post_remittance_accepted_params.py +37 -0
  21. samplehc-0.7.0/src/samplehc/types/v2/ledger_post_remittance_accepted_response.py +12 -0
  22. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -8
  23. samplehc-0.7.0/tests/api_resources/v2/events/hie/test_adt.py +233 -0
  24. samplehc-0.7.0/tests/api_resources/v2/tasks/__init__.py +1 -0
  25. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_ledger.py +135 -0
  26. samplehc-0.7.0/tests/api_resources/v2/workflow_runs/__init__.py +1 -0
  27. samplehc-0.6.0/.release-please-manifest.json +0 -3
  28. {samplehc-0.6.0 → samplehc-0.7.0}/.gitignore +0 -0
  29. {samplehc-0.6.0 → samplehc-0.7.0}/CONTRIBUTING.md +0 -0
  30. {samplehc-0.6.0 → samplehc-0.7.0}/LICENSE +0 -0
  31. {samplehc-0.6.0 → samplehc-0.7.0}/README.md +0 -0
  32. {samplehc-0.6.0 → samplehc-0.7.0}/SECURITY.md +0 -0
  33. {samplehc-0.6.0 → samplehc-0.7.0}/bin/check-release-environment +0 -0
  34. {samplehc-0.6.0 → samplehc-0.7.0}/bin/publish-pypi +0 -0
  35. {samplehc-0.6.0 → samplehc-0.7.0}/examples/.keep +0 -0
  36. {samplehc-0.6.0 → samplehc-0.7.0}/mypy.ini +0 -0
  37. {samplehc-0.6.0 → samplehc-0.7.0}/noxfile.py +0 -0
  38. {samplehc-0.6.0 → samplehc-0.7.0}/release-please-config.json +0 -0
  39. {samplehc-0.6.0 → samplehc-0.7.0}/requirements-dev.lock +0 -0
  40. {samplehc-0.6.0 → samplehc-0.7.0}/requirements.lock +0 -0
  41. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/__init__.py +0 -0
  42. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_base_client.py +0 -0
  43. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_client.py +0 -0
  44. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_compat.py +0 -0
  45. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_constants.py +0 -0
  46. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_exceptions.py +0 -0
  47. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_files.py +0 -0
  48. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_models.py +0 -0
  49. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_qs.py +0 -0
  50. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_resource.py +0 -0
  51. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_response.py +0 -0
  52. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_streaming.py +0 -0
  53. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_types.py +0 -0
  54. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/__init__.py +0 -0
  55. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_logs.py +0 -0
  56. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_proxy.py +0 -0
  57. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_reflection.py +0 -0
  58. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
  59. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_streams.py +0 -0
  60. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_sync.py +0 -0
  61. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_transform.py +0 -0
  62. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_typing.py +0 -0
  63. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/_utils/_utils.py +0 -0
  64. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/lib/.keep +0 -0
  65. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/py.typed +0 -0
  66. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/__init__.py +0 -0
  67. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v1/__init__.py +0 -0
  68. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v1/v1.py +0 -0
  69. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/__init__.py +0 -0
  70. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/async_results.py +0 -0
  71. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_agents.py +0 -0
  72. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/__init__.py +0 -0
  73. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/availity.py +0 -0
  74. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -0
  75. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
  76. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
  77. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/clearinghouse/payers.py +0 -0
  78. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/communication.py +0 -0
  79. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/database.py +0 -0
  80. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
  81. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/documents.py +0 -0
  82. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
  83. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
  84. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
  85. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
  86. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
  87. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
  88. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
  89. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/__init__.py +0 -0
  90. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
  91. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
  92. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
  93. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
  94. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
  95. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +0 -0
  96. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  97. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +0 -0
  98. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +0 -0
  99. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/integrations.py +0 -0
  100. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
  101. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
  102. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
  103. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
  104. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/__init__.py +0 -0
  105. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/__init__.py +0 -0
  106. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/institutions.py +0 -0
  107. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/institutions/orders.py +0 -0
  108. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/insurance.py +0 -0
  109. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/orders.py +0 -0
  110. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/ledger/patients.py +0 -0
  111. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/policies.py +0 -0
  112. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
  113. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
  114. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/tasks/tasks.py +0 -0
  115. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
  116. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
  117. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
  118. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/resources/v2/workflows.py +0 -0
  119. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/__init__.py +0 -0
  120. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v1/__init__.py +0 -0
  121. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
  122. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v1_query_audit_logs_response.py +0 -0
  123. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
  124. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
  125. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
  126. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
  127. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
  128. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -0
  129. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_agent_invoke_response.py +0 -0
  130. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/__init__.py +0 -0
  131. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -0
  132. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -0
  133. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
  134. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +0 -0
  135. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +0 -0
  136. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_params.py +0 -0
  137. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_response.py +0 -0
  138. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
  139. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
  140. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +0 -0
  141. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
  142. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
  143. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +0 -0
  144. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
  145. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_fax_params.py +0 -0
  146. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_fax_response.py +0 -0
  147. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_letter_params.py +0 -0
  148. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/communication_send_letter_response.py +0 -0
  149. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
  150. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/database_execute_sql_response.py +0 -0
  151. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_classify_params.py +0 -0
  152. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_classify_response.py +0 -0
  153. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
  154. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_combine_response.py +0 -0
  155. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_create_from_splits_params.py +0 -0
  156. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_create_from_splits_response.py +0 -0
  157. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_extract_params.py +0 -0
  158. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_extract_response.py +0 -0
  159. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
  160. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_generate_csv_response.py +0 -0
  161. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
  162. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +0 -0
  163. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +0 -0
  164. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +0 -0
  165. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
  166. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_search_params.py +0 -0
  167. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_search_response.py +0 -0
  168. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_split_params.py +0 -0
  169. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_split_response.py +0 -0
  170. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
  171. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
  172. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
  173. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
  174. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
  175. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +0 -0
  176. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
  177. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +0 -0
  178. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
  179. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +0 -0
  180. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +0 -0
  181. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
  182. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
  183. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
  184. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/documents/template_render_document_response.py +0 -0
  185. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
  186. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
  187. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
  188. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
  189. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
  190. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/hie/document_upload_params.py +0 -0
  191. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/__init__.py +0 -0
  192. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
  193. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
  194. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
  195. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
  196. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
  197. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
  198. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
  199. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +0 -0
  200. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +0 -0
  201. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +0 -0
  202. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
  203. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +0 -0
  204. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  205. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +0 -0
  206. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +0 -0
  207. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +0 -0
  208. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
  209. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
  210. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
  211. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
  212. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
  213. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
  214. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
  215. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +0 -0
  216. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +0 -0
  217. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
  218. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
  219. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/__init__.py +0 -0
  220. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py +0 -0
  221. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py +0 -0
  222. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institutions/__init__.py +0 -0
  223. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py +0 -0
  224. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py +0 -0
  225. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_balances_response.py +0 -0
  226. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py +0 -0
  227. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py +0 -0
  228. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py +0 -0
  229. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_assign_invoice_params.py +0 -0
  230. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_assign_invoice_response.py +0 -0
  231. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_adjustment_params.py +0 -0
  232. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_adjustment_response.py +0 -0
  233. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_payment_params.py +0 -0
  234. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_claim_payment_response.py +0 -0
  235. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_adjustment_params.py +0 -0
  236. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_adjustment_response.py +0 -0
  237. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_payment_params.py +0 -0
  238. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_institution_payment_response.py +0 -0
  239. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_new_order_params.py +0 -0
  240. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_new_order_response.py +0 -0
  241. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_order_writeoff_params.py +0 -0
  242. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_order_writeoff_response.py +0 -0
  243. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_adjustment_params.py +0 -0
  244. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_adjustment_response.py +0 -0
  245. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_payment_params.py +0 -0
  246. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_patient_payment_response.py +0 -0
  247. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_reverse_entry_params.py +0 -0
  248. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/ledger_reverse_entry_response.py +0 -0
  249. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
  250. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_companies_response.py +0 -0
  251. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
  252. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
  253. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_plans_response.py +0 -0
  254. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_list_response.py +0 -0
  255. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +0 -0
  256. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +0 -0
  257. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_cancel_response.py +0 -0
  258. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
  259. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_complete_response.py +0 -0
  260. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
  261. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
  262. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
  263. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
  264. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
  265. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
  266. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
  267. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
  268. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
  269. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
  270. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
  271. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
  272. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
  273. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
  274. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +0 -0
  275. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +0 -0
  276. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
  277. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +0 -0
  278. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
  279. {samplehc-0.6.0 → samplehc-0.7.0}/src/samplehc/types/v2/workflow_start_response.py +0 -0
  280. {samplehc-0.6.0 → samplehc-0.7.0}/tests/__init__.py +0 -0
  281. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/__init__.py +0 -0
  282. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/test_v1.py +0 -0
  283. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v1/__init__.py +0 -0
  284. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/__init__.py +0 -0
  285. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/browser_automation/__init__.py +0 -0
  286. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/browser_automation/test_availity.py +0 -0
  287. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/clearinghouse/__init__.py +0 -0
  288. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/clearinghouse/test_payers.py +0 -0
  289. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/__init__.py +0 -0
  290. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
  291. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_legacy.py +0 -0
  292. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
  293. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/documents/test_templates.py +0 -0
  294. {samplehc-0.6.0/tests/api_resources/v2/hie → samplehc-0.7.0/tests/api_resources/v2/events}/__init__.py +0 -0
  295. {samplehc-0.6.0/tests/api_resources/v2/integrations → samplehc-0.7.0/tests/api_resources/v2/events/hie}/__init__.py +0 -0
  296. {samplehc-0.6.0/tests/api_resources/v2/integrations/bank → samplehc-0.7.0/tests/api_resources/v2/hie}/__init__.py +0 -0
  297. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
  298. {samplehc-0.6.0/tests/api_resources/v2/integrations/glidian → samplehc-0.7.0/tests/api_resources/v2/integrations}/__init__.py +0 -0
  299. {samplehc-0.6.0/tests/api_resources/v2/integrations/glidian/prior_authorizations → samplehc-0.7.0/tests/api_resources/v2/integrations/bank}/__init__.py +0 -0
  300. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
  301. {samplehc-0.6.0/tests/api_resources/v2/integrations/kno2 → samplehc-0.7.0/tests/api_resources/v2/integrations/glidian}/__init__.py +0 -0
  302. {samplehc-0.6.0/tests/api_resources/v2/ledger → samplehc-0.7.0/tests/api_resources/v2/integrations/glidian/prior_authorizations}/__init__.py +0 -0
  303. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
  304. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
  305. {samplehc-0.6.0/tests/api_resources/v2/ledger/institutions → samplehc-0.7.0/tests/api_resources/v2/integrations/kno2}/__init__.py +0 -0
  306. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
  307. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
  308. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
  309. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
  310. {samplehc-0.6.0/tests/api_resources/v2/tasks → samplehc-0.7.0/tests/api_resources/v2/ledger}/__init__.py +0 -0
  311. {samplehc-0.6.0/tests/api_resources/v2/workflow_runs → samplehc-0.7.0/tests/api_resources/v2/ledger/institutions}/__init__.py +0 -0
  312. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/institutions/test_orders.py +0 -0
  313. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_institutions.py +0 -0
  314. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_insurance.py +0 -0
  315. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_orders.py +0 -0
  316. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/ledger/test_patients.py +0 -0
  317. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
  318. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_async_results.py +0 -0
  319. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_browser_agents.py +0 -0
  320. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
  321. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_communication.py +0 -0
  322. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_database.py +0 -0
  323. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_documents.py +0 -0
  324. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_events.py +0 -0
  325. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_policies.py +0 -0
  326. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_tasks.py +0 -0
  327. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
  328. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/test_workflows.py +0 -0
  329. {samplehc-0.6.0 → samplehc-0.7.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
  330. {samplehc-0.6.0 → samplehc-0.7.0}/tests/conftest.py +0 -0
  331. {samplehc-0.6.0 → samplehc-0.7.0}/tests/sample_file.txt +0 -0
  332. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_client.py +0 -0
  333. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_deepcopy.py +0 -0
  334. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_extract_files.py +0 -0
  335. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_files.py +0 -0
  336. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_models.py +0 -0
  337. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_qs.py +0 -0
  338. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_required_args.py +0 -0
  339. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_response.py +0 -0
  340. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_streaming.py +0 -0
  341. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_transform.py +0 -0
  342. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_utils/test_proxy.py +0 -0
  343. {samplehc-0.6.0 → samplehc-0.7.0}/tests/test_utils/test_typing.py +0 -0
  344. {samplehc-0.6.0 → samplehc-0.7.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.7.0"
3
+ }
@@ -1,5 +1,186 @@
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
+
3
184
  ## 0.6.0 (2025-08-15)
4
185
 
5
186
  Full Changelog: [v0.5.0...v0.6.0](https://github.com/samplehc/samplehc-python/compare/v0.5.0...v0.6.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.6.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
@@ -482,7 +484,15 @@ from samplehc.types.v2 import EventEmitResponse
482
484
 
483
485
  Methods:
484
486
 
485
- - <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>
486
496
 
487
497
  ## BrowserAgents
488
498
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "samplehc"
3
- version = "0.6.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"
@@ -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.6.0" # x-release-please-version
4
+ __version__ = "0.7.0" # x-release-please-version
@@ -115,7 +115,6 @@ class ClaimResource(SyncAPIResource):
115
115
  *,
116
116
  billing: claim_submit_params.Billing,
117
117
  claim_information: claim_submit_params.ClaimInformation,
118
- idempotency_key: str,
119
118
  is_testing: bool,
120
119
  receiver: claim_submit_params.Receiver,
121
120
  submitter: claim_submit_params.Submitter,
@@ -160,7 +159,6 @@ class ClaimResource(SyncAPIResource):
160
159
  {
161
160
  "billing": billing,
162
161
  "claim_information": claim_information,
163
- "idempotency_key": idempotency_key,
164
162
  "is_testing": is_testing,
165
163
  "receiver": receiver,
166
164
  "submitter": submitter,
@@ -279,7 +277,6 @@ class AsyncClaimResource(AsyncAPIResource):
279
277
  *,
280
278
  billing: claim_submit_params.Billing,
281
279
  claim_information: claim_submit_params.ClaimInformation,
282
- idempotency_key: str,
283
280
  is_testing: bool,
284
281
  receiver: claim_submit_params.Receiver,
285
282
  submitter: claim_submit_params.Submitter,
@@ -324,7 +321,6 @@ class AsyncClaimResource(AsyncAPIResource):
324
321
  {
325
322
  "billing": billing,
326
323
  "claim_information": claim_information,
327
- "idempotency_key": idempotency_key,
328
324
  "is_testing": is_testing,
329
325
  "receiver": receiver,
330
326
  "submitter": submitter,
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .hie import (
4
+ HieResource,
5
+ AsyncHieResource,
6
+ HieResourceWithRawResponse,
7
+ AsyncHieResourceWithRawResponse,
8
+ HieResourceWithStreamingResponse,
9
+ AsyncHieResourceWithStreamingResponse,
10
+ )
11
+ from .events import (
12
+ EventsResource,
13
+ AsyncEventsResource,
14
+ EventsResourceWithRawResponse,
15
+ AsyncEventsResourceWithRawResponse,
16
+ EventsResourceWithStreamingResponse,
17
+ AsyncEventsResourceWithStreamingResponse,
18
+ )
19
+
20
+ __all__ = [
21
+ "HieResource",
22
+ "AsyncHieResource",
23
+ "HieResourceWithRawResponse",
24
+ "AsyncHieResourceWithRawResponse",
25
+ "HieResourceWithStreamingResponse",
26
+ "AsyncHieResourceWithStreamingResponse",
27
+ "EventsResource",
28
+ "AsyncEventsResource",
29
+ "EventsResourceWithRawResponse",
30
+ "AsyncEventsResourceWithRawResponse",
31
+ "EventsResourceWithStreamingResponse",
32
+ "AsyncEventsResourceWithStreamingResponse",
33
+ ]
@@ -4,24 +4,36 @@ from __future__ import annotations
4
4
 
5
5
  import httpx
6
6
 
7
- from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
8
- from ..._utils import maybe_transform, strip_not_given, async_maybe_transform
9
- from ..._compat import cached_property
10
- from ...types.v2 import event_emit_params
11
- from ..._resource import SyncAPIResource, AsyncAPIResource
12
- from ..._response import (
7
+ from .hie.hie import (
8
+ HieResource,
9
+ AsyncHieResource,
10
+ HieResourceWithRawResponse,
11
+ AsyncHieResourceWithRawResponse,
12
+ HieResourceWithStreamingResponse,
13
+ AsyncHieResourceWithStreamingResponse,
14
+ )
15
+ from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
16
+ from ...._utils import maybe_transform, strip_not_given, async_maybe_transform
17
+ from ...._compat import cached_property
18
+ from ....types.v2 import event_emit_params
19
+ from ...._resource import SyncAPIResource, AsyncAPIResource
20
+ from ...._response import (
13
21
  to_raw_response_wrapper,
14
22
  to_streamed_response_wrapper,
15
23
  async_to_raw_response_wrapper,
16
24
  async_to_streamed_response_wrapper,
17
25
  )
18
- from ..._base_client import make_request_options
19
- from ...types.v2.event_emit_response import EventEmitResponse
26
+ from ...._base_client import make_request_options
27
+ from ....types.v2.event_emit_response import EventEmitResponse
20
28
 
21
29
  __all__ = ["EventsResource", "AsyncEventsResource"]
22
30
 
23
31
 
24
32
  class EventsResource(SyncAPIResource):
33
+ @cached_property
34
+ def hie(self) -> HieResource:
35
+ return HieResource(self._client)
36
+
25
37
  @cached_property
26
38
  def with_raw_response(self) -> EventsResourceWithRawResponse:
27
39
  """
@@ -88,6 +100,10 @@ class EventsResource(SyncAPIResource):
88
100
 
89
101
 
90
102
  class AsyncEventsResource(AsyncAPIResource):
103
+ @cached_property
104
+ def hie(self) -> AsyncHieResource:
105
+ return AsyncHieResource(self._client)
106
+
91
107
  @cached_property
92
108
  def with_raw_response(self) -> AsyncEventsResourceWithRawResponse:
93
109
  """
@@ -161,6 +177,10 @@ class EventsResourceWithRawResponse:
161
177
  events.emit,
162
178
  )
163
179
 
180
+ @cached_property
181
+ def hie(self) -> HieResourceWithRawResponse:
182
+ return HieResourceWithRawResponse(self._events.hie)
183
+
164
184
 
165
185
  class AsyncEventsResourceWithRawResponse:
166
186
  def __init__(self, events: AsyncEventsResource) -> None:
@@ -170,6 +190,10 @@ class AsyncEventsResourceWithRawResponse:
170
190
  events.emit,
171
191
  )
172
192
 
193
+ @cached_property
194
+ def hie(self) -> AsyncHieResourceWithRawResponse:
195
+ return AsyncHieResourceWithRawResponse(self._events.hie)
196
+
173
197
 
174
198
  class EventsResourceWithStreamingResponse:
175
199
  def __init__(self, events: EventsResource) -> None:
@@ -179,6 +203,10 @@ class EventsResourceWithStreamingResponse:
179
203
  events.emit,
180
204
  )
181
205
 
206
+ @cached_property
207
+ def hie(self) -> HieResourceWithStreamingResponse:
208
+ return HieResourceWithStreamingResponse(self._events.hie)
209
+
182
210
 
183
211
  class AsyncEventsResourceWithStreamingResponse:
184
212
  def __init__(self, events: AsyncEventsResource) -> None:
@@ -187,3 +215,7 @@ class AsyncEventsResourceWithStreamingResponse:
187
215
  self.emit = async_to_streamed_response_wrapper(
188
216
  events.emit,
189
217
  )
218
+
219
+ @cached_property
220
+ def hie(self) -> AsyncHieResourceWithStreamingResponse:
221
+ return AsyncHieResourceWithStreamingResponse(self._events.hie)
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .adt import (
4
+ AdtResource,
5
+ AsyncAdtResource,
6
+ AdtResourceWithRawResponse,
7
+ AsyncAdtResourceWithRawResponse,
8
+ AdtResourceWithStreamingResponse,
9
+ AsyncAdtResourceWithStreamingResponse,
10
+ )
11
+ from .hie import (
12
+ HieResource,
13
+ AsyncHieResource,
14
+ HieResourceWithRawResponse,
15
+ AsyncHieResourceWithRawResponse,
16
+ HieResourceWithStreamingResponse,
17
+ AsyncHieResourceWithStreamingResponse,
18
+ )
19
+
20
+ __all__ = [
21
+ "AdtResource",
22
+ "AsyncAdtResource",
23
+ "AdtResourceWithRawResponse",
24
+ "AsyncAdtResourceWithRawResponse",
25
+ "AdtResourceWithStreamingResponse",
26
+ "AsyncAdtResourceWithStreamingResponse",
27
+ "HieResource",
28
+ "AsyncHieResource",
29
+ "HieResourceWithRawResponse",
30
+ "AsyncHieResourceWithRawResponse",
31
+ "HieResourceWithStreamingResponse",
32
+ "AsyncHieResourceWithStreamingResponse",
33
+ ]