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.14.1"
".": "0.14.2"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 57
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-1cd328ccf61f0e888d6df27b091c30b38c392ab9ca8ce7fd0ead8f10aaf71ffa.yml
openapi_spec_hash: af761c48d1955f11822f3b95f9c46750
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-6c765f1c4ce1c4dd4ceb371f56bf047aa79af36031ba43cbd68fa16a5fdb9bb3.yml
openapi_spec_hash: e9086f69281360f4e0895c9274a59531
config_hash: deadfc4d2b0a947673bcf559b5db6e1b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.14.2 (2025-10-16)

Full Changelog: [v0.14.1...v0.14.2](https://github.com/onkernel/kernel-node-sdk/compare/v0.14.1...v0.14.2)

### Features

* Kiosk mode ([7b9016e](https://github.com/onkernel/kernel-node-sdk/commit/7b9016ef162c9b28569e48aea971220fbc02c7aa))

## 0.14.1 (2025-10-13)

Full Changelog: [v0.14.0...v0.14.1](https://github.com/onkernel/kernel-node-sdk/compare/v0.14.0...v0.14.1)
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.14.1",
"version": "0.14.2",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
21 changes: 21 additions & 0 deletions src/resources/browsers/browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ export interface BrowserCreateResponse {
*/
browser_live_view_url?: string;

/**
* Whether the browser session is running in kiosk mode.
*/
kiosk_mode?: boolean;

/**
* Optional persistence configuration for the browser session.
*/
Expand Down Expand Up @@ -336,6 +341,11 @@ export interface BrowserRetrieveResponse {
*/
browser_live_view_url?: string;

/**
* Whether the browser session is running in kiosk mode.
*/
kiosk_mode?: boolean;

/**
* Optional persistence configuration for the browser session.
*/
Expand Down Expand Up @@ -434,6 +444,11 @@ export namespace BrowserListResponse {
*/
browser_live_view_url?: string;

/**
* Whether the browser session is running in kiosk mode.
*/
kiosk_mode?: boolean;

/**
* Optional persistence configuration for the browser session.
*/
Expand Down Expand Up @@ -510,6 +525,12 @@ export interface BrowserCreateParams {
*/
invocation_id?: string;

/**
* If true, launches the browser in kiosk mode to hide address bar and tabs in live
* view.
*/
kiosk_mode?: boolean;

/**
* Optional persistence configuration for the browser session.
*/
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.14.1'; // x-release-please-version
export const VERSION = '0.14.2'; // 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 @@ -29,6 +29,7 @@ describe('resource browsers', () => {
extensions: [{ id: 'id', name: 'name' }],
headless: false,
invocation_id: 'rr33xuugxj9h0bkf1rdt2bet',
kiosk_mode: true,
persistence: { id: 'my-awesome-browser-for-user-1234' },
profile: { id: 'id', name: 'name', save_changes: true },
proxy_id: 'proxy_id',
Expand Down