Skip to content

Commit 30456f3

Browse files
authored
Merge pull request #46 from stainless-api/release-please--branches--main--changes--next--components--stainless
release: 0.1.0-alpha.13
2 parents 991ca46 + dc46120 commit 30456f3

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
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.12"
2+
".": "0.1.0-alpha.13"
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-2a7bd26881d56e6b34d628b9152dbf60b5ddb7fa69662859cc0f20e71835493c.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-16b8e51581b5662fbfa8ef742afb4fb5da87010084f5e5b2071a8fc200454c4d.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.13 (2025-01-17)
4+
5+
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)
6+
7+
### Features
8+
9+
* **api:** api update ([#45](https://github.com/stainless-api/builds-node-api/issues/45)) ([2e09271](https://github.com/stainless-api/builds-node-api/commit/2e09271d02a29e4da215a3dfca61422b430bce4a))
10+
311
## 0.1.0-alpha.12 (2025-01-17)
412

513
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)

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.12",
3+
"version": "0.1.0-alpha.13",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface BuildCreateParams {
5555
/**
5656
* The name of the project to create the build in
5757
*/
58-
project: string;
58+
projectName: string;
5959

6060
/**
6161
* The name of the Stainless branch to upload the spec to

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('resource builds', () => {
1111
test('create: only required params', async () => {
1212
const responsePromise = client.builds.create({
1313
oasSpec: await toFile(Buffer.from('# my file contents'), 'README.md'),
14-
project: 'project',
14+
projectName: 'projectName',
1515
});
1616
const rawResponse = await responsePromise.asResponse();
1717
expect(rawResponse).toBeInstanceOf(Response);
@@ -25,7 +25,7 @@ describe('resource builds', () => {
2525
test('create: required and optional params', async () => {
2626
const response = await client.builds.create({
2727
oasSpec: await toFile(Buffer.from('# my file contents'), 'README.md'),
28-
project: 'project',
28+
projectName: 'projectName',
2929
branch: 'branch',
3030
commitMessage: 'commitMessage',
3131
guessConfig: true,

0 commit comments

Comments
 (0)