samplehc 0.10.0__tar.gz → 0.12.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 (378) hide show
  1. samplehc-0.12.0/.release-please-manifest.json +3 -0
  2. {samplehc-0.10.0 → samplehc-0.12.0}/CHANGELOG.md +51 -0
  3. {samplehc-0.10.0 → samplehc-0.12.0}/PKG-INFO +1 -1
  4. {samplehc-0.10.0 → samplehc-0.12.0}/api.md +41 -90
  5. {samplehc-0.10.0 → samplehc-0.12.0}/pyproject.toml +53 -2
  6. {samplehc-0.10.0 → samplehc-0.12.0}/requirements-dev.lock +5 -3
  7. {samplehc-0.10.0 → samplehc-0.12.0}/requirements.lock +5 -2
  8. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/__init__.py +3 -1
  9. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_base_client.py +12 -12
  10. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_client.py +8 -8
  11. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_compat.py +48 -48
  12. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_models.py +50 -44
  13. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_qs.py +7 -7
  14. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_types.py +53 -12
  15. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/__init__.py +9 -2
  16. samplehc-0.12.0/src/samplehc/_utils/_compat.py +45 -0
  17. samplehc-0.12.0/src/samplehc/_utils/_datetime_parse.py +136 -0
  18. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_transform.py +13 -3
  19. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_typing.py +6 -1
  20. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_utils.py +4 -5
  21. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_version.py +1 -1
  22. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v1/v1.py +9 -9
  23. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/async_results.py +13 -13
  24. samplehc-0.12.0/src/samplehc/resources/v2/browser_agents/__init__.py +33 -0
  25. {samplehc-0.10.0/src/samplehc/resources/v2 → samplehc-0.12.0/src/samplehc/resources/v2/browser_agents}/browser_agents.py +44 -12
  26. samplehc-0.12.0/src/samplehc/resources/v2/browser_agents/runs/__init__.py +33 -0
  27. samplehc-0.12.0/src/samplehc/resources/v2/browser_agents/runs/help_requests.py +191 -0
  28. samplehc-0.12.0/src/samplehc/resources/v2/browser_agents/runs/runs.py +102 -0
  29. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/browser_automation/availity.py +3 -3
  30. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/clearinghouse/claim.py +29 -29
  31. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +36 -36
  32. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/clearinghouse/payers.py +5 -5
  33. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/communication.py +29 -29
  34. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/database.py +5 -5
  35. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/documents.py +152 -37
  36. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/formats.py +3 -3
  37. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/legacy.py +91 -6
  38. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/pdf_template.py +3 -3
  39. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/templates.py +27 -27
  40. {samplehc-0.10.0/src/samplehc/resources/v2/events → samplehc-0.12.0/src/samplehc/resources/v2}/events.py +14 -46
  41. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/hie/adt.py +7 -7
  42. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/hie/documents.py +15 -15
  43. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/__init__.py +28 -0
  44. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +5 -5
  45. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/careviso.py +36 -36
  46. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +13 -13
  47. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +5 -5
  48. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +19 -19
  49. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/integrations.py +64 -0
  50. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +5 -5
  51. samplehc-0.12.0/src/samplehc/resources/v2/integrations/salesforce.py +193 -0
  52. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/snowflake.py +3 -3
  53. {samplehc-0.10.0/src/samplehc/resources/v2/events → samplehc-0.12.0/src/samplehc/resources/v2}/integrations/xcures.py +13 -13
  54. samplehc-0.12.0/src/samplehc/resources/v2/ledger/__init__.py +47 -0
  55. samplehc-0.10.0/src/samplehc/resources/v2/ledger/orders.py → samplehc-0.12.0/src/samplehc/resources/v2/ledger/account.py +123 -86
  56. samplehc-0.12.0/src/samplehc/resources/v2/ledger/entry.py +381 -0
  57. samplehc-0.12.0/src/samplehc/resources/v2/ledger/ledger.py +134 -0
  58. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/policies.py +47 -47
  59. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/tasks/state.py +7 -7
  60. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/tasks/tasks.py +15 -15
  61. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/v2.py +16 -16
  62. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/workflow_runs/step.py +3 -3
  63. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +11 -11
  64. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/workflows.py +13 -13
  65. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/__init__.py +1 -28
  66. samplehc-0.12.0/src/samplehc/types/v2/browser_agents/runs/__init__.py +6 -0
  67. samplehc-0.12.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +18 -0
  68. samplehc-0.12.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +28 -0
  69. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +10 -9
  70. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +3 -2
  71. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +2 -2
  72. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/communication_send_letter_params.py +4 -3
  73. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_classify_params.py +3 -2
  74. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_extract_params.py +4 -1
  75. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_generate_csv_params.py +3 -2
  76. samplehc-0.12.0/src/samplehc/types/v2/document_split_params.py +35 -0
  77. samplehc-0.12.0/src/samplehc/types/v2/document_unzip_async_response.py +12 -0
  78. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/__init__.py +2 -0
  79. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +8 -7
  80. samplehc-0.10.0/src/samplehc/types/v2/document_split_params.py → samplehc-0.12.0/src/samplehc/types/v2/documents/legacy_split_params.py +3 -3
  81. samplehc-0.12.0/src/samplehc/types/v2/documents/legacy_split_response.py +12 -0
  82. samplehc-0.12.0/src/samplehc/types/v2/documents/template_render_document_params.py +31 -0
  83. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/__init__.py +2 -0
  84. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +6 -5
  85. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +3 -2
  86. samplehc-0.12.0/src/samplehc/types/v2/integrations/salesforce_run_crud_action_params.py +22 -0
  87. samplehc-0.12.0/src/samplehc/types/v2/ledger/__init__.py +10 -0
  88. samplehc-0.12.0/src/samplehc/types/v2/ledger/account_writeoff_params.py +23 -0
  89. samplehc-0.12.0/src/samplehc/types/v2/ledger/account_writeoff_response.py +12 -0
  90. samplehc-0.12.0/src/samplehc/types/v2/ledger/entry_post_params.py +60 -0
  91. samplehc-0.12.0/src/samplehc/types/v2/ledger/entry_post_response.py +10 -0
  92. samplehc-0.12.0/src/samplehc/types/v2/ledger/entry_reverse_params.py +18 -0
  93. samplehc-0.12.0/src/samplehc/types/v2/ledger/entry_reverse_response.py +10 -0
  94. samplehc-0.12.0/tests/api_resources/v2/browser_agents/runs/test_help_requests.py +164 -0
  95. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/documents/test_legacy.py +87 -0
  96. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/documents/test_templates.py +42 -6
  97. samplehc-0.12.0/tests/api_resources/v2/integrations/test_salesforce.py +147 -0
  98. {samplehc-0.10.0/tests/api_resources/v2/events → samplehc-0.12.0/tests/api_resources/v2}/integrations/test_xcures.py +10 -10
  99. samplehc-0.12.0/tests/api_resources/v2/ledger/test_account.py +266 -0
  100. samplehc-0.12.0/tests/api_resources/v2/ledger/test_entry.py +248 -0
  101. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_documents.py +161 -0
  102. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_client.py +6 -47
  103. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_models.py +24 -24
  104. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_transform.py +17 -10
  105. samplehc-0.12.0/tests/test_utils/test_datetime_parse.py +110 -0
  106. {samplehc-0.10.0 → samplehc-0.12.0}/tests/utils.py +13 -5
  107. samplehc-0.10.0/.release-please-manifest.json +0 -3
  108. samplehc-0.10.0/mypy.ini +0 -50
  109. samplehc-0.10.0/src/samplehc/resources/v2/events/__init__.py +0 -33
  110. samplehc-0.10.0/src/samplehc/resources/v2/events/integrations/__init__.py +0 -33
  111. samplehc-0.10.0/src/samplehc/resources/v2/events/integrations/integrations.py +0 -102
  112. samplehc-0.10.0/src/samplehc/resources/v2/ledger/__init__.py +0 -75
  113. samplehc-0.10.0/src/samplehc/resources/v2/ledger/institutions/__init__.py +0 -33
  114. samplehc-0.10.0/src/samplehc/resources/v2/ledger/institutions/institutions.py +0 -258
  115. samplehc-0.10.0/src/samplehc/resources/v2/ledger/institutions/orders.py +0 -169
  116. samplehc-0.10.0/src/samplehc/resources/v2/ledger/insurance.py +0 -141
  117. samplehc-0.10.0/src/samplehc/resources/v2/ledger/ledger.py +0 -1656
  118. samplehc-0.10.0/src/samplehc/resources/v2/ledger/patients.py +0 -141
  119. samplehc-0.10.0/src/samplehc/types/v2/documents/template_render_document_params.py +0 -19
  120. samplehc-0.10.0/src/samplehc/types/v2/events/integrations/__init__.py +0 -5
  121. samplehc-0.10.0/src/samplehc/types/v2/ledger/__init__.py +0 -21
  122. samplehc-0.10.0/src/samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py +0 -25
  123. samplehc-0.10.0/src/samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py +0 -25
  124. samplehc-0.10.0/src/samplehc/types/v2/ledger/institutions/__init__.py +0 -5
  125. samplehc-0.10.0/src/samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py +0 -12
  126. samplehc-0.10.0/src/samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py +0 -25
  127. samplehc-0.10.0/src/samplehc/types/v2/ledger/order_retrieve_balances_response.py +0 -31
  128. samplehc-0.10.0/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py +0 -15
  129. samplehc-0.10.0/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py +0 -38
  130. samplehc-0.10.0/src/samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py +0 -22
  131. samplehc-0.10.0/src/samplehc/types/v2/ledger_assign_invoice_params.py +0 -34
  132. samplehc-0.10.0/src/samplehc/types/v2/ledger_assign_invoice_response.py +0 -12
  133. samplehc-0.10.0/src/samplehc/types/v2/ledger_claim_adjustment_params.py +0 -34
  134. samplehc-0.10.0/src/samplehc/types/v2/ledger_claim_adjustment_response.py +0 -12
  135. samplehc-0.10.0/src/samplehc/types/v2/ledger_claim_payment_params.py +0 -34
  136. samplehc-0.10.0/src/samplehc/types/v2/ledger_claim_payment_response.py +0 -12
  137. samplehc-0.10.0/src/samplehc/types/v2/ledger_institution_adjustment_params.py +0 -31
  138. samplehc-0.10.0/src/samplehc/types/v2/ledger_institution_adjustment_response.py +0 -12
  139. samplehc-0.10.0/src/samplehc/types/v2/ledger_institution_payment_params.py +0 -31
  140. samplehc-0.10.0/src/samplehc/types/v2/ledger_institution_payment_response.py +0 -12
  141. samplehc-0.10.0/src/samplehc/types/v2/ledger_new_order_params.py +0 -22
  142. samplehc-0.10.0/src/samplehc/types/v2/ledger_new_order_response.py +0 -12
  143. samplehc-0.10.0/src/samplehc/types/v2/ledger_order_writeoff_params.py +0 -28
  144. samplehc-0.10.0/src/samplehc/types/v2/ledger_order_writeoff_response.py +0 -12
  145. samplehc-0.10.0/src/samplehc/types/v2/ledger_patient_adjustment_params.py +0 -31
  146. samplehc-0.10.0/src/samplehc/types/v2/ledger_patient_adjustment_response.py +0 -12
  147. samplehc-0.10.0/src/samplehc/types/v2/ledger_patient_payment_params.py +0 -28
  148. samplehc-0.10.0/src/samplehc/types/v2/ledger_patient_payment_response.py +0 -12
  149. samplehc-0.10.0/src/samplehc/types/v2/ledger_post_remittance_accepted_params.py +0 -37
  150. samplehc-0.10.0/src/samplehc/types/v2/ledger_post_remittance_accepted_response.py +0 -12
  151. samplehc-0.10.0/src/samplehc/types/v2/ledger_reverse_entry_params.py +0 -12
  152. samplehc-0.10.0/src/samplehc/types/v2/ledger_reverse_entry_response.py +0 -12
  153. samplehc-0.10.0/tests/api_resources/v2/ledger/institutions/test_orders.py +0 -128
  154. samplehc-0.10.0/tests/api_resources/v2/ledger/test_institutions.py +0 -167
  155. samplehc-0.10.0/tests/api_resources/v2/ledger/test_insurance.py +0 -80
  156. samplehc-0.10.0/tests/api_resources/v2/ledger/test_orders.py +0 -179
  157. samplehc-0.10.0/tests/api_resources/v2/ledger/test_patients.py +0 -80
  158. samplehc-0.10.0/tests/api_resources/v2/test_ledger.py +0 -1285
  159. samplehc-0.10.0/tests/api_resources/v2/workflow_runs/__init__.py +0 -1
  160. {samplehc-0.10.0 → samplehc-0.12.0}/.gitignore +0 -0
  161. {samplehc-0.10.0 → samplehc-0.12.0}/CONTRIBUTING.md +0 -0
  162. {samplehc-0.10.0 → samplehc-0.12.0}/LICENSE +0 -0
  163. {samplehc-0.10.0 → samplehc-0.12.0}/README.md +0 -0
  164. {samplehc-0.10.0 → samplehc-0.12.0}/SECURITY.md +0 -0
  165. {samplehc-0.10.0 → samplehc-0.12.0}/bin/check-release-environment +0 -0
  166. {samplehc-0.10.0 → samplehc-0.12.0}/bin/publish-pypi +0 -0
  167. {samplehc-0.10.0 → samplehc-0.12.0}/examples/.keep +0 -0
  168. {samplehc-0.10.0 → samplehc-0.12.0}/noxfile.py +0 -0
  169. {samplehc-0.10.0 → samplehc-0.12.0}/release-please-config.json +0 -0
  170. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_constants.py +0 -0
  171. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_exceptions.py +0 -0
  172. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_files.py +0 -0
  173. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_resource.py +0 -0
  174. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_response.py +0 -0
  175. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_streaming.py +0 -0
  176. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_logs.py +0 -0
  177. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_proxy.py +0 -0
  178. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_reflection.py +0 -0
  179. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
  180. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_streams.py +0 -0
  181. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/_utils/_sync.py +0 -0
  182. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/lib/.keep +0 -0
  183. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/py.typed +0 -0
  184. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/__init__.py +0 -0
  185. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v1/__init__.py +0 -0
  186. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/__init__.py +0 -0
  187. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/browser_automation/__init__.py +0 -0
  188. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -0
  189. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
  190. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
  191. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
  192. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
  193. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
  194. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
  195. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
  196. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  197. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
  198. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
  199. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
  200. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
  201. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/__init__.py +0 -0
  202. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v1/__init__.py +0 -0
  203. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
  204. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v1_query_audit_logs_response.py +0 -0
  205. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
  206. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
  207. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
  208. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
  209. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
  210. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -0
  211. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/browser_agent_invoke_response.py +0 -0
  212. {samplehc-0.10.0/src/samplehc/types/v2/events → samplehc-0.12.0/src/samplehc/types/v2/browser_agents}/__init__.py +0 -0
  213. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/browser_automation/__init__.py +0 -0
  214. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -0
  215. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -0
  216. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
  217. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +0 -0
  218. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +0 -0
  219. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/payer_search_params.py +0 -0
  220. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse/payer_search_response.py +0 -0
  221. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_check_claim_status_params.py +0 -0
  222. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +0 -0
  223. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
  224. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
  225. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +0 -0
  226. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
  227. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/communication_send_fax_params.py +0 -0
  228. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/communication_send_fax_response.py +0 -0
  229. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/communication_send_letter_response.py +0 -0
  230. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
  231. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/database_execute_sql_response.py +0 -0
  232. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_classify_response.py +0 -0
  233. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
  234. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_combine_response.py +0 -0
  235. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_create_from_splits_params.py +0 -0
  236. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_create_from_splits_response.py +0 -0
  237. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_extract_response.py +0 -0
  238. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_generate_csv_response.py +0 -0
  239. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
  240. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +0 -0
  241. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +0 -0
  242. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +0 -0
  243. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
  244. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_search_params.py +0 -0
  245. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_search_response.py +0 -0
  246. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_split_response.py +0 -0
  247. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
  248. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
  249. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
  250. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
  251. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +0 -0
  252. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +0 -0
  253. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
  254. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +0 -0
  255. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +0 -0
  256. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
  257. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
  258. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/documents/template_render_document_response.py +0 -0
  259. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
  260. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
  261. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
  262. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/hie/adt_subscribe_params.py +0 -0
  263. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
  264. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
  265. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/hie/document_upload_params.py +0 -0
  266. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
  267. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
  268. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
  269. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
  270. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
  271. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
  272. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +0 -0
  273. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +0 -0
  274. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +0 -0
  275. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
  276. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +0 -0
  277. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  278. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +0 -0
  279. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +0 -0
  280. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
  281. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
  282. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
  283. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
  284. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
  285. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
  286. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
  287. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +0 -0
  288. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +0 -0
  289. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
  290. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
  291. {samplehc-0.10.0/src/samplehc/types/v2/events → samplehc-0.12.0/src/samplehc/types/v2}/integrations/xcure_make_request_params.py +0 -0
  292. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
  293. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_companies_response.py +0 -0
  294. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
  295. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
  296. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_plans_response.py +0 -0
  297. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_list_response.py +0 -0
  298. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +0 -0
  299. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +0 -0
  300. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_cancel_response.py +0 -0
  301. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
  302. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_complete_response.py +0 -0
  303. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
  304. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
  305. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
  306. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
  307. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
  308. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
  309. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
  310. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
  311. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
  312. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
  313. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
  314. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
  315. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
  316. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
  317. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +0 -0
  318. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +0 -0
  319. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
  320. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +0 -0
  321. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
  322. {samplehc-0.10.0 → samplehc-0.12.0}/src/samplehc/types/v2/workflow_start_response.py +0 -0
  323. {samplehc-0.10.0 → samplehc-0.12.0}/tests/__init__.py +0 -0
  324. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/__init__.py +0 -0
  325. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/test_v1.py +0 -0
  326. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v1/__init__.py +0 -0
  327. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/__init__.py +0 -0
  328. {samplehc-0.10.0/tests/api_resources/v2/browser_automation → samplehc-0.12.0/tests/api_resources/v2/browser_agents}/__init__.py +0 -0
  329. {samplehc-0.10.0/tests/api_resources/v2/clearinghouse → samplehc-0.12.0/tests/api_resources/v2/browser_agents/runs}/__init__.py +0 -0
  330. {samplehc-0.10.0/tests/api_resources/v2/documents → samplehc-0.12.0/tests/api_resources/v2/browser_automation}/__init__.py +0 -0
  331. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/browser_automation/test_availity.py +0 -0
  332. {samplehc-0.10.0/tests/api_resources/v2/events → samplehc-0.12.0/tests/api_resources/v2/clearinghouse}/__init__.py +0 -0
  333. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -0
  334. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/clearinghouse/test_payers.py +0 -0
  335. {samplehc-0.10.0/tests/api_resources/v2/events/integrations → samplehc-0.12.0/tests/api_resources/v2/documents}/__init__.py +0 -0
  336. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
  337. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
  338. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/hie/__init__.py +0 -0
  339. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/hie/test_adt.py +0 -0
  340. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
  341. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/__init__.py +0 -0
  342. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/bank/__init__.py +0 -0
  343. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
  344. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/glidian/__init__.py +0 -0
  345. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
  346. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
  347. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
  348. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/kno2/__init__.py +0 -0
  349. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
  350. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
  351. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
  352. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
  353. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/ledger/__init__.py +0 -0
  354. {samplehc-0.10.0/tests/api_resources/v2/ledger/institutions → samplehc-0.12.0/tests/api_resources/v2/tasks}/__init__.py +0 -0
  355. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
  356. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_async_results.py +0 -0
  357. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_browser_agents.py +0 -0
  358. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
  359. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_communication.py +0 -0
  360. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_database.py +0 -0
  361. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_events.py +0 -0
  362. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_policies.py +0 -0
  363. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_tasks.py +0 -0
  364. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
  365. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/test_workflows.py +0 -0
  366. {samplehc-0.10.0/tests/api_resources/v2/tasks → samplehc-0.12.0/tests/api_resources/v2/workflow_runs}/__init__.py +0 -0
  367. {samplehc-0.10.0 → samplehc-0.12.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
  368. {samplehc-0.10.0 → samplehc-0.12.0}/tests/conftest.py +0 -0
  369. {samplehc-0.10.0 → samplehc-0.12.0}/tests/sample_file.txt +0 -0
  370. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_deepcopy.py +0 -0
  371. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_extract_files.py +0 -0
  372. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_files.py +0 -0
  373. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_qs.py +0 -0
  374. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_required_args.py +0 -0
  375. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_response.py +0 -0
  376. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_streaming.py +0 -0
  377. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_utils/test_proxy.py +0 -0
  378. {samplehc-0.10.0 → samplehc-0.12.0}/tests/test_utils/test_typing.py +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.12.0"
3
+ }
@@ -1,5 +1,56 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.12.0 (2025-10-07)
4
+
5
+ Full Changelog: [v0.11.0...v0.12.0](https://github.com/samplehc/samplehc-python/compare/v0.11.0...v0.12.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([b25058a](https://github.com/samplehc/samplehc-python/commit/b25058a7abb9371f27c89ba87a5cc47fa88e634f))
10
+ * **api:** api update ([4584da6](https://github.com/samplehc/samplehc-python/commit/4584da6e80c69001ad613b86d502f2f8313224d8))
11
+ * **api:** api update ([713ce1d](https://github.com/samplehc/samplehc-python/commit/713ce1d034930c66c4412891fe1bc1462e0eeb13))
12
+ * **api:** api update ([dffb82c](https://github.com/samplehc/samplehc-python/commit/dffb82c05cccc47781309e20ac2aad7dbc2d37e7))
13
+ * **api:** api update ([c60ab57](https://github.com/samplehc/samplehc-python/commit/c60ab57ae33e636fc101897afe71825a07ace84d))
14
+ * **api:** api update ([f980db8](https://github.com/samplehc/samplehc-python/commit/f980db8377e060bddd953bf57fc9f53b91d239d1))
15
+ * **api:** manual updates ([5232b8a](https://github.com/samplehc/samplehc-python/commit/5232b8a692e92c75832234247732a84bae6da433))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * do not set headers with default to omit ([a02da5d](https://github.com/samplehc/samplehc-python/commit/a02da5d2c997926bce592fc18ff2268f1d84de5f))
21
+
22
+
23
+ ### Chores
24
+
25
+ * do not install brew dependencies in ./scripts/bootstrap by default ([ce956e1](https://github.com/samplehc/samplehc-python/commit/ce956e1d6d08db128884ab294d5f3ea2ceb78e66))
26
+ * **internal:** update pydantic dependency ([2974bce](https://github.com/samplehc/samplehc-python/commit/2974bcef5fb88c5f58460f677167ca3011e9a208))
27
+ * **types:** change optional parameter type from NotGiven to Omit ([67056f8](https://github.com/samplehc/samplehc-python/commit/67056f87bda42cd13d0be80aeefc21e3747a61d1))
28
+
29
+ ## 0.11.0 (2025-09-11)
30
+
31
+ Full Changelog: [v0.10.0...v0.11.0](https://github.com/samplehc/samplehc-python/compare/v0.10.0...v0.11.0)
32
+
33
+ ### Features
34
+
35
+ * **api:** api update ([e1bf34e](https://github.com/samplehc/samplehc-python/commit/e1bf34e2fd27fb7798dcdd1caf5c612d9bef8a88))
36
+ * **api:** api update ([f7a33ad](https://github.com/samplehc/samplehc-python/commit/f7a33ad842f095b97cf2525bc8049ec8684d6e88))
37
+ * **api:** manual updates ([40aa4bc](https://github.com/samplehc/samplehc-python/commit/40aa4bc965cc51598e35f3a9b1265869f0d6a0e7))
38
+ * **api:** manual updates ([072163f](https://github.com/samplehc/samplehc-python/commit/072163fffa0c862144bba3a3e490a8d28aa8ecf3))
39
+ * improve future compat with pydantic v3 ([400f2e9](https://github.com/samplehc/samplehc-python/commit/400f2e9adb39956505a9af6f7afada163bac9849))
40
+ * **types:** replace List[str] with SequenceNotStr in params ([3838a8b](https://github.com/samplehc/samplehc-python/commit/3838a8b0a40b24f8e30dc20e24cc5549c1c09a34))
41
+
42
+
43
+ ### Bug Fixes
44
+
45
+ * wrong path for salesforce and xcures ([17f83aa](https://github.com/samplehc/samplehc-python/commit/17f83aa79f5651258f77d4e80a73aa59961c6f0b))
46
+
47
+
48
+ ### Chores
49
+
50
+ * **internal:** add Sequence related utils ([ea54e4a](https://github.com/samplehc/samplehc-python/commit/ea54e4a6346af8be1a5716e283b8a608b86f658d))
51
+ * **internal:** codegen related update ([c8dfd56](https://github.com/samplehc/samplehc-python/commit/c8dfd56e4fa2165cc23e0dd242591077ab64217f))
52
+ * **tests:** simplify `get_platform` test ([1fc255f](https://github.com/samplehc/samplehc-python/commit/1fc255fdbaf3302704c80362fe656dc9596d4f04))
53
+
3
54
  ## 0.10.0 (2025-08-27)
4
55
 
5
56
  Full Changelog: [v0.9.0...v0.10.0](https://github.com/samplehc/samplehc-python/compare/v0.9.0...v0.10.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samplehc
3
- Version: 0.10.0
3
+ Version: 0.12.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
@@ -128,6 +128,7 @@ from samplehc.types.v2 import (
128
128
  DocumentSplitResponse,
129
129
  DocumentTransformJsonToHTMLResponse,
130
130
  DocumentUnzipResponse,
131
+ DocumentUnzipAsyncResponse,
131
132
  )
132
133
  ```
133
134
 
@@ -146,19 +147,25 @@ Methods:
146
147
  - <code title="post /api/v2/documents/split">client.v2.documents.<a href="./src/samplehc/resources/v2/documents/documents.py">split</a>(\*\*<a href="src/samplehc/types/v2/document_split_params.py">params</a>) -> <a href="./src/samplehc/types/v2/document_split_response.py">DocumentSplitResponse</a></code>
147
148
  - <code title="post /api/v2/documents/json-to-html">client.v2.documents.<a href="./src/samplehc/resources/v2/documents/documents.py">transform_json_to_html</a>(\*\*<a href="src/samplehc/types/v2/document_transform_json_to_html_params.py">params</a>) -> <a href="./src/samplehc/types/v2/document_transform_json_to_html_response.py">DocumentTransformJsonToHTMLResponse</a></code>
148
149
  - <code title="post /api/v2/documents/{documentId}/unzip">client.v2.documents.<a href="./src/samplehc/resources/v2/documents/documents.py">unzip</a>(document_id) -> <a href="./src/samplehc/types/v2/document_unzip_response.py">DocumentUnzipResponse</a></code>
150
+ - <code title="post /api/v2/documents/{documentId}/unzip-async">client.v2.documents.<a href="./src/samplehc/resources/v2/documents/documents.py">unzip_async</a>(document_id) -> <a href="./src/samplehc/types/v2/document_unzip_async_response.py">DocumentUnzipAsyncResponse</a></code>
149
151
 
150
152
  ### Legacy
151
153
 
152
154
  Types:
153
155
 
154
156
  ```python
155
- from samplehc.types.v2.documents import LegacyExtractResponse, LegacyReasonResponse
157
+ from samplehc.types.v2.documents import (
158
+ LegacyExtractResponse,
159
+ LegacyReasonResponse,
160
+ LegacySplitResponse,
161
+ )
156
162
  ```
157
163
 
158
164
  Methods:
159
165
 
160
166
  - <code title="post /api/v2/documents/legacy/extract">client.v2.documents.legacy.<a href="./src/samplehc/resources/v2/documents/legacy.py">extract</a>(\*\*<a href="src/samplehc/types/v2/documents/legacy_extract_params.py">params</a>) -> <a href="./src/samplehc/types/v2/documents/legacy_extract_response.py">LegacyExtractResponse</a></code>
161
167
  - <code title="post /api/v2/documents/legacy/reason">client.v2.documents.legacy.<a href="./src/samplehc/resources/v2/documents/legacy.py">reason</a>(\*\*<a href="src/samplehc/types/v2/documents/legacy_reason_params.py">params</a>) -> <a href="./src/samplehc/types/v2/documents/legacy_reason_response.py">LegacyReasonResponse</a></code>
168
+ - <code title="post /api/v2/documents/legacy/split">client.v2.documents.legacy.<a href="./src/samplehc/resources/v2/documents/legacy.py">split</a>(\*\*<a href="src/samplehc/types/v2/documents/legacy_split_params.py">params</a>) -> <a href="./src/samplehc/types/v2/documents/legacy_split_response.py">LegacySplitResponse</a></code>
162
169
 
163
170
  ### Templates
164
171
 
@@ -262,105 +269,31 @@ Methods:
262
269
 
263
270
  ## Ledger
264
271
 
265
- Types:
266
-
267
- ```python
268
- from samplehc.types.v2 import (
269
- LedgerAssignInvoiceResponse,
270
- LedgerClaimAdjustmentResponse,
271
- LedgerClaimPaymentResponse,
272
- LedgerInstitutionAdjustmentResponse,
273
- LedgerInstitutionPaymentResponse,
274
- LedgerNewOrderResponse,
275
- LedgerOrderWriteoffResponse,
276
- LedgerPatientAdjustmentResponse,
277
- LedgerPatientPaymentResponse,
278
- LedgerPostRemittanceAcceptedResponse,
279
- LedgerReverseEntryResponse,
280
- )
281
- ```
282
-
283
- Methods:
284
-
285
- - <code title="post /api/v2/ledger/invoice-assignment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">assign_invoice</a>(\*\*<a href="src/samplehc/types/v2/ledger_assign_invoice_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_assign_invoice_response.py">LedgerAssignInvoiceResponse</a></code>
286
- - <code title="post /api/v2/ledger/claim-adjustment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">claim_adjustment</a>(\*\*<a href="src/samplehc/types/v2/ledger_claim_adjustment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_claim_adjustment_response.py">LedgerClaimAdjustmentResponse</a></code>
287
- - <code title="post /api/v2/ledger/claim-payment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">claim_payment</a>(\*\*<a href="src/samplehc/types/v2/ledger_claim_payment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_claim_payment_response.py">LedgerClaimPaymentResponse</a></code>
288
- - <code title="post /api/v2/ledger/institution-adjustment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">institution_adjustment</a>(\*\*<a href="src/samplehc/types/v2/ledger_institution_adjustment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_institution_adjustment_response.py">LedgerInstitutionAdjustmentResponse</a></code>
289
- - <code title="post /api/v2/ledger/institution-payment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">institution_payment</a>(\*\*<a href="src/samplehc/types/v2/ledger_institution_payment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_institution_payment_response.py">LedgerInstitutionPaymentResponse</a></code>
290
- - <code title="post /api/v2/ledger/new-order">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">new_order</a>(\*\*<a href="src/samplehc/types/v2/ledger_new_order_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_new_order_response.py">LedgerNewOrderResponse</a></code>
291
- - <code title="post /api/v2/ledger/order-writeoff">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">order_writeoff</a>(\*\*<a href="src/samplehc/types/v2/ledger_order_writeoff_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_order_writeoff_response.py">LedgerOrderWriteoffResponse</a></code>
292
- - <code title="post /api/v2/ledger/patient-adjustment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">patient_adjustment</a>(\*\*<a href="src/samplehc/types/v2/ledger_patient_adjustment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_patient_adjustment_response.py">LedgerPatientAdjustmentResponse</a></code>
293
- - <code title="post /api/v2/ledger/patient-payment">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">patient_payment</a>(\*\*<a href="src/samplehc/types/v2/ledger_patient_payment_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_patient_payment_response.py">LedgerPatientPaymentResponse</a></code>
294
- - <code title="post /api/v2/ledger/remittance-accepted">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">post_remittance_accepted</a>(\*\*<a href="src/samplehc/types/v2/ledger_post_remittance_accepted_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_post_remittance_accepted_response.py">LedgerPostRemittanceAcceptedResponse</a></code>
295
- - <code title="post /api/v2/ledger/reverse-entry">client.v2.ledger.<a href="./src/samplehc/resources/v2/ledger/ledger.py">reverse_entry</a>(\*\*<a href="src/samplehc/types/v2/ledger_reverse_entry_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger_reverse_entry_response.py">LedgerReverseEntryResponse</a></code>
296
-
297
- ### Institutions
298
-
299
- Types:
300
-
301
- ```python
302
- from samplehc.types.v2.ledger import (
303
- InstitutionListOutstandingAccountsResponse,
304
- InstitutionRetrieveOutstandingOrdersResponse,
305
- )
306
- ```
307
-
308
- Methods:
309
-
310
- - <code title="get /api/v2/ledger/institutions/outstanding-accounts">client.v2.ledger.institutions.<a href="./src/samplehc/resources/v2/ledger/institutions/institutions.py">list_outstanding_accounts</a>() -> <a href="./src/samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py">InstitutionListOutstandingAccountsResponse</a></code>
311
- - <code title="get /api/v2/ledger/institutions/{institutionId}/outstanding-orders">client.v2.ledger.institutions.<a href="./src/samplehc/resources/v2/ledger/institutions/institutions.py">retrieve_outstanding_orders</a>(institution_id) -> <a href="./src/samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py">InstitutionRetrieveOutstandingOrdersResponse</a></code>
312
-
313
- #### Orders
314
-
315
- Types:
316
-
317
- ```python
318
- from samplehc.types.v2.ledger.institutions import OrderRetrieveBalanceResponse
319
- ```
320
-
321
- Methods:
322
-
323
- - <code title="get /api/v2/ledger/institutions/{institutionId}/orders/{orderId}/balance">client.v2.ledger.institutions.orders.<a href="./src/samplehc/resources/v2/ledger/institutions/orders.py">retrieve_balance</a>(order_id, \*, institution_id) -> <a href="./src/samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py">OrderRetrieveBalanceResponse</a></code>
324
-
325
- ### Insurance
272
+ ### Entry
326
273
 
327
274
  Types:
328
275
 
329
276
  ```python
330
- from samplehc.types.v2.ledger import InsuranceListOutstandingAccountsResponse
277
+ from samplehc.types.v2.ledger import EntryPostResponse, EntryReverseResponse
331
278
  ```
332
279
 
333
280
  Methods:
334
281
 
335
- - <code title="get /api/v2/ledger/insurance/outstanding-accounts">client.v2.ledger.insurance.<a href="./src/samplehc/resources/v2/ledger/insurance.py">list_outstanding_accounts</a>() -> <a href="./src/samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py">InsuranceListOutstandingAccountsResponse</a></code>
282
+ - <code title="post /api/v2/ledger/entry">client.v2.ledger.entry.<a href="./src/samplehc/resources/v2/ledger/entry.py">post</a>(\*\*<a href="src/samplehc/types/v2/ledger/entry_post_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/entry_post_response.py">EntryPostResponse</a></code>
283
+ - <code title="post /api/v2/ledger/entry/{id}/reverse">client.v2.ledger.entry.<a href="./src/samplehc/resources/v2/ledger/entry.py">reverse</a>(id, \*\*<a href="src/samplehc/types/v2/ledger/entry_reverse_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/entry_reverse_response.py">EntryReverseResponse</a></code>
336
284
 
337
- ### Patients
285
+ ### Account
338
286
 
339
287
  Types:
340
288
 
341
289
  ```python
342
- from samplehc.types.v2.ledger import PatientListOutstandingAccountsResponse
290
+ from samplehc.types.v2.ledger import AccountWriteoffResponse
343
291
  ```
344
292
 
345
293
  Methods:
346
294
 
347
- - <code title="get /api/v2/ledger/patients/outstanding-accounts">client.v2.ledger.patients.<a href="./src/samplehc/resources/v2/ledger/patients.py">list_outstanding_accounts</a>() -> <a href="./src/samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py">PatientListOutstandingAccountsResponse</a></code>
348
-
349
- ### Orders
350
-
351
- Types:
352
-
353
- ```python
354
- from samplehc.types.v2.ledger import (
355
- OrderRetrieveBalancesResponse,
356
- OrderRetrieveBatchBalancesResponse,
357
- )
358
- ```
359
-
360
- Methods:
361
-
362
- - <code title="get /api/v2/ledger/orders/{orderId}/balances">client.v2.ledger.orders.<a href="./src/samplehc/resources/v2/ledger/orders.py">retrieve_balances</a>(order_id) -> <a href="./src/samplehc/types/v2/ledger/order_retrieve_balances_response.py">OrderRetrieveBalancesResponse</a></code>
363
- - <code title="post /api/v2/ledger/orders/batch-balances">client.v2.ledger.orders.<a href="./src/samplehc/resources/v2/ledger/orders.py">retrieve_batch_balances</a>(\*\*<a href="src/samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py">OrderRetrieveBatchBalancesResponse</a></code>
295
+ - <code title="get /api/v2/ledger/account/{orderId}/line-item/{lineItemId}/balance">client.v2.ledger.account.<a href="./src/samplehc/resources/v2/ledger/account.py">get_balance</a>(line_item_id, \*, order_id) -> None</code>
296
+ - <code title="post /api/v2/ledger/account/{orderId}/line-item/{lineItemId}/writeoff">client.v2.ledger.account.<a href="./src/samplehc/resources/v2/ledger/account.py">writeoff</a>(line_item_id, \*, order_id, \*\*<a href="src/samplehc/types/v2/ledger/account_writeoff_params.py">params</a>) -> <a href="./src/samplehc/types/v2/ledger/account_writeoff_response.py">AccountWriteoffResponse</a></code>
364
297
 
365
298
  ## Integrations
366
299
 
@@ -475,6 +408,18 @@ Methods:
475
408
  - <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>
476
409
  - <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>
477
410
 
411
+ ### Xcures
412
+
413
+ Methods:
414
+
415
+ - <code title="post /api/v2/integrations/xcures/{slug}/request">client.v2.integrations.xcures.<a href="./src/samplehc/resources/v2/integrations/xcures.py">make_request</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/xcure_make_request_params.py">params</a>) -> object</code>
416
+
417
+ ### Salesforce
418
+
419
+ Methods:
420
+
421
+ - <code title="post /api/v2/integrations/salesforce/{slug}/crud-action">client.v2.integrations.salesforce.<a href="./src/samplehc/resources/v2/integrations/salesforce.py">run_crud_action</a>(slug, \*\*<a href="src/samplehc/types/v2/integrations/salesforce_run_crud_action_params.py">params</a>) -> object</code>
422
+
478
423
  ## Events
479
424
 
480
425
  Types:
@@ -485,27 +430,33 @@ from samplehc.types.v2 import EventEmitResponse
485
430
 
486
431
  Methods:
487
432
 
488
- - <code title="post /api/v2/events/">client.v2.events.<a href="./src/samplehc/resources/v2/events/events.py">emit</a>(\*\*<a href="src/samplehc/types/v2/event_emit_params.py">params</a>) -> <a href="./src/samplehc/types/v2/event_emit_response.py">EventEmitResponse</a></code>
433
+ - <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>
434
+
435
+ ## BrowserAgents
489
436
 
490
- ### Integrations
437
+ Types:
491
438
 
492
- #### Xcures
439
+ ```python
440
+ from samplehc.types.v2 import BrowserAgentInvokeResponse
441
+ ```
493
442
 
494
443
  Methods:
495
444
 
496
- - <code title="post /api/v2/integrations/xcures/{slug}/request">client.v2.events.integrations.xcures.<a href="./src/samplehc/resources/v2/events/integrations/xcures.py">make_request</a>(slug, \*\*<a href="src/samplehc/types/v2/events/integrations/xcure_make_request_params.py">params</a>) -> object</code>
445
+ - <code title="post /api/v2/browser-agents/{slug}/invoke">client.v2.browser_agents.<a href="./src/samplehc/resources/v2/browser_agents/browser_agents.py">invoke</a>(slug, \*\*<a href="src/samplehc/types/v2/browser_agent_invoke_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agent_invoke_response.py">BrowserAgentInvokeResponse</a></code>
497
446
 
498
- ## BrowserAgents
447
+ ### Runs
448
+
449
+ #### HelpRequests
499
450
 
500
451
  Types:
501
452
 
502
453
  ```python
503
- from samplehc.types.v2 import BrowserAgentInvokeResponse
454
+ from samplehc.types.v2.browser_agents.runs import HelpRequestResolveResponse
504
455
  ```
505
456
 
506
457
  Methods:
507
458
 
508
- - <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>
459
+ - <code title="patch /api/v2/browser-agents/{slug}/runs/{browserAgentRunId}/help-requests/{helpRequestId}/resolution">client.v2.browser_agents.runs.help_requests.<a href="./src/samplehc/resources/v2/browser_agents/runs/help_requests.py">resolve</a>(help_request_id, \*, slug, browser_agent_run_id, \*\*<a href="src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py">HelpRequestResolveResponse</a></code>
509
460
 
510
461
  ## Policies
511
462
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "samplehc"
3
- version = "0.10.0"
3
+ version = "0.12.0"
4
4
  description = "The official Python library for the Sample Healthcare API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -56,7 +56,6 @@ dev-dependencies = [
56
56
  "dirty-equals>=0.6.0",
57
57
  "importlib-metadata>=6.7.0",
58
58
  "rich>=13.7.1",
59
- "nest_asyncio==1.6.0",
60
59
  "pytest-xdist>=3.6.1",
61
60
  ]
62
61
 
@@ -157,6 +156,58 @@ reportOverlappingOverload = false
157
156
  reportImportCycles = false
158
157
  reportPrivateUsage = false
159
158
 
159
+ [tool.mypy]
160
+ pretty = true
161
+ show_error_codes = true
162
+
163
+ # Exclude _files.py because mypy isn't smart enough to apply
164
+ # the correct type narrowing and as this is an internal module
165
+ # it's fine to just use Pyright.
166
+ #
167
+ # We also exclude our `tests` as mypy doesn't always infer
168
+ # types correctly and Pyright will still catch any type errors.
169
+ exclude = ['src/samplehc/_files.py', '_dev/.*.py', 'tests/.*']
170
+
171
+ strict_equality = true
172
+ implicit_reexport = true
173
+ check_untyped_defs = true
174
+ no_implicit_optional = true
175
+
176
+ warn_return_any = true
177
+ warn_unreachable = true
178
+ warn_unused_configs = true
179
+
180
+ # Turn these options off as it could cause conflicts
181
+ # with the Pyright options.
182
+ warn_unused_ignores = false
183
+ warn_redundant_casts = false
184
+
185
+ disallow_any_generics = true
186
+ disallow_untyped_defs = true
187
+ disallow_untyped_calls = true
188
+ disallow_subclassing_any = true
189
+ disallow_incomplete_defs = true
190
+ disallow_untyped_decorators = true
191
+ cache_fine_grained = true
192
+
193
+ # By default, mypy reports an error if you assign a value to the result
194
+ # of a function call that doesn't return anything. We do this in our test
195
+ # cases:
196
+ # ```
197
+ # result = ...
198
+ # assert result is None
199
+ # ```
200
+ # Changing this codegen to make mypy happy would increase complexity
201
+ # and would not be worth it.
202
+ disable_error_code = "func-returns-value,overload-cannot-match"
203
+
204
+ # https://github.com/python/mypy/issues/12162
205
+ [[tool.mypy.overrides]]
206
+ module = "black.files.*"
207
+ ignore_errors = true
208
+ ignore_missing_imports = true
209
+
210
+
160
211
  [tool.ruff]
161
212
  line-length = 120
162
213
  output-format = "grouped"
@@ -75,7 +75,6 @@ multidict==6.4.4
75
75
  mypy==1.14.1
76
76
  mypy-extensions==1.0.0
77
77
  # via mypy
78
- nest-asyncio==1.6.0
79
78
  nodeenv==1.8.0
80
79
  # via pyright
81
80
  nox==2023.4.22
@@ -89,9 +88,9 @@ pluggy==1.5.0
89
88
  propcache==0.3.1
90
89
  # via aiohttp
91
90
  # via yarl
92
- pydantic==2.10.3
91
+ pydantic==2.11.9
93
92
  # via samplehc
94
- pydantic-core==2.27.1
93
+ pydantic-core==2.33.2
95
94
  # via pydantic
96
95
  pygments==2.18.0
97
96
  # via rich
@@ -127,6 +126,9 @@ typing-extensions==4.12.2
127
126
  # via pydantic-core
128
127
  # via pyright
129
128
  # via samplehc
129
+ # via typing-inspection
130
+ typing-inspection==0.4.1
131
+ # via pydantic
130
132
  virtualenv==20.24.5
131
133
  # via nox
132
134
  yarl==1.20.0
@@ -55,9 +55,9 @@ multidict==6.4.4
55
55
  propcache==0.3.1
56
56
  # via aiohttp
57
57
  # via yarl
58
- pydantic==2.10.3
58
+ pydantic==2.11.9
59
59
  # via samplehc
60
- pydantic-core==2.27.1
60
+ pydantic-core==2.33.2
61
61
  # via pydantic
62
62
  sniffio==1.3.0
63
63
  # via anyio
@@ -68,5 +68,8 @@ typing-extensions==4.12.2
68
68
  # via pydantic
69
69
  # via pydantic-core
70
70
  # via samplehc
71
+ # via typing-inspection
72
+ typing-inspection==0.4.1
73
+ # via pydantic
71
74
  yarl==1.20.0
72
75
  # via aiohttp
@@ -3,7 +3,7 @@
3
3
  import typing as _t
4
4
 
5
5
  from . import types
6
- from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
6
+ from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes, omit, not_given
7
7
  from ._utils import file_from_path
8
8
  from ._client import (
9
9
  Client,
@@ -48,7 +48,9 @@ __all__ = [
48
48
  "ProxiesTypes",
49
49
  "NotGiven",
50
50
  "NOT_GIVEN",
51
+ "not_given",
51
52
  "Omit",
53
+ "omit",
52
54
  "SampleHealthcareError",
53
55
  "APIError",
54
56
  "APIStatusError",
@@ -42,7 +42,6 @@ from . import _exceptions
42
42
  from ._qs import Querystring
43
43
  from ._files import to_httpx_files, async_to_httpx_files
44
44
  from ._types import (
45
- NOT_GIVEN,
46
45
  Body,
47
46
  Omit,
48
47
  Query,
@@ -57,9 +56,10 @@ from ._types import (
57
56
  RequestOptions,
58
57
  HttpxRequestFiles,
59
58
  ModelBuilderProtocol,
59
+ not_given,
60
60
  )
61
61
  from ._utils import is_dict, is_list, asyncify, is_given, lru_cache, is_mapping
62
- from ._compat import PYDANTIC_V2, model_copy, model_dump
62
+ from ._compat import PYDANTIC_V1, model_copy, model_dump
63
63
  from ._models import GenericModel, FinalRequestOptions, validate_type, construct_type
64
64
  from ._response import (
65
65
  APIResponse,
@@ -145,9 +145,9 @@ class PageInfo:
145
145
  def __init__(
146
146
  self,
147
147
  *,
148
- url: URL | NotGiven = NOT_GIVEN,
149
- json: Body | NotGiven = NOT_GIVEN,
150
- params: Query | NotGiven = NOT_GIVEN,
148
+ url: URL | NotGiven = not_given,
149
+ json: Body | NotGiven = not_given,
150
+ params: Query | NotGiven = not_given,
151
151
  ) -> None:
152
152
  self.url = url
153
153
  self.json = json
@@ -232,7 +232,7 @@ class BaseSyncPage(BasePage[_T], Generic[_T]):
232
232
  model: Type[_T],
233
233
  options: FinalRequestOptions,
234
234
  ) -> None:
235
- if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
235
+ if (not PYDANTIC_V1) and getattr(self, "__pydantic_private__", None) is None:
236
236
  self.__pydantic_private__ = {}
237
237
 
238
238
  self._model = model
@@ -320,7 +320,7 @@ class BaseAsyncPage(BasePage[_T], Generic[_T]):
320
320
  client: AsyncAPIClient,
321
321
  options: FinalRequestOptions,
322
322
  ) -> None:
323
- if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
323
+ if (not PYDANTIC_V1) and getattr(self, "__pydantic_private__", None) is None:
324
324
  self.__pydantic_private__ = {}
325
325
 
326
326
  self._model = model
@@ -595,7 +595,7 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
595
595
  # we internally support defining a temporary header to override the
596
596
  # default `cast_to` type for use with `.with_raw_response` and `.with_streaming_response`
597
597
  # see _response.py for implementation details
598
- override_cast_to = headers.pop(OVERRIDE_CAST_TO_HEADER, NOT_GIVEN)
598
+ override_cast_to = headers.pop(OVERRIDE_CAST_TO_HEADER, not_given)
599
599
  if is_given(override_cast_to):
600
600
  options.headers = headers
601
601
  return cast(Type[ResponseT], override_cast_to)
@@ -825,7 +825,7 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
825
825
  version: str,
826
826
  base_url: str | URL,
827
827
  max_retries: int = DEFAULT_MAX_RETRIES,
828
- timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
828
+ timeout: float | Timeout | None | NotGiven = not_given,
829
829
  http_client: httpx.Client | None = None,
830
830
  custom_headers: Mapping[str, str] | None = None,
831
831
  custom_query: Mapping[str, object] | None = None,
@@ -1356,7 +1356,7 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1356
1356
  base_url: str | URL,
1357
1357
  _strict_response_validation: bool,
1358
1358
  max_retries: int = DEFAULT_MAX_RETRIES,
1359
- timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
1359
+ timeout: float | Timeout | None | NotGiven = not_given,
1360
1360
  http_client: httpx.AsyncClient | None = None,
1361
1361
  custom_headers: Mapping[str, str] | None = None,
1362
1362
  custom_query: Mapping[str, object] | None = None,
@@ -1818,8 +1818,8 @@ def make_request_options(
1818
1818
  extra_query: Query | None = None,
1819
1819
  extra_body: Body | None = None,
1820
1820
  idempotency_key: str | None = None,
1821
- timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1822
- post_parser: PostParser | NotGiven = NOT_GIVEN,
1821
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
1822
+ post_parser: PostParser | NotGiven = not_given,
1823
1823
  ) -> RequestOptions:
1824
1824
  """Create a dict of type RequestOptions without keys of NotGiven values."""
1825
1825
  options: RequestOptions = {}
@@ -3,7 +3,7 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  import os
6
- from typing import Any, Union, Mapping
6
+ from typing import Any, Mapping
7
7
  from typing_extensions import Self, override
8
8
 
9
9
  import httpx
@@ -11,7 +11,6 @@ import httpx
11
11
  from . import _exceptions
12
12
  from ._qs import Querystring
13
13
  from ._types import (
14
- NOT_GIVEN,
15
14
  Omit,
16
15
  Headers,
17
16
  Timeout,
@@ -19,6 +18,7 @@ from ._types import (
19
18
  Transport,
20
19
  ProxiesTypes,
21
20
  RequestOptions,
21
+ not_given,
22
22
  )
23
23
  from ._utils import is_given, get_async_library
24
24
  from ._version import __version__
@@ -58,7 +58,7 @@ class SampleHealthcare(SyncAPIClient):
58
58
  *,
59
59
  api_key: str | None = None,
60
60
  base_url: str | httpx.URL | None = None,
61
- timeout: Union[float, Timeout, None, NotGiven] = NOT_GIVEN,
61
+ timeout: float | Timeout | None | NotGiven = not_given,
62
62
  max_retries: int = DEFAULT_MAX_RETRIES,
63
63
  default_headers: Mapping[str, str] | None = None,
64
64
  default_query: Mapping[str, object] | None = None,
@@ -143,9 +143,9 @@ class SampleHealthcare(SyncAPIClient):
143
143
  *,
144
144
  api_key: str | None = None,
145
145
  base_url: str | httpx.URL | None = None,
146
- timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
146
+ timeout: float | Timeout | None | NotGiven = not_given,
147
147
  http_client: httpx.Client | None = None,
148
- max_retries: int | NotGiven = NOT_GIVEN,
148
+ max_retries: int | NotGiven = not_given,
149
149
  default_headers: Mapping[str, str] | None = None,
150
150
  set_default_headers: Mapping[str, str] | None = None,
151
151
  default_query: Mapping[str, object] | None = None,
@@ -237,7 +237,7 @@ class AsyncSampleHealthcare(AsyncAPIClient):
237
237
  *,
238
238
  api_key: str | None = None,
239
239
  base_url: str | httpx.URL | None = None,
240
- timeout: Union[float, Timeout, None, NotGiven] = NOT_GIVEN,
240
+ timeout: float | Timeout | None | NotGiven = not_given,
241
241
  max_retries: int = DEFAULT_MAX_RETRIES,
242
242
  default_headers: Mapping[str, str] | None = None,
243
243
  default_query: Mapping[str, object] | None = None,
@@ -322,9 +322,9 @@ class AsyncSampleHealthcare(AsyncAPIClient):
322
322
  *,
323
323
  api_key: str | None = None,
324
324
  base_url: str | httpx.URL | None = None,
325
- timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
325
+ timeout: float | Timeout | None | NotGiven = not_given,
326
326
  http_client: httpx.AsyncClient | None = None,
327
- max_retries: int | NotGiven = NOT_GIVEN,
327
+ max_retries: int | NotGiven = not_given,
328
328
  default_headers: Mapping[str, str] | None = None,
329
329
  set_default_headers: Mapping[str, str] | None = None,
330
330
  default_query: Mapping[str, object] | None = None,