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.10.0"
".": "5.11.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: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-96a2f34503f9348f8d7ce82035fe09c917860d77e17bc6817e034b891902599a.yml
openapi_spec_hash: 3719dd8f962e6b0051a95015aecb0e53
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-42aa43f3893eef31a351e066bf0cf8c56da8c857ccbb45eb7dd58739ad43bd86.yml
openapi_spec_hash: e6b8c1e707036539d88a7b79af864a49
config_hash: 1f73a949b649ecfe6ec68ba1bb459dc2
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 5.11.0 (2025-09-19)

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

### Features

* **api:** api update ([031e5a5](https://github.com/orbcorp/orb-node/commit/031e5a586939c576d120131ed5846c778ee300fb))


### Chores

* do not install brew dependencies in ./scripts/bootstrap by default ([ae0c9fc](https://github.com/orbcorp/orb-node/commit/ae0c9fcf624bdb40f1a5080513b659bbfc186c78))

## 5.10.0 (2025-09-16)

Full Changelog: [v5.9.0...v5.10.0](https://github.com/orbcorp/orb-node/compare/v5.9.0...v5.10.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.10.0",
"version": "5.11.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
14 changes: 11 additions & 3 deletions scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ set -e

cd "$(dirname "$0")/.."

if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ]; then
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
brew bundle check >/dev/null 2>&1 || {
echo "==> Installing Homebrew dependencies…"
brew bundle
echo -n "==> Install Homebrew dependencies? (y/N): "
read -r response
case "$response" in
[yY][eE][sS]|[yY])
brew bundle
;;
*)
;;
esac
echo
}
fi

Expand Down
3 changes: 0 additions & 3 deletions src/resources/beta/beta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export class Beta extends APIResource {
externalPlanId: ExternalPlanIDAPI.ExternalPlanID = new ExternalPlanIDAPI.ExternalPlanID(this._client);

/**
* This API endpoint is in beta and its interface may change. It is recommended for
* use only in test mode.
*
* This endpoint allows the creation of a new plan version for an existing plan.
*/
createPlanVersion(
Expand Down
3 changes: 0 additions & 3 deletions src/resources/beta/external-plan-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ import * as PlansAPI from '../plans/plans';

export class ExternalPlanID extends APIResource {
/**
* This API endpoint is in beta and its interface may change. It is recommended for
* use only in test mode.
*
* This endpoint allows the creation of a new plan version for an existing plan.
*/
createPlanVersion(
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.10.0'; // x-release-please-version
export const VERSION = '5.11.0'; // x-release-please-version