This commit is contained in:
Akshay Nathan
2026-04-09 19:40:52 -07:00
parent d3c0a89ad4
commit 53b166a7ba
32 changed files with 857 additions and 341 deletions

View File

@@ -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"
},
{