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.38.0"
".": "0.39.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: 101
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-9462b3d8f055f8bda06da65583f5aa09a17d35254c5983796d8e84ebb3c62c47.yml
openapi_spec_hash: 1914dd35b8e0e5a21ccec91eac2a616d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d53de581fcac5c3b06940fc93667b9cd2a6a60dd3674da7c1f47484b0f442bf8.yml
openapi_spec_hash: 177d0c537b7e5357c815bb64175e6484
config_hash: c6b88eea9a15840f26130eb8ed3b42a0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.39.0 (2026-02-25)

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

### Features

* Add proxy hostname bypass hosts ([c6878d4](https://github.com/kernel/kernel-node-sdk/commit/c6878d4b555e00680709d0778e142439c8990d74))

## 0.38.0 (2026-02-25)

Full Changelog: [v0.37.0...v0.38.0](https://github.com/kernel/kernel-node-sdk/compare/v0.37.0...v0.38.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.38.0",
"version": "0.39.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
25 changes: 25 additions & 0 deletions src/resources/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ export interface ProxyCreateResponse {

id?: string;

/**
* Hostnames that should bypass the parent proxy and connect directly.
*/
bypass_hosts?: Array<string>;

/**
* Configuration specific to the selected proxy `type`.
*/
Expand Down Expand Up @@ -283,6 +288,11 @@ export interface ProxyRetrieveResponse {

id?: string;

/**
* Hostnames that should bypass the parent proxy and connect directly.
*/
bypass_hosts?: Array<string>;

/**
* Configuration specific to the selected proxy `type`.
*/
Expand Down Expand Up @@ -511,6 +521,11 @@ export namespace ProxyListResponse {

id?: string;

/**
* Hostnames that should bypass the parent proxy and connect directly.
*/
bypass_hosts?: Array<string>;

/**
* Configuration specific to the selected proxy `type`.
*/
Expand Down Expand Up @@ -737,6 +752,11 @@ export interface ProxyCheckResponse {

id?: string;

/**
* Hostnames that should bypass the parent proxy and connect directly.
*/
bypass_hosts?: Array<string>;

/**
* Configuration specific to the selected proxy `type`.
*/
Expand Down Expand Up @@ -957,6 +977,11 @@ export interface ProxyCreateParams {
*/
type: 'datacenter' | 'isp' | 'residential' | 'mobile' | 'custom';

/**
* Hostnames that should bypass the parent proxy and connect directly.
*/
bypass_hosts?: Array<string>;

/**
* Configuration specific to the selected proxy `type`.
*/
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.38.0'; // x-release-please-version
export const VERSION = '0.39.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/proxies.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe('resource proxies', () => {
test.skip('create: required and optional params', async () => {
const response = await client.proxies.create({
type: 'datacenter',
bypass_hosts: ['string'],
config: { country: 'US' },
name: 'name',
protocol: 'http',
Expand Down