mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-21 14:07:20 +08:00
Merge origin/main into feat-stt-model-discovery
This commit is contained in:
+305
-215
@@ -23859,6 +23859,13 @@
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "replayExited",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"security": [],
|
||||
@@ -24709,6 +24716,9 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSandboxStatusChanged"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspClientDiagnostics"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSuggestionShown"
|
||||
},
|
||||
@@ -24736,9 +24746,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventKilo-sessionsRemote-status-changed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspClientDiagnostics"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventMemoryStatus1"
|
||||
},
|
||||
@@ -24754,6 +24761,9 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventIndexingWarning"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventModels-devRefreshed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventServerConnected"
|
||||
},
|
||||
@@ -24922,9 +24932,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSessionError"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventModels-devRefreshed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventInstallationUpdated"
|
||||
},
|
||||
@@ -24932,13 +24939,7 @@
|
||||
"$ref": "#/components/schemas/EventInstallationUpdate-available"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionAsked"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionReplied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
"$ref": "#/components/schemas/EventFileEdited"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionV2Asked"
|
||||
@@ -24947,10 +24948,10 @@
|
||||
"$ref": "#/components/schemas/EventPermissionV2Replied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventFileEdited"
|
||||
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventFileWatcherUpdated"
|
||||
@@ -24979,6 +24980,15 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventTodoUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionAsked"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionReplied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSessionStatus"
|
||||
},
|
||||
@@ -24997,9 +25007,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventVcsBranchUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventWorkspaceReady"
|
||||
},
|
||||
@@ -25537,6 +25544,40 @@
|
||||
"required": ["id", "sessionID", "operation", "targetSessionID"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"AgentManagerMoveRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"$ref": "#/components/schemas/AgentManagerRequestID"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"operation": {
|
||||
"type": "string",
|
||||
"enum": ["move"]
|
||||
},
|
||||
"targetSessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"sectionID": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 200
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": ["id", "sessionID", "operation", "targetSessionID", "sectionID"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"AgentManagerRequest": {
|
||||
"anyOf": [
|
||||
{
|
||||
@@ -25547,6 +25588,9 @@
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/AgentManagerStopRequest"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/AgentManagerMoveRequest"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -26591,6 +26635,9 @@
|
||||
"required": ["providerID", "modelID"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"variant": {
|
||||
"type": "string"
|
||||
},
|
||||
"command": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -27902,6 +27949,9 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSandboxStatusChanged"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspClientDiagnostics"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSuggestionShown"
|
||||
},
|
||||
@@ -27929,9 +27979,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventKilo-sessionsRemote-status-changed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspClientDiagnostics"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventMemoryStatus"
|
||||
},
|
||||
@@ -27947,6 +27994,9 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventIndexingWarning"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventModels-devRefreshed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventServerConnected"
|
||||
},
|
||||
@@ -28115,9 +28165,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSessionError"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventModels-devRefreshed"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventInstallationUpdated"
|
||||
},
|
||||
@@ -28125,13 +28172,7 @@
|
||||
"$ref": "#/components/schemas/EventInstallationUpdate-available"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionAsked"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionReplied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
"$ref": "#/components/schemas/EventFileEdited"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionV2Asked"
|
||||
@@ -28140,10 +28181,10 @@
|
||||
"$ref": "#/components/schemas/EventPermissionV2Replied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
|
||||
"$ref": "#/components/schemas/EventReferenceUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventFileEdited"
|
||||
"$ref": "#/components/schemas/EventProjectDirectoriesUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventFileWatcherUpdated"
|
||||
@@ -28172,6 +28213,15 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventTodoUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionAsked"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventPermissionReplied"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventSessionStatus"
|
||||
},
|
||||
@@ -28190,9 +28240,6 @@
|
||||
{
|
||||
"$ref": "#/components/schemas/EventVcsBranchUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventLspUpdated"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/EventWorkspaceReady"
|
||||
},
|
||||
@@ -29209,7 +29256,6 @@
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": ["template"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
@@ -30855,6 +30901,9 @@
|
||||
"model": {
|
||||
"type": "string"
|
||||
},
|
||||
"variant": {
|
||||
"type": "string"
|
||||
},
|
||||
"source": {
|
||||
"type": "string",
|
||||
"enum": ["command", "mcp", "skill"]
|
||||
@@ -32902,6 +32951,9 @@
|
||||
"required": ["providerID", "modelID"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"variant": {
|
||||
"type": "string"
|
||||
},
|
||||
"command": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -34885,6 +34937,37 @@
|
||||
"required": ["operation", "sessionID", "stopped"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"AgentManagerMoveResult": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"operation": {
|
||||
"type": "string",
|
||||
"enum": ["move"]
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"sectionID": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 200
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
}
|
||||
]
|
||||
},
|
||||
"moved": {
|
||||
"type": "boolean",
|
||||
"enum": [true]
|
||||
}
|
||||
},
|
||||
"required": ["operation", "sessionID", "sectionID", "moved"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"AgentManagerResult": {
|
||||
"anyOf": [
|
||||
{
|
||||
@@ -34895,6 +34978,9 @@
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/AgentManagerStopResult"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/schemas/AgentManagerMoveResult"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -34911,6 +34997,7 @@
|
||||
"stale_session",
|
||||
"timeout",
|
||||
"unavailable_session",
|
||||
"unknown_section",
|
||||
"unknown_session",
|
||||
"workspace_unavailable"
|
||||
]
|
||||
@@ -35896,6 +35983,33 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventLspClientDiagnostics": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["lsp.client.diagnostics"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"serverID": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["serverID", "path"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventSuggestionShown": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -36192,33 +36306,6 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventLspClientDiagnostics": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["lsp.client.diagnostics"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"serverID": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["serverID", "path"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventMemoryStatus": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -37289,6 +37376,24 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventModels-devRefreshed": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["models-dev.refreshed"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventServerConnected": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -39331,24 +39436,6 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventModels-devRefreshed": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["models-dev.refreshed"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventInstallationUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -39397,7 +39484,7 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventPermissionAsked": {
|
||||
"EventFileEdited": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
@@ -39405,109 +39492,22 @@
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["permission.asked"]
|
||||
"enum": ["file.edited"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string",
|
||||
"pattern": "^per"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"permission": {
|
||||
"file": {
|
||||
"type": "string"
|
||||
},
|
||||
"patterns": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"metadata": {
|
||||
"type": "object"
|
||||
},
|
||||
"always": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"tool": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
},
|
||||
"callID": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["messageID", "callID"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "sessionID", "permission", "patterns", "metadata", "always"],
|
||||
"required": ["file"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventPermissionReplied": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["permission.replied"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"requestID": {
|
||||
"type": "string",
|
||||
"pattern": "^per"
|
||||
},
|
||||
"reply": {
|
||||
"type": "string",
|
||||
"enum": ["once", "always", "reject"]
|
||||
}
|
||||
},
|
||||
"required": ["sessionID", "requestID", "reply"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventReferenceUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["reference.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"PermissionV2Source": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -39611,6 +39611,24 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventReferenceUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["reference.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventProjectDirectoriesUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -39635,30 +39653,6 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventFileEdited": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["file.edited"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"file": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["file"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventFileWatcherUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -39985,6 +39979,117 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventLspUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["lsp.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventPermissionAsked": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["permission.asked"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string",
|
||||
"pattern": "^per"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"permission": {
|
||||
"type": "string"
|
||||
},
|
||||
"patterns": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"metadata": {
|
||||
"type": "object"
|
||||
},
|
||||
"always": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"tool": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
},
|
||||
"callID": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["messageID", "callID"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "sessionID", "permission", "patterns", "metadata", "always"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventPermissionReplied": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["permission.replied"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
},
|
||||
"requestID": {
|
||||
"type": "string",
|
||||
"pattern": "^per"
|
||||
},
|
||||
"reply": {
|
||||
"type": "string",
|
||||
"enum": ["once", "always", "reject"]
|
||||
}
|
||||
},
|
||||
"required": ["sessionID", "requestID", "reply"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventSessionStatus": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -40205,24 +40310,6 @@
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventLspUpdated": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": ["lsp.updated"]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
}
|
||||
},
|
||||
"required": ["id", "type", "properties"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"EventWorkspaceReady": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -44432,6 +44519,9 @@
|
||||
"required": ["id", "providerID"],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"variant": {
|
||||
"type": "string"
|
||||
},
|
||||
"subtask": {
|
||||
"type": "boolean"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user