|
|
@@ -7693,76 +7693,6 @@
|
|
|
},
|
|
|
"required": ["type", "properties"]
|
|
|
},
|
|
|
- "Event.server.connected": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "server.connected"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {}
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.global.disposed": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "global.disposed"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {}
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.file.edited": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "file.edited"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "file": {
|
|
|
- "type": "string"
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["file"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.file.watcher.updated": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "file.watcher.updated"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "file": {
|
|
|
- "type": "string"
|
|
|
- },
|
|
|
- "event": {
|
|
|
- "type": "string",
|
|
|
- "enum": ["add", "change", "unlink"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["file", "event"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
"Event.lsp.client.diagnostics": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
@@ -8225,6 +8155,144 @@
|
|
|
},
|
|
|
"required": ["type", "properties"]
|
|
|
},
|
|
|
+ "Event.workspace.ready": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "workspace.ready"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "name": {
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["name"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.workspace.failed": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "workspace.failed"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "message": {
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["message"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.workspace.restore": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "workspace.restore"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "workspaceID": {
|
|
|
+ "type": "string",
|
|
|
+ "pattern": "^wrk.*"
|
|
|
+ },
|
|
|
+ "sessionID": {
|
|
|
+ "type": "string",
|
|
|
+ "pattern": "^ses.*"
|
|
|
+ },
|
|
|
+ "total": {
|
|
|
+ "type": "integer",
|
|
|
+ "minimum": 0,
|
|
|
+ "maximum": 9007199254740991
|
|
|
+ },
|
|
|
+ "step": {
|
|
|
+ "type": "integer",
|
|
|
+ "minimum": 0,
|
|
|
+ "maximum": 9007199254740991
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["workspaceID", "sessionID", "total", "step"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.workspace.status": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "workspace.status"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "workspaceID": {
|
|
|
+ "type": "string",
|
|
|
+ "pattern": "^wrk.*"
|
|
|
+ },
|
|
|
+ "status": {
|
|
|
+ "type": "string",
|
|
|
+ "enum": ["connected", "connecting", "disconnected", "error"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["workspaceID", "status"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.file.edited": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "file.edited"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "file": {
|
|
|
+ "type": "string"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["file"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.file.watcher.updated": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "file.watcher.updated"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "file": {
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "event": {
|
|
|
+ "type": "string",
|
|
|
+ "enum": ["add", "change", "unlink"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["file", "event"]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
"QuestionOption": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
@@ -8743,102 +8811,6 @@
|
|
|
},
|
|
|
"required": ["type", "properties"]
|
|
|
},
|
|
|
- "Event.workspace.ready": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "workspace.ready"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "name": {
|
|
|
- "type": "string"
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["name"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.workspace.failed": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "workspace.failed"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "message": {
|
|
|
- "type": "string"
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["message"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.workspace.restore": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "workspace.restore"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "workspaceID": {
|
|
|
- "type": "string",
|
|
|
- "pattern": "^wrk.*"
|
|
|
- },
|
|
|
- "sessionID": {
|
|
|
- "type": "string",
|
|
|
- "pattern": "^ses.*"
|
|
|
- },
|
|
|
- "total": {
|
|
|
- "type": "integer",
|
|
|
- "minimum": 0,
|
|
|
- "maximum": 9007199254740991
|
|
|
- },
|
|
|
- "step": {
|
|
|
- "type": "integer",
|
|
|
- "minimum": 0,
|
|
|
- "maximum": 9007199254740991
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["workspaceID", "sessionID", "total", "step"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
- "Event.workspace.status": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "type": {
|
|
|
- "type": "string",
|
|
|
- "const": "workspace.status"
|
|
|
- },
|
|
|
- "properties": {
|
|
|
- "type": "object",
|
|
|
- "properties": {
|
|
|
- "workspaceID": {
|
|
|
- "type": "string",
|
|
|
- "pattern": "^wrk.*"
|
|
|
- },
|
|
|
- "status": {
|
|
|
- "type": "string",
|
|
|
- "enum": ["connected", "connecting", "disconnected", "error"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["workspaceID", "status"]
|
|
|
- }
|
|
|
- },
|
|
|
- "required": ["type", "properties"]
|
|
|
- },
|
|
|
"Event.worktree.ready": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
@@ -10441,6 +10413,34 @@
|
|
|
},
|
|
|
"required": ["type", "properties"]
|
|
|
},
|
|
|
+ "Event.server.connected": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "server.connected"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
+ "Event.global.disposed": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "type": {
|
|
|
+ "type": "string",
|
|
|
+ "const": "global.disposed"
|
|
|
+ },
|
|
|
+ "properties": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["type", "properties"]
|
|
|
+ },
|
|
|
"SyncEvent.message.updated": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
@@ -10963,18 +10963,6 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.server.instance.disposed"
|
|
|
},
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.server.connected"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.global.disposed"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.file.edited"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.file.watcher.updated"
|
|
|
- },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.lsp.client.diagnostics"
|
|
|
},
|
|
|
@@ -11002,6 +10990,24 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.installation.update-available"
|
|
|
},
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.ready"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.failed"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.restore"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.status"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.file.edited"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.file.watcher.updated"
|
|
|
+ },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.question.asked"
|
|
|
},
|
|
|
@@ -11047,18 +11053,6 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.vcs.branch.updated"
|
|
|
},
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.ready"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.failed"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.restore"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.status"
|
|
|
- },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.worktree.ready"
|
|
|
},
|
|
|
@@ -11098,6 +11092,12 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.session.deleted"
|
|
|
},
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.server.connected"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.global.disposed"
|
|
|
+ },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/SyncEvent.message.updated"
|
|
|
},
|
|
|
@@ -13256,18 +13256,6 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.server.instance.disposed"
|
|
|
},
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.server.connected"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.global.disposed"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.file.edited"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.file.watcher.updated"
|
|
|
- },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.lsp.client.diagnostics"
|
|
|
},
|
|
|
@@ -13295,6 +13283,24 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.installation.update-available"
|
|
|
},
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.ready"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.failed"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.restore"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.workspace.status"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.file.edited"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.file.watcher.updated"
|
|
|
+ },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.question.asked"
|
|
|
},
|
|
|
@@ -13340,18 +13346,6 @@
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.vcs.branch.updated"
|
|
|
},
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.ready"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.failed"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.restore"
|
|
|
- },
|
|
|
- {
|
|
|
- "$ref": "#/components/schemas/Event.workspace.status"
|
|
|
- },
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.worktree.ready"
|
|
|
},
|
|
|
@@ -13390,6 +13384,12 @@
|
|
|
},
|
|
|
{
|
|
|
"$ref": "#/components/schemas/Event.session.deleted"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.server.connected"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "$ref": "#/components/schemas/Event.global.disposed"
|
|
|
}
|
|
|
]
|
|
|
},
|