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 @@
{
".": "4.71.3"
".": "4.71.4"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -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: 3dc5bc1df028fc7301fb2ada9846f038
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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": "4.71.3",
"version": "4.71.4",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions packages/mcp-server/src/tools.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './tools/index';
14 changes: 14 additions & 0 deletions src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@ export {

export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise<Response>;

/**
* An alias to the builtin `Array` type so we can
* easily alias it in import statements if there are name clashes.
*/
type _Array<T> = Array<T>;

/**
* An alias to the builtin `Record` type so we can
* easily alias it in import statements if there are name clashes.
*/
type _Record<K extends keyof any, T> = Record<K, T>;

export type { _Array as Array, _Record as Record };

type PromiseOrValue<T> = T | Promise<T>;

type APIResponseProps = {
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 = '4.71.3'; // x-release-please-version
export const VERSION = '4.71.4'; // x-release-please-version