diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ca683ed..3bafaeb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.46.0" + ".": "0.47.0" } diff --git a/.stats.yml b/.stats.yml index 4bc313e..7f48513 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index a40c82b..d3aee7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 06480a4..7661c1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@onkernel/sdk", - "version": "0.46.0", + "version": "0.47.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@onkernel/sdk", - "version": "0.46.0", + "version": "0.47.0", "license": "Apache-2.0", "devDependencies": { "@arethetypeswrong/cli": "^0.17.0", diff --git a/package.json b/package.json index 9611257..d1b2ff2 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/resources/auth/connections.ts b/src/resources/auth/connections.ts index 55f35bf..09ffe71 100644 --- a/src/resources/auth/connections.ts +++ b/src/resources/auth/connections.ts @@ -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 @@ -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) @@ -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; @@ -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; diff --git a/src/version.ts b/src/version.ts index e6f7960..d84ba01 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.46.0'; // x-release-please-version +export const VERSION = '0.47.0'; // x-release-please-version