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.29.0"
".": "5.30.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: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-672b562b91c2e644498b93b1940f8866576a6734a81346b324ed5792e9276bf3.yml
openapi_spec_hash: 3c1a3cc113493afd824bdc6773a202bb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-145c6652d32a05c9305e4674643e2aa7d559073e48dc252d6c3c0fe802ce7ec6.yml
openapi_spec_hash: 6bbbbe1687099b69faee47fda12bf82c
config_hash: e6db17547fe854b1c240407cf4c6dc9e
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 5.30.0 (2025-11-07)

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

### Features

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

## 5.29.0 (2025-11-07)

Full Changelog: [v5.28.0...v5.29.0](https://github.com/orbcorp/orb-node/compare/v5.28.0...v5.29.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.29.0",
"version": "5.30.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
39 changes: 39 additions & 0 deletions src/resources/customers/customers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,7 @@ export interface CustomerCreateParams {
| NewSphereConfiguration
| CustomerCreateParams.NewNumeralConfiguration
| CustomerCreateParams.NewAnrokConfiguration
| CustomerCreateParams.NewStripeTaxConfiguration
| null;

/**
Expand Down Expand Up @@ -832,6 +833,18 @@ export namespace CustomerCreateParams {
*/
automatic_tax_enabled?: boolean | null;
}

export interface NewStripeTaxConfiguration {
tax_exempt: boolean;

tax_provider: 'stripe';

/**
* Whether to automatically calculate tax for this customer. When null, inherits
* from account-level setting. When true or false, overrides the account setting.
*/
automatic_tax_enabled?: boolean | null;
}
}

export interface CustomerUpdateParams {
Expand Down Expand Up @@ -927,6 +940,7 @@ export interface CustomerUpdateParams {
| NewSphereConfiguration
| CustomerUpdateParams.NewNumeralConfiguration
| CustomerUpdateParams.NewAnrokConfiguration
| CustomerUpdateParams.NewStripeTaxConfiguration
| null;

/**
Expand Down Expand Up @@ -1102,6 +1116,18 @@ export namespace CustomerUpdateParams {
*/
automatic_tax_enabled?: boolean | null;
}

export interface NewStripeTaxConfiguration {
tax_exempt: boolean;

tax_provider: 'stripe';

/**
* Whether to automatically calculate tax for this customer. When null, inherits
* from account-level setting. When true or false, overrides the account setting.
*/
automatic_tax_enabled?: boolean | null;
}
}

export interface CustomerListParams extends PageParams {
Expand Down Expand Up @@ -1207,6 +1233,7 @@ export interface CustomerUpdateByExternalIDParams {
| NewSphereConfiguration
| CustomerUpdateByExternalIDParams.NewNumeralConfiguration
| CustomerUpdateByExternalIDParams.NewAnrokConfiguration
| CustomerUpdateByExternalIDParams.NewStripeTaxConfiguration
| null;

/**
Expand Down Expand Up @@ -1382,6 +1409,18 @@ export namespace CustomerUpdateByExternalIDParams {
*/
automatic_tax_enabled?: boolean | null;
}

export interface NewStripeTaxConfiguration {
tax_exempt: boolean;

tax_provider: 'stripe';

/**
* Whether to automatically calculate tax for this customer. When null, inherits
* from account-level setting. When true or false, overrides the account setting.
*/
automatic_tax_enabled?: boolean | null;
}
}

Customers.CustomersPage = CustomersPage;
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.29.0'; // x-release-please-version
export const VERSION = '5.30.0'; // x-release-please-version