Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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.16.0"
".": "0.17.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: 65
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-ecf484375ede1edd7754779ad8beeebd4ba9118152fe6cd65772dc7245a19dee.yml
openapi_spec_hash: b1f3f05005f75cbf5b82299459e2aa9b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-e914e2d08b888c77051acb09176d5e88052f130e0d22e85d946a675d2c3d39ab.yml
openapi_spec_hash: 611d0ed1b4519331470b5d14e5f6784a
config_hash: 3ded7a0ed77b1bfd68eabc6763521fe8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.17.0 (2025-10-27)

Full Changelog: [v0.16.0...v0.17.0](https://github.com/onkernel/kernel-node-sdk/compare/v0.16.0...v0.17.0)

### Features

* Use ping instead of bright data for ISP proxy ([8fb8abb](https://github.com/onkernel/kernel-node-sdk/commit/8fb8abbfb9d399e19db2ec8ca7464f536c808252))

## 0.16.0 (2025-10-27)

Full Changelog: [v0.15.0...v0.16.0](https://github.com/onkernel/kernel-node-sdk/compare/v0.15.0...v0.16.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.16.0",
"version": "0.17.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
32 changes: 16 additions & 16 deletions src/resources/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ export namespace ProxyCreateResponse {
*/
export interface DatacenterProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
* Configuration for an ISP proxy.
*/
export interface IspProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
Expand Down Expand Up @@ -308,19 +308,19 @@ export namespace ProxyRetrieveResponse {
*/
export interface DatacenterProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
* Configuration for an ISP proxy.
*/
export interface IspProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
Expand Down Expand Up @@ -531,19 +531,19 @@ export namespace ProxyListResponse {
*/
export interface DatacenterProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
* Configuration for an ISP proxy.
*/
export interface IspProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
Expand Down Expand Up @@ -737,19 +737,19 @@ export namespace ProxyCreateParams {
*/
export interface DatacenterProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: string;
}

/**
* Configuration for an ISP proxy.
*/
export interface IspProxyConfig {
/**
* ISO 3166 country code.
* ISO 3166 country code. Defaults to US if not provided.
*/
country: string;
country?: 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.16.0'; // x-release-please-version
export const VERSION = '0.17.0'; // x-release-please-version