Skip to content

Commit 9fcaead

Browse files
authored
Merge pull request #40 from stainless-api/release-please--branches--main--changes--next--components--stainless
release: 0.1.0-alpha.11
2 parents c93b834 + bf3e130 commit 9fcaead

File tree

7 files changed

+18
-4
lines changed

7 files changed

+18
-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.10"
2+
".": "0.1.0-alpha.11"
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-18a4de357cb4a5fbdf2f59dc4b33f4f4ddae92d8b6a32d0dd151b7f80c4c79b2.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-cc7f1786eda145e9c1cae85492a0fdcffcdfda88a9d61a05db2ba8c444015e44.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.11 (2025-01-16)
4+
5+
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)
6+
7+
### Features
8+
9+
* **api:** manual updates ([#39](https://github.com/stainless-api/builds-node-api/issues/39)) ([2c8a920](https://github.com/stainless-api/builds-node-api/commit/2c8a920975fa8218f1987a07e0e546681d3eaa41))
10+
311
## 0.1.0-alpha.10 (2025-01-14)
412

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

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.10",
3+
"version": "0.1.0-alpha.11",
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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ export interface BuildListParams {
8787
*/
8888
project: string;
8989

90+
/**
91+
* Optional filter - the branch the build was created on
92+
*/
93+
branch?: string;
94+
9095
/**
9196
* Optional filter - the md5 hash of the Stainless config used for the build
9297
*/

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

tests/api-resources/builds/builds.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ describe('resource builds', () => {
4848
test('list: required and optional params', async () => {
4949
const response = await client.builds.list({
5050
project: 'project',
51+
branch: 'branch',
5152
config_hash: 'config_hash',
5253
limit: 0,
5354
spec_hash: 'spec_hash',

0 commit comments

Comments
 (0)