|
|
@@ -48,6 +48,20 @@ export type EventServerInstanceDisposed = {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+export type EventServerConnected = {
|
|
|
+ type: "server.connected"
|
|
|
+ properties: {
|
|
|
+ [key: string]: unknown
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+export type EventGlobalDisposed = {
|
|
|
+ type: "global.disposed"
|
|
|
+ properties: {
|
|
|
+ [key: string]: unknown
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
export type EventLspClientDiagnostics = {
|
|
|
type: "lsp.client.diagnostics"
|
|
|
properties: {
|
|
|
@@ -846,25 +860,13 @@ export type EventPtyDeleted = {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-export type EventGlobalDisposed = {
|
|
|
- type: "global.disposed"
|
|
|
- properties: {
|
|
|
- [key: string]: unknown
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-export type EventServerConnected = {
|
|
|
- type: "server.connected"
|
|
|
- properties: {
|
|
|
- [key: string]: unknown
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
export type Event =
|
|
|
| EventInstallationUpdated
|
|
|
| EventInstallationUpdateAvailable
|
|
|
| EventProjectUpdated
|
|
|
| EventServerInstanceDisposed
|
|
|
+ | EventServerConnected
|
|
|
+ | EventGlobalDisposed
|
|
|
| EventLspClientDiagnostics
|
|
|
| EventLspUpdated
|
|
|
| EventFileEdited
|
|
|
@@ -899,8 +901,6 @@ export type Event =
|
|
|
| EventPtyUpdated
|
|
|
| EventPtyExited
|
|
|
| EventPtyDeleted
|
|
|
- | EventGlobalDisposed
|
|
|
- | EventServerConnected
|
|
|
|
|
|
export type GlobalEvent = {
|
|
|
directory: string
|
|
|
@@ -2189,47 +2189,6 @@ export type GlobalDisposeResponses = {
|
|
|
|
|
|
export type GlobalDisposeResponse = GlobalDisposeResponses[keyof GlobalDisposeResponses]
|
|
|
|
|
|
-export type GlobalConfigGetData = {
|
|
|
- body?: never
|
|
|
- path?: never
|
|
|
- query?: never
|
|
|
- url: "/global/config"
|
|
|
-}
|
|
|
-
|
|
|
-export type GlobalConfigGetResponses = {
|
|
|
- /**
|
|
|
- * Global config
|
|
|
- */
|
|
|
- 200: Config
|
|
|
-}
|
|
|
-
|
|
|
-export type GlobalConfigGetResponse = GlobalConfigGetResponses[keyof GlobalConfigGetResponses]
|
|
|
-
|
|
|
-export type GlobalConfigUpdateData = {
|
|
|
- body?: Config
|
|
|
- path?: never
|
|
|
- query?: never
|
|
|
- url: "/global/config"
|
|
|
-}
|
|
|
-
|
|
|
-export type GlobalConfigUpdateErrors = {
|
|
|
- /**
|
|
|
- * Bad request
|
|
|
- */
|
|
|
- 400: BadRequestError
|
|
|
-}
|
|
|
-
|
|
|
-export type GlobalConfigUpdateError = GlobalConfigUpdateErrors[keyof GlobalConfigUpdateErrors]
|
|
|
-
|
|
|
-export type GlobalConfigUpdateResponses = {
|
|
|
- /**
|
|
|
- * Successfully updated global config
|
|
|
- */
|
|
|
- 200: Config
|
|
|
-}
|
|
|
-
|
|
|
-export type GlobalConfigUpdateResponse = GlobalConfigUpdateResponses[keyof GlobalConfigUpdateResponses]
|
|
|
-
|
|
|
export type ProjectListData = {
|
|
|
body?: never
|
|
|
path?: never
|