Skip to content

Commit c93b834

Browse files
authored
Merge pull request #33 from stainless-api/release-please--branches--main--changes--next--components--stainless
release: 0.1.0-alpha.10
2 parents 1253296 + 1cab312 commit c93b834

File tree

6 files changed

+27
-15
lines changed

6 files changed

+27
-15
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.9"
2+
".": "0.1.0-alpha.10"
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-e59327cb205b8ba518d323fd2ada9683689ded6e64fc6ab2b9a853dade8d00ee.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-18a4de357cb4a5fbdf2f59dc4b33f4f4ddae92d8b6a32d0dd151b7f80c4c79b2.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.10 (2025-01-14)
4+
5+
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)
6+
7+
### Features
8+
9+
* **api:** api update ([#32](https://github.com/stainless-api/builds-node-api/issues/32)) ([a9b7bb5](https://github.com/stainless-api/builds-node-api/commit/a9b7bb5b6c96bea92326726adaa42c6d6aeadc44))
10+
311
## 0.1.0-alpha.9 (2025-01-14)
412

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

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.9",
3+
"version": "0.1.0-alpha.10",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/builds/outputs.ts

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,30 @@ export type CommitBuildStep =
3838

3939
export namespace CommitBuildStep {
4040
export interface Completed {
41-
completed: Completed.Completed;
41+
completed: Completed.CommitMissingShape | Completed.CommitPresentShape;
4242

4343
status: 'completed';
4444
}
4545

4646
export namespace Completed {
47-
export interface Completed {
48-
commit: Completed.Commit;
49-
47+
export interface CommitMissingShape {
5048
conclusion:
51-
| 'success'
52-
| 'failure'
53-
| 'skipped'
5449
| 'cancelled'
55-
| 'action_required'
56-
| 'neutral'
57-
| 'timed_out';
50+
| 'timed_out'
51+
| 'fatal'
52+
| 'payment_required'
53+
| 'noop'
54+
| 'merge_conflict'
55+
| 'version_bump';
56+
}
57+
58+
export interface CommitPresentShape {
59+
commit: CommitPresentShape.Commit;
60+
61+
conclusion: 'error' | 'success' | 'warning' | 'note';
5862
}
5963

60-
export namespace Completed {
64+
export namespace CommitPresentShape {
6165
export interface Commit {
6266
repo: Commit.Repo;
6367

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

0 commit comments

Comments
 (0)