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 @@
{
".": "5.28.0"
".": "5.29.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

## 5.29.0 (2025-11-07)

Full Changelog: [v5.28.0...v5.29.0](https://github.com/orbcorp/orb-node/compare/v5.28.0...v5.29.0)

### Features

* **api:** api update ([bfcfe93](https://github.com/orbcorp/orb-node/commit/bfcfe93067a56c02403a96a630f338c983e36180))

## 5.28.0 (2025-11-05)

Full Changelog: [v5.27.0...v5.28.0](https://github.com/orbcorp/orb-node/compare/v5.27.0...v5.28.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orb-billing",
"version": "5.28.0",
"version": "5.29.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
14 changes: 10 additions & 4 deletions src/resources/customers/credits/credits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,14 @@ export interface CreditListResponse {
}

export namespace CreditListResponse {
/**
* A PriceFilter that only allows item_id field for block filters.
*/
export interface Filter {
/**
* The property of the price to filter on.
* The property of the price the block applies to. Only item_id is supported.
*/
field: 'price_id' | 'item_id' | 'price_type' | 'currency' | 'pricing_unit_id';
field: 'item_id';

/**
* Should prices that match the filter be included or excluded.
Expand Down Expand Up @@ -172,11 +175,14 @@ export interface CreditListByExternalIDResponse {
}

export namespace CreditListByExternalIDResponse {
/**
* A PriceFilter that only allows item_id field for block filters.
*/
export interface Filter {
/**
* The property of the price to filter on.
* The property of the price the block applies to. Only item_id is supported.
*/
field: 'price_id' | 'item_id' | 'price_type' | 'currency' | 'pricing_unit_id';
field: 'item_id';

/**
* Should prices that match the filter be included or excluded.
Expand Down
3 changes: 3 additions & 0 deletions src/resources/events/backfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export class Backfills extends APIResource {
* [computed properties](/extensibility/advanced-metrics#computed-properties). The
* 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.
*/
create(body: BackfillCreateParams, options?: Core.RequestOptions): Core.APIPromise<BackfillCreateResponse> {
return this._client.post('/events/backfills', { body, ...options });
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '5.28.0'; // x-release-please-version
export const VERSION = '5.29.0'; // x-release-please-version