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.45.0"
".": "4.46.0"
}
6 changes: 3 additions & 3 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-7936e3f73bbe1d59d27fd7a8a226985927b38fdec1c936c77577381699fb6140.yml
openapi_spec_hash: 1d3f9ed5fbdb0e40d56d6acd9d1736e2
config_hash: e6db17547fe854b1c240407cf4c6dc9e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-03af7f658aed245cf7e230055de59fe92a78880f3719bf254ed9352bf89bad5e.yml
openapi_spec_hash: c4703d217c25e8c02c248caed9e2d3be
config_hash: 895e36fb2d717958770fd4cf883f4b74
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.46.0 (2025-12-06)

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

### Features

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

## 4.45.0 (2025-12-03)

Full Changelog: [v4.44.0...v4.45.0](https://github.com/orbcorp/orb-python/compare/v4.44.0...v4.45.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.45.0"
version = "4.46.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.45.0" # x-release-please-version
__version__ = "4.46.0" # x-release-please-version
18 changes: 18 additions & 0 deletions src/orb/types/subscription_change_apply_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
class SubscriptionChangeApplyResponse(BaseModel):
id: str

change_type: str
"""The type of change (e.g., 'schedule_plan_change', 'create_subscription')."""

expiration_time: datetime
"""
Subscription change will be cancelled at this time and can no longer be applied.
Expand All @@ -25,5 +28,20 @@ class SubscriptionChangeApplyResponse(BaseModel):
applied_at: Optional[datetime] = None
"""When this change was applied."""

billing_cycle_alignment: Optional[str] = None
"""Billing cycle alignment for plan changes."""

cancelled_at: Optional[datetime] = None
"""When this change was cancelled."""

change_option: Optional[str] = None
"""
How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
'requested_date').
"""

effective_date: Optional[datetime] = None
"""When this change will take effect."""

plan_id: Optional[str] = None
"""The target plan ID for plan changes."""
18 changes: 18 additions & 0 deletions src/orb/types/subscription_change_cancel_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
class SubscriptionChangeCancelResponse(BaseModel):
id: str

change_type: str
"""The type of change (e.g., 'schedule_plan_change', 'create_subscription')."""

expiration_time: datetime
"""
Subscription change will be cancelled at this time and can no longer be applied.
Expand All @@ -25,5 +28,20 @@ class SubscriptionChangeCancelResponse(BaseModel):
applied_at: Optional[datetime] = None
"""When this change was applied."""

billing_cycle_alignment: Optional[str] = None
"""Billing cycle alignment for plan changes."""

cancelled_at: Optional[datetime] = None
"""When this change was cancelled."""

change_option: Optional[str] = None
"""
How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
'requested_date').
"""

effective_date: Optional[datetime] = None
"""When this change will take effect."""

plan_id: Optional[str] = None
"""The target plan ID for plan changes."""
18 changes: 18 additions & 0 deletions src/orb/types/subscription_change_retrieve_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
class SubscriptionChangeRetrieveResponse(BaseModel):
id: str

change_type: str
"""The type of change (e.g., 'schedule_plan_change', 'create_subscription')."""

expiration_time: datetime
"""
Subscription change will be cancelled at this time and can no longer be applied.
Expand All @@ -25,5 +28,20 @@ class SubscriptionChangeRetrieveResponse(BaseModel):
applied_at: Optional[datetime] = None
"""When this change was applied."""

billing_cycle_alignment: Optional[str] = None
"""Billing cycle alignment for plan changes."""

cancelled_at: Optional[datetime] = None
"""When this change was cancelled."""

change_option: Optional[str] = None
"""
How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
'requested_date').
"""

effective_date: Optional[datetime] = None
"""When this change will take effect."""

plan_id: Optional[str] = None
"""The target plan ID for plan changes."""