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"
}
4 changes: 2 additions & 2 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
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-848817f2b20afb49a652952c814b99e27a94090e0770465e9a87748d27e227a7.yml
openapi_spec_hash: 91efb805e45cdd4c73cd8b0950bef019
config_hash: 3b1fbbb6bda0dac7e8b42e155cd7da56
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.33.0 (2026-02-07)

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))

## 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
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
4 changes: 2 additions & 2 deletions src/resources/agents/auth/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export interface AuthAgent {
can_reauth_reason?: string;

/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -310,7 +310,7 @@ export interface AuthAgent {

export namespace AuthAgent {
/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down
42 changes: 21 additions & 21 deletions src/resources/auth/connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { path } from '../../internal/utils/path';

export class Connections extends APIResource {
/**
* Creates managed authentication for a profile and domain combination. Returns 409
* Conflict if managed auth already exists for the given profile and domain.
* Creates an auth connection for a profile and domain combination. Returns 409
* Conflict if an auth connection already exists for the given profile and domain.
*
* @example
* ```ts
Expand All @@ -28,8 +28,8 @@ export class Connections extends APIResource {
}

/**
* Retrieve managed auth by its ID. Includes current flow state if a login is in
* progress.
* Retrieve an auth connection by its ID. Includes current flow state if a login is
* in progress.
*
* @example
* ```ts
Expand All @@ -43,7 +43,7 @@ export class Connections extends APIResource {
}

/**
* List managed auths with optional filters for profile_name and domain.
* List auth connections with optional filters for profile_name and domain.
*
* @example
* ```ts
Expand All @@ -61,9 +61,9 @@ export class Connections extends APIResource {
}

/**
* Deletes managed auth and terminates its workflow. This will:
* Deletes an auth connection and terminates its workflow. This will:
*
* - Delete the managed auth record
* - Delete the auth connection record
* - Terminate the Temporal workflow
* - Cancel any in-progress login flows
*
Expand Down Expand Up @@ -98,8 +98,8 @@ export class Connections extends APIResource {
}

/**
* Starts a login flow for the managed auth. Returns immediately with a hosted URL
* for the user to complete authentication, or triggers automatic re-auth if
* Starts a login flow for the auth connection. Returns immediately with a hosted
* URL for the user to complete authentication, or triggers automatic re-auth if
* credentials are stored.
*
* @example
Expand All @@ -118,8 +118,8 @@ export class Connections extends APIResource {
}

/**
* Submits field values for the login form. Poll the managed auth to track progress
* and get results.
* Submits field values for the login form. Poll the auth connection to track
* progress and get results.
*
* @example
* ```ts
Expand Down Expand Up @@ -158,7 +158,7 @@ export interface LoginRequest {
*/
export interface LoginResponse {
/**
* Managed auth ID
* Auth connection ID
*/
id: string;

Expand Down Expand Up @@ -195,7 +195,7 @@ export interface LoginResponse {
*/
export interface ManagedAuth {
/**
* Unique identifier for the managed auth
* Unique identifier for the auth connection
*/
id: string;

Expand All @@ -205,7 +205,7 @@ export interface ManagedAuth {
domain: string;

/**
* Name of the profile associated with this managed auth
* Name of the profile associated with this auth connection
*/
profile_name: string;

Expand Down Expand Up @@ -247,7 +247,7 @@ export interface ManagedAuth {
can_reauth_reason?: string;

/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -350,7 +350,7 @@ export interface ManagedAuth {

export namespace ManagedAuth {
/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -425,7 +425,7 @@ export namespace ManagedAuth {
}

/**
* Request to create managed auth for a profile and domain
* Request to create an auth connection for a profile and domain
*/
export interface ManagedAuthCreateRequest {
/**
Expand Down Expand Up @@ -460,7 +460,7 @@ export interface ManagedAuthCreateRequest {
allowed_domains?: Array<string>;

/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -489,7 +489,7 @@ export interface ManagedAuthCreateRequest {

export namespace ManagedAuthCreateRequest {
/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -726,7 +726,7 @@ export interface ConnectionCreateParams {
allowed_domains?: Array<string>;

/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
Expand Down Expand Up @@ -755,7 +755,7 @@ export interface ConnectionCreateParams {

export namespace ConnectionCreateParams {
/**
* Reference to credentials for managed auth. Use one of:
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
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.32.0'; // x-release-please-version
export const VERSION = '0.33.0'; // x-release-please-version