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 @@
{
".": "0.39.0"
".": "0.40.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 101
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d53de581fcac5c3b06940fc93667b9cd2a6a60dd3674da7c1f47484b0f442bf8.yml
openapi_spec_hash: 177d0c537b7e5357c815bb64175e6484
config_hash: c6b88eea9a15840f26130eb8ed3b42a0
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-e6e88da6e6fffe12873a108ca33ebfbd59b85232078ab0e4dca5c8273c131053.yml
openapi_spec_hash: 4f22b8ec1d048cc74a751e3ab39b943c
config_hash: 6bac5bbe5d5fc26e0912e33f646adb14
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.40.0 (2026-02-26)

Full Changelog: [v0.39.0...v0.40.0](https://github.com/kernel/kernel-node-sdk/compare/v0.39.0...v0.40.0)

### Features

* show pool browsers in dashboard and API ([f8cf26d](https://github.com/kernel/kernel-node-sdk/commit/f8cf26de9e5a46ea071673419267027e389ef5cb))

## 0.39.0 (2026-02-25)

Full Changelog: [v0.38.0...v0.39.0](https://github.com/kernel/kernel-node-sdk/compare/v0.38.0...v0.39.0)
Expand Down
1 change: 1 addition & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ Methods:
Types:

- <code><a href="./src/resources/browsers/browsers.ts">BrowserPersistence</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserPoolRef</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">Profile</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserCreateResponse</a></code>
- <code><a href="./src/resources/browsers/browsers.ts">BrowserRetrieveResponse</a></code>
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": "@onkernel/sdk",
"version": "0.39.0",
"version": "0.40.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ import {
BrowserListResponsesOffsetPagination,
BrowserLoadExtensionsParams,
BrowserPersistence,
BrowserPoolRef,
BrowserRetrieveParams,
BrowserRetrieveResponse,
BrowserUpdateParams,
Expand Down Expand Up @@ -969,6 +970,7 @@ export declare namespace Kernel {
export {
Browsers as Browsers,
type BrowserPersistence as BrowserPersistence,
type BrowserPoolRef as BrowserPoolRef,
type Profile as Profile,
type BrowserCreateResponse as BrowserCreateResponse,
type BrowserRetrieveResponse as BrowserRetrieveResponse,
Expand Down
5 changes: 5 additions & 0 deletions src/resources/browser-pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,11 @@ export interface BrowserPoolAcquireResponse {
*/
persistence?: BrowsersAPI.BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowsersAPI.BrowserPoolRef;

/**
* Browser profile metadata.
*/
Expand Down
36 changes: 36 additions & 0 deletions src/resources/browsers/browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,21 @@ export interface BrowserPersistence {
id: string;
}

/**
* Browser pool this session was acquired from, if any.
*/
export interface BrowserPoolRef {
/**
* Browser pool ID
*/
id: string;

/**
* Browser pool name, if set
*/
name?: string;
}

/**
* Browser profile metadata.
*/
Expand Down Expand Up @@ -310,6 +325,11 @@ export interface BrowserCreateResponse {
*/
persistence?: BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowserPoolRef;

/**
* Browser profile metadata.
*/
Expand Down Expand Up @@ -391,6 +411,11 @@ export interface BrowserRetrieveResponse {
*/
persistence?: BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowserPoolRef;

/**
* Browser profile metadata.
*/
Expand Down Expand Up @@ -472,6 +497,11 @@ export interface BrowserUpdateResponse {
*/
persistence?: BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowserPoolRef;

/**
* Browser profile metadata.
*/
Expand Down Expand Up @@ -553,6 +583,11 @@ export interface BrowserListResponse {
*/
persistence?: BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowserPoolRef;

/**
* Browser profile metadata.
*/
Expand Down Expand Up @@ -736,6 +771,7 @@ Browsers.Playwright = Playwright;
export declare namespace Browsers {
export {
type BrowserPersistence as BrowserPersistence,
type BrowserPoolRef as BrowserPoolRef,
type Profile as Profile,
type BrowserCreateResponse as BrowserCreateResponse,
type BrowserRetrieveResponse as BrowserRetrieveResponse,
Expand Down
1 change: 1 addition & 0 deletions src/resources/browsers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
export {
Browsers,
type BrowserPersistence,
type BrowserPoolRef,
type Profile,
type BrowserCreateResponse,
type BrowserRetrieveResponse,
Expand Down
1 change: 1 addition & 0 deletions src/resources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export {
export {
Browsers,
type BrowserPersistence,
type BrowserPoolRef,
type Profile,
type BrowserCreateResponse,
type BrowserRetrieveResponse,
Expand Down
5 changes: 5 additions & 0 deletions src/resources/invocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,11 @@ export namespace InvocationListBrowsersResponse {
*/
persistence?: BrowsersAPI.BrowserPersistence;

/**
* Browser pool this session was acquired from, if any.
*/
pool?: BrowsersAPI.BrowserPoolRef;

/**
* Browser profile metadata.
*/
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 = '0.39.0'; // x-release-please-version
export const VERSION = '0.40.0'; // x-release-please-version