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
1 change: 0 additions & 1 deletion .eslintcache

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.12.0"
".": "5.13.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-c075f748a7de8ecdccf11a8f2374682b0efd84f1318147274a838bf2fdd73b58.yml
openapi_spec_hash: ae918b8f348f1b7d3252a59dac36c453
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-b6ec9a6bf40b74575d917ab145b2413bc61dcd6989bb9d1aa41624bf3437599e.yml
openapi_spec_hash: 53cf9363c3bd9649e0af5f713abdcba7
config_hash: 1f73a949b649ecfe6ec68ba1bb459dc2
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 5.13.0 (2025-10-01)

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

### Features

* **api:** api update ([7bbfaa9](https://github.com/orbcorp/orb-node/commit/7bbfaa9bb73fee06ea4b0cdd2cae00022b254234))


### Chores

* **internal:** remove .eslintcache ([d953352](https://github.com/orbcorp/orb-node/commit/d95335270dabf5a45d96397f05244124424f671e))

## 5.12.0 (2025-09-29)

Full Changelog: [v5.11.0...v5.12.0](https://github.com/orbcorp/orb-node/compare/v5.11.0...v5.12.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.12.0",
"version": "5.13.0",
"description": "The official TypeScript library for the Orb API",
"author": "Orb <team@withorb.com>",
"types": "dist/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions src/resources/subscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5571,6 +5571,10 @@ export interface SubscriptionListParams extends PageParams {

external_customer_id?: Array<string> | null;

external_plan_id?: string | null;

plan_id?: string | null;

status?: 'active' | 'ended' | 'upcoming' | 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.12.0'; // x-release-please-version
export const VERSION = '5.13.0'; // x-release-please-version
2 changes: 2 additions & 0 deletions tests/api-resources/subscriptions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ describe('resource subscriptions', () => {
cursor: 'cursor',
customer_id: ['string'],
external_customer_id: ['string'],
external_plan_id: 'external_plan_id',
limit: 1,
plan_id: 'plan_id',
status: 'active',
},
{ path: '/_stainless_unknown_path' },
Expand Down