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.70.0"
".": "4.71.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 103
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-aeb94d91af916dbff0132ee7c4501df9223609b19fef0398a1a495e7a432ee36.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-36a6db97756e8658369c9af3c0ac532ecacb032e5b8f6211094dcb4052943ff3.yml
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 4.71.0 (2025-03-20)

Full Changelog: [v4.70.0...v4.71.0](https://github.com/orbcorp/orb-node/compare/v4.70.0...v4.71.0)

### Features

* **api:** api update ([#570](https://github.com/orbcorp/orb-node/issues/570)) ([f25a699](https://github.com/orbcorp/orb-node/commit/f25a699c95a6f4322d819f82be3cace18e4fd913))


### Chores

* **exports:** cleaner resource index imports ([#567](https://github.com/orbcorp/orb-node/issues/567)) ([1249541](https://github.com/orbcorp/orb-node/commit/12495411c10b12fb432ed5ea2db13cf9fcc43c82))
* **exports:** stop using path fallbacks ([#569](https://github.com/orbcorp/orb-node/issues/569)) ([5c55f33](https://github.com/orbcorp/orb-node/commit/5c55f33931a4814bc5bf623ccc6d892627479168))

## 4.70.0 (2025-03-14)

Full Changelog: [v4.69.1...v4.70.0](https://github.com/orbcorp/orb-node/compare/v4.69.1...v4.70.0)
Expand Down
37 changes: 8 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orb-billing",
"version": "4.70.0",
"version": "4.71.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -107,38 +107,17 @@
"default": "./dist/index.mjs"
},
"./*.mjs": {
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
"types": "./dist/*.d.ts",
"default": "./dist/*.mjs"
},
"./*.js": {
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.js",
"./dist/*/index.js"
]
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*": {
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"require": [
"./dist/*.js",
"./dist/*/index.js"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"default": "./dist/*.mjs"
}
}
}
1 change: 1 addition & 0 deletions src/resources.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './resources/index';
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.70.0'; // x-release-please-version
export const VERSION = '4.71.0'; // x-release-please-version
2 changes: 1 addition & 1 deletion tests/api-resources/subscriptions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ describe('resource subscriptions', () => {
price_id: 'h74gfhdjvn7ujokd',
},
],
trial_duration_days: 999999,
trial_duration_days: 0,
usage_customer_ids: ['string'],
});
});
Expand Down