Skip to content

Commit bcf0a2b

Browse files
release: 1.2.0 (#25)
* feat: Add worker_host to AgentListSource in OpenAPI spec * release: 1.2.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 25a0cc8 commit bcf0a2b

6 files changed

Lines changed: 20 additions & 5 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.1"
2+
".": "1.2.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: 15
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-8e7a3c9ef00ac517caaa193265398850b6925ab898aaf84e83e28c9f023c0ba8.yml
3-
openapi_spec_hash: ebf53d80dd9066d5ac9401f1493544e3
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-252ab435934e85d5f76957188c64906abf76a0351c5861383327cb1297a2ac8a.yml
3+
openapi_spec_hash: ed801bb30428c1c66cb0af97e3f6ee9c
44
config_hash: 253e4b5ca01236d448980a78491c17c5

CHANGELOG.md

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

3+
## 1.2.0 (2026-04-15)
4+
5+
Full Changelog: [v1.1.1...v1.2.0](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.1.1...v1.2.0)
6+
7+
### Features
8+
9+
* Add worker_host to AgentListSource in OpenAPI spec ([def7425](https://github.com/warpdotdev/oz-sdk-typescript/commit/def742588dfefd135fca8ee0d6b2e7e3b78faa69))
10+
311
## 1.1.1 (2026-04-14)
412

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

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

src/resources/agent/agent.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,13 @@ export namespace AgentSkill {
178178
* Path to the skill definition file within the repository
179179
*/
180180
skill_path: string;
181+
182+
/**
183+
* Self-hosted worker host that reported this skill. Present only for skills
184+
* discovered from self-hosted workers (as opposed to skills from GitHub repos
185+
* linked to environments).
186+
*/
187+
worker_host?: string;
181188
}
182189
}
183190
}

src/version.ts

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

0 commit comments

Comments
 (0)