Skip to content
Open
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.32.0"
".": "0.33.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: 108
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-f967d3024897a6125d5d18c4577dbb2cc22d742d487e6a43165198685f992379.yml
openapi_spec_hash: e1c40ef0aee3a79168eb9cc854a9e403
config_hash: 3b1fbbb6bda0dac7e8b42e155cd7da56
configured_endpoints: 100
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-13e82ae9e725e2c3ca19da7248a7a9c8696a0dfe088654cf26aea07c76d6567a.yml
openapi_spec_hash: 6d4151a6066a8474bc56923299aec18a
config_hash: 82f0a04081a3ab7111d3a9c68cd3ff2b
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.33.0 (2026-02-10)

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

### Features

* Browser API endpoint grouping ([063a950](https://github.com/kernel/kernel-node-sdk/commit/063a950e3111a3ea560bbd8ae23b1062f9ddc646))


### Refactors

* **api:** remove deprecated agent-auth endpoints from stainless.… ([fd445dd](https://github.com/kernel/kernel-node-sdk/commit/fd445dd9d345fb084758b7217a7d0af2232d3b51))

## 0.32.0 (2026-02-07)

Full Changelog: [v0.31.2...v0.32.0](https://github.com/kernel/kernel-node-sdk/compare/v0.31.2...v0.32.0)
Expand Down
34 changes: 0 additions & 34 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,40 +278,6 @@ Methods:
- <code title="post /browser_pools/{id_or_name}/flush">client.browserPools.<a href="./src/resources/browser-pools.ts">flush</a>(idOrName) -> void</code>
- <code title="post /browser_pools/{id_or_name}/release">client.browserPools.<a href="./src/resources/browser-pools.ts">release</a>(idOrName, { ...params }) -> void</code>

# Agents

## Auth

Types:

- <code><a href="./src/resources/agents/auth/auth.ts">AgentAuthInvocationResponse</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">AgentAuthSubmitResponse</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">AuthAgent</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">AuthAgentCreateRequest</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">AuthAgentInvocationCreateRequest</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">AuthAgentInvocationCreateResponse</a></code>
- <code><a href="./src/resources/agents/auth/auth.ts">DiscoveredField</a></code>

Methods:

- <code title="post /agents/auth">client.agents.auth.<a href="./src/resources/agents/auth/auth.ts">create</a>({ ...params }) -> AuthAgent</code>
- <code title="get /agents/auth/{id}">client.agents.auth.<a href="./src/resources/agents/auth/auth.ts">retrieve</a>(id) -> AuthAgent</code>
- <code title="get /agents/auth">client.agents.auth.<a href="./src/resources/agents/auth/auth.ts">list</a>({ ...params }) -> AuthAgentsOffsetPagination</code>
- <code title="delete /agents/auth/{id}">client.agents.auth.<a href="./src/resources/agents/auth/auth.ts">delete</a>(id) -> void</code>

### Invocations

Types:

- <code><a href="./src/resources/agents/auth/invocations.ts">InvocationExchangeResponse</a></code>

Methods:

- <code title="post /agents/auth/invocations">client.agents.auth.invocations.<a href="./src/resources/agents/auth/invocations.ts">create</a>({ ...params }) -> AuthAgentInvocationCreateResponse</code>
- <code title="get /agents/auth/invocations/{invocation_id}">client.agents.auth.invocations.<a href="./src/resources/agents/auth/invocations.ts">retrieve</a>(invocationID) -> AgentAuthInvocationResponse</code>
- <code title="post /agents/auth/invocations/{invocation_id}/exchange">client.agents.auth.invocations.<a href="./src/resources/agents/auth/invocations.ts">exchange</a>(invocationID, { ...params }) -> InvocationExchangeResponse</code>
- <code title="post /agents/auth/invocations/{invocation_id}/submit">client.agents.auth.invocations.<a href="./src/resources/agents/auth/invocations.ts">submit</a>(invocationID, { ...params }) -> AgentAuthSubmitResponse</code>

# Credentials

Types:
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.32.0",
"version": "0.33.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 0 additions & 5 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ import {
ProxyListResponse,
ProxyRetrieveResponse,
} from './resources/proxies';
import { Agents } from './resources/agents/agents';
import { Auth } from './resources/auth/auth';
import {
BrowserCreateParams,
Expand Down Expand Up @@ -898,7 +897,6 @@ export class Kernel {
proxies: API.Proxies = new API.Proxies(this);
extensions: API.Extensions = new API.Extensions(this);
browserPools: API.BrowserPools = new API.BrowserPools(this);
agents: API.Agents = new API.Agents(this);
credentials: API.Credentials = new API.Credentials(this);
credentialProviders: API.CredentialProviders = new API.CredentialProviders(this);
}
Expand All @@ -912,7 +910,6 @@ Kernel.Auth = Auth;
Kernel.Proxies = Proxies;
Kernel.Extensions = Extensions;
Kernel.BrowserPools = BrowserPools;
Kernel.Agents = Agents;
Kernel.Credentials = Credentials;
Kernel.CredentialProviders = CredentialProviders;

Expand Down Expand Up @@ -1015,8 +1012,6 @@ export declare namespace Kernel {
type BrowserPoolReleaseParams as BrowserPoolReleaseParams,
};

export { Agents as Agents };

export {
Credentials as Credentials,
type CreateCredentialRequest as CreateCredentialRequest,
Expand Down
3 changes: 0 additions & 3 deletions src/resources/agents.ts

This file was deleted.

39 changes: 0 additions & 39 deletions src/resources/agents/agents.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/resources/agents/auth.ts

This file was deleted.

Loading