Skip to content

Commit 2944d45

Browse files
release: 1.4.0-alpha.1 (#28)
* codegen metadata * codegen metadata * codegen metadata * codegen metadata * feat: Surface platform credits in the public API * feat: [REMOTE-1538] Support base model on named agents * feat(api): api update * feat: Include agent UID in scheduled agent API responses * release: 1.4.0-alpha.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 520d849 commit 2944d45

7 files changed

Lines changed: 23 additions & 7 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.4.0-alpha.0"
2+
".": "1.4.0-alpha.1"
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/warp-bnavetta/warp-api-c58f2ee13e97acdf607650e199cb1377d2767c6bd6183b5f1212fa2666bb5f04.yml
3-
openapi_spec_hash: 19295b9e19b2ab3093087d9b11a6095f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta/warp-api-1fecc5f5d6ee664d804b81bd1aa6eec4d3f170ffa788d214fead4f7e95ab9d4e.yml
3+
openapi_spec_hash: 82990b03bd5a93e45bfc79db56ae7fc0
44
config_hash: f52e7636f248f25c4ea0b086e7326816

CHANGELOG.md

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

3+
## 1.4.0-alpha.1 (2026-05-07)
4+
5+
Full Changelog: [v1.4.0-alpha.0...v1.4.0-alpha.1](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.4.0-alpha.0...v1.4.0-alpha.1)
6+
7+
### Features
8+
9+
* [REMOTE-1538] Support base model on named agents ([3a54264](https://github.com/warpdotdev/oz-sdk-typescript/commit/3a54264de3e6baf3b379c92e48a00cbc9830831a))
10+
* **api:** api update ([059f1e3](https://github.com/warpdotdev/oz-sdk-typescript/commit/059f1e301e4ec75a6d8c27730ae8d01ef9bafc9d))
11+
* Include agent UID in scheduled agent API responses ([220e7b7](https://github.com/warpdotdev/oz-sdk-typescript/commit/220e7b79ec1407f7467cdc764eef28f06ecb7548))
12+
* Surface platform credits in the public API ([01c55d8](https://github.com/warpdotdev/oz-sdk-typescript/commit/01c55d8fc871536332ea72cdfa2bc804466c4aba))
13+
314
## 1.4.0-alpha.0 (2026-05-03)
415

516
Full Changelog: [v1.3.0...v1.4.0-alpha.0](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.3.0...v1.4.0-alpha.0)

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.4.0-alpha.0",
3+
"version": "1.4.0-alpha.1",
44
"description": "The official TypeScript library for the Oz API API",
55
"author": "Oz API <>",
66
"types": "dist/index.d.ts",

src/resources/agent/schedules.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ export interface ScheduledAgentItem {
178178
*/
179179
agent_config?: AgentAPI.AmbientAgentConfig;
180180

181+
/**
182+
* UID of the agent that this schedule runs as
183+
*/
184+
agent_uid?: string;
185+
181186
created_by?: AgentAPI.UserProfile;
182187

183188
/**

src/version.ts

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

tests/api-resources/agent/schedules.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('resource schedules', () => {
5151
skill_spec: 'skill_spec',
5252
worker_host: 'worker_host',
5353
},
54-
agent_uid: 'agent_uid',
54+
agent_uid: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
5555
enabled: true,
5656
mode: 'normal',
5757
prompt: 'Review open pull requests and provide feedback',
@@ -116,7 +116,7 @@ describe('resource schedules', () => {
116116
skill_spec: 'skill_spec',
117117
worker_host: 'worker_host',
118118
},
119-
agent_uid: 'agent_uid',
119+
agent_uid: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
120120
mode: 'normal',
121121
prompt: 'prompt',
122122
});

0 commit comments

Comments
 (0)