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
23 changes: 0 additions & 23 deletions .devcontainer/Dockerfile

This file was deleted.

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.37.2"
".": "5.38.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-7936e3f73bbe1d59d27fd7a8a226985927b38fdec1c936c77577381699fb6140.yml
openapi_spec_hash: 1d3f9ed5fbdb0e40d56d6acd9d1736e2
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-03af7f658aed245cf7e230055de59fe92a78880f3719bf254ed9352bf89bad5e.yml
openapi_spec_hash: c4703d217c25e8c02c248caed9e2d3be
config_hash: 895e36fb2d717958770fd4cf883f4b74
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 5.38.0 (2025-12-06)

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

### Features

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


### Chores

* **internal:** codegen related update ([40d3a87](https://github.com/orbcorp/orb-node/commit/40d3a87edb6e7ec4ccafcbeaaf43e33fe9d524cd))

## 5.37.2 (2025-12-05)

Full Changelog: [v5.37.1...v5.37.2](https://github.com/orbcorp/orb-node/compare/v5.37.1...v5.37.2)
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.37.2",
"version": "5.38.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <[email protected]>",
"types": "dist/index.d.ts",
Expand Down
78 changes: 78 additions & 0 deletions src/resources/subscription-changes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@ export interface MutatedSubscription {
export interface SubscriptionChangeRetrieveResponse {
id: string;

/**
* The type of change (e.g., 'schedule_plan_change', 'create_subscription').
*/
change_type: string;

/**
* Subscription change will be cancelled at this time and can no longer be applied.
*/
Expand All @@ -250,10 +255,31 @@ export interface SubscriptionChangeRetrieveResponse {
*/
applied_at?: string | null;

/**
* Billing cycle alignment for plan changes.
*/
billing_cycle_alignment?: string | null;

/**
* When this change was cancelled.
*/
cancelled_at?: string | null;

/**
* How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
* 'requested_date').
*/
change_option?: string | null;

/**
* When this change will take effect.
*/
effective_date?: string | null;

/**
* The target plan ID for plan changes.
*/
plan_id?: string | null;
}

/**
Expand All @@ -265,6 +291,11 @@ export interface SubscriptionChangeRetrieveResponse {
export interface SubscriptionChangeApplyResponse {
id: string;

/**
* The type of change (e.g., 'schedule_plan_change', 'create_subscription').
*/
change_type: string;

/**
* Subscription change will be cancelled at this time and can no longer be applied.
*/
Expand All @@ -279,10 +310,31 @@ export interface SubscriptionChangeApplyResponse {
*/
applied_at?: string | null;

/**
* Billing cycle alignment for plan changes.
*/
billing_cycle_alignment?: string | null;

/**
* When this change was cancelled.
*/
cancelled_at?: string | null;

/**
* How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
* 'requested_date').
*/
change_option?: string | null;

/**
* When this change will take effect.
*/
effective_date?: string | null;

/**
* The target plan ID for plan changes.
*/
plan_id?: string | null;
}

/**
Expand All @@ -294,6 +346,11 @@ export interface SubscriptionChangeApplyResponse {
export interface SubscriptionChangeCancelResponse {
id: string;

/**
* The type of change (e.g., 'schedule_plan_change', 'create_subscription').
*/
change_type: string;

/**
* Subscription change will be cancelled at this time and can no longer be applied.
*/
Expand All @@ -308,10 +365,31 @@ export interface SubscriptionChangeCancelResponse {
*/
applied_at?: string | null;

/**
* Billing cycle alignment for plan changes.
*/
billing_cycle_alignment?: string | null;

/**
* When this change was cancelled.
*/
cancelled_at?: string | null;

/**
* How the change is scheduled (e.g., 'immediate', 'end_of_subscription_term',
* 'requested_date').
*/
change_option?: string | null;

/**
* When this change will take effect.
*/
effective_date?: string | null;

/**
* The target plan ID for plan changes.
*/
plan_id?: string | null;
}

export interface SubscriptionChangeApplyParams {
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.37.2'; // x-release-please-version
export const VERSION = '5.38.0'; // x-release-please-version