Skip to content

Commit 991ca46

Browse files
authored
Merge pull request #43 from stainless-api/release-please--branches--main--changes--next--components--stainless
release: 0.1.0-alpha.12
2 parents 9fcaead + c586cf1 commit 991ca46

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
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.11"
2+
".": "0.1.0-alpha.12"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 3
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-cc7f1786eda145e9c1cae85492a0fdcffcdfda88a9d61a05db2ba8c444015e44.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-2a7bd26881d56e6b34d628b9152dbf60b5ddb7fa69662859cc0f20e71835493c.yml

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.12 (2025-01-17)
4+
5+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/stainless-api/builds-node-api/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
6+
7+
### Features
8+
9+
* **api:** api update ([#42](https://github.com/stainless-api/builds-node-api/issues/42)) ([3a5321e](https://github.com/stainless-api/builds-node-api/commit/3a5321e534c07fb09793997ff22bb78199dd8c51))
10+
311
## 0.1.0-alpha.11 (2025-01-16)
412

513
Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/stainless-api/builds-node-api/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stainless",
3-
"version": "0.1.0-alpha.11",
3+
"version": "0.1.0-alpha.12",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/builds/builds.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ export class Builds extends APIResource {
4040

4141
export interface BuildResponse {
4242
id: string;
43+
44+
targets: Array<'node' | 'python' | 'go' | 'java' | 'kotlin' | 'ruby' | 'typescript'>;
4345
}
4446

4547
export type BuildListResponse = Array<BuildResponse>;

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

0 commit comments

Comments
 (0)