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.52.0"
".": "0.53.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: 112
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-4ce09d1a7546ab36f578cb27d819187eeb90c580b11834c7ff7a375aa22f9a20.yml
openapi_spec_hash: 1043ab2d699f6c828680c3352cd4cece
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel/kernel-718b49461ceaa1d6cac7854c29dfef9036a83f6632e756c9d1ecf31fd77c57f6.yml
openapi_spec_hash: f3d12a3a0a5e9ce711fb1c571ee36f9c
config_hash: 08d55086449943a8fec212b870061a3f
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.53.0 (2026-05-01)

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

### Features

* Add 'switch' MFA option type for generic method-switcher links ([399a3d2](https://github.com/kernel/kernel-node-sdk/commit/399a3d2a2e80dc0f6330d8cd5b64b28c8c859839))

## 0.52.0 (2026-04-29)

Full Changelog: [v0.51.0...v0.52.0](https://github.com/kernel/kernel-node-sdk/compare/v0.51.0...v0.52.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.52.0",
"version": "0.53.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
16 changes: 10 additions & 6 deletions src/resources/auth/connections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ export namespace ManagedAuth {
* If this field is associated with an MFA option, the type of that option (e.g.,
* password field linked to "Enter password" option)
*/
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null;
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' | null;

/**
* Field placeholder
Expand All @@ -487,9 +487,11 @@ export namespace ManagedAuth {
label: string;

/**
* The MFA delivery method type (includes password for auth method selection pages)
* The MFA delivery method type. Includes 'password' for auth method selection
* pages and 'switch' for generic method-switcher links like "Use another method"
* that do not name a specific method.
*/
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password';
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch';

/**
* Additional instructions from the site
Expand Down Expand Up @@ -927,7 +929,7 @@ export namespace ConnectionFollowResponse {
* If this field is associated with an MFA option, the type of that option (e.g.,
* password field linked to "Enter password" option)
*/
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null;
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' | null;

/**
* Field placeholder
Expand All @@ -950,9 +952,11 @@ export namespace ConnectionFollowResponse {
label: string;

/**
* The MFA delivery method type (includes password for auth method selection pages)
* The MFA delivery method type. Includes 'password' for auth method selection
* pages and 'switch' for generic method-switcher links like "Use another method"
* that do not name a specific method.
*/
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password';
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch';

/**
* Additional instructions from the site
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.52.0'; // x-release-please-version
export const VERSION = '0.53.0'; // x-release-please-version
Loading