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.33.0"
".": "5.34.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-4ad3b44ca7f484243d8706b6aa7f4498fc5bf2b37fadf3da0a06d657e482c08f.yml
openapi_spec_hash: 9ead1a2aae36be1086c627c3636064ea
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-e639b12e0daebce74f42d1f31f675bda4287b9c749dd7d4620a1e96a83343ec4.yml
openapi_spec_hash: 51eb3d47b25e299de670b2d52f5e9017
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.34.0 (2025-11-18)

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

### Features

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

## 5.33.0 (2025-11-16)

Full Changelog: [v5.32.0...v5.33.0](https://github.com/orbcorp/orb-node/compare/v5.32.0...v5.33.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.33.0",
"version": "5.34.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
12 changes: 10 additions & 2 deletions src/resources/plans/plans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,15 @@ export interface Plan {
| Shared.PlanPhaseMaximumAdjustment
>;

/**
* @deprecated Legacy field representing the parent plan if the current plan is a
* 'child plan', overriding prices from the parent.
*/
base_plan: Plan.BasePlan | null;

/**
* The parent plan id if the given plan was created by overriding one or more of
* the parent's prices
* @deprecated Legacy field representing the parent plan ID if the current plan is
* a 'child plan', overriding prices from the parent.
*/
base_plan_id: string | null;

Expand Down Expand Up @@ -193,6 +197,10 @@ export interface Plan {
}

export namespace Plan {
/**
* @deprecated Legacy field representing the parent plan if the current plan is a
* 'child plan', overriding prices from the parent.
*/
export interface BasePlan {
id: string | null;

Expand Down
4 changes: 2 additions & 2 deletions src/resources/subscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7571,8 +7571,8 @@ export namespace SubscriptionPriceIntervalsParams {

/**
* If true, ending an in-arrears price interval mid-cycle will defer billing the
* final line itemuntil the next scheduled invoice. If false, it will be billed on
* its end date. If not provided, behaviorwill follow account default.
* final line item until the next scheduled invoice. If false, it will be billed on
* its end date. If not provided, behavior will follow account default.
*/
can_defer_billing?: boolean | 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.33.0'; // x-release-please-version
export const VERSION = '5.34.0'; // x-release-please-version