mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
changes
This commit is contained in:
@@ -4116,11 +4116,20 @@
|
||||
"title": "FeedbackUploadResponse",
|
||||
"type": "object"
|
||||
},
|
||||
"FileChangeInputDeltaNotification": {
|
||||
"FileChangeChangesDeltaNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"delta": {
|
||||
"type": "string"
|
||||
"activePath": {
|
||||
"type": [
|
||||
"string",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"changes": {
|
||||
"items": {
|
||||
"$ref": "#/definitions/FileUpdateChange"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"itemId": {
|
||||
"type": "string"
|
||||
@@ -4133,15 +4142,15 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"delta",
|
||||
"changes",
|
||||
"itemId",
|
||||
"threadId",
|
||||
"turnId"
|
||||
],
|
||||
"title": "FileChangeInputDeltaNotification",
|
||||
"title": "FileChangeChangesDeltaNotification",
|
||||
"type": "object"
|
||||
},
|
||||
"FileChangeInputStartedNotification": {
|
||||
"FileChangeChangesStartedNotification": {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"properties": {
|
||||
"itemId": {
|
||||
@@ -4159,7 +4168,7 @@
|
||||
"threadId",
|
||||
"turnId"
|
||||
],
|
||||
"title": "FileChangeInputStartedNotification",
|
||||
"title": "FileChangeChangesStartedNotification",
|
||||
"type": "object"
|
||||
},
|
||||
"FileChangeOutputDeltaNotification": {
|
||||
@@ -9065,40 +9074,40 @@
|
||||
"properties": {
|
||||
"method": {
|
||||
"enum": [
|
||||
"item/fileChange/inputStarted"
|
||||
"item/fileChange/changesStarted"
|
||||
],
|
||||
"title": "Item/fileChange/inputStartedNotificationMethod",
|
||||
"title": "Item/fileChange/changesStartedNotificationMethod",
|
||||
"type": "string"
|
||||
},
|
||||
"params": {
|
||||
"$ref": "#/definitions/FileChangeInputStartedNotification"
|
||||
"$ref": "#/definitions/FileChangeChangesStartedNotification"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"method",
|
||||
"params"
|
||||
],
|
||||
"title": "Item/fileChange/inputStartedNotification",
|
||||
"title": "Item/fileChange/changesStartedNotification",
|
||||
"type": "object"
|
||||
},
|
||||
{
|
||||
"properties": {
|
||||
"method": {
|
||||
"enum": [
|
||||
"item/fileChange/inputDelta"
|
||||
"item/fileChange/changesDelta"
|
||||
],
|
||||
"title": "Item/fileChange/inputDeltaNotificationMethod",
|
||||
"title": "Item/fileChange/changesDeltaNotificationMethod",
|
||||
"type": "string"
|
||||
},
|
||||
"params": {
|
||||
"$ref": "#/definitions/FileChangeInputDeltaNotification"
|
||||
"$ref": "#/definitions/FileChangeChangesDeltaNotification"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"method",
|
||||
"params"
|
||||
],
|
||||
"title": "Item/fileChange/inputDeltaNotification",
|
||||
"title": "Item/fileChange/changesDeltaNotification",
|
||||
"type": "object"
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user