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
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.1.0-alpha.22"
".": "0.1.0-alpha.23"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 13
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-94404552501d1e6ece9700dbddd3cd49ddc555fdb3a303747b79aea2329cf10c.yml
openapi_spec_hash: edc38468ad76935dc4b0d6af44e84d44
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-505757215a25178bda1219e3c51dfdc84709d085800f145915b9073e204dd3ab.yml
openapi_spec_hash: 38feb8ab2fc9c7d10454e6e8980b4665
config_hash: cf202573c712b5d91a4d496f35f0ff57
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.1.0-alpha.23 (2025-11-07)

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)

### Features

* **api:** api update ([670591e](https://github.com/sfcompute/nodes-typescript/commit/670591ee7397e9f11adff9785a67713e233eb5b2))
* **api:** api update ([2178909](https://github.com/sfcompute/nodes-typescript/commit/217890955b031b9c32f884303def84086d510184))

## 0.1.0-alpha.22 (2025-10-17)

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)
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": "@sfcompute/nodes-sdk-alpha",
"version": "0.1.0-alpha.22",
"version": "0.1.0-alpha.23",
"description": "The official TypeScript library for the SFC Nodes API",
"author": "SFC Nodes <hello@sfcompute.com>",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/resources/nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export interface CreateNodesRequest {

/**
* Start time as Unix timestamp in seconds Optional for reserved nodes. If not
* provided, defaults to current time
* provided, defaults to now
*/
start_at?: number;
}
Expand Down Expand Up @@ -483,7 +483,7 @@ export interface NodeCreateParams {

/**
* Start time as Unix timestamp in seconds Optional for reserved nodes. If not
* provided, defaults to current time
* provided, defaults to now
*/
start_at?: number;
}
Expand Down
5 changes: 5 additions & 0 deletions src/resources/vms/images.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ export interface ImageGetResponse {

object: 'image';

/**
* Size of the image file in bytes
*/
object_size: number;

/**
* SHA256 hash of the image file for integrity verification
*/
Expand Down
10 changes: 10 additions & 0 deletions src/resources/vms/vms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ export interface VMSSHResponse {

ssh_port: number;

/**
* Unix timestamp in seconds since epoch
*/
last_attempted_key_update?: number | null;

/**
* Unix timestamp in seconds since epoch
*/
last_successful_key_update?: number | null;

ssh_host_keys?: Array<VMSSHResponse.SSHHostKey> | null;
}

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