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 @@
{
".": "2.13.0"
".": "2.14.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: 27
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-9bab373fc62ce19147560ed3ec29fe09ad59d9a5b406d9ed21a22f15a511d9cb.yml
openapi_spec_hash: 518fdefff1eabc4bb8a3b54ddf7fa293
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-f39b852755134d01a440f7c37701f6c5397f43d13740d9ba08739cae488382a7.yml
openapi_spec_hash: de6c25eebe5026d0fb9a4d7a93ec7718
config_hash: d4b0c534eaf7665ea25168e0e824c9d3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.14.0 (2026-06-08)

Full Changelog: [v2.13.0...v2.14.0](https://github.com/browserbase/sdk-node/compare/v2.13.0...v2.14.0)

### Features

* [AI-2206][apps/api] Surface proxySettings.caCertificates in public SDK & docs ([f24f27a](https://github.com/browserbase/sdk-node/commit/f24f27a51e025152adfbe81654eba52df13e4a6c))

## 2.13.0 (2026-06-05)

Full Changelog: [v2.12.0...v2.13.0](https://github.com/browserbase/sdk-node/compare/v2.12.0...v2.13.0)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@browserbasehq/sdk",
"version": "2.13.0",
"version": "2.14.0",
"description": "The official Node.js library for the Browserbase API",
"author": "Browserbase <support@browserbase.com>",
"types": "dist/index.d.ts",
Expand Down
15 changes: 15 additions & 0 deletions src/resources/sessions/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ export interface SessionCreateParams {
>
| boolean;

/**
* Supplementary proxy settings. Optional.
*/
proxySettings?: SessionCreateParams.ProxySettings;

/**
* The region where the Session should run.
*/
Expand Down Expand Up @@ -408,6 +413,16 @@ export namespace SessionCreateParams {
*/
domainPattern?: string;
}

/**
* Supplementary proxy settings. Optional.
*/
export interface ProxySettings {
/**
* The TLS certificate IDs to trust. Optional.
*/
caCertificates?: Array<string>;
}
}

export interface SessionUpdateParams {
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 = '2.13.0'; // x-release-please-version
export const VERSION = '2.14.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/sessions/sessions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ describe('resource sessions', () => {
},
},
],
proxySettings: { caCertificates: ['182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'] },
region: 'us-west-2',
timeout: 60,
userMetadata: { foo: 'bar' },
Expand Down
Loading