Skip to content

Commit a7e35e8

Browse files
release: 0.1.0-alpha.16 (#27)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 16a7822 commit a7e35e8

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
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: 11
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-feb1170aeff2603be5b81d5e47a3687b0c4374d6383f159a4e7600ae82006215.yml
3-
openapi_spec_hash: adefd0c6fbc8ed30486a87b110e03d34
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-b380dba200ffcd01fb245020213f92568032554504940ecb93a361aab9bdcab9.yml
3+
openapi_spec_hash: fd3ac511c392b3a52d718d45e561373c
44
config_hash: f29ebc32a45fc14e903cc9881565fcd2

CHANGELOG.md

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

3+
## 0.1.0-alpha.16 (2025-09-16)
4+
5+
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/sfcompute/nodes-typescript/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
6+
7+
### Features
8+
9+
* **api:** api update ([271c5af](https://github.com/sfcompute/nodes-typescript/commit/271c5afa6b3efee1b91a4c15261b9d19106d880e))
10+
311
## 0.1.0-alpha.15 (2025-09-12)
412

513
Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/sfcompute/nodes-typescript/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": "@sfcompute/nodes-sdk-alpha",
3-
"version": "0.1.0-alpha.15",
3+
"version": "0.1.0-alpha.16",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ export namespace ListResponseNode {
264264
status: 'Pending' | 'Running' | 'Destroyed' | 'NodeFailure' | 'Unspecified';
265265

266266
updated_at: number;
267+
268+
image_id?: string | null;
267269
}
268270
}
269271
}
@@ -346,6 +348,8 @@ export namespace Node {
346348
status: 'Pending' | 'Running' | 'Destroyed' | 'NodeFailure' | 'Unspecified';
347349

348350
updated_at: number;
351+
352+
image_id?: string | null;
349353
}
350354
}
351355
}

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)