mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
schema regen
This commit is contained in:
@@ -3367,6 +3367,19 @@
|
||||
},
|
||||
"TurnCompletedNotification": {
|
||||
"properties": {
|
||||
"completedAt": {
|
||||
"description": "Unix timestamp (in seconds) when the turn completed.",
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"durationMs": {
|
||||
"description": "Duration between turn start and completion in milliseconds, if known.",
|
||||
"format": "int64",
|
||||
"type": [
|
||||
"integer",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -3375,6 +3388,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"completedAt",
|
||||
"threadId",
|
||||
"turn"
|
||||
],
|
||||
@@ -3481,6 +3495,11 @@
|
||||
},
|
||||
"TurnStartedNotification": {
|
||||
"properties": {
|
||||
"createdAt": {
|
||||
"description": "Unix timestamp (in seconds) when the turn started.",
|
||||
"format": "int64",
|
||||
"type": "integer"
|
||||
},
|
||||
"threadId": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -3489,6 +3508,7 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"createdAt",
|
||||
"threadId",
|
||||
"turn"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user