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.36.0"
".": "4.37.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-f2b97a2c3e41f618dc8955ed325092320ff2170a7d7a9a26a31dc235c969b657.yml
openapi_spec_hash: 64548564dc8ce80ef3ad38fc8cb56b30
config_hash: dd4343ce95871032ef6e0735a4ca038c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-672b562b91c2e644498b93b1940f8866576a6734a81346b324ed5792e9276bf3.yml
openapi_spec_hash: 3c1a3cc113493afd824bdc6773a202bb
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.37.0 (2025-11-07)

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

### Features

* **api:** api update ([1290aad](https://github.com/orbcorp/orb-python/commit/1290aada554232e9b6745833e01b37934958e796))

## 4.36.0 (2025-11-05)

Full Changelog: [v4.35.0...v4.36.0](https://github.com/orbcorp/orb-python/compare/v4.35.0...v4.36.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.36.0"
version = "4.37.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.36.0" # x-release-please-version
__version__ = "4.37.0" # x-release-please-version
6 changes: 6 additions & 0 deletions src/orb/resources/events/backfills.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ def create(
expressiveness of computed properties allows you to deprecate existing events
based on both a period of time and specific property values.

You may not have multiple backfills in a pending or pending_revert state with
overlapping timeframes.

Args:
timeframe_end: The (exclusive) end of the usage timeframe affected by this backfill. By
default, Orb allows backfills up to 31 days in duration at a time. Reach out to
Expand Down Expand Up @@ -418,6 +421,9 @@ async def create(
expressiveness of computed properties allows you to deprecate existing events
based on both a period of time and specific property values.

You may not have multiple backfills in a pending or pending_revert state with
overlapping timeframes.

Args:
timeframe_end: The (exclusive) end of the usage timeframe affected by this backfill. By
default, Orb allows backfills up to 31 days in duration at a time. Reach out to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@


class Filter(BaseModel):
field: Literal["price_id", "item_id", "price_type", "currency", "pricing_unit_id"]
"""The property of the price to filter on."""
field: Literal["item_id"]
"""The property of the price the block applies to. Only item_id is supported."""

operator: Literal["includes", "excludes"]
"""Should prices that match the filter be included or excluded."""
Expand Down
4 changes: 2 additions & 2 deletions src/orb/types/customers/credit_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@


class Filter(BaseModel):
field: Literal["price_id", "item_id", "price_type", "currency", "pricing_unit_id"]
"""The property of the price to filter on."""
field: Literal["item_id"]
"""The property of the price the block applies to. Only item_id is supported."""

operator: Literal["includes", "excludes"]
"""Should prices that match the filter be included or excluded."""
Expand Down