diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9f6dc40..06c868a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - name: Get GitHub OIDC Token if: github.repository == 'stainless-sdks/orb-node' id: github-oidc - uses: actions/github-script@v6 + uses: actions/github-script@v8 with: script: core.setOutput('github_token', await core.getIDToken()); diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 374d269d..b64d3dcb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.42.0" + ".": "5.43.0" } diff --git a/.stats.yml b/.stats.yml index 1f41e32f..e572dc25 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 126 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-6017828d1287c194d4d7759dc5b5410225ab58af66ff8605315f70f5e623b82d.yml -openapi_spec_hash: 4390eaf377258fcd7db1dbc073a2c23f +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-9f1a41612765cb08d100b2c9e85080e93306e8d0942d535f16052c3eb18d9b8b.yml +openapi_spec_hash: 6dd28f36adc7e7d6a9245585eaf9b9c1 config_hash: bcf82bddb691f6be773ac6cae8c03b9a diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1106b7..59f291a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 5.43.0 (2026-01-23) + +Full Changelog: [v5.42.0...v5.43.0](https://github.com/orbcorp/orb-node/compare/v5.42.0...v5.43.0) + +### Features + +* **api:** api update ([1bb195f](https://github.com/orbcorp/orb-node/commit/1bb195f823aa6666ce19d78c301d70d93d1ed534)) + + +### Chores + +* **ci:** upgrade `actions/github-script` ([5f57423](https://github.com/orbcorp/orb-node/commit/5f57423ebc1408007e29af9070818fae2557fc94)) + ## 5.42.0 (2026-01-21) Full Changelog: [v5.41.0...v5.42.0](https://github.com/orbcorp/orb-node/compare/v5.41.0...v5.42.0) diff --git a/package.json b/package.json index 06cf7491..c185d14d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "orb-billing", - "version": "5.42.0", + "version": "5.43.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 0da3c6c2..e1e99e73 100644 --- a/src/resources/customers/customers.ts +++ b/src/resources/customers/customers.ts @@ -411,6 +411,7 @@ export interface Customer { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -801,6 +802,7 @@ export interface CustomerCreateParams { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -1126,6 +1128,7 @@ export interface CustomerUpdateParams { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -1454,6 +1457,7 @@ export interface CustomerUpdateByExternalIDParams { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | diff --git a/src/resources/invoices.ts b/src/resources/invoices.ts index ecab2dac..8f4aa068 100644 --- a/src/resources/invoices.ts +++ b/src/resources/invoices.ts @@ -342,6 +342,7 @@ export interface InvoiceFetchUpcomingResponse { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -930,6 +931,7 @@ export interface InvoiceListSummaryResponse { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | diff --git a/src/resources/shared.ts b/src/resources/shared.ts index 4d7a1ae7..5477f623 100644 --- a/src/resources/shared.ts +++ b/src/resources/shared.ts @@ -401,6 +401,7 @@ export namespace ChangedSubscriptionResources { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -1210,6 +1211,7 @@ export interface CustomerMinified { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | @@ -1448,6 +1450,7 @@ export interface CustomerTaxID { | 'om_vat' | 'pe_ruc' | 'ph_tin' + | 'pl_nip' | 'ro_tin' | 'rs_pib' | 'ru_inn' @@ -1651,6 +1654,7 @@ export interface Invoice { * | Peru | `pe_ruc` | Peruvian RUC Number | * | Philippines | `ph_tin` | Philippines Tax Identification Number | * | Poland | `eu_vat` | European VAT Number | + * | Poland | `pl_nip` | Polish Tax ID Number | * | Portugal | `eu_vat` | European VAT Number | * | Romania | `eu_vat` | European VAT Number | * | Romania | `ro_tin` | Romanian Tax ID Number | diff --git a/src/version.ts b/src/version.ts index 11d1e3a3..f7ca7683 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '5.42.0'; // x-release-please-version +export const VERSION = '5.43.0'; // x-release-please-version