From ffeb8847843377b66fe281ef4744b40a077d914e Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:34:57 +0000 Subject: [PATCH 1/5] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 037b2232..0233639a 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 103 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-95a3d7780935a38e0cf076d4ad2d68bd1a5641bced8398d972db2e92751d364a.yml openapi_spec_hash: 9ebe818c4ad4f2d9c4e473b5192d7544 -config_hash: ec4f1e02d3528e3a93a73e33bca17c2a +config_hash: 8012272ce207c864d8b96fefeefc378c From 57146ba21a1bcb0754751897a799df674b2962dd Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 17:59:47 +0000 Subject: [PATCH 2/5] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 0233639a..f2253470 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 103 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-95a3d7780935a38e0cf076d4ad2d68bd1a5641bced8398d972db2e92751d364a.yml openapi_spec_hash: 9ebe818c4ad4f2d9c4e473b5192d7544 -config_hash: 8012272ce207c864d8b96fefeefc378c +config_hash: 3dc5bc1df028fc7301fb2ada9846f038 From b89bd0aede140b1be66449198117bf3cabc86773 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 20:57:09 +0000 Subject: [PATCH 3/5] chore(internal): add aliases for Record and Array (#581) --- src/core.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/core.ts b/src/core.ts index ec7860b4..05125d32 100644 --- a/src/core.ts +++ b/src/core.ts @@ -33,6 +33,20 @@ export { export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise; +/** + * An alias to the builtin `Array` type so we can + * easily alias it in import statements if there are name clashes. + */ +type _Array = Array; + +/** + * An alias to the builtin `Record` type so we can + * easily alias it in import statements if there are name clashes. + */ +type _Record = Record; + +export type { _Array as Array, _Record as Record }; + type PromiseOrValue = T | Promise; type APIResponseProps = { From e11cdbb60c8d24f7d9116afd2eab0f8d2de0123c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 3 Apr 2025 18:26:37 +0000 Subject: [PATCH 4/5] fix(api): improve type resolution when importing as a package (#583) --- packages/mcp-server/src/tools.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 packages/mcp-server/src/tools.ts diff --git a/packages/mcp-server/src/tools.ts b/packages/mcp-server/src/tools.ts new file mode 100644 index 00000000..7e516de7 --- /dev/null +++ b/packages/mcp-server/src/tools.ts @@ -0,0 +1 @@ +export * from './tools/index'; From 2d22118a21764584151dc1347dcfe75e5c5b6b41 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 3 Apr 2025 18:26:59 +0000 Subject: [PATCH 5/5] release: 4.71.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 82577b64..e7d8b7c5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.71.3" + ".": "4.71.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c397d11..88c303e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 4.71.4 (2025-04-03) + +Full Changelog: [v4.71.3...v4.71.4](https://github.com/orbcorp/orb-node/compare/v4.71.3...v4.71.4) + +### Bug Fixes + +* **api:** improve type resolution when importing as a package ([#583](https://github.com/orbcorp/orb-node/issues/583)) ([e11cdbb](https://github.com/orbcorp/orb-node/commit/e11cdbb60c8d24f7d9116afd2eab0f8d2de0123c)) + + +### Chores + +* **internal:** add aliases for Record and Array ([#581](https://github.com/orbcorp/orb-node/issues/581)) ([b89bd0a](https://github.com/orbcorp/orb-node/commit/b89bd0aede140b1be66449198117bf3cabc86773)) + ## 4.71.3 (2025-04-02) Full Changelog: [v4.71.2...v4.71.3](https://github.com/orbcorp/orb-node/compare/v4.71.2...v4.71.3) diff --git a/package.json b/package.json index c4f5b119..3f08ef16 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orb-billing", - "version": "4.71.3", + "version": "4.71.4", "description": "The official TypeScript library for the Orb API", "author": "Orb ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 3fa06bef..79a49293 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.71.3'; // x-release-please-version +export const VERSION = '4.71.4'; // x-release-please-version