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
1 change: 0 additions & 1 deletion .eslintcache

This file was deleted.

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.12.0"
".": "0.13.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: 51
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d0090ff3ef876c554e7a1281d5cbe1666cf68aebfc60e05cb7f4302ee377b372.yml
openapi_spec_hash: 33fef541c420a28125f18cd1efc0d585
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-8a6175a75caa75c3de5400edf97a34e526ac3f62c63955375437461581deb0c2.yml
openapi_spec_hash: 1a880e4ce337a0e44630e6d87ef5162a
config_hash: 49c2ff978aaa5ccb4ce324a72f116010
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.13.0 (2025-10-03)

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

### Features

* Http proxy ([a178cc3](https://github.com/onkernel/kernel-node-sdk/commit/a178cc39945833b6cf9300c1828df82b726261f9))
* Update oAPI and data model for proxy status ([26063c8](https://github.com/onkernel/kernel-node-sdk/commit/26063c82a096ac63ad9de34597c1a1849ab881f4))


### Chores

* **internal:** remove .eslintcache ([c7a7e8c](https://github.com/onkernel/kernel-node-sdk/commit/c7a7e8cad9e529906a3d351587ec57ae56e864f3))

## 0.12.0 (2025-09-30)

Full Changelog: [v0.11.5...v0.12.0](https://github.com/onkernel/kernel-node-sdk/compare/v0.11.5...v0.12.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.12.0",
"version": "0.13.0",
"description": "The official TypeScript library for the Kernel API",
"author": "Kernel <>",
"types": "dist/index.d.ts",
Expand Down
50 changes: 50 additions & 0 deletions src/resources/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,25 @@ export interface ProxyCreateResponse {
| ProxyCreateResponse.MobileProxyConfig
| ProxyCreateResponse.CustomProxyConfig;

/**
* Timestamp of the last health check performed on this proxy.
*/
last_checked?: string;

/**
* Readable name of the proxy.
*/
name?: string;

/**
* Protocol to use for the proxy connection.
*/
protocol?: 'http' | 'https';

/**
* Current health status of the proxy.
*/
status?: 'available' | 'unavailable';
}

export namespace ProxyCreateResponse {
Expand Down Expand Up @@ -268,10 +283,25 @@ export interface ProxyRetrieveResponse {
| ProxyRetrieveResponse.MobileProxyConfig
| ProxyRetrieveResponse.CustomProxyConfig;

/**
* Timestamp of the last health check performed on this proxy.
*/
last_checked?: string;

/**
* Readable name of the proxy.
*/
name?: string;

/**
* Protocol to use for the proxy connection.
*/
protocol?: 'http' | 'https';

/**
* Current health status of the proxy.
*/
status?: 'available' | 'unavailable';
}

export namespace ProxyRetrieveResponse {
Expand Down Expand Up @@ -478,10 +508,25 @@ export namespace ProxyListResponse {
| ProxyListResponseItem.MobileProxyConfig
| ProxyListResponseItem.CustomProxyConfig;

/**
* Timestamp of the last health check performed on this proxy.
*/
last_checked?: string;

/**
* Readable name of the proxy.
*/
name?: string;

/**
* Protocol to use for the proxy connection.
*/
protocol?: 'http' | 'https';

/**
* Current health status of the proxy.
*/
status?: 'available' | 'unavailable';
}

export namespace ProxyListResponseItem {
Expand Down Expand Up @@ -685,6 +730,11 @@ export interface ProxyCreateParams {
* Readable name of the proxy.
*/
name?: string;

/**
* Protocol to use for the proxy connection.
*/
protocol?: 'http' | 'https';
}

export namespace ProxyCreateParams {
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.12.0'; // x-release-please-version
export const VERSION = '0.13.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 @@ -26,6 +26,7 @@ describe('resource proxies', () => {
type: 'datacenter',
config: { country: 'US' },
name: 'name',
protocol: 'http',
});
});

Expand Down