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.47.0"
".": "5.48.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: 139
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-b1ac6575304b8d616a2d758bfaa630d9b909f22b6bf0259cf01ee87e2db1229f.yml
openapi_spec_hash: fb87fae72aa232e036f2fc029919412c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-1ca41c4b1d872cf2a198c8cf5edeeeddac012259a7cf211b102bf137c05b8240.yml
openapi_spec_hash: 955066d4865fc42440cd81e40f5f79cd
config_hash: c01c1191b1cd696c7ca855ff6d28a8df
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 5.48.0 (2026-04-03)

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

### Features

* **api:** api update ([21188d7](https://github.com/orbcorp/orb-node/commit/21188d7b6fcc100083c6f509a0ff16fa31e75bdd))


### Chores

* **internal:** update multipart form array serialization ([db828d0](https://github.com/orbcorp/orb-node/commit/db828d0faf28f4a4ea474bbcbe876712d9eafd50))
* **tests:** bump steady to v0.20.1 ([15bd6d0](https://github.com/orbcorp/orb-node/commit/15bd6d05067159182562d1f7358308aed4cd1d9f))
* **tests:** bump steady to v0.20.2 ([d995a94](https://github.com/orbcorp/orb-node/commit/d995a94f5517a8bfc2064c652fa39dc104b9131e))

## 5.47.0 (2026-03-24)

Full Changelog: [v5.46.0...v5.47.0](https://github.com/orbcorp/orb-node/compare/v5.46.0...v5.47.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.47.0",
"version": "5.48.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions scripts/mock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ echo "==> Starting mock server with URL ${URL}"
# Run steady mock on the given spec
if [ "$1" == "--daemon" ]; then
# Pre-install the package so the download doesn't eat into the startup timeout
npm exec --package=@stdy/cli@0.19.7 -- steady --version
npm exec --package=@stdy/cli@0.20.2 -- steady --version

npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=brackets --validator-query-array-format=brackets --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL" &> .stdy.log &
npm exec --package=@stdy/cli@0.20.2 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=brackets --validator-form-array-format=brackets --validator-query-object-format=brackets --validator-form-object-format=brackets "$URL" &> .stdy.log &

# Wait for server to come online via health endpoint (max 30s)
echo -n "Waiting for server"
Expand All @@ -48,5 +48,5 @@ if [ "$1" == "--daemon" ]; then

echo
else
npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=brackets --validator-query-array-format=brackets --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL"
npm exec --package=@stdy/cli@0.20.2 -- steady --host 127.0.0.1 -p 4010 --validator-query-array-format=brackets --validator-form-array-format=brackets --validator-query-object-format=brackets --validator-form-object-format=brackets "$URL"
fi
2 changes: 1 addition & 1 deletion scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ elif ! steady_is_running ; then
echo -e "To run the server, pass in the path or url of your OpenAPI"
echo -e "spec to the steady command:"
echo
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.7 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=brackets --validator-query-array-format=brackets --validator-form-object-format=brackets --validator-query-object-format=brackets${NC}"
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.20.2 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-query-array-format=brackets --validator-form-array-format=brackets --validator-query-object-format=brackets --validator-form-object-format=brackets${NC}"
echo

exit 1
Expand Down
3 changes: 1 addition & 2 deletions src/resources/coupons/coupons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ export class Coupons extends APIResource {
*
* The list of coupons is ordered starting from the most recently created coupon.
* The response also includes `pagination_metadata`, which lets the caller retrieve
* the next page of results if they exist. More information about pagination can be
* found in the Pagination-metadata schema.
* the next page of results if they exist.
*/
list(query?: CouponListParams, options?: Core.RequestOptions): Core.PagePromise<CouponsPage, Coupon>;
list(options?: Core.RequestOptions): Core.PagePromise<CouponsPage, Coupon>;
Expand Down
7 changes: 3 additions & 4 deletions src/resources/events/backfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export class Backfills extends APIResource {
* 3 steps:
*
* 1. Create the backfill, specifying its parameters.
* 2. [Ingest](ingest) usage events, referencing the backfill (query parameter
* `backfill_id`).
* 2. [Ingest](/api-reference/event/ingest-events) usage events, referencing the
* backfill (query parameter `backfill_id`).
* 3. [Close](close-backfill) the backfill, propagating the update in past usage
* throughout Orb.
*
Expand Down Expand Up @@ -63,8 +63,7 @@ export class Backfills extends APIResource {
* The list of backfills is ordered starting from the most recently created
* backfill. The response also includes
* [`pagination_metadata`](/api-reference/pagination), which lets the caller
* retrieve the next page of results if they exist. More information about
* pagination can be found in the [Pagination-metadata schema](pagination).
* retrieve the next page of results if they exist.
*/
list(
query?: BackfillListParams,
Expand Down
8 changes: 4 additions & 4 deletions src/resources/subscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@ export class Subscriptions extends APIResource {
* metric, in usage units rather than a currency).
*
* The semantics of this endpoint exactly mirror those of
* [fetching a customer's costs](fetch-customer-costs). Use this endpoint to limit
* your analysis of costs to a specific subscription for the customer (e.g. to
* de-aggregate costs when a customer's subscription has started and stopped on the
* same day).
* [fetching a customer's costs](/api-reference/customer/fetch-customer-costs). Use
* this endpoint to limit your analysis of costs to a specific subscription for the
* customer (e.g. to de-aggregate costs when a customer's subscription has started
* and stopped on the same day).
*/
fetchCosts(
subscriptionId: string,
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.47.0'; // x-release-please-version
export const VERSION = '5.48.0'; // x-release-please-version
Loading