File tree Expand file tree Collapse file tree 7 files changed +28
-6
lines changed
Expand file tree Collapse file tree 7 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.1.0-alpha.2 "
2+ "." : " 0.1.0-alpha.5 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 4
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-d168b58fcf39dbd0458d132091793d3e2d0930070b7dda2d5f7f1baff20dd31b.yml
33openapi_spec_hash : b7e0fd7ee1656d7dbad57209d1584d92
4- config_hash : 75c0b894355904e2a91b70445072d4b4
4+ config_hash : c2bc5253d8afd6d67e031f73353c9b22
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.1.0-alpha.5 (2025-05-10)
4+
5+ Full Changelog: [ v0.1.0-alpha.4...v0.1.0-alpha.5] ( https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.4...v0.1.0-alpha.5 )
6+
7+ ### Features
8+
9+ * ** api:** update via SDK Studio ([ f5be580] ( https://github.com/onkernel/kernel-node-sdk/commit/f5be580d5f0023b57c9b1a63bb7b6dedc57deca9 ) )
10+ * ** api:** update via SDK Studio ([ 7d31661] ( https://github.com/onkernel/kernel-node-sdk/commit/7d316613cf880a22e2a17946089c78eb878bcbc6 ) )
11+ * ** api:** update via SDK Studio ([ 68f457e] ( https://github.com/onkernel/kernel-node-sdk/commit/68f457eb0f66b5b243e682677b0fa34eee685853 ) )
12+
13+
14+ ### Bug Fixes
15+
16+ * ** client:** always overwrite when merging headers ([ 69f15d8] ( https://github.com/onkernel/kernel-node-sdk/commit/69f15d855463e7dfecc009eb67273371bdd5efff ) )
17+
18+
19+ ### Chores
20+
21+ * configure new SDK language ([ bc19eee] ( https://github.com/onkernel/kernel-node-sdk/commit/bc19eeeb0eea066f8ad69fd1f03038f839108a31 ) )
22+ * ** internal:** codegen related update ([ 82bfbe8] ( https://github.com/onkernel/kernel-node-sdk/commit/82bfbe8710fec8dd7a834e1cd4a0495195ae4840 ) )
23+ * update SDK settings ([ c9c482c] ( https://github.com/onkernel/kernel-node-sdk/commit/c9c482c8ae564005abe75f46300cebea44c26f8f ) )
24+ * update SDK settings ([ 25c177f] ( https://github.com/onkernel/kernel-node-sdk/commit/25c177ff56b479a6389c79a72d696b4b0bef8f69 ) )
25+
326## 0.1.0-alpha.2 (2025-05-09)
427
528Full Changelog: [ v0.1.0-alpha.1...v0.1.0-alpha.2] ( https://github.com/onkernel/kernel-node-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2 )
Original file line number Diff line number Diff line change 44
55This library provides convenient access to the Kernel REST API from server-side TypeScript or JavaScript.
66
7- The full API of this library can be found in [ api.md] ( api.md ) .
7+ The REST API documentation can be found on [ docs.onkernel.com ] ( https://docs.onkernel.com ) . The full API of this library can be found in [ api.md] ( api.md ) .
88
99It is generated with [ Stainless] ( https://www.stainless.com/ ) .
1010
Original file line number Diff line number Diff line change @@ -685,7 +685,7 @@ export class Kernel {
685685 return new KernelApp ( name ) ;
686686 }
687687
688- public static exportRegistry ( entrypointRelpath : string ) : string {
688+ public static exportRegistry ( ) : string {
689689 return appRegistry . exportJSON ( ) ;
690690 }
691691
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ export interface KernelActionJson {
2020 name : string ;
2121}
2222
23- // App definition
2423export class KernelApp {
2524 name : string ;
2625 actions : Map < string , KernelAction > = new Map ( ) ;
Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ function* iterateHeaders(headers: HeadersLike): IterableIterator<readonly [strin
7171export const buildHeaders = ( newHeaders : HeadersLike [ ] ) : NullableHeaders => {
7272 const targetHeaders = new Headers ( ) ;
7373 const nullHeaders = new Set < string > ( ) ;
74- const seenHeaders = new Set < string > ( ) ;
7574 for ( const headers of newHeaders ) {
75+ const seenHeaders = new Set < string > ( ) ;
7676 for ( const [ name , value ] of iterateHeaders ( headers ) ) {
7777 const lowerName = name . toLowerCase ( ) ;
7878 if ( ! seenHeaders . has ( lowerName ) ) {
You can’t perform that action at this time.
0 commit comments