Skip to content

Commit 4532c3b

Browse files
authored
Merge pull request #33 from stainless-api/release-please--branches--main--changes--next--components--sdk
release: 0.3.0
2 parents f8d21bb + b528bfb commit 4532c3b

File tree

9 files changed

+26
-8
lines changed

9 files changed

+26
-8
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.2.0"
2+
".": "0.3.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 22
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-c05bce23f6a3478a1803494b2c627e0bbf73917a849756eddc42f4607e167c6b.yml
3-
openapi_spec_hash: b9eb999620220d15b176f815f21a67ba
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-60fccc45e9e7fac02642f763acadcafbd890990992facb1242864364f7c3fa80.yml
3+
openapi_spec_hash: f4a06d91e54ada059445cd7ab63678b3
44
config_hash: 977c436868252591d86546b2127ab8ce

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.3.0 (2026-02-23)
4+
5+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.2.0...v0.3.0)
6+
7+
### Features
8+
9+
* add completed_at to build api object ([a212837](https://github.com/stainless-api/stainless-api-typescript/commit/a2128373a8c8b649977ba1f03ec6577ca977941c))
10+
* Revert "feat(api): populate integrated_stats ([#16032](https://github.com/stainless-api/stainless-api-typescript/issues/16032))" ([a859bac](https://github.com/stainless-api/stainless-api-typescript/commit/a859bac4afb4ba327af3ccfa0fefee949ddf9282))
11+
12+
13+
### Bug Fixes
14+
15+
* **api:** mark integrated data on all commits with the same generated SHA ([8f69b8e](https://github.com/stainless-api/stainless-api-typescript/commit/8f69b8eaf2f3f9ef3e9933d7d2973a48f1e177c3))
16+
317
## 0.2.0 (2026-02-20)
418

519
Full Changelog: [v0.1.0...v0.2.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0...v0.2.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stainless-api/sdk",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <support@stainless.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@stainless-api/mcp",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"description": "The official MCP Server for the Stainless API",
66
"author": {
77
"name": "Stainless",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stainless-api/mcp",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <support@stainless.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'stainless_api_sdk_api',
24-
version: '0.2.0',
24+
version: '0.3.0',
2525
},
2626
{
2727
instructions: await getInstructions(stainlessApiKey),

src/resources/builds/builds.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,8 @@ export namespace BuildTarget {
177177
*/
178178
completed: Completed.Completed;
179179

180+
completed_at: string;
181+
180182
conclusion:
181183
| 'error'
182184
| 'warning'
@@ -203,6 +205,8 @@ export namespace BuildTarget {
203205
export interface Completed {
204206
commit: Shared.Commit | null;
205207

208+
completed_at: string;
209+
206210
conclusion:
207211
| 'error'
208212
| 'warning'

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.2.0'; // x-release-please-version
1+
export const VERSION = '0.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)