Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.41.0"
".": "4.42.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-4ad3b44ca7f484243d8706b6aa7f4498fc5bf2b37fadf3da0a06d657e482c08f.yml
openapi_spec_hash: 9ead1a2aae36be1086c627c3636064ea
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-e639b12e0daebce74f42d1f31f675bda4287b9c749dd7d4620a1e96a83343ec4.yml
openapi_spec_hash: 51eb3d47b25e299de670b2d52f5e9017
config_hash: e6db17547fe854b1c240407cf4c6dc9e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.42.0 (2025-11-18)

Full Changelog: [v4.41.0...v4.42.0](https://github.com/orbcorp/orb-python/compare/v4.41.0...v4.42.0)

### Features

* **api:** api update ([cce6674](https://github.com/orbcorp/orb-python/commit/cce6674f8565785add4c6dee0103e3a32d8583ea))

## 4.41.0 (2025-11-16)

Full Changelog: [v4.40.0...v4.41.0](https://github.com/orbcorp/orb-python/compare/v4.40.0...v4.41.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orb-billing"
version = "4.41.0"
version = "4.42.0"
description = "The official Python library for the orb API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/orb/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "orb"
__version__ = "4.41.0" # x-release-please-version
__version__ = "4.42.0" # x-release-please-version
8 changes: 6 additions & 2 deletions src/orb/types/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,15 @@ class Plan(BaseModel):
"""

base_plan: Optional[BasePlan] = None
"""
Legacy field representing the parent plan if the current plan is a 'child plan',
overriding prices from the parent.
"""

base_plan_id: Optional[str] = None
"""
The parent plan id if the given plan was created by overriding one or more of
the parent's prices
Legacy field representing the parent plan ID if the current plan is a 'child
plan', overriding prices from the parent.
"""

created_at: datetime
Expand Down
4 changes: 2 additions & 2 deletions src/orb/types/subscription_price_intervals_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,8 +776,8 @@ class Edit(TypedDict, total=False):
can_defer_billing: Optional[bool]
"""
If true, ending an in-arrears price interval mid-cycle will defer billing the
final line itemuntil the next scheduled invoice. If false, it will be billed on
its end date. If not provided, behaviorwill follow account default.
final line item until the next scheduled invoice. If false, it will be billed on
its end date. If not provided, behavior will follow account default.
"""

end_date: Annotated[Union[Union[str, datetime], BillingCycleRelativeDate, None], PropertyInfo(format="iso8601")]
Expand Down