samplehc 0.13.0__tar.gz → 0.15.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.
- samplehc-0.15.0/.release-please-manifest.json +3 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/CHANGELOG.md +53 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/LICENSE +1 -1
- {samplehc-0.13.0 → samplehc-0.15.0}/PKG-INFO +8 -7
- {samplehc-0.13.0 → samplehc-0.15.0}/README.md +4 -3
- {samplehc-0.13.0 → samplehc-0.15.0}/api.md +9 -50
- {samplehc-0.13.0 → samplehc-0.15.0}/pyproject.toml +14 -12
- {samplehc-0.13.0 → samplehc-0.15.0}/requirements-dev.lock +63 -51
- {samplehc-0.13.0 → samplehc-0.15.0}/requirements.lock +21 -20
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_base_client.py +8 -2
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_client.py +105 -29
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_models.py +37 -15
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_streaming.py +12 -12
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_types.py +3 -2
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_sync.py +3 -31
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_utils.py +1 -1
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_version.py +1 -1
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/__init__.py +0 -28
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/documents.py +8 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/__init__.py +14 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/integrations.py +32 -0
- samplehc-0.15.0/src/samplehc/resources/v2/integrations/wellsky/__init__.py +33 -0
- samplehc-0.15.0/src/samplehc/resources/v2/integrations/wellsky/patients.py +324 -0
- samplehc-0.15.0/src/samplehc/resources/v2/integrations/wellsky/wellsky.py +102 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/tasks/tasks.py +12 -3
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/v2.py +0 -64
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v1_query_audit_logs_response.py +4 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/__init__.py +0 -2
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +5 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/payer_search_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +4 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/communication_send_fax_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/communication_send_fax_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/communication_send_letter_params.py +8 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/communication_send_letter_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/database_execute_sql_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_classify_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_classify_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_combine_response.py +4 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_create_from_splits_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_create_from_splits_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_extract_params.py +40 -3
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_extract_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_generate_csv_response.py +4 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_search_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_split_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_split_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_split_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_split_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/template_render_document_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/hie/document_upload_params.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +2 -0
- samplehc-0.15.0/src/samplehc/types/v2/integrations/wellsky/__init__.py +6 -0
- samplehc-0.15.0/src/samplehc/types/v2/integrations/wellsky/patient_add_params.py +13 -0
- samplehc-0.15.0/src/samplehc/types/v2/integrations/wellsky/patient_search_params.py +32 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_companies_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_plans_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_cancel_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_complete_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_update_column_params.py +6 -3
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +2 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_start_response.py +2 -0
- samplehc-0.15.0/tests/api_resources/v2/integrations/wellsky/test_patients.py +229 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_documents.py +18 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_tasks.py +30 -8
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_client.py +204 -164
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_models.py +4 -4
- samplehc-0.13.0/.release-please-manifest.json +0 -3
- samplehc-0.13.0/src/samplehc/resources/v2/browser_agents/__init__.py +0 -33
- samplehc-0.13.0/src/samplehc/resources/v2/browser_agents/browser_agents.py +0 -209
- samplehc-0.13.0/src/samplehc/resources/v2/browser_agents/runs/__init__.py +0 -33
- samplehc-0.13.0/src/samplehc/resources/v2/browser_agents/runs/help_requests.py +0 -191
- samplehc-0.13.0/src/samplehc/resources/v2/browser_agents/runs/runs.py +0 -233
- samplehc-0.13.0/src/samplehc/resources/v2/browser_automation/__init__.py +0 -33
- samplehc-0.13.0/src/samplehc/resources/v2/browser_automation/availity.py +0 -249
- samplehc-0.13.0/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -102
- samplehc-0.13.0/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -13
- samplehc-0.13.0/src/samplehc/types/v2/browser_agent_invoke_response.py +0 -15
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/__init__.py +0 -6
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/run_list_events_params.py +0 -15
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/run_list_events_response.py +0 -30
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/runs/__init__.py +0 -6
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py +0 -18
- samplehc-0.13.0/src/samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py +0 -28
- samplehc-0.13.0/src/samplehc/types/v2/browser_automation/__init__.py +0 -6
- samplehc-0.13.0/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -59
- samplehc-0.13.0/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -12
- samplehc-0.13.0/tests/api_resources/v2/browser_agents/runs/test_help_requests.py +0 -164
- samplehc-0.13.0/tests/api_resources/v2/browser_agents/test_runs.py +0 -128
- samplehc-0.13.0/tests/api_resources/v2/browser_automation/test_availity.py +0 -182
- samplehc-0.13.0/tests/api_resources/v2/tasks/__init__.py +0 -1
- samplehc-0.13.0/tests/api_resources/v2/test_browser_agents.py +0 -126
- samplehc-0.13.0/tests/api_resources/v2/workflow_runs/__init__.py +0 -1
- {samplehc-0.13.0 → samplehc-0.15.0}/.gitignore +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/CONTRIBUTING.md +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/SECURITY.md +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/bin/check-release-environment +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/bin/publish-pypi +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/examples/.keep +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/noxfile.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/release-please-config.json +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_compat.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_constants.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_exceptions.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_files.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_qs.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_resource.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_compat.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_datetime_parse.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_logs.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_proxy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_reflection.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_streams.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_transform.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/_utils/_typing.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/lib/.keep +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/py.typed +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v1/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v1/v1.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/async_results.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/clearinghouse/claim.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/clearinghouse/payers.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/communication.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/database.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/events.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/hie/adt.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/salesforce.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/integrations/xcures.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/ledger/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/ledger/account.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/ledger/entry.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/ledger/ledger.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/policies.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/resources/v2/workflows.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v1/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse/payer_search_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_check_claim_status_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_search_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_unzip_async_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/hie/adt_subscribe_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/salesforce_run_crud_action_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/integrations/xcure_make_request_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/account_writeoff_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/account_writeoff_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/entry_post_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/entry_post_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/entry_reverse_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/ledger/entry_reverse_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_update_column_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/test_v1.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v1/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/__init__.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/browser_agents → samplehc-0.15.0/tests/api_resources/v2/clearinghouse}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/clearinghouse/test_payers.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/browser_agents/runs → samplehc-0.15.0/tests/api_resources/v2/documents}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/documents/test_legacy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/documents/test_templates.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/browser_automation → samplehc-0.15.0/tests/api_resources/v2/hie}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/hie/test_adt.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/clearinghouse → samplehc-0.15.0/tests/api_resources/v2/integrations}/__init__.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/documents → samplehc-0.15.0/tests/api_resources/v2/integrations/bank}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/hie → samplehc-0.15.0/tests/api_resources/v2/integrations/glidian}/__init__.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/integrations → samplehc-0.15.0/tests/api_resources/v2/integrations/glidian/prior_authorizations}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/integrations/bank → samplehc-0.15.0/tests/api_resources/v2/integrations/kno2}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/test_salesforce.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/integrations/test_xcures.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/integrations/glidian → samplehc-0.15.0/tests/api_resources/v2/integrations/wellsky}/__init__.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/integrations/glidian/prior_authorizations → samplehc-0.15.0/tests/api_resources/v2/ledger}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/ledger/test_account.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/ledger/test_entry.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/integrations/kno2 → samplehc-0.15.0/tests/api_resources/v2/tasks}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_async_results.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_communication.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_database.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_events.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_policies.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/test_workflows.py +0 -0
- {samplehc-0.13.0/tests/api_resources/v2/ledger → samplehc-0.15.0/tests/api_resources/v2/workflow_runs}/__init__.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/conftest.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/sample_file.txt +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_deepcopy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_extract_files.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_files.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_qs.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_required_args.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_response.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_streaming.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_transform.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_utils/test_datetime_parse.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_utils/test_proxy.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/test_utils/test_typing.py +0 -0
- {samplehc-0.13.0 → samplehc-0.15.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.15.0 (2026-01-06)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.14.0...v0.15.0](https://github.com/samplehc/samplehc-python/compare/v0.14.0...v0.15.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([932fd3d](https://github.com/samplehc/samplehc-python/commit/932fd3dd41ab9e219b36078fcc55627961ef4af7))
|
|
10
|
+
* **api:** api update ([9567314](https://github.com/samplehc/samplehc-python/commit/956731408f0f8a28a9c81af4e2d2661bdad9babd))
|
|
11
|
+
* **api:** api update ([28caf01](https://github.com/samplehc/samplehc-python/commit/28caf01f1d11a3ab29f4a745d10b1a65b4e38bff))
|
|
12
|
+
* **api:** api update ([4313d2a](https://github.com/samplehc/samplehc-python/commit/4313d2a914c9b1c841893e58ce749b00ae2aa25a))
|
|
13
|
+
* **api:** api update ([956505a](https://github.com/samplehc/samplehc-python/commit/956505a9dc0644b71932296cb1a928cd36914778))
|
|
14
|
+
* **api:** api update ([f49bb43](https://github.com/samplehc/samplehc-python/commit/f49bb435cfcb4e289bd61c99e5d27038024b4b76))
|
|
15
|
+
* **api:** manual updates ([403a3bc](https://github.com/samplehc/samplehc-python/commit/403a3bc523258299fcb8196a598ac8c8bf91a3ca))
|
|
16
|
+
* **api:** manual updates ([384b359](https://github.com/samplehc/samplehc-python/commit/384b359246101a209494271a4e5f2103537d3c26))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **client:** close streams without requiring full consumption ([f8efd76](https://github.com/samplehc/samplehc-python/commit/f8efd76e0aea684502cbd4264f05bafe34984c91))
|
|
22
|
+
* compat with Python 3.14 ([63aebd3](https://github.com/samplehc/samplehc-python/commit/63aebd32f1870e98f8aa08328cf54d426843d57a))
|
|
23
|
+
* **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([5e8848c](https://github.com/samplehc/samplehc-python/commit/5e8848c6856a409b525a0b71211dccebf004a7bc))
|
|
24
|
+
* ensure streams are always closed ([3b83779](https://github.com/samplehc/samplehc-python/commit/3b83779ccd6d66fba95889a8e534daea6dff2dd2))
|
|
25
|
+
* **types:** allow pyright to infer TypedDict types within SequenceNotStr ([6c2844a](https://github.com/samplehc/samplehc-python/commit/6c2844ab6b542c26fe2d64b737aaba4b0c81ff02))
|
|
26
|
+
* use async_to_httpx_files in patch method ([d13b471](https://github.com/samplehc/samplehc-python/commit/d13b4714668e3eecc9e7e0d38f627e37f84fb4b9))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Chores
|
|
30
|
+
|
|
31
|
+
* add missing docstrings ([823e285](https://github.com/samplehc/samplehc-python/commit/823e2858b5f280dd2b5287560f91d65800a70e66))
|
|
32
|
+
* add Python 3.14 classifier and testing ([5d169a2](https://github.com/samplehc/samplehc-python/commit/5d169a2bf452c6df92f96d57bfe3429a83bbf511))
|
|
33
|
+
* **deps:** mypy 1.18.1 has a regression, pin to 1.17 ([76b2aec](https://github.com/samplehc/samplehc-python/commit/76b2aecf1bac822171c8ee0fe9c52355f5b3d92b))
|
|
34
|
+
* **docs:** use environment variables for authentication in code snippets ([5f82bf4](https://github.com/samplehc/samplehc-python/commit/5f82bf40b10539574e3b77afc3a77a8a22d1bdab))
|
|
35
|
+
* **internal/tests:** avoid race condition with implicit client cleanup ([cdb29fd](https://github.com/samplehc/samplehc-python/commit/cdb29fd8c1604cc5a42bc9b54b212222b7d1b01f))
|
|
36
|
+
* **internal:** add `--fix` argument to lint script ([797d372](https://github.com/samplehc/samplehc-python/commit/797d372d36c2d433105e3a12830550b719e4b4ea))
|
|
37
|
+
* **internal:** add missing files argument to base client ([d538823](https://github.com/samplehc/samplehc-python/commit/d538823975291569d89b020457fa0e03aafe176f))
|
|
38
|
+
* **internal:** grammar fix (it's -> its) ([ec252ac](https://github.com/samplehc/samplehc-python/commit/ec252acf2409f35e27811471775b3957f4a4d3e7))
|
|
39
|
+
* **package:** drop Python 3.8 support ([c73ebc2](https://github.com/samplehc/samplehc-python/commit/c73ebc2b5d8d10a38c4f8bc63f3b14a331861d3a))
|
|
40
|
+
* speedup initial import ([fa2c710](https://github.com/samplehc/samplehc-python/commit/fa2c7100e9e138a69f9f0243f81a64650ae13ae2))
|
|
41
|
+
* update lockfile ([89945d5](https://github.com/samplehc/samplehc-python/commit/89945d5d11c9320f3a269236f0b78751c0fc2373))
|
|
42
|
+
|
|
43
|
+
## 0.14.0 (2025-10-21)
|
|
44
|
+
|
|
45
|
+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/samplehc/samplehc-python/compare/v0.13.0...v0.14.0)
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **api:** manual updates ([8ecb9c9](https://github.com/samplehc/samplehc-python/commit/8ecb9c965df2a9a19141479a9f387abd2cb5f8e7))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Chores
|
|
53
|
+
|
|
54
|
+
* bump `httpx-aiohttp` version to 0.1.9 ([86a6393](https://github.com/samplehc/samplehc-python/commit/86a6393b3937ce26c9dcef809722a73450780e4b))
|
|
55
|
+
|
|
3
56
|
## 0.13.0 (2025-10-17)
|
|
4
57
|
|
|
5
58
|
Full Changelog: [v0.12.0...v0.13.0](https://github.com/samplehc/samplehc-python/compare/v0.12.0...v0.13.0)
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Sample Healthcare
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: samplehc
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.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
|
|
@@ -13,15 +13,15 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Classifier: Operating System :: POSIX
|
|
15
15
|
Classifier: Operating System :: POSIX :: Linux
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
23
|
Classifier: Typing :: Typed
|
|
24
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.9
|
|
25
25
|
Requires-Dist: anyio<5,>=3.5.0
|
|
26
26
|
Requires-Dist: distro<2,>=1.7.0
|
|
27
27
|
Requires-Dist: httpx<1,>=0.23.0
|
|
@@ -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.
|
|
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
|
|
@@ -38,7 +38,7 @@ Description-Content-Type: text/markdown
|
|
|
38
38
|
<!-- prettier-ignore -->
|
|
39
39
|
[)](https://pypi.org/project/samplehc/)
|
|
40
40
|
|
|
41
|
-
The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.
|
|
41
|
+
The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.9+
|
|
42
42
|
application. The library includes type definitions for all request params and response fields,
|
|
43
43
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
44
44
|
|
|
@@ -118,6 +118,7 @@ pip install samplehc[aiohttp]
|
|
|
118
118
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
119
119
|
|
|
120
120
|
```python
|
|
121
|
+
import os
|
|
121
122
|
import asyncio
|
|
122
123
|
from samplehc import DefaultAioHttpClient
|
|
123
124
|
from samplehc import AsyncSampleHealthcare
|
|
@@ -125,7 +126,7 @@ from samplehc import AsyncSampleHealthcare
|
|
|
125
126
|
|
|
126
127
|
async def main() -> None:
|
|
127
128
|
async with AsyncSampleHealthcare(
|
|
128
|
-
api_key="
|
|
129
|
+
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
|
|
129
130
|
http_client=DefaultAioHttpClient(),
|
|
130
131
|
) as client:
|
|
131
132
|
response = await client.v1.sql_execute(
|
|
@@ -431,7 +432,7 @@ print(samplehc.__version__)
|
|
|
431
432
|
|
|
432
433
|
## Requirements
|
|
433
434
|
|
|
434
|
-
Python 3.
|
|
435
|
+
Python 3.9 or higher.
|
|
435
436
|
|
|
436
437
|
## Contributing
|
|
437
438
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<!-- prettier-ignore -->
|
|
4
4
|
[)](https://pypi.org/project/samplehc/)
|
|
5
5
|
|
|
6
|
-
The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.
|
|
6
|
+
The Sample Healthcare Python library provides convenient access to the Sample Healthcare REST API from any Python 3.9+
|
|
7
7
|
application. The library includes type definitions for all request params and response fields,
|
|
8
8
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
9
9
|
|
|
@@ -83,6 +83,7 @@ pip install samplehc[aiohttp]
|
|
|
83
83
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
84
84
|
|
|
85
85
|
```python
|
|
86
|
+
import os
|
|
86
87
|
import asyncio
|
|
87
88
|
from samplehc import DefaultAioHttpClient
|
|
88
89
|
from samplehc import AsyncSampleHealthcare
|
|
@@ -90,7 +91,7 @@ from samplehc import AsyncSampleHealthcare
|
|
|
90
91
|
|
|
91
92
|
async def main() -> None:
|
|
92
93
|
async with AsyncSampleHealthcare(
|
|
93
|
-
api_key="
|
|
94
|
+
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
|
|
94
95
|
http_client=DefaultAioHttpClient(),
|
|
95
96
|
) as client:
|
|
96
97
|
response = await client.v1.sql_execute(
|
|
@@ -396,7 +397,7 @@ print(samplehc.__version__)
|
|
|
396
397
|
|
|
397
398
|
## Requirements
|
|
398
399
|
|
|
399
|
-
Python 3.
|
|
400
|
+
Python 3.9 or higher.
|
|
400
401
|
|
|
401
402
|
## Contributing
|
|
402
403
|
|
|
@@ -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
|
|
@@ -435,42 +444,6 @@ Methods:
|
|
|
435
444
|
|
|
436
445
|
- <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>
|
|
437
446
|
|
|
438
|
-
## BrowserAgents
|
|
439
|
-
|
|
440
|
-
Types:
|
|
441
|
-
|
|
442
|
-
```python
|
|
443
|
-
from samplehc.types.v2 import BrowserAgentInvokeResponse
|
|
444
|
-
```
|
|
445
|
-
|
|
446
|
-
Methods:
|
|
447
|
-
|
|
448
|
-
- <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>
|
|
449
|
-
|
|
450
|
-
### Runs
|
|
451
|
-
|
|
452
|
-
Types:
|
|
453
|
-
|
|
454
|
-
```python
|
|
455
|
-
from samplehc.types.v2.browser_agents import RunListEventsResponse
|
|
456
|
-
```
|
|
457
|
-
|
|
458
|
-
Methods:
|
|
459
|
-
|
|
460
|
-
- <code title="get /api/v2/browser-agents/runs/{browserAgentRunId}/events">client.v2.browser_agents.runs.<a href="./src/samplehc/resources/v2/browser_agents/runs/runs.py">list_events</a>(browser_agent_run_id, \*\*<a href="src/samplehc/types/v2/browser_agents/run_list_events_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_agents/run_list_events_response.py">RunListEventsResponse</a></code>
|
|
461
|
-
|
|
462
|
-
#### HelpRequests
|
|
463
|
-
|
|
464
|
-
Types:
|
|
465
|
-
|
|
466
|
-
```python
|
|
467
|
-
from samplehc.types.v2.browser_agents.runs import HelpRequestResolveResponse
|
|
468
|
-
```
|
|
469
|
-
|
|
470
|
-
Methods:
|
|
471
|
-
|
|
472
|
-
- <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>
|
|
473
|
-
|
|
474
447
|
## Policies
|
|
475
448
|
|
|
476
449
|
Types:
|
|
@@ -525,17 +498,3 @@ from samplehc.types.v2 import DatabaseExecuteSqlResponse
|
|
|
525
498
|
Methods:
|
|
526
499
|
|
|
527
500
|
- <code title="post /api/v2/database/sql">client.v2.database.<a href="./src/samplehc/resources/v2/database.py">execute_sql</a>(\*\*<a href="src/samplehc/types/v2/database_execute_sql_params.py">params</a>) -> <a href="./src/samplehc/types/v2/database_execute_sql_response.py">DatabaseExecuteSqlResponse</a></code>
|
|
528
|
-
|
|
529
|
-
## BrowserAutomation
|
|
530
|
-
|
|
531
|
-
### Availity
|
|
532
|
-
|
|
533
|
-
Types:
|
|
534
|
-
|
|
535
|
-
```python
|
|
536
|
-
from samplehc.types.v2.browser_automation import AvailitySubmitAppealResponse
|
|
537
|
-
```
|
|
538
|
-
|
|
539
|
-
Methods:
|
|
540
|
-
|
|
541
|
-
- <code title="post /api/v2/browser-automation/availity/submit-appeal">client.v2.browser_automation.availity.<a href="./src/samplehc/resources/v2/browser_automation/availity.py">submit_appeal</a>(\*\*<a href="src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py">params</a>) -> <a href="./src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py">AvailitySubmitAppealResponse</a></code>
|
|
@@ -1,30 +1,32 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "samplehc"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.15.0"
|
|
4
4
|
description = "The official Python library for the Sample Healthcare API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "Apache-2.0"
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "Sample Healthcare", email = "support@samplehc.com" },
|
|
9
9
|
]
|
|
10
|
+
|
|
10
11
|
dependencies = [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
"httpx>=0.23.0, <1",
|
|
13
|
+
"pydantic>=1.9.0, <3",
|
|
14
|
+
"typing-extensions>=4.10, <5",
|
|
15
|
+
"anyio>=3.5.0, <5",
|
|
16
|
+
"distro>=1.7.0, <2",
|
|
17
|
+
"sniffio",
|
|
17
18
|
]
|
|
18
|
-
|
|
19
|
+
|
|
20
|
+
requires-python = ">= 3.9"
|
|
19
21
|
classifiers = [
|
|
20
22
|
"Typing :: Typed",
|
|
21
23
|
"Intended Audience :: Developers",
|
|
22
|
-
"Programming Language :: Python :: 3.8",
|
|
23
24
|
"Programming Language :: Python :: 3.9",
|
|
24
25
|
"Programming Language :: Python :: 3.10",
|
|
25
26
|
"Programming Language :: Python :: 3.11",
|
|
26
27
|
"Programming Language :: Python :: 3.12",
|
|
27
28
|
"Programming Language :: Python :: 3.13",
|
|
29
|
+
"Programming Language :: Python :: 3.14",
|
|
28
30
|
"Operating System :: OS Independent",
|
|
29
31
|
"Operating System :: POSIX",
|
|
30
32
|
"Operating System :: MacOS",
|
|
@@ -39,14 +41,14 @@ Homepage = "https://github.com/samplehc/samplehc-python"
|
|
|
39
41
|
Repository = "https://github.com/samplehc/samplehc-python"
|
|
40
42
|
|
|
41
43
|
[project.optional-dependencies]
|
|
42
|
-
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.
|
|
44
|
+
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
|
|
43
45
|
|
|
44
46
|
[tool.rye]
|
|
45
47
|
managed = true
|
|
46
48
|
# version pins are in requirements-dev.lock
|
|
47
49
|
dev-dependencies = [
|
|
48
50
|
"pyright==1.1.399",
|
|
49
|
-
"mypy",
|
|
51
|
+
"mypy==1.17",
|
|
50
52
|
"respx",
|
|
51
53
|
"pytest",
|
|
52
54
|
"pytest-asyncio",
|
|
@@ -141,7 +143,7 @@ filterwarnings = [
|
|
|
141
143
|
# there are a couple of flags that are still disabled by
|
|
142
144
|
# default in strict mode as they are experimental and niche.
|
|
143
145
|
typeCheckingMode = "strict"
|
|
144
|
-
pythonVersion = "3.
|
|
146
|
+
pythonVersion = "3.9"
|
|
145
147
|
|
|
146
148
|
exclude = [
|
|
147
149
|
"_dev",
|
|
@@ -12,40 +12,45 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
aiohappyeyeballs==2.6.1
|
|
14
14
|
# via aiohttp
|
|
15
|
-
aiohttp==3.
|
|
15
|
+
aiohttp==3.13.2
|
|
16
16
|
# via httpx-aiohttp
|
|
17
17
|
# via samplehc
|
|
18
|
-
aiosignal==1.
|
|
18
|
+
aiosignal==1.4.0
|
|
19
19
|
# via aiohttp
|
|
20
|
-
annotated-types==0.
|
|
20
|
+
annotated-types==0.7.0
|
|
21
21
|
# via pydantic
|
|
22
|
-
anyio==4.
|
|
22
|
+
anyio==4.12.0
|
|
23
23
|
# via httpx
|
|
24
24
|
# via samplehc
|
|
25
|
-
argcomplete==3.
|
|
25
|
+
argcomplete==3.6.3
|
|
26
26
|
# via nox
|
|
27
27
|
async-timeout==5.0.1
|
|
28
28
|
# via aiohttp
|
|
29
|
-
attrs==25.
|
|
29
|
+
attrs==25.4.0
|
|
30
30
|
# via aiohttp
|
|
31
|
-
|
|
31
|
+
# via nox
|
|
32
|
+
backports-asyncio-runner==1.2.0
|
|
33
|
+
# via pytest-asyncio
|
|
34
|
+
certifi==2025.11.12
|
|
32
35
|
# via httpcore
|
|
33
36
|
# via httpx
|
|
34
|
-
colorlog==6.
|
|
37
|
+
colorlog==6.10.1
|
|
38
|
+
# via nox
|
|
39
|
+
dependency-groups==1.3.1
|
|
35
40
|
# via nox
|
|
36
|
-
dirty-equals==0.
|
|
37
|
-
distlib==0.
|
|
41
|
+
dirty-equals==0.11
|
|
42
|
+
distlib==0.4.0
|
|
38
43
|
# via virtualenv
|
|
39
|
-
distro==1.
|
|
44
|
+
distro==1.9.0
|
|
40
45
|
# via samplehc
|
|
41
|
-
exceptiongroup==1.
|
|
46
|
+
exceptiongroup==1.3.1
|
|
42
47
|
# via anyio
|
|
43
48
|
# via pytest
|
|
44
|
-
execnet==2.1.
|
|
49
|
+
execnet==2.1.2
|
|
45
50
|
# via pytest-xdist
|
|
46
|
-
filelock==3.
|
|
51
|
+
filelock==3.19.1
|
|
47
52
|
# via virtualenv
|
|
48
|
-
frozenlist==1.
|
|
53
|
+
frozenlist==1.8.0
|
|
49
54
|
# via aiohttp
|
|
50
55
|
# via aiosignal
|
|
51
56
|
h11==0.16.0
|
|
@@ -56,82 +61,89 @@ httpx==0.28.1
|
|
|
56
61
|
# via httpx-aiohttp
|
|
57
62
|
# via respx
|
|
58
63
|
# via samplehc
|
|
59
|
-
httpx-aiohttp==0.1.
|
|
64
|
+
httpx-aiohttp==0.1.9
|
|
60
65
|
# via samplehc
|
|
61
|
-
|
|
66
|
+
humanize==4.13.0
|
|
67
|
+
# via nox
|
|
68
|
+
idna==3.11
|
|
62
69
|
# via anyio
|
|
63
70
|
# via httpx
|
|
64
71
|
# via yarl
|
|
65
|
-
importlib-metadata==7.0
|
|
66
|
-
iniconfig==2.
|
|
72
|
+
importlib-metadata==8.7.0
|
|
73
|
+
iniconfig==2.1.0
|
|
67
74
|
# via pytest
|
|
68
75
|
markdown-it-py==3.0.0
|
|
69
76
|
# via rich
|
|
70
77
|
mdurl==0.1.2
|
|
71
78
|
# via markdown-it-py
|
|
72
|
-
multidict==6.
|
|
79
|
+
multidict==6.7.0
|
|
73
80
|
# via aiohttp
|
|
74
81
|
# via yarl
|
|
75
|
-
mypy==1.
|
|
76
|
-
mypy-extensions==1.
|
|
82
|
+
mypy==1.17.0
|
|
83
|
+
mypy-extensions==1.1.0
|
|
77
84
|
# via mypy
|
|
78
|
-
nodeenv==1.
|
|
85
|
+
nodeenv==1.9.1
|
|
79
86
|
# via pyright
|
|
80
|
-
nox==
|
|
81
|
-
packaging==
|
|
87
|
+
nox==2025.11.12
|
|
88
|
+
packaging==25.0
|
|
89
|
+
# via dependency-groups
|
|
82
90
|
# via nox
|
|
83
91
|
# via pytest
|
|
84
|
-
|
|
92
|
+
pathspec==0.12.1
|
|
93
|
+
# via mypy
|
|
94
|
+
platformdirs==4.4.0
|
|
85
95
|
# via virtualenv
|
|
86
|
-
pluggy==1.
|
|
96
|
+
pluggy==1.6.0
|
|
87
97
|
# via pytest
|
|
88
|
-
propcache==0.
|
|
98
|
+
propcache==0.4.1
|
|
89
99
|
# via aiohttp
|
|
90
100
|
# via yarl
|
|
91
|
-
pydantic==2.
|
|
101
|
+
pydantic==2.12.5
|
|
92
102
|
# via samplehc
|
|
93
|
-
pydantic-core==2.
|
|
103
|
+
pydantic-core==2.41.5
|
|
94
104
|
# via pydantic
|
|
95
|
-
pygments==2.
|
|
105
|
+
pygments==2.19.2
|
|
106
|
+
# via pytest
|
|
96
107
|
# via rich
|
|
97
108
|
pyright==1.1.399
|
|
98
|
-
pytest==8.
|
|
109
|
+
pytest==8.4.2
|
|
99
110
|
# via pytest-asyncio
|
|
100
111
|
# via pytest-xdist
|
|
101
|
-
pytest-asyncio==
|
|
102
|
-
pytest-xdist==3.
|
|
103
|
-
python-dateutil==2.
|
|
112
|
+
pytest-asyncio==1.2.0
|
|
113
|
+
pytest-xdist==3.8.0
|
|
114
|
+
python-dateutil==2.9.0.post0
|
|
104
115
|
# via time-machine
|
|
105
|
-
pytz==2023.3.post1
|
|
106
|
-
# via dirty-equals
|
|
107
116
|
respx==0.22.0
|
|
108
|
-
rich==
|
|
109
|
-
ruff==0.
|
|
110
|
-
|
|
111
|
-
# via nodeenv
|
|
112
|
-
six==1.16.0
|
|
117
|
+
rich==14.2.0
|
|
118
|
+
ruff==0.14.7
|
|
119
|
+
six==1.17.0
|
|
113
120
|
# via python-dateutil
|
|
114
|
-
sniffio==1.3.
|
|
115
|
-
# via anyio
|
|
121
|
+
sniffio==1.3.1
|
|
116
122
|
# via samplehc
|
|
117
|
-
time-machine==2.
|
|
118
|
-
tomli==2.0
|
|
123
|
+
time-machine==2.19.0
|
|
124
|
+
tomli==2.3.0
|
|
125
|
+
# via dependency-groups
|
|
119
126
|
# via mypy
|
|
127
|
+
# via nox
|
|
120
128
|
# via pytest
|
|
121
|
-
typing-extensions==4.
|
|
129
|
+
typing-extensions==4.15.0
|
|
130
|
+
# via aiosignal
|
|
122
131
|
# via anyio
|
|
132
|
+
# via exceptiongroup
|
|
123
133
|
# via multidict
|
|
124
134
|
# via mypy
|
|
125
135
|
# via pydantic
|
|
126
136
|
# via pydantic-core
|
|
127
137
|
# via pyright
|
|
138
|
+
# via pytest-asyncio
|
|
128
139
|
# via samplehc
|
|
129
140
|
# via typing-inspection
|
|
130
|
-
|
|
141
|
+
# via virtualenv
|
|
142
|
+
typing-inspection==0.4.2
|
|
131
143
|
# via pydantic
|
|
132
|
-
virtualenv==20.
|
|
144
|
+
virtualenv==20.35.4
|
|
133
145
|
# via nox
|
|
134
|
-
yarl==1.
|
|
146
|
+
yarl==1.22.0
|
|
135
147
|
# via aiohttp
|
|
136
|
-
zipp==3.
|
|
148
|
+
zipp==3.23.0
|
|
137
149
|
# via importlib-metadata
|
|
@@ -12,28 +12,28 @@
|
|
|
12
12
|
-e file:.
|
|
13
13
|
aiohappyeyeballs==2.6.1
|
|
14
14
|
# via aiohttp
|
|
15
|
-
aiohttp==3.
|
|
15
|
+
aiohttp==3.13.2
|
|
16
16
|
# via httpx-aiohttp
|
|
17
17
|
# via samplehc
|
|
18
|
-
aiosignal==1.
|
|
18
|
+
aiosignal==1.4.0
|
|
19
19
|
# via aiohttp
|
|
20
|
-
annotated-types==0.
|
|
20
|
+
annotated-types==0.7.0
|
|
21
21
|
# via pydantic
|
|
22
|
-
anyio==4.
|
|
22
|
+
anyio==4.12.0
|
|
23
23
|
# via httpx
|
|
24
24
|
# via samplehc
|
|
25
25
|
async-timeout==5.0.1
|
|
26
26
|
# via aiohttp
|
|
27
|
-
attrs==25.
|
|
27
|
+
attrs==25.4.0
|
|
28
28
|
# via aiohttp
|
|
29
|
-
certifi==
|
|
29
|
+
certifi==2025.11.12
|
|
30
30
|
# via httpcore
|
|
31
31
|
# via httpx
|
|
32
|
-
distro==1.
|
|
32
|
+
distro==1.9.0
|
|
33
33
|
# via samplehc
|
|
34
|
-
exceptiongroup==1.
|
|
34
|
+
exceptiongroup==1.3.1
|
|
35
35
|
# via anyio
|
|
36
|
-
frozenlist==1.
|
|
36
|
+
frozenlist==1.8.0
|
|
37
37
|
# via aiohttp
|
|
38
38
|
# via aiosignal
|
|
39
39
|
h11==0.16.0
|
|
@@ -43,33 +43,34 @@ httpcore==1.0.9
|
|
|
43
43
|
httpx==0.28.1
|
|
44
44
|
# via httpx-aiohttp
|
|
45
45
|
# via samplehc
|
|
46
|
-
httpx-aiohttp==0.1.
|
|
46
|
+
httpx-aiohttp==0.1.9
|
|
47
47
|
# via samplehc
|
|
48
|
-
idna==3.
|
|
48
|
+
idna==3.11
|
|
49
49
|
# via anyio
|
|
50
50
|
# via httpx
|
|
51
51
|
# via yarl
|
|
52
|
-
multidict==6.
|
|
52
|
+
multidict==6.7.0
|
|
53
53
|
# via aiohttp
|
|
54
54
|
# via yarl
|
|
55
|
-
propcache==0.
|
|
55
|
+
propcache==0.4.1
|
|
56
56
|
# via aiohttp
|
|
57
57
|
# via yarl
|
|
58
|
-
pydantic==2.
|
|
58
|
+
pydantic==2.12.5
|
|
59
59
|
# via samplehc
|
|
60
|
-
pydantic-core==2.
|
|
60
|
+
pydantic-core==2.41.5
|
|
61
61
|
# via pydantic
|
|
62
|
-
sniffio==1.3.
|
|
63
|
-
# via anyio
|
|
62
|
+
sniffio==1.3.1
|
|
64
63
|
# via samplehc
|
|
65
|
-
typing-extensions==4.
|
|
64
|
+
typing-extensions==4.15.0
|
|
65
|
+
# via aiosignal
|
|
66
66
|
# via anyio
|
|
67
|
+
# via exceptiongroup
|
|
67
68
|
# via multidict
|
|
68
69
|
# via pydantic
|
|
69
70
|
# via pydantic-core
|
|
70
71
|
# via samplehc
|
|
71
72
|
# via typing-inspection
|
|
72
|
-
typing-inspection==0.4.
|
|
73
|
+
typing-inspection==0.4.2
|
|
73
74
|
# via pydantic
|
|
74
|
-
yarl==1.
|
|
75
|
+
yarl==1.22.0
|
|
75
76
|
# via aiohttp
|
|
@@ -1247,9 +1247,12 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
|
|
|
1247
1247
|
*,
|
|
1248
1248
|
cast_to: Type[ResponseT],
|
|
1249
1249
|
body: Body | None = None,
|
|
1250
|
+
files: RequestFiles | None = None,
|
|
1250
1251
|
options: RequestOptions = {},
|
|
1251
1252
|
) -> ResponseT:
|
|
1252
|
-
opts = FinalRequestOptions.construct(
|
|
1253
|
+
opts = FinalRequestOptions.construct(
|
|
1254
|
+
method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
|
|
1255
|
+
)
|
|
1253
1256
|
return self.request(cast_to, opts)
|
|
1254
1257
|
|
|
1255
1258
|
def put(
|
|
@@ -1767,9 +1770,12 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1767
1770
|
*,
|
|
1768
1771
|
cast_to: Type[ResponseT],
|
|
1769
1772
|
body: Body | None = None,
|
|
1773
|
+
files: RequestFiles | None = None,
|
|
1770
1774
|
options: RequestOptions = {},
|
|
1771
1775
|
) -> ResponseT:
|
|
1772
|
-
opts = FinalRequestOptions.construct(
|
|
1776
|
+
opts = FinalRequestOptions.construct(
|
|
1777
|
+
method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
|
1778
|
+
)
|
|
1773
1779
|
return await self.request(cast_to, opts)
|
|
1774
1780
|
|
|
1775
1781
|
async def put(
|