diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c4ddc74..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.2.0" } diff --git a/.stats.yml b/.stats.yml index 6fad0eb..6163321 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 15 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-8e7a3c9ef00ac517caaa193265398850b6925ab898aaf84e83e28c9f023c0ba8.yml -openapi_spec_hash: ebf53d80dd9066d5ac9401f1493544e3 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-252ab435934e85d5f76957188c64906abf76a0351c5861383327cb1297a2ac8a.yml +openapi_spec_hash: ed801bb30428c1c66cb0af97e3f6ee9c config_hash: 253e4b5ca01236d448980a78491c17c5 diff --git a/CHANGELOG.md b/CHANGELOG.md index f5c9da0..54d72eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.2.0 (2026-04-15) + +Full Changelog: [v1.1.1...v1.2.0](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.1.1...v1.2.0) + +### Features + +* Add worker_host to AgentListSource in OpenAPI spec ([def7425](https://github.com/warpdotdev/oz-sdk-typescript/commit/def742588dfefd135fca8ee0d6b2e7e3b78faa69)) + ## 1.1.1 (2026-04-14) 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) diff --git a/package.json b/package.json index 8327902..e12d139 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oz-agent-sdk", - "version": "1.1.1", + "version": "1.2.0", "description": "The official TypeScript library for the Oz API API", "author": "Oz API <>", "types": "dist/index.d.ts", diff --git a/src/resources/agent/agent.ts b/src/resources/agent/agent.ts index ed2e27f..897d3e1 100644 --- a/src/resources/agent/agent.ts +++ b/src/resources/agent/agent.ts @@ -178,6 +178,13 @@ export namespace AgentSkill { * Path to the skill definition file within the repository */ skill_path: string; + + /** + * Self-hosted worker host that reported this skill. Present only for skills + * discovered from self-hosted workers (as opposed to skills from GitHub repos + * linked to environments). + */ + worker_host?: string; } } } diff --git a/src/version.ts b/src/version.ts index 4d7aaa3..54c8a47 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.1.1'; // x-release-please-version +export const VERSION = '1.2.0'; // x-release-please-version