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.46.0"
".": "0.47.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: 104
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-f7024f4171c7c4ec558de1c27f338b1089ffddd0d2dbfdb9bb9f9c2abe8f47bf.yml
openapi_spec_hash: ced43682b49e73a2862f99b49abb4fcd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-ac10847d991ef8ed89124b5550922cb5726af2b4a4c3396ee6ff82938302fc25.yml
openapi_spec_hash: 0d902563108fe2461708c05336eab40a
config_hash: 16e4457a0bb26e98a335a1c2a572290a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.47.0 (2026-04-07)

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

### Features

* Include login_url in managed auth connection response ([8900a89](https://github.com/kernel/kernel-node-sdk/commit/8900a895eaf957e902b7f26752419548fdde224e))

## 0.46.0 (2026-04-06)

Full Changelog: [v0.45.0...v0.46.0](https://github.com/kernel/kernel-node-sdk/compare/v0.45.0...v0.46.0)
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.46.0",
"version": "0.47.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
16 changes: 12 additions & 4 deletions src/resources/auth/connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ import { path } from '../../internal/utils/path';
*/
export class Connections extends APIResource {
/**
* 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.
* Creates an auth connection for a profile and domain combination. If the provided
* profile_name does not exist, it is created automatically. Returns 409 Conflict
* if an auth connection already exists for the given profile and domain.
*
* @example
* ```ts
Expand Down Expand Up @@ -334,6 +335,11 @@ export interface ManagedAuth {
*/
live_view_url?: string | null;

/**
* Optional login page URL to skip discovery
*/
login_url?: string;

/**
* MFA method options (present when flow_step=awaiting_input and MFA selection
* required)
Expand Down Expand Up @@ -521,7 +527,8 @@ export interface ManagedAuthCreateRequest {
domain: string;

/**
* Name of the profile to manage authentication for
* Name of the profile to manage authentication for. If the profile does not exist,
* it is created automatically.
*/
profile_name: string;

Expand Down Expand Up @@ -975,7 +982,8 @@ export interface ConnectionCreateParams {
domain: string;

/**
* Name of the profile to manage authentication for
* Name of the profile to manage authentication for. If the profile does not exist,
* it is created automatically.
*/
profile_name: string;

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.46.0'; // x-release-please-version
export const VERSION = '0.47.0'; // x-release-please-version
Loading