bluehive 0.1.0a19__tar.gz → 0.1.0a21__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.
- bluehive-0.1.0a21/.release-please-manifest.json +3 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/CHANGELOG.md +28 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/PKG-INFO +1 -1
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/pyproject.toml +9 -7
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/requirements-dev.lock +59 -49
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/requirements.lock +16 -15
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_base_client.py +8 -2
- bluehive-0.1.0a21/src/bluehive/_client.py +784 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_types.py +3 -2
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_version.py +1 -1
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/database_check_health_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_create_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_delete_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_link_user_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_list_response.py +6 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_retrieve_response.py +6 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_unlink_user_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_update_response.py +2 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/hl7_send_results_params.py +2 -0
- bluehive-0.1.0a19/.release-please-manifest.json +0 -3
- bluehive-0.1.0a19/src/bluehive/_client.py +0 -476
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/.gitignore +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/CONTRIBUTING.md +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/LICENSE +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/README.md +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/SECURITY.md +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/api.md +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/bin/check-release-environment +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/bin/publish-pypi +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/examples/.keep +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/noxfile.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/release-please-config.json +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_compat.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_constants.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_exceptions.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_files.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_models.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_qs.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_resource.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_streaming.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_compat.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_datetime_parse.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_logs.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_proxy.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_reflection.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_resources_proxy.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_streams.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_sync.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_transform.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_typing.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/_utils/_utils.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/lib/.keep +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/py.typed +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/database.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/employees.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/employers/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/employers/employers.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/employers/service_bundles.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/fax.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/health.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/hl7.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/integrations.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/orders.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/providers.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/resources/version.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_create_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_link_user_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_list_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_unlink_user_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employee_update_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employer_create_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employer_create_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employer_list_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employer_retrieve_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_create_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_create_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_list_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_retrieve_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_update_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/employers/service_bundle_update_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/fax_list_providers_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/fax_retrieve_status_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/fax_send_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/fax_send_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/health_check_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/hl7_send_results_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/integration_check_active_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/integration_list_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_create_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_create_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_retrieve_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_retrieve_results_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_retrieve_results_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_schedule_appointment_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_schedule_appointment_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_send_for_employee_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_send_for_employee_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_update_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_update_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_update_status_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_update_status_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_upload_results_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/order_upload_results_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/provider_lookup_params.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/provider_lookup_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/src/bluehive/types/version_retrieve_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/employers/__init__.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/employers/test_service_bundles.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_database.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_employees.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_employers.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_fax.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_health.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_hl7.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_integrations.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_orders.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_providers.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/api_resources/test_version.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/conftest.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/sample_file.txt +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_client.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_deepcopy.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_extract_files.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_files.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_models.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_qs.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_required_args.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_response.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_streaming.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_transform.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_utils/test_datetime_parse.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_utils/test_proxy.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/test_utils/test_typing.py +0 -0
- {bluehive-0.1.0a19 → bluehive-0.1.0a21}/tests/utils.py +0 -0
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.21 (2025-12-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/bluehive-health/bluehive-sdk-python/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* use async_to_httpx_files in patch method ([14c87ff](https://github.com/bluehive-health/bluehive-sdk-python/commit/14c87ff4348ff9f90a713febca9066b7767881aa))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* add missing docstrings ([cbf9d6f](https://github.com/bluehive-health/bluehive-sdk-python/commit/cbf9d6f0311683846712898bdbe50b648f01cc94))
|
|
15
|
+
* **internal:** add missing files argument to base client ([26d47db](https://github.com/bluehive-health/bluehive-sdk-python/commit/26d47db6f1a45c7dd924ad138ad206283a7cf5f4))
|
|
16
|
+
* speedup initial import ([c84ca97](https://github.com/bluehive-health/bluehive-sdk-python/commit/c84ca97cd139339f5e3b0448839f1a8f48596337))
|
|
17
|
+
|
|
18
|
+
## 0.1.0-alpha.20 (2025-12-09)
|
|
19
|
+
|
|
20
|
+
Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/bluehive-health/bluehive-sdk-python/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **types:** allow pyright to infer TypedDict types within SequenceNotStr ([6751a7b](https://github.com/bluehive-health/bluehive-sdk-python/commit/6751a7bedafce25c6c29de3a266baf78ee70da28))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Chores
|
|
28
|
+
|
|
29
|
+
* update lockfile ([978ce50](https://github.com/bluehive-health/bluehive-sdk-python/commit/978ce50efcbed885fc4e51f84e99e5bdf4b7122d))
|
|
30
|
+
|
|
3
31
|
## 0.1.0-alpha.19 (2025-11-28)
|
|
4
32
|
|
|
5
33
|
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/bluehive-health/bluehive-sdk-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: bluehive
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a21
|
|
4
4
|
Summary: The official Python library for the bluehive API
|
|
5
5
|
Project-URL: Homepage, https://github.com/bluehive-health/bluehive-sdk-python
|
|
6
6
|
Project-URL: Repository, https://github.com/bluehive-health/bluehive-sdk-python
|
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "bluehive"
|
|
3
|
-
version = "0.1.0-alpha.
|
|
3
|
+
version = "0.1.0-alpha.21"
|
|
4
4
|
description = "The official Python library for the bluehive API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "Apache-2.0"
|
|
7
7
|
authors = [
|
|
8
8
|
{ name = "BlueHive", email = "wreiske@bluehive.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
|
]
|
|
19
|
+
|
|
18
20
|
requires-python = ">= 3.9"
|
|
19
21
|
classifiers = [
|
|
20
22
|
"Typing :: Typed",
|
|
@@ -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 bluehive
|
|
17
17
|
# via httpx-aiohttp
|
|
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 bluehive
|
|
24
24
|
# via httpx
|
|
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 bluehive
|
|
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
|
|
@@ -58,82 +63,87 @@ httpx==0.28.1
|
|
|
58
63
|
# via respx
|
|
59
64
|
httpx-aiohttp==0.1.9
|
|
60
65
|
# via bluehive
|
|
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
82
|
mypy==1.17.0
|
|
76
|
-
mypy-extensions==1.
|
|
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
|
|
85
93
|
# via mypy
|
|
86
|
-
platformdirs==
|
|
94
|
+
platformdirs==4.4.0
|
|
87
95
|
# via virtualenv
|
|
88
|
-
pluggy==1.
|
|
96
|
+
pluggy==1.6.0
|
|
89
97
|
# via pytest
|
|
90
|
-
propcache==0.
|
|
98
|
+
propcache==0.4.1
|
|
91
99
|
# via aiohttp
|
|
92
100
|
# via yarl
|
|
93
|
-
pydantic==2.
|
|
101
|
+
pydantic==2.12.5
|
|
94
102
|
# via bluehive
|
|
95
|
-
pydantic-core==2.
|
|
103
|
+
pydantic-core==2.41.5
|
|
96
104
|
# via pydantic
|
|
97
|
-
pygments==2.
|
|
105
|
+
pygments==2.19.2
|
|
106
|
+
# via pytest
|
|
98
107
|
# via rich
|
|
99
108
|
pyright==1.1.399
|
|
100
|
-
pytest==8.
|
|
109
|
+
pytest==8.4.2
|
|
101
110
|
# via pytest-asyncio
|
|
102
111
|
# via pytest-xdist
|
|
103
|
-
pytest-asyncio==
|
|
104
|
-
pytest-xdist==3.
|
|
105
|
-
python-dateutil==2.
|
|
112
|
+
pytest-asyncio==1.2.0
|
|
113
|
+
pytest-xdist==3.8.0
|
|
114
|
+
python-dateutil==2.9.0.post0
|
|
106
115
|
# via time-machine
|
|
107
|
-
pytz==2023.3.post1
|
|
108
|
-
# via dirty-equals
|
|
109
116
|
respx==0.22.0
|
|
110
|
-
rich==
|
|
111
|
-
ruff==0.
|
|
112
|
-
|
|
113
|
-
# via nodeenv
|
|
114
|
-
six==1.16.0
|
|
117
|
+
rich==14.2.0
|
|
118
|
+
ruff==0.14.7
|
|
119
|
+
six==1.17.0
|
|
115
120
|
# via python-dateutil
|
|
116
|
-
sniffio==1.3.
|
|
117
|
-
# via anyio
|
|
121
|
+
sniffio==1.3.1
|
|
118
122
|
# via bluehive
|
|
119
|
-
time-machine==2.
|
|
120
|
-
tomli==2.0
|
|
123
|
+
time-machine==2.19.0
|
|
124
|
+
tomli==2.3.0
|
|
125
|
+
# via dependency-groups
|
|
121
126
|
# via mypy
|
|
127
|
+
# via nox
|
|
122
128
|
# via pytest
|
|
123
|
-
typing-extensions==4.
|
|
129
|
+
typing-extensions==4.15.0
|
|
130
|
+
# via aiosignal
|
|
124
131
|
# via anyio
|
|
125
132
|
# via bluehive
|
|
133
|
+
# via exceptiongroup
|
|
126
134
|
# via multidict
|
|
127
135
|
# via mypy
|
|
128
136
|
# via pydantic
|
|
129
137
|
# via pydantic-core
|
|
130
138
|
# via pyright
|
|
139
|
+
# via pytest-asyncio
|
|
131
140
|
# via typing-inspection
|
|
132
|
-
|
|
141
|
+
# via virtualenv
|
|
142
|
+
typing-inspection==0.4.2
|
|
133
143
|
# via pydantic
|
|
134
|
-
virtualenv==20.
|
|
144
|
+
virtualenv==20.35.4
|
|
135
145
|
# via nox
|
|
136
|
-
yarl==1.
|
|
146
|
+
yarl==1.22.0
|
|
137
147
|
# via aiohttp
|
|
138
|
-
zipp==3.
|
|
148
|
+
zipp==3.23.0
|
|
139
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 bluehive
|
|
17
17
|
# via httpx-aiohttp
|
|
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 bluehive
|
|
24
24
|
# via httpx
|
|
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 bluehive
|
|
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
|
|
@@ -45,31 +45,32 @@ httpx==0.28.1
|
|
|
45
45
|
# via httpx-aiohttp
|
|
46
46
|
httpx-aiohttp==0.1.9
|
|
47
47
|
# via bluehive
|
|
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
58
|
pydantic==2.12.5
|
|
59
59
|
# via bluehive
|
|
60
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 bluehive
|
|
65
64
|
typing-extensions==4.15.0
|
|
65
|
+
# via aiosignal
|
|
66
66
|
# via anyio
|
|
67
67
|
# via bluehive
|
|
68
|
+
# via exceptiongroup
|
|
68
69
|
# via multidict
|
|
69
70
|
# via pydantic
|
|
70
71
|
# via pydantic-core
|
|
71
72
|
# via typing-inspection
|
|
72
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(
|