Skip to content

Commit 5471fe1

Browse files
authored
Merge pull request #19 from onkernel/release-please--branches--main--changes--next--components--sdk
release: 0.1.0-alpha.16
2 parents a0b2424 + 19c6d6c commit 5471fe1

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.15"
2+
".": "0.1.0-alpha.16"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 7
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-c9d64df733f286f09d2203f4e3d820ce57e8d4c629c5e2db4e2bfac91fbc1598.yml
3-
openapi_spec_hash: fa407611fc566d55f403864fbfaa6c23
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-39aa058a60035c34a636e7f580b4b9c76b05400ae401ef04a761572b20a5425b.yml
3+
openapi_spec_hash: bb79a204f9edb6b6ccfe783a0a82a423
44
config_hash: 4dfa4d870ce0e23e31ce33ab6a53dd21

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.1.0-alpha.16 (2025-05-20)
4+
5+
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
6+
7+
### Features
8+
9+
* **api:** update via SDK Studio ([34ec9b0](https://github.com/onkernel/kernel-node-sdk/commit/34ec9b0a5bb7ed3dad7d69e37f9002c47b9e583a))
10+
* **api:** update via SDK Studio ([f0cda49](https://github.com/onkernel/kernel-node-sdk/commit/f0cda4930160e18c2615936f62cd5e7434f1cc9c))
11+
312
## 0.1.0-alpha.15 (2025-05-20)
413

514
Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/sdk",
3-
"version": "0.1.0-alpha.15",
3+
"version": "0.1.0-alpha.16",
44
"description": "The official TypeScript library for the Kernel API",
55
"author": "Kernel <>",
66
"types": "dist/index.d.ts",

src/resources/apps/deployments.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ export namespace DeploymentCreateResponse {
9090
}
9191

9292
/**
93-
* A stream of application events (state updates and logs) in SSE format.
93+
* Union type representing any application event. Actual schema is determined by
94+
* the 'event' field.
9495
*/
95-
export type DeploymentFollowResponse = Array<
96+
export type DeploymentFollowResponse =
9697
| DeploymentFollowResponse.StateEvent
9798
| DeploymentFollowResponse.StateUpdateEvent
98-
| DeploymentFollowResponse.LogEvent
99-
>;
99+
| DeploymentFollowResponse.LogEvent;
100100

101101
export namespace DeploymentFollowResponse {
102102
/**

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.15'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.16'; // x-release-please-version

0 commit comments

Comments
 (0)