File tree Expand file tree Collapse file tree 8 files changed +31
-7
lines changed Expand file tree Collapse file tree 8 files changed +31
-7
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.1.0-alpha.22 "
2+ "." : " 0.1.0-alpha.23 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 13
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-94404552501d1e6ece9700dbddd3cd49ddc555fdb3a303747b79aea2329cf10c .yml
3- openapi_spec_hash : edc38468ad76935dc4b0d6af44e84d44
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-505757215a25178bda1219e3c51dfdc84709d085800f145915b9073e204dd3ab .yml
3+ openapi_spec_hash : 38feb8ab2fc9c7d10454e6e8980b4665
44config_hash : cf202573c712b5d91a4d496f35f0ff57
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.1.0-alpha.23 (2025-11-07)
4+
5+ Full Changelog: [ v0.1.0-alpha.22...v0.1.0-alpha.23] ( https://github.com/sfcompute/nodes-typescript/compare/v0.1.0-alpha.22...v0.1.0-alpha.23 )
6+
7+ ### Features
8+
9+ * ** api:** api update ([ 670591e] ( https://github.com/sfcompute/nodes-typescript/commit/670591ee7397e9f11adff9785a67713e233eb5b2 ) )
10+ * ** api:** api update ([ 2178909] ( https://github.com/sfcompute/nodes-typescript/commit/217890955b031b9c32f884303def84086d510184 ) )
11+
312## 0.1.0-alpha.22 (2025-10-17)
413
514Full Changelog: [ v0.1.0-alpha.21...v0.1.0-alpha.22] ( https://github.com/sfcompute/nodes-typescript/compare/v0.1.0-alpha.21...v0.1.0-alpha.22 )
Original file line number Diff line number Diff line change 11{
22 "name" : " @sfcompute/nodes-sdk-alpha" ,
3- "version" : " 0.1.0-alpha.22 " ,
3+ "version" : " 0.1.0-alpha.23 " ,
44 "description" : " The official TypeScript library for the SFC Nodes API" ,
55 "author" :
" SFC Nodes <[email protected] >" ,
66 "types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ export interface CreateNodesRequest {
151151
152152 /**
153153 * Start time as Unix timestamp in seconds Optional for reserved nodes. If not
154- * provided, defaults to current time
154+ * provided, defaults to now
155155 */
156156 start_at ?: number ;
157157}
@@ -483,7 +483,7 @@ export interface NodeCreateParams {
483483
484484 /**
485485 * Start time as Unix timestamp in seconds Optional for reserved nodes. If not
486- * provided, defaults to current time
486+ * provided, defaults to now
487487 */
488488 start_at ?: number ;
489489}
Original file line number Diff line number Diff line change @@ -92,6 +92,11 @@ export interface ImageGetResponse {
9292
9393 object : 'image' ;
9494
95+ /**
96+ * Size of the image file in bytes
97+ */
98+ object_size : number ;
99+
95100 /**
96101 * SHA256 hash of the image file for integrity verification
97102 */
Original file line number Diff line number Diff line change @@ -49,6 +49,16 @@ export interface VMSSHResponse {
4949
5050 ssh_port : number ;
5151
52+ /**
53+ * Unix timestamp in seconds since epoch
54+ */
55+ last_attempted_key_update ?: number | null ;
56+
57+ /**
58+ * Unix timestamp in seconds since epoch
59+ */
60+ last_successful_key_update ?: number | null ;
61+
5262 ssh_host_keys ?: Array < VMSSHResponse . SSHHostKey > | null ;
5363}
5464
Original file line number Diff line number Diff line change 1- export const VERSION = '0.1.0-alpha.22 ' ; // x-release-please-version
1+ export const VERSION = '0.1.0-alpha.23 ' ; // x-release-please-version
You can’t perform that action at this time.
0 commit comments