From 063a950e3111a3ea560bbd8ae23b1062f9ddc646 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 7 Feb 2026 20:23:25 +0000 Subject: [PATCH 1/2] feat: Browser API endpoint grouping --- .stats.yml | 4 +-- src/resources/agents/auth/auth.ts | 4 +-- src/resources/auth/connections.ts | 42 +++++++++++++++---------------- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.stats.yml b/.stats.yml index ad62343..796d854 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/src/resources/agents/auth/auth.ts b/src/resources/agents/auth/auth.ts index c812518..813aa17 100644 --- a/src/resources/agents/auth/auth.ts +++ b/src/resources/agents/auth/auth.ts @@ -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 @@ -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 diff --git a/src/resources/auth/connections.ts b/src/resources/auth/connections.ts index 8925092..ff57711 100644 --- a/src/resources/auth/connections.ts +++ b/src/resources/auth/connections.ts @@ -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 @@ -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 @@ -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 @@ -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 * @@ -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 @@ -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 @@ -158,7 +158,7 @@ export interface LoginRequest { */ export interface LoginResponse { /** - * Managed auth ID + * Auth connection ID */ id: string; @@ -195,7 +195,7 @@ export interface LoginResponse { */ export interface ManagedAuth { /** - * Unique identifier for the managed auth + * Unique identifier for the auth connection */ id: string; @@ -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; @@ -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 @@ -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 @@ -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 { /** @@ -460,7 +460,7 @@ export interface ManagedAuthCreateRequest { allowed_domains?: Array; /** - * 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 @@ -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 @@ -726,7 +726,7 @@ export interface ConnectionCreateParams { allowed_domains?: Array; /** - * 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 @@ -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 From b5a75de3fc34ce2978be798763c7a205ca27483b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 7 Feb 2026 20:23:42 +0000 Subject: [PATCH 2/2] release: 0.33.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4758222..53ecb86 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.32.0" + ".": "0.33.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a4620f5..37131d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 6409714..77382fa 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/version.ts b/src/version.ts index b413d15..dc173dd 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.32.0'; // x-release-please-version +export const VERSION = '0.33.0'; // x-release-please-version