samplehc 0.9.0__tar.gz → 0.10.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.10.0/.release-please-manifest.json +3 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/CHANGELOG.md +19 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/PKG-INFO +1 -1
- {samplehc-0.9.0 → samplehc-0.10.0}/api.md +2 -2
- {samplehc-0.9.0 → samplehc-0.10.0}/pyproject.toml +2 -1
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_models.py +1 -1
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_version.py +1 -1
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/clearinghouse/payers.py +18 -20
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/browser_agent_invoke_response.py +3 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse/__init__.py +2 -2
- samplehc-0.9.0/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_params.py → samplehc-0.10.0/src/samplehc/types/v2/clearinghouse/payer_search_params.py +2 -2
- samplehc-0.9.0/src/samplehc/types/v2/clearinghouse/payer_retrieve_search_response.py → samplehc-0.10.0/src/samplehc/types/v2/clearinghouse/payer_search_response.py +2 -2
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/clearinghouse/test_payers.py +19 -19
- samplehc-0.9.0/.release-please-manifest.json +0 -3
- {samplehc-0.9.0 → samplehc-0.10.0}/.gitignore +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/CONTRIBUTING.md +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/LICENSE +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/README.md +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/SECURITY.md +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/bin/check-release-environment +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/bin/publish-pypi +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/examples/.keep +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/mypy.ini +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/noxfile.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/release-please-config.json +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/requirements-dev.lock +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/requirements.lock +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_base_client.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_client.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_compat.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_constants.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_exceptions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_files.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_qs.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_resource.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_streaming.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_types.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_logs.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_proxy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_reflection.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_resources_proxy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_streams.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_sync.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_transform.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_typing.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/_utils/_utils.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/lib/.keep +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/py.typed +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v1/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v1/v1.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/async_results.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/browser_agents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/browser_automation/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/browser_automation/availity.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/browser_automation/browser_automation.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/clearinghouse/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/clearinghouse/claim.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/clearinghouse/clearinghouse.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/communication.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/database.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/documents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/formats.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/legacy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/pdf_template.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/documents/templates.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/events.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/integrations/integrations.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/integrations/xcures.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/hie/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/hie/adt.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/hie/documents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/hie/hie.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/bank/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/bank/bank.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/bank/transactions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/careviso.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/clinical_questions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/prior_authorizations/prior_authorizations.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/integrations.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/kno2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/kno2/kno2.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/kno2/messages.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/snowflake.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/institutions/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/institutions/institutions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/institutions/orders.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/insurance.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/ledger.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/orders.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/patients.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/policies.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/tasks/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/tasks/state.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/tasks/tasks.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/v2.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/workflow_runs/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/workflow_runs/step.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/workflow_runs/workflow_runs.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/workflows.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v1/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v1_query_audit_logs_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v1_query_audit_logs_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v1_sql_execute_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v1_sql_execute_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/async_result_retrieve_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/async_result_sleep_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/async_result_sleep_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/browser_agent_invoke_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/browser_automation/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/browser_automation/availity_submit_appeal_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse/claim_submit_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse/claim_submit_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse/payer_list_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_calculate_patient_cost_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_check_claim_status_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_check_eligibility_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_coordination_of_benefits_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_run_discovery_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/clearinghouse_run_discovery_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/communication_send_email_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/communication_send_fax_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/communication_send_fax_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/communication_send_letter_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/communication_send_letter_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/database_execute_sql_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/database_execute_sql_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_classify_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_classify_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_combine_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_combine_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_create_from_splits_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_create_from_splits_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_extract_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_extract_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_generate_csv_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_generate_csv_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_presigned_upload_url_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_presigned_upload_url_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_retrieve_csv_content_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_retrieve_metadata_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_retrieve_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_search_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_search_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_split_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_split_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_transform_json_to_html_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_transform_json_to_html_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/document_unzip_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/format_create_pdf_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/format_create_pdf_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/legacy_extract_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/legacy_extract_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/legacy_reason_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/legacy_reason_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/pdf_template_retrieve_metadata_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/template_generate_document_async_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/template_generate_document_async_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/template_render_document_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/documents/template_render_document_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/event_emit_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/event_emit_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/events/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/events/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/events/integrations/xcure_make_request_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/hie/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/hie/adt_subscribe_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/hie/document_query_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/hie/document_query_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/hie/document_upload_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/bank/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/bank/transaction_sync_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/careviso_get_payers_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_create_draft_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_retrieve_record_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_submit_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorization_update_record_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_list_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian/prior_authorizations/clinical_question_update_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_get_submission_requirements_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_list_payers_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_list_payers_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_list_services_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/glidian_list_services_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/kno2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/kno2/message_get_attachment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/kno2/message_retrieve_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/snowflake_query_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/integrations/snowflake_query_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/institution_list_outstanding_accounts_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/institution_retrieve_outstanding_orders_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/institutions/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/institutions/order_retrieve_balance_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/insurance_list_outstanding_accounts_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/order_retrieve_balances_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/order_retrieve_batch_balances_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger/patient_list_outstanding_accounts_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_assign_invoice_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_assign_invoice_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_claim_adjustment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_claim_adjustment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_claim_payment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_claim_payment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_institution_adjustment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_institution_adjustment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_institution_payment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_institution_payment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_new_order_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_new_order_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_order_writeoff_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_order_writeoff_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_patient_adjustment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_patient_adjustment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_patient_payment_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_patient_payment_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_post_remittance_accepted_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_post_remittance_accepted_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_reverse_entry_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/ledger_reverse_entry_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_companies_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_companies_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_plans_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_plans_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_list_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_retrieve_presigned_url_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/policy_retrieve_text_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_cancel_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_complete_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_complete_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_get_suspended_payload_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_retrieve_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_retry_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_update_screen_time_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/task_update_screen_time_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/tasks/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/tasks/state_get_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/tasks/state_update_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/tasks/state_update_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_deploy_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_query_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_query_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_run_get_start_data_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_run_resume_when_complete_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_run_retrieve_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_runs/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_runs/step_get_output_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_start_params.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/types/v2/workflow_start_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/test_v1.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v1/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/browser_automation/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/browser_automation/test_availity.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/clearinghouse/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/clearinghouse/test_claim.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/documents/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/documents/test_formats.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/documents/test_legacy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/documents/test_pdf_template.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/documents/test_templates.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/events/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/events/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/events/integrations/test_xcures.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/hie/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/hie/test_adt.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/hie/test_documents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/bank/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/bank/test_transactions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/glidian/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/glidian/prior_authorizations/test_clinical_questions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/glidian/test_prior_authorizations.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/kno2/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/kno2/test_messages.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/test_careviso.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/test_glidian.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/integrations/test_snowflake.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/institutions/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/institutions/test_orders.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/test_institutions.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/test_insurance.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/test_orders.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/ledger/test_patients.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/tasks/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/tasks/test_state.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_async_results.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_browser_agents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_clearinghouse.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_communication.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_database.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_documents.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_events.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_ledger.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_policies.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_tasks.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_workflow_runs.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/test_workflows.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/workflow_runs/__init__.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/api_resources/v2/workflow_runs/test_step.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/conftest.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/sample_file.txt +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_client.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_deepcopy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_extract_files.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_files.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_models.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_qs.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_required_args.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_response.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_streaming.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_transform.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_utils/test_proxy.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/test_utils/test_typing.py +0 -0
- {samplehc-0.9.0 → samplehc-0.10.0}/tests/utils.py +0 -0
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.0 (2025-08-27)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.9.0...v0.10.0](https://github.com/samplehc/samplehc-python/compare/v0.9.0...v0.10.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([6b99dd9](https://github.com/samplehc/samplehc-python/commit/6b99dd9f852968200e20c1b2fafb45f7dcc33799))
|
|
10
|
+
* **api:** manual updates ([b14b6f6](https://github.com/samplehc/samplehc-python/commit/b14b6f60fdfe67f4d07ede1122615bc0809fcb82))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* avoid newer type syntax ([8d2b951](https://github.com/samplehc/samplehc-python/commit/8d2b951e04e5969d8d196b838bdf982f51061929))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Chores
|
|
19
|
+
|
|
20
|
+
* **internal:** update pyright exclude list ([71e91cf](https://github.com/samplehc/samplehc-python/commit/71e91cf9a06af61351816dcd78741d36d6b0313f))
|
|
21
|
+
|
|
3
22
|
## 0.9.0 (2025-08-26)
|
|
4
23
|
|
|
5
24
|
Full Changelog: [v0.8.0...v0.9.0](https://github.com/samplehc/samplehc-python/compare/v0.8.0...v0.9.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: samplehc
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.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
|
|
@@ -238,13 +238,13 @@ Methods:
|
|
|
238
238
|
Types:
|
|
239
239
|
|
|
240
240
|
```python
|
|
241
|
-
from samplehc.types.v2.clearinghouse import PayerListResponse,
|
|
241
|
+
from samplehc.types.v2.clearinghouse import PayerListResponse, PayerSearchResponse
|
|
242
242
|
```
|
|
243
243
|
|
|
244
244
|
Methods:
|
|
245
245
|
|
|
246
246
|
- <code title="get /api/v2/clearinghouse/payers">client.v2.clearinghouse.payers.<a href="./src/samplehc/resources/v2/clearinghouse/payers.py">list</a>() -> <a href="./src/samplehc/types/v2/clearinghouse/payer_list_response.py">PayerListResponse</a></code>
|
|
247
|
-
- <code title="get /api/v2/clearinghouse/payers/search">client.v2.clearinghouse.payers.<a href="./src/samplehc/resources/v2/clearinghouse/payers.py">
|
|
247
|
+
- <code title="get /api/v2/clearinghouse/payers/search">client.v2.clearinghouse.payers.<a href="./src/samplehc/resources/v2/clearinghouse/payers.py">search</a>(\*\*<a href="src/samplehc/types/v2/clearinghouse/payer_search_params.py">params</a>) -> <a href="./src/samplehc/types/v2/clearinghouse/payer_search_response.py">PayerSearchResponse</a></code>
|
|
248
248
|
|
|
249
249
|
### Claim
|
|
250
250
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "samplehc"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.10.0"
|
|
4
4
|
description = "The official Python library for the Sample Healthcare API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -148,6 +148,7 @@ exclude = [
|
|
|
148
148
|
"_dev",
|
|
149
149
|
".venv",
|
|
150
150
|
".nox",
|
|
151
|
+
".git",
|
|
151
152
|
]
|
|
152
153
|
|
|
153
154
|
reportImplicitOverride = true
|
|
@@ -304,7 +304,7 @@ class BaseModel(pydantic.BaseModel):
|
|
|
304
304
|
exclude_none=exclude_none,
|
|
305
305
|
)
|
|
306
306
|
|
|
307
|
-
return cast(dict[str, Any], json_safe(dumped)) if mode == "json" else dumped
|
|
307
|
+
return cast("dict[str, Any]", json_safe(dumped)) if mode == "json" else dumped
|
|
308
308
|
|
|
309
309
|
@override
|
|
310
310
|
def model_dump_json(
|
|
@@ -15,9 +15,9 @@ from ...._response import (
|
|
|
15
15
|
async_to_streamed_response_wrapper,
|
|
16
16
|
)
|
|
17
17
|
from ...._base_client import make_request_options
|
|
18
|
-
from ....types.v2.clearinghouse import
|
|
18
|
+
from ....types.v2.clearinghouse import payer_search_params
|
|
19
19
|
from ....types.v2.clearinghouse.payer_list_response import PayerListResponse
|
|
20
|
-
from ....types.v2.clearinghouse.
|
|
20
|
+
from ....types.v2.clearinghouse.payer_search_response import PayerSearchResponse
|
|
21
21
|
|
|
22
22
|
__all__ = ["PayersResource", "AsyncPayersResource"]
|
|
23
23
|
|
|
@@ -61,7 +61,7 @@ class PayersResource(SyncAPIResource):
|
|
|
61
61
|
cast_to=PayerListResponse,
|
|
62
62
|
)
|
|
63
63
|
|
|
64
|
-
def
|
|
64
|
+
def search(
|
|
65
65
|
self,
|
|
66
66
|
*,
|
|
67
67
|
query: str,
|
|
@@ -71,7 +71,7 @@ class PayersResource(SyncAPIResource):
|
|
|
71
71
|
extra_query: Query | None = None,
|
|
72
72
|
extra_body: Body | None = None,
|
|
73
73
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
74
|
-
) ->
|
|
74
|
+
) -> PayerSearchResponse:
|
|
75
75
|
"""
|
|
76
76
|
Searches for payers based on the provided search criteria.
|
|
77
77
|
|
|
@@ -93,9 +93,9 @@ class PayersResource(SyncAPIResource):
|
|
|
93
93
|
extra_query=extra_query,
|
|
94
94
|
extra_body=extra_body,
|
|
95
95
|
timeout=timeout,
|
|
96
|
-
query=maybe_transform({"query": query},
|
|
96
|
+
query=maybe_transform({"query": query}, payer_search_params.PayerSearchParams),
|
|
97
97
|
),
|
|
98
|
-
cast_to=
|
|
98
|
+
cast_to=PayerSearchResponse,
|
|
99
99
|
)
|
|
100
100
|
|
|
101
101
|
|
|
@@ -138,7 +138,7 @@ class AsyncPayersResource(AsyncAPIResource):
|
|
|
138
138
|
cast_to=PayerListResponse,
|
|
139
139
|
)
|
|
140
140
|
|
|
141
|
-
async def
|
|
141
|
+
async def search(
|
|
142
142
|
self,
|
|
143
143
|
*,
|
|
144
144
|
query: str,
|
|
@@ -148,7 +148,7 @@ class AsyncPayersResource(AsyncAPIResource):
|
|
|
148
148
|
extra_query: Query | None = None,
|
|
149
149
|
extra_body: Body | None = None,
|
|
150
150
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
151
|
-
) ->
|
|
151
|
+
) -> PayerSearchResponse:
|
|
152
152
|
"""
|
|
153
153
|
Searches for payers based on the provided search criteria.
|
|
154
154
|
|
|
@@ -170,11 +170,9 @@ class AsyncPayersResource(AsyncAPIResource):
|
|
|
170
170
|
extra_query=extra_query,
|
|
171
171
|
extra_body=extra_body,
|
|
172
172
|
timeout=timeout,
|
|
173
|
-
query=await async_maybe_transform(
|
|
174
|
-
{"query": query}, payer_retrieve_search_params.PayerRetrieveSearchParams
|
|
175
|
-
),
|
|
173
|
+
query=await async_maybe_transform({"query": query}, payer_search_params.PayerSearchParams),
|
|
176
174
|
),
|
|
177
|
-
cast_to=
|
|
175
|
+
cast_to=PayerSearchResponse,
|
|
178
176
|
)
|
|
179
177
|
|
|
180
178
|
|
|
@@ -185,8 +183,8 @@ class PayersResourceWithRawResponse:
|
|
|
185
183
|
self.list = to_raw_response_wrapper(
|
|
186
184
|
payers.list,
|
|
187
185
|
)
|
|
188
|
-
self.
|
|
189
|
-
payers.
|
|
186
|
+
self.search = to_raw_response_wrapper(
|
|
187
|
+
payers.search,
|
|
190
188
|
)
|
|
191
189
|
|
|
192
190
|
|
|
@@ -197,8 +195,8 @@ class AsyncPayersResourceWithRawResponse:
|
|
|
197
195
|
self.list = async_to_raw_response_wrapper(
|
|
198
196
|
payers.list,
|
|
199
197
|
)
|
|
200
|
-
self.
|
|
201
|
-
payers.
|
|
198
|
+
self.search = async_to_raw_response_wrapper(
|
|
199
|
+
payers.search,
|
|
202
200
|
)
|
|
203
201
|
|
|
204
202
|
|
|
@@ -209,8 +207,8 @@ class PayersResourceWithStreamingResponse:
|
|
|
209
207
|
self.list = to_streamed_response_wrapper(
|
|
210
208
|
payers.list,
|
|
211
209
|
)
|
|
212
|
-
self.
|
|
213
|
-
payers.
|
|
210
|
+
self.search = to_streamed_response_wrapper(
|
|
211
|
+
payers.search,
|
|
214
212
|
)
|
|
215
213
|
|
|
216
214
|
|
|
@@ -221,6 +219,6 @@ class AsyncPayersResourceWithStreamingResponse:
|
|
|
221
219
|
self.list = async_to_streamed_response_wrapper(
|
|
222
220
|
payers.list,
|
|
223
221
|
)
|
|
224
|
-
self.
|
|
225
|
-
payers.
|
|
222
|
+
self.search = async_to_streamed_response_wrapper(
|
|
223
|
+
payers.search,
|
|
226
224
|
)
|
|
@@ -10,3 +10,6 @@ __all__ = ["BrowserAgentInvokeResponse"]
|
|
|
10
10
|
class BrowserAgentInvokeResponse(BaseModel):
|
|
11
11
|
async_result_id: str = FieldInfo(alias="asyncResultId")
|
|
12
12
|
"""ID to track the browser agent invocation status"""
|
|
13
|
+
|
|
14
|
+
browser_agent_run_id: str = FieldInfo(alias="browserAgentRunId")
|
|
15
|
+
"""ID to track the browser agent run"""
|
|
@@ -4,6 +4,6 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
from .claim_submit_params import ClaimSubmitParams as ClaimSubmitParams
|
|
6
6
|
from .payer_list_response import PayerListResponse as PayerListResponse
|
|
7
|
+
from .payer_search_params import PayerSearchParams as PayerSearchParams
|
|
7
8
|
from .claim_submit_response import ClaimSubmitResponse as ClaimSubmitResponse
|
|
8
|
-
from .
|
|
9
|
-
from .payer_retrieve_search_response import PayerRetrieveSearchResponse as PayerRetrieveSearchResponse
|
|
9
|
+
from .payer_search_response import PayerSearchResponse as PayerSearchResponse
|
|
@@ -4,9 +4,9 @@ from __future__ import annotations
|
|
|
4
4
|
|
|
5
5
|
from typing_extensions import Required, TypedDict
|
|
6
6
|
|
|
7
|
-
__all__ = ["
|
|
7
|
+
__all__ = ["PayerSearchParams"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
10
|
+
class PayerSearchParams(TypedDict, total=False):
|
|
11
11
|
query: Required[str]
|
|
12
12
|
"""The search query (e.g. name, ID, etc.) for the payer."""
|
|
@@ -6,7 +6,7 @@ from pydantic import Field as FieldInfo
|
|
|
6
6
|
|
|
7
7
|
from ...._models import BaseModel
|
|
8
8
|
|
|
9
|
-
__all__ = ["
|
|
9
|
+
__all__ = ["PayerSearchResponse", "Payer", "PayerPayer"]
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
class PayerPayer(BaseModel):
|
|
@@ -27,5 +27,5 @@ class Payer(BaseModel):
|
|
|
27
27
|
score: float
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class
|
|
30
|
+
class PayerSearchResponse(BaseModel):
|
|
31
31
|
payers: List[Payer]
|
|
@@ -9,7 +9,7 @@ import pytest
|
|
|
9
9
|
|
|
10
10
|
from samplehc import SampleHealthcare, AsyncSampleHealthcare
|
|
11
11
|
from tests.utils import assert_matches_type
|
|
12
|
-
from samplehc.types.v2.clearinghouse import PayerListResponse,
|
|
12
|
+
from samplehc.types.v2.clearinghouse import PayerListResponse, PayerSearchResponse
|
|
13
13
|
|
|
14
14
|
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
|
|
15
15
|
|
|
@@ -47,35 +47,35 @@ class TestPayers:
|
|
|
47
47
|
|
|
48
48
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
49
49
|
@parametrize
|
|
50
|
-
def
|
|
51
|
-
payer = client.v2.clearinghouse.payers.
|
|
50
|
+
def test_method_search(self, client: SampleHealthcare) -> None:
|
|
51
|
+
payer = client.v2.clearinghouse.payers.search(
|
|
52
52
|
query="query",
|
|
53
53
|
)
|
|
54
|
-
assert_matches_type(
|
|
54
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
55
55
|
|
|
56
56
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
57
57
|
@parametrize
|
|
58
|
-
def
|
|
59
|
-
response = client.v2.clearinghouse.payers.with_raw_response.
|
|
58
|
+
def test_raw_response_search(self, client: SampleHealthcare) -> None:
|
|
59
|
+
response = client.v2.clearinghouse.payers.with_raw_response.search(
|
|
60
60
|
query="query",
|
|
61
61
|
)
|
|
62
62
|
|
|
63
63
|
assert response.is_closed is True
|
|
64
64
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
65
65
|
payer = response.parse()
|
|
66
|
-
assert_matches_type(
|
|
66
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
67
67
|
|
|
68
68
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
69
69
|
@parametrize
|
|
70
|
-
def
|
|
71
|
-
with client.v2.clearinghouse.payers.with_streaming_response.
|
|
70
|
+
def test_streaming_response_search(self, client: SampleHealthcare) -> None:
|
|
71
|
+
with client.v2.clearinghouse.payers.with_streaming_response.search(
|
|
72
72
|
query="query",
|
|
73
73
|
) as response:
|
|
74
74
|
assert not response.is_closed
|
|
75
75
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
76
76
|
|
|
77
77
|
payer = response.parse()
|
|
78
|
-
assert_matches_type(
|
|
78
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
79
79
|
|
|
80
80
|
assert cast(Any, response.is_closed) is True
|
|
81
81
|
|
|
@@ -115,34 +115,34 @@ class TestAsyncPayers:
|
|
|
115
115
|
|
|
116
116
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
117
117
|
@parametrize
|
|
118
|
-
async def
|
|
119
|
-
payer = await async_client.v2.clearinghouse.payers.
|
|
118
|
+
async def test_method_search(self, async_client: AsyncSampleHealthcare) -> None:
|
|
119
|
+
payer = await async_client.v2.clearinghouse.payers.search(
|
|
120
120
|
query="query",
|
|
121
121
|
)
|
|
122
|
-
assert_matches_type(
|
|
122
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
123
123
|
|
|
124
124
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
125
125
|
@parametrize
|
|
126
|
-
async def
|
|
127
|
-
response = await async_client.v2.clearinghouse.payers.with_raw_response.
|
|
126
|
+
async def test_raw_response_search(self, async_client: AsyncSampleHealthcare) -> None:
|
|
127
|
+
response = await async_client.v2.clearinghouse.payers.with_raw_response.search(
|
|
128
128
|
query="query",
|
|
129
129
|
)
|
|
130
130
|
|
|
131
131
|
assert response.is_closed is True
|
|
132
132
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
133
133
|
payer = await response.parse()
|
|
134
|
-
assert_matches_type(
|
|
134
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
135
135
|
|
|
136
136
|
@pytest.mark.skip(reason="Prism tests are disabled")
|
|
137
137
|
@parametrize
|
|
138
|
-
async def
|
|
139
|
-
async with async_client.v2.clearinghouse.payers.with_streaming_response.
|
|
138
|
+
async def test_streaming_response_search(self, async_client: AsyncSampleHealthcare) -> None:
|
|
139
|
+
async with async_client.v2.clearinghouse.payers.with_streaming_response.search(
|
|
140
140
|
query="query",
|
|
141
141
|
) as response:
|
|
142
142
|
assert not response.is_closed
|
|
143
143
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
144
144
|
|
|
145
145
|
payer = await response.parse()
|
|
146
|
-
assert_matches_type(
|
|
146
|
+
assert_matches_type(PayerSearchResponse, payer, path=["response"])
|
|
147
147
|
|
|
148
148
|
assert cast(Any, response.is_closed) is True
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/integrations/__init__.py
RENAMED
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/events/integrations/integrations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/bank/transactions.py
RENAMED
|
File without changes
|
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/__init__.py
RENAMED
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/integrations/glidian/glidian.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/institutions/__init__.py
RENAMED
|
File without changes
|
{samplehc-0.9.0 → samplehc-0.10.0}/src/samplehc/resources/v2/ledger/institutions/institutions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|