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.37.0"
".": "0.38.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-fc4a441d80d9a26574ef8af390a0c76265f5d4190daf90a04b6b353b128bbd97.yml
openapi_spec_hash: 192987649d3797c3a80e6ef201667b64
config_hash: 8af430e19f4af86c05f2987241cae72f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-9462b3d8f055f8bda06da65583f5aa09a17d35254c5983796d8e84ebb3c62c47.yml
openapi_spec_hash: 1914dd35b8e0e5a21ccec91eac2a616d
config_hash: c6b88eea9a15840f26130eb8ed3b42a0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.38.0 (2026-02-25)

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

### Features

* Neil/kernel 1029 past session search ([c417833](https://github.com/kernel/kernel-node-sdk/commit/c417833c9d93b30f03954135921850adfe177616))


### Bug Fixes

* **docs/contributing:** correct pnpm link command ([4b4bb6c](https://github.com/kernel/kernel-node-sdk/commit/4b4bb6ceab1759dce8864539ac0e877b00287211))

## 0.37.0 (2026-02-23)

Full Changelog: [v0.36.1...v0.37.0](https://github.com/kernel/kernel-node-sdk/compare/v0.36.1...v0.37.0)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ $ yarn link @onkernel/sdk
# With pnpm
$ pnpm link --global
$ cd ../my-package
$ pnpm link -global @onkernel/sdk
$ pnpm link --global @onkernel/sdk
```

## Running tests
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.37.0",
"version": "0.38.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions src/resources/browsers/browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,11 @@ export interface BrowserListParams extends OffsetPaginationParams {
*/
include_deleted?: boolean;

/**
* Search browsers by session ID, profile ID, or proxy ID.
*/
query?: string;

/**
* Filter sessions by status. "active" returns only active sessions (default),
* "deleted" returns only soft-deleted sessions, "all" returns both.
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.37.0'; // x-release-please-version
export const VERSION = '0.38.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/browsers/browsers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ describe('resource browsers', () => {
include_deleted: true,
limit: 1,
offset: 0,
query: 'query',
status: 'active',
},
{ path: '/_stainless_unknown_path' },
Expand Down