diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 54cfe49..47736a5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.15" + ".": "0.1.0-alpha.16" } diff --git a/.stats.yml b/.stats.yml index cdab176..dbfe823 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 11 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-feb1170aeff2603be5b81d5e47a3687b0c4374d6383f159a4e7600ae82006215.yml -openapi_spec_hash: adefd0c6fbc8ed30486a87b110e03d34 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/the-san-francisco-compute-company%2Fsfc-nodes-b380dba200ffcd01fb245020213f92568032554504940ecb93a361aab9bdcab9.yml +openapi_spec_hash: fd3ac511c392b3a52d718d45e561373c config_hash: f29ebc32a45fc14e903cc9881565fcd2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 18a79e5..478d6b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.16 (2025-09-16) + +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) + +### Features + +* **api:** api update ([271c5af](https://github.com/sfcompute/nodes-typescript/commit/271c5afa6b3efee1b91a4c15261b9d19106d880e)) + ## 0.1.0-alpha.15 (2025-09-12) 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) diff --git a/package.json b/package.json index e28fe7c..67ce2a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sfcompute/nodes-sdk-alpha", - "version": "0.1.0-alpha.15", + "version": "0.1.0-alpha.16", "description": "The official TypeScript library for the SFC Nodes API", "author": "SFC Nodes ", "types": "dist/index.d.ts", diff --git a/src/resources/nodes.ts b/src/resources/nodes.ts index 692b2d5..fe05cea 100644 --- a/src/resources/nodes.ts +++ b/src/resources/nodes.ts @@ -264,6 +264,8 @@ export namespace ListResponseNode { status: 'Pending' | 'Running' | 'Destroyed' | 'NodeFailure' | 'Unspecified'; updated_at: number; + + image_id?: string | null; } } } @@ -346,6 +348,8 @@ export namespace Node { status: 'Pending' | 'Running' | 'Destroyed' | 'NodeFailure' | 'Unspecified'; updated_at: number; + + image_id?: string | null; } } } diff --git a/src/version.ts b/src/version.ts index 9872581..baebd9d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.1.0-alpha.15'; // x-release-please-version +export const VERSION = '0.1.0-alpha.16'; // x-release-please-version