diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ab0aa8d0..522d95a7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.29.0" + ".": "5.30.0" } diff --git a/.stats.yml b/.stats.yml index ac446c34..a477a2c5 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 929a5d70..e1b2614b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index b7c040d1..c2cab13a 100644 --- a/package.json +++ b/package.json @@ -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 ", "types": "dist/index.d.ts", diff --git a/src/resources/customers/customers.ts b/src/resources/customers/customers.ts index 4c4dac86..bb7e396b 100644 --- a/src/resources/customers/customers.ts +++ b/src/resources/customers/customers.ts @@ -650,6 +650,7 @@ export interface CustomerCreateParams { | NewSphereConfiguration | CustomerCreateParams.NewNumeralConfiguration | CustomerCreateParams.NewAnrokConfiguration + | CustomerCreateParams.NewStripeTaxConfiguration | null; /** @@ -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 { @@ -927,6 +940,7 @@ export interface CustomerUpdateParams { | NewSphereConfiguration | CustomerUpdateParams.NewNumeralConfiguration | CustomerUpdateParams.NewAnrokConfiguration + | CustomerUpdateParams.NewStripeTaxConfiguration | null; /** @@ -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 { @@ -1207,6 +1233,7 @@ export interface CustomerUpdateByExternalIDParams { | NewSphereConfiguration | CustomerUpdateByExternalIDParams.NewNumeralConfiguration | CustomerUpdateByExternalIDParams.NewAnrokConfiguration + | CustomerUpdateByExternalIDParams.NewStripeTaxConfiguration | null; /** @@ -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; diff --git a/src/version.ts b/src/version.ts index ad46c9ab..bb7cfbe0 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '5.29.0'; // x-release-please-version +export const VERSION = '5.30.0'; // x-release-please-version