Skip to content

Commit c0d80c9

Browse files
authored
Merge pull request #607 from orbcorp/release-please--branches--main--changes--next
release: 3.18.1
2 parents cf4def7 + 7072629 commit c0d80c9

File tree

9 files changed

+17
-10
lines changed

9 files changed

+17
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.18.0"
2+
".": "3.18.1"
33
}

.stats.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
configured_endpoints: 103
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-36a6db97756e8658369c9af3c0ac532ecacb032e5b8f6211094dcb4052943ff3.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-95a3d7780935a38e0cf076d4ad2d68bd1a5641bced8398d972db2e92751d364a.yml
3+
openapi_spec_hash: 9ebe818c4ad4f2d9c4e473b5192d7544
4+
config_hash: 3dc5bc1df028fc7301fb2ada9846f038

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 3.18.1 (2025-04-02)
4+
5+
Full Changelog: [v3.18.0...v3.18.1](https://github.com/orbcorp/orb-python/compare/v3.18.0...v3.18.1)
6+
7+
### Chores
8+
9+
* fix typos ([#606](https://github.com/orbcorp/orb-python/issues/606)) ([b6c691e](https://github.com/orbcorp/orb-python/commit/b6c691e84186bb62b295b5d1b01598691174eabe))
10+
* **internal:** minor test fixes ([#608](https://github.com/orbcorp/orb-python/issues/608)) ([7e79541](https://github.com/orbcorp/orb-python/commit/7e79541c498fdde340c4b52abac285bc5a89fd44))
11+
312
## 3.18.0 (2025-03-20)
413

514
Full Changelog: [v3.17.3...v3.18.0](https://github.com/orbcorp/orb-python/compare/v3.17.3...v3.18.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "orb-billing"
3-
version = "3.18.0"
3+
version = "3.18.1"
44
description = "The official Python library for the orb API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/orb/_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ def set_pydantic_config(typ: Any, config: pydantic.ConfigDict) -> None:
681681
setattr(typ, "__pydantic_config__", config) # noqa: B010
682682

683683

684-
# our use of subclasssing here causes weirdness for type checkers,
684+
# our use of subclassing here causes weirdness for type checkers,
685685
# so we just pretend that we don't subclass
686686
if TYPE_CHECKING:
687687
GenericModel = BaseModel

src/orb/_utils/_transform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _get_annotated_type(type_: type) -> type | None:
126126
def _maybe_transform_key(key: str, type_: type) -> str:
127127
"""Transform the given `data` based on the annotations provided in `type_`.
128128
129-
Note: this function only looks at `Annotated` types that contain `PropertInfo` metadata.
129+
Note: this function only looks at `Annotated` types that contain `PropertyInfo` metadata.
130130
"""
131131
annotated_type = _get_annotated_type(type_)
132132
if annotated_type is None:

src/orb/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "orb"
4-
__version__ = "3.18.0" # x-release-please-version
4+
__version__ = "3.18.1" # x-release-please-version

tests/api_resources/plans/test_external_plan_id.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def test_path_params_update(self, client: Orb) -> None:
6464
):
6565
client.plans.external_plan_id.with_raw_response.update(
6666
other_external_plan_id="",
67-
external_plan_id="",
6867
)
6968

7069
@parametrize
@@ -156,7 +155,6 @@ async def test_path_params_update(self, async_client: AsyncOrb) -> None:
156155
):
157156
await async_client.plans.external_plan_id.with_raw_response.update(
158157
other_external_plan_id="",
159-
external_plan_id="",
160158
)
161159

162160
@parametrize

tests/api_resources/test_customers.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,6 @@ def test_path_params_update_by_external_id(self, client: Orb) -> None:
527527
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
528528
client.customers.with_raw_response.update_by_external_id(
529529
id="",
530-
external_customer_id="",
531530
)
532531

533532

@@ -1052,5 +1051,4 @@ async def test_path_params_update_by_external_id(self, async_client: AsyncOrb) -
10521051
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
10531052
await async_client.customers.with_raw_response.update_by_external_id(
10541053
id="",
1055-
external_customer_id="",
10561054
)

0 commit comments

Comments
 (0)