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.49.0"
".": "5.50.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: 139
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-2b77f13a159cf689a3bba6ac5ff03b6c0df62b772e2da04aff52be86710ca4d4.yml
openapi_spec_hash: 28a3f685403d98ddd68b427d92ed28fb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-91a51960dab258d5435cc2a7f47760fd81e4b711b891a1fde3d98757e85e8add.yml
openapi_spec_hash: 192e4e94264db429260169f0b2e731ce
config_hash: c01c1191b1cd696c7ca855ff6d28a8df
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 5.50.0 (2026-04-13)

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

### Features

* **api:** api update ([e70692f](https://github.com/orbcorp/orb-node/commit/e70692fbcea7c00bf32f940b36b8be46edcdb64b))

## 5.49.0 (2026-04-11)

Full Changelog: [v5.48.0...v5.49.0](https://github.com/orbcorp/orb-node/compare/v5.48.0...v5.49.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.49.0",
"version": "5.50.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
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.49.0'; // x-release-please-version
export const VERSION = '5.50.0'; // x-release-please-version
4 changes: 2 additions & 2 deletions tests/api-resources/license-types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const client = new Orb({

describe('resource licenseTypes', () => {
test('create: only required params', async () => {
const responsePromise = client.licenseTypes.create({ grouping_key: 'grouping_key', name: 'name' });
const responsePromise = client.licenseTypes.create({ grouping_key: 'x', name: 'x' });
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
Expand All @@ -21,7 +21,7 @@ describe('resource licenseTypes', () => {
});

test('create: required and optional params', async () => {
const response = await client.licenseTypes.create({ grouping_key: 'grouping_key', name: 'name' });
const response = await client.licenseTypes.create({ grouping_key: 'x', name: 'x' });
});

test('retrieve', async () => {
Expand Down
Loading