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