addedOutput schema / $defs / ActivityPayload
Added value: +{
+ "properties": {
+ "age_ms": {
+ "title": "Age Ms",
+ "type": "integer"
+ },
+ "kind": {
+ "title": "Kind",
+ "type": "string"
+ },
+ "state": {
+ "title": "State",
+ "type": "string"
+ },
+ "tool_name": {
+ "title": "Tool Name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind"
+ ],
+ "title": "ActivityPayload",
+ "type": "object"
+}
removedOutput schema / $defs / InvocationErrorPayload / properties / details
Removed value: -{
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "title": "Details"
-}
changedOutput schema / $defs / InvocationErrorPayload / required
Previous value: -[
- "code",
- "message",
- "details"
-]New value: +[
+ "code",
+ "message"
+]
removedOutput schema / $defs / InvocationResultPayload
Removed value: -{
- "properties": {
- "duration_ms": {
- "title": "Duration Ms",
- "type": "integer"
- },
- "error": {
- "anyOf": [
- {
- "$ref": "#/$defs/InvocationErrorPayload"
- },
- {
- "type": "null"
- }
- ]
- },
- "output": {
- "title": "Output",
- "type": "string"
- },
- "provider": {
- "$ref": "#/$defs/ProviderName"
- },
- "provider_usage": {
- "$ref": "#/$defs/ProviderUsagePayload"
- },
- "session_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "title": "Session Id"
- },
- "status": {
- "$ref": "#/$defs/InvocationStatusName"
- }
- },
- "required": [
- "status",
- "provider",
- "output",
- "session_id",
- "provider_usage",
- "duration_ms",
- "error"
- ],
- "title": "InvocationResultPayload",
- "type": "object"
-}
removedOutput schema / $defs / InvocationStatusName
Removed value: -{
- "enum": [
- "succeeded",
- "failed",
- "blocked",
- "cancelled",
- "timed_out"
- ],
- "type": "string"
-}
removedOutput schema / $defs / ProviderName
Removed value: -{
- "enum": [
- "antigravity",
- "claude",
- "codebuddy",
- "codex",
- "grok"
- ],
- "type": "string"
-}
removedOutput schema / $defs / ProviderUsagePayload
Removed value: -{
- "properties": {
- "num_turns": {
- "title": "Num Turns",
- "type": "integer"
- },
- "total_cost_usd": {
- "title": "Total Cost Usd",
- "type": "number"
- }
- },
- "title": "ProviderUsagePayload",
- "type": "object"
-}
addedOutput schema / properties / activity
Added value: +{
+ "$ref": "#/$defs/ActivityPayload"
+}
addedOutput schema / properties / elapsed_ms
Added value: +{
+ "title": "Elapsed Ms",
+ "type": "integer"
+}
addedOutput schema / properties / error
Added value: +{
+ "$ref": "#/$defs/InvocationErrorPayload"
+}
addedOutput schema / properties / output
Added value: +{
+ "title": "Output",
+ "type": "string"
+}
addedOutput schema / properties / output_age_ms
Added value: +{
+ "title": "Output Age Ms",
+ "type": "integer"
+}
addedOutput schema / properties / reason
Added value: +{
+ "enum": [
+ "started",
+ "wait_elapsed",
+ "execution_blocked",
+ "finished"
+ ],
+ "title": "Reason",
+ "type": "string"
+}
removedOutput schema / properties / result
Removed value: -{
- "$ref": "#/$defs/InvocationResultPayload"
-}
addedOutput schema / properties / session_id
Added value: +{
+ "title": "Session Id",
+ "type": "string"
+}
removedOutput schema / properties / state
Removed value: -{
- "const": "finished",
- "title": "State",
- "type": "string"
-}
addedOutput schema / properties / status
Added value: +{
+ "enum": [
+ "running",
+ "succeeded",
+ "failed",
+ "blocked",
+ "cancelled",
+ "timed_out"
+ ],
+ "title": "Status",
+ "type": "string"
+}
changedOutput schema / required
Previous value: -[
- "invocation_id",
- "state",
- "result"
-]New value: +[
+ "invocation_id",
+ "status",
+ "reason",
+ "elapsed_ms"
+]
changedOutput schema / title
Previous value: -"CancelAgentPayload"New value: +"InvocationPayload"