samplehc 0.13.0__tar.gz → 0.14.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 (340) hide show
  1. samplehc-0.14.0/.release-please-manifest.json +3 -0
  2. {samplehc-0.13.0 → samplehc-0.14.0}/CHANGELOG.md +13 -0
  3. {samplehc-0.13.0 → samplehc-0.14.0}/PKG-INFO +2 -2
  4. {samplehc-0.13.0 → samplehc-0.14.0}/api.md +9 -0
  5. {samplehc-0.13.0 → samplehc-0.14.0}/pyproject.toml +2 -2
  6. {samplehc-0.13.0 → samplehc-0.14.0}/requirements-dev.lock +1 -1
  7. {samplehc-0.13.0 → samplehc-0.14.0}/requirements.lock +1 -1
  8. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_version.py +1 -1
  9. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/__init__.py +14 -0
  10. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/integrations.py +32 -0
  11. samplehc-0.14.0/src/samplehc/resources/v2/integrations/wellsky/__init__.py +33 -0
  12. samplehc-0.14.0/src/samplehc/resources/v2/integrations/wellsky/patients.py +324 -0
  13. samplehc-0.14.0/src/samplehc/resources/v2/integrations/wellsky/wellsky.py +102 -0
  14. samplehc-0.14.0/src/samplehc/types/v2/integrations/wellsky/__init__.py +6 -0
  15. samplehc-0.14.0/src/samplehc/types/v2/integrations/wellsky/patient_add_params.py +13 -0
  16. samplehc-0.14.0/src/samplehc/types/v2/integrations/wellsky/patient_search_params.py +32 -0
  17. samplehc-0.14.0/tests/api_resources/v2/integrations/wellsky/test_patients.py +229 -0
  18. samplehc-0.14.0/tests/api_resources/v2/workflow_runs/__init__.py +1 -0
  19. samplehc-0.13.0/.release-please-manifest.json +0 -3
  20. {samplehc-0.13.0 → samplehc-0.14.0}/.gitignore +0 -0
  21. {samplehc-0.13.0 → samplehc-0.14.0}/CONTRIBUTING.md +0 -0
  22. {samplehc-0.13.0 → samplehc-0.14.0}/LICENSE +0 -0
  23. {samplehc-0.13.0 → samplehc-0.14.0}/README.md +0 -0
  24. {samplehc-0.13.0 → samplehc-0.14.0}/SECURITY.md +0 -0
  25. {samplehc-0.13.0 → samplehc-0.14.0}/bin/check-release-environment +0 -0
  26. {samplehc-0.13.0 → samplehc-0.14.0}/bin/publish-pypi +0 -0
  27. {samplehc-0.13.0 → samplehc-0.14.0}/examples/.keep +0 -0
  28. {samplehc-0.13.0 → samplehc-0.14.0}/noxfile.py +0 -0
  29. {samplehc-0.13.0 → samplehc-0.14.0}/release-please-config.json +0 -0
  30. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/__init__.py +0 -0
  31. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_base_client.py +0 -0
  32. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_client.py +0 -0
  33. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_compat.py +0 -0
  34. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_constants.py +0 -0
  35. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_exceptions.py +0 -0
  36. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_files.py +0 -0
  37. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_models.py +0 -0
  38. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_qs.py +0 -0
  39. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_resource.py +0 -0
  40. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_response.py +0 -0
  41. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_streaming.py +0 -0
  42. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_types.py +0 -0
  43. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/__init__.py +0 -0
  44. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_compat.py +0 -0
  45. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_datetime_parse.py +0 -0
  46. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_logs.py +0 -0
  47. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_proxy.py +0 -0
  48. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_reflection.py +0 -0
  49. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
  50. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_streams.py +0 -0
  51. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_sync.py +0 -0
  52. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_transform.py +0 -0
  53. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_typing.py +0 -0
  54. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/_utils/_utils.py +0 -0
  55. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/lib/.keep +0 -0
  56. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/py.typed +0 -0
  57. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/__init__.py +0 -0
  58. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v1/__init__.py +0 -0
  59. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v1/v1.py +0 -0
  60. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/__init__.py +0 -0
  61. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/async_results.py +0 -0
  62. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_agents/__init__.py +0 -0
  63. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_agents/browser_agents.py +0 -0
  64. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_agents/runs/__init__.py +0 -0
  65. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_agents/runs/help_requests.py +0 -0
  66. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_agents/runs/runs.py +0 -0
  67. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_automation/__init__.py +0 -0
  68. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_automation/availity.py +0 -0
  69. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -0
  70. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
  71. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/clearinghouse/claim.py +0 -0
  72. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
  73. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/clearinghouse/payers.py +0 -0
  74. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/communication.py +0 -0
  75. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/database.py +0 -0
  76. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
  77. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/documents.py +0 -0
  78. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
  79. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
  80. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
  81. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
  82. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/events.py +0 -0
  83. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
  84. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/hie/adt.py +0 -0
  85. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
  86. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
  87. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
  88. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
  89. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
  90. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
  91. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
  92. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +0 -0
  93. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  94. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +0 -0
  95. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +0 -0
  96. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
  97. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
  98. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
  99. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/salesforce.py +0 -0
  100. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
  101. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/integrations/xcures.py +0 -0
  102. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/ledger/__init__.py +0 -0
  103. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/ledger/account.py +0 -0
  104. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/ledger/entry.py +0 -0
  105. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/ledger/ledger.py +0 -0
  106. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/policies.py +0 -0
  107. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
  108. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
  109. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/tasks/tasks.py +0 -0
  110. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/v2.py +0 -0
  111. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
  112. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
  113. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
  114. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/resources/v2/workflows.py +0 -0
  115. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/__init__.py +0 -0
  116. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v1/__init__.py +0 -0
  117. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
  118. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v1_query_audit_logs_response.py +0 -0
  119. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
  120. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
  121. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/__init__.py +0 -0
  122. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
  123. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
  124. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
  125. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -0
  126. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agent_invoke_response.py +0 -0
  127. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/__init__.py +0 -0
  128. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/run_list_events_params.py +0 -0
  129. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/run_list_events_response.py +0 -0
  130. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/runs/__init__.py +0 -0
  131. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +0 -0
  132. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -0
  133. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_automation/__init__.py +0 -0
  134. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -0
  135. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -0
  136. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
  137. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -0
  138. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +0 -0
  139. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +0 -0
  140. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/payer_search_params.py +0 -0
  141. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse/payer_search_response.py +0 -0
  142. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
  143. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_check_claim_status_params.py +0 -0
  144. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
  145. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +0 -0
  146. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
  147. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
  148. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +0 -0
  149. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
  150. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/communication_send_fax_params.py +0 -0
  151. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/communication_send_fax_response.py +0 -0
  152. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/communication_send_letter_params.py +0 -0
  153. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/communication_send_letter_response.py +0 -0
  154. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
  155. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/database_execute_sql_response.py +0 -0
  156. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_classify_params.py +0 -0
  157. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_classify_response.py +0 -0
  158. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
  159. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_combine_response.py +0 -0
  160. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_create_from_splits_params.py +0 -0
  161. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_create_from_splits_response.py +0 -0
  162. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_extract_params.py +0 -0
  163. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_extract_response.py +0 -0
  164. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
  165. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_generate_csv_response.py +0 -0
  166. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
  167. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +0 -0
  168. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +0 -0
  169. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +0 -0
  170. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
  171. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_search_params.py +0 -0
  172. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_search_response.py +0 -0
  173. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_split_params.py +0 -0
  174. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_split_response.py +0 -0
  175. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
  176. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
  177. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_unzip_async_response.py +0 -0
  178. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
  179. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
  180. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
  181. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +0 -0
  182. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
  183. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +0 -0
  184. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
  185. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +0 -0
  186. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_split_params.py +0 -0
  187. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/legacy_split_response.py +0 -0
  188. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +0 -0
  189. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
  190. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
  191. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
  192. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/documents/template_render_document_response.py +0 -0
  193. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
  194. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
  195. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
  196. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/hie/adt_subscribe_params.py +0 -0
  197. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
  198. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
  199. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/hie/document_upload_params.py +0 -0
  200. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/__init__.py +0 -0
  201. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
  202. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
  203. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
  204. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
  205. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
  206. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
  207. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
  208. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +0 -0
  209. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +0 -0
  210. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +0 -0
  211. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
  212. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +0 -0
  213. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  214. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +0 -0
  215. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +0 -0
  216. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +0 -0
  217. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
  218. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
  219. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
  220. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
  221. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
  222. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
  223. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
  224. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +0 -0
  225. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +0 -0
  226. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/salesforce_run_crud_action_params.py +0 -0
  227. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +0 -0
  228. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
  229. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
  230. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/integrations/xcure_make_request_params.py +0 -0
  231. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/__init__.py +0 -0
  232. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/account_writeoff_params.py +0 -0
  233. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/account_writeoff_response.py +0 -0
  234. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/entry_post_params.py +0 -0
  235. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/entry_post_response.py +0 -0
  236. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/entry_reverse_params.py +0 -0
  237. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/ledger/entry_reverse_response.py +0 -0
  238. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
  239. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_companies_response.py +0 -0
  240. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
  241. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
  242. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_plans_response.py +0 -0
  243. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_list_response.py +0 -0
  244. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +0 -0
  245. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +0 -0
  246. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_cancel_response.py +0 -0
  247. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
  248. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_complete_response.py +0 -0
  249. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
  250. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
  251. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
  252. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_update_column_params.py +0 -0
  253. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_update_column_response.py +0 -0
  254. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
  255. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
  256. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
  257. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
  258. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
  259. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
  260. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
  261. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
  262. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
  263. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
  264. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
  265. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +0 -0
  266. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +0 -0
  267. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
  268. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +0 -0
  269. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
  270. {samplehc-0.13.0 → samplehc-0.14.0}/src/samplehc/types/v2/workflow_start_response.py +0 -0
  271. {samplehc-0.13.0 → samplehc-0.14.0}/tests/__init__.py +0 -0
  272. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/__init__.py +0 -0
  273. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/test_v1.py +0 -0
  274. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v1/__init__.py +0 -0
  275. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/__init__.py +0 -0
  276. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_agents/__init__.py +0 -0
  277. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_agents/runs/__init__.py +0 -0
  278. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_agents/runs/test_help_requests.py +0 -0
  279. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_agents/test_runs.py +0 -0
  280. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_automation/__init__.py +0 -0
  281. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/browser_automation/test_availity.py +0 -0
  282. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/clearinghouse/__init__.py +0 -0
  283. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -0
  284. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/clearinghouse/test_payers.py +0 -0
  285. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/documents/__init__.py +0 -0
  286. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
  287. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/documents/test_legacy.py +0 -0
  288. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
  289. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/documents/test_templates.py +0 -0
  290. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/hie/__init__.py +0 -0
  291. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/hie/test_adt.py +0 -0
  292. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
  293. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/__init__.py +0 -0
  294. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/bank/__init__.py +0 -0
  295. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
  296. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/glidian/__init__.py +0 -0
  297. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  298. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
  299. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
  300. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/kno2/__init__.py +0 -0
  301. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
  302. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
  303. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
  304. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/test_salesforce.py +0 -0
  305. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
  306. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/integrations/test_xcures.py +0 -0
  307. {samplehc-0.13.0/tests/api_resources/v2/ledger → samplehc-0.14.0/tests/api_resources/v2/integrations/wellsky}/__init__.py +0 -0
  308. {samplehc-0.13.0/tests/api_resources/v2/tasks → samplehc-0.14.0/tests/api_resources/v2/ledger}/__init__.py +0 -0
  309. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/ledger/test_account.py +0 -0
  310. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/ledger/test_entry.py +0 -0
  311. {samplehc-0.13.0/tests/api_resources/v2/workflow_runs → samplehc-0.14.0/tests/api_resources/v2/tasks}/__init__.py +0 -0
  312. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
  313. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_async_results.py +0 -0
  314. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_browser_agents.py +0 -0
  315. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
  316. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_communication.py +0 -0
  317. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_database.py +0 -0
  318. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_documents.py +0 -0
  319. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_events.py +0 -0
  320. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_policies.py +0 -0
  321. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_tasks.py +0 -0
  322. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
  323. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/test_workflows.py +0 -0
  324. {samplehc-0.13.0 → samplehc-0.14.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
  325. {samplehc-0.13.0 → samplehc-0.14.0}/tests/conftest.py +0 -0
  326. {samplehc-0.13.0 → samplehc-0.14.0}/tests/sample_file.txt +0 -0
  327. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_client.py +0 -0
  328. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_deepcopy.py +0 -0
  329. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_extract_files.py +0 -0
  330. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_files.py +0 -0
  331. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_models.py +0 -0
  332. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_qs.py +0 -0
  333. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_required_args.py +0 -0
  334. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_response.py +0 -0
  335. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_streaming.py +0 -0
  336. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_transform.py +0 -0
  337. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_utils/test_datetime_parse.py +0 -0
  338. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_utils/test_proxy.py +0 -0
  339. {samplehc-0.13.0 → samplehc-0.14.0}/tests/test_utils/test_typing.py +0 -0
  340. {samplehc-0.13.0 → samplehc-0.14.0}/tests/utils.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.14.0"
3
+ }
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.14.0 (2025-10-21)
4
+
5
+ Full Changelog: [v0.13.0...v0.14.0](https://github.com/samplehc/samplehc-python/compare/v0.13.0...v0.14.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([8ecb9c9](https://github.com/samplehc/samplehc-python/commit/8ecb9c965df2a9a19141479a9f387abd2cb5f8e7))
10
+
11
+
12
+ ### Chores
13
+
14
+ * bump `httpx-aiohttp` version to 0.1.9 ([86a6393](https://github.com/samplehc/samplehc-python/commit/86a6393b3937ce26c9dcef809722a73450780e4b))
15
+
3
16
  ## 0.13.0 (2025-10-17)
4
17
 
5
18
  Full Changelog: [v0.12.0...v0.13.0](https://github.com/samplehc/samplehc-python/compare/v0.12.0...v0.13.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.13.0
3
+ Version: 0.14.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
@@ -30,7 +30,7 @@ Requires-Dist: sniffio
30
30
  Requires-Dist: typing-extensions<5,>=4.10
31
31
  Provides-Extra: aiohttp
32
32
  Requires-Dist: aiohttp; extra == 'aiohttp'
33
- Requires-Dist: httpx-aiohttp>=0.1.8; extra == 'aiohttp'
33
+ Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
34
34
  Description-Content-Type: text/markdown
35
35
 
36
36
  # Sample Healthcare Python API library
@@ -311,6 +311,15 @@ Methods:
311
311
 
312
312
  - <code title="post /api/v2/integrations/snowflake/{slug}/query">client.v2.integrations.snowflake.<a href="./src/samplehc/resources/v2/integrations/snowflake.py">query</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/snowflake_query_params.py">params</a>) -> <a href="./src/samplehc/types/v2/integrations/snowflake_query_response.py">SnowflakeQueryResponse</a></code>
313
313
 
314
+ ### Wellsky
315
+
316
+ #### Patients
317
+
318
+ Methods:
319
+
320
+ - <code title="post /api/v2/integrations/wellsky/{slug}/patients">client.v2.integrations.wellsky.patients.<a href="./src/samplehc/resources/v2/integrations/wellsky/patients.py">add</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/wellsky/patient_add_params.py">params</a>) -> object</code>
321
+ - <code title="get /api/v2/integrations/wellsky/{slug}/patients">client.v2.integrations.wellsky.patients.<a href="./src/samplehc/resources/v2/integrations/wellsky/patients.py">search</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/wellsky/patient_search_params.py">params</a>) -> object</code>
322
+
314
323
  ### Bank
315
324
 
316
325
  #### Transactions
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "samplehc"
3
- version = "0.13.0"
3
+ version = "0.14.0"
4
4
  description = "The official Python library for the Sample Healthcare API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -39,7 +39,7 @@ Homepage = "https://github.com/samplehc/samplehc-python"
39
39
  Repository = "https://github.com/samplehc/samplehc-python"
40
40
 
41
41
  [project.optional-dependencies]
42
- aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"]
42
+ aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
43
43
 
44
44
  [tool.rye]
45
45
  managed = true
@@ -56,7 +56,7 @@ httpx==0.28.1
56
56
  # via httpx-aiohttp
57
57
  # via respx
58
58
  # via samplehc
59
- httpx-aiohttp==0.1.8
59
+ httpx-aiohttp==0.1.9
60
60
  # via samplehc
61
61
  idna==3.4
62
62
  # via anyio
@@ -43,7 +43,7 @@ httpcore==1.0.9
43
43
  httpx==0.28.1
44
44
  # via httpx-aiohttp
45
45
  # via samplehc
46
- httpx-aiohttp==0.1.8
46
+ httpx-aiohttp==0.1.9
47
47
  # via samplehc
48
48
  idna==3.4
49
49
  # via anyio
@@ -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.13.0" # x-release-please-version
4
+ __version__ = "0.14.0" # x-release-please-version
@@ -32,6 +32,14 @@ from .glidian import (
32
32
  GlidianResourceWithStreamingResponse,
33
33
  AsyncGlidianResourceWithStreamingResponse,
34
34
  )
35
+ from .wellsky import (
36
+ WellskyResource,
37
+ AsyncWellskyResource,
38
+ WellskyResourceWithRawResponse,
39
+ AsyncWellskyResourceWithRawResponse,
40
+ WellskyResourceWithStreamingResponse,
41
+ AsyncWellskyResourceWithStreamingResponse,
42
+ )
35
43
  from .careviso import (
36
44
  CarevisoResource,
37
45
  AsyncCarevisoResource,
@@ -72,6 +80,12 @@ __all__ = [
72
80
  "AsyncSnowflakeResourceWithRawResponse",
73
81
  "SnowflakeResourceWithStreamingResponse",
74
82
  "AsyncSnowflakeResourceWithStreamingResponse",
83
+ "WellskyResource",
84
+ "AsyncWellskyResource",
85
+ "WellskyResourceWithRawResponse",
86
+ "AsyncWellskyResourceWithRawResponse",
87
+ "WellskyResourceWithStreamingResponse",
88
+ "AsyncWellskyResourceWithStreamingResponse",
75
89
  "BankResource",
76
90
  "AsyncBankResource",
77
91
  "BankResourceWithRawResponse",
@@ -60,6 +60,14 @@ from .glidian.glidian import (
60
60
  GlidianResourceWithStreamingResponse,
61
61
  AsyncGlidianResourceWithStreamingResponse,
62
62
  )
63
+ from .wellsky.wellsky import (
64
+ WellskyResource,
65
+ AsyncWellskyResource,
66
+ WellskyResourceWithRawResponse,
67
+ AsyncWellskyResourceWithRawResponse,
68
+ WellskyResourceWithStreamingResponse,
69
+ AsyncWellskyResourceWithStreamingResponse,
70
+ )
63
71
 
64
72
  __all__ = ["IntegrationsResource", "AsyncIntegrationsResource"]
65
73
 
@@ -69,6 +77,10 @@ class IntegrationsResource(SyncAPIResource):
69
77
  def snowflake(self) -> SnowflakeResource:
70
78
  return SnowflakeResource(self._client)
71
79
 
80
+ @cached_property
81
+ def wellsky(self) -> WellskyResource:
82
+ return WellskyResource(self._client)
83
+
72
84
  @cached_property
73
85
  def bank(self) -> BankResource:
74
86
  return BankResource(self._client)
@@ -118,6 +130,10 @@ class AsyncIntegrationsResource(AsyncAPIResource):
118
130
  def snowflake(self) -> AsyncSnowflakeResource:
119
131
  return AsyncSnowflakeResource(self._client)
120
132
 
133
+ @cached_property
134
+ def wellsky(self) -> AsyncWellskyResource:
135
+ return AsyncWellskyResource(self._client)
136
+
121
137
  @cached_property
122
138
  def bank(self) -> AsyncBankResource:
123
139
  return AsyncBankResource(self._client)
@@ -170,6 +186,10 @@ class IntegrationsResourceWithRawResponse:
170
186
  def snowflake(self) -> SnowflakeResourceWithRawResponse:
171
187
  return SnowflakeResourceWithRawResponse(self._integrations.snowflake)
172
188
 
189
+ @cached_property
190
+ def wellsky(self) -> WellskyResourceWithRawResponse:
191
+ return WellskyResourceWithRawResponse(self._integrations.wellsky)
192
+
173
193
  @cached_property
174
194
  def bank(self) -> BankResourceWithRawResponse:
175
195
  return BankResourceWithRawResponse(self._integrations.bank)
@@ -203,6 +223,10 @@ class AsyncIntegrationsResourceWithRawResponse:
203
223
  def snowflake(self) -> AsyncSnowflakeResourceWithRawResponse:
204
224
  return AsyncSnowflakeResourceWithRawResponse(self._integrations.snowflake)
205
225
 
226
+ @cached_property
227
+ def wellsky(self) -> AsyncWellskyResourceWithRawResponse:
228
+ return AsyncWellskyResourceWithRawResponse(self._integrations.wellsky)
229
+
206
230
  @cached_property
207
231
  def bank(self) -> AsyncBankResourceWithRawResponse:
208
232
  return AsyncBankResourceWithRawResponse(self._integrations.bank)
@@ -236,6 +260,10 @@ class IntegrationsResourceWithStreamingResponse:
236
260
  def snowflake(self) -> SnowflakeResourceWithStreamingResponse:
237
261
  return SnowflakeResourceWithStreamingResponse(self._integrations.snowflake)
238
262
 
263
+ @cached_property
264
+ def wellsky(self) -> WellskyResourceWithStreamingResponse:
265
+ return WellskyResourceWithStreamingResponse(self._integrations.wellsky)
266
+
239
267
  @cached_property
240
268
  def bank(self) -> BankResourceWithStreamingResponse:
241
269
  return BankResourceWithStreamingResponse(self._integrations.bank)
@@ -269,6 +297,10 @@ class AsyncIntegrationsResourceWithStreamingResponse:
269
297
  def snowflake(self) -> AsyncSnowflakeResourceWithStreamingResponse:
270
298
  return AsyncSnowflakeResourceWithStreamingResponse(self._integrations.snowflake)
271
299
 
300
+ @cached_property
301
+ def wellsky(self) -> AsyncWellskyResourceWithStreamingResponse:
302
+ return AsyncWellskyResourceWithStreamingResponse(self._integrations.wellsky)
303
+
272
304
  @cached_property
273
305
  def bank(self) -> AsyncBankResourceWithStreamingResponse:
274
306
  return AsyncBankResourceWithStreamingResponse(self._integrations.bank)
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from .wellsky import (
4
+ WellskyResource,
5
+ AsyncWellskyResource,
6
+ WellskyResourceWithRawResponse,
7
+ AsyncWellskyResourceWithRawResponse,
8
+ WellskyResourceWithStreamingResponse,
9
+ AsyncWellskyResourceWithStreamingResponse,
10
+ )
11
+ from .patients import (
12
+ PatientsResource,
13
+ AsyncPatientsResource,
14
+ PatientsResourceWithRawResponse,
15
+ AsyncPatientsResourceWithRawResponse,
16
+ PatientsResourceWithStreamingResponse,
17
+ AsyncPatientsResourceWithStreamingResponse,
18
+ )
19
+
20
+ __all__ = [
21
+ "PatientsResource",
22
+ "AsyncPatientsResource",
23
+ "PatientsResourceWithRawResponse",
24
+ "AsyncPatientsResourceWithRawResponse",
25
+ "PatientsResourceWithStreamingResponse",
26
+ "AsyncPatientsResourceWithStreamingResponse",
27
+ "WellskyResource",
28
+ "AsyncWellskyResource",
29
+ "WellskyResourceWithRawResponse",
30
+ "AsyncWellskyResourceWithRawResponse",
31
+ "WellskyResourceWithStreamingResponse",
32
+ "AsyncWellskyResourceWithStreamingResponse",
33
+ ]
@@ -0,0 +1,324 @@
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 Body, Omit, Query, Headers, NotGiven, omit, not_given
10
+ from ....._utils import maybe_transform, async_maybe_transform
11
+ from ....._compat import cached_property
12
+ from ....._resource import SyncAPIResource, AsyncAPIResource
13
+ from ....._response import (
14
+ to_raw_response_wrapper,
15
+ to_streamed_response_wrapper,
16
+ async_to_raw_response_wrapper,
17
+ async_to_streamed_response_wrapper,
18
+ )
19
+ from ....._base_client import make_request_options
20
+ from .....types.v2.integrations.wellsky import patient_add_params, patient_search_params
21
+
22
+ __all__ = ["PatientsResource", "AsyncPatientsResource"]
23
+
24
+
25
+ class PatientsResource(SyncAPIResource):
26
+ @cached_property
27
+ def with_raw_response(self) -> PatientsResourceWithRawResponse:
28
+ """
29
+ This property can be used as a prefix for any HTTP method call to return
30
+ the raw response object instead of the parsed content.
31
+
32
+ For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
33
+ """
34
+ return PatientsResourceWithRawResponse(self)
35
+
36
+ @cached_property
37
+ def with_streaming_response(self) -> PatientsResourceWithStreamingResponse:
38
+ """
39
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
40
+
41
+ For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
42
+ """
43
+ return PatientsResourceWithStreamingResponse(self)
44
+
45
+ def add(
46
+ self,
47
+ slug: str,
48
+ *,
49
+ data: Dict[str, object],
50
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
51
+ # The extra values given here take precedence over values defined on the client or passed to this method.
52
+ extra_headers: Headers | None = None,
53
+ extra_query: Query | None = None,
54
+ extra_body: Body | None = None,
55
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
56
+ ) -> object:
57
+ """
58
+ Add a patient to WellSky.
59
+
60
+ Args:
61
+ data: The data to add the patient to WellSky.
62
+
63
+ extra_headers: Send extra headers
64
+
65
+ extra_query: Add additional query parameters to the request
66
+
67
+ extra_body: Add additional JSON properties to the request
68
+
69
+ timeout: Override the client-level default timeout for this request, in seconds
70
+ """
71
+ if not slug:
72
+ raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
73
+ return self._post(
74
+ f"/api/v2/integrations/wellsky/{slug}/patients",
75
+ body=maybe_transform({"data": data}, patient_add_params.PatientAddParams),
76
+ options=make_request_options(
77
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
78
+ ),
79
+ cast_to=object,
80
+ )
81
+
82
+ def search(
83
+ self,
84
+ slug: str,
85
+ *,
86
+ reqdelete: str | Omit = omit,
87
+ reqdispin: str | Omit = omit,
88
+ reqlvl6_in: str | Omit = omit,
89
+ reqnamein: str | Omit = omit,
90
+ reqnonprosp: str | Omit = omit,
91
+ reqprosp: str | Omit = omit,
92
+ reqsortin: str | Omit = omit,
93
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
94
+ # The extra values given here take precedence over values defined on the client or passed to this method.
95
+ extra_headers: Headers | None = None,
96
+ extra_query: Query | None = None,
97
+ extra_body: Body | None = None,
98
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
99
+ ) -> object:
100
+ """
101
+ Search for patients in WellSky.
102
+
103
+ Args:
104
+ reqdelete: Delete flag (Y/N)
105
+
106
+ reqdispin: Disposition filter
107
+
108
+ reqlvl6_in: Facility ID
109
+
110
+ reqnamein: Patient name to search
111
+
112
+ reqnonprosp: Non-prospect flag (Y/N)
113
+
114
+ reqprosp: Prospect flag (Y/N)
115
+
116
+ reqsortin: Sort field
117
+
118
+ extra_headers: Send extra headers
119
+
120
+ extra_query: Add additional query parameters to the request
121
+
122
+ extra_body: Add additional JSON properties to the request
123
+
124
+ timeout: Override the client-level default timeout for this request, in seconds
125
+ """
126
+ if not slug:
127
+ raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
128
+ return self._get(
129
+ f"/api/v2/integrations/wellsky/{slug}/patients",
130
+ options=make_request_options(
131
+ extra_headers=extra_headers,
132
+ extra_query=extra_query,
133
+ extra_body=extra_body,
134
+ timeout=timeout,
135
+ query=maybe_transform(
136
+ {
137
+ "reqdelete": reqdelete,
138
+ "reqdispin": reqdispin,
139
+ "reqlvl6_in": reqlvl6_in,
140
+ "reqnamein": reqnamein,
141
+ "reqnonprosp": reqnonprosp,
142
+ "reqprosp": reqprosp,
143
+ "reqsortin": reqsortin,
144
+ },
145
+ patient_search_params.PatientSearchParams,
146
+ ),
147
+ ),
148
+ cast_to=object,
149
+ )
150
+
151
+
152
+ class AsyncPatientsResource(AsyncAPIResource):
153
+ @cached_property
154
+ def with_raw_response(self) -> AsyncPatientsResourceWithRawResponse:
155
+ """
156
+ This property can be used as a prefix for any HTTP method call to return
157
+ the raw response object instead of the parsed content.
158
+
159
+ For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
160
+ """
161
+ return AsyncPatientsResourceWithRawResponse(self)
162
+
163
+ @cached_property
164
+ def with_streaming_response(self) -> AsyncPatientsResourceWithStreamingResponse:
165
+ """
166
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
167
+
168
+ For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
169
+ """
170
+ return AsyncPatientsResourceWithStreamingResponse(self)
171
+
172
+ async def add(
173
+ self,
174
+ slug: str,
175
+ *,
176
+ data: Dict[str, object],
177
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
178
+ # The extra values given here take precedence over values defined on the client or passed to this method.
179
+ extra_headers: Headers | None = None,
180
+ extra_query: Query | None = None,
181
+ extra_body: Body | None = None,
182
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
183
+ ) -> object:
184
+ """
185
+ Add a patient to WellSky.
186
+
187
+ Args:
188
+ data: The data to add the patient to WellSky.
189
+
190
+ extra_headers: Send extra headers
191
+
192
+ extra_query: Add additional query parameters to the request
193
+
194
+ extra_body: Add additional JSON properties to the request
195
+
196
+ timeout: Override the client-level default timeout for this request, in seconds
197
+ """
198
+ if not slug:
199
+ raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
200
+ return await self._post(
201
+ f"/api/v2/integrations/wellsky/{slug}/patients",
202
+ body=await async_maybe_transform({"data": data}, patient_add_params.PatientAddParams),
203
+ options=make_request_options(
204
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
205
+ ),
206
+ cast_to=object,
207
+ )
208
+
209
+ async def search(
210
+ self,
211
+ slug: str,
212
+ *,
213
+ reqdelete: str | Omit = omit,
214
+ reqdispin: str | Omit = omit,
215
+ reqlvl6_in: str | Omit = omit,
216
+ reqnamein: str | Omit = omit,
217
+ reqnonprosp: str | Omit = omit,
218
+ reqprosp: str | Omit = omit,
219
+ reqsortin: str | Omit = omit,
220
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
221
+ # The extra values given here take precedence over values defined on the client or passed to this method.
222
+ extra_headers: Headers | None = None,
223
+ extra_query: Query | None = None,
224
+ extra_body: Body | None = None,
225
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
226
+ ) -> object:
227
+ """
228
+ Search for patients in WellSky.
229
+
230
+ Args:
231
+ reqdelete: Delete flag (Y/N)
232
+
233
+ reqdispin: Disposition filter
234
+
235
+ reqlvl6_in: Facility ID
236
+
237
+ reqnamein: Patient name to search
238
+
239
+ reqnonprosp: Non-prospect flag (Y/N)
240
+
241
+ reqprosp: Prospect flag (Y/N)
242
+
243
+ reqsortin: Sort field
244
+
245
+ extra_headers: Send extra headers
246
+
247
+ extra_query: Add additional query parameters to the request
248
+
249
+ extra_body: Add additional JSON properties to the request
250
+
251
+ timeout: Override the client-level default timeout for this request, in seconds
252
+ """
253
+ if not slug:
254
+ raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
255
+ return await self._get(
256
+ f"/api/v2/integrations/wellsky/{slug}/patients",
257
+ options=make_request_options(
258
+ extra_headers=extra_headers,
259
+ extra_query=extra_query,
260
+ extra_body=extra_body,
261
+ timeout=timeout,
262
+ query=await async_maybe_transform(
263
+ {
264
+ "reqdelete": reqdelete,
265
+ "reqdispin": reqdispin,
266
+ "reqlvl6_in": reqlvl6_in,
267
+ "reqnamein": reqnamein,
268
+ "reqnonprosp": reqnonprosp,
269
+ "reqprosp": reqprosp,
270
+ "reqsortin": reqsortin,
271
+ },
272
+ patient_search_params.PatientSearchParams,
273
+ ),
274
+ ),
275
+ cast_to=object,
276
+ )
277
+
278
+
279
+ class PatientsResourceWithRawResponse:
280
+ def __init__(self, patients: PatientsResource) -> None:
281
+ self._patients = patients
282
+
283
+ self.add = to_raw_response_wrapper(
284
+ patients.add,
285
+ )
286
+ self.search = to_raw_response_wrapper(
287
+ patients.search,
288
+ )
289
+
290
+
291
+ class AsyncPatientsResourceWithRawResponse:
292
+ def __init__(self, patients: AsyncPatientsResource) -> None:
293
+ self._patients = patients
294
+
295
+ self.add = async_to_raw_response_wrapper(
296
+ patients.add,
297
+ )
298
+ self.search = async_to_raw_response_wrapper(
299
+ patients.search,
300
+ )
301
+
302
+
303
+ class PatientsResourceWithStreamingResponse:
304
+ def __init__(self, patients: PatientsResource) -> None:
305
+ self._patients = patients
306
+
307
+ self.add = to_streamed_response_wrapper(
308
+ patients.add,
309
+ )
310
+ self.search = to_streamed_response_wrapper(
311
+ patients.search,
312
+ )
313
+
314
+
315
+ class AsyncPatientsResourceWithStreamingResponse:
316
+ def __init__(self, patients: AsyncPatientsResource) -> None:
317
+ self._patients = patients
318
+
319
+ self.add = async_to_streamed_response_wrapper(
320
+ patients.add,
321
+ )
322
+ self.search = async_to_streamed_response_wrapper(
323
+ patients.search,
324
+ )
@@ -0,0 +1,102 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from .patients import (
6
+ PatientsResource,
7
+ AsyncPatientsResource,
8
+ PatientsResourceWithRawResponse,
9
+ AsyncPatientsResourceWithRawResponse,
10
+ PatientsResourceWithStreamingResponse,
11
+ AsyncPatientsResourceWithStreamingResponse,
12
+ )
13
+ from ....._compat import cached_property
14
+ from ....._resource import SyncAPIResource, AsyncAPIResource
15
+
16
+ __all__ = ["WellskyResource", "AsyncWellskyResource"]
17
+
18
+
19
+ class WellskyResource(SyncAPIResource):
20
+ @cached_property
21
+ def patients(self) -> PatientsResource:
22
+ return PatientsResource(self._client)
23
+
24
+ @cached_property
25
+ def with_raw_response(self) -> WellskyResourceWithRawResponse:
26
+ """
27
+ This property can be used as a prefix for any HTTP method call to return
28
+ the raw response object instead of the parsed content.
29
+
30
+ For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
31
+ """
32
+ return WellskyResourceWithRawResponse(self)
33
+
34
+ @cached_property
35
+ def with_streaming_response(self) -> WellskyResourceWithStreamingResponse:
36
+ """
37
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
38
+
39
+ For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
40
+ """
41
+ return WellskyResourceWithStreamingResponse(self)
42
+
43
+
44
+ class AsyncWellskyResource(AsyncAPIResource):
45
+ @cached_property
46
+ def patients(self) -> AsyncPatientsResource:
47
+ return AsyncPatientsResource(self._client)
48
+
49
+ @cached_property
50
+ def with_raw_response(self) -> AsyncWellskyResourceWithRawResponse:
51
+ """
52
+ This property can be used as a prefix for any HTTP method call to return
53
+ the raw response object instead of the parsed content.
54
+
55
+ For more information, see https://www.github.com/samplehc/samplehc-python#accessing-raw-response-data-eg-headers
56
+ """
57
+ return AsyncWellskyResourceWithRawResponse(self)
58
+
59
+ @cached_property
60
+ def with_streaming_response(self) -> AsyncWellskyResourceWithStreamingResponse:
61
+ """
62
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
63
+
64
+ For more information, see https://www.github.com/samplehc/samplehc-python#with_streaming_response
65
+ """
66
+ return AsyncWellskyResourceWithStreamingResponse(self)
67
+
68
+
69
+ class WellskyResourceWithRawResponse:
70
+ def __init__(self, wellsky: WellskyResource) -> None:
71
+ self._wellsky = wellsky
72
+
73
+ @cached_property
74
+ def patients(self) -> PatientsResourceWithRawResponse:
75
+ return PatientsResourceWithRawResponse(self._wellsky.patients)
76
+
77
+
78
+ class AsyncWellskyResourceWithRawResponse:
79
+ def __init__(self, wellsky: AsyncWellskyResource) -> None:
80
+ self._wellsky = wellsky
81
+
82
+ @cached_property
83
+ def patients(self) -> AsyncPatientsResourceWithRawResponse:
84
+ return AsyncPatientsResourceWithRawResponse(self._wellsky.patients)
85
+
86
+
87
+ class WellskyResourceWithStreamingResponse:
88
+ def __init__(self, wellsky: WellskyResource) -> None:
89
+ self._wellsky = wellsky
90
+
91
+ @cached_property
92
+ def patients(self) -> PatientsResourceWithStreamingResponse:
93
+ return PatientsResourceWithStreamingResponse(self._wellsky.patients)
94
+
95
+
96
+ class AsyncWellskyResourceWithStreamingResponse:
97
+ def __init__(self, wellsky: AsyncWellskyResource) -> None:
98
+ self._wellsky = wellsky
99
+
100
+ @cached_property
101
+ def patients(self) -> AsyncPatientsResourceWithStreamingResponse:
102
+ return AsyncPatientsResourceWithStreamingResponse(self._wellsky.patients)
@@ -0,0 +1,6 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from .patient_add_params import PatientAddParams as PatientAddParams
6
+ from .patient_search_params import PatientSearchParams as PatientSearchParams