schema update

This commit is contained in:
Roy Han
2026-03-16 13:35:30 -07:00
parent c983053056
commit 91c94fd56e
9 changed files with 299 additions and 2 deletions

View File

@@ -7002,6 +7002,16 @@
],
"writeOnly": true
},
"metadata": {
"anyOf": [
{
"$ref": "#/definitions/ResponseItemMetadata"
},
{
"type": "null"
}
]
},
"status": {
"$ref": "#/definitions/LocalShellStatus"
},
@@ -7036,6 +7046,16 @@
],
"writeOnly": true
},
"metadata": {
"anyOf": [
{
"$ref": "#/definitions/ResponseItemMetadata"
},
{
"type": "null"
}
]
},
"name": {
"type": "string"
},
@@ -7142,6 +7162,16 @@
"input": {
"type": "string"
},
"metadata": {
"anyOf": [
{
"$ref": "#/definitions/ResponseItemMetadata"
},
{
"type": "null"
}
]
},
"name": {
"type": "string"
},
@@ -7360,6 +7390,22 @@
},
"ResponseItemMetadata": {
"properties": {
"is_tool_call_escalated": {
"type": [
"boolean",
"null"
]
},
"review_decision": {
"anyOf": [
{
"$ref": "#/definitions/ReviewDecisionMetadata"
},
{
"type": "null"
}
]
},
"user_message_type": {
"anyOf": [
{
@@ -7474,6 +7520,18 @@
}
]
},
"ReviewDecisionMetadata": {
"enum": [
"approved",
"denied",
"abort",
"approved_for_session",
"approved_with_amendment",
"approved_with_network_policy_allow",
"denied_with_network_policy_deny"
],
"type": "string"
},
"ReviewDelivery": {
"enum": [
"inline",