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.64.0"
".": "5.65.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-aa92e5bbd456e6bc527223462c075f4315b7edfde23aae99cb6aa8272b3deae1.yml
openapi_spec_hash: b234ee2f5a52bacac12c5ed59a56f542
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb/orb-5192a1b7cab269d33dbc3c9eb75994d41880eff1694900232b99f4cc30ae5710.yml
openapi_spec_hash: 1bcfe26f0efab1f1287195a45074fae5
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.65.0 (2026-05-27)

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

### Features

* **api:** api update ([169b669](https://github.com/orbcorp/orb-node/commit/169b66938b92429911190a815fb31e828d15cf1b))

## 5.64.0 (2026-05-26)

Full Changelog: [v5.63.0...v5.64.0](https://github.com/orbcorp/orb-node/compare/v5.63.0...v5.64.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.64.0",
"version": "5.65.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions src/resources/customers/customers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,12 @@ export interface Customer {
*/
payment_provider_id: string | null;

/**
* Deprecated. Returns the URL of the most recent non-expired portal link, or null.
* When the account has opted into customer portal sessions, this field always
* returns null. Use POST /v1/customers/{id}/portal_sessions to mint short-lived
* portal session URLs.
*/
portal_url: string | null;

shipping_address: Shared.Address | null;
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.64.0'; // x-release-please-version
export const VERSION = '5.65.0'; // x-release-please-version
Loading