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.4.0-alpha.2"
".": "1.4.0-alpha.3"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 23
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta/warp-api-964f646a32c318735de7673531a12788aede1840f7ab4893f2efa31c83440837.yml
openapi_spec_hash: 30f07ff0bfb491efb11cd88fce79968a
config_hash: 236823a4936c76818117c16aa5c188df
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta/warp-api-0bc171e3cd0224936953898ce9b7eb35e1bf1cbf58a673fc80b32c90ce84bcd0.yml
openapi_spec_hash: 6c7d5f294b0800e878729314f57a09f0
config_hash: 279b20eafe220bf54131676cc0b9cdd2
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 1.4.0-alpha.3 (2026-05-22)

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

### Features

* Add server run runtime to agent API ([e49773d](https://github.com/warpdotdev/oz-sdk-typescript/commit/e49773d7328b9696bb5652f46a8de2504ba0e60a))
* **api:** api update ([ecb0b48](https://github.com/warpdotdev/oz-sdk-typescript/commit/ecb0b48122aa481fa4ca2f8f388f1e039d0c2adc))
* **api:** api update ([6bc09f4](https://github.com/warpdotdev/oz-sdk-typescript/commit/6bc09f40033ed75fccc155a81da1d86e865517aa))

## 1.4.0-alpha.2 (2026-05-21)

Full Changelog: [v1.4.0-alpha.1...v1.4.0-alpha.2](https://github.com/warpdotdev/oz-sdk-typescript/compare/v1.4.0-alpha.1...v1.4.0-alpha.2)
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.4.0-alpha.2",
"version": "1.4.0-alpha.3",
"description": "The official TypeScript library for the Oz API API",
"author": "Oz API <>",
"types": "dist/index.d.ts",
Expand Down
5 changes: 5 additions & 0 deletions src/resources/agent/agent_.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ export interface AgentResponse {
*/
uid: string;

/**
* When the agent was last updated (RFC3339)
*/
updated_at: string;

/**
* Default harness for runs executed by this agent. The precedence order for
* harness resolution is:
Expand Down
6 changes: 6 additions & 0 deletions src/resources/agent/runs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,12 @@ export interface RunItem {
*/
request_usage?: RunItem.RequestUsage;

/**
* Total runtime as an ISO 8601 duration (e.g. "PT2M30S"), computed server-side
* from run executions.
*/
run_time?: string;

/**
* Information about the schedule that triggered this run (only present for
* scheduled runs)
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.4.0-alpha.2'; // x-release-please-version
export const VERSION = '1.4.0-alpha.3'; // x-release-please-version
Loading