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.6.0"
".": "4.7.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: 116
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-612316c13276a207f56e2e2c7bbc68f4bb73de85e3661595a23f23d9ccc80276.yml
openapi_spec_hash: 6e125f05e40521ec485edf6e15beec2e
config_hash: 3c3524be9607afb24d2139ce26ce5389
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-373ca3e805c414f75a90b0088c57cbb60ff207abdca0a8e397c551de88606c4a.yml
openapi_spec_hash: 1c30d01bd9c38f8a2aa4bd088fbe69bc
config_hash: 1f535c1fa222aacf28b636eed21bec72
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.7.0 (2025-07-17)

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

### Features

* **api:** api update ([08dd5b8](https://github.com/orbcorp/orb-python/commit/08dd5b8266b27c71f3cdd25db1d49076555b12ba))

## 4.6.0 (2025-07-16)

Full Changelog: [v4.5.0...v4.6.0](https://github.com/orbcorp/orb-python/compare/v4.5.0...v4.6.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.6.0"
version = "4.7.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.6.0" # x-release-please-version
__version__ = "4.7.0" # x-release-please-version
8 changes: 4 additions & 4 deletions src/orb/resources/customers/costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def list(
`grouping_value` and `secondary_grouping_value` available.

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down Expand Up @@ -353,7 +353,7 @@ def list_by_external_id(
`grouping_value` and `secondary_grouping_value` available.

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down Expand Up @@ -552,7 +552,7 @@ async def list(
`grouping_value` and `secondary_grouping_value` available.

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down Expand Up @@ -728,7 +728,7 @@ async def list_by_external_id(
`grouping_value` and `secondary_grouping_value` available.

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down
4 changes: 2 additions & 2 deletions src/orb/resources/subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ def fetch_costs(
same day).

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down Expand Up @@ -2919,7 +2919,7 @@ async def fetch_costs(
same day).

Args:
currency: The currency or custom pricing unit to use.
currency: The currency to use.

timeframe_end: Costs returned are exclusive of `timeframe_end`.

Expand Down
2 changes: 1 addition & 1 deletion src/orb/types/customers/cost_list_by_external_id_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class CostListByExternalIDParams(TypedDict, total=False):
currency: Optional[str]
"""The currency or custom pricing unit to use."""
"""The currency to use."""

timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
"""Costs returned are exclusive of `timeframe_end`."""
Expand Down
2 changes: 1 addition & 1 deletion src/orb/types/customers/cost_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class CostListParams(TypedDict, total=False):
currency: Optional[str]
"""The currency or custom pricing unit to use."""
"""The currency to use."""

timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
"""Costs returned are exclusive of `timeframe_end`."""
Expand Down
2 changes: 1 addition & 1 deletion src/orb/types/subscription_fetch_costs_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class SubscriptionFetchCostsParams(TypedDict, total=False):
currency: Optional[str]
"""The currency or custom pricing unit to use."""
"""The currency to use."""

timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
"""Costs returned are exclusive of `timeframe_end`."""
Expand Down