Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.1.1"
".": "1.2.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions src/resources/agent/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.1.1'; // x-release-please-version
export const VERSION = '1.2.0'; // x-release-please-version
Loading