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.60.0"
".": "5.61.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/orb-cbb433962c75b95b0c00c453c3a2e39a88f4291a92c093f27a3f52d1b52785a2.yml
openapi_spec_hash: 46b3934a43850209dad40e883aa5d1bd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-2d39efd20f8184172496270fb54e1c8ef0ef01a9e3fc88ac971dc6470c8f2db7.yml
openapi_spec_hash: 812c2e5e36b9c992e3e2d986a8b31b0f
config_hash: c01c1191b1cd696c7ca855ff6d28a8df
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 5.61.0 (2026-05-20)

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

### Features

* **api:** api update ([7f88e31](https://github.com/orbcorp/orb-node/commit/7f88e31c1c0ca9dfc8e6532a16f31664b66ac7c3))
* **api:** api update ([51df8ea](https://github.com/orbcorp/orb-node/commit/51df8ead55864141d3ab8590757e4ed01cfe8c1c))

## 5.60.0 (2026-05-19)

Full Changelog: [v5.59.0...v5.60.0](https://github.com/orbcorp/orb-node/compare/v5.59.0...v5.60.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.60.0",
"version": "5.61.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/resources/customers/customers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export class CustomersPage extends Page<Customer> {}
export interface AccountingProviderConfig {
external_provider_id: string;

provider_type: string;
provider_type: 'quickbooks' | 'netsuite';
}

export interface AddressInput {
Expand Down Expand Up @@ -521,7 +521,7 @@ export namespace Customer {
export interface AccountingProvider {
external_provider_id: string | null;

provider_type: 'quickbooks' | 'netsuite' | 'netsuite_ampersand';
provider_type: 'quickbooks' | 'netsuite';
}
}

Expand Down
10 changes: 5 additions & 5 deletions src/resources/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,8 @@ export class Metrics extends APIResource {
}

/**
* This endpoint is used to fetch [metric](/core-concepts##metric) details given a
* metric identifier. It returns information about the metrics including its name,
* description, and item.
* This endpoint is used to list [metrics](/core-concepts#metric). It returns
* information about the metrics including its name, description, and item.
*
* @example
* ```ts
Expand All @@ -79,8 +78,9 @@ export class Metrics extends APIResource {
}

/**
* This endpoint is used to list [metrics](/core-concepts#metric). It returns
* information about the metrics including its name, description, and item.
* This endpoint is used to fetch [metric](/core-concepts#metric) details given a
* metric identifier. It returns information about the metrics including its name,
* description, and item.
*
* @example
* ```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.60.0'; // x-release-please-version
export const VERSION = '5.61.0'; // x-release-please-version
4 changes: 1 addition & 3 deletions tests/api-resources/customers/customers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ describe('resource customers', () => {
email: 'dev@stainless.com',
name: 'x',
accounting_sync_configuration: {
accounting_providers: [
{ external_provider_id: 'external_provider_id', provider_type: 'provider_type' },
],
accounting_providers: [{ external_provider_id: 'external_provider_id', provider_type: 'quickbooks' }],
excluded: true,
},
additional_emails: ['dev@stainless.com'],
Expand Down
Loading