Skip to content

Commit c51916e

Browse files
release: 0.1.0-alpha.23 (#34)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 8f6458e commit c51916e

File tree

8 files changed

+31
-7
lines changed

8 files changed

+31
-7
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.22"
2+
".": "0.1.0-alpha.23"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_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
44
config_hash: cf202573c712b5d91a4d496f35f0ff57

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.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

514
Full 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)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/resources/nodes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/resources/vms/images.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
*/

src/resources/vms/vms.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

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.22'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.23'; // x-release-please-version

0 commit comments

Comments
 (0)