diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 028d2d67..af6c62f4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.10.0" + ".": "5.11.0" } diff --git a/.stats.yml b/.stats.yml index 232a1ab7..d522ff7b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index e77cbe59..46b1d17c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 771e9e12..eaacb393 100644 --- a/package.json +++ b/package.json @@ -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 ", "types": "dist/index.d.ts", diff --git a/scripts/bootstrap b/scripts/bootstrap index 0af58e25..f68bedac 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -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 diff --git a/src/resources/beta/beta.ts b/src/resources/beta/beta.ts index a2f796b1..d3011a61 100644 --- a/src/resources/beta/beta.ts +++ b/src/resources/beta/beta.ts @@ -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( diff --git a/src/resources/beta/external-plan-id.ts b/src/resources/beta/external-plan-id.ts index 704ced78..5fe9e4e3 100644 --- a/src/resources/beta/external-plan-id.ts +++ b/src/resources/beta/external-plan-id.ts @@ -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( diff --git a/src/version.ts b/src/version.ts index c18a9f8d..5c2d9a75 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '5.10.0'; // x-release-please-version +export const VERSION = '5.11.0'; // x-release-please-version