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
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: CI
on:
push:
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'
branches:
- '**'
- '!integrated/**'
- '!stl-preview-head/**'
- '!stl-preview-base/**'
- '!generated'
- '!codegen/**'
- 'codegen/stl/**'
pull_request:
branches-ignore:
- 'stl-preview-head/**'
Expand Down
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.43.0"
".": "0.44.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 103
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-bda5e58fa0bbd08761f27a1e0edbc602c44141ac9483bf6c96d52b7f4d10d9a7.yml
openapi_spec_hash: 10833b36358e8cda023e5bb0abeab0ba
config_hash: cff4d43372b6fa66b64e2d4150f6aa76
configured_endpoints: 104
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-bb2ac8e0d3a1c08e8afcbcbad7cb733d0f84bd22a8d233c1ec3100a01ee078ae.yml
openapi_spec_hash: a83f7d1c422c85d6dc6158af7afe1d09
config_hash: 16e4457a0bb26e98a335a1c2a572290a
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## 0.44.0 (2026-03-20)

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

### Features

* Add GPU viewport presets and GPU encoder defaults ([693e4f6](https://github.com/kernel/kernel-node-sdk/commit/693e4f6cdd4d2db7524c2ff22ec99c2013cf6279))
* Adds description to OAS spec for docs about delta_x, delta_y ([7aa9d1e](https://github.com/kernel/kernel-node-sdk/commit/7aa9d1eed6890de62f92edac3bbccff8565b1d57))
* Drop headless GPU support and disable pooling ([762670e](https://github.com/kernel/kernel-node-sdk/commit/762670ef4e3c6126a4c541eb67f49b2565504e40))
* Enhance managed authentication with CUA support and new features ([2d89c68](https://github.com/kernel/kernel-node-sdk/commit/2d89c683d2cb4249dfea19407bc5064dd8bb9131))
* expose smooth drag mouse movement via public API ([b9911dd](https://github.com/kernel/kernel-node-sdk/commit/b9911dd1c37610192c9ef70e1344f7b93a191f24))
* Rename hardware acceleration UI/docs wording to GPU acceleration ([1d22910](https://github.com/kernel/kernel-node-sdk/commit/1d22910d61a9baec560384fd0485fc0bb9216371))


### Chores

* **internal:** tweak CI branches ([256d3ff](https://github.com/kernel/kernel-node-sdk/commit/256d3ff87c9744a8017a4fa93e21ec05118dbfca))

## 0.43.0 (2026-03-10)

Full Changelog: [v0.42.1...v0.43.0](https://github.com/kernel/kernel-node-sdk/compare/v0.42.1...v0.43.0)
Expand Down
2 changes: 2 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ Types:
- <code><a href="./src/resources/auth/connections.ts">LoginResponse</a></code>
- <code><a href="./src/resources/auth/connections.ts">ManagedAuth</a></code>
- <code><a href="./src/resources/auth/connections.ts">ManagedAuthCreateRequest</a></code>
- <code><a href="./src/resources/auth/connections.ts">ManagedAuthUpdateRequest</a></code>
- <code><a href="./src/resources/auth/connections.ts">SubmitFieldsRequest</a></code>
- <code><a href="./src/resources/auth/connections.ts">SubmitFieldsResponse</a></code>
- <code><a href="./src/resources/auth/connections.ts">ConnectionFollowResponse</a></code>
Expand All @@ -222,6 +223,7 @@ Methods:

- <code title="post /auth/connections">client.auth.connections.<a href="./src/resources/auth/connections.ts">create</a>({ ...params }) -> ManagedAuth</code>
- <code title="get /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">retrieve</a>(id) -> ManagedAuth</code>
- <code title="patch /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">update</a>(id, { ...params }) -> ManagedAuth</code>
- <code title="get /auth/connections">client.auth.connections.<a href="./src/resources/auth/connections.ts">list</a>({ ...params }) -> ManagedAuthsOffsetPagination</code>
- <code title="delete /auth/connections/{id}">client.auth.connections.<a href="./src/resources/auth/connections.ts">delete</a>(id) -> void</code>
- <code title="get /auth/connections/{id}/events">client.auth.connections.<a href="./src/resources/auth/connections.ts">follow</a>(id) -> ConnectionFollowResponse</code>
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": "@onkernel/sdk",
"version": "0.43.0",
"version": "0.44.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions src/resources/auth/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ import {
ConnectionListParams,
ConnectionLoginParams,
ConnectionSubmitParams,
ConnectionUpdateParams,
Connections,
LoginResponse,
ManagedAuth,
ManagedAuthCreateRequest,
ManagedAuthUpdateRequest,
ManagedAuthsOffsetPagination,
SubmitFieldsRequest,
SubmitFieldsResponse,
Expand All @@ -29,11 +31,13 @@ export declare namespace Auth {
type LoginResponse as LoginResponse,
type ManagedAuth as ManagedAuth,
type ManagedAuthCreateRequest as ManagedAuthCreateRequest,
type ManagedAuthUpdateRequest as ManagedAuthUpdateRequest,
type SubmitFieldsRequest as SubmitFieldsRequest,
type SubmitFieldsResponse as SubmitFieldsResponse,
type ConnectionFollowResponse as ConnectionFollowResponse,
type ManagedAuthsOffsetPagination as ManagedAuthsOffsetPagination,
type ConnectionCreateParams as ConnectionCreateParams,
type ConnectionUpdateParams as ConnectionUpdateParams,
type ConnectionListParams as ConnectionListParams,
type ConnectionLoginParams as ConnectionLoginParams,
type ConnectionSubmitParams as ConnectionSubmitParams,
Expand Down
Loading
Loading