From 8fb8abbfb9d399e19db2ec8ca7464f536c808252 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 19:40:50 +0000 Subject: [PATCH 1/3] feat: Use ping instead of bright data for ISP proxy --- .stats.yml | 4 ++-- src/resources/proxies.ts | 32 ++++++++++++++++---------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.stats.yml b/.stats.yml index 8cd6a7c..8cf9ee7 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/src/resources/proxies.ts b/src/resources/proxies.ts index e6841d7..7c409f5 100644 --- a/src/resources/proxies.ts +++ b/src/resources/proxies.ts @@ -88,9 +88,9 @@ export namespace ProxyCreateResponse { */ export interface DatacenterProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -98,9 +98,9 @@ export namespace ProxyCreateResponse { */ export interface IspProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -308,9 +308,9 @@ export namespace ProxyRetrieveResponse { */ export interface DatacenterProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -318,9 +318,9 @@ export namespace ProxyRetrieveResponse { */ export interface IspProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -531,9 +531,9 @@ export namespace ProxyListResponse { */ export interface DatacenterProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -541,9 +541,9 @@ export namespace ProxyListResponse { */ export interface IspProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -737,9 +737,9 @@ export namespace ProxyCreateParams { */ export interface DatacenterProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** @@ -747,9 +747,9 @@ export namespace ProxyCreateParams { */ export interface IspProxyConfig { /** - * ISO 3166 country code. + * ISO 3166 country code. Defaults to US if not provided. */ - country: string; + country?: string; } /** From 75df0075b7165cda5b732cbf0334754c6b93af32 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 19:41:07 +0000 Subject: [PATCH 2/3] release: 0.17.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bc7e4aa..7b51ca0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.0" + ".": "0.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0422864..ee443c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 386fb01..e8752f3 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/version.ts b/src/version.ts index be03af2..0251da7 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.16.0'; // x-release-please-version +export const VERSION = '0.17.0'; // x-release-please-version From 9d0b89beb89c23f7eeced590767c5c40711dba49 Mon Sep 17 00:00:00 2001 From: Steven Miller Date: Mon, 27 Oct 2025 15:46:15 -0400 Subject: [PATCH 3/3] Apply suggestion from @sjmiller609 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee443c8..460bdec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Full Changelog: [v0.16.0...v0.17.0](https://github.com/onkernel/kernel-node-sdk/ ### Features -* Use ping instead of bright data for ISP proxy ([8fb8abb](https://github.com/onkernel/kernel-node-sdk/commit/8fb8abbfb9d399e19db2ec8ca7464f536c808252)) +* Make country flag optional for DC and ISP proxies ([8fb8abb](https://github.com/onkernel/kernel-node-sdk/commit/8fb8abbfb9d399e19db2ec8ca7464f536c808252)) ## 0.16.0 (2025-10-27)