Skip to content

Commit 554cf25

Browse files
authored
Merge pull request #49 from stainless-api/release-please--branches--main--changes--next--components--stainless
release: 0.1.0-alpha.14
2 parents 30456f3 + 2a2c766 commit 554cf25

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.13"
2+
".": "0.1.0-alpha.14"
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-16b8e51581b5662fbfa8ef742afb4fb5da87010084f5e5b2071a8fc200454c4d.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-b988c3e4129e3967e04e140b3c35349530198eb124f6c5925aefdb638d7c2500.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.14 (2025-01-17)
4+
5+
Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/stainless-api/builds-node-api/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
6+
7+
### Features
8+
9+
* **api:** api update ([#48](https://github.com/stainless-api/builds-node-api/issues/48)) ([f79ef74](https://github.com/stainless-api/builds-node-api/commit/f79ef742fe948626902287e38822a88137698202))
10+
311
## 0.1.0-alpha.13 (2025-01-17)
412

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

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.13",
3+
"version": "0.1.0-alpha.14",
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
@@ -72,6 +72,11 @@ export interface BuildCreateParams {
7272
*/
7373
guessConfig?: boolean;
7474

75+
/**
76+
* The name of the branch to to merge in
77+
*/
78+
mergeBranch?: string;
79+
7580
/**
7681
* The ID of the parent build
7782
*/

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.13'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.14'; // 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
@@ -29,6 +29,7 @@ describe('resource builds', () => {
2929
branch: 'branch',
3030
commitMessage: 'commitMessage',
3131
guessConfig: true,
32+
mergeBranch: 'mergeBranch',
3233
parentBuildId: 'parentBuildId',
3334
stainlessConfig: await toFile(Buffer.from('# my file contents'), 'README.md'),
3435
});

0 commit comments

Comments
 (0)