Skip to content

Commit 25a0cc8

Browse files
release: 1.1.1 (#24)
* feat(api): api update * feat(api): api update * feat: Add parent_run_id filter to List runs endpoint * feat(api): api update * feat(api): api update * feat: Inject auth secrets via ambient agent config. * feat(api): api update * feat(api): api update * feat: Add system prompt to resolve-prompt for harnesses. * feat: Add trigger URL to task source. * feat(api): api update * release: 1.1.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent e8fd0a3 commit 25a0cc8

14 files changed

Lines changed: 307 additions & 20 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0-alpha.3"
2+
".": "1.1.1"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 14
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-a29592b2ba26cba9d89b95969d66506f49c08e140b76ce4aea4189e5c1dccc06.yml
3-
openapi_spec_hash: 27a5de1f891104d5e47904ad8e4b4bd1
4-
config_hash: 60052b2c1c0862014416821aba875574
1+
configured_endpoints: 15
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-8e7a3c9ef00ac517caaa193265398850b6925ab898aaf84e83e28c9f023c0ba8.yml
3+
openapi_spec_hash: ebf53d80dd9066d5ac9401f1493544e3
4+
config_hash: 253e4b5ca01236d448980a78491c17c5

CHANGELOG.md

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

3+
## 1.1.1 (2026-04-14)
4+
5+
Full Changelog: [v1.1.0-alpha.3...v1.1.1](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.1.0-alpha.3...v1.1.1)
6+
7+
### Features
8+
9+
* Add parent_run_id filter to List runs endpoint ([2694f32](https://github.com/warpdotdev/oz-sdk-typescript/commit/2694f32a6f0125f0dac9a6a2d814138c64b8b64b))
10+
* Add system prompt to resolve-prompt for harnesses. ([a95e3f2](https://github.com/warpdotdev/oz-sdk-typescript/commit/a95e3f21c6acdac1bf845629c77e03be983e3ab0))
11+
* Add trigger URL to task source. ([641bbb6](https://github.com/warpdotdev/oz-sdk-typescript/commit/641bbb61a0bfb0a43407f2d3e8b253b0e4c3442b))
12+
* **api:** api update ([eff4efa](https://github.com/warpdotdev/oz-sdk-typescript/commit/eff4efaaf5f8ddeff192281f5bd44f2a75924c18))
13+
* **api:** api update ([c438610](https://github.com/warpdotdev/oz-sdk-typescript/commit/c438610d98132151c323045492e56908be6875b9))
14+
* **api:** api update ([52e41eb](https://github.com/warpdotdev/oz-sdk-typescript/commit/52e41ebb154217d96c657536f0c73f2ca3b6d83b))
15+
* **api:** api update ([f678bf0](https://github.com/warpdotdev/oz-sdk-typescript/commit/f678bf09b5bf5b6df310a932323964c69394403b))
16+
* **api:** api update ([af0a45a](https://github.com/warpdotdev/oz-sdk-typescript/commit/af0a45a94543900ab59dea7bb1dd56c4099afa9d))
17+
* **api:** api update ([15e333c](https://github.com/warpdotdev/oz-sdk-typescript/commit/15e333c19f330917adc043f2ab931732c1c209d8))
18+
* **api:** api update ([e722834](https://github.com/warpdotdev/oz-sdk-typescript/commit/e7228349fcacdd2b0745cddb7d137aeb967a20d3))
19+
* Inject auth secrets via ambient agent config. ([2dec429](https://github.com/warpdotdev/oz-sdk-typescript/commit/2dec42933777ff3915a9bd35f7042c760fe59d4a))
20+
321
## 1.1.0-alpha.3 (2026-04-09)
422

523
Full Changelog: [v1.1.0-alpha.2...v1.1.0-alpha.3](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.1.0-alpha.2...v1.1.0-alpha.3)

api.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Types:
55
- <code><a href="./src/resources/agent/agent.ts">AgentSkill</a></code>
66
- <code><a href="./src/resources/agent/agent.ts">AmbientAgentConfig</a></code>
77
- <code><a href="./src/resources/agent/agent.ts">AwsProviderConfig</a></code>
8+
- <code><a href="./src/resources/agent/agent.ts">CloudEnvironment</a></code>
89
- <code><a href="./src/resources/agent/agent.ts">CloudEnvironmentConfig</a></code>
910
- <code><a href="./src/resources/agent/agent.ts">Error</a></code>
1011
- <code><a href="./src/resources/agent/agent.ts">ErrorCode</a></code>
@@ -14,12 +15,14 @@ Types:
1415
- <code><a href="./src/resources/agent/agent.ts">UserProfile</a></code>
1516
- <code><a href="./src/resources/agent/agent.ts">AgentListResponse</a></code>
1617
- <code><a href="./src/resources/agent/agent.ts">AgentGetArtifactResponse</a></code>
18+
- <code><a href="./src/resources/agent/agent.ts">AgentListEnvironmentsResponse</a></code>
1719
- <code><a href="./src/resources/agent/agent.ts">AgentRunResponse</a></code>
1820

1921
Methods:
2022

2123
- <code title="get /agent">client.agent.<a href="./src/resources/agent/agent.ts">list</a>({ ...params }) -> AgentListResponse</code>
2224
- <code title="get /agent/artifacts/{artifactUid}">client.agent.<a href="./src/resources/agent/agent.ts">getArtifact</a>(artifactUid) -> AgentGetArtifactResponse</code>
25+
- <code title="get /agent/environments">client.agent.<a href="./src/resources/agent/agent.ts">listEnvironments</a>({ ...params }) -> AgentListEnvironmentsResponse</code>
2326
- <code title="post /agent/runs">client.agent.<a href="./src/resources/agent/agent.ts">run</a>({ ...params }) -> AgentRunResponse</code>
2427

2528
## Runs

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oz-agent-sdk",
3-
"version": "1.1.0-alpha.3",
3+
"version": "1.1.1",
44
"description": "The official TypeScript library for the Oz API API",
55
"author": "Oz API <>",
66
"types": "dist/index.d.ts",

src/client.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,16 @@ import { APIPromise } from './core/api-promise';
2222
import {
2323
Agent,
2424
AgentGetArtifactResponse,
25+
AgentListEnvironmentsParams,
26+
AgentListEnvironmentsResponse,
2527
AgentListParams,
2628
AgentListResponse,
2729
AgentRunParams,
2830
AgentRunResponse,
2931
AgentSkill,
3032
AmbientAgentConfig,
3133
AwsProviderConfig,
34+
CloudEnvironment,
3235
CloudEnvironmentConfig,
3336
Error,
3437
ErrorCode,
@@ -781,6 +784,7 @@ export declare namespace OzAPI {
781784
type AgentSkill as AgentSkill,
782785
type AmbientAgentConfig as AmbientAgentConfig,
783786
type AwsProviderConfig as AwsProviderConfig,
787+
type CloudEnvironment as CloudEnvironment,
784788
type CloudEnvironmentConfig as CloudEnvironmentConfig,
785789
type Error as Error,
786790
type ErrorCode as ErrorCode,
@@ -790,8 +794,10 @@ export declare namespace OzAPI {
790794
type UserProfile as UserProfile,
791795
type AgentListResponse as AgentListResponse,
792796
type AgentGetArtifactResponse as AgentGetArtifactResponse,
797+
type AgentListEnvironmentsResponse as AgentListEnvironmentsResponse,
793798
type AgentRunResponse as AgentRunResponse,
794799
type AgentListParams as AgentListParams,
800+
type AgentListEnvironmentsParams as AgentListEnvironmentsParams,
795801
type AgentRunParams as AgentRunParams,
796802
};
797803
}

0 commit comments

Comments
 (0)