diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,25 +1,56 @@
 # Revision history for lsp-types
 
-## 2.0.2.0
+## 2.4.0.0 -- 2026-02-14
 
-- Add `Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann` for prettyprinting JSON, 
+- export `emptyNormalizedUri` from `Language.LSP.Protocol.Types.Uri`
+- Relax dependency version bounds
+
+## 2.3.0.1 -- 2024-12-31
+
+- Relax dependency version bounds
+
+## 2.3.0.0 -- 2024-06-06
+
+- Add support for identifying client and server capabilities associated with a method.
+- `TResponseMessage` now contains a `TResponseError` instead of a `ResponseError`
+
+## 2.2.0.0 -- 2024-04-29
+
+- Update the metamodel. This results in a number of breaking changes to the generated code, mostly replacing
+  anonymous structs with named ones.
+
+## 2.1.1.0 -- 2024-02-24
+
+- Require aeson 2
+- Accept `null` in place of a missing field, a common mistake in spec compliance.
+- Arbitrary instances for everything now exist and are exported via the new `lsp-types-quickcheck` library
+
+## 2.1.0.0 -- 2023-11-13
+
+- Add `dynamicRegistrationSupported` to `Capabilities`.
+- Fully update `fullCaps` for recent spec versions.
+- Support GHC 9.8, drop checked support for GHC 8.10
+
+## 2.0.2.0 -- 2023-08-24
+
+- Add `Language.LSP.Protocol.Utils.Misc.prettyJSON :: Value -> Doc ann` for prettyprinting JSON,
   and `ViaJSON` as a deriving-via newtype wrapper for it.
 - Generate `Pretty` instances for all LSP types using `ViaJSON`.
 
-## 2.0.1.1
+## 2.0.1.1 -- 2023-08-08
 
 * Fix parsing of notifications with missing params
 
-## 2.0.1.0
+## 2.0.1.0 -- 2023-07-14
 
 * Removed deprecation pragmas from fields, as these cannot currently be avoided.
 * Added `isOptionalMethod`, that checks whether a method is optional according to the spec.
 
-## 2.0.0.1
+## 2.0.0.1 -- 2023-06-16
 
 * Fixed missing `extra-source-files` for `metamodel.json`.
 
-## 2.0.0.0
+## 2.0.0.0 -- 2023-06-14
 
 * Breaking change: major restructure to generate types and methods from the LSP metamodel.
     * Full support for version 3.17 of the LSP specification, many accuracy fixes
@@ -30,23 +61,27 @@
     * Three top level modules: `Types` (main protocol types), `Message` (messages and methods), `Capabilities` (capabilities)
 * New typeclasses for handling LSP enumerations: `LspEnum` and `LspOpenEnum`
 
-## 1.6.0.0
+## 1.6.0.1 -- 2023-12-02
 
+* Add `LANGUAGE DuplicateRecordFields` to facilitate building with GHC 9.8
+
+## 1.6.0.0 -- 2022-09-13
+
 * Add `isSubRangeOf` and `positionInRange` helper functions
 * Add `ServerCancelled`, `RequestFailed` and `ErrorCodeCustom` server error types
 * Fix "workspace/semanticTokens/refresh" to be a server method instead of a client method
 * Use a packed representation for `NormalizedFilePath`
 * Add conversions from `OsPath` to `NormalizedFilePath` in `Language.LSP.Types.Uri.OsPath` when using new enough `filepath`
- 
-## 1.5.0.0
 
+## 1.5.0.0 -- 2022-06-20
+
 * VFS module moved from `lsp-types` to `lsp`, as it relates to the actual implementation of a LSP server.
 
-## 1.4.0.1
+## 1.4.0.1 -- 2022-01-20
 
 * Fix result type of selection range requests.
 
-## 1.4.0.0
+## 1.4.0.0 -- 2021-12-28
 
 * Aeson 2 compatibility (#360) (@michaelpj)
 * Reduced dependency footprint (#383, #384) (@Bodigrim)
@@ -56,15 +91,15 @@
 * Fix the Semigroup instance for MarkupContent (#361) (@michaelpj)
 * Various improvements to spec conformance (@michaelpj)
 
-## 1.3.0.1
+## 1.3.0.1 -- 2021-08-06
 
 * Rollback NFP interning (#344) (@pepeiborra)
 
-## 1.3.0.0
+## 1.3.0.0 -- 2021-07-31
 
 * Intern NormalizedFilePaths (#340) (@pepeiborra)
 
-## 1.2.0.1
+## 1.2.0.1 -- unpublished
 
 * Add compatibility with GHC 9.2 (#345) (@fendor)
 * Fix missing lenses (@michaelpj)
@@ -74,7 +109,7 @@
 * Do not crash on workspace/didChangeConfiguration (#321) (@strager)
 * Improve error messages on JSON decode failures (#320) (@strager)
 
-## 1.2.0.0
+## 1.2.0.0 -- 2021-03-28
 
 * Prevent crashing when optional fields are missing (@anka-213)
 * Use StrictData (@wz1000)
@@ -91,7 +126,7 @@
 * Support change annotations (#302) (@michaelpj)
 * Add some more missing lenses (#307) (@michaelpj)
 
-## 1.1.0.0
+## 1.1.0.0 -- 2021-02-14
 
 * Fix prepareRename reponse and prepareProvider (@kirelagin)
 * Fix deriving instance of MonadUnliftIO (@banacorn)
@@ -124,7 +159,7 @@
 * Use Text over String in more places (@wz1000)
 * Add missing lenses (@wz1000, @bubba)
 
-## 1.0.0.0
+## 1.0.0.0 -- 2020-10-15
 
 1.0.0.0 is a major rework with both internal and external facing changes, and
 will require manual migration.
@@ -223,10 +258,10 @@
 `LanguageContextEnv` needed to run an `LspT`, as well as anything else your
 monad needs.
 ```haskell
-type 
+type
 ServerDefinition { ...
 , doInitialize = \env _req -> pure $ Right env
-, interpretHandler = \env -> Iso 
+, interpretHandler = \env -> Iso
    (runLspT env) -- how to convert from IO ~> m
    liftIO        -- how to convert from m ~> IO
 }
@@ -242,7 +277,7 @@
 5. Remove any storage/use of `LspFuncs` and instead call the corresponding
    functions directly from your monad instead of `IO`
 
-## 0.23.0.0
+## 0.23.0.0 -- 2020-10-05
 
 * Add runWith for transporots other than stdio (@paulyoung)
 * Fix race condition in event captures (@bgamari)
@@ -253,12 +288,12 @@
   NormalizedFilePath (@cocreature)
 * Fix ordering of TH splices (@fendor)
 
-## 0.22.0.0
+## 0.22.0.0 -- 2020-05-04
 
 * ResponseMessage results are now an Either type (@greenhat)
 * Support for GHC 8.10.1
 
-## 0.21.0.0
+## 0.21.0.0 -- 2020-03-21
 
 * Stop getCompletionPrefix from crashing if beforePos is empty
 * Add DidChangeWatchedFilesRegistrationOptions
@@ -268,7 +303,7 @@
 * Correctly fix the problem with '$/' notifications
 * Add azure ci
 
-## 0.20.0.0
+## 0.20.0.0 -- 2020-02-04T
 
 * Force utf8 encoding when writing vfs temp files
 * Don't log errors for '$/' notifications (@jinwoo)
@@ -328,7 +363,7 @@
 
 * Add types for `window/progress` notifications.
 
-## 0.8.3.0
+## 0.8.3.0 -- unpublished
 
 * Add `MarkupContent` to `HoverResponse`, and (some) json roundtrip tests.
 
@@ -381,11 +416,11 @@
 * CodeAction support as per v3.8 of the specification, by @Bubba
 * Update VersionedTextDocumentIdentifier to match specification, by @Bubba.
 
-## 0.3.0.0
+## 0.3.0.0 -- unpublished
 
 * Handle TextDocumentSync fallbacks with new TDS type.
 
-## 0.2.3.0
+## 0.2.3.0 -- unpublished
 
 * GHC 8.4.3 support
 * Introduce additional error codes as per the LSP spec. By @Bubba
diff --git a/generated/Language/LSP/Protocol/Internal/Lens.hs b/generated/Language/LSP/Protocol/Internal/Lens.hs
deleted file mode 100644
--- a/generated/Language/LSP/Protocol/Internal/Lens.hs
+++ /dev/null
@@ -1,635 +0,0 @@
--- THIS IS A GENERATED FILE, DO NOT EDIT
-{-# LANGUAGE TemplateHaskell #-}
-{-# OPTIONS_GHC -Wno-unused-imports #-}
-{-# OPTIONS_GHC -Wno-unused-matches #-}
-{-# OPTIONS_GHC -Wno-deprecations #-}
-module Language.LSP.Protocol.Internal.Lens where
-
-import qualified Control.Lens.TH
-import qualified Language.LSP.Protocol.Internal.Types.AnnotatedTextEdit
-import qualified Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditParams
-import qualified Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditResult
-import qualified Language.LSP.Protocol.Internal.Types.BaseSymbolInformation
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCall
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCallsParams
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyItem
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyOptions
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCall
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCallsParams
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyPrepareParams
-import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.CancelParams
-import qualified Language.LSP.Protocol.Internal.Types.ChangeAnnotation
-import qualified Language.LSP.Protocol.Internal.Types.ClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.CodeAction
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionContext
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionOptions
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionParams
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.CodeDescription
-import qualified Language.LSP.Protocol.Internal.Types.CodeLens
-import qualified Language.LSP.Protocol.Internal.Types.CodeLensClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.CodeLensOptions
-import qualified Language.LSP.Protocol.Internal.Types.CodeLensParams
-import qualified Language.LSP.Protocol.Internal.Types.CodeLensRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.CodeLensWorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.Color
-import qualified Language.LSP.Protocol.Internal.Types.ColorInformation
-import qualified Language.LSP.Protocol.Internal.Types.ColorPresentation
-import qualified Language.LSP.Protocol.Internal.Types.ColorPresentationParams
-import qualified Language.LSP.Protocol.Internal.Types.Command
-import qualified Language.LSP.Protocol.Internal.Types.CompletionClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.CompletionContext
-import qualified Language.LSP.Protocol.Internal.Types.CompletionItem
-import qualified Language.LSP.Protocol.Internal.Types.CompletionItemLabelDetails
-import qualified Language.LSP.Protocol.Internal.Types.CompletionList
-import qualified Language.LSP.Protocol.Internal.Types.CompletionOptions
-import qualified Language.LSP.Protocol.Internal.Types.CompletionParams
-import qualified Language.LSP.Protocol.Internal.Types.CompletionRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ConfigurationItem
-import qualified Language.LSP.Protocol.Internal.Types.ConfigurationParams
-import qualified Language.LSP.Protocol.Internal.Types.CreateFile
-import qualified Language.LSP.Protocol.Internal.Types.CreateFileOptions
-import qualified Language.LSP.Protocol.Internal.Types.CreateFilesParams
-import qualified Language.LSP.Protocol.Internal.Types.DeclarationClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DeclarationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DeclarationParams
-import qualified Language.LSP.Protocol.Internal.Types.DeclarationRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DefinitionClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DefinitionOptions
-import qualified Language.LSP.Protocol.Internal.Types.DefinitionParams
-import qualified Language.LSP.Protocol.Internal.Types.DefinitionRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DeleteFile
-import qualified Language.LSP.Protocol.Internal.Types.DeleteFileOptions
-import qualified Language.LSP.Protocol.Internal.Types.DeleteFilesParams
-import qualified Language.LSP.Protocol.Internal.Types.Diagnostic
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticOptions
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticRelatedInformation
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticServerCancellationData
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticWorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeConfigurationClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeConfigurationParams
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeConfigurationRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeNotebookDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeTextDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesParams
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DidChangeWorkspaceFoldersParams
-import qualified Language.LSP.Protocol.Internal.Types.DidCloseNotebookDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidCloseTextDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidOpenNotebookDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidOpenTextDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidSaveNotebookDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DidSaveTextDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentColorClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentColorOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentColorParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentColorRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentDiagnosticParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentDiagnosticReportPartialResult
-import qualified Language.LSP.Protocol.Internal.Types.DocumentFormattingClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentFormattingOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentFormattingParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentFormattingRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentHighlight
-import qualified Language.LSP.Protocol.Internal.Types.DocumentHighlightClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentHighlightOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentHighlightParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentHighlightRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentLink
-import qualified Language.LSP.Protocol.Internal.Types.DocumentLinkClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentLinkOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentLinkParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentLinkRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbol
-import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbolClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbolOptions
-import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbolParams
-import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbolRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ExecuteCommandClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions
-import qualified Language.LSP.Protocol.Internal.Types.ExecuteCommandParams
-import qualified Language.LSP.Protocol.Internal.Types.ExecuteCommandRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ExecutionSummary
-import qualified Language.LSP.Protocol.Internal.Types.FileCreate
-import qualified Language.LSP.Protocol.Internal.Types.FileDelete
-import qualified Language.LSP.Protocol.Internal.Types.FileEvent
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationFilter
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationOptions
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationPattern
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationPatternOptions
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.FileRename
-import qualified Language.LSP.Protocol.Internal.Types.FileSystemWatcher
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRange
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeOptions
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeParams
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.FormattingOptions
-import qualified Language.LSP.Protocol.Internal.Types.FullDocumentDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.GeneralClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.Hover
-import qualified Language.LSP.Protocol.Internal.Types.HoverClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.HoverOptions
-import qualified Language.LSP.Protocol.Internal.Types.HoverParams
-import qualified Language.LSP.Protocol.Internal.Types.HoverRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ImplementationClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ImplementationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ImplementationParams
-import qualified Language.LSP.Protocol.Internal.Types.ImplementationRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.InitializeError
-import qualified Language.LSP.Protocol.Internal.Types.InitializeParams
-import qualified Language.LSP.Protocol.Internal.Types.InitializeResult
-import qualified Language.LSP.Protocol.Internal.Types.InitializedParams
-import qualified Language.LSP.Protocol.Internal.Types.InlayHint
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintLabelPart
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintOptions
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintParams
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.InlayHintWorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueContext
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueEvaluatableExpression
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueOptions
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueParams
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueText
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueVariableLookup
-import qualified Language.LSP.Protocol.Internal.Types.InlineValueWorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.InsertReplaceEdit
-import qualified Language.LSP.Protocol.Internal.Types.LinkedEditingRangeClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.LinkedEditingRangeOptions
-import qualified Language.LSP.Protocol.Internal.Types.LinkedEditingRangeParams
-import qualified Language.LSP.Protocol.Internal.Types.LinkedEditingRangeRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.LinkedEditingRanges
-import qualified Language.LSP.Protocol.Internal.Types.Location
-import qualified Language.LSP.Protocol.Internal.Types.LocationLink
-import qualified Language.LSP.Protocol.Internal.Types.LogMessageParams
-import qualified Language.LSP.Protocol.Internal.Types.LogTraceParams
-import qualified Language.LSP.Protocol.Internal.Types.MarkdownClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.MarkupContent
-import qualified Language.LSP.Protocol.Internal.Types.MessageActionItem
-import qualified Language.LSP.Protocol.Internal.Types.Moniker
-import qualified Language.LSP.Protocol.Internal.Types.MonikerClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.MonikerOptions
-import qualified Language.LSP.Protocol.Internal.Types.MonikerParams
-import qualified Language.LSP.Protocol.Internal.Types.MonikerRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.NotebookCell
-import qualified Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange
-import qualified Language.LSP.Protocol.Internal.Types.NotebookCellTextDocumentFilter
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocument
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentChangeEvent
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncOptions
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.OptionalVersionedTextDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.ParameterInformation
-import qualified Language.LSP.Protocol.Internal.Types.PartialResultParams
-import qualified Language.LSP.Protocol.Internal.Types.Position
-import qualified Language.LSP.Protocol.Internal.Types.PrepareRenameParams
-import qualified Language.LSP.Protocol.Internal.Types.PreviousResultId
-import qualified Language.LSP.Protocol.Internal.Types.ProgressParams
-import qualified Language.LSP.Protocol.Internal.Types.PublishDiagnosticsClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.PublishDiagnosticsParams
-import qualified Language.LSP.Protocol.Internal.Types.Range
-import qualified Language.LSP.Protocol.Internal.Types.ReferenceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ReferenceContext
-import qualified Language.LSP.Protocol.Internal.Types.ReferenceOptions
-import qualified Language.LSP.Protocol.Internal.Types.ReferenceParams
-import qualified Language.LSP.Protocol.Internal.Types.ReferenceRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.Registration
-import qualified Language.LSP.Protocol.Internal.Types.RegistrationParams
-import qualified Language.LSP.Protocol.Internal.Types.RegularExpressionsClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.RelatedFullDocumentDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.RelatedUnchangedDocumentDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.RelativePattern
-import qualified Language.LSP.Protocol.Internal.Types.RenameClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.RenameFile
-import qualified Language.LSP.Protocol.Internal.Types.RenameFileOptions
-import qualified Language.LSP.Protocol.Internal.Types.RenameFilesParams
-import qualified Language.LSP.Protocol.Internal.Types.RenameOptions
-import qualified Language.LSP.Protocol.Internal.Types.RenameParams
-import qualified Language.LSP.Protocol.Internal.Types.RenameRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.ResourceOperation
-import qualified Language.LSP.Protocol.Internal.Types.SaveOptions
-import qualified Language.LSP.Protocol.Internal.Types.SelectionRange
-import qualified Language.LSP.Protocol.Internal.Types.SelectionRangeClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.SelectionRangeOptions
-import qualified Language.LSP.Protocol.Internal.Types.SelectionRangeParams
-import qualified Language.LSP.Protocol.Internal.Types.SelectionRangeRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokens
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensDelta
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaParams
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaPartialResult
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensEdit
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensOptions
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensParams
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensPartialResult
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensRangeParams
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensWorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ServerCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.SetTraceParams
-import qualified Language.LSP.Protocol.Internal.Types.ShowDocumentClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ShowDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.ShowDocumentResult
-import qualified Language.LSP.Protocol.Internal.Types.ShowMessageParams
-import qualified Language.LSP.Protocol.Internal.Types.ShowMessageRequestClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.ShowMessageRequestParams
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelp
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelpClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelpContext
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelpOptions
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelpParams
-import qualified Language.LSP.Protocol.Internal.Types.SignatureHelpRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.SignatureInformation
-import qualified Language.LSP.Protocol.Internal.Types.StaticRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.SymbolInformation
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentChangeRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentEdit
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentItem
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentPositionParams
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentSaveRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentSyncClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentSyncOptions
-import qualified Language.LSP.Protocol.Internal.Types.TextEdit
-import qualified Language.LSP.Protocol.Internal.Types.TypeDefinitionClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.TypeDefinitionOptions
-import qualified Language.LSP.Protocol.Internal.Types.TypeDefinitionParams
-import qualified Language.LSP.Protocol.Internal.Types.TypeDefinitionRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyItem
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyOptions
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyPrepareParams
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchySubtypesParams
-import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchySupertypesParams
-import qualified Language.LSP.Protocol.Internal.Types.UInitializeParams
-import qualified Language.LSP.Protocol.Internal.Types.UnchangedDocumentDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.Unregistration
-import qualified Language.LSP.Protocol.Internal.Types.UnregistrationParams
-import qualified Language.LSP.Protocol.Internal.Types.VersionedNotebookDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.WillSaveTextDocumentParams
-import qualified Language.LSP.Protocol.Internal.Types.WindowClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressBegin
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressCancelParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressCreateParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressEnd
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressOptions
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkDoneProgressReport
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReportPartialResult
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceEdit
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceEditClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFolder
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFoldersChangeEvent
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFoldersInitializeParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFullDocumentDiagnosticReport
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbol
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbolClientCapabilities
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbolOptions
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbolParams
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbolRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceUnchangedDocumentDiagnosticReport
-
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ImplementationParams.ImplementationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Location.Location
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ImplementationRegistrationOptions.ImplementationRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeDefinitionParams.TypeDefinitionParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeDefinitionRegistrationOptions.TypeDefinitionRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceFolder.WorkspaceFolder
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeWorkspaceFoldersParams.DidChangeWorkspaceFoldersParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ConfigurationParams.ConfigurationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentColorParams.DocumentColorParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ColorInformation.ColorInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentColorRegistrationOptions.DocumentColorRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ColorPresentationParams.ColorPresentationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ColorPresentation.ColorPresentation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressOptions.WorkDoneProgressOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentRegistrationOptions.TextDocumentRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FoldingRangeParams.FoldingRangeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FoldingRange.FoldingRange
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FoldingRangeRegistrationOptions.FoldingRangeRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeclarationParams.DeclarationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeclarationRegistrationOptions.DeclarationRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SelectionRangeParams.SelectionRangeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SelectionRange.SelectionRange
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SelectionRangeRegistrationOptions.SelectionRangeRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressCreateParams.WorkDoneProgressCreateParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressCancelParams.WorkDoneProgressCancelParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyPrepareParams.CallHierarchyPrepareParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyItem.CallHierarchyItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyRegistrationOptions.CallHierarchyRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCallsParams.CallHierarchyIncomingCallsParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCall.CallHierarchyIncomingCall
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCallsParams.CallHierarchyOutgoingCallsParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCall.CallHierarchyOutgoingCall
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensParams.SemanticTokensParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokens.SemanticTokens
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensPartialResult.SemanticTokensPartialResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensRegistrationOptions.SemanticTokensRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaParams.SemanticTokensDeltaParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensDelta.SemanticTokensDelta
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaPartialResult.SemanticTokensDeltaPartialResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensRangeParams.SemanticTokensRangeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowDocumentParams.ShowDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowDocumentResult.ShowDocumentResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeParams.LinkedEditingRangeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LinkedEditingRanges.LinkedEditingRanges
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeRegistrationOptions.LinkedEditingRangeRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CreateFilesParams.CreateFilesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceEdit.WorkspaceEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions.FileOperationRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameFilesParams.RenameFilesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeleteFilesParams.DeleteFilesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MonikerParams.MonikerParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Moniker.Moniker
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MonikerRegistrationOptions.MonikerRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchyPrepareParams.TypeHierarchyPrepareParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchyItem.TypeHierarchyItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchyRegistrationOptions.TypeHierarchyRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchySupertypesParams.TypeHierarchySupertypesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchySubtypesParams.TypeHierarchySubtypesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueParams.InlineValueParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueRegistrationOptions.InlineValueRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintParams.InlayHintParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHint.InlayHint
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintRegistrationOptions.InlayHintRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticParams.DocumentDiagnosticParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticReportPartialResult.DocumentDiagnosticReportPartialResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticServerCancellationData.DiagnosticServerCancellationData
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticRegistrationOptions.DiagnosticRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticParams.WorkspaceDiagnosticParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReport.WorkspaceDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReportPartialResult.WorkspaceDiagnosticReportPartialResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidOpenNotebookDocumentParams.DidOpenNotebookDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeNotebookDocumentParams.DidChangeNotebookDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidSaveNotebookDocumentParams.DidSaveNotebookDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidCloseNotebookDocumentParams.DidCloseNotebookDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RegistrationParams.RegistrationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.UnregistrationParams.UnregistrationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InitializeParams.InitializeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InitializeResult.InitializeResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InitializeError.InitializeError
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InitializedParams.InitializedParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationParams.DidChangeConfigurationParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationRegistrationOptions.DidChangeConfigurationRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowMessageParams.ShowMessageParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowMessageRequestParams.ShowMessageRequestParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MessageActionItem.MessageActionItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LogMessageParams.LogMessageParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidOpenTextDocumentParams.DidOpenTextDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeTextDocumentParams.DidChangeTextDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentChangeRegistrationOptions.TextDocumentChangeRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidCloseTextDocumentParams.DidCloseTextDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidSaveTextDocumentParams.DidSaveTextDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentSaveRegistrationOptions.TextDocumentSaveRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WillSaveTextDocumentParams.WillSaveTextDocumentParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextEdit.TextEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesParams.DidChangeWatchedFilesParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesRegistrationOptions.DidChangeWatchedFilesRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.PublishDiagnosticsParams.PublishDiagnosticsParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionParams.CompletionParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionItem.CompletionItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionList.CompletionList
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionRegistrationOptions.CompletionRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.HoverParams.HoverParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Hover.Hover
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.HoverRegistrationOptions.HoverRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelpParams.SignatureHelpParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelp.SignatureHelp
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelpRegistrationOptions.SignatureHelpRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DefinitionParams.DefinitionParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DefinitionRegistrationOptions.DefinitionRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ReferenceParams.ReferenceParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ReferenceRegistrationOptions.ReferenceRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentHighlightParams.DocumentHighlightParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentHighlight.DocumentHighlight
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentHighlightRegistrationOptions.DocumentHighlightRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentSymbolParams.DocumentSymbolParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SymbolInformation.SymbolInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentSymbol.DocumentSymbol
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentSymbolRegistrationOptions.DocumentSymbolRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeActionParams.CodeActionParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Command.Command
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeAction.CodeAction
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeActionRegistrationOptions.CodeActionRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolParams.WorkspaceSymbolParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceSymbol.WorkspaceSymbol
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolRegistrationOptions.WorkspaceSymbolRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLensParams.CodeLensParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLens.CodeLens
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLensRegistrationOptions.CodeLensRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentLinkParams.DocumentLinkParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentLink.DocumentLink
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentLinkRegistrationOptions.DocumentLinkRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentFormattingParams.DocumentFormattingParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentFormattingRegistrationOptions.DocumentFormattingRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingParams.DocumentRangeFormattingParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingRegistrationOptions.DocumentRangeFormattingRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingParams.DocumentOnTypeFormattingParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingRegistrationOptions.DocumentOnTypeFormattingRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameParams.RenameParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameRegistrationOptions.RenameRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.PrepareRenameParams.PrepareRenameParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ExecuteCommandParams.ExecuteCommandParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ExecuteCommandRegistrationOptions.ExecuteCommandRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditParams.ApplyWorkspaceEditParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditResult.ApplyWorkspaceEditResult
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressBegin.WorkDoneProgressBegin
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressReport.WorkDoneProgressReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressEnd.WorkDoneProgressEnd
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SetTraceParams.SetTraceParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LogTraceParams.LogTraceParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CancelParams.CancelParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ProgressParams.ProgressParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentPositionParams.TextDocumentPositionParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkDoneProgressParams.WorkDoneProgressParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.PartialResultParams.PartialResultParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LocationLink.LocationLink
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Range.Range
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ImplementationOptions.ImplementationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.StaticRegistrationOptions.StaticRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeDefinitionOptions.TypeDefinitionOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersChangeEvent.WorkspaceFoldersChangeEvent
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ConfigurationItem.ConfigurationItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier.TextDocumentIdentifier
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Color.Color
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentColorOptions.DocumentColorOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FoldingRangeOptions.FoldingRangeOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeclarationOptions.DeclarationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Position.Position
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SelectionRangeOptions.SelectionRangeOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyOptions.CallHierarchyOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensOptions.SemanticTokensOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensEdit.SemanticTokensEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeOptions.LinkedEditingRangeOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileCreate.FileCreate
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentEdit.TextDocumentEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CreateFile.CreateFile
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameFile.RenameFile
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeleteFile.DeleteFile
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ChangeAnnotation.ChangeAnnotation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationFilter.FileOperationFilter
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileRename.FileRename
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileDelete.FileDelete
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MonikerOptions.MonikerOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchyOptions.TypeHierarchyOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueContext.InlineValueContext
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueText.InlineValueText
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueVariableLookup.InlineValueVariableLookup
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueEvaluatableExpression.InlineValueEvaluatableExpression
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueOptions.InlineValueOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintLabelPart.InlayHintLabelPart
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MarkupContent.MarkupContent
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintOptions.InlayHintOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RelatedFullDocumentDiagnosticReport.RelatedFullDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RelatedUnchangedDocumentDiagnosticReport.RelatedUnchangedDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FullDocumentDiagnosticReport.FullDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.UnchangedDocumentDiagnosticReport.UnchangedDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticOptions.DiagnosticOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.PreviousResultId.PreviousResultId
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocument.NotebookDocument
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentItem.TextDocumentItem
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.VersionedNotebookDocumentIdentifier.VersionedNotebookDocumentIdentifier
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentChangeEvent.NotebookDocumentChangeEvent
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentIdentifier.NotebookDocumentIdentifier
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Registration.Registration
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Unregistration.Unregistration
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.UInitializeParams.UInitializeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersInitializeParams.WorkspaceFoldersInitializeParams
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ServerCapabilities.ServerCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier.VersionedTextDocumentIdentifier
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SaveOptions.SaveOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileEvent.FileEvent
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileSystemWatcher.FileSystemWatcher
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.Diagnostic.Diagnostic
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionContext.CompletionContext
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionItemLabelDetails.CompletionItemLabelDetails
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InsertReplaceEdit.InsertReplaceEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionOptions.CompletionOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.HoverOptions.HoverOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelpContext.SignatureHelpContext
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureInformation.SignatureInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelpOptions.SignatureHelpOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DefinitionOptions.DefinitionOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ReferenceContext.ReferenceContext
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ReferenceOptions.ReferenceOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentHighlightOptions.DocumentHighlightOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.BaseSymbolInformation.BaseSymbolInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentSymbolOptions.DocumentSymbolOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeActionContext.CodeActionContext
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeActionOptions.CodeActionOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolOptions.WorkspaceSymbolOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLensOptions.CodeLensOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentLinkOptions.DocumentLinkOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FormattingOptions.FormattingOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentFormattingOptions.DocumentFormattingOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingOptions.DocumentRangeFormattingOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingOptions.DocumentOnTypeFormattingOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameOptions.RenameOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions.ExecuteCommandOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensLegend.SemanticTokensLegend
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.OptionalVersionedTextDocumentIdentifier.OptionalVersionedTextDocumentIdentifier
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.AnnotatedTextEdit.AnnotatedTextEdit
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ResourceOperation.ResourceOperation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CreateFileOptions.CreateFileOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameFileOptions.RenameFileOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeleteFileOptions.DeleteFileOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationPattern.FileOperationPattern
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceFullDocumentDiagnosticReport.WorkspaceFullDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceUnchangedDocumentDiagnosticReport.WorkspaceUnchangedDocumentDiagnosticReport
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookCell.NotebookCell
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange.NotebookCellArrayChange
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ClientCapabilities.ClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentSyncOptions.TextDocumentSyncOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncOptions.NotebookDocumentSyncOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions.NotebookDocumentSyncRegistrationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities.WorkspaceFoldersServerCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationOptions.FileOperationOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeDescription.CodeDescription
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticRelatedInformation.DiagnosticRelatedInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ParameterInformation.ParameterInformation
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookCellTextDocumentFilter.NotebookCellTextDocumentFilter
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationPatternOptions.FileOperationPatternOptions
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ExecutionSummary.ExecutionSummary
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceClientCapabilities.WorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentClientCapabilities.TextDocumentClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentClientCapabilities.NotebookDocumentClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WindowClientCapabilities.WindowClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.GeneralClientCapabilities.GeneralClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RelativePattern.RelativePattern
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceEditClientCapabilities.WorkspaceEditClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationClientCapabilities.DidChangeConfigurationClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesClientCapabilities.DidChangeWatchedFilesClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolClientCapabilities.WorkspaceSymbolClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ExecuteCommandClientCapabilities.ExecuteCommandClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensWorkspaceClientCapabilities.SemanticTokensWorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLensWorkspaceClientCapabilities.CodeLensWorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FileOperationClientCapabilities.FileOperationClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueWorkspaceClientCapabilities.InlineValueWorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintWorkspaceClientCapabilities.InlayHintWorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticWorkspaceClientCapabilities.DiagnosticWorkspaceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TextDocumentSyncClientCapabilities.TextDocumentSyncClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CompletionClientCapabilities.CompletionClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.HoverClientCapabilities.HoverClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SignatureHelpClientCapabilities.SignatureHelpClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DeclarationClientCapabilities.DeclarationClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DefinitionClientCapabilities.DefinitionClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeDefinitionClientCapabilities.TypeDefinitionClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ImplementationClientCapabilities.ImplementationClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ReferenceClientCapabilities.ReferenceClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentHighlightClientCapabilities.DocumentHighlightClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentSymbolClientCapabilities.DocumentSymbolClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeActionClientCapabilities.CodeActionClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CodeLensClientCapabilities.CodeLensClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentLinkClientCapabilities.DocumentLinkClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentColorClientCapabilities.DocumentColorClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentFormattingClientCapabilities.DocumentFormattingClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingClientCapabilities.DocumentRangeFormattingClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingClientCapabilities.DocumentOnTypeFormattingClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RenameClientCapabilities.RenameClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.FoldingRangeClientCapabilities.FoldingRangeClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SelectionRangeClientCapabilities.SelectionRangeClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.PublishDiagnosticsClientCapabilities.PublishDiagnosticsClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.CallHierarchyClientCapabilities.CallHierarchyClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.SemanticTokensClientCapabilities.SemanticTokensClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeClientCapabilities.LinkedEditingRangeClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MonikerClientCapabilities.MonikerClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.TypeHierarchyClientCapabilities.TypeHierarchyClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlineValueClientCapabilities.InlineValueClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.InlayHintClientCapabilities.InlayHintClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.DiagnosticClientCapabilities.DiagnosticClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncClientCapabilities.NotebookDocumentSyncClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowMessageRequestClientCapabilities.ShowMessageRequestClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.ShowDocumentClientCapabilities.ShowDocumentClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.RegularExpressionsClientCapabilities.RegularExpressionsClientCapabilities
-Control.Lens.TH.makeFieldsNoPrefix ''Language.LSP.Protocol.Internal.Types.MarkdownClientCapabilities.MarkdownClientCapabilities
diff --git a/generated/Language/LSP/Protocol/Internal/Meta.hs b/generated/Language/LSP/Protocol/Internal/Meta.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Meta.hs
@@ -0,0 +1,433 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+{-# LANGUAGE TemplateHaskell #-}
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Meta where
+
+import qualified Language.Haskell.TH as TH
+import qualified Language.LSP.Protocol.Internal.Types
+
+structNames :: [TH.Name]
+structNames = [''Language.LSP.Protocol.Internal.Types.ImplementationParams
+  ,''Language.LSP.Protocol.Internal.Types.Location
+  ,''Language.LSP.Protocol.Internal.Types.ImplementationRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.TypeDefinitionParams
+  ,''Language.LSP.Protocol.Internal.Types.TypeDefinitionRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceFolder
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeWorkspaceFoldersParams
+  ,''Language.LSP.Protocol.Internal.Types.ConfigurationParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentColorParams
+  ,''Language.LSP.Protocol.Internal.Types.ColorInformation
+  ,''Language.LSP.Protocol.Internal.Types.DocumentColorRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ColorPresentationParams
+  ,''Language.LSP.Protocol.Internal.Types.ColorPresentation
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressOptions
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRangeParams
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRange
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRangeRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DeclarationParams
+  ,''Language.LSP.Protocol.Internal.Types.DeclarationRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.SelectionRangeParams
+  ,''Language.LSP.Protocol.Internal.Types.SelectionRange
+  ,''Language.LSP.Protocol.Internal.Types.SelectionRangeRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressCreateParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressCancelParams
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyPrepareParams
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyItem
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCallsParams
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyIncomingCall
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCallsParams
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyOutgoingCall
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensParams
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokens
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensPartialResult
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaParams
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensDelta
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaPartialResult
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensRangeParams
+  ,''Language.LSP.Protocol.Internal.Types.ShowDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.ShowDocumentResult
+  ,''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeParams
+  ,''Language.LSP.Protocol.Internal.Types.LinkedEditingRanges
+  ,''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.CreateFilesParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceEdit
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.RenameFilesParams
+  ,''Language.LSP.Protocol.Internal.Types.DeleteFilesParams
+  ,''Language.LSP.Protocol.Internal.Types.MonikerParams
+  ,''Language.LSP.Protocol.Internal.Types.Moniker
+  ,''Language.LSP.Protocol.Internal.Types.MonikerRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchyPrepareParams
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchyItem
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchyRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchySupertypesParams
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchySubtypesParams
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueParams
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintParams
+  ,''Language.LSP.Protocol.Internal.Types.InlayHint
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticReportPartialResult
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticServerCancellationData
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceDiagnosticReportPartialResult
+  ,''Language.LSP.Protocol.Internal.Types.DidOpenNotebookDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeNotebookDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.DidSaveNotebookDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.DidCloseNotebookDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.RegistrationParams
+  ,''Language.LSP.Protocol.Internal.Types.UnregistrationParams
+  ,''Language.LSP.Protocol.Internal.Types.InitializeParams
+  ,''Language.LSP.Protocol.Internal.Types.InitializeResult
+  ,''Language.LSP.Protocol.Internal.Types.InitializeError
+  ,''Language.LSP.Protocol.Internal.Types.InitializedParams
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationParams
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ShowMessageParams
+  ,''Language.LSP.Protocol.Internal.Types.ShowMessageRequestParams
+  ,''Language.LSP.Protocol.Internal.Types.MessageActionItem
+  ,''Language.LSP.Protocol.Internal.Types.LogMessageParams
+  ,''Language.LSP.Protocol.Internal.Types.DidOpenTextDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeTextDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentChangeRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DidCloseTextDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.DidSaveTextDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentSaveRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.WillSaveTextDocumentParams
+  ,''Language.LSP.Protocol.Internal.Types.TextEdit
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesParams
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.PublishDiagnosticsParams
+  ,''Language.LSP.Protocol.Internal.Types.CompletionParams
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItem
+  ,''Language.LSP.Protocol.Internal.Types.CompletionList
+  ,''Language.LSP.Protocol.Internal.Types.CompletionRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.HoverParams
+  ,''Language.LSP.Protocol.Internal.Types.Hover
+  ,''Language.LSP.Protocol.Internal.Types.HoverRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpParams
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelp
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DefinitionParams
+  ,''Language.LSP.Protocol.Internal.Types.DefinitionRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ReferenceParams
+  ,''Language.LSP.Protocol.Internal.Types.ReferenceRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlightParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlight
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlightRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSymbolParams
+  ,''Language.LSP.Protocol.Internal.Types.SymbolInformation
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSymbol
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSymbolRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionParams
+  ,''Language.LSP.Protocol.Internal.Types.Command
+  ,''Language.LSP.Protocol.Internal.Types.CodeAction
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceSymbol
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.CodeLensParams
+  ,''Language.LSP.Protocol.Internal.Types.CodeLens
+  ,''Language.LSP.Protocol.Internal.Types.CodeLensRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentLinkParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentLink
+  ,''Language.LSP.Protocol.Internal.Types.DocumentLinkRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentFormattingParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentFormattingRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingParams
+  ,''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.RenameParams
+  ,''Language.LSP.Protocol.Internal.Types.RenameRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.PrepareRenameParams
+  ,''Language.LSP.Protocol.Internal.Types.ExecuteCommandParams
+  ,''Language.LSP.Protocol.Internal.Types.ExecuteCommandRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditParams
+  ,''Language.LSP.Protocol.Internal.Types.ApplyWorkspaceEditResult
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressBegin
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressReport
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressEnd
+  ,''Language.LSP.Protocol.Internal.Types.SetTraceParams
+  ,''Language.LSP.Protocol.Internal.Types.LogTraceParams
+  ,''Language.LSP.Protocol.Internal.Types.CancelParams
+  ,''Language.LSP.Protocol.Internal.Types.ProgressParams
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentPositionParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkDoneProgressParams
+  ,''Language.LSP.Protocol.Internal.Types.PartialResultParams
+  ,''Language.LSP.Protocol.Internal.Types.LocationLink
+  ,''Language.LSP.Protocol.Internal.Types.Range
+  ,''Language.LSP.Protocol.Internal.Types.ImplementationOptions
+  ,''Language.LSP.Protocol.Internal.Types.StaticRegistrationOptions
+  ,''Language.LSP.Protocol.Internal.Types.TypeDefinitionOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersChangeEvent
+  ,''Language.LSP.Protocol.Internal.Types.ConfigurationItem
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.Color
+  ,''Language.LSP.Protocol.Internal.Types.DocumentColorOptions
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRangeOptions
+  ,''Language.LSP.Protocol.Internal.Types.DeclarationOptions
+  ,''Language.LSP.Protocol.Internal.Types.Position
+  ,''Language.LSP.Protocol.Internal.Types.SelectionRangeOptions
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyOptions
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensOptions
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensEdit
+  ,''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeOptions
+  ,''Language.LSP.Protocol.Internal.Types.FileCreate
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentEdit
+  ,''Language.LSP.Protocol.Internal.Types.CreateFile
+  ,''Language.LSP.Protocol.Internal.Types.RenameFile
+  ,''Language.LSP.Protocol.Internal.Types.DeleteFile
+  ,''Language.LSP.Protocol.Internal.Types.ChangeAnnotation
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationFilter
+  ,''Language.LSP.Protocol.Internal.Types.FileRename
+  ,''Language.LSP.Protocol.Internal.Types.FileDelete
+  ,''Language.LSP.Protocol.Internal.Types.MonikerOptions
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchyOptions
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueContext
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueText
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueVariableLookup
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueEvaluatableExpression
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueOptions
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintLabelPart
+  ,''Language.LSP.Protocol.Internal.Types.MarkupContent
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintOptions
+  ,''Language.LSP.Protocol.Internal.Types.RelatedFullDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.RelatedUnchangedDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.FullDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.UnchangedDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticOptions
+  ,''Language.LSP.Protocol.Internal.Types.PreviousResultId
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocument
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentItem
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncOptions
+  ,''Language.LSP.Protocol.Internal.Types.VersionedNotebookDocumentIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentChangeEvent
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.Registration
+  ,''Language.LSP.Protocol.Internal.Types.Unregistration
+  ,''Language.LSP.Protocol.Internal.Types.UInitializeParams
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersInitializeParams
+  ,''Language.LSP.Protocol.Internal.Types.ServerCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ServerInfo
+  ,''Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.SaveOptions
+  ,''Language.LSP.Protocol.Internal.Types.FileEvent
+  ,''Language.LSP.Protocol.Internal.Types.FileSystemWatcher
+  ,''Language.LSP.Protocol.Internal.Types.Diagnostic
+  ,''Language.LSP.Protocol.Internal.Types.CompletionContext
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItemLabelDetails
+  ,''Language.LSP.Protocol.Internal.Types.InsertReplaceEdit
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItemDefaults
+  ,''Language.LSP.Protocol.Internal.Types.CompletionOptions
+  ,''Language.LSP.Protocol.Internal.Types.HoverOptions
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpContext
+  ,''Language.LSP.Protocol.Internal.Types.SignatureInformation
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpOptions
+  ,''Language.LSP.Protocol.Internal.Types.DefinitionOptions
+  ,''Language.LSP.Protocol.Internal.Types.ReferenceContext
+  ,''Language.LSP.Protocol.Internal.Types.ReferenceOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlightOptions
+  ,''Language.LSP.Protocol.Internal.Types.BaseSymbolInformation
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSymbolOptions
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionContext
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionDisabled
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionOptions
+  ,''Language.LSP.Protocol.Internal.Types.LocationUriOnly
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolOptions
+  ,''Language.LSP.Protocol.Internal.Types.CodeLensOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentLinkOptions
+  ,''Language.LSP.Protocol.Internal.Types.FormattingOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentFormattingOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingOptions
+  ,''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingOptions
+  ,''Language.LSP.Protocol.Internal.Types.RenameOptions
+  ,''Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder
+  ,''Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior
+  ,''Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta
+  ,''Language.LSP.Protocol.Internal.Types.OptionalVersionedTextDocumentIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.AnnotatedTextEdit
+  ,''Language.LSP.Protocol.Internal.Types.ResourceOperation
+  ,''Language.LSP.Protocol.Internal.Types.CreateFileOptions
+  ,''Language.LSP.Protocol.Internal.Types.RenameFileOptions
+  ,''Language.LSP.Protocol.Internal.Types.DeleteFileOptions
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationPattern
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceFullDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceUnchangedDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.NotebookCell
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges
+  ,''Language.LSP.Protocol.Internal.Types.ClientInfo
+  ,''Language.LSP.Protocol.Internal.Types.ClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentSyncOptions
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceOptions
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument
+  ,''Language.LSP.Protocol.Internal.Types.CodeDescription
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticRelatedInformation
+  ,''Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace
+  ,''Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions
+  ,''Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage
+  ,''Language.LSP.Protocol.Internal.Types.ParameterInformation
+  ,''Language.LSP.Protocol.Internal.Types.NotebookCellTextDocumentFilter
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationPatternOptions
+  ,''Language.LSP.Protocol.Internal.Types.ExecutionSummary
+  ,''Language.LSP.Protocol.Internal.Types.NotebookCellLanguage
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.WindowClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.GeneralClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationOptions
+  ,''Language.LSP.Protocol.Internal.Types.RelativePattern
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern
+  ,''Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceEditClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeConfigurationClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DidChangeWatchedFilesClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceSymbolClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ExecuteCommandClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensWorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.CodeLensWorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueWorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintWorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticWorkspaceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentSyncClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.CompletionClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.HoverClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DeclarationClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DefinitionClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.TypeDefinitionClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ImplementationClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ReferenceClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlightClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSymbolClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.CodeLensClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentLinkClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentColorClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentFormattingClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DocumentOnTypeFormattingClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.RenameClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRangeClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.SelectionRangeClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.PublishDiagnosticsClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.CallHierarchyClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokensClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.LinkedEditingRangeClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.MonikerClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.TypeHierarchyClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.InlineValueClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ShowMessageRequestClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ShowDocumentClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions
+  ,''Language.LSP.Protocol.Internal.Types.RegularExpressionsClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.MarkdownClientCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind
+  ,''Language.LSP.Protocol.Internal.Types.CompletionListCapabilities
+  ,''Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions
+  ,''Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta]
+aliasNames :: [TH.Name]
+aliasNames = [''Language.LSP.Protocol.Internal.Types.Definition
+  ,''Language.LSP.Protocol.Internal.Types.DefinitionLink
+  ,''Language.LSP.Protocol.Internal.Types.Declaration
+  ,''Language.LSP.Protocol.Internal.Types.DeclarationLink
+  ,''Language.LSP.Protocol.Internal.Types.InlineValue
+  ,''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.PrepareRenameResult
+  ,''Language.LSP.Protocol.Internal.Types.DocumentSelector
+  ,''Language.LSP.Protocol.Internal.Types.ProgressToken
+  ,''Language.LSP.Protocol.Internal.Types.ChangeAnnotationIdentifier
+  ,''Language.LSP.Protocol.Internal.Types.WorkspaceDocumentDiagnosticReport
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent
+  ,''Language.LSP.Protocol.Internal.Types.MarkedString
+  ,''Language.LSP.Protocol.Internal.Types.DocumentFilter
+  ,''Language.LSP.Protocol.Internal.Types.GlobPattern
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentFilter
+  ,''Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter
+  ,''Language.LSP.Protocol.Internal.Types.Pattern
+  ,''Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind]
+enumNames :: [TH.Name]
+enumNames = [''Language.LSP.Protocol.Internal.Types.SemanticTokenTypes
+  ,''Language.LSP.Protocol.Internal.Types.SemanticTokenModifiers
+  ,''Language.LSP.Protocol.Internal.Types.DocumentDiagnosticReportKind
+  ,''Language.LSP.Protocol.Internal.Types.ErrorCodes
+  ,''Language.LSP.Protocol.Internal.Types.LSPErrorCodes
+  ,''Language.LSP.Protocol.Internal.Types.FoldingRangeKind
+  ,''Language.LSP.Protocol.Internal.Types.SymbolKind
+  ,''Language.LSP.Protocol.Internal.Types.SymbolTag
+  ,''Language.LSP.Protocol.Internal.Types.UniquenessLevel
+  ,''Language.LSP.Protocol.Internal.Types.MonikerKind
+  ,''Language.LSP.Protocol.Internal.Types.InlayHintKind
+  ,''Language.LSP.Protocol.Internal.Types.MessageType
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentSyncKind
+  ,''Language.LSP.Protocol.Internal.Types.TextDocumentSaveReason
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItemKind
+  ,''Language.LSP.Protocol.Internal.Types.CompletionItemTag
+  ,''Language.LSP.Protocol.Internal.Types.InsertTextFormat
+  ,''Language.LSP.Protocol.Internal.Types.InsertTextMode
+  ,''Language.LSP.Protocol.Internal.Types.DocumentHighlightKind
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionKind
+  ,''Language.LSP.Protocol.Internal.Types.TraceValue
+  ,''Language.LSP.Protocol.Internal.Types.MarkupKind
+  ,''Language.LSP.Protocol.Internal.Types.LanguageKind
+  ,''Language.LSP.Protocol.Internal.Types.PositionEncodingKind
+  ,''Language.LSP.Protocol.Internal.Types.FileChangeType
+  ,''Language.LSP.Protocol.Internal.Types.WatchKind
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticSeverity
+  ,''Language.LSP.Protocol.Internal.Types.DiagnosticTag
+  ,''Language.LSP.Protocol.Internal.Types.CompletionTriggerKind
+  ,''Language.LSP.Protocol.Internal.Types.SignatureHelpTriggerKind
+  ,''Language.LSP.Protocol.Internal.Types.CodeActionTriggerKind
+  ,''Language.LSP.Protocol.Internal.Types.FileOperationPatternKind
+  ,''Language.LSP.Protocol.Internal.Types.NotebookCellKind
+  ,''Language.LSP.Protocol.Internal.Types.ResourceOperationKind
+  ,''Language.LSP.Protocol.Internal.Types.FailureHandlingKind
+  ,''Language.LSP.Protocol.Internal.Types.PrepareSupportDefaultBehavior
+  ,''Language.LSP.Protocol.Internal.Types.TokenFormat]
diff --git a/generated/Language/LSP/Protocol/Internal/Method.hs b/generated/Language/LSP/Protocol/Internal/Method.hs
--- a/generated/Language/LSP/Protocol/Internal/Method.hs
+++ b/generated/Language/LSP/Protocol/Internal/Method.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -113,6 +115,7 @@
 import qualified Language.LSP.Protocol.Internal.Types.Moniker
 import qualified Language.LSP.Protocol.Internal.Types.MonikerParams
 import qualified Language.LSP.Protocol.Internal.Types.MonikerRegistrationOptions
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions
 import qualified Language.LSP.Protocol.Internal.Types.PrepareRenameParams
 import qualified Language.LSP.Protocol.Internal.Types.PrepareRenameResult
 import qualified Language.LSP.Protocol.Internal.Types.ProgressParams
@@ -566,10 +569,10 @@
   RegistrationOptions Method_WorkspaceDidCreateFiles = Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions.FileOperationRegistrationOptions
   RegistrationOptions Method_WorkspaceDidRenameFiles = Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions.FileOperationRegistrationOptions
   RegistrationOptions Method_WorkspaceDidDeleteFiles = Language.LSP.Protocol.Internal.Types.FileOperationRegistrationOptions.FileOperationRegistrationOptions
-  RegistrationOptions Method_NotebookDocumentDidOpen = Maybe Data.Void.Void
-  RegistrationOptions Method_NotebookDocumentDidChange = Maybe Data.Void.Void
-  RegistrationOptions Method_NotebookDocumentDidSave = Maybe Data.Void.Void
-  RegistrationOptions Method_NotebookDocumentDidClose = Maybe Data.Void.Void
+  RegistrationOptions Method_NotebookDocumentDidOpen = Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions.NotebookDocumentSyncRegistrationOptions
+  RegistrationOptions Method_NotebookDocumentDidChange = Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions.NotebookDocumentSyncRegistrationOptions
+  RegistrationOptions Method_NotebookDocumentDidSave = Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions.NotebookDocumentSyncRegistrationOptions
+  RegistrationOptions Method_NotebookDocumentDidClose = Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncRegistrationOptions.NotebookDocumentSyncRegistrationOptions
   RegistrationOptions Method_Initialized = Maybe Data.Void.Void
   RegistrationOptions Method_Exit = Maybe Data.Void.Void
   RegistrationOptions Method_WorkspaceDidChangeConfiguration = Language.LSP.Protocol.Internal.Types.DidChangeConfigurationRegistrationOptions.DidChangeConfigurationRegistrationOptions
diff --git a/generated/Language/LSP/Protocol/Internal/Types.hs b/generated/Language/LSP/Protocol/Internal/Types.hs
--- a/generated/Language/LSP/Protocol/Internal/Types.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -21,10 +23,32 @@
 import Language.LSP.Protocol.Internal.Types.CancelParams as Export
 import Language.LSP.Protocol.Internal.Types.ChangeAnnotation as Export
 import Language.LSP.Protocol.Internal.Types.ChangeAnnotationIdentifier as Export
+import Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions as Export
 import Language.LSP.Protocol.Internal.Types.ClientCapabilities as Export
+import Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind as Export
+import Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientInfo as Export
+import Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta as Export
+import Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions as Export
+import Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions as Export
 import Language.LSP.Protocol.Internal.Types.CodeAction as Export
 import Language.LSP.Protocol.Internal.Types.CodeActionClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.CodeActionContext as Export
+import Language.LSP.Protocol.Internal.Types.CodeActionDisabled as Export
 import Language.LSP.Protocol.Internal.Types.CodeActionKind as Export
 import Language.LSP.Protocol.Internal.Types.CodeActionOptions as Export
 import Language.LSP.Protocol.Internal.Types.CodeActionParams as Export
@@ -45,10 +69,13 @@
 import Language.LSP.Protocol.Internal.Types.CompletionClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.CompletionContext as Export
 import Language.LSP.Protocol.Internal.Types.CompletionItem as Export
+import Language.LSP.Protocol.Internal.Types.CompletionItemDefaults as Export
 import Language.LSP.Protocol.Internal.Types.CompletionItemKind as Export
 import Language.LSP.Protocol.Internal.Types.CompletionItemLabelDetails as Export
 import Language.LSP.Protocol.Internal.Types.CompletionItemTag as Export
+import Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions as Export
 import Language.LSP.Protocol.Internal.Types.CompletionList as Export
+import Language.LSP.Protocol.Internal.Types.CompletionListCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.CompletionOptions as Export
 import Language.LSP.Protocol.Internal.Types.CompletionParams as Export
 import Language.LSP.Protocol.Internal.Types.CompletionRegistrationOptions as Export
@@ -135,6 +162,7 @@
 import Language.LSP.Protocol.Internal.Types.DocumentSymbolOptions as Export
 import Language.LSP.Protocol.Internal.Types.DocumentSymbolParams as Export
 import Language.LSP.Protocol.Internal.Types.DocumentSymbolRegistrationOptions as Export
+import Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace as Export
 import Language.LSP.Protocol.Internal.Types.ErrorCodes as Export
 import Language.LSP.Protocol.Internal.Types.ExecuteCommandClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions as Export
@@ -200,6 +228,7 @@
 import Language.LSP.Protocol.Internal.Types.InsertTextFormat as Export
 import Language.LSP.Protocol.Internal.Types.InsertTextMode as Export
 import Language.LSP.Protocol.Internal.Types.LSPErrorCodes as Export
+import Language.LSP.Protocol.Internal.Types.LanguageKind as Export
 import Language.LSP.Protocol.Internal.Types.LinkedEditingRangeClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.LinkedEditingRangeOptions as Export
 import Language.LSP.Protocol.Internal.Types.LinkedEditingRangeParams as Export
@@ -207,10 +236,12 @@
 import Language.LSP.Protocol.Internal.Types.LinkedEditingRanges as Export
 import Language.LSP.Protocol.Internal.Types.Location as Export
 import Language.LSP.Protocol.Internal.Types.LocationLink as Export
+import Language.LSP.Protocol.Internal.Types.LocationUriOnly as Export
 import Language.LSP.Protocol.Internal.Types.LogMessageParams as Export
 import Language.LSP.Protocol.Internal.Types.LogTraceParams as Export
 import Language.LSP.Protocol.Internal.Types.MarkdownClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.MarkedString as Export
+import Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage as Export
 import Language.LSP.Protocol.Internal.Types.MarkupContent as Export
 import Language.LSP.Protocol.Internal.Types.MarkupKind as Export
 import Language.LSP.Protocol.Internal.Types.MessageActionItem as Export
@@ -224,11 +255,20 @@
 import Language.LSP.Protocol.Internal.Types.NotebookCell as Export
 import Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange as Export
 import Language.LSP.Protocol.Internal.Types.NotebookCellKind as Export
+import Language.LSP.Protocol.Internal.Types.NotebookCellLanguage as Export
 import Language.LSP.Protocol.Internal.Types.NotebookCellTextDocumentFilter as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocument as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentChangeEvent as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells as Export
+import Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentIdentifier as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.NotebookDocumentSyncOptions as Export
@@ -239,7 +279,9 @@
 import Language.LSP.Protocol.Internal.Types.Pattern as Export
 import Language.LSP.Protocol.Internal.Types.Position as Export
 import Language.LSP.Protocol.Internal.Types.PositionEncodingKind as Export
+import Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior as Export
 import Language.LSP.Protocol.Internal.Types.PrepareRenameParams as Export
+import Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder as Export
 import Language.LSP.Protocol.Internal.Types.PrepareRenameResult as Export
 import Language.LSP.Protocol.Internal.Types.PrepareSupportDefaultBehavior as Export
 import Language.LSP.Protocol.Internal.Types.PreviousResultId as Export
@@ -255,6 +297,7 @@
 import Language.LSP.Protocol.Internal.Types.ReferenceRegistrationOptions as Export
 import Language.LSP.Protocol.Internal.Types.Registration as Export
 import Language.LSP.Protocol.Internal.Types.RegistrationParams as Export
+import Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind as Export
 import Language.LSP.Protocol.Internal.Types.RegularExpressionsClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.RelatedFullDocumentDiagnosticReport as Export
 import Language.LSP.Protocol.Internal.Types.RelatedUnchangedDocumentDiagnosticReport as Export
@@ -282,6 +325,7 @@
 import Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaParams as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensDeltaPartialResult as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensEdit as Export
+import Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensLegend as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensOptions as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensParams as Export
@@ -290,6 +334,8 @@
 import Language.LSP.Protocol.Internal.Types.SemanticTokensRegistrationOptions as Export
 import Language.LSP.Protocol.Internal.Types.SemanticTokensWorkspaceClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.ServerCapabilities as Export
+import Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions as Export
+import Language.LSP.Protocol.Internal.Types.ServerInfo as Export
 import Language.LSP.Protocol.Internal.Types.SetTraceParams as Export
 import Language.LSP.Protocol.Internal.Types.ShowDocumentClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.ShowDocumentParams as Export
@@ -305,6 +351,7 @@
 import Language.LSP.Protocol.Internal.Types.SignatureHelpRegistrationOptions as Export
 import Language.LSP.Protocol.Internal.Types.SignatureHelpTriggerKind as Export
 import Language.LSP.Protocol.Internal.Types.SignatureInformation as Export
+import Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions as Export
 import Language.LSP.Protocol.Internal.Types.StaticRegistrationOptions as Export
 import Language.LSP.Protocol.Internal.Types.SymbolInformation as Export
 import Language.LSP.Protocol.Internal.Types.SymbolKind as Export
@@ -312,8 +359,13 @@
 import Language.LSP.Protocol.Internal.Types.TextDocumentChangeRegistrationOptions as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent as Export
+import Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial as Export
+import Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentEdit as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentFilter as Export
+import Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage as Export
+import Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern as Export
+import Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentItem as Export
 import Language.LSP.Protocol.Internal.Types.TextDocumentPositionParams as Export
@@ -325,7 +377,7 @@
 import Language.LSP.Protocol.Internal.Types.TextDocumentSyncOptions as Export
 import Language.LSP.Protocol.Internal.Types.TextEdit as Export
 import Language.LSP.Protocol.Internal.Types.TokenFormat as Export
-import Language.LSP.Protocol.Internal.Types.TraceValues as Export
+import Language.LSP.Protocol.Internal.Types.TraceValue as Export
 import Language.LSP.Protocol.Internal.Types.TypeDefinitionClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.TypeDefinitionOptions as Export
 import Language.LSP.Protocol.Internal.Types.TypeDefinitionParams as Export
@@ -366,6 +418,7 @@
 import Language.LSP.Protocol.Internal.Types.WorkspaceFoldersInitializeParams as Export
 import Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.WorkspaceFullDocumentDiagnosticReport as Export
+import Language.LSP.Protocol.Internal.Types.WorkspaceOptions as Export
 import Language.LSP.Protocol.Internal.Types.WorkspaceSymbol as Export
 import Language.LSP.Protocol.Internal.Types.WorkspaceSymbolClientCapabilities as Export
 import Language.LSP.Protocol.Internal.Types.WorkspaceSymbolOptions as Export
diff --git a/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/AnnotatedTextEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -18,7 +20,7 @@
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
-The parameters passed via a apply workspace edit request.
+The parameters passed via an apply workspace edit request.
 -}
 data ApplyWorkspaceEditParams = ApplyWorkspaceEditParams 
   { {-|
@@ -41,4 +43,4 @@
     ,["edit" Aeson..= arg1]]
 
 instance Aeson.FromJSON ApplyWorkspaceEditParams where
-  parseJSON = Aeson.withObject "ApplyWorkspaceEditParams" $ \arg -> ApplyWorkspaceEditParams <$> arg Aeson..:! "label" <*> arg Aeson..: "edit"
+  parseJSON = Aeson.withObject "ApplyWorkspaceEditParams" $ \arg -> ApplyWorkspaceEditParams <$> arg Language.LSP.Protocol.Types.Common..:!? "label" <*> arg Aeson..: "edit"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs b/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ApplyWorkspaceEditResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,"failedChange" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ApplyWorkspaceEditResult where
-  parseJSON = Aeson.withObject "ApplyWorkspaceEditResult" $ \arg -> ApplyWorkspaceEditResult <$> arg Aeson..: "applied" <*> arg Aeson..:! "failureReason" <*> arg Aeson..:! "failedChange"
+  parseJSON = Aeson.withObject "ApplyWorkspaceEditResult" $ \arg -> ApplyWorkspaceEditResult <$> arg Aeson..: "applied" <*> arg Language.LSP.Protocol.Types.Common..:!? "failureReason" <*> arg Language.LSP.Protocol.Types.Common..:!? "failedChange"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/BaseSymbolInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -55,4 +57,4 @@
     ,"containerName" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON BaseSymbolInformation where
-  parseJSON = Aeson.withObject "BaseSymbolInformation" $ \arg -> BaseSymbolInformation <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "containerName"
+  parseJSON = Aeson.withObject "BaseSymbolInformation" $ \arg -> BaseSymbolInformation <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "containerName"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (CallHierarchyClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON CallHierarchyClientCapabilities where
-  parseJSON = Aeson.withObject "CallHierarchyClientCapabilities" $ \arg -> CallHierarchyClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "CallHierarchyClientCapabilities" $ \arg -> CallHierarchyClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCall.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyIncomingCallsParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,["item" Aeson..= arg2]]
 
 instance Aeson.FromJSON CallHierarchyIncomingCallsParams where
-  parseJSON = Aeson.withObject "CallHierarchyIncomingCallsParams" $ \arg -> CallHierarchyIncomingCallsParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "item"
+  parseJSON = Aeson.withObject "CallHierarchyIncomingCallsParams" $ \arg -> CallHierarchyIncomingCallsParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "item"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -78,4 +80,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg7]
 
 instance Aeson.FromJSON CallHierarchyItem where
-  parseJSON = Aeson.withObject "CallHierarchyItem" $ \arg -> CallHierarchyItem <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "detail" <*> arg Aeson..: "uri" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "CallHierarchyItem" $ \arg -> CallHierarchyItem <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "detail" <*> arg Aeson..: "uri" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (CallHierarchyOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON CallHierarchyOptions where
-  parseJSON = Aeson.withObject "CallHierarchyOptions" $ \arg -> CallHierarchyOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "CallHierarchyOptions" $ \arg -> CallHierarchyOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCall.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyOutgoingCallsParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,["item" Aeson..= arg2]]
 
 instance Aeson.FromJSON CallHierarchyOutgoingCallsParams where
-  parseJSON = Aeson.withObject "CallHierarchyOutgoingCallsParams" $ \arg -> CallHierarchyOutgoingCallsParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "item"
+  parseJSON = Aeson.withObject "CallHierarchyOutgoingCallsParams" $ \arg -> CallHierarchyOutgoingCallsParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "item"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyPrepareParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,"workDoneToken" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CallHierarchyPrepareParams where
-  parseJSON = Aeson.withObject "CallHierarchyPrepareParams" $ \arg -> CallHierarchyPrepareParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "CallHierarchyPrepareParams" $ \arg -> CallHierarchyPrepareParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CallHierarchyRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CallHierarchyRegistrationOptions where
-  parseJSON = Aeson.withObject "CallHierarchyRegistrationOptions" $ \arg -> CallHierarchyRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "CallHierarchyRegistrationOptions" $ \arg -> CallHierarchyRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CancelParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"description" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ChangeAnnotation where
-  parseJSON = Aeson.withObject "ChangeAnnotation" $ \arg -> ChangeAnnotation <$> arg Aeson..: "label" <*> arg Aeson..:! "needsConfirmation" <*> arg Aeson..:! "description"
+  parseJSON = Aeson.withObject "ChangeAnnotation" $ \arg -> ChangeAnnotation <$> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "needsConfirmation" <*> arg Language.LSP.Protocol.Types.Common..:!? "description"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationsSupportOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationsSupportOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ChangeAnnotationsSupportOptions.hs
@@ -0,0 +1,40 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ChangeAnnotationsSupportOptions = ChangeAnnotationsSupportOptions 
+  { {-|
+  Whether the client groups edits with equal labels into tree nodes,
+  for instance all edits labelled with "Changes in Strings" would
+  be a tree node.
+  -}
+  _groupsOnLabel :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ChangeAnnotationsSupportOptions)
+
+instance Aeson.ToJSON ChangeAnnotationsSupportOptions where
+  toJSON (ChangeAnnotationsSupportOptions arg0) = Aeson.object $ concat $  ["groupsOnLabel" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ChangeAnnotationsSupportOptions where
+  parseJSON = Aeson.withObject "ChangeAnnotationsSupportOptions" $ \arg -> ChangeAnnotationsSupportOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "groupsOnLabel"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -67,4 +69,4 @@
     ,"experimental" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON ClientCapabilities where
-  parseJSON = Aeson.withObject "ClientCapabilities" $ \arg -> ClientCapabilities <$> arg Aeson..:! "workspace" <*> arg Aeson..:! "textDocument" <*> arg Aeson..:! "notebookDocument" <*> arg Aeson..:! "window" <*> arg Aeson..:! "general" <*> arg Aeson..:! "experimental"
+  parseJSON = Aeson.withObject "ClientCapabilities" $ \arg -> ClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "workspace" <*> arg Language.LSP.Protocol.Types.Common..:!? "textDocument" <*> arg Language.LSP.Protocol.Types.Common..:!? "notebookDocument" <*> arg Language.LSP.Protocol.Types.Common..:!? "window" <*> arg Language.LSP.Protocol.Types.Common..:!? "general" <*> arg Language.LSP.Protocol.Types.Common..:!? "experimental"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionKindOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionKindOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionKindOptions.hs
@@ -0,0 +1,42 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.CodeActionKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCodeActionKindOptions = ClientCodeActionKindOptions 
+  { {-|
+  The code action kind values the client supports. When this
+  property exists the client also guarantees that it will
+  handle values outside its set gracefully and falls back
+  to a default value when unknown.
+  -}
+  _valueSet :: [Language.LSP.Protocol.Internal.Types.CodeActionKind.CodeActionKind]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCodeActionKindOptions)
+
+instance Aeson.ToJSON ClientCodeActionKindOptions where
+  toJSON (ClientCodeActionKindOptions arg0) = Aeson.object $ concat $  [["valueSet" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientCodeActionKindOptions where
+  parseJSON = Aeson.withObject "ClientCodeActionKindOptions" $ \arg -> ClientCodeActionKindOptions <$> arg Aeson..: "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionLiteralOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionLiteralOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionLiteralOptions.hs
@@ -0,0 +1,40 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCodeActionLiteralOptions = ClientCodeActionLiteralOptions 
+  { {-|
+  The code action kind is support with the following value
+  set.
+  -}
+  _codeActionKind :: Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions.ClientCodeActionKindOptions
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCodeActionLiteralOptions)
+
+instance Aeson.ToJSON ClientCodeActionLiteralOptions where
+  toJSON (ClientCodeActionLiteralOptions arg0) = Aeson.object $ concat $  [["codeActionKind" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientCodeActionLiteralOptions where
+  parseJSON = Aeson.withObject "ClientCodeActionLiteralOptions" $ \arg -> ClientCodeActionLiteralOptions <$> arg Aeson..: "codeActionKind"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionResolveOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionResolveOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCodeActionResolveOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCodeActionResolveOptions = ClientCodeActionResolveOptions 
+  { {-|
+  The properties that a client can resolve lazily.
+  -}
+  _properties :: [Data.Text.Text]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCodeActionResolveOptions)
+
+instance Aeson.ToJSON ClientCodeActionResolveOptions where
+  toJSON (ClientCodeActionResolveOptions arg0) = Aeson.object $ concat $  [["properties" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientCodeActionResolveOptions where
+  parseJSON = Aeson.withObject "ClientCodeActionResolveOptions" $ \arg -> ClientCodeActionResolveOptions <$> arg Aeson..: "properties"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemInsertTextModeOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemInsertTextModeOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemInsertTextModeOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.InsertTextMode
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCompletionItemInsertTextModeOptions = ClientCompletionItemInsertTextModeOptions 
+  { {-|
+
+  -}
+  _valueSet :: [Language.LSP.Protocol.Internal.Types.InsertTextMode.InsertTextMode]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCompletionItemInsertTextModeOptions)
+
+instance Aeson.ToJSON ClientCompletionItemInsertTextModeOptions where
+  toJSON (ClientCompletionItemInsertTextModeOptions arg0) = Aeson.object $ concat $  [["valueSet" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientCompletionItemInsertTextModeOptions where
+  parseJSON = Aeson.withObject "ClientCompletionItemInsertTextModeOptions" $ \arg -> ClientCompletionItemInsertTextModeOptions <$> arg Aeson..: "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptions.hs
@@ -0,0 +1,112 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions
+import qualified Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions
+import qualified Language.LSP.Protocol.Internal.Types.MarkupKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCompletionItemOptions = ClientCompletionItemOptions 
+  { {-|
+  Client supports snippets as insert text.
+
+  A snippet can define tab stops and placeholders with `$1`, `$2`
+  and `${3:foo}`. `$0` defines the final tab stop, it defaults to
+  the end of the snippet. Placeholders with equal identifiers are linked,
+  that is typing in one will update others too.
+  -}
+  _snippetSupport :: (Maybe Bool)
+  , {-|
+  Client supports commit characters on a completion item.
+  -}
+  _commitCharactersSupport :: (Maybe Bool)
+  , {-|
+  Client supports the following content formats for the documentation
+  property. The order describes the preferred format of the client.
+  -}
+  _documentationFormat :: (Maybe [Language.LSP.Protocol.Internal.Types.MarkupKind.MarkupKind])
+  , {-|
+  Client supports the deprecated property on a completion item.
+  -}
+  _deprecatedSupport :: (Maybe Bool)
+  , {-|
+  Client supports the preselect property on a completion item.
+  -}
+  _preselectSupport :: (Maybe Bool)
+  , {-|
+  Client supports the tag property on a completion item. Clients supporting
+  tags have to handle unknown tags gracefully. Clients especially need to
+  preserve unknown tags when sending a completion item back to the server in
+  a resolve call.
+
+  @since 3.15.0
+  -}
+  _tagSupport :: (Maybe Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions.CompletionItemTagOptions)
+  , {-|
+  Client support insert replace edit to control different behavior if a
+  completion item is inserted in the text or should replace text.
+
+  @since 3.16.0
+  -}
+  _insertReplaceSupport :: (Maybe Bool)
+  , {-|
+  Indicates which properties a client can resolve lazily on a completion
+  item. Before version 3.16.0 only the predefined properties `documentation`
+  and `details` could be resolved lazily.
+
+  @since 3.16.0
+  -}
+  _resolveSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions.ClientCompletionItemResolveOptions)
+  , {-|
+  The client supports the `insertTextMode` property on
+  a completion item to override the whitespace handling mode
+  as defined by the client (see `insertTextMode`).
+
+  @since 3.16.0
+  -}
+  _insertTextModeSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions.ClientCompletionItemInsertTextModeOptions)
+  , {-|
+  The client has support for completion item label
+  details (see also `CompletionItemLabelDetails`).
+
+  @since 3.17.0
+  -}
+  _labelDetailsSupport :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCompletionItemOptions)
+
+instance Aeson.ToJSON ClientCompletionItemOptions where
+  toJSON (ClientCompletionItemOptions arg0 arg1 arg2 arg3 arg4 arg5 arg6 arg7 arg8 arg9) = Aeson.object $ concat $  ["snippetSupport" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"commitCharactersSupport" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"documentationFormat" Language.LSP.Protocol.Types.Common..=? arg2
+    ,"deprecatedSupport" Language.LSP.Protocol.Types.Common..=? arg3
+    ,"preselectSupport" Language.LSP.Protocol.Types.Common..=? arg4
+    ,"tagSupport" Language.LSP.Protocol.Types.Common..=? arg5
+    ,"insertReplaceSupport" Language.LSP.Protocol.Types.Common..=? arg6
+    ,"resolveSupport" Language.LSP.Protocol.Types.Common..=? arg7
+    ,"insertTextModeSupport" Language.LSP.Protocol.Types.Common..=? arg8
+    ,"labelDetailsSupport" Language.LSP.Protocol.Types.Common..=? arg9]
+
+instance Aeson.FromJSON ClientCompletionItemOptions where
+  parseJSON = Aeson.withObject "ClientCompletionItemOptions" $ \arg -> ClientCompletionItemOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "snippetSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "commitCharactersSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentationFormat" <*> arg Language.LSP.Protocol.Types.Common..:!? "deprecatedSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "preselectSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "tagSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertReplaceSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextModeSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "labelDetailsSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptionsKind.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptionsKind.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemOptionsKind.hs
@@ -0,0 +1,46 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.CompletionItemKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCompletionItemOptionsKind = ClientCompletionItemOptionsKind 
+  { {-|
+  The completion item kind values the client supports. When this
+  property exists the client also guarantees that it will
+  handle values outside its set gracefully and falls back
+  to a default value when unknown.
+
+  If this property is not present the client only supports
+  the completion items kinds from `Text` to `Reference` as defined in
+  the initial version of the protocol.
+  -}
+  _valueSet :: (Maybe [Language.LSP.Protocol.Internal.Types.CompletionItemKind.CompletionItemKind])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCompletionItemOptionsKind)
+
+instance Aeson.ToJSON ClientCompletionItemOptionsKind where
+  toJSON (ClientCompletionItemOptionsKind arg0) = Aeson.object $ concat $  ["valueSet" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientCompletionItemOptionsKind where
+  parseJSON = Aeson.withObject "ClientCompletionItemOptionsKind" $ \arg -> ClientCompletionItemOptionsKind <$> arg Language.LSP.Protocol.Types.Common..:!? "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemResolveOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemResolveOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientCompletionItemResolveOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientCompletionItemResolveOptions = ClientCompletionItemResolveOptions 
+  { {-|
+  The properties that a client can resolve lazily.
+  -}
+  _properties :: [Data.Text.Text]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientCompletionItemResolveOptions)
+
+instance Aeson.ToJSON ClientCompletionItemResolveOptions where
+  toJSON (ClientCompletionItemResolveOptions arg0) = Aeson.object $ concat $  [["properties" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientCompletionItemResolveOptions where
+  parseJSON = Aeson.withObject "ClientCompletionItemResolveOptions" $ \arg -> ClientCompletionItemResolveOptions <$> arg Aeson..: "properties"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientDiagnosticsTagOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientDiagnosticsTagOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientDiagnosticsTagOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.DiagnosticTag
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientDiagnosticsTagOptions = ClientDiagnosticsTagOptions 
+  { {-|
+  The tags supported by the client.
+  -}
+  _valueSet :: [Language.LSP.Protocol.Internal.Types.DiagnosticTag.DiagnosticTag]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientDiagnosticsTagOptions)
+
+instance Aeson.ToJSON ClientDiagnosticsTagOptions where
+  toJSON (ClientDiagnosticsTagOptions arg0) = Aeson.object $ concat $  [["valueSet" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientDiagnosticsTagOptions where
+  parseJSON = Aeson.withObject "ClientDiagnosticsTagOptions" $ \arg -> ClientDiagnosticsTagOptions <$> arg Aeson..: "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeKindOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeKindOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeKindOptions.hs
@@ -0,0 +1,42 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientFoldingRangeKindOptions = ClientFoldingRangeKindOptions 
+  { {-|
+  The folding range kind values the client supports. When this
+  property exists the client also guarantees that it will
+  handle values outside its set gracefully and falls back
+  to a default value when unknown.
+  -}
+  _valueSet :: (Maybe [Language.LSP.Protocol.Internal.Types.FoldingRangeKind.FoldingRangeKind])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientFoldingRangeKindOptions)
+
+instance Aeson.ToJSON ClientFoldingRangeKindOptions where
+  toJSON (ClientFoldingRangeKindOptions arg0) = Aeson.object $ concat $  ["valueSet" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientFoldingRangeKindOptions where
+  parseJSON = Aeson.withObject "ClientFoldingRangeKindOptions" $ \arg -> ClientFoldingRangeKindOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientFoldingRangeOptions.hs
@@ -0,0 +1,41 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientFoldingRangeOptions = ClientFoldingRangeOptions 
+  { {-|
+  If set, the client signals that it supports setting collapsedText on
+  folding ranges to display custom labels instead of the default text.
+
+  @since 3.17.0
+  -}
+  _collapsedText :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientFoldingRangeOptions)
+
+instance Aeson.ToJSON ClientFoldingRangeOptions where
+  toJSON (ClientFoldingRangeOptions arg0) = Aeson.object $ concat $  ["collapsedText" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientFoldingRangeOptions where
+  parseJSON = Aeson.withObject "ClientFoldingRangeOptions" $ \arg -> ClientFoldingRangeOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "collapsedText"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientInfo.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientInfo.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientInfo.hs
@@ -0,0 +1,47 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientInfo where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Information about the client
+
+@since 3.15.0
+@since 3.18.0 ClientInfo type name added.
+@proposed
+-}
+data ClientInfo = ClientInfo 
+  { {-|
+  The name of the client as defined by the client.
+  -}
+  _name :: Data.Text.Text
+  , {-|
+  The client's version as defined by the client.
+  -}
+  _version :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientInfo)
+
+instance Aeson.ToJSON ClientInfo where
+  toJSON (ClientInfo arg0 arg1) = Aeson.object $ concat $  [["name" Aeson..= arg0]
+    ,"version" Language.LSP.Protocol.Types.Common..=? arg1]
+
+instance Aeson.FromJSON ClientInfo where
+  parseJSON = Aeson.withObject "ClientInfo" $ \arg -> ClientInfo <$> arg Aeson..: "name" <*> arg Language.LSP.Protocol.Types.Common..:!? "version"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientInlayHintResolveOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientInlayHintResolveOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientInlayHintResolveOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientInlayHintResolveOptions = ClientInlayHintResolveOptions 
+  { {-|
+  The properties that a client can resolve lazily.
+  -}
+  _properties :: [Data.Text.Text]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientInlayHintResolveOptions)
+
+instance Aeson.ToJSON ClientInlayHintResolveOptions where
+  toJSON (ClientInlayHintResolveOptions arg0) = Aeson.object $ concat $  [["properties" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientInlayHintResolveOptions where
+  parseJSON = Aeson.withObject "ClientInlayHintResolveOptions" $ \arg -> ClientInlayHintResolveOptions <$> arg Aeson..: "properties"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestFullDelta.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestFullDelta.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestFullDelta.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSemanticTokensRequestFullDelta = ClientSemanticTokensRequestFullDelta 
+  { {-|
+  The client will send the `textDocument/semanticTokens/full/delta` request if
+  the server provides a corresponding handler.
+  -}
+  _delta :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSemanticTokensRequestFullDelta)
+
+instance Aeson.ToJSON ClientSemanticTokensRequestFullDelta where
+  toJSON (ClientSemanticTokensRequestFullDelta arg0) = Aeson.object $ concat $  ["delta" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientSemanticTokensRequestFullDelta where
+  parseJSON = Aeson.withObject "ClientSemanticTokensRequestFullDelta" $ \arg -> ClientSemanticTokensRequestFullDelta <$> arg Language.LSP.Protocol.Types.Common..:!? "delta"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSemanticTokensRequestOptions.hs
@@ -0,0 +1,47 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row as Row
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSemanticTokensRequestOptions = ClientSemanticTokensRequestOptions 
+  { {-|
+  The client will send the `textDocument/semanticTokens/range` request if
+  the server provides a corresponding handler.
+  -}
+  _range :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? (Row.Rec Row.Empty)))
+  , {-|
+  The client will send the `textDocument/semanticTokens/full` request if
+  the server provides a corresponding handler.
+  -}
+  _full :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta.ClientSemanticTokensRequestFullDelta))
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSemanticTokensRequestOptions)
+
+instance Aeson.ToJSON ClientSemanticTokensRequestOptions where
+  toJSON (ClientSemanticTokensRequestOptions arg0 arg1) = Aeson.object $ concat $  ["range" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"full" Language.LSP.Protocol.Types.Common..=? arg1]
+
+instance Aeson.FromJSON ClientSemanticTokensRequestOptions where
+  parseJSON = Aeson.withObject "ClientSemanticTokensRequestOptions" $ \arg -> ClientSemanticTokensRequestOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "full"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientShowMessageActionItemOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientShowMessageActionItemOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientShowMessageActionItemOptions.hs
@@ -0,0 +1,40 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientShowMessageActionItemOptions = ClientShowMessageActionItemOptions 
+  { {-|
+  Whether the client supports additional attributes which
+  are preserved and send back to the server in the
+  request's response.
+  -}
+  _additionalPropertiesSupport :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientShowMessageActionItemOptions)
+
+instance Aeson.ToJSON ClientShowMessageActionItemOptions where
+  toJSON (ClientShowMessageActionItemOptions arg0) = Aeson.object $ concat $  ["additionalPropertiesSupport" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientShowMessageActionItemOptions where
+  parseJSON = Aeson.withObject "ClientShowMessageActionItemOptions" $ \arg -> ClientShowMessageActionItemOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "additionalPropertiesSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureInformationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureInformationOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureInformationOptions.hs
@@ -0,0 +1,54 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions
+import qualified Language.LSP.Protocol.Internal.Types.MarkupKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSignatureInformationOptions = ClientSignatureInformationOptions 
+  { {-|
+  Client supports the following content formats for the documentation
+  property. The order describes the preferred format of the client.
+  -}
+  _documentationFormat :: (Maybe [Language.LSP.Protocol.Internal.Types.MarkupKind.MarkupKind])
+  , {-|
+  Client capabilities specific to parameter information.
+  -}
+  _parameterInformation :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions.ClientSignatureParameterInformationOptions)
+  , {-|
+  The client supports the `activeParameter` property on `SignatureInformation`
+  literal.
+
+  @since 3.16.0
+  -}
+  _activeParameterSupport :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSignatureInformationOptions)
+
+instance Aeson.ToJSON ClientSignatureInformationOptions where
+  toJSON (ClientSignatureInformationOptions arg0 arg1 arg2) = Aeson.object $ concat $  ["documentationFormat" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"parameterInformation" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"activeParameterSupport" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON ClientSignatureInformationOptions where
+  parseJSON = Aeson.withObject "ClientSignatureInformationOptions" $ \arg -> ClientSignatureInformationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "documentationFormat" <*> arg Language.LSP.Protocol.Types.Common..:!? "parameterInformation" <*> arg Language.LSP.Protocol.Types.Common..:!? "activeParameterSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureParameterInformationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureParameterInformationOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSignatureParameterInformationOptions.hs
@@ -0,0 +1,41 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSignatureParameterInformationOptions = ClientSignatureParameterInformationOptions 
+  { {-|
+  The client supports processing label offsets instead of a
+  simple label string.
+
+  @since 3.14.0
+  -}
+  _labelOffsetSupport :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSignatureParameterInformationOptions)
+
+instance Aeson.ToJSON ClientSignatureParameterInformationOptions where
+  toJSON (ClientSignatureParameterInformationOptions arg0) = Aeson.object $ concat $  ["labelOffsetSupport" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientSignatureParameterInformationOptions where
+  parseJSON = Aeson.withObject "ClientSignatureParameterInformationOptions" $ \arg -> ClientSignatureParameterInformationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "labelOffsetSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolKindOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolKindOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolKindOptions.hs
@@ -0,0 +1,46 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.SymbolKind
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSymbolKindOptions = ClientSymbolKindOptions 
+  { {-|
+  The symbol kind values the client supports. When this
+  property exists the client also guarantees that it will
+  handle values outside its set gracefully and falls back
+  to a default value when unknown.
+
+  If this property is not present the client only supports
+  the symbol kinds from `File` to `Array` as defined in
+  the initial version of the protocol.
+  -}
+  _valueSet :: (Maybe [Language.LSP.Protocol.Internal.Types.SymbolKind.SymbolKind])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSymbolKindOptions)
+
+instance Aeson.ToJSON ClientSymbolKindOptions where
+  toJSON (ClientSymbolKindOptions arg0) = Aeson.object $ concat $  ["valueSet" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ClientSymbolKindOptions where
+  parseJSON = Aeson.withObject "ClientSymbolKindOptions" $ \arg -> ClientSymbolKindOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolResolveOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolResolveOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolResolveOptions.hs
@@ -0,0 +1,40 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSymbolResolveOptions = ClientSymbolResolveOptions 
+  { {-|
+  The properties that a client can resolve lazily. Usually
+  `location.range`
+  -}
+  _properties :: [Data.Text.Text]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSymbolResolveOptions)
+
+instance Aeson.ToJSON ClientSymbolResolveOptions where
+  toJSON (ClientSymbolResolveOptions arg0) = Aeson.object $ concat $  [["properties" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientSymbolResolveOptions where
+  parseJSON = Aeson.withObject "ClientSymbolResolveOptions" $ \arg -> ClientSymbolResolveOptions <$> arg Aeson..: "properties"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolTagOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolTagOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ClientSymbolTagOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.SymbolTag
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ClientSymbolTagOptions = ClientSymbolTagOptions 
+  { {-|
+  The tags supported by the client.
+  -}
+  _valueSet :: [Language.LSP.Protocol.Internal.Types.SymbolTag.SymbolTag]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ClientSymbolTagOptions)
+
+instance Aeson.ToJSON ClientSymbolTagOptions where
+  toJSON (ClientSymbolTagOptions arg0) = Aeson.object $ concat $  [["valueSet" Aeson..= arg0]]
+
+instance Aeson.FromJSON ClientSymbolTagOptions where
+  parseJSON = Aeson.withObject "ClientSymbolTagOptions" $ \arg -> ClientSymbolTagOptions <$> arg Aeson..: "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeAction.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,10 +14,10 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.CodeActionDisabled
 import qualified Language.LSP.Protocol.Internal.Types.CodeActionKind
 import qualified Language.LSP.Protocol.Internal.Types.Command
 import qualified Language.LSP.Protocol.Internal.Types.Diagnostic
@@ -70,7 +72,7 @@
 
   @since 3.16.0
   -}
-  _disabled :: (Maybe (Row.Rec ("reason" Row..== Data.Text.Text Row..+ Row.Empty)))
+  _disabled :: (Maybe Language.LSP.Protocol.Internal.Types.CodeActionDisabled.CodeActionDisabled)
   , {-|
   The workspace edit this code action performs.
   -}
@@ -104,4 +106,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg7]
 
 instance Aeson.FromJSON CodeAction where
-  parseJSON = Aeson.withObject "CodeAction" $ \arg -> CodeAction <$> arg Aeson..: "title" <*> arg Aeson..:! "kind" <*> arg Aeson..:! "diagnostics" <*> arg Aeson..:! "isPreferred" <*> arg Aeson..:! "disabled" <*> arg Aeson..:! "edit" <*> arg Aeson..:! "command" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "CodeAction" $ \arg -> CodeAction <$> arg Aeson..: "title" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "diagnostics" <*> arg Language.LSP.Protocol.Types.Common..:!? "isPreferred" <*> arg Language.LSP.Protocol.Types.Common..:!? "disabled" <*> arg Language.LSP.Protocol.Types.Common..:!? "edit" <*> arg Language.LSP.Protocol.Types.Common..:!? "command" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.CodeActionKind
+import qualified Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -33,7 +34,7 @@
 
   @since 3.8.0
   -}
-  _codeActionLiteralSupport :: (Maybe (Row.Rec ("codeActionKind" Row..== (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.CodeActionKind.CodeActionKind] Row..+ Row.Empty)) Row..+ Row.Empty)))
+  _codeActionLiteralSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions.ClientCodeActionLiteralOptions)
   , {-|
   Whether code action supports the `isPreferred` property.
 
@@ -60,7 +61,7 @@
 
   @since 3.16.0
   -}
-  _resolveSupport :: (Maybe (Row.Rec ("properties" Row..== [Data.Text.Text] Row..+ Row.Empty)))
+  _resolveSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions.ClientCodeActionResolveOptions)
   , {-|
   Whether the client honors the change annotations in
   text edits and resource operations returned via the
@@ -86,4 +87,4 @@
     ,"honorsChangeAnnotations" Language.LSP.Protocol.Types.Common..=? arg6]
 
 instance Aeson.FromJSON CodeActionClientCapabilities where
-  parseJSON = Aeson.withObject "CodeActionClientCapabilities" $ \arg -> CodeActionClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "codeActionLiteralSupport" <*> arg Aeson..:! "isPreferredSupport" <*> arg Aeson..:! "disabledSupport" <*> arg Aeson..:! "dataSupport" <*> arg Aeson..:! "resolveSupport" <*> arg Aeson..:! "honorsChangeAnnotations"
+  parseJSON = Aeson.withObject "CodeActionClientCapabilities" $ \arg -> CodeActionClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeActionLiteralSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "isPreferredSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "disabledSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "dataSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "honorsChangeAnnotations"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionContext.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -55,4 +57,4 @@
     ,"triggerKind" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CodeActionContext where
-  parseJSON = Aeson.withObject "CodeActionContext" $ \arg -> CodeActionContext <$> arg Aeson..: "diagnostics" <*> arg Aeson..:! "only" <*> arg Aeson..:! "triggerKind"
+  parseJSON = Aeson.withObject "CodeActionContext" $ \arg -> CodeActionContext <$> arg Aeson..: "diagnostics" <*> arg Language.LSP.Protocol.Types.Common..:!? "only" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerKind"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionDisabled.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionDisabled.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionDisabled.hs
@@ -0,0 +1,43 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.CodeActionDisabled where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Captures why the code action is currently disabled.
+
+@since 3.18.0
+@proposed
+-}
+data CodeActionDisabled = CodeActionDisabled 
+  { {-|
+  Human readable description of why the code action is currently disabled.
+
+  This is displayed in the code actions UI.
+  -}
+  _reason :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON CodeActionDisabled)
+
+instance Aeson.ToJSON CodeActionDisabled where
+  toJSON (CodeActionDisabled arg0) = Aeson.object $ concat $  [["reason" Aeson..= arg0]]
+
+instance Aeson.FromJSON CodeActionDisabled where
+  parseJSON = Aeson.withObject "CodeActionDisabled" $ \arg -> CodeActionDisabled <$> arg Aeson..: "reason"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -89,12 +91,19 @@
   @since 3.15.0
   -}
   CodeActionKind_SourceFixAll
+  | {-|
+  Base kind for all code actions applying to the entire notebook's scope. CodeActionKinds using
+  this should always begin with `notebook.`
+
+  @since 3.18.0
+  -}
+  CodeActionKind_Notebook
   | CodeActionKind_Custom Data.Text.Text
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
   , Aeson.FromJSON
-  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CodeActionKind Data.Text.Text)
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CodeActionKind)
   deriving Pretty via (ViaJSON CodeActionKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum CodeActionKind where
@@ -106,7 +115,8 @@
     ,CodeActionKind_RefactorRewrite
     ,CodeActionKind_Source
     ,CodeActionKind_SourceOrganizeImports
-    ,CodeActionKind_SourceFixAll]
+    ,CodeActionKind_SourceFixAll
+    ,CodeActionKind_Notebook]
   type EnumBaseType CodeActionKind = Data.Text.Text
   toEnumBaseType CodeActionKind_Empty = ""
   toEnumBaseType CodeActionKind_QuickFix = "quickfix"
@@ -117,6 +127,7 @@
   toEnumBaseType CodeActionKind_Source = "source"
   toEnumBaseType CodeActionKind_SourceOrganizeImports = "source.organizeImports"
   toEnumBaseType CodeActionKind_SourceFixAll = "source.fixAll"
+  toEnumBaseType CodeActionKind_Notebook = "notebook"
   toEnumBaseType (CodeActionKind_Custom arg) = arg
 
 instance Language.LSP.Protocol.Types.LspEnum.LspOpenEnum CodeActionKind where
@@ -129,6 +140,7 @@
   fromOpenEnumBaseType "source" = CodeActionKind_Source
   fromOpenEnumBaseType "source.organizeImports" = CodeActionKind_SourceOrganizeImports
   fromOpenEnumBaseType "source.fixAll" = CodeActionKind_SourceFixAll
+  fromOpenEnumBaseType "notebook" = CodeActionKind_Notebook
   fromOpenEnumBaseType arg = CodeActionKind_Custom arg
 
 
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CodeActionOptions where
-  parseJSON = Aeson.withObject "CodeActionOptions" $ \arg -> CodeActionOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "codeActionKinds" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "CodeActionOptions" $ \arg -> CodeActionOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeActionKinds" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -57,4 +59,4 @@
     ,["context" Aeson..= arg4]]
 
 instance Aeson.FromJSON CodeActionParams where
-  parseJSON = Aeson.withObject "CodeActionParams" $ \arg -> CodeActionParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "context"
+  parseJSON = Aeson.withObject "CodeActionParams" $ \arg -> CodeActionParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "context"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -56,4 +58,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON CodeActionRegistrationOptions where
-  parseJSON = Aeson.withObject "CodeActionRegistrationOptions" $ \arg -> CodeActionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "codeActionKinds" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "CodeActionRegistrationOptions" $ \arg -> CodeActionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeActionKinds" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeActionTriggerKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,7 +40,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CodeActionTriggerKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CodeActionTriggerKind)
   deriving Pretty via (ViaJSON CodeActionTriggerKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum CodeActionTriggerKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeDescription.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLens.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -36,7 +38,7 @@
   _command :: (Maybe Language.LSP.Protocol.Internal.Types.Command.Command)
   , {-|
   A data entry field that is preserved on a code lens item between
-  a `CodeLensRequest` and a `CodeLensResolveRequest`
+  a `CodeLensRequest`
   -}
   _data_ :: (Maybe Data.Aeson.Value)
   }
@@ -50,4 +52,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CodeLens where
-  parseJSON = Aeson.withObject "CodeLens" $ \arg -> CodeLens <$> arg Aeson..: "range" <*> arg Aeson..:! "command" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "CodeLens" $ \arg -> CodeLens <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "command" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLensClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (CodeLensClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON CodeLensClientCapabilities where
-  parseJSON = Aeson.withObject "CodeLensClientCapabilities" $ \arg -> CodeLensClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "CodeLensClientCapabilities" $ \arg -> CodeLensClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLensOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,4 +39,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON CodeLensOptions where
-  parseJSON = Aeson.withObject "CodeLensOptions" $ \arg -> CodeLensOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "CodeLensOptions" $ \arg -> CodeLensOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLensParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON CodeLensParams where
-  parseJSON = Aeson.withObject "CodeLensParams" $ \arg -> CodeLensParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "CodeLensParams" $ \arg -> CodeLensParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLensRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -44,4 +46,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON CodeLensRegistrationOptions where
-  parseJSON = Aeson.withObject "CodeLensRegistrationOptions" $ \arg -> CodeLensRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "CodeLensRegistrationOptions" $ \arg -> CodeLensRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CodeLensWorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
   toJSON (CodeLensWorkspaceClientCapabilities arg0) = Aeson.object $ concat $  ["refreshSupport" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON CodeLensWorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "CodeLensWorkspaceClientCapabilities" $ \arg -> CodeLensWorkspaceClientCapabilities <$> arg Aeson..:! "refreshSupport"
+  parseJSON = Aeson.withObject "CodeLensWorkspaceClientCapabilities" $ \arg -> CodeLensWorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "refreshSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Color.hs b/generated/Language/LSP/Protocol/Internal/Types/Color.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Color.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Color.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ColorInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs b/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ColorPresentation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,"additionalTextEdits" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ColorPresentation where
-  parseJSON = Aeson.withObject "ColorPresentation" $ \arg -> ColorPresentation <$> arg Aeson..: "label" <*> arg Aeson..:! "textEdit" <*> arg Aeson..:! "additionalTextEdits"
+  parseJSON = Aeson.withObject "ColorPresentation" $ \arg -> ColorPresentation <$> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "textEdit" <*> arg Language.LSP.Protocol.Types.Common..:!? "additionalTextEdits"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ColorPresentationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -57,4 +59,4 @@
     ,["range" Aeson..= arg4]]
 
 instance Aeson.FromJSON ColorPresentationParams where
-  parseJSON = Aeson.withObject "ColorPresentationParams" $ \arg -> ColorPresentationParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "color" <*> arg Aeson..: "range"
+  parseJSON = Aeson.withObject "ColorPresentationParams" $ \arg -> ColorPresentationParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "color" <*> arg Aeson..: "range"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Command.hs b/generated/Language/LSP/Protocol/Internal/Types/Command.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Command.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Command.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"arguments" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON Command where
-  parseJSON = Aeson.withObject "Command" $ \arg -> Command <$> arg Aeson..: "title" <*> arg Aeson..: "command" <*> arg Aeson..:! "arguments"
+  parseJSON = Aeson.withObject "Command" $ \arg -> Command <$> arg Aeson..: "title" <*> arg Aeson..: "command" <*> arg Language.LSP.Protocol.Types.Common..:!? "arguments"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,14 +13,12 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.CompletionItemKind
-import qualified Language.LSP.Protocol.Internal.Types.CompletionItemTag
+import qualified Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind
+import qualified Language.LSP.Protocol.Internal.Types.CompletionListCapabilities
 import qualified Language.LSP.Protocol.Internal.Types.InsertTextMode
-import qualified Language.LSP.Protocol.Internal.Types.MarkupKind
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -33,11 +33,11 @@
   The client supports the following `CompletionItem` specific
   capabilities.
   -}
-  _completionItem :: (Maybe (Row.Rec ("snippetSupport" Row..== (Maybe Bool) Row..+ ("commitCharactersSupport" Row..== (Maybe Bool) Row..+ ("documentationFormat" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.MarkupKind.MarkupKind]) Row..+ ("deprecatedSupport" Row..== (Maybe Bool) Row..+ ("preselectSupport" Row..== (Maybe Bool) Row..+ ("tagSupport" Row..== (Maybe (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.CompletionItemTag.CompletionItemTag] Row..+ Row.Empty))) Row..+ ("insertReplaceSupport" Row..== (Maybe Bool) Row..+ ("resolveSupport" Row..== (Maybe (Row.Rec ("properties" Row..== [Data.Text.Text] Row..+ Row.Empty))) Row..+ ("insertTextModeSupport" Row..== (Maybe (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.InsertTextMode.InsertTextMode] Row..+ Row.Empty))) Row..+ ("labelDetailsSupport" Row..== (Maybe Bool) Row..+ Row.Empty))))))))))))
+  _completionItem :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions.ClientCompletionItemOptions)
   , {-|
 
   -}
-  _completionItemKind :: (Maybe (Row.Rec ("valueSet" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.CompletionItemKind.CompletionItemKind]) Row..+ Row.Empty)))
+  _completionItemKind :: (Maybe Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind.ClientCompletionItemOptionsKind)
   , {-|
   Defines how the client handles whitespace and indentation
   when accepting a completion item that uses multi line
@@ -57,7 +57,7 @@
 
   @since 3.17.0
   -}
-  _completionList :: (Maybe (Row.Rec ("itemDefaults" Row..== (Maybe [Data.Text.Text]) Row..+ Row.Empty)))
+  _completionList :: (Maybe Language.LSP.Protocol.Internal.Types.CompletionListCapabilities.CompletionListCapabilities)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -72,4 +72,4 @@
     ,"completionList" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON CompletionClientCapabilities where
-  parseJSON = Aeson.withObject "CompletionClientCapabilities" $ \arg -> CompletionClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "completionItem" <*> arg Aeson..:! "completionItemKind" <*> arg Aeson..:! "insertTextMode" <*> arg Aeson..:! "contextSupport" <*> arg Aeson..:! "completionList"
+  parseJSON = Aeson.withObject "CompletionClientCapabilities" $ \arg -> CompletionClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionItem" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionItemKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextMode" <*> arg Language.LSP.Protocol.Types.Common..:!? "contextSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionList"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionContext.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"triggerCharacter" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON CompletionContext where
-  parseJSON = Aeson.withObject "CompletionContext" $ \arg -> CompletionContext <$> arg Aeson..: "triggerKind" <*> arg Aeson..:! "triggerCharacter"
+  parseJSON = Aeson.withObject "CompletionContext" $ \arg -> CompletionContext <$> arg Aeson..: "triggerKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacter"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -213,4 +215,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg18]
 
 instance Aeson.FromJSON CompletionItem where
-  parseJSON = Aeson.withObject "CompletionItem" $ \arg -> CompletionItem <$> arg Aeson..: "label" <*> arg Aeson..:! "labelDetails" <*> arg Aeson..:! "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "detail" <*> arg Aeson..:! "documentation" <*> arg Aeson..:! "deprecated" <*> arg Aeson..:! "preselect" <*> arg Aeson..:! "sortText" <*> arg Aeson..:! "filterText" <*> arg Aeson..:! "insertText" <*> arg Aeson..:! "insertTextFormat" <*> arg Aeson..:! "insertTextMode" <*> arg Aeson..:! "textEdit" <*> arg Aeson..:! "textEditText" <*> arg Aeson..:! "additionalTextEdits" <*> arg Aeson..:! "commitCharacters" <*> arg Aeson..:! "command" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "CompletionItem" $ \arg -> CompletionItem <$> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "labelDetails" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "detail" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentation" <*> arg Language.LSP.Protocol.Types.Common..:!? "deprecated" <*> arg Language.LSP.Protocol.Types.Common..:!? "preselect" <*> arg Language.LSP.Protocol.Types.Common..:!? "sortText" <*> arg Language.LSP.Protocol.Types.Common..:!? "filterText" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertText" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextFormat" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextMode" <*> arg Language.LSP.Protocol.Types.Common..:!? "textEdit" <*> arg Language.LSP.Protocol.Types.Common..:!? "textEditText" <*> arg Language.LSP.Protocol.Types.Common..:!? "additionalTextEdits" <*> arg Language.LSP.Protocol.Types.Common..:!? "commitCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "command" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemDefaults.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemDefaults.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemDefaults.hs
@@ -0,0 +1,85 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.CompletionItemDefaults where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace
+import qualified Language.LSP.Protocol.Internal.Types.InsertTextFormat
+import qualified Language.LSP.Protocol.Internal.Types.InsertTextMode
+import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+In many cases the items of an actual completion result share the same
+value for properties like `commitCharacters` or the range of a text
+edit. A completion list can therefore define item defaults which will
+be used if a completion item itself doesn't specify the value.
+
+If a completion list specifies a default value and a completion item
+also specifies a corresponding value the one from the item is used.
+
+Servers are only allowed to return default values if the client
+signals support for this via the `completionList.itemDefaults`
+capability.
+
+@since 3.17.0
+-}
+data CompletionItemDefaults = CompletionItemDefaults 
+  { {-|
+  A default commit character set.
+
+  @since 3.17.0
+  -}
+  _commitCharacters :: (Maybe [Data.Text.Text])
+  , {-|
+  A default edit range.
+
+  @since 3.17.0
+  -}
+  _editRange :: (Maybe (Language.LSP.Protocol.Internal.Types.Range.Range Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace.EditRangeWithInsertReplace))
+  , {-|
+  A default insert text format.
+
+  @since 3.17.0
+  -}
+  _insertTextFormat :: (Maybe Language.LSP.Protocol.Internal.Types.InsertTextFormat.InsertTextFormat)
+  , {-|
+  A default insert text mode.
+
+  @since 3.17.0
+  -}
+  _insertTextMode :: (Maybe Language.LSP.Protocol.Internal.Types.InsertTextMode.InsertTextMode)
+  , {-|
+  A default data value.
+
+  @since 3.17.0
+  -}
+  _data_ :: (Maybe Data.Aeson.Value)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON CompletionItemDefaults)
+
+instance Aeson.ToJSON CompletionItemDefaults where
+  toJSON (CompletionItemDefaults arg0 arg1 arg2 arg3 arg4) = Aeson.object $ concat $  ["commitCharacters" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"editRange" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"insertTextFormat" Language.LSP.Protocol.Types.Common..=? arg2
+    ,"insertTextMode" Language.LSP.Protocol.Types.Common..=? arg3
+    ,"data" Language.LSP.Protocol.Types.Common..=? arg4]
+
+instance Aeson.FromJSON CompletionItemDefaults where
+  parseJSON = Aeson.withObject "CompletionItemDefaults" $ \arg -> CompletionItemDefaults <$> arg Language.LSP.Protocol.Types.Common..:!? "commitCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "editRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextFormat" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertTextMode" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -125,7 +127,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionItemKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionItemKind)
   deriving Pretty via (ViaJSON CompletionItemKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum CompletionItemKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemLabelDetails.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -42,4 +44,4 @@
     ,"description" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON CompletionItemLabelDetails where
-  parseJSON = Aeson.withObject "CompletionItemLabelDetails" $ \arg -> CompletionItemLabelDetails <$> arg Aeson..:! "detail" <*> arg Aeson..:! "description"
+  parseJSON = Aeson.withObject "CompletionItemLabelDetails" $ \arg -> CompletionItemLabelDetails <$> arg Language.LSP.Protocol.Types.Common..:!? "detail" <*> arg Language.LSP.Protocol.Types.Common..:!? "description"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTag.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,7 +34,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionItemTag Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionItemTag)
   deriving Pretty via (ViaJSON CompletionItemTag)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum CompletionItemTag where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTagOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTagOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionItemTagOptions.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.CompletionItemTag
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data CompletionItemTagOptions = CompletionItemTagOptions 
+  { {-|
+  The tags supported by the client.
+  -}
+  _valueSet :: [Language.LSP.Protocol.Internal.Types.CompletionItemTag.CompletionItemTag]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON CompletionItemTagOptions)
+
+instance Aeson.ToJSON CompletionItemTagOptions where
+  toJSON (CompletionItemTagOptions arg0) = Aeson.object $ concat $  [["valueSet" Aeson..= arg0]]
+
+instance Aeson.FromJSON CompletionItemTagOptions where
+  parseJSON = Aeson.withObject "CompletionItemTagOptions" $ \arg -> CompletionItemTagOptions <$> arg Aeson..: "valueSet"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionList.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -10,16 +12,11 @@
 import GHC.Generics
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
-import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.CompletionItem
-import qualified Language.LSP.Protocol.Internal.Types.InsertTextFormat
-import qualified Language.LSP.Protocol.Internal.Types.InsertTextMode
-import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Internal.Types.CompletionItemDefaults
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -49,7 +46,7 @@
 
   @since 3.17.0
   -}
-  _itemDefaults :: (Maybe (Row.Rec ("commitCharacters" Row..== (Maybe [Data.Text.Text]) Row..+ ("editRange" Row..== (Maybe (Language.LSP.Protocol.Internal.Types.Range.Range Language.LSP.Protocol.Types.Common.|? (Row.Rec ("insert" Row..== Language.LSP.Protocol.Internal.Types.Range.Range Row..+ ("replace" Row..== Language.LSP.Protocol.Internal.Types.Range.Range Row..+ Row.Empty))))) Row..+ ("insertTextFormat" Row..== (Maybe Language.LSP.Protocol.Internal.Types.InsertTextFormat.InsertTextFormat) Row..+ ("insertTextMode" Row..== (Maybe Language.LSP.Protocol.Internal.Types.InsertTextMode.InsertTextMode) Row..+ ("data" Row..== (Maybe Data.Aeson.Value) Row..+ Row.Empty)))))))
+  _itemDefaults :: (Maybe Language.LSP.Protocol.Internal.Types.CompletionItemDefaults.CompletionItemDefaults)
   , {-|
   The completion items.
   -}
@@ -65,4 +62,4 @@
     ,["items" Aeson..= arg2]]
 
 instance Aeson.FromJSON CompletionList where
-  parseJSON = Aeson.withObject "CompletionList" $ \arg -> CompletionList <$> arg Aeson..: "isIncomplete" <*> arg Aeson..:! "itemDefaults" <*> arg Aeson..: "items"
+  parseJSON = Aeson.withObject "CompletionList" $ \arg -> CompletionList <$> arg Aeson..: "isIncomplete" <*> arg Language.LSP.Protocol.Types.Common..:!? "itemDefaults" <*> arg Aeson..: "items"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionListCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionListCapabilities.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionListCapabilities.hs
@@ -0,0 +1,48 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.CompletionListCapabilities where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+The client supports the following `CompletionList` specific
+capabilities.
+
+@since 3.17.0
+-}
+data CompletionListCapabilities = CompletionListCapabilities 
+  { {-|
+  The client supports the following itemDefaults on
+  a completion list.
+
+  The value lists the supported property names of the
+  `CompletionList.itemDefaults` object. If omitted
+  no properties are supported.
+
+  @since 3.17.0
+  -}
+  _itemDefaults :: (Maybe [Data.Text.Text])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON CompletionListCapabilities)
+
+instance Aeson.ToJSON CompletionListCapabilities where
+  toJSON (CompletionListCapabilities arg0) = Aeson.object $ concat $  ["itemDefaults" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON CompletionListCapabilities where
+  parseJSON = Aeson.withObject "CompletionListCapabilities" $ \arg -> CompletionListCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "itemDefaults"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -58,7 +60,7 @@
 
   @since 3.17.0
   -}
-  _completionItem :: (Maybe (Row.Rec ("labelDetailsSupport" Row..== (Maybe Bool) Row..+ Row.Empty)))
+  _completionItem :: (Maybe Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions.ServerCompletionItemOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -72,4 +74,4 @@
     ,"completionItem" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON CompletionOptions where
-  parseJSON = Aeson.withObject "CompletionOptions" $ \arg -> CompletionOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "triggerCharacters" <*> arg Aeson..:! "allCommitCharacters" <*> arg Aeson..:! "resolveProvider" <*> arg Aeson..:! "completionItem"
+  parseJSON = Aeson.withObject "CompletionOptions" $ \arg -> CompletionOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "allCommitCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionItem"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -58,4 +60,4 @@
     ,"context" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON CompletionParams where
-  parseJSON = Aeson.withObject "CompletionParams" $ \arg -> CompletionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..:! "context"
+  parseJSON = Aeson.withObject "CompletionParams" $ \arg -> CompletionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "context"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,11 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.DocumentSelector
+import qualified Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -64,7 +66,7 @@
 
   @since 3.17.0
   -}
-  _completionItem :: (Maybe (Row.Rec ("labelDetailsSupport" Row..== (Maybe Bool) Row..+ Row.Empty)))
+  _completionItem :: (Maybe Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions.ServerCompletionItemOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -79,4 +81,4 @@
     ,"completionItem" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON CompletionRegistrationOptions where
-  parseJSON = Aeson.withObject "CompletionRegistrationOptions" $ \arg -> CompletionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "triggerCharacters" <*> arg Aeson..:! "allCommitCharacters" <*> arg Aeson..:! "resolveProvider" <*> arg Aeson..:! "completionItem"
+  parseJSON = Aeson.withObject "CompletionRegistrationOptions" $ \arg -> CompletionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "allCommitCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionItem"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs b/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CompletionTriggerKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,7 +41,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionTriggerKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum CompletionTriggerKind)
   deriving Pretty via (ViaJSON CompletionTriggerKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum CompletionTriggerKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs b/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ConfigurationItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -15,6 +17,7 @@
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Types.Common
+import qualified Language.LSP.Protocol.Types.Uri
 
 {-|
 
@@ -23,7 +26,7 @@
   { {-|
   The scope to get the configuration section for.
   -}
-  _scopeUri :: (Maybe Data.Text.Text)
+  _scopeUri :: (Maybe Language.LSP.Protocol.Types.Uri.Uri)
   , {-|
   The configuration section asked for.
   -}
@@ -38,4 +41,4 @@
     ,"section" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ConfigurationItem where
-  parseJSON = Aeson.withObject "ConfigurationItem" $ \arg -> ConfigurationItem <$> arg Aeson..:! "scopeUri" <*> arg Aeson..:! "section"
+  parseJSON = Aeson.withObject "ConfigurationItem" $ \arg -> ConfigurationItem <$> arg Language.LSP.Protocol.Types.Common..:!? "scopeUri" <*> arg Language.LSP.Protocol.Types.Common..:!? "section"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ConfigurationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs b/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CreateFile.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -53,4 +55,4 @@
     ,"options" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON CreateFile where
-  parseJSON = Aeson.withObject "CreateFile" $ \arg -> CreateFile <$> arg Aeson..:! "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "uri" <*> arg Aeson..:! "options"
+  parseJSON = Aeson.withObject "CreateFile" $ \arg -> CreateFile <$> arg Language.LSP.Protocol.Types.Common..:!? "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "uri" <*> arg Language.LSP.Protocol.Types.Common..:!? "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CreateFileOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,4 +39,4 @@
     ,"ignoreIfExists" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON CreateFileOptions where
-  parseJSON = Aeson.withObject "CreateFileOptions" $ \arg -> CreateFileOptions <$> arg Aeson..:! "overwrite" <*> arg Aeson..:! "ignoreIfExists"
+  parseJSON = Aeson.withObject "CreateFileOptions" $ \arg -> CreateFileOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "overwrite" <*> arg Language.LSP.Protocol.Types.Common..:!? "ignoreIfExists"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/CreateFilesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs b/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Declaration.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeclarationClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"linkSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DeclarationClientCapabilities where
-  parseJSON = Aeson.withObject "DeclarationClientCapabilities" $ \arg -> DeclarationClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "linkSupport"
+  parseJSON = Aeson.withObject "DeclarationClientCapabilities" $ \arg -> DeclarationClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs b/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeclarationLink.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeclarationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DeclarationOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DeclarationOptions where
-  parseJSON = Aeson.withObject "DeclarationOptions" $ \arg -> DeclarationOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DeclarationOptions" $ \arg -> DeclarationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeclarationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON DeclarationParams where
-  parseJSON = Aeson.withObject "DeclarationParams" $ \arg -> DeclarationParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "DeclarationParams" $ \arg -> DeclarationParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeclarationRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON DeclarationRegistrationOptions where
-  parseJSON = Aeson.withObject "DeclarationRegistrationOptions" $ \arg -> DeclarationRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "DeclarationRegistrationOptions" $ \arg -> DeclarationRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Definition.hs b/generated/Language/LSP/Protocol/Internal/Types/Definition.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Definition.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Definition.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DefinitionClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"linkSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DefinitionClientCapabilities where
-  parseJSON = Aeson.withObject "DefinitionClientCapabilities" $ \arg -> DefinitionClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "linkSupport"
+  parseJSON = Aeson.withObject "DefinitionClientCapabilities" $ \arg -> DefinitionClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs b/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DefinitionLink.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DefinitionOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DefinitionOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DefinitionOptions where
-  parseJSON = Aeson.withObject "DefinitionOptions" $ \arg -> DefinitionOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DefinitionOptions" $ \arg -> DefinitionOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DefinitionParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON DefinitionParams where
-  parseJSON = Aeson.withObject "DefinitionParams" $ \arg -> DefinitionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "DefinitionParams" $ \arg -> DefinitionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DefinitionRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DefinitionRegistrationOptions where
-  parseJSON = Aeson.withObject "DefinitionRegistrationOptions" $ \arg -> DefinitionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DefinitionRegistrationOptions" $ \arg -> DefinitionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs b/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeleteFile.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -53,4 +55,4 @@
     ,"options" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON DeleteFile where
-  parseJSON = Aeson.withObject "DeleteFile" $ \arg -> DeleteFile <$> arg Aeson..:! "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "uri" <*> arg Aeson..:! "options"
+  parseJSON = Aeson.withObject "DeleteFile" $ \arg -> DeleteFile <$> arg Language.LSP.Protocol.Types.Common..:!? "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "uri" <*> arg Language.LSP.Protocol.Types.Common..:!? "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeleteFileOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,4 +39,4 @@
     ,"ignoreIfNotExists" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DeleteFileOptions where
-  parseJSON = Aeson.withObject "DeleteFileOptions" $ \arg -> DeleteFileOptions <$> arg Aeson..:! "recursive" <*> arg Aeson..:! "ignoreIfNotExists"
+  parseJSON = Aeson.withObject "DeleteFileOptions" $ \arg -> DeleteFileOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "recursive" <*> arg Language.LSP.Protocol.Types.Common..:!? "ignoreIfNotExists"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DeleteFilesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs b/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Diagnostic.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -92,4 +94,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg8]
 
 instance Aeson.FromJSON Diagnostic where
-  parseJSON = Aeson.withObject "Diagnostic" $ \arg -> Diagnostic <$> arg Aeson..: "range" <*> arg Aeson..:! "severity" <*> arg Aeson..:! "code" <*> arg Aeson..:! "codeDescription" <*> arg Aeson..:! "source" <*> arg Aeson..: "message" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "relatedInformation" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "Diagnostic" $ \arg -> Diagnostic <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "severity" <*> arg Language.LSP.Protocol.Types.Common..:!? "code" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeDescription" <*> arg Language.LSP.Protocol.Types.Common..:!? "source" <*> arg Aeson..: "message" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "relatedInformation" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"relatedDocumentSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DiagnosticClientCapabilities where
-  parseJSON = Aeson.withObject "DiagnosticClientCapabilities" $ \arg -> DiagnosticClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "relatedDocumentSupport"
+  parseJSON = Aeson.withObject "DiagnosticClientCapabilities" $ \arg -> DiagnosticClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "relatedDocumentSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -54,4 +56,4 @@
     ,["workspaceDiagnostics" Aeson..= arg3]]
 
 instance Aeson.FromJSON DiagnosticOptions where
-  parseJSON = Aeson.withObject "DiagnosticOptions" $ \arg -> DiagnosticOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "identifier" <*> arg Aeson..: "interFileDependencies" <*> arg Aeson..: "workspaceDiagnostics"
+  parseJSON = Aeson.withObject "DiagnosticOptions" $ \arg -> DiagnosticOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "identifier" <*> arg Aeson..: "interFileDependencies" <*> arg Aeson..: "workspaceDiagnostics"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -67,4 +69,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON DiagnosticRegistrationOptions where
-  parseJSON = Aeson.withObject "DiagnosticRegistrationOptions" $ \arg -> DiagnosticRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "identifier" <*> arg Aeson..: "interFileDependencies" <*> arg Aeson..: "workspaceDiagnostics" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "DiagnosticRegistrationOptions" $ \arg -> DiagnosticRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "identifier" <*> arg Aeson..: "interFileDependencies" <*> arg Aeson..: "workspaceDiagnostics" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticRelatedInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticServerCancellationData.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticSeverity.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,7 +43,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DiagnosticSeverity Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DiagnosticSeverity)
   deriving Pretty via (ViaJSON DiagnosticSeverity)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum DiagnosticSeverity where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticTag.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,7 +42,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DiagnosticTag Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DiagnosticTag)
   deriving Pretty via (ViaJSON DiagnosticTag)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum DiagnosticTag where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DiagnosticWorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
   toJSON (DiagnosticWorkspaceClientCapabilities arg0) = Aeson.object $ concat $  ["refreshSupport" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DiagnosticWorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "DiagnosticWorkspaceClientCapabilities" $ \arg -> DiagnosticWorkspaceClientCapabilities <$> arg Aeson..:! "refreshSupport"
+  parseJSON = Aeson.withObject "DiagnosticWorkspaceClientCapabilities" $ \arg -> DiagnosticWorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "refreshSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DidChangeConfigurationClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DidChangeConfigurationClientCapabilities where
-  parseJSON = Aeson.withObject "DidChangeConfigurationClientCapabilities" $ \arg -> DidChangeConfigurationClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DidChangeConfigurationClientCapabilities" $ \arg -> DidChangeConfigurationClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeConfigurationRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -33,4 +35,4 @@
   toJSON (DidChangeConfigurationRegistrationOptions arg0) = Aeson.object $ concat $  ["section" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DidChangeConfigurationRegistrationOptions where
-  parseJSON = Aeson.withObject "DidChangeConfigurationRegistrationOptions" $ \arg -> DidChangeConfigurationRegistrationOptions <$> arg Aeson..:! "section"
+  parseJSON = Aeson.withObject "DidChangeConfigurationRegistrationOptions" $ \arg -> DidChangeConfigurationRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "section"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeNotebookDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeTextDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -42,4 +44,4 @@
     ,"relativePatternSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DidChangeWatchedFilesClientCapabilities where
-  parseJSON = Aeson.withObject "DidChangeWatchedFilesClientCapabilities" $ \arg -> DidChangeWatchedFilesClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "relativePatternSupport"
+  parseJSON = Aeson.withObject "DidChangeWatchedFilesClientCapabilities" $ \arg -> DidChangeWatchedFilesClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "relativePatternSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWatchedFilesRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidChangeWorkspaceFoldersParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidCloseNotebookDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidCloseTextDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidOpenNotebookDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidOpenTextDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidSaveNotebookDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DidSaveTextDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"text" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DidSaveTextDocumentParams where
-  parseJSON = Aeson.withObject "DidSaveTextDocumentParams" $ \arg -> DidSaveTextDocumentParams <$> arg Aeson..: "textDocument" <*> arg Aeson..:! "text"
+  parseJSON = Aeson.withObject "DidSaveTextDocumentParams" $ \arg -> DidSaveTextDocumentParams <$> arg Aeson..: "textDocument" <*> arg Language.LSP.Protocol.Types.Common..:!? "text"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (DocumentColorClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentColorClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentColorClientCapabilities" $ \arg -> DocumentColorClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DocumentColorClientCapabilities" $ \arg -> DocumentColorClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentColorOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentColorOptions where
-  parseJSON = Aeson.withObject "DocumentColorOptions" $ \arg -> DocumentColorOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentColorOptions" $ \arg -> DocumentColorOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON DocumentColorParams where
-  parseJSON = Aeson.withObject "DocumentColorParams" $ \arg -> DocumentColorParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "DocumentColorParams" $ \arg -> DocumentColorParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentColorRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON DocumentColorRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentColorRegistrationOptions" $ \arg -> DocumentColorRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "DocumentColorRegistrationOptions" $ \arg -> DocumentColorRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -58,4 +60,4 @@
     ,"previousResultId" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON DocumentDiagnosticParams where
-  parseJSON = Aeson.withObject "DocumentDiagnosticParams" $ \arg -> DocumentDiagnosticParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..:! "identifier" <*> arg Aeson..:! "previousResultId"
+  parseJSON = Aeson.withObject "DocumentDiagnosticParams" $ \arg -> DocumentDiagnosticParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Language.LSP.Protocol.Types.Common..:!? "identifier" <*> arg Language.LSP.Protocol.Types.Common..:!? "previousResultId"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,7 +39,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DocumentDiagnosticReportKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DocumentDiagnosticReportKind)
   deriving Pretty via (ViaJSON DocumentDiagnosticReportKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum DocumentDiagnosticReportKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentDiagnosticReportPartialResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentFilter.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentFormattingClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentFormattingClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentFormattingClientCapabilities" $ \arg -> DocumentFormattingClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DocumentFormattingClientCapabilities" $ \arg -> DocumentFormattingClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentFormattingOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentFormattingOptions where
-  parseJSON = Aeson.withObject "DocumentFormattingOptions" $ \arg -> DocumentFormattingOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentFormattingOptions" $ \arg -> DocumentFormattingOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["options" Aeson..= arg2]]
 
 instance Aeson.FromJSON DocumentFormattingParams where
-  parseJSON = Aeson.withObject "DocumentFormattingParams" $ \arg -> DocumentFormattingParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "options"
+  parseJSON = Aeson.withObject "DocumentFormattingParams" $ \arg -> DocumentFormattingParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentFormattingRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentFormattingRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentFormattingRegistrationOptions" $ \arg -> DocumentFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentFormattingRegistrationOptions" $ \arg -> DocumentFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlight.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"kind" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentHighlight where
-  parseJSON = Aeson.withObject "DocumentHighlight" $ \arg -> DocumentHighlight <$> arg Aeson..: "range" <*> arg Aeson..:! "kind"
+  parseJSON = Aeson.withObject "DocumentHighlight" $ \arg -> DocumentHighlight <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentHighlightClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentHighlightClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentHighlightClientCapabilities" $ \arg -> DocumentHighlightClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DocumentHighlightClientCapabilities" $ \arg -> DocumentHighlightClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,7 +39,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DocumentHighlightKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum DocumentHighlightKind)
   deriving Pretty via (ViaJSON DocumentHighlightKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum DocumentHighlightKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentHighlightOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentHighlightOptions where
-  parseJSON = Aeson.withObject "DocumentHighlightOptions" $ \arg -> DocumentHighlightOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentHighlightOptions" $ \arg -> DocumentHighlightOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON DocumentHighlightParams where
-  parseJSON = Aeson.withObject "DocumentHighlightParams" $ \arg -> DocumentHighlightParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "DocumentHighlightParams" $ \arg -> DocumentHighlightParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentHighlightRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentHighlightRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentHighlightRegistrationOptions" $ \arg -> DocumentHighlightRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentHighlightRegistrationOptions" $ \arg -> DocumentHighlightRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentLink.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -17,6 +19,7 @@
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.Range
 import qualified Language.LSP.Protocol.Types.Common
+import qualified Language.LSP.Protocol.Types.Uri
 
 {-|
 A document link is a range in a text document that links to an internal or external resource, like another
@@ -30,7 +33,7 @@
   , {-|
   The uri this link points to. If missing a resolve request is sent later.
   -}
-  _target :: (Maybe Data.Text.Text)
+  _target :: (Maybe Language.LSP.Protocol.Types.Uri.Uri)
   , {-|
   The tooltip text when you hover over this link.
 
@@ -58,4 +61,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON DocumentLink where
-  parseJSON = Aeson.withObject "DocumentLink" $ \arg -> DocumentLink <$> arg Aeson..: "range" <*> arg Aeson..:! "target" <*> arg Aeson..:! "tooltip" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "DocumentLink" $ \arg -> DocumentLink <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "target" <*> arg Language.LSP.Protocol.Types.Common..:!? "tooltip" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"tooltipSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentLinkClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentLinkClientCapabilities" $ \arg -> DocumentLinkClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "tooltipSupport"
+  parseJSON = Aeson.withObject "DocumentLinkClientCapabilities" $ \arg -> DocumentLinkClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "tooltipSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,4 +39,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentLinkOptions where
-  parseJSON = Aeson.withObject "DocumentLinkOptions" $ \arg -> DocumentLinkOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "DocumentLinkOptions" $ \arg -> DocumentLinkOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON DocumentLinkParams where
-  parseJSON = Aeson.withObject "DocumentLinkParams" $ \arg -> DocumentLinkParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "DocumentLinkParams" $ \arg -> DocumentLinkParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentLinkRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -44,4 +46,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON DocumentLinkRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentLinkRegistrationOptions" $ \arg -> DocumentLinkRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "DocumentLinkRegistrationOptions" $ \arg -> DocumentLinkRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentOnTypeFormattingClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentOnTypeFormattingClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentOnTypeFormattingClientCapabilities" $ \arg -> DocumentOnTypeFormattingClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DocumentOnTypeFormattingClientCapabilities" $ \arg -> DocumentOnTypeFormattingClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
     ,"moreTriggerCharacter" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentOnTypeFormattingOptions where
-  parseJSON = Aeson.withObject "DocumentOnTypeFormattingOptions" $ \arg -> DocumentOnTypeFormattingOptions <$> arg Aeson..: "firstTriggerCharacter" <*> arg Aeson..:! "moreTriggerCharacter"
+  parseJSON = Aeson.withObject "DocumentOnTypeFormattingOptions" $ \arg -> DocumentOnTypeFormattingOptions <$> arg Aeson..: "firstTriggerCharacter" <*> arg Language.LSP.Protocol.Types.Common..:!? "moreTriggerCharacter"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentOnTypeFormattingRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"moreTriggerCharacter" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON DocumentOnTypeFormattingRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentOnTypeFormattingRegistrationOptions" $ \arg -> DocumentOnTypeFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..: "firstTriggerCharacter" <*> arg Aeson..:! "moreTriggerCharacter"
+  parseJSON = Aeson.withObject "DocumentOnTypeFormattingRegistrationOptions" $ \arg -> DocumentOnTypeFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..: "firstTriggerCharacter" <*> arg Language.LSP.Protocol.Types.Common..:!? "moreTriggerCharacter"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentRangeFormattingClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentRangeFormattingClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentRangeFormattingClientCapabilities" $ \arg -> DocumentRangeFormattingClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "DocumentRangeFormattingClientCapabilities" $ \arg -> DocumentRangeFormattingClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (DocumentRangeFormattingOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON DocumentRangeFormattingOptions where
-  parseJSON = Aeson.withObject "DocumentRangeFormattingOptions" $ \arg -> DocumentRangeFormattingOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentRangeFormattingOptions" $ \arg -> DocumentRangeFormattingOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,["options" Aeson..= arg3]]
 
 instance Aeson.FromJSON DocumentRangeFormattingParams where
-  parseJSON = Aeson.withObject "DocumentRangeFormattingParams" $ \arg -> DocumentRangeFormattingParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "options"
+  parseJSON = Aeson.withObject "DocumentRangeFormattingParams" $ \arg -> DocumentRangeFormattingParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentRangeFormattingRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentRangeFormattingRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentRangeFormattingRegistrationOptions" $ \arg -> DocumentRangeFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "DocumentRangeFormattingRegistrationOptions" $ \arg -> DocumentRangeFormattingRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSelector.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbol.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -82,4 +84,4 @@
     ,"children" Language.LSP.Protocol.Types.Common..=? arg7]
 
 instance Aeson.FromJSON DocumentSymbol where
-  parseJSON = Aeson.withObject "DocumentSymbol" $ \arg -> DocumentSymbol <$> arg Aeson..: "name" <*> arg Aeson..:! "detail" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "deprecated" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Aeson..:! "children"
+  parseJSON = Aeson.withObject "DocumentSymbol" $ \arg -> DocumentSymbol <$> arg Aeson..: "name" <*> arg Language.LSP.Protocol.Types.Common..:!? "detail" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "deprecated" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "children"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.SymbolKind
-import qualified Language.LSP.Protocol.Internal.Types.SymbolTag
+import qualified Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -30,7 +31,7 @@
   Specific capabilities for the `SymbolKind` in the
   `textDocument/documentSymbol` request.
   -}
-  _symbolKind :: (Maybe (Row.Rec ("valueSet" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.SymbolKind.SymbolKind]) Row..+ Row.Empty)))
+  _symbolKind :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions.ClientSymbolKindOptions)
   , {-|
   The client supports hierarchical document symbols.
   -}
@@ -42,7 +43,7 @@
 
   @since 3.16.0
   -}
-  _tagSupport :: (Maybe (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.SymbolTag.SymbolTag] Row..+ Row.Empty)))
+  _tagSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions.ClientSymbolTagOptions)
   , {-|
   The client supports an additional label presented in the UI when
   registering a document symbol provider.
@@ -63,4 +64,4 @@
     ,"labelSupport" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON DocumentSymbolClientCapabilities where
-  parseJSON = Aeson.withObject "DocumentSymbolClientCapabilities" $ \arg -> DocumentSymbolClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "symbolKind" <*> arg Aeson..:! "hierarchicalDocumentSymbolSupport" <*> arg Aeson..:! "tagSupport" <*> arg Aeson..:! "labelSupport"
+  parseJSON = Aeson.withObject "DocumentSymbolClientCapabilities" $ \arg -> DocumentSymbolClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "symbolKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "hierarchicalDocumentSymbolSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "tagSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "labelSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"label" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON DocumentSymbolOptions where
-  parseJSON = Aeson.withObject "DocumentSymbolOptions" $ \arg -> DocumentSymbolOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "label"
+  parseJSON = Aeson.withObject "DocumentSymbolOptions" $ \arg -> DocumentSymbolOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "label"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON DocumentSymbolParams where
-  parseJSON = Aeson.withObject "DocumentSymbolParams" $ \arg -> DocumentSymbolParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "DocumentSymbolParams" $ \arg -> DocumentSymbolParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/DocumentSymbolRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"label" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON DocumentSymbolRegistrationOptions where
-  parseJSON = Aeson.withObject "DocumentSymbolRegistrationOptions" $ \arg -> DocumentSymbolRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "label"
+  parseJSON = Aeson.withObject "DocumentSymbolRegistrationOptions" $ \arg -> DocumentSymbolRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "label"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/EditRangeWithInsertReplace.hs b/generated/Language/LSP/Protocol/Internal/Types/EditRangeWithInsertReplace.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/EditRangeWithInsertReplace.hs
@@ -0,0 +1,46 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Edit range variant that includes ranges for insert and replace operations.
+
+@since 3.18.0
+@proposed
+-}
+data EditRangeWithInsertReplace = EditRangeWithInsertReplace 
+  { {-|
+
+  -}
+  _insert :: Language.LSP.Protocol.Internal.Types.Range.Range
+  , {-|
+
+  -}
+  _replace :: Language.LSP.Protocol.Internal.Types.Range.Range
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON EditRangeWithInsertReplace)
+
+instance Aeson.ToJSON EditRangeWithInsertReplace where
+  toJSON (EditRangeWithInsertReplace arg0 arg1) = Aeson.object $ concat $  [["insert" Aeson..= arg0]
+    ,["replace" Aeson..= arg1]]
+
+instance Aeson.FromJSON EditRangeWithInsertReplace where
+  parseJSON = Aeson.withObject "EditRangeWithInsertReplace" $ \arg -> EditRangeWithInsertReplace <$> arg Aeson..: "insert" <*> arg Aeson..: "replace"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs b/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ErrorCodes.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -55,7 +57,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum ErrorCodes Language.LSP.Protocol.Types.Common.Int32)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum ErrorCodes)
   deriving Pretty via (ViaJSON ErrorCodes)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum ErrorCodes where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (ExecuteCommandClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON ExecuteCommandClientCapabilities where
-  parseJSON = Aeson.withObject "ExecuteCommandClientCapabilities" $ \arg -> ExecuteCommandClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "ExecuteCommandClientCapabilities" $ \arg -> ExecuteCommandClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
     ,["commands" Aeson..= arg1]]
 
 instance Aeson.FromJSON ExecuteCommandOptions where
-  parseJSON = Aeson.withObject "ExecuteCommandOptions" $ \arg -> ExecuteCommandOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "commands"
+  parseJSON = Aeson.withObject "ExecuteCommandOptions" $ \arg -> ExecuteCommandOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "commands"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"arguments" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ExecuteCommandParams where
-  parseJSON = Aeson.withObject "ExecuteCommandParams" $ \arg -> ExecuteCommandParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "command" <*> arg Aeson..:! "arguments"
+  parseJSON = Aeson.withObject "ExecuteCommandParams" $ \arg -> ExecuteCommandParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "command" <*> arg Language.LSP.Protocol.Types.Common..:!? "arguments"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ExecuteCommandRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
     ,["commands" Aeson..= arg1]]
 
 instance Aeson.FromJSON ExecuteCommandRegistrationOptions where
-  parseJSON = Aeson.withObject "ExecuteCommandRegistrationOptions" $ \arg -> ExecuteCommandRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "commands"
+  parseJSON = Aeson.withObject "ExecuteCommandRegistrationOptions" $ \arg -> ExecuteCommandRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "commands"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs b/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ExecutionSummary.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"success" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ExecutionSummary where
-  parseJSON = Aeson.withObject "ExecutionSummary" $ \arg -> ExecutionSummary <$> arg Aeson..: "executionOrder" <*> arg Aeson..:! "success"
+  parseJSON = Aeson.withObject "ExecutionSummary" $ \arg -> ExecutionSummary <$> arg Aeson..: "executionOrder" <*> arg Language.LSP.Protocol.Types.Common..:!? "success"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs b/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FailureHandlingKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,7 +48,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FailureHandlingKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FailureHandlingKind)
   deriving Pretty via (ViaJSON FailureHandlingKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum FailureHandlingKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs b/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileChangeType.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,7 +39,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FileChangeType Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FileChangeType)
   deriving Pretty via (ViaJSON FileChangeType)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum FileChangeType where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs b/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileCreate.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs b/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileDelete.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs b/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileEvent.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -67,4 +69,4 @@
     ,"willDelete" Language.LSP.Protocol.Types.Common..=? arg6]
 
 instance Aeson.FromJSON FileOperationClientCapabilities where
-  parseJSON = Aeson.withObject "FileOperationClientCapabilities" $ \arg -> FileOperationClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "didCreate" <*> arg Aeson..:! "willCreate" <*> arg Aeson..:! "didRename" <*> arg Aeson..:! "willRename" <*> arg Aeson..:! "didDelete" <*> arg Aeson..:! "willDelete"
+  parseJSON = Aeson.withObject "FileOperationClientCapabilities" $ \arg -> FileOperationClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "didCreate" <*> arg Language.LSP.Protocol.Types.Common..:!? "willCreate" <*> arg Language.LSP.Protocol.Types.Common..:!? "didRename" <*> arg Language.LSP.Protocol.Types.Common..:!? "willRename" <*> arg Language.LSP.Protocol.Types.Common..:!? "didDelete" <*> arg Language.LSP.Protocol.Types.Common..:!? "willDelete"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationFilter.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -42,4 +44,4 @@
     ,["pattern" Aeson..= arg1]]
 
 instance Aeson.FromJSON FileOperationFilter where
-  parseJSON = Aeson.withObject "FileOperationFilter" $ \arg -> FileOperationFilter <$> arg Aeson..:! "scheme" <*> arg Aeson..: "pattern"
+  parseJSON = Aeson.withObject "FileOperationFilter" $ \arg -> FileOperationFilter <$> arg Language.LSP.Protocol.Types.Common..:!? "scheme" <*> arg Aeson..: "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -60,4 +62,4 @@
     ,"willDelete" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON FileOperationOptions where
-  parseJSON = Aeson.withObject "FileOperationOptions" $ \arg -> FileOperationOptions <$> arg Aeson..:! "didCreate" <*> arg Aeson..:! "willCreate" <*> arg Aeson..:! "didRename" <*> arg Aeson..:! "willRename" <*> arg Aeson..:! "didDelete" <*> arg Aeson..:! "willDelete"
+  parseJSON = Aeson.withObject "FileOperationOptions" $ \arg -> FileOperationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "didCreate" <*> arg Language.LSP.Protocol.Types.Common..:!? "willCreate" <*> arg Language.LSP.Protocol.Types.Common..:!? "didRename" <*> arg Language.LSP.Protocol.Types.Common..:!? "willRename" <*> arg Language.LSP.Protocol.Types.Common..:!? "didDelete" <*> arg Language.LSP.Protocol.Types.Common..:!? "willDelete"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPattern.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -56,4 +58,4 @@
     ,"options" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON FileOperationPattern where
-  parseJSON = Aeson.withObject "FileOperationPattern" $ \arg -> FileOperationPattern <$> arg Aeson..: "glob" <*> arg Aeson..:! "matches" <*> arg Aeson..:! "options"
+  parseJSON = Aeson.withObject "FileOperationPattern" $ \arg -> FileOperationPattern <$> arg Aeson..: "glob" <*> arg Language.LSP.Protocol.Types.Common..:!? "matches" <*> arg Language.LSP.Protocol.Types.Common..:!? "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -36,7 +38,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FileOperationPatternKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FileOperationPatternKind)
   deriving Pretty via (ViaJSON FileOperationPatternKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum FileOperationPatternKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationPatternOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (FileOperationPatternOptions arg0) = Aeson.object $ concat $  ["ignoreCase" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON FileOperationPatternOptions where
-  parseJSON = Aeson.withObject "FileOperationPatternOptions" $ \arg -> FileOperationPatternOptions <$> arg Aeson..:! "ignoreCase"
+  parseJSON = Aeson.withObject "FileOperationPatternOptions" $ \arg -> FileOperationPatternOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "ignoreCase"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileOperationRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs b/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileRename.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs b/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FileSystemWatcher.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -43,4 +45,4 @@
     ,"kind" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON FileSystemWatcher where
-  parseJSON = Aeson.withObject "FileSystemWatcher" $ \arg -> FileSystemWatcher <$> arg Aeson..: "globPattern" <*> arg Aeson..:! "kind"
+  parseJSON = Aeson.withObject "FileSystemWatcher" $ \arg -> FileSystemWatcher <$> arg Aeson..: "globPattern" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRange.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,7 +43,7 @@
   -}
   _endCharacter :: (Maybe Language.LSP.Protocol.Types.Common.UInt)
   , {-|
-  Describes the kind of the folding range such as `comment' or 'region'. The kind
+  Describes the kind of the folding range such as 'comment' or 'region'. The kind
   is used to categorize folding ranges and used by commands like 'Fold all comments'.
   See `FoldingRangeKind` for an enumeration of standardized kinds.
   -}
@@ -68,4 +70,4 @@
     ,"collapsedText" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON FoldingRange where
-  parseJSON = Aeson.withObject "FoldingRange" $ \arg -> FoldingRange <$> arg Aeson..: "startLine" <*> arg Aeson..:! "startCharacter" <*> arg Aeson..: "endLine" <*> arg Aeson..:! "endCharacter" <*> arg Aeson..:! "kind" <*> arg Aeson..:! "collapsedText"
+  parseJSON = Aeson.withObject "FoldingRange" $ \arg -> FoldingRange <$> arg Aeson..: "startLine" <*> arg Language.LSP.Protocol.Types.Common..:!? "startCharacter" <*> arg Aeson..: "endLine" <*> arg Language.LSP.Protocol.Types.Common..:!? "endCharacter" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "collapsedText"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeKind
+import qualified Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -45,13 +47,13 @@
 
   @since 3.17.0
   -}
-  _foldingRangeKind :: (Maybe (Row.Rec ("valueSet" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.FoldingRangeKind.FoldingRangeKind]) Row..+ Row.Empty)))
+  _foldingRangeKind :: (Maybe Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions.ClientFoldingRangeKindOptions)
   , {-|
   Specific options for the folding range.
 
   @since 3.17.0
   -}
-  _foldingRange :: (Maybe (Row.Rec ("collapsedText" Row..== (Maybe Bool) Row..+ Row.Empty)))
+  _foldingRange :: (Maybe Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions.ClientFoldingRangeOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -65,4 +67,4 @@
     ,"foldingRange" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON FoldingRangeClientCapabilities where
-  parseJSON = Aeson.withObject "FoldingRangeClientCapabilities" $ \arg -> FoldingRangeClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "rangeLimit" <*> arg Aeson..:! "lineFoldingOnly" <*> arg Aeson..:! "foldingRangeKind" <*> arg Aeson..:! "foldingRange"
+  parseJSON = Aeson.withObject "FoldingRangeClientCapabilities" $ \arg -> FoldingRangeClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "rangeLimit" <*> arg Language.LSP.Protocol.Types.Common..:!? "lineFoldingOnly" <*> arg Language.LSP.Protocol.Types.Common..:!? "foldingRangeKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "foldingRange"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,7 +41,7 @@
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
   , Aeson.FromJSON
-  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FoldingRangeKind Data.Text.Text)
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum FoldingRangeKind)
   deriving Pretty via (ViaJSON FoldingRangeKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum FoldingRangeKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (FoldingRangeOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON FoldingRangeOptions where
-  parseJSON = Aeson.withObject "FoldingRangeOptions" $ \arg -> FoldingRangeOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "FoldingRangeOptions" $ \arg -> FoldingRangeOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON FoldingRangeParams where
-  parseJSON = Aeson.withObject "FoldingRangeParams" $ \arg -> FoldingRangeParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "FoldingRangeParams" $ \arg -> FoldingRangeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FoldingRangeRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON FoldingRangeRegistrationOptions where
-  parseJSON = Aeson.withObject "FoldingRangeRegistrationOptions" $ \arg -> FoldingRangeRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "FoldingRangeRegistrationOptions" $ \arg -> FoldingRangeRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FormattingOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -58,4 +60,4 @@
     ,"trimFinalNewlines" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON FormattingOptions where
-  parseJSON = Aeson.withObject "FormattingOptions" $ \arg -> FormattingOptions <$> arg Aeson..: "tabSize" <*> arg Aeson..: "insertSpaces" <*> arg Aeson..:! "trimTrailingWhitespace" <*> arg Aeson..:! "insertFinalNewline" <*> arg Aeson..:! "trimFinalNewlines"
+  parseJSON = Aeson.withObject "FormattingOptions" $ \arg -> FormattingOptions <$> arg Aeson..: "tabSize" <*> arg Aeson..: "insertSpaces" <*> arg Language.LSP.Protocol.Types.Common..:!? "trimTrailingWhitespace" <*> arg Language.LSP.Protocol.Types.Common..:!? "insertFinalNewline" <*> arg Language.LSP.Protocol.Types.Common..:!? "trimFinalNewlines"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/FullDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,["items" Aeson..= arg2]]
 
 instance Aeson.FromJSON FullDocumentDiagnosticReport where
-  parseJSON = Aeson.withObject "FullDocumentDiagnosticReport" $ \arg -> FullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Aeson..:! "resultId" <*> arg Aeson..: "items"
+  parseJSON = Aeson.withObject "FullDocumentDiagnosticReport" $ \arg -> FullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "resultId" <*> arg Aeson..: "items"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/GeneralClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,13 +13,12 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.MarkdownClientCapabilities
 import qualified Language.LSP.Protocol.Internal.Types.PositionEncodingKind
 import qualified Language.LSP.Protocol.Internal.Types.RegularExpressionsClientCapabilities
+import qualified Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -34,7 +35,7 @@
 
   @since 3.17.0
   -}
-  _staleRequestSupport :: (Maybe (Row.Rec ("cancel" Row..== Bool Row..+ ("retryOnContentModified" Row..== [Data.Text.Text] Row..+ Row.Empty))))
+  _staleRequestSupport :: (Maybe Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions.StaleRequestSupportOptions)
   , {-|
   Client capabilities specific to regular expressions.
 
@@ -80,4 +81,4 @@
     ,"positionEncodings" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON GeneralClientCapabilities where
-  parseJSON = Aeson.withObject "GeneralClientCapabilities" $ \arg -> GeneralClientCapabilities <$> arg Aeson..:! "staleRequestSupport" <*> arg Aeson..:! "regularExpressions" <*> arg Aeson..:! "markdown" <*> arg Aeson..:! "positionEncodings"
+  parseJSON = Aeson.withObject "GeneralClientCapabilities" $ \arg -> GeneralClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "staleRequestSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "regularExpressions" <*> arg Language.LSP.Protocol.Types.Common..:!? "markdown" <*> arg Language.LSP.Protocol.Types.Common..:!? "positionEncodings"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs b/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/GlobPattern.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Hover.hs b/generated/Language/LSP/Protocol/Internal/Types/Hover.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Hover.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Hover.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"range" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON Hover where
-  parseJSON = Aeson.withObject "Hover" $ \arg -> Hover <$> arg Aeson..: "contents" <*> arg Aeson..:! "range"
+  parseJSON = Aeson.withObject "Hover" $ \arg -> Hover <$> arg Aeson..: "contents" <*> arg Language.LSP.Protocol.Types.Common..:!? "range"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/HoverClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"contentFormat" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON HoverClientCapabilities where
-  parseJSON = Aeson.withObject "HoverClientCapabilities" $ \arg -> HoverClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "contentFormat"
+  parseJSON = Aeson.withObject "HoverClientCapabilities" $ \arg -> HoverClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "contentFormat"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/HoverOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (HoverOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON HoverOptions where
-  parseJSON = Aeson.withObject "HoverOptions" $ \arg -> HoverOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "HoverOptions" $ \arg -> HoverOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs b/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/HoverParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"workDoneToken" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON HoverParams where
-  parseJSON = Aeson.withObject "HoverParams" $ \arg -> HoverParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "HoverParams" $ \arg -> HoverParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/HoverRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON HoverRegistrationOptions where
-  parseJSON = Aeson.withObject "HoverRegistrationOptions" $ \arg -> HoverRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "HoverRegistrationOptions" $ \arg -> HoverRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ImplementationClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"linkSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ImplementationClientCapabilities where
-  parseJSON = Aeson.withObject "ImplementationClientCapabilities" $ \arg -> ImplementationClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "linkSupport"
+  parseJSON = Aeson.withObject "ImplementationClientCapabilities" $ \arg -> ImplementationClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ImplementationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (ImplementationOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON ImplementationOptions where
-  parseJSON = Aeson.withObject "ImplementationOptions" $ \arg -> ImplementationOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "ImplementationOptions" $ \arg -> ImplementationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ImplementationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON ImplementationParams where
-  parseJSON = Aeson.withObject "ImplementationParams" $ \arg -> ImplementationParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "ImplementationParams" $ \arg -> ImplementationParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ImplementationRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ImplementationRegistrationOptions where
-  parseJSON = Aeson.withObject "ImplementationRegistrationOptions" $ \arg -> ImplementationRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "ImplementationRegistrationOptions" $ \arg -> ImplementationRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs b/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InitializeError.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InitializeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,13 +14,13 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.ClientCapabilities
+import qualified Language.LSP.Protocol.Internal.Types.ClientInfo
 import qualified Language.LSP.Protocol.Internal.Types.ProgressToken
-import qualified Language.LSP.Protocol.Internal.Types.TraceValues
+import qualified Language.LSP.Protocol.Internal.Types.TraceValue
 import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFolder
 import qualified Language.LSP.Protocol.Types.Common
 import qualified Language.LSP.Protocol.Types.Uri
@@ -44,7 +46,7 @@
 
   @since 3.15.0
   -}
-  _clientInfo :: (Maybe (Row.Rec ("name" Row..== Data.Text.Text Row..+ ("version" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty))))
+  _clientInfo :: (Maybe Language.LSP.Protocol.Internal.Types.ClientInfo.ClientInfo)
   , {-|
   The locale the client is currently showing the user interface
   in. This must not necessarily be the locale of the operating
@@ -82,7 +84,7 @@
   , {-|
   The initial trace setting. If omitted trace is disabled ('off').
   -}
-  _trace :: (Maybe Language.LSP.Protocol.Internal.Types.TraceValues.TraceValues)
+  _trace :: (Maybe Language.LSP.Protocol.Internal.Types.TraceValue.TraceValue)
   , {-|
   The workspace folders configured in the client when the server starts.
 
@@ -111,4 +113,4 @@
     ,"workspaceFolders" Language.LSP.Protocol.Types.Common..=? arg9]
 
 instance Aeson.FromJSON InitializeParams where
-  parseJSON = Aeson.withObject "InitializeParams" $ \arg -> InitializeParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "processId" <*> arg Aeson..:! "clientInfo" <*> arg Aeson..:! "locale" <*> arg Aeson..:! "rootPath" <*> arg Aeson..: "rootUri" <*> arg Aeson..: "capabilities" <*> arg Aeson..:! "initializationOptions" <*> arg Aeson..:! "trace" <*> arg Aeson..:! "workspaceFolders"
+  parseJSON = Aeson.withObject "InitializeParams" $ \arg -> InitializeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "processId" <*> arg Language.LSP.Protocol.Types.Common..:!? "clientInfo" <*> arg Language.LSP.Protocol.Types.Common..:!? "locale" <*> arg Language.LSP.Protocol.Types.Common..:!? "rootPath" <*> arg Aeson..: "rootUri" <*> arg Aeson..: "capabilities" <*> arg Language.LSP.Protocol.Types.Common..:!? "initializationOptions" <*> arg Language.LSP.Protocol.Types.Common..:!? "trace" <*> arg Language.LSP.Protocol.Types.Common..:!? "workspaceFolders"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs b/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InitializeResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.ServerCapabilities
+import qualified Language.LSP.Protocol.Internal.Types.ServerInfo
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -31,7 +32,7 @@
 
   @since 3.15.0
   -}
-  _serverInfo :: (Maybe (Row.Rec ("name" Row..== Data.Text.Text Row..+ ("version" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty))))
+  _serverInfo :: (Maybe Language.LSP.Protocol.Internal.Types.ServerInfo.ServerInfo)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -42,4 +43,4 @@
     ,"serverInfo" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON InitializeResult where
-  parseJSON = Aeson.withObject "InitializeResult" $ \arg -> InitializeResult <$> arg Aeson..: "capabilities" <*> arg Aeson..:! "serverInfo"
+  parseJSON = Aeson.withObject "InitializeResult" $ \arg -> InitializeResult <$> arg Aeson..: "capabilities" <*> arg Language.LSP.Protocol.Types.Common..:!? "serverInfo"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs b/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InitializedParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHint.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -30,6 +32,9 @@
 data InlayHint = InlayHint 
   { {-|
   The position of this hint.
+
+  If multiple hints have the same position, they will be shown in the order
+  they appear in the response.
   -}
   _position :: Language.LSP.Protocol.Internal.Types.Position.Position
   , {-|
@@ -93,4 +98,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg7]
 
 instance Aeson.FromJSON InlayHint where
-  parseJSON = Aeson.withObject "InlayHint" $ \arg -> InlayHint <$> arg Aeson..: "position" <*> arg Aeson..: "label" <*> arg Aeson..:! "kind" <*> arg Aeson..:! "textEdits" <*> arg Aeson..:! "tooltip" <*> arg Aeson..:! "paddingLeft" <*> arg Aeson..:! "paddingRight" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "InlayHint" $ \arg -> InlayHint <$> arg Aeson..: "position" <*> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "textEdits" <*> arg Language.LSP.Protocol.Types.Common..:!? "tooltip" <*> arg Language.LSP.Protocol.Types.Common..:!? "paddingLeft" <*> arg Language.LSP.Protocol.Types.Common..:!? "paddingRight" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,9 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -31,7 +32,7 @@
   Indicates which properties a client can resolve lazily on an inlay
   hint.
   -}
-  _resolveSupport :: (Maybe (Row.Rec ("properties" Row..== [Data.Text.Text] Row..+ Row.Empty)))
+  _resolveSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions.ClientInlayHintResolveOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -42,4 +43,4 @@
     ,"resolveSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON InlayHintClientCapabilities where
-  parseJSON = Aeson.withObject "InlayHintClientCapabilities" $ \arg -> InlayHintClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "resolveSupport"
+  parseJSON = Aeson.withObject "InlayHintClientCapabilities" $ \arg -> InlayHintClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -35,7 +37,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InlayHintKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InlayHintKind)
   deriving Pretty via (ViaJSON InlayHintKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum InlayHintKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintLabelPart.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -69,4 +71,4 @@
     ,"command" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON InlayHintLabelPart where
-  parseJSON = Aeson.withObject "InlayHintLabelPart" $ \arg -> InlayHintLabelPart <$> arg Aeson..: "value" <*> arg Aeson..:! "tooltip" <*> arg Aeson..:! "location" <*> arg Aeson..:! "command"
+  parseJSON = Aeson.withObject "InlayHintLabelPart" $ \arg -> InlayHintLabelPart <$> arg Aeson..: "value" <*> arg Language.LSP.Protocol.Types.Common..:!? "tooltip" <*> arg Language.LSP.Protocol.Types.Common..:!? "location" <*> arg Language.LSP.Protocol.Types.Common..:!? "command"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON InlayHintOptions where
-  parseJSON = Aeson.withObject "InlayHintOptions" $ \arg -> InlayHintOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "InlayHintOptions" $ \arg -> InlayHintOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,["range" Aeson..= arg2]]
 
 instance Aeson.FromJSON InlayHintParams where
-  parseJSON = Aeson.withObject "InlayHintParams" $ \arg -> InlayHintParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range"
+  parseJSON = Aeson.withObject "InlayHintParams" $ \arg -> InlayHintParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -54,4 +56,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON InlayHintRegistrationOptions where
-  parseJSON = Aeson.withObject "InlayHintRegistrationOptions" $ \arg -> InlayHintRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider" <*> arg Aeson..: "documentSelector" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "InlayHintRegistrationOptions" $ \arg -> InlayHintRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider" <*> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlayHintWorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
   toJSON (InlayHintWorkspaceClientCapabilities arg0) = Aeson.object $ concat $  ["refreshSupport" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON InlayHintWorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "InlayHintWorkspaceClientCapabilities" $ \arg -> InlayHintWorkspaceClientCapabilities <$> arg Aeson..:! "refreshSupport"
+  parseJSON = Aeson.withObject "InlayHintWorkspaceClientCapabilities" $ \arg -> InlayHintWorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "refreshSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValue.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (InlineValueClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON InlineValueClientCapabilities where
-  parseJSON = Aeson.withObject "InlineValueClientCapabilities" $ \arg -> InlineValueClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "InlineValueClientCapabilities" $ \arg -> InlineValueClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueContext.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueEvaluatableExpression.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -44,4 +46,4 @@
     ,"expression" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON InlineValueEvaluatableExpression where
-  parseJSON = Aeson.withObject "InlineValueEvaluatableExpression" $ \arg -> InlineValueEvaluatableExpression <$> arg Aeson..: "range" <*> arg Aeson..:! "expression"
+  parseJSON = Aeson.withObject "InlineValueEvaluatableExpression" $ \arg -> InlineValueEvaluatableExpression <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "expression"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (InlineValueOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON InlineValueOptions where
-  parseJSON = Aeson.withObject "InlineValueOptions" $ \arg -> InlineValueOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "InlineValueOptions" $ \arg -> InlineValueOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -54,4 +56,4 @@
     ,["context" Aeson..= arg3]]
 
 instance Aeson.FromJSON InlineValueParams where
-  parseJSON = Aeson.withObject "InlineValueParams" $ \arg -> InlineValueParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "context"
+  parseJSON = Aeson.withObject "InlineValueParams" $ \arg -> InlineValueParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range" <*> arg Aeson..: "context"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON InlineValueRegistrationOptions where
-  parseJSON = Aeson.withObject "InlineValueRegistrationOptions" $ \arg -> InlineValueRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "InlineValueRegistrationOptions" $ \arg -> InlineValueRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueText.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueVariableLookup.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,["caseSensitiveLookup" Aeson..= arg2]]
 
 instance Aeson.FromJSON InlineValueVariableLookup where
-  parseJSON = Aeson.withObject "InlineValueVariableLookup" $ \arg -> InlineValueVariableLookup <$> arg Aeson..: "range" <*> arg Aeson..:! "variableName" <*> arg Aeson..: "caseSensitiveLookup"
+  parseJSON = Aeson.withObject "InlineValueVariableLookup" $ \arg -> InlineValueVariableLookup <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "variableName" <*> arg Aeson..: "caseSensitiveLookup"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InlineValueWorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
   toJSON (InlineValueWorkspaceClientCapabilities arg0) = Aeson.object $ concat $  ["refreshSupport" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON InlineValueWorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "InlineValueWorkspaceClientCapabilities" $ \arg -> InlineValueWorkspaceClientCapabilities <$> arg Aeson..:! "refreshSupport"
+  parseJSON = Aeson.withObject "InlineValueWorkspaceClientCapabilities" $ \arg -> InlineValueWorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "refreshSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InsertReplaceEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs b/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InsertTextFormat.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,7 +43,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InsertTextFormat Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InsertTextFormat)
   deriving Pretty via (ViaJSON InsertTextFormat)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum InsertTextFormat where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs b/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/InsertTextMode.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,7 +48,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InsertTextMode Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum InsertTextMode)
   deriving Pretty via (ViaJSON InsertTextMode)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum InsertTextMode where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs b/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LSPErrorCodes.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -59,7 +61,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum LSPErrorCodes Language.LSP.Protocol.Types.Common.Int32)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum LSPErrorCodes)
   deriving Pretty via (ViaJSON LSPErrorCodes)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum LSPErrorCodes where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LanguageKind.hs b/generated/Language/LSP/Protocol/Internal/Types/LanguageKind.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/LanguageKind.hs
@@ -0,0 +1,450 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.LanguageKind where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Set
+import qualified Data.String
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.LspEnum
+
+{-|
+Predefined Language kinds
+@since 3.18.0
+@proposed
+-}
+data LanguageKind = 
+    {-|
+
+  -}
+  LanguageKind_ABAP
+  | {-|
+
+  -}
+  LanguageKind_WindowsBat
+  | {-|
+
+  -}
+  LanguageKind_BibTeX
+  | {-|
+
+  -}
+  LanguageKind_Clojure
+  | {-|
+
+  -}
+  LanguageKind_Coffeescript
+  | {-|
+
+  -}
+  LanguageKind_C
+  | {-|
+
+  -}
+  LanguageKind_CPP
+  | {-|
+
+  -}
+  LanguageKind_CSharp
+  | {-|
+
+  -}
+  LanguageKind_CSS
+  | {-|
+
+  -}
+  LanguageKind_Diff
+  | {-|
+
+  -}
+  LanguageKind_Dart
+  | {-|
+
+  -}
+  LanguageKind_Dockerfile
+  | {-|
+
+  -}
+  LanguageKind_Elixir
+  | {-|
+
+  -}
+  LanguageKind_Erlang
+  | {-|
+
+  -}
+  LanguageKind_FSharp
+  | {-|
+
+  -}
+  LanguageKind_GitCommit
+  | {-|
+
+  -}
+  LanguageKind_GitRebase
+  | {-|
+
+  -}
+  LanguageKind_Go
+  | {-|
+
+  -}
+  LanguageKind_Groovy
+  | {-|
+
+  -}
+  LanguageKind_Handlebars
+  | {-|
+
+  -}
+  LanguageKind_Haskell
+  | {-|
+
+  -}
+  LanguageKind_HTML
+  | {-|
+
+  -}
+  LanguageKind_Ini
+  | {-|
+
+  -}
+  LanguageKind_Java
+  | {-|
+
+  -}
+  LanguageKind_JavaScript
+  | {-|
+
+  -}
+  LanguageKind_JavaScriptReact
+  | {-|
+
+  -}
+  LanguageKind_JSON
+  | {-|
+
+  -}
+  LanguageKind_LaTeX
+  | {-|
+
+  -}
+  LanguageKind_Less
+  | {-|
+
+  -}
+  LanguageKind_Lua
+  | {-|
+
+  -}
+  LanguageKind_Makefile
+  | {-|
+
+  -}
+  LanguageKind_Markdown
+  | {-|
+
+  -}
+  LanguageKind_ObjectiveC
+  | {-|
+
+  -}
+  LanguageKind_ObjectiveCPP
+  | {-|
+
+  -}
+  LanguageKind_Perl
+  | {-|
+
+  -}
+  LanguageKind_Perl6
+  | {-|
+
+  -}
+  LanguageKind_PHP
+  | {-|
+
+  -}
+  LanguageKind_Powershell
+  | {-|
+
+  -}
+  LanguageKind_Pug
+  | {-|
+
+  -}
+  LanguageKind_Python
+  | {-|
+
+  -}
+  LanguageKind_R
+  | {-|
+
+  -}
+  LanguageKind_Razor
+  | {-|
+
+  -}
+  LanguageKind_Ruby
+  | {-|
+
+  -}
+  LanguageKind_Rust
+  | {-|
+
+  -}
+  LanguageKind_SCSS
+  | {-|
+
+  -}
+  LanguageKind_SASS
+  | {-|
+
+  -}
+  LanguageKind_Scala
+  | {-|
+
+  -}
+  LanguageKind_ShaderLab
+  | {-|
+
+  -}
+  LanguageKind_ShellScript
+  | {-|
+
+  -}
+  LanguageKind_SQL
+  | {-|
+
+  -}
+  LanguageKind_Swift
+  | {-|
+
+  -}
+  LanguageKind_TypeScript
+  | {-|
+
+  -}
+  LanguageKind_TypeScriptReact
+  | {-|
+
+  -}
+  LanguageKind_TeX
+  | {-|
+
+  -}
+  LanguageKind_VisualBasic
+  | {-|
+
+  -}
+  LanguageKind_XML
+  | {-|
+
+  -}
+  LanguageKind_XSL
+  | {-|
+
+  -}
+  LanguageKind_YAML
+  | LanguageKind_Custom Data.Text.Text
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving ( Aeson.ToJSON
+  , Aeson.FromJSON
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum LanguageKind)
+  deriving Pretty via (ViaJSON LanguageKind)
+
+instance Language.LSP.Protocol.Types.LspEnum.LspEnum LanguageKind where
+  knownValues = Data.Set.fromList [LanguageKind_ABAP
+    ,LanguageKind_WindowsBat
+    ,LanguageKind_BibTeX
+    ,LanguageKind_Clojure
+    ,LanguageKind_Coffeescript
+    ,LanguageKind_C
+    ,LanguageKind_CPP
+    ,LanguageKind_CSharp
+    ,LanguageKind_CSS
+    ,LanguageKind_Diff
+    ,LanguageKind_Dart
+    ,LanguageKind_Dockerfile
+    ,LanguageKind_Elixir
+    ,LanguageKind_Erlang
+    ,LanguageKind_FSharp
+    ,LanguageKind_GitCommit
+    ,LanguageKind_GitRebase
+    ,LanguageKind_Go
+    ,LanguageKind_Groovy
+    ,LanguageKind_Handlebars
+    ,LanguageKind_Haskell
+    ,LanguageKind_HTML
+    ,LanguageKind_Ini
+    ,LanguageKind_Java
+    ,LanguageKind_JavaScript
+    ,LanguageKind_JavaScriptReact
+    ,LanguageKind_JSON
+    ,LanguageKind_LaTeX
+    ,LanguageKind_Less
+    ,LanguageKind_Lua
+    ,LanguageKind_Makefile
+    ,LanguageKind_Markdown
+    ,LanguageKind_ObjectiveC
+    ,LanguageKind_ObjectiveCPP
+    ,LanguageKind_Perl
+    ,LanguageKind_Perl6
+    ,LanguageKind_PHP
+    ,LanguageKind_Powershell
+    ,LanguageKind_Pug
+    ,LanguageKind_Python
+    ,LanguageKind_R
+    ,LanguageKind_Razor
+    ,LanguageKind_Ruby
+    ,LanguageKind_Rust
+    ,LanguageKind_SCSS
+    ,LanguageKind_SASS
+    ,LanguageKind_Scala
+    ,LanguageKind_ShaderLab
+    ,LanguageKind_ShellScript
+    ,LanguageKind_SQL
+    ,LanguageKind_Swift
+    ,LanguageKind_TypeScript
+    ,LanguageKind_TypeScriptReact
+    ,LanguageKind_TeX
+    ,LanguageKind_VisualBasic
+    ,LanguageKind_XML
+    ,LanguageKind_XSL
+    ,LanguageKind_YAML]
+  type EnumBaseType LanguageKind = Data.Text.Text
+  toEnumBaseType LanguageKind_ABAP = "abap"
+  toEnumBaseType LanguageKind_WindowsBat = "bat"
+  toEnumBaseType LanguageKind_BibTeX = "bibtex"
+  toEnumBaseType LanguageKind_Clojure = "clojure"
+  toEnumBaseType LanguageKind_Coffeescript = "coffeescript"
+  toEnumBaseType LanguageKind_C = "c"
+  toEnumBaseType LanguageKind_CPP = "cpp"
+  toEnumBaseType LanguageKind_CSharp = "csharp"
+  toEnumBaseType LanguageKind_CSS = "css"
+  toEnumBaseType LanguageKind_Diff = "diff"
+  toEnumBaseType LanguageKind_Dart = "dart"
+  toEnumBaseType LanguageKind_Dockerfile = "dockerfile"
+  toEnumBaseType LanguageKind_Elixir = "elixir"
+  toEnumBaseType LanguageKind_Erlang = "erlang"
+  toEnumBaseType LanguageKind_FSharp = "fsharp"
+  toEnumBaseType LanguageKind_GitCommit = "git-commit"
+  toEnumBaseType LanguageKind_GitRebase = "rebase"
+  toEnumBaseType LanguageKind_Go = "go"
+  toEnumBaseType LanguageKind_Groovy = "groovy"
+  toEnumBaseType LanguageKind_Handlebars = "handlebars"
+  toEnumBaseType LanguageKind_Haskell = "haskell"
+  toEnumBaseType LanguageKind_HTML = "html"
+  toEnumBaseType LanguageKind_Ini = "ini"
+  toEnumBaseType LanguageKind_Java = "java"
+  toEnumBaseType LanguageKind_JavaScript = "javascript"
+  toEnumBaseType LanguageKind_JavaScriptReact = "javascriptreact"
+  toEnumBaseType LanguageKind_JSON = "json"
+  toEnumBaseType LanguageKind_LaTeX = "latex"
+  toEnumBaseType LanguageKind_Less = "less"
+  toEnumBaseType LanguageKind_Lua = "lua"
+  toEnumBaseType LanguageKind_Makefile = "makefile"
+  toEnumBaseType LanguageKind_Markdown = "markdown"
+  toEnumBaseType LanguageKind_ObjectiveC = "objective-c"
+  toEnumBaseType LanguageKind_ObjectiveCPP = "objective-cpp"
+  toEnumBaseType LanguageKind_Perl = "perl"
+  toEnumBaseType LanguageKind_Perl6 = "perl6"
+  toEnumBaseType LanguageKind_PHP = "php"
+  toEnumBaseType LanguageKind_Powershell = "powershell"
+  toEnumBaseType LanguageKind_Pug = "jade"
+  toEnumBaseType LanguageKind_Python = "python"
+  toEnumBaseType LanguageKind_R = "r"
+  toEnumBaseType LanguageKind_Razor = "razor"
+  toEnumBaseType LanguageKind_Ruby = "ruby"
+  toEnumBaseType LanguageKind_Rust = "rust"
+  toEnumBaseType LanguageKind_SCSS = "scss"
+  toEnumBaseType LanguageKind_SASS = "sass"
+  toEnumBaseType LanguageKind_Scala = "scala"
+  toEnumBaseType LanguageKind_ShaderLab = "shaderlab"
+  toEnumBaseType LanguageKind_ShellScript = "shellscript"
+  toEnumBaseType LanguageKind_SQL = "sql"
+  toEnumBaseType LanguageKind_Swift = "swift"
+  toEnumBaseType LanguageKind_TypeScript = "typescript"
+  toEnumBaseType LanguageKind_TypeScriptReact = "typescriptreact"
+  toEnumBaseType LanguageKind_TeX = "tex"
+  toEnumBaseType LanguageKind_VisualBasic = "vb"
+  toEnumBaseType LanguageKind_XML = "xml"
+  toEnumBaseType LanguageKind_XSL = "xsl"
+  toEnumBaseType LanguageKind_YAML = "yaml"
+  toEnumBaseType (LanguageKind_Custom arg) = arg
+
+instance Language.LSP.Protocol.Types.LspEnum.LspOpenEnum LanguageKind where
+  fromOpenEnumBaseType "abap" = LanguageKind_ABAP
+  fromOpenEnumBaseType "bat" = LanguageKind_WindowsBat
+  fromOpenEnumBaseType "bibtex" = LanguageKind_BibTeX
+  fromOpenEnumBaseType "clojure" = LanguageKind_Clojure
+  fromOpenEnumBaseType "coffeescript" = LanguageKind_Coffeescript
+  fromOpenEnumBaseType "c" = LanguageKind_C
+  fromOpenEnumBaseType "cpp" = LanguageKind_CPP
+  fromOpenEnumBaseType "csharp" = LanguageKind_CSharp
+  fromOpenEnumBaseType "css" = LanguageKind_CSS
+  fromOpenEnumBaseType "diff" = LanguageKind_Diff
+  fromOpenEnumBaseType "dart" = LanguageKind_Dart
+  fromOpenEnumBaseType "dockerfile" = LanguageKind_Dockerfile
+  fromOpenEnumBaseType "elixir" = LanguageKind_Elixir
+  fromOpenEnumBaseType "erlang" = LanguageKind_Erlang
+  fromOpenEnumBaseType "fsharp" = LanguageKind_FSharp
+  fromOpenEnumBaseType "git-commit" = LanguageKind_GitCommit
+  fromOpenEnumBaseType "rebase" = LanguageKind_GitRebase
+  fromOpenEnumBaseType "go" = LanguageKind_Go
+  fromOpenEnumBaseType "groovy" = LanguageKind_Groovy
+  fromOpenEnumBaseType "handlebars" = LanguageKind_Handlebars
+  fromOpenEnumBaseType "haskell" = LanguageKind_Haskell
+  fromOpenEnumBaseType "html" = LanguageKind_HTML
+  fromOpenEnumBaseType "ini" = LanguageKind_Ini
+  fromOpenEnumBaseType "java" = LanguageKind_Java
+  fromOpenEnumBaseType "javascript" = LanguageKind_JavaScript
+  fromOpenEnumBaseType "javascriptreact" = LanguageKind_JavaScriptReact
+  fromOpenEnumBaseType "json" = LanguageKind_JSON
+  fromOpenEnumBaseType "latex" = LanguageKind_LaTeX
+  fromOpenEnumBaseType "less" = LanguageKind_Less
+  fromOpenEnumBaseType "lua" = LanguageKind_Lua
+  fromOpenEnumBaseType "makefile" = LanguageKind_Makefile
+  fromOpenEnumBaseType "markdown" = LanguageKind_Markdown
+  fromOpenEnumBaseType "objective-c" = LanguageKind_ObjectiveC
+  fromOpenEnumBaseType "objective-cpp" = LanguageKind_ObjectiveCPP
+  fromOpenEnumBaseType "perl" = LanguageKind_Perl
+  fromOpenEnumBaseType "perl6" = LanguageKind_Perl6
+  fromOpenEnumBaseType "php" = LanguageKind_PHP
+  fromOpenEnumBaseType "powershell" = LanguageKind_Powershell
+  fromOpenEnumBaseType "jade" = LanguageKind_Pug
+  fromOpenEnumBaseType "python" = LanguageKind_Python
+  fromOpenEnumBaseType "r" = LanguageKind_R
+  fromOpenEnumBaseType "razor" = LanguageKind_Razor
+  fromOpenEnumBaseType "ruby" = LanguageKind_Ruby
+  fromOpenEnumBaseType "rust" = LanguageKind_Rust
+  fromOpenEnumBaseType "scss" = LanguageKind_SCSS
+  fromOpenEnumBaseType "sass" = LanguageKind_SASS
+  fromOpenEnumBaseType "scala" = LanguageKind_Scala
+  fromOpenEnumBaseType "shaderlab" = LanguageKind_ShaderLab
+  fromOpenEnumBaseType "shellscript" = LanguageKind_ShellScript
+  fromOpenEnumBaseType "sql" = LanguageKind_SQL
+  fromOpenEnumBaseType "swift" = LanguageKind_Swift
+  fromOpenEnumBaseType "typescript" = LanguageKind_TypeScript
+  fromOpenEnumBaseType "typescriptreact" = LanguageKind_TypeScriptReact
+  fromOpenEnumBaseType "tex" = LanguageKind_TeX
+  fromOpenEnumBaseType "vb" = LanguageKind_VisualBasic
+  fromOpenEnumBaseType "xml" = LanguageKind_XML
+  fromOpenEnumBaseType "xsl" = LanguageKind_XSL
+  fromOpenEnumBaseType "yaml" = LanguageKind_YAML
+  fromOpenEnumBaseType arg = LanguageKind_Custom arg
+
+
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -36,4 +38,4 @@
   toJSON (LinkedEditingRangeClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON LinkedEditingRangeClientCapabilities where
-  parseJSON = Aeson.withObject "LinkedEditingRangeClientCapabilities" $ \arg -> LinkedEditingRangeClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "LinkedEditingRangeClientCapabilities" $ \arg -> LinkedEditingRangeClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (LinkedEditingRangeOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON LinkedEditingRangeOptions where
-  parseJSON = Aeson.withObject "LinkedEditingRangeOptions" $ \arg -> LinkedEditingRangeOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "LinkedEditingRangeOptions" $ \arg -> LinkedEditingRangeOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"workDoneToken" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON LinkedEditingRangeParams where
-  parseJSON = Aeson.withObject "LinkedEditingRangeParams" $ \arg -> LinkedEditingRangeParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "LinkedEditingRangeParams" $ \arg -> LinkedEditingRangeParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRangeRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON LinkedEditingRangeRegistrationOptions where
-  parseJSON = Aeson.withObject "LinkedEditingRangeRegistrationOptions" $ \arg -> LinkedEditingRangeRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "LinkedEditingRangeRegistrationOptions" $ \arg -> LinkedEditingRangeRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LinkedEditingRanges.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -44,4 +46,4 @@
     ,"wordPattern" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON LinkedEditingRanges where
-  parseJSON = Aeson.withObject "LinkedEditingRanges" $ \arg -> LinkedEditingRanges <$> arg Aeson..: "ranges" <*> arg Aeson..:! "wordPattern"
+  parseJSON = Aeson.withObject "LinkedEditingRanges" $ \arg -> LinkedEditingRanges <$> arg Aeson..: "ranges" <*> arg Language.LSP.Protocol.Types.Common..:!? "wordPattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Location.hs b/generated/Language/LSP/Protocol/Internal/Types/Location.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Location.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Location.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs b/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LocationLink.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -56,4 +58,4 @@
     ,["targetSelectionRange" Aeson..= arg3]]
 
 instance Aeson.FromJSON LocationLink where
-  parseJSON = Aeson.withObject "LocationLink" $ \arg -> LocationLink <$> arg Aeson..:! "originSelectionRange" <*> arg Aeson..: "targetUri" <*> arg Aeson..: "targetRange" <*> arg Aeson..: "targetSelectionRange"
+  parseJSON = Aeson.withObject "LocationLink" $ \arg -> LocationLink <$> arg Language.LSP.Protocol.Types.Common..:!? "originSelectionRange" <*> arg Aeson..: "targetUri" <*> arg Aeson..: "targetRange" <*> arg Aeson..: "targetSelectionRange"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LocationUriOnly.hs b/generated/Language/LSP/Protocol/Internal/Types/LocationUriOnly.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/LocationUriOnly.hs
@@ -0,0 +1,41 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.LocationUriOnly where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+import qualified Language.LSP.Protocol.Types.Uri
+
+{-|
+Location with only uri and does not include range.
+
+@since 3.18.0
+@proposed
+-}
+data LocationUriOnly = LocationUriOnly 
+  { {-|
+
+  -}
+  _uri :: Language.LSP.Protocol.Types.Uri.Uri
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON LocationUriOnly)
+
+instance Aeson.ToJSON LocationUriOnly where
+  toJSON (LocationUriOnly arg0) = Aeson.object $ concat $  [["uri" Aeson..= arg0]]
+
+instance Aeson.FromJSON LocationUriOnly where
+  parseJSON = Aeson.withObject "LocationUriOnly" $ \arg -> LocationUriOnly <$> arg Aeson..: "uri"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs b/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LogMessageParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs b/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/LogTraceParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
     ,"verbose" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON LogTraceParams where
-  parseJSON = Aeson.withObject "LogTraceParams" $ \arg -> LogTraceParams <$> arg Aeson..: "message" <*> arg Aeson..:! "verbose"
+  parseJSON = Aeson.withObject "LogTraceParams" $ \arg -> LogTraceParams <$> arg Aeson..: "message" <*> arg Language.LSP.Protocol.Types.Common..:!? "verbose"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MarkdownClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"allowedTags" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON MarkdownClientCapabilities where
-  parseJSON = Aeson.withObject "MarkdownClientCapabilities" $ \arg -> MarkdownClientCapabilities <$> arg Aeson..: "parser" <*> arg Aeson..:! "version" <*> arg Aeson..:! "allowedTags"
+  parseJSON = Aeson.withObject "MarkdownClientCapabilities" $ \arg -> MarkdownClientCapabilities <$> arg Aeson..: "parser" <*> arg Language.LSP.Protocol.Types.Common..:!? "version" <*> arg Language.LSP.Protocol.Types.Common..:!? "allowedTags"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs b/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MarkedString.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage
 import qualified Language.LSP.Protocol.Types.Common
 
 {-# DEPRECATED MarkedString "use MarkupContent instead." #-}
@@ -32,7 +34,7 @@
 Note that markdown strings will be sanitized - that means html will be escaped.
 @deprecated use MarkupContent instead.
 -}
-newtype MarkedString = MarkedString (Data.Text.Text Language.LSP.Protocol.Types.Common.|? (Row.Rec ("language" Row..== Data.Text.Text Row..+ ("value" Row..== Data.Text.Text Row..+ Row.Empty))))
+newtype MarkedString = MarkedString (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage.MarkedStringWithLanguage)
   deriving newtype (Aeson.ToJSON, Aeson.FromJSON)
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MarkedStringWithLanguage.hs b/generated/Language/LSP/Protocol/Internal/Types/MarkedStringWithLanguage.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/MarkedStringWithLanguage.hs
@@ -0,0 +1,46 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-# DEPRECATED MarkedStringWithLanguage "use MarkupContent instead." #-}
+{-|
+@since 3.18.0
+@proposed
+@deprecated use MarkupContent instead.
+-}
+data MarkedStringWithLanguage = MarkedStringWithLanguage 
+  { {-|
+
+  -}
+  _language :: Data.Text.Text
+  , {-|
+
+  -}
+  _value :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON MarkedStringWithLanguage)
+
+instance Aeson.ToJSON MarkedStringWithLanguage where
+  toJSON (MarkedStringWithLanguage arg0 arg1) = Aeson.object $ concat $  [["language" Aeson..= arg0]
+    ,["value" Aeson..= arg1]]
+
+instance Aeson.FromJSON MarkedStringWithLanguage where
+  parseJSON = Aeson.withObject "MarkedStringWithLanguage" $ \arg -> MarkedStringWithLanguage <$> arg Aeson..: "language" <*> arg Aeson..: "value"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs b/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MarkupContent.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs b/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MarkupKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,7 +39,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MarkupKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MarkupKind)
   deriving Pretty via (ViaJSON MarkupKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum MarkupKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs b/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MessageActionItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs b/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MessageType.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,7 +43,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MessageType Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MessageType)
   deriving Pretty via (ViaJSON MessageType)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum MessageType where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs b/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Moniker.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -53,4 +55,4 @@
     ,"kind" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON Moniker where
-  parseJSON = Aeson.withObject "Moniker" $ \arg -> Moniker <$> arg Aeson..: "scheme" <*> arg Aeson..: "identifier" <*> arg Aeson..: "unique" <*> arg Aeson..:! "kind"
+  parseJSON = Aeson.withObject "Moniker" $ \arg -> Moniker <$> arg Aeson..: "scheme" <*> arg Aeson..: "identifier" <*> arg Aeson..: "unique" <*> arg Language.LSP.Protocol.Types.Common..:!? "kind"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MonikerClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -36,4 +38,4 @@
   toJSON (MonikerClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON MonikerClientCapabilities where
-  parseJSON = Aeson.withObject "MonikerClientCapabilities" $ \arg -> MonikerClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "MonikerClientCapabilities" $ \arg -> MonikerClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs b/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MonikerKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,7 +42,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MonikerKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum MonikerKind)
   deriving Pretty via (ViaJSON MonikerKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum MonikerKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MonikerOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (MonikerOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON MonikerOptions where
-  parseJSON = Aeson.withObject "MonikerOptions" $ \arg -> MonikerOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "MonikerOptions" $ \arg -> MonikerOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs b/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MonikerParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON MonikerParams where
-  parseJSON = Aeson.withObject "MonikerParams" $ \arg -> MonikerParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "MonikerParams" $ \arg -> MonikerParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/MonikerRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON MonikerRegistrationOptions where
-  parseJSON = Aeson.withObject "MonikerRegistrationOptions" $ \arg -> MonikerRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "MonikerRegistrationOptions" $ \arg -> MonikerRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookCell.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -61,4 +63,4 @@
     ,"executionSummary" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON NotebookCell where
-  parseJSON = Aeson.withObject "NotebookCell" $ \arg -> NotebookCell <$> arg Aeson..: "kind" <*> arg Aeson..: "document" <*> arg Aeson..:! "metadata" <*> arg Aeson..:! "executionSummary"
+  parseJSON = Aeson.withObject "NotebookCell" $ \arg -> NotebookCell <$> arg Aeson..: "kind" <*> arg Aeson..: "document" <*> arg Language.LSP.Protocol.Types.Common..:!? "metadata" <*> arg Language.LSP.Protocol.Types.Common..:!? "executionSummary"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellArrayChange.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"cells" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON NotebookCellArrayChange where
-  parseJSON = Aeson.withObject "NotebookCellArrayChange" $ \arg -> NotebookCellArrayChange <$> arg Aeson..: "start" <*> arg Aeson..: "deleteCount" <*> arg Aeson..:! "cells"
+  parseJSON = Aeson.withObject "NotebookCellArrayChange" $ \arg -> NotebookCellArrayChange <$> arg Aeson..: "start" <*> arg Aeson..: "deleteCount" <*> arg Language.LSP.Protocol.Types.Common..:!? "cells"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -35,7 +37,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum NotebookCellKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum NotebookCellKind)
   deriving Pretty via (ViaJSON NotebookCellKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum NotebookCellKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellLanguage.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellLanguage.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellLanguage.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookCellLanguage where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data NotebookCellLanguage = NotebookCellLanguage 
+  { {-|
+
+  -}
+  _language :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookCellLanguage)
+
+instance Aeson.ToJSON NotebookCellLanguage where
+  toJSON (NotebookCellLanguage arg0) = Aeson.object $ concat $  [["language" Aeson..= arg0]]
+
+instance Aeson.FromJSON NotebookCellLanguage where
+  parseJSON = Aeson.withObject "NotebookCellLanguage" $ \arg -> NotebookCellLanguage <$> arg Aeson..: "language"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookCellTextDocumentFilter.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"language" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON NotebookCellTextDocumentFilter where
-  parseJSON = Aeson.withObject "NotebookCellTextDocumentFilter" $ \arg -> NotebookCellTextDocumentFilter <$> arg Aeson..: "notebook" <*> arg Aeson..:! "language"
+  parseJSON = Aeson.withObject "NotebookCellTextDocumentFilter" $ \arg -> NotebookCellTextDocumentFilter <$> arg Aeson..: "notebook" <*> arg Language.LSP.Protocol.Types.Common..:!? "language"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocument.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -62,4 +64,4 @@
     ,["cells" Aeson..= arg4]]
 
 instance Aeson.FromJSON NotebookDocument where
-  parseJSON = Aeson.withObject "NotebookDocument" $ \arg -> NotebookDocument <$> arg Aeson..: "uri" <*> arg Aeson..: "notebookType" <*> arg Aeson..: "version" <*> arg Aeson..:! "metadata" <*> arg Aeson..: "cells"
+  parseJSON = Aeson.withObject "NotebookDocument" $ \arg -> NotebookDocument <$> arg Aeson..: "uri" <*> arg Aeson..: "notebookType" <*> arg Aeson..: "version" <*> arg Language.LSP.Protocol.Types.Common..:!? "metadata" <*> arg Aeson..: "cells"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChangeStructure.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChangeStructure.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChangeStructure.hs
@@ -0,0 +1,53 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentItem
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Structural changes to cells in a notebook document.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentCellChangeStructure = NotebookDocumentCellChangeStructure 
+  { {-|
+  The change to the cell array.
+  -}
+  _array :: Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange.NotebookCellArrayChange
+  , {-|
+  Additional opened cell text documents.
+  -}
+  _didOpen :: (Maybe [Language.LSP.Protocol.Internal.Types.TextDocumentItem.TextDocumentItem])
+  , {-|
+  Additional closed cell text documents.
+  -}
+  _didClose :: (Maybe [Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier.TextDocumentIdentifier])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentCellChangeStructure)
+
+instance Aeson.ToJSON NotebookDocumentCellChangeStructure where
+  toJSON (NotebookDocumentCellChangeStructure arg0 arg1 arg2) = Aeson.object $ concat $  [["array" Aeson..= arg0]
+    ,"didOpen" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"didClose" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON NotebookDocumentCellChangeStructure where
+  parseJSON = Aeson.withObject "NotebookDocumentCellChangeStructure" $ \arg -> NotebookDocumentCellChangeStructure <$> arg Aeson..: "array" <*> arg Language.LSP.Protocol.Types.Common..:!? "didOpen" <*> arg Language.LSP.Protocol.Types.Common..:!? "didClose"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChanges.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChanges.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellChanges.hs
@@ -0,0 +1,55 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.NotebookCell
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Cell changes to a notebook document.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentCellChanges = NotebookDocumentCellChanges 
+  { {-|
+  Changes to the cell structure to add or
+  remove cells.
+  -}
+  _structure :: (Maybe Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure.NotebookDocumentCellChangeStructure)
+  , {-|
+  Changes to notebook cells properties like its
+  kind, execution summary or metadata.
+  -}
+  _data_ :: (Maybe [Language.LSP.Protocol.Internal.Types.NotebookCell.NotebookCell])
+  , {-|
+  Changes to the text content of notebook cells.
+  -}
+  _textContent :: (Maybe [Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges.NotebookDocumentCellContentChanges])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentCellChanges)
+
+instance Aeson.ToJSON NotebookDocumentCellChanges where
+  toJSON (NotebookDocumentCellChanges arg0 arg1 arg2) = Aeson.object $ concat $  ["structure" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"data" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"textContent" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON NotebookDocumentCellChanges where
+  parseJSON = Aeson.withObject "NotebookDocumentCellChanges" $ \arg -> NotebookDocumentCellChanges <$> arg Language.LSP.Protocol.Types.Common..:!? "structure" <*> arg Language.LSP.Protocol.Types.Common..:!? "data" <*> arg Language.LSP.Protocol.Types.Common..:!? "textContent"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellContentChanges.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellContentChanges.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentCellContentChanges.hs
@@ -0,0 +1,47 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent
+import qualified Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Content changes to a cell in a notebook document.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentCellContentChanges = NotebookDocumentCellContentChanges 
+  { {-|
+
+  -}
+  _document :: Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier.VersionedTextDocumentIdentifier
+  , {-|
+
+  -}
+  _changes :: [Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent.TextDocumentContentChangeEvent]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentCellContentChanges)
+
+instance Aeson.ToJSON NotebookDocumentCellContentChanges where
+  toJSON (NotebookDocumentCellContentChanges arg0 arg1) = Aeson.object $ concat $  [["document" Aeson..= arg0]
+    ,["changes" Aeson..= arg1]]
+
+instance Aeson.FromJSON NotebookDocumentCellContentChanges where
+  parseJSON = Aeson.withObject "NotebookDocumentCellContentChanges" $ \arg -> NotebookDocumentCellContentChanges <$> arg Aeson..: "document" <*> arg Aeson..: "changes"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentChangeEvent.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,15 +14,9 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.NotebookCell
-import qualified Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
-import qualified Language.LSP.Protocol.Internal.Types.TextDocumentItem
-import qualified Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -38,7 +34,7 @@
   , {-|
   Changes to cells
   -}
-  _cells :: (Maybe (Row.Rec ("structure" Row..== (Maybe (Row.Rec ("array" Row..== Language.LSP.Protocol.Internal.Types.NotebookCellArrayChange.NotebookCellArrayChange Row..+ ("didOpen" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.TextDocumentItem.TextDocumentItem]) Row..+ ("didClose" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier.TextDocumentIdentifier]) Row..+ Row.Empty))))) Row..+ ("data" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.NotebookCell.NotebookCell]) Row..+ ("textContent" Row..== (Maybe [(Row.Rec ("document" Row..== Language.LSP.Protocol.Internal.Types.VersionedTextDocumentIdentifier.VersionedTextDocumentIdentifier Row..+ ("changes" Row..== [Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeEvent.TextDocumentContentChangeEvent] Row..+ Row.Empty)))]) Row..+ Row.Empty)))))
+  _cells :: (Maybe Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges.NotebookDocumentCellChanges)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -49,4 +45,4 @@
     ,"cells" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON NotebookDocumentChangeEvent where
-  parseJSON = Aeson.withObject "NotebookDocumentChangeEvent" $ \arg -> NotebookDocumentChangeEvent <$> arg Aeson..:! "metadata" <*> arg Aeson..:! "cells"
+  parseJSON = Aeson.withObject "NotebookDocumentChangeEvent" $ \arg -> NotebookDocumentChangeEvent <$> arg Language.LSP.Protocol.Types.Common..:!? "metadata" <*> arg Language.LSP.Protocol.Types.Common..:!? "cells"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilter.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,11 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -24,7 +27,7 @@
 
 @since 3.17.0
 -}
-newtype NotebookDocumentFilter = NotebookDocumentFilter ((Row.Rec ("notebookType" Row..== Data.Text.Text Row..+ ("scheme" Row..== (Maybe Data.Text.Text) Row..+ ("pattern" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty)))) Language.LSP.Protocol.Types.Common.|? ((Row.Rec ("notebookType" Row..== (Maybe Data.Text.Text) Row..+ ("scheme" Row..== Data.Text.Text Row..+ ("pattern" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty)))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("notebookType" Row..== (Maybe Data.Text.Text) Row..+ ("scheme" Row..== (Maybe Data.Text.Text) Row..+ ("pattern" Row..== Data.Text.Text Row..+ Row.Empty))))))
+newtype NotebookDocumentFilter = NotebookDocumentFilter (Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType.NotebookDocumentFilterNotebookType Language.LSP.Protocol.Types.Common.|? (Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme.NotebookDocumentFilterScheme Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern.NotebookDocumentFilterPattern))
   deriving newtype (Aeson.ToJSON, Aeson.FromJSON)
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterNotebookType.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterNotebookType.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterNotebookType.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A notebook document filter where `notebookType` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentFilterNotebookType = NotebookDocumentFilterNotebookType 
+  { {-|
+  The type of the enclosing notebook.
+  -}
+  _notebookType :: Data.Text.Text
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: (Maybe Data.Text.Text)
+  , {-|
+  A glob pattern.
+  -}
+  _pattern :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentFilterNotebookType)
+
+instance Aeson.ToJSON NotebookDocumentFilterNotebookType where
+  toJSON (NotebookDocumentFilterNotebookType arg0 arg1 arg2) = Aeson.object $ concat $  [["notebookType" Aeson..= arg0]
+    ,"scheme" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"pattern" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON NotebookDocumentFilterNotebookType where
+  parseJSON = Aeson.withObject "NotebookDocumentFilterNotebookType" $ \arg -> NotebookDocumentFilterNotebookType <$> arg Aeson..: "notebookType" <*> arg Language.LSP.Protocol.Types.Common..:!? "scheme" <*> arg Language.LSP.Protocol.Types.Common..:!? "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterPattern.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterPattern.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterPattern.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A notebook document filter where `pattern` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentFilterPattern = NotebookDocumentFilterPattern 
+  { {-|
+  The type of the enclosing notebook.
+  -}
+  _notebookType :: (Maybe Data.Text.Text)
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: (Maybe Data.Text.Text)
+  , {-|
+  A glob pattern.
+  -}
+  _pattern :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentFilterPattern)
+
+instance Aeson.ToJSON NotebookDocumentFilterPattern where
+  toJSON (NotebookDocumentFilterPattern arg0 arg1 arg2) = Aeson.object $ concat $  ["notebookType" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"scheme" Language.LSP.Protocol.Types.Common..=? arg1
+    ,["pattern" Aeson..= arg2]]
+
+instance Aeson.FromJSON NotebookDocumentFilterPattern where
+  parseJSON = Aeson.withObject "NotebookDocumentFilterPattern" $ \arg -> NotebookDocumentFilterPattern <$> arg Language.LSP.Protocol.Types.Common..:!? "notebookType" <*> arg Language.LSP.Protocol.Types.Common..:!? "scheme" <*> arg Aeson..: "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterScheme.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterScheme.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterScheme.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A notebook document filter where `scheme` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentFilterScheme = NotebookDocumentFilterScheme 
+  { {-|
+  The type of the enclosing notebook.
+  -}
+  _notebookType :: (Maybe Data.Text.Text)
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: Data.Text.Text
+  , {-|
+  A glob pattern.
+  -}
+  _pattern :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentFilterScheme)
+
+instance Aeson.ToJSON NotebookDocumentFilterScheme where
+  toJSON (NotebookDocumentFilterScheme arg0 arg1 arg2) = Aeson.object $ concat $  ["notebookType" Language.LSP.Protocol.Types.Common..=? arg0
+    ,["scheme" Aeson..= arg1]
+    ,"pattern" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON NotebookDocumentFilterScheme where
+  parseJSON = Aeson.withObject "NotebookDocumentFilterScheme" $ \arg -> NotebookDocumentFilterScheme <$> arg Language.LSP.Protocol.Types.Common..:!? "notebookType" <*> arg Aeson..: "scheme" <*> arg Language.LSP.Protocol.Types.Common..:!? "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithCells.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithCells.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithCells.hs
@@ -0,0 +1,48 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.NotebookCellLanguage
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentFilterWithCells = NotebookDocumentFilterWithCells 
+  { {-|
+  The notebook to be synced If a string
+  value is provided it matches against the
+  notebook type. '*' matches every notebook.
+  -}
+  _notebook :: (Maybe (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter))
+  , {-|
+  The cells of the matching notebook to be synced.
+  -}
+  _cells :: [Language.LSP.Protocol.Internal.Types.NotebookCellLanguage.NotebookCellLanguage]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentFilterWithCells)
+
+instance Aeson.ToJSON NotebookDocumentFilterWithCells where
+  toJSON (NotebookDocumentFilterWithCells arg0 arg1) = Aeson.object $ concat $  ["notebook" Language.LSP.Protocol.Types.Common..=? arg0
+    ,["cells" Aeson..= arg1]]
+
+instance Aeson.FromJSON NotebookDocumentFilterWithCells where
+  parseJSON = Aeson.withObject "NotebookDocumentFilterWithCells" $ \arg -> NotebookDocumentFilterWithCells <$> arg Language.LSP.Protocol.Types.Common..:!? "notebook" <*> arg Aeson..: "cells"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithNotebook.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithNotebook.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentFilterWithNotebook.hs
@@ -0,0 +1,48 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.NotebookCellLanguage
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data NotebookDocumentFilterWithNotebook = NotebookDocumentFilterWithNotebook 
+  { {-|
+  The notebook to be synced If a string
+  value is provided it matches against the
+  notebook type. '*' matches every notebook.
+  -}
+  _notebook :: (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter)
+  , {-|
+  The cells of the matching notebook to be synced.
+  -}
+  _cells :: (Maybe [Language.LSP.Protocol.Internal.Types.NotebookCellLanguage.NotebookCellLanguage])
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON NotebookDocumentFilterWithNotebook)
+
+instance Aeson.ToJSON NotebookDocumentFilterWithNotebook where
+  toJSON (NotebookDocumentFilterWithNotebook arg0 arg1) = Aeson.object $ concat $  [["notebook" Aeson..= arg0]
+    ,"cells" Language.LSP.Protocol.Types.Common..=? arg1]
+
+instance Aeson.FromJSON NotebookDocumentFilterWithNotebook where
+  parseJSON = Aeson.withObject "NotebookDocumentFilterWithNotebook" $ \arg -> NotebookDocumentFilterWithNotebook <$> arg Aeson..: "notebook" <*> arg Language.LSP.Protocol.Types.Common..:!? "cells"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -42,4 +44,4 @@
     ,"executionSummarySupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON NotebookDocumentSyncClientCapabilities where
-  parseJSON = Aeson.withObject "NotebookDocumentSyncClientCapabilities" $ \arg -> NotebookDocumentSyncClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "executionSummarySupport"
+  parseJSON = Aeson.withObject "NotebookDocumentSyncClientCapabilities" $ \arg -> NotebookDocumentSyncClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "executionSummarySupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -37,7 +38,7 @@
   { {-|
   The notebooks to be synced
   -}
-  _notebookSelector :: [((Row.Rec ("notebook" Row..== (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter) Row..+ ("cells" Row..== (Maybe [(Row.Rec ("language" Row..== Data.Text.Text Row..+ Row.Empty))]) Row..+ Row.Empty))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("notebook" Row..== (Maybe (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter)) Row..+ ("cells" Row..== [(Row.Rec ("language" Row..== Data.Text.Text Row..+ Row.Empty))] Row..+ Row.Empty))))]
+  _notebookSelector :: [(Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook.NotebookDocumentFilterWithNotebook Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells.NotebookDocumentFilterWithCells)]
   , {-|
   Whether save notification should be forwarded to
   the server. Will only be honored if mode === `notebook`.
@@ -53,4 +54,4 @@
     ,"save" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON NotebookDocumentSyncOptions where
-  parseJSON = Aeson.withObject "NotebookDocumentSyncOptions" $ \arg -> NotebookDocumentSyncOptions <$> arg Aeson..: "notebookSelector" <*> arg Aeson..:! "save"
+  parseJSON = Aeson.withObject "NotebookDocumentSyncOptions" $ \arg -> NotebookDocumentSyncOptions <$> arg Aeson..: "notebookSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "save"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/NotebookDocumentSyncRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,11 +13,11 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells
+import qualified Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -27,7 +29,7 @@
   { {-|
   The notebooks to be synced
   -}
-  _notebookSelector :: [((Row.Rec ("notebook" Row..== (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter) Row..+ ("cells" Row..== (Maybe [(Row.Rec ("language" Row..== Data.Text.Text Row..+ Row.Empty))]) Row..+ Row.Empty))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("notebook" Row..== (Maybe (Data.Text.Text Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilter.NotebookDocumentFilter)) Row..+ ("cells" Row..== [(Row.Rec ("language" Row..== Data.Text.Text Row..+ Row.Empty))] Row..+ Row.Empty))))]
+  _notebookSelector :: [(Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook.NotebookDocumentFilterWithNotebook Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells.NotebookDocumentFilterWithCells)]
   , {-|
   Whether save notification should be forwarded to
   the server. Will only be honored if mode === `notebook`.
@@ -49,4 +51,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON NotebookDocumentSyncRegistrationOptions where
-  parseJSON = Aeson.withObject "NotebookDocumentSyncRegistrationOptions" $ \arg -> NotebookDocumentSyncRegistrationOptions <$> arg Aeson..: "notebookSelector" <*> arg Aeson..:! "save" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "NotebookDocumentSyncRegistrationOptions" $ \arg -> NotebookDocumentSyncRegistrationOptions <$> arg Aeson..: "notebookSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "save" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/OptionalVersionedTextDocumentIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ParameterInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -29,6 +31,10 @@
   signature label. (see SignatureInformation.label). The offsets are based on a UTF-16
   string representation as `Position` and `Range` does.
 
+  To avoid ambiguities a server should use the [start, end] offset value instead of using
+  a substring. Whether a client support this is controlled via `labelOffsetSupport` client
+  capability.
+
   *Note*: a label of type string should be a substring of its containing signature label.
   Its intended use case is to highlight the parameter label part in the `SignatureInformation.label`.
   -}
@@ -49,4 +55,4 @@
     ,"documentation" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ParameterInformation where
-  parseJSON = Aeson.withObject "ParameterInformation" $ \arg -> ParameterInformation <$> arg Aeson..: "label" <*> arg Aeson..:! "documentation"
+  parseJSON = Aeson.withObject "ParameterInformation" $ \arg -> ParameterInformation <$> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentation"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs b/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PartialResultParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (PartialResultParams arg0) = Aeson.object $ concat $  ["partialResultToken" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON PartialResultParams where
-  parseJSON = Aeson.withObject "PartialResultParams" $ \arg -> PartialResultParams <$> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "PartialResultParams" $ \arg -> PartialResultParams <$> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs b/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Pattern.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Position.hs b/generated/Language/LSP/Protocol/Internal/Types/Position.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Position.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Position.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -23,14 +25,14 @@
 offset of b is 3 since `𐐀` is represented using two code units in UTF-16.
 Since 3.17 clients and servers can agree on a different string encoding
 representation (e.g. UTF-8). The client announces it's supported encoding
-via the client capability [`general.positionEncodings`](#clientCapabilities).
+via the client capability [`general.positionEncodings`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#clientCapabilities).
 The value is an array of position encodings the client supports, with
 decreasing preference (e.g. the encoding at index `0` is the most preferred
 one). To stay backwards compatible the only mandatory encoding is UTF-16
 represented via the string `utf-16`. The server can pick one of the
 encodings offered by the client and signals that encoding back to the
 client via the initialize result's property
-[`capabilities.positionEncoding`](#serverCapabilities). If the string value
+[`capabilities.positionEncoding`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#serverCapabilities). If the string value
 `utf-16` is missing from the client's capability `general.positionEncodings`
 servers can safely assume that the client supports UTF-16. If the server
 omits the position encoding in its initialize result the encoding defaults
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs b/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PositionEncodingKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -25,7 +27,7 @@
 -}
 data PositionEncodingKind = 
     {-|
-  Character offsets count UTF-8 code units.
+  Character offsets count UTF-8 code units (e.g. bytes).
   -}
   PositionEncodingKind_UTF8
   | {-|
@@ -38,7 +40,7 @@
   | {-|
   Character offsets count UTF-32 code units.
 
-  Implementation note: these are the same as Unicode code points,
+  Implementation note: these are the same as Unicode codepoints,
   so this `PositionEncodingKind` may also be used for an
   encoding-agnostic representation of character offsets.
   -}
@@ -48,7 +50,7 @@
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
   , Aeson.FromJSON
-  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum PositionEncodingKind Data.Text.Text)
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum PositionEncodingKind)
   deriving Pretty via (ViaJSON PositionEncodingKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum PositionEncodingKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameDefaultBehavior.hs b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameDefaultBehavior.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameDefaultBehavior.hs
@@ -0,0 +1,38 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data PrepareRenameDefaultBehavior = PrepareRenameDefaultBehavior 
+  { {-|
+
+  -}
+  _defaultBehavior :: Bool
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON PrepareRenameDefaultBehavior)
+
+instance Aeson.ToJSON PrepareRenameDefaultBehavior where
+  toJSON (PrepareRenameDefaultBehavior arg0) = Aeson.object $ concat $  [["defaultBehavior" Aeson..= arg0]]
+
+instance Aeson.FromJSON PrepareRenameDefaultBehavior where
+  parseJSON = Aeson.withObject "PrepareRenameDefaultBehavior" $ \arg -> PrepareRenameDefaultBehavior <$> arg Aeson..: "defaultBehavior"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"workDoneToken" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON PrepareRenameParams where
-  parseJSON = Aeson.withObject "PrepareRenameParams" $ \arg -> PrepareRenameParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "PrepareRenameParams" $ \arg -> PrepareRenameParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenamePlaceholder.hs b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenamePlaceholder.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenamePlaceholder.hs
@@ -0,0 +1,45 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data PrepareRenamePlaceholder = PrepareRenamePlaceholder 
+  { {-|
+
+  -}
+  _range :: Language.LSP.Protocol.Internal.Types.Range.Range
+  , {-|
+
+  -}
+  _placeholder :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON PrepareRenamePlaceholder)
+
+instance Aeson.ToJSON PrepareRenamePlaceholder where
+  toJSON (PrepareRenamePlaceholder arg0 arg1) = Aeson.object $ concat $  [["range" Aeson..= arg0]
+    ,["placeholder" Aeson..= arg1]]
+
+instance Aeson.FromJSON PrepareRenamePlaceholder where
+  parseJSON = Aeson.withObject "PrepareRenamePlaceholder" $ \arg -> PrepareRenamePlaceholder <$> arg Aeson..: "range" <*> arg Aeson..: "placeholder"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PrepareRenameResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,17 +13,17 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior
+import qualified Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder
 import qualified Language.LSP.Protocol.Internal.Types.Range
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
 
 -}
-newtype PrepareRenameResult = PrepareRenameResult (Language.LSP.Protocol.Internal.Types.Range.Range Language.LSP.Protocol.Types.Common.|? ((Row.Rec ("range" Row..== Language.LSP.Protocol.Internal.Types.Range.Range Row..+ ("placeholder" Row..== Data.Text.Text Row..+ Row.Empty))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("defaultBehavior" Row..== Bool Row..+ Row.Empty))))
+newtype PrepareRenameResult = PrepareRenameResult (Language.LSP.Protocol.Internal.Types.Range.Range Language.LSP.Protocol.Types.Common.|? (Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder.PrepareRenamePlaceholder Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior.PrepareRenameDefaultBehavior))
   deriving newtype (Aeson.ToJSON, Aeson.FromJSON)
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs b/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PrepareSupportDefaultBehavior.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -30,7 +32,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum PrepareSupportDefaultBehavior Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum PrepareSupportDefaultBehavior)
   deriving Pretty via (ViaJSON PrepareSupportDefaultBehavior)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum PrepareSupportDefaultBehavior where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs b/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PreviousResultId.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ProgressParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs b/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ProgressToken.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,9 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.DiagnosticTag
+import qualified Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -31,7 +32,7 @@
 
   @since 3.15.0
   -}
-  _tagSupport :: (Maybe (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.DiagnosticTag.DiagnosticTag] Row..+ Row.Empty)))
+  _tagSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions.ClientDiagnosticsTagOptions)
   , {-|
   Whether the client interprets the version property of the
   `textDocument/publishDiagnostics` notification's parameter.
@@ -66,4 +67,4 @@
     ,"dataSupport" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON PublishDiagnosticsClientCapabilities where
-  parseJSON = Aeson.withObject "PublishDiagnosticsClientCapabilities" $ \arg -> PublishDiagnosticsClientCapabilities <$> arg Aeson..:! "relatedInformation" <*> arg Aeson..:! "tagSupport" <*> arg Aeson..:! "versionSupport" <*> arg Aeson..:! "codeDescriptionSupport" <*> arg Aeson..:! "dataSupport"
+  parseJSON = Aeson.withObject "PublishDiagnosticsClientCapabilities" $ \arg -> PublishDiagnosticsClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "relatedInformation" <*> arg Language.LSP.Protocol.Types.Common..:!? "tagSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "versionSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeDescriptionSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "dataSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs b/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/PublishDiagnosticsParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,["diagnostics" Aeson..= arg2]]
 
 instance Aeson.FromJSON PublishDiagnosticsParams where
-  parseJSON = Aeson.withObject "PublishDiagnosticsParams" $ \arg -> PublishDiagnosticsParams <$> arg Aeson..: "uri" <*> arg Aeson..:! "version" <*> arg Aeson..: "diagnostics"
+  parseJSON = Aeson.withObject "PublishDiagnosticsParams" $ \arg -> PublishDiagnosticsParams <$> arg Aeson..: "uri" <*> arg Language.LSP.Protocol.Types.Common..:!? "version" <*> arg Aeson..: "diagnostics"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Range.hs b/generated/Language/LSP/Protocol/Internal/Types/Range.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Range.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Range.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ReferenceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (ReferenceClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON ReferenceClientCapabilities where
-  parseJSON = Aeson.withObject "ReferenceClientCapabilities" $ \arg -> ReferenceClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "ReferenceClientCapabilities" $ \arg -> ReferenceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs b/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ReferenceContext.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ReferenceOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (ReferenceOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON ReferenceOptions where
-  parseJSON = Aeson.withObject "ReferenceOptions" $ \arg -> ReferenceOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "ReferenceOptions" $ \arg -> ReferenceOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ReferenceParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -57,4 +59,4 @@
     ,["context" Aeson..= arg4]]
 
 instance Aeson.FromJSON ReferenceParams where
-  parseJSON = Aeson.withObject "ReferenceParams" $ \arg -> ReferenceParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "context"
+  parseJSON = Aeson.withObject "ReferenceParams" $ \arg -> ReferenceParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "context"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ReferenceRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ReferenceRegistrationOptions where
-  parseJSON = Aeson.withObject "ReferenceRegistrationOptions" $ \arg -> ReferenceRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "ReferenceRegistrationOptions" $ \arg -> ReferenceRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Registration.hs b/generated/Language/LSP/Protocol/Internal/Types/Registration.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Registration.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Registration.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -18,7 +20,7 @@
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
-General parameters to to register for an notification or to register a provider.
+General parameters to register for a notification or to register a provider.
 -}
 data Registration = Registration 
   { {-|
@@ -45,4 +47,4 @@
     ,"registerOptions" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON Registration where
-  parseJSON = Aeson.withObject "Registration" $ \arg -> Registration <$> arg Aeson..: "id" <*> arg Aeson..: "method" <*> arg Aeson..:! "registerOptions"
+  parseJSON = Aeson.withObject "Registration" $ \arg -> Registration <$> arg Aeson..: "id" <*> arg Aeson..: "method" <*> arg Language.LSP.Protocol.Types.Common..:!? "registerOptions"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RegistrationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionEngineKind.hs b/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionEngineKind.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionEngineKind.hs
@@ -0,0 +1,30 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+
+{-|
+
+-}
+newtype RegularExpressionEngineKind = RegularExpressionEngineKind Data.Text.Text
+  deriving newtype ( Aeson.ToJSON
+  , Aeson.FromJSON
+  , Aeson.ToJSONKey
+  , Aeson.FromJSONKey )
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON RegularExpressionEngineKind)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RegularExpressionsClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -14,6 +16,7 @@
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -25,7 +28,7 @@
   { {-|
   The engine's name.
   -}
-  _engine :: Data.Text.Text
+  _engine :: Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind.RegularExpressionEngineKind
   , {-|
   The engine's version.
   -}
@@ -40,4 +43,4 @@
     ,"version" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON RegularExpressionsClientCapabilities where
-  parseJSON = Aeson.withObject "RegularExpressionsClientCapabilities" $ \arg -> RegularExpressionsClientCapabilities <$> arg Aeson..: "engine" <*> arg Aeson..:! "version"
+  parseJSON = Aeson.withObject "RegularExpressionsClientCapabilities" $ \arg -> RegularExpressionsClientCapabilities <$> arg Aeson..: "engine" <*> arg Language.LSP.Protocol.Types.Common..:!? "version"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RelatedFullDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -64,4 +66,4 @@
     ,"relatedDocuments" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON RelatedFullDocumentDiagnosticReport where
-  parseJSON = Aeson.withObject "RelatedFullDocumentDiagnosticReport" $ \arg -> RelatedFullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Aeson..:! "resultId" <*> arg Aeson..: "items" <*> arg Aeson..:! "relatedDocuments"
+  parseJSON = Aeson.withObject "RelatedFullDocumentDiagnosticReport" $ \arg -> RelatedFullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "resultId" <*> arg Aeson..: "items" <*> arg Language.LSP.Protocol.Types.Common..:!? "relatedDocuments"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RelatedUnchangedDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -60,4 +62,4 @@
     ,"relatedDocuments" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON RelatedUnchangedDocumentDiagnosticReport where
-  parseJSON = Aeson.withObject "RelatedUnchangedDocumentDiagnosticReport" $ \arg -> RelatedUnchangedDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Aeson..: "resultId" <*> arg Aeson..:! "relatedDocuments"
+  parseJSON = Aeson.withObject "RelatedUnchangedDocumentDiagnosticReport" $ \arg -> RelatedUnchangedDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Aeson..: "resultId" <*> arg Language.LSP.Protocol.Types.Common..:!? "relatedDocuments"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs b/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RelativePattern.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -62,4 +64,4 @@
     ,"honorsChangeAnnotations" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON RenameClientCapabilities where
-  parseJSON = Aeson.withObject "RenameClientCapabilities" $ \arg -> RenameClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "prepareSupport" <*> arg Aeson..:! "prepareSupportDefaultBehavior" <*> arg Aeson..:! "honorsChangeAnnotations"
+  parseJSON = Aeson.withObject "RenameClientCapabilities" $ \arg -> RenameClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "prepareSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "prepareSupportDefaultBehavior" <*> arg Language.LSP.Protocol.Types.Common..:!? "honorsChangeAnnotations"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameFile.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -58,4 +60,4 @@
     ,"options" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON RenameFile where
-  parseJSON = Aeson.withObject "RenameFile" $ \arg -> RenameFile <$> arg Aeson..:! "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "oldUri" <*> arg Aeson..: "newUri" <*> arg Aeson..:! "options"
+  parseJSON = Aeson.withObject "RenameFile" $ \arg -> RenameFile <$> arg Language.LSP.Protocol.Types.Common..:!? "annotationId" <*> arg Aeson..: "kind" <*> arg Aeson..: "oldUri" <*> arg Aeson..: "newUri" <*> arg Language.LSP.Protocol.Types.Common..:!? "options"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameFileOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,4 +39,4 @@
     ,"ignoreIfExists" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON RenameFileOptions where
-  parseJSON = Aeson.withObject "RenameFileOptions" $ \arg -> RenameFileOptions <$> arg Aeson..:! "overwrite" <*> arg Aeson..:! "ignoreIfExists"
+  parseJSON = Aeson.withObject "RenameFileOptions" $ \arg -> RenameFileOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "overwrite" <*> arg Language.LSP.Protocol.Types.Common..:!? "ignoreIfExists"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameFilesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"prepareProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON RenameOptions where
-  parseJSON = Aeson.withObject "RenameOptions" $ \arg -> RenameOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "prepareProvider"
+  parseJSON = Aeson.withObject "RenameOptions" $ \arg -> RenameOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "prepareProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -53,4 +55,4 @@
     ,["newName" Aeson..= arg3]]
 
 instance Aeson.FromJSON RenameParams where
-  parseJSON = Aeson.withObject "RenameParams" $ \arg -> RenameParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..: "newName"
+  parseJSON = Aeson.withObject "RenameParams" $ \arg -> RenameParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..: "newName"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/RenameRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"prepareProvider" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON RenameRegistrationOptions where
-  parseJSON = Aeson.withObject "RenameRegistrationOptions" $ \arg -> RenameRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "prepareProvider"
+  parseJSON = Aeson.withObject "RenameRegistrationOptions" $ \arg -> RenameRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "prepareProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs b/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ResourceOperation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"annotationId" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON ResourceOperation where
-  parseJSON = Aeson.withObject "ResourceOperation" $ \arg -> ResourceOperation <$> arg Aeson..: "kind" <*> arg Aeson..:! "annotationId"
+  parseJSON = Aeson.withObject "ResourceOperation" $ \arg -> ResourceOperation <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "annotationId"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs b/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ResourceOperationKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -37,7 +39,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum ResourceOperationKind Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum ResourceOperationKind)
   deriving Pretty via (ViaJSON ResourceOperationKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum ResourceOperationKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SaveOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (SaveOptions arg0) = Aeson.object $ concat $  ["includeText" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON SaveOptions where
-  parseJSON = Aeson.withObject "SaveOptions" $ \arg -> SaveOptions <$> arg Aeson..:! "includeText"
+  parseJSON = Aeson.withObject "SaveOptions" $ \arg -> SaveOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "includeText"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs b/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SelectionRange.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"parent" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON SelectionRange where
-  parseJSON = Aeson.withObject "SelectionRange" $ \arg -> SelectionRange <$> arg Aeson..: "range" <*> arg Aeson..:! "parent"
+  parseJSON = Aeson.withObject "SelectionRange" $ \arg -> SelectionRange <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "parent"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (SelectionRangeClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON SelectionRangeClientCapabilities where
-  parseJSON = Aeson.withObject "SelectionRangeClientCapabilities" $ \arg -> SelectionRangeClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "SelectionRangeClientCapabilities" $ \arg -> SelectionRangeClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (SelectionRangeOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON SelectionRangeOptions where
-  parseJSON = Aeson.withObject "SelectionRangeOptions" $ \arg -> SelectionRangeOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "SelectionRangeOptions" $ \arg -> SelectionRangeOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,["positions" Aeson..= arg3]]
 
 instance Aeson.FromJSON SelectionRangeParams where
-  parseJSON = Aeson.withObject "SelectionRangeParams" $ \arg -> SelectionRangeParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "positions"
+  parseJSON = Aeson.withObject "SelectionRangeParams" $ \arg -> SelectionRangeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "positions"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SelectionRangeRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON SelectionRangeRegistrationOptions where
-  parseJSON = Aeson.withObject "SelectionRangeRegistrationOptions" $ \arg -> SelectionRangeRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "SelectionRangeRegistrationOptions" $ \arg -> SelectionRangeRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenModifiers.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -71,7 +73,7 @@
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
   , Aeson.FromJSON
-  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SemanticTokenModifiers Data.Text.Text)
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SemanticTokenModifiers)
   deriving Pretty via (ViaJSON SemanticTokenModifiers)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum SemanticTokenModifiers where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokenTypes.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -124,7 +126,7 @@
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
   , Aeson.FromJSON
-  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SemanticTokenTypes Data.Text.Text)
+  , Data.String.IsString ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SemanticTokenTypes)
   deriving Pretty via (ViaJSON SemanticTokenTypes)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum SemanticTokenTypes where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokens.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,["data" Aeson..= arg1]]
 
 instance Aeson.FromJSON SemanticTokens where
-  parseJSON = Aeson.withObject "SemanticTokens" $ \arg -> SemanticTokens <$> arg Aeson..:! "resultId" <*> arg Aeson..: "data"
+  parseJSON = Aeson.withObject "SemanticTokens" $ \arg -> SemanticTokens <$> arg Language.LSP.Protocol.Types.Common..:!? "resultId" <*> arg Aeson..: "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,10 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions
 import qualified Language.LSP.Protocol.Internal.Types.TokenFormat
 import qualified Language.LSP.Protocol.Types.Common
 
@@ -38,7 +40,7 @@
   range provider the client might not render a minimap correctly or might
   even decide to not show any semantic tokens at all.
   -}
-  _requests :: (Row.Rec ("range" Row..== (Maybe (Bool Language.LSP.Protocol.Types.Common.|? (Row.Rec Row.Empty))) Row..+ ("full" Row..== (Maybe (Bool Language.LSP.Protocol.Types.Common.|? (Row.Rec ("delta" Row..== (Maybe Bool) Row..+ Row.Empty)))) Row..+ Row.Empty)))
+  _requests :: Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions.ClientSemanticTokensRequestOptions
   , {-|
   The token types that the client supports.
   -}
@@ -98,4 +100,4 @@
     ,"augmentsSyntaxTokens" Language.LSP.Protocol.Types.Common..=? arg8]
 
 instance Aeson.FromJSON SemanticTokensClientCapabilities where
-  parseJSON = Aeson.withObject "SemanticTokensClientCapabilities" $ \arg -> SemanticTokensClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..: "requests" <*> arg Aeson..: "tokenTypes" <*> arg Aeson..: "tokenModifiers" <*> arg Aeson..: "formats" <*> arg Aeson..:! "overlappingTokenSupport" <*> arg Aeson..:! "multilineTokenSupport" <*> arg Aeson..:! "serverCancelSupport" <*> arg Aeson..:! "augmentsSyntaxTokens"
+  parseJSON = Aeson.withObject "SemanticTokensClientCapabilities" $ \arg -> SemanticTokensClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Aeson..: "requests" <*> arg Aeson..: "tokenTypes" <*> arg Aeson..: "tokenModifiers" <*> arg Aeson..: "formats" <*> arg Language.LSP.Protocol.Types.Common..:!? "overlappingTokenSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "multilineTokenSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "serverCancelSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "augmentsSyntaxTokens"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDelta.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,["edits" Aeson..= arg1]]
 
 instance Aeson.FromJSON SemanticTokensDelta where
-  parseJSON = Aeson.withObject "SemanticTokensDelta" $ \arg -> SemanticTokensDelta <$> arg Aeson..:! "resultId" <*> arg Aeson..: "edits"
+  parseJSON = Aeson.withObject "SemanticTokensDelta" $ \arg -> SemanticTokensDelta <$> arg Language.LSP.Protocol.Types.Common..:!? "resultId" <*> arg Aeson..: "edits"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -52,4 +54,4 @@
     ,["previousResultId" Aeson..= arg3]]
 
 instance Aeson.FromJSON SemanticTokensDeltaParams where
-  parseJSON = Aeson.withObject "SemanticTokensDeltaParams" $ \arg -> SemanticTokensDeltaParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "previousResultId"
+  parseJSON = Aeson.withObject "SemanticTokensDeltaParams" $ \arg -> SemanticTokensDeltaParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "previousResultId"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensDeltaPartialResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -42,4 +44,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON SemanticTokensEdit where
-  parseJSON = Aeson.withObject "SemanticTokensEdit" $ \arg -> SemanticTokensEdit <$> arg Aeson..: "start" <*> arg Aeson..: "deleteCount" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "SemanticTokensEdit" $ \arg -> SemanticTokensEdit <$> arg Aeson..: "start" <*> arg Aeson..: "deleteCount" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensFullDelta.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensFullDelta.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensFullDelta.hs
@@ -0,0 +1,40 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Semantic tokens options to support deltas for full documents
+
+@since 3.18.0
+@proposed
+-}
+data SemanticTokensFullDelta = SemanticTokensFullDelta 
+  { {-|
+  The server supports deltas for full documents.
+  -}
+  _delta :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON SemanticTokensFullDelta)
+
+instance Aeson.ToJSON SemanticTokensFullDelta where
+  toJSON (SemanticTokensFullDelta arg0) = Aeson.object $ concat $  ["delta" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON SemanticTokensFullDelta where
+  parseJSON = Aeson.withObject "SemanticTokensFullDelta" $ \arg -> SemanticTokensFullDelta <$> arg Language.LSP.Protocol.Types.Common..:!? "delta"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensLegend.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -14,6 +16,7 @@
 import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta
 import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
 import qualified Language.LSP.Protocol.Types.Common
 
@@ -37,7 +40,7 @@
   , {-|
   Server supports providing semantic tokens for a full document.
   -}
-  _full :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? (Row.Rec ("delta" Row..== (Maybe Bool) Row..+ Row.Empty))))
+  _full :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta.SemanticTokensFullDelta))
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -50,4 +53,4 @@
     ,"full" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON SemanticTokensOptions where
-  parseJSON = Aeson.withObject "SemanticTokensOptions" $ \arg -> SemanticTokensOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "legend" <*> arg Aeson..:! "range" <*> arg Aeson..:! "full"
+  parseJSON = Aeson.withObject "SemanticTokensOptions" $ \arg -> SemanticTokensOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "legend" <*> arg Language.LSP.Protocol.Types.Common..:!? "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "full"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,["textDocument" Aeson..= arg2]]
 
 instance Aeson.FromJSON SemanticTokensParams where
-  parseJSON = Aeson.withObject "SemanticTokensParams" $ \arg -> SemanticTokensParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument"
+  parseJSON = Aeson.withObject "SemanticTokensParams" $ \arg -> SemanticTokensParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensPartialResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRangeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,["range" Aeson..= arg3]]
 
 instance Aeson.FromJSON SemanticTokensRangeParams where
-  parseJSON = Aeson.withObject "SemanticTokensRangeParams" $ \arg -> SemanticTokensRangeParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range"
+  parseJSON = Aeson.withObject "SemanticTokensRangeParams" $ \arg -> SemanticTokensRangeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "textDocument" <*> arg Aeson..: "range"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -16,6 +18,7 @@
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.DocumentSelector
+import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta
 import qualified Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
 import qualified Language.LSP.Protocol.Types.Common
 
@@ -44,7 +47,7 @@
   , {-|
   Server supports providing semantic tokens for a full document.
   -}
-  _full :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? (Row.Rec ("delta" Row..== (Maybe Bool) Row..+ Row.Empty))))
+  _full :: (Maybe (Bool Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta.SemanticTokensFullDelta))
   , {-|
   The id used to register the request. The id can be used to deregister
   the request again. See also Registration#id.
@@ -64,4 +67,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON SemanticTokensRegistrationOptions where
-  parseJSON = Aeson.withObject "SemanticTokensRegistrationOptions" $ \arg -> SemanticTokensRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..: "legend" <*> arg Aeson..:! "range" <*> arg Aeson..:! "full" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "SemanticTokensRegistrationOptions" $ \arg -> SemanticTokensRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Aeson..: "legend" <*> arg Language.LSP.Protocol.Types.Common..:!? "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "full" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SemanticTokensWorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,4 +40,4 @@
   toJSON (SemanticTokensWorkspaceClientCapabilities arg0) = Aeson.object $ concat $  ["refreshSupport" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON SemanticTokensWorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "SemanticTokensWorkspaceClientCapabilities" $ \arg -> SemanticTokensWorkspaceClientCapabilities <$> arg Aeson..:! "refreshSupport"
+  parseJSON = Aeson.withObject "SemanticTokensWorkspaceClientCapabilities" $ \arg -> SemanticTokensWorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "refreshSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ServerCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,7 +14,6 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Language.LSP.Protocol.Internal.Types.CallHierarchyOptions
@@ -34,7 +35,6 @@
 import qualified Language.LSP.Protocol.Internal.Types.DocumentRangeFormattingOptions
 import qualified Language.LSP.Protocol.Internal.Types.DocumentSymbolOptions
 import qualified Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions
-import qualified Language.LSP.Protocol.Internal.Types.FileOperationOptions
 import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeOptions
 import qualified Language.LSP.Protocol.Internal.Types.FoldingRangeRegistrationOptions
 import qualified Language.LSP.Protocol.Internal.Types.HoverOptions
@@ -64,7 +64,7 @@
 import qualified Language.LSP.Protocol.Internal.Types.TypeDefinitionRegistrationOptions
 import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyOptions
 import qualified Language.LSP.Protocol.Internal.Types.TypeHierarchyRegistrationOptions
-import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities
+import qualified Language.LSP.Protocol.Internal.Types.WorkspaceOptions
 import qualified Language.LSP.Protocol.Internal.Types.WorkspaceSymbolOptions
 import qualified Language.LSP.Protocol.Types.Common
 
@@ -240,7 +240,7 @@
   , {-|
   Workspace specific server capabilities.
   -}
-  _workspace :: (Maybe (Row.Rec ("workspaceFolders" Row..== (Maybe Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities.WorkspaceFoldersServerCapabilities) Row..+ ("fileOperations" Row..== (Maybe Language.LSP.Protocol.Internal.Types.FileOperationOptions.FileOperationOptions) Row..+ Row.Empty))))
+  _workspace :: (Maybe Language.LSP.Protocol.Internal.Types.WorkspaceOptions.WorkspaceOptions)
   , {-|
   Experimental server capabilities.
   -}
@@ -288,4 +288,4 @@
     ,"experimental" Language.LSP.Protocol.Types.Common..=? arg34]
 
 instance Aeson.FromJSON ServerCapabilities where
-  parseJSON = Aeson.withObject "ServerCapabilities" $ \arg -> ServerCapabilities <$> arg Aeson..:! "positionEncoding" <*> arg Aeson..:! "textDocumentSync" <*> arg Aeson..:! "notebookDocumentSync" <*> arg Aeson..:! "completionProvider" <*> arg Aeson..:! "hoverProvider" <*> arg Aeson..:! "signatureHelpProvider" <*> arg Aeson..:! "declarationProvider" <*> arg Aeson..:! "definitionProvider" <*> arg Aeson..:! "typeDefinitionProvider" <*> arg Aeson..:! "implementationProvider" <*> arg Aeson..:! "referencesProvider" <*> arg Aeson..:! "documentHighlightProvider" <*> arg Aeson..:! "documentSymbolProvider" <*> arg Aeson..:! "codeActionProvider" <*> arg Aeson..:! "codeLensProvider" <*> arg Aeson..:! "documentLinkProvider" <*> arg Aeson..:! "colorProvider" <*> arg Aeson..:! "workspaceSymbolProvider" <*> arg Aeson..:! "documentFormattingProvider" <*> arg Aeson..:! "documentRangeFormattingProvider" <*> arg Aeson..:! "documentOnTypeFormattingProvider" <*> arg Aeson..:! "renameProvider" <*> arg Aeson..:! "foldingRangeProvider" <*> arg Aeson..:! "selectionRangeProvider" <*> arg Aeson..:! "executeCommandProvider" <*> arg Aeson..:! "callHierarchyProvider" <*> arg Aeson..:! "linkedEditingRangeProvider" <*> arg Aeson..:! "semanticTokensProvider" <*> arg Aeson..:! "monikerProvider" <*> arg Aeson..:! "typeHierarchyProvider" <*> arg Aeson..:! "inlineValueProvider" <*> arg Aeson..:! "inlayHintProvider" <*> arg Aeson..:! "diagnosticProvider" <*> arg Aeson..:! "workspace" <*> arg Aeson..:! "experimental"
+  parseJSON = Aeson.withObject "ServerCapabilities" $ \arg -> ServerCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "positionEncoding" <*> arg Language.LSP.Protocol.Types.Common..:!? "textDocumentSync" <*> arg Language.LSP.Protocol.Types.Common..:!? "notebookDocumentSync" <*> arg Language.LSP.Protocol.Types.Common..:!? "completionProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "hoverProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "signatureHelpProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "declarationProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "definitionProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "typeDefinitionProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "implementationProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "referencesProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentHighlightProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentSymbolProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeActionProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeLensProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentLinkProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "colorProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "workspaceSymbolProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentFormattingProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentRangeFormattingProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentOnTypeFormattingProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "renameProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "foldingRangeProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "selectionRangeProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "executeCommandProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "callHierarchyProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkedEditingRangeProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "semanticTokensProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "monikerProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "typeHierarchyProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlineValueProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlayHintProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "diagnosticProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "workspace" <*> arg Language.LSP.Protocol.Types.Common..:!? "experimental"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ServerCompletionItemOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/ServerCompletionItemOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ServerCompletionItemOptions.hs
@@ -0,0 +1,42 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data ServerCompletionItemOptions = ServerCompletionItemOptions 
+  { {-|
+  The server has support for completion item label
+  details (see also `CompletionItemLabelDetails`) when
+  receiving a completion item in a resolve call.
+
+  @since 3.17.0
+  -}
+  _labelDetailsSupport :: (Maybe Bool)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ServerCompletionItemOptions)
+
+instance Aeson.ToJSON ServerCompletionItemOptions where
+  toJSON (ServerCompletionItemOptions arg0) = Aeson.object $ concat $  ["labelDetailsSupport" Language.LSP.Protocol.Types.Common..=? arg0]
+
+instance Aeson.FromJSON ServerCompletionItemOptions where
+  parseJSON = Aeson.withObject "ServerCompletionItemOptions" $ \arg -> ServerCompletionItemOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "labelDetailsSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ServerInfo.hs b/generated/Language/LSP/Protocol/Internal/Types/ServerInfo.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/ServerInfo.hs
@@ -0,0 +1,47 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.ServerInfo where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Information about the server
+
+@since 3.15.0
+@since 3.18.0 ServerInfo type name added.
+@proposed
+-}
+data ServerInfo = ServerInfo 
+  { {-|
+  The name of the server as defined by the server.
+  -}
+  _name :: Data.Text.Text
+  , {-|
+  The server's version as defined by the server.
+  -}
+  _version :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON ServerInfo)
+
+instance Aeson.ToJSON ServerInfo where
+  toJSON (ServerInfo arg0 arg1) = Aeson.object $ concat $  [["name" Aeson..= arg0]
+    ,"version" Language.LSP.Protocol.Types.Common..=? arg1]
+
+instance Aeson.FromJSON ServerInfo where
+  parseJSON = Aeson.withObject "ServerInfo" $ \arg -> ServerInfo <$> arg Aeson..: "name" <*> arg Language.LSP.Protocol.Types.Common..:!? "version"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SetTraceParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -13,7 +15,7 @@
 import qualified Data.Aeson as Aeson
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.TraceValues
+import qualified Language.LSP.Protocol.Internal.Types.TraceValue
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -23,7 +25,7 @@
   { {-|
 
   -}
-  _value :: Language.LSP.Protocol.Internal.Types.TraceValues.TraceValues
+  _value :: Language.LSP.Protocol.Internal.Types.TraceValue.TraceValue
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -18,18 +20,18 @@
 import qualified Language.LSP.Protocol.Types.Uri
 
 {-|
-Params to show a document.
+Params to show a resource in the UI.
 
 @since 3.16.0
 -}
 data ShowDocumentParams = ShowDocumentParams 
   { {-|
-  The document uri to show.
+  The uri to show.
   -}
   _uri :: Language.LSP.Protocol.Types.Uri.Uri
   , {-|
   Indicates to show the resource in an external program.
-  To show for example `https://code.visualstudio.com/`
+  To show, for example, `https://code.visualstudio.com/`
   in the default WEB browser set `external` to `true`.
   -}
   _external :: (Maybe Bool)
@@ -59,4 +61,4 @@
     ,"selection" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON ShowDocumentParams where
-  parseJSON = Aeson.withObject "ShowDocumentParams" $ \arg -> ShowDocumentParams <$> arg Aeson..: "uri" <*> arg Aeson..:! "external" <*> arg Aeson..:! "takeFocus" <*> arg Aeson..:! "selection"
+  parseJSON = Aeson.withObject "ShowDocumentParams" $ \arg -> ShowDocumentParams <$> arg Aeson..: "uri" <*> arg Language.LSP.Protocol.Types.Common..:!? "external" <*> arg Language.LSP.Protocol.Types.Common..:!? "takeFocus" <*> arg Language.LSP.Protocol.Types.Common..:!? "selection"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowDocumentResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,9 +13,9 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -23,7 +25,7 @@
   { {-|
   Capabilities specific to the `MessageActionItem` type.
   -}
-  _messageActionItem :: (Maybe (Row.Rec ("additionalPropertiesSupport" Row..== (Maybe Bool) Row..+ Row.Empty)))
+  _messageActionItem :: (Maybe Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions.ClientShowMessageActionItemOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -33,4 +35,4 @@
   toJSON (ShowMessageRequestClientCapabilities arg0) = Aeson.object $ concat $  ["messageActionItem" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON ShowMessageRequestClientCapabilities where
-  parseJSON = Aeson.withObject "ShowMessageRequestClientCapabilities" $ \arg -> ShowMessageRequestClientCapabilities <$> arg Aeson..:! "messageActionItem"
+  parseJSON = Aeson.withObject "ShowMessageRequestClientCapabilities" $ \arg -> ShowMessageRequestClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "messageActionItem"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/ShowMessageRequestParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -45,4 +47,4 @@
     ,"actions" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON ShowMessageRequestParams where
-  parseJSON = Aeson.withObject "ShowMessageRequestParams" $ \arg -> ShowMessageRequestParams <$> arg Aeson..: "type" <*> arg Aeson..: "message" <*> arg Aeson..:! "actions"
+  parseJSON = Aeson.withObject "ShowMessageRequestParams" $ \arg -> ShowMessageRequestParams <$> arg Aeson..: "type" <*> arg Aeson..: "message" <*> arg Language.LSP.Protocol.Types.Common..:!? "actions"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelp.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,15 +41,24 @@
   -}
   _activeSignature :: (Maybe Language.LSP.Protocol.Types.Common.UInt)
   , {-|
-  The active parameter of the active signature. If omitted or the value
-  lies outside the range of `signatures[activeSignature].parameters`
-  defaults to 0 if the active signature has parameters. If
-  the active signature has no parameters it is ignored.
+  The active parameter of the active signature.
+
+  If `null`, no parameter of the signature is active (for example a named
+  argument that does not match any declared parameters). This is only valid
+  if the client specifies the client capability
+  `textDocument.signatureHelp.noActiveParameterSupport === true`
+
+  If omitted or the value lies outside the range of
+  `signatures[activeSignature].parameters` defaults to 0 if the active
+  signature has parameters.
+
+  If the active signature has no parameters it is ignored.
+
   In future version of the protocol this property might become
-  mandatory to better express the active parameter if the
-  active signature does have any.
+  mandatory (but still nullable) to better express the active parameter if
+  the active signature does have any.
   -}
-  _activeParameter :: (Maybe Language.LSP.Protocol.Types.Common.UInt)
+  _activeParameter :: (Maybe (Language.LSP.Protocol.Types.Common.UInt Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Types.Common.Null))
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -59,4 +70,4 @@
     ,"activeParameter" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON SignatureHelp where
-  parseJSON = Aeson.withObject "SignatureHelp" $ \arg -> SignatureHelp <$> arg Aeson..: "signatures" <*> arg Aeson..:! "activeSignature" <*> arg Aeson..:! "activeParameter"
+  parseJSON = Aeson.withObject "SignatureHelp" $ \arg -> SignatureHelp <$> arg Aeson..: "signatures" <*> arg Language.LSP.Protocol.Types.Common..:!? "activeSignature" <*> arg Language.LSP.Protocol.Types.Common..:!? "activeParameter"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,9 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Language.LSP.Protocol.Internal.Types.MarkupKind
+import qualified Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -29,7 +30,7 @@
   The client supports the following `SignatureInformation`
   specific properties.
   -}
-  _signatureInformation :: (Maybe (Row.Rec ("documentationFormat" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.MarkupKind.MarkupKind]) Row..+ ("parameterInformation" Row..== (Maybe (Row.Rec ("labelOffsetSupport" Row..== (Maybe Bool) Row..+ Row.Empty))) Row..+ ("activeParameterSupport" Row..== (Maybe Bool) Row..+ Row.Empty)))))
+  _signatureInformation :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions.ClientSignatureInformationOptions)
   , {-|
   The client supports to send additional context information for a
   `textDocument/signatureHelp` request. A client that opts into
@@ -50,4 +51,4 @@
     ,"contextSupport" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON SignatureHelpClientCapabilities where
-  parseJSON = Aeson.withObject "SignatureHelpClientCapabilities" $ \arg -> SignatureHelpClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "signatureInformation" <*> arg Aeson..:! "contextSupport"
+  parseJSON = Aeson.withObject "SignatureHelpClientCapabilities" $ \arg -> SignatureHelpClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "signatureInformation" <*> arg Language.LSP.Protocol.Types.Common..:!? "contextSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpContext.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -60,4 +62,4 @@
     ,"activeSignatureHelp" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON SignatureHelpContext where
-  parseJSON = Aeson.withObject "SignatureHelpContext" $ \arg -> SignatureHelpContext <$> arg Aeson..: "triggerKind" <*> arg Aeson..:! "triggerCharacter" <*> arg Aeson..: "isRetrigger" <*> arg Aeson..:! "activeSignatureHelp"
+  parseJSON = Aeson.withObject "SignatureHelpContext" $ \arg -> SignatureHelpContext <$> arg Aeson..: "triggerKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacter" <*> arg Aeson..: "isRetrigger" <*> arg Language.LSP.Protocol.Types.Common..:!? "activeSignatureHelp"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"retriggerCharacters" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON SignatureHelpOptions where
-  parseJSON = Aeson.withObject "SignatureHelpOptions" $ \arg -> SignatureHelpOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "triggerCharacters" <*> arg Aeson..:! "retriggerCharacters"
+  parseJSON = Aeson.withObject "SignatureHelpOptions" $ \arg -> SignatureHelpOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "retriggerCharacters"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -54,4 +56,4 @@
     ,"context" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON SignatureHelpParams where
-  parseJSON = Aeson.withObject "SignatureHelpParams" $ \arg -> SignatureHelpParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "context"
+  parseJSON = Aeson.withObject "SignatureHelpParams" $ \arg -> SignatureHelpParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "context"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -55,4 +57,4 @@
     ,"retriggerCharacters" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON SignatureHelpRegistrationOptions where
-  parseJSON = Aeson.withObject "SignatureHelpRegistrationOptions" $ \arg -> SignatureHelpRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "triggerCharacters" <*> arg Aeson..:! "retriggerCharacters"
+  parseJSON = Aeson.withObject "SignatureHelpRegistrationOptions" $ \arg -> SignatureHelpRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "triggerCharacters" <*> arg Language.LSP.Protocol.Types.Common..:!? "retriggerCharacters"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureHelpTriggerKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,7 +41,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SignatureHelpTriggerKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SignatureHelpTriggerKind)
   deriving Pretty via (ViaJSON SignatureHelpTriggerKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum SignatureHelpTriggerKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SignatureInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,11 +43,17 @@
   , {-|
   The index of the active parameter.
 
-  If provided, this is used in place of `SignatureHelp.activeParameter`.
+  If `null`, no parameter of the signature is active (for example a named
+  argument that does not match any declared parameters). This is only valid
+  if the client specifies the client capability
+  `textDocument.signatureHelp.noActiveParameterSupport === true`
 
+  If provided (or `null`), this is used in place of
+  `SignatureHelp.activeParameter`.
+
   @since 3.16.0
   -}
-  _activeParameter :: (Maybe Language.LSP.Protocol.Types.Common.UInt)
+  _activeParameter :: (Maybe (Language.LSP.Protocol.Types.Common.UInt Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Types.Common.Null))
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -58,4 +66,4 @@
     ,"activeParameter" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON SignatureInformation where
-  parseJSON = Aeson.withObject "SignatureInformation" $ \arg -> SignatureInformation <$> arg Aeson..: "label" <*> arg Aeson..:! "documentation" <*> arg Aeson..:! "parameters" <*> arg Aeson..:! "activeParameter"
+  parseJSON = Aeson.withObject "SignatureInformation" $ \arg -> SignatureInformation <$> arg Aeson..: "label" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentation" <*> arg Language.LSP.Protocol.Types.Common..:!? "parameters" <*> arg Language.LSP.Protocol.Types.Common..:!? "activeParameter"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/StaleRequestSupportOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/StaleRequestSupportOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/StaleRequestSupportOptions.hs
@@ -0,0 +1,46 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data StaleRequestSupportOptions = StaleRequestSupportOptions 
+  { {-|
+  The client will actively cancel the request.
+  -}
+  _cancel :: Bool
+  , {-|
+  The list of requests for which the client
+  will retry the request if it receives a
+  response with error code `ContentModified`
+  -}
+  _retryOnContentModified :: [Data.Text.Text]
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON StaleRequestSupportOptions)
+
+instance Aeson.ToJSON StaleRequestSupportOptions where
+  toJSON (StaleRequestSupportOptions arg0 arg1) = Aeson.object $ concat $  [["cancel" Aeson..= arg0]
+    ,["retryOnContentModified" Aeson..= arg1]]
+
+instance Aeson.FromJSON StaleRequestSupportOptions where
+  parseJSON = Aeson.withObject "StaleRequestSupportOptions" $ \arg -> StaleRequestSupportOptions <$> arg Aeson..: "cancel" <*> arg Aeson..: "retryOnContentModified"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/StaticRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -35,4 +37,4 @@
   toJSON (StaticRegistrationOptions arg0) = Aeson.object $ concat $  ["id" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON StaticRegistrationOptions where
-  parseJSON = Aeson.withObject "StaticRegistrationOptions" $ \arg -> StaticRegistrationOptions <$> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "StaticRegistrationOptions" $ \arg -> StaticRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs b/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SymbolInformation.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -77,4 +79,4 @@
     ,["location" Aeson..= arg5]]
 
 instance Aeson.FromJSON SymbolInformation where
-  parseJSON = Aeson.withObject "SymbolInformation" $ \arg -> SymbolInformation <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "containerName" <*> arg Aeson..:! "deprecated" <*> arg Aeson..: "location"
+  parseJSON = Aeson.withObject "SymbolInformation" $ \arg -> SymbolInformation <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "containerName" <*> arg Language.LSP.Protocol.Types.Common..:!? "deprecated" <*> arg Aeson..: "location"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs b/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SymbolKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -129,7 +131,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SymbolKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SymbolKind)
   deriving Pretty via (ViaJSON SymbolKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum SymbolKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs b/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/SymbolTag.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -31,7 +33,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SymbolTag Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum SymbolTag)
   deriving Pretty via (ViaJSON SymbolTag)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum SymbolTag where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentChangeRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -236,4 +238,4 @@
     ,"diagnostic" Language.LSP.Protocol.Types.Common..=? arg29]
 
 instance Aeson.FromJSON TextDocumentClientCapabilities where
-  parseJSON = Aeson.withObject "TextDocumentClientCapabilities" $ \arg -> TextDocumentClientCapabilities <$> arg Aeson..:! "synchronization" <*> arg Aeson..:! "completion" <*> arg Aeson..:! "hover" <*> arg Aeson..:! "signatureHelp" <*> arg Aeson..:! "declaration" <*> arg Aeson..:! "definition" <*> arg Aeson..:! "typeDefinition" <*> arg Aeson..:! "implementation" <*> arg Aeson..:! "references" <*> arg Aeson..:! "documentHighlight" <*> arg Aeson..:! "documentSymbol" <*> arg Aeson..:! "codeAction" <*> arg Aeson..:! "codeLens" <*> arg Aeson..:! "documentLink" <*> arg Aeson..:! "colorProvider" <*> arg Aeson..:! "formatting" <*> arg Aeson..:! "rangeFormatting" <*> arg Aeson..:! "onTypeFormatting" <*> arg Aeson..:! "rename" <*> arg Aeson..:! "foldingRange" <*> arg Aeson..:! "selectionRange" <*> arg Aeson..:! "publishDiagnostics" <*> arg Aeson..:! "callHierarchy" <*> arg Aeson..:! "semanticTokens" <*> arg Aeson..:! "linkedEditingRange" <*> arg Aeson..:! "moniker" <*> arg Aeson..:! "typeHierarchy" <*> arg Aeson..:! "inlineValue" <*> arg Aeson..:! "inlayHint" <*> arg Aeson..:! "diagnostic"
+  parseJSON = Aeson.withObject "TextDocumentClientCapabilities" $ \arg -> TextDocumentClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "synchronization" <*> arg Language.LSP.Protocol.Types.Common..:!? "completion" <*> arg Language.LSP.Protocol.Types.Common..:!? "hover" <*> arg Language.LSP.Protocol.Types.Common..:!? "signatureHelp" <*> arg Language.LSP.Protocol.Types.Common..:!? "declaration" <*> arg Language.LSP.Protocol.Types.Common..:!? "definition" <*> arg Language.LSP.Protocol.Types.Common..:!? "typeDefinition" <*> arg Language.LSP.Protocol.Types.Common..:!? "implementation" <*> arg Language.LSP.Protocol.Types.Common..:!? "references" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentHighlight" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentSymbol" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeAction" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeLens" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentLink" <*> arg Language.LSP.Protocol.Types.Common..:!? "colorProvider" <*> arg Language.LSP.Protocol.Types.Common..:!? "formatting" <*> arg Language.LSP.Protocol.Types.Common..:!? "rangeFormatting" <*> arg Language.LSP.Protocol.Types.Common..:!? "onTypeFormatting" <*> arg Language.LSP.Protocol.Types.Common..:!? "rename" <*> arg Language.LSP.Protocol.Types.Common..:!? "foldingRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "selectionRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "publishDiagnostics" <*> arg Language.LSP.Protocol.Types.Common..:!? "callHierarchy" <*> arg Language.LSP.Protocol.Types.Common..:!? "semanticTokens" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkedEditingRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "moniker" <*> arg Language.LSP.Protocol.Types.Common..:!? "typeHierarchy" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlineValue" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlayHint" <*> arg Language.LSP.Protocol.Types.Common..:!? "diagnostic"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeEvent.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,18 +13,17 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
 An event describing a change to a text document. If only a text is provided
 it is considered to be the full content of the document.
 -}
-newtype TextDocumentContentChangeEvent = TextDocumentContentChangeEvent ((Row.Rec ("range" Row..== Language.LSP.Protocol.Internal.Types.Range.Range Row..+ ("rangeLength" Row..== (Maybe Language.LSP.Protocol.Types.Common.UInt) Row..+ ("text" Row..== Data.Text.Text Row..+ Row.Empty)))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("text" Row..== Data.Text.Text Row..+ Row.Empty)))
+newtype TextDocumentContentChangeEvent = TextDocumentContentChangeEvent (Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial.TextDocumentContentChangePartial Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument.TextDocumentContentChangeWholeDocument)
   deriving newtype (Aeson.ToJSON, Aeson.FromJSON)
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangePartial.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangePartial.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangePartial.hs
@@ -0,0 +1,52 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.Range
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data TextDocumentContentChangePartial = TextDocumentContentChangePartial 
+  { {-|
+  The range of the document that changed.
+  -}
+  _range :: Language.LSP.Protocol.Internal.Types.Range.Range
+  , {-|
+  The optional length of the range that got replaced.
+
+  @deprecated use range instead.
+  -}
+  _rangeLength :: (Maybe Language.LSP.Protocol.Types.Common.UInt)
+  , {-|
+  The new text for the provided range.
+  -}
+  _text :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON TextDocumentContentChangePartial)
+
+instance Aeson.ToJSON TextDocumentContentChangePartial where
+  toJSON (TextDocumentContentChangePartial arg0 arg1 arg2) = Aeson.object $ concat $  [["range" Aeson..= arg0]
+    ,"rangeLength" Language.LSP.Protocol.Types.Common..=? arg1
+    ,["text" Aeson..= arg2]]
+
+instance Aeson.FromJSON TextDocumentContentChangePartial where
+  parseJSON = Aeson.withObject "TextDocumentContentChangePartial" $ \arg -> TextDocumentContentChangePartial <$> arg Aeson..: "range" <*> arg Language.LSP.Protocol.Types.Common..:!? "rangeLength" <*> arg Aeson..: "text"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeWholeDocument.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeWholeDocument.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentContentChangeWholeDocument.hs
@@ -0,0 +1,39 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+@since 3.18.0
+@proposed
+-}
+data TextDocumentContentChangeWholeDocument = TextDocumentContentChangeWholeDocument 
+  { {-|
+  The new text of the whole document.
+  -}
+  _text :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON TextDocumentContentChangeWholeDocument)
+
+instance Aeson.ToJSON TextDocumentContentChangeWholeDocument where
+  toJSON (TextDocumentContentChangeWholeDocument arg0) = Aeson.object $ concat $  [["text" Aeson..= arg0]]
+
+instance Aeson.FromJSON TextDocumentContentChangeWholeDocument where
+  parseJSON = Aeson.withObject "TextDocumentContentChangeWholeDocument" $ \arg -> TextDocumentContentChangeWholeDocument <$> arg Aeson..: "text"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilter.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,10 +13,11 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern
+import qualified Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -35,7 +38,7 @@
 
 @since 3.17.0
 -}
-newtype TextDocumentFilter = TextDocumentFilter ((Row.Rec ("language" Row..== Data.Text.Text Row..+ ("scheme" Row..== (Maybe Data.Text.Text) Row..+ ("pattern" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty)))) Language.LSP.Protocol.Types.Common.|? ((Row.Rec ("language" Row..== (Maybe Data.Text.Text) Row..+ ("scheme" Row..== Data.Text.Text Row..+ ("pattern" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty)))) Language.LSP.Protocol.Types.Common.|? (Row.Rec ("language" Row..== (Maybe Data.Text.Text) Row..+ ("scheme" Row..== (Maybe Data.Text.Text) Row..+ ("pattern" Row..== Data.Text.Text Row..+ Row.Empty))))))
+newtype TextDocumentFilter = TextDocumentFilter (Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage.TextDocumentFilterLanguage Language.LSP.Protocol.Types.Common.|? (Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme.TextDocumentFilterScheme Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern.TextDocumentFilterPattern))
   deriving newtype (Aeson.ToJSON, Aeson.FromJSON)
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterLanguage.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterLanguage.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterLanguage.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A document filter where `language` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data TextDocumentFilterLanguage = TextDocumentFilterLanguage 
+  { {-|
+  A language id, like `typescript`.
+  -}
+  _language :: Data.Text.Text
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: (Maybe Data.Text.Text)
+  , {-|
+  A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
+  -}
+  _pattern :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON TextDocumentFilterLanguage)
+
+instance Aeson.ToJSON TextDocumentFilterLanguage where
+  toJSON (TextDocumentFilterLanguage arg0 arg1 arg2) = Aeson.object $ concat $  [["language" Aeson..= arg0]
+    ,"scheme" Language.LSP.Protocol.Types.Common..=? arg1
+    ,"pattern" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON TextDocumentFilterLanguage where
+  parseJSON = Aeson.withObject "TextDocumentFilterLanguage" $ \arg -> TextDocumentFilterLanguage <$> arg Aeson..: "language" <*> arg Language.LSP.Protocol.Types.Common..:!? "scheme" <*> arg Language.LSP.Protocol.Types.Common..:!? "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterPattern.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterPattern.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterPattern.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A document filter where `pattern` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data TextDocumentFilterPattern = TextDocumentFilterPattern 
+  { {-|
+  A language id, like `typescript`.
+  -}
+  _language :: (Maybe Data.Text.Text)
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: (Maybe Data.Text.Text)
+  , {-|
+  A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
+  -}
+  _pattern :: Data.Text.Text
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON TextDocumentFilterPattern)
+
+instance Aeson.ToJSON TextDocumentFilterPattern where
+  toJSON (TextDocumentFilterPattern arg0 arg1 arg2) = Aeson.object $ concat $  ["language" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"scheme" Language.LSP.Protocol.Types.Common..=? arg1
+    ,["pattern" Aeson..= arg2]]
+
+instance Aeson.FromJSON TextDocumentFilterPattern where
+  parseJSON = Aeson.withObject "TextDocumentFilterPattern" $ \arg -> TextDocumentFilterPattern <$> arg Language.LSP.Protocol.Types.Common..:!? "language" <*> arg Language.LSP.Protocol.Types.Common..:!? "scheme" <*> arg Aeson..: "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterScheme.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterScheme.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentFilterScheme.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+A document filter where `scheme` is required field.
+
+@since 3.18.0
+@proposed
+-}
+data TextDocumentFilterScheme = TextDocumentFilterScheme 
+  { {-|
+  A language id, like `typescript`.
+  -}
+  _language :: (Maybe Data.Text.Text)
+  , {-|
+  A Uri `Uri.scheme`, like `file` or `untitled`.
+  -}
+  _scheme :: Data.Text.Text
+  , {-|
+  A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
+  -}
+  _pattern :: (Maybe Data.Text.Text)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON TextDocumentFilterScheme)
+
+instance Aeson.ToJSON TextDocumentFilterScheme where
+  toJSON (TextDocumentFilterScheme arg0 arg1 arg2) = Aeson.object $ concat $  ["language" Language.LSP.Protocol.Types.Common..=? arg0
+    ,["scheme" Aeson..= arg1]
+    ,"pattern" Language.LSP.Protocol.Types.Common..=? arg2]
+
+instance Aeson.FromJSON TextDocumentFilterScheme where
+  parseJSON = Aeson.withObject "TextDocumentFilterScheme" $ \arg -> TextDocumentFilterScheme <$> arg Language.LSP.Protocol.Types.Common..:!? "language" <*> arg Aeson..: "scheme" <*> arg Language.LSP.Protocol.Types.Common..:!? "pattern"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -14,6 +16,7 @@
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
+import qualified Language.LSP.Protocol.Internal.Types.LanguageKind
 import qualified Language.LSP.Protocol.Types.Common
 import qualified Language.LSP.Protocol.Types.Uri
 
@@ -29,7 +32,7 @@
   , {-|
   The text document's language identifier.
   -}
-  _languageId :: Data.Text.Text
+  _languageId :: Language.LSP.Protocol.Internal.Types.LanguageKind.LanguageKind
   , {-|
   The version number of this document (it will increase after each
   change, including undo/redo).
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentPositionParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveReason.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,7 +40,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TextDocumentSaveReason Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TextDocumentSaveReason)
   deriving Pretty via (ViaJSON TextDocumentSaveReason)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum TextDocumentSaveReason where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSaveRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
     ,"includeText" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON TextDocumentSaveRegistrationOptions where
-  parseJSON = Aeson.withObject "TextDocumentSaveRegistrationOptions" $ \arg -> TextDocumentSaveRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "includeText"
+  parseJSON = Aeson.withObject "TextDocumentSaveRegistrationOptions" $ \arg -> TextDocumentSaveRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "includeText"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -49,4 +51,4 @@
     ,"didSave" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON TextDocumentSyncClientCapabilities where
-  parseJSON = Aeson.withObject "TextDocumentSyncClientCapabilities" $ \arg -> TextDocumentSyncClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "willSave" <*> arg Aeson..:! "willSaveWaitUntil" <*> arg Aeson..:! "didSave"
+  parseJSON = Aeson.withObject "TextDocumentSyncClientCapabilities" $ \arg -> TextDocumentSyncClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "willSave" <*> arg Language.LSP.Protocol.Types.Common..:!? "willSaveWaitUntil" <*> arg Language.LSP.Protocol.Types.Common..:!? "didSave"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,7 +43,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TextDocumentSyncKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TextDocumentSyncKind)
   deriving Pretty via (ViaJSON TextDocumentSyncKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum TextDocumentSyncKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextDocumentSyncOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -59,4 +61,4 @@
     ,"save" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON TextDocumentSyncOptions where
-  parseJSON = Aeson.withObject "TextDocumentSyncOptions" $ \arg -> TextDocumentSyncOptions <$> arg Aeson..:! "openClose" <*> arg Aeson..:! "change" <*> arg Aeson..:! "willSave" <*> arg Aeson..:! "willSaveWaitUntil" <*> arg Aeson..:! "save"
+  parseJSON = Aeson.withObject "TextDocumentSyncOptions" $ \arg -> TextDocumentSyncOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "openClose" <*> arg Language.LSP.Protocol.Types.Common..:!? "change" <*> arg Language.LSP.Protocol.Types.Common..:!? "willSave" <*> arg Language.LSP.Protocol.Types.Common..:!? "willSaveWaitUntil" <*> arg Language.LSP.Protocol.Types.Common..:!? "save"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TextEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs b/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TokenFormat.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -29,7 +31,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TokenFormat Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TokenFormat)
   deriving Pretty via (ViaJSON TokenFormat)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum TokenFormat where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TraceValue.hs b/generated/Language/LSP/Protocol/Internal/Types/TraceValue.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/TraceValue.hs
@@ -0,0 +1,58 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.TraceValue where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Data.Set
+import qualified Data.String
+import qualified Data.Text
+import qualified Language.LSP.Protocol.Types.LspEnum
+
+{-|
+
+-}
+data TraceValue = 
+    {-|
+  Turn tracing off.
+  -}
+  TraceValue_Off
+  | {-|
+  Trace messages only.
+  -}
+  TraceValue_Messages
+  | {-|
+  Verbose message tracing.
+  -}
+  TraceValue_Verbose
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving ( Aeson.ToJSON
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TraceValue)
+  deriving Pretty via (ViaJSON TraceValue)
+
+instance Language.LSP.Protocol.Types.LspEnum.LspEnum TraceValue where
+  knownValues = Data.Set.fromList [TraceValue_Off
+    ,TraceValue_Messages
+    ,TraceValue_Verbose]
+  type EnumBaseType TraceValue = Data.Text.Text
+  toEnumBaseType TraceValue_Off = "off"
+  toEnumBaseType TraceValue_Messages = "messages"
+  toEnumBaseType TraceValue_Verbose = "verbose"
+  fromEnumBaseType "off" = pure TraceValue_Off
+  fromEnumBaseType "messages" = pure TraceValue_Messages
+  fromEnumBaseType "verbose" = pure TraceValue_Verbose
+  fromEnumBaseType _ = Nothing
+
+
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TraceValues.hs b/generated/Language/LSP/Protocol/Internal/Types/TraceValues.hs
deleted file mode 100644
--- a/generated/Language/LSP/Protocol/Internal/Types/TraceValues.hs
+++ /dev/null
@@ -1,56 +0,0 @@
--- THIS IS A GENERATED FILE, DO NOT EDIT
-
-{-# OPTIONS_GHC -Wno-unused-imports #-}
-{-# OPTIONS_GHC -Wno-unused-matches #-}
-{-# OPTIONS_GHC -Wno-deprecations #-}
-module Language.LSP.Protocol.Internal.Types.TraceValues where
-
-import Control.DeepSeq
-import Data.Hashable
-import GHC.Generics
-import Language.LSP.Protocol.Utils.Misc
-import Prettyprinter
-import qualified Data.Aeson as Aeson
-import qualified Data.Row.Aeson as Aeson
-import qualified Data.Row.Hashable as Hashable
-import qualified Data.Set
-import qualified Data.String
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Types.LspEnum
-
-{-|
-
--}
-data TraceValues = 
-    {-|
-  Turn tracing off.
-  -}
-  TraceValues_Off
-  | {-|
-  Trace messages only.
-  -}
-  TraceValues_Messages
-  | {-|
-  Verbose message tracing.
-  -}
-  TraceValues_Verbose
-  deriving stock (Show, Eq, Ord, Generic)
-  deriving anyclass (NFData, Hashable)
-  deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum TraceValues Data.Text.Text)
-  deriving Pretty via (ViaJSON TraceValues)
-
-instance Language.LSP.Protocol.Types.LspEnum.LspEnum TraceValues where
-  knownValues = Data.Set.fromList [TraceValues_Off
-    ,TraceValues_Messages
-    ,TraceValues_Verbose]
-  type EnumBaseType TraceValues = Data.Text.Text
-  toEnumBaseType TraceValues_Off = "off"
-  toEnumBaseType TraceValues_Messages = "messages"
-  toEnumBaseType TraceValues_Verbose = "verbose"
-  fromEnumBaseType "off" = pure TraceValues_Off
-  fromEnumBaseType "messages" = pure TraceValues_Messages
-  fromEnumBaseType "verbose" = pure TraceValues_Verbose
-  fromEnumBaseType _ = Nothing
-
-
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -41,4 +43,4 @@
     ,"linkSupport" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON TypeDefinitionClientCapabilities where
-  parseJSON = Aeson.withObject "TypeDefinitionClientCapabilities" $ \arg -> TypeDefinitionClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "linkSupport"
+  parseJSON = Aeson.withObject "TypeDefinitionClientCapabilities" $ \arg -> TypeDefinitionClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "linkSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (TypeDefinitionOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON TypeDefinitionOptions where
-  parseJSON = Aeson.withObject "TypeDefinitionOptions" $ \arg -> TypeDefinitionOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "TypeDefinitionOptions" $ \arg -> TypeDefinitionOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -51,4 +53,4 @@
     ,"partialResultToken" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON TypeDefinitionParams where
-  parseJSON = Aeson.withObject "TypeDefinitionParams" $ \arg -> TypeDefinitionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken"
+  parseJSON = Aeson.withObject "TypeDefinitionParams" $ \arg -> TypeDefinitionParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeDefinitionRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON TypeDefinitionRegistrationOptions where
-  parseJSON = Aeson.withObject "TypeDefinitionRegistrationOptions" $ \arg -> TypeDefinitionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "TypeDefinitionRegistrationOptions" $ \arg -> TypeDefinitionRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (TypeHierarchyClientCapabilities arg0) = Aeson.object $ concat $  ["dynamicRegistration" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON TypeHierarchyClientCapabilities where
-  parseJSON = Aeson.withObject "TypeHierarchyClientCapabilities" $ \arg -> TypeHierarchyClientCapabilities <$> arg Aeson..:! "dynamicRegistration"
+  parseJSON = Aeson.withObject "TypeHierarchyClientCapabilities" $ \arg -> TypeHierarchyClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyItem.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -79,4 +81,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg7]
 
 instance Aeson.FromJSON TypeHierarchyItem where
-  parseJSON = Aeson.withObject "TypeHierarchyItem" $ \arg -> TypeHierarchyItem <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "detail" <*> arg Aeson..: "uri" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "TypeHierarchyItem" $ \arg -> TypeHierarchyItem <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "detail" <*> arg Aeson..: "uri" <*> arg Aeson..: "range" <*> arg Aeson..: "selectionRange" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -34,4 +36,4 @@
   toJSON (TypeHierarchyOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON TypeHierarchyOptions where
-  parseJSON = Aeson.withObject "TypeHierarchyOptions" $ \arg -> TypeHierarchyOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "TypeHierarchyOptions" $ \arg -> TypeHierarchyOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyPrepareParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,"workDoneToken" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON TypeHierarchyPrepareParams where
-  parseJSON = Aeson.withObject "TypeHierarchyPrepareParams" $ \arg -> TypeHierarchyPrepareParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "TypeHierarchyPrepareParams" $ \arg -> TypeHierarchyPrepareParams <$> arg Aeson..: "textDocument" <*> arg Aeson..: "position" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchyRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -48,4 +50,4 @@
     ,"id" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON TypeHierarchyRegistrationOptions where
-  parseJSON = Aeson.withObject "TypeHierarchyRegistrationOptions" $ \arg -> TypeHierarchyRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "id"
+  parseJSON = Aeson.withObject "TypeHierarchyRegistrationOptions" $ \arg -> TypeHierarchyRegistrationOptions <$> arg Aeson..: "documentSelector" <*> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "id"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySubtypesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,["item" Aeson..= arg2]]
 
 instance Aeson.FromJSON TypeHierarchySubtypesParams where
-  parseJSON = Aeson.withObject "TypeHierarchySubtypesParams" $ \arg -> TypeHierarchySubtypesParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "item"
+  parseJSON = Aeson.withObject "TypeHierarchySubtypesParams" $ \arg -> TypeHierarchySubtypesParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "item"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/TypeHierarchySupertypesParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,4 +49,4 @@
     ,["item" Aeson..= arg2]]
 
 instance Aeson.FromJSON TypeHierarchySupertypesParams where
-  parseJSON = Aeson.withObject "TypeHierarchySupertypesParams" $ \arg -> TypeHierarchySupertypesParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "item"
+  parseJSON = Aeson.withObject "TypeHierarchySupertypesParams" $ \arg -> TypeHierarchySupertypesParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "item"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/UInitializeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,13 +14,13 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.ClientCapabilities
+import qualified Language.LSP.Protocol.Internal.Types.ClientInfo
 import qualified Language.LSP.Protocol.Internal.Types.ProgressToken
-import qualified Language.LSP.Protocol.Internal.Types.TraceValues
+import qualified Language.LSP.Protocol.Internal.Types.TraceValue
 import qualified Language.LSP.Protocol.Types.Common
 import qualified Language.LSP.Protocol.Types.Uri
 
@@ -43,7 +45,7 @@
 
   @since 3.15.0
   -}
-  _clientInfo :: (Maybe (Row.Rec ("name" Row..== Data.Text.Text Row..+ ("version" Row..== (Maybe Data.Text.Text) Row..+ Row.Empty))))
+  _clientInfo :: (Maybe Language.LSP.Protocol.Internal.Types.ClientInfo.ClientInfo)
   , {-|
   The locale the client is currently showing the user interface
   in. This must not necessarily be the locale of the operating
@@ -81,7 +83,7 @@
   , {-|
   The initial trace setting. If omitted trace is disabled ('off').
   -}
-  _trace :: (Maybe Language.LSP.Protocol.Internal.Types.TraceValues.TraceValues)
+  _trace :: (Maybe Language.LSP.Protocol.Internal.Types.TraceValue.TraceValue)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -99,4 +101,4 @@
     ,"trace" Language.LSP.Protocol.Types.Common..=? arg8]
 
 instance Aeson.FromJSON UInitializeParams where
-  parseJSON = Aeson.withObject "_InitializeParams" $ \arg -> UInitializeParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..: "processId" <*> arg Aeson..:! "clientInfo" <*> arg Aeson..:! "locale" <*> arg Aeson..:! "rootPath" <*> arg Aeson..: "rootUri" <*> arg Aeson..: "capabilities" <*> arg Aeson..:! "initializationOptions" <*> arg Aeson..:! "trace"
+  parseJSON = Aeson.withObject "_InitializeParams" $ \arg -> UInitializeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Aeson..: "processId" <*> arg Language.LSP.Protocol.Types.Common..:!? "clientInfo" <*> arg Language.LSP.Protocol.Types.Common..:!? "locale" <*> arg Language.LSP.Protocol.Types.Common..:!? "rootPath" <*> arg Aeson..: "rootUri" <*> arg Aeson..: "capabilities" <*> arg Language.LSP.Protocol.Types.Common..:!? "initializationOptions" <*> arg Language.LSP.Protocol.Types.Common..:!? "trace"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/UnchangedDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs b/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/UniquenessLevel.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -47,7 +49,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum UniquenessLevel Data.Text.Text)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum UniquenessLevel)
   deriving Pretty via (ViaJSON UniquenessLevel)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum UniquenessLevel where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs b/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/Unregistration.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs b/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/UnregistrationParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/VersionedNotebookDocumentIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs b/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/VersionedTextDocumentIdentifier.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs b/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WatchKind.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -38,7 +40,7 @@
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
   deriving ( Aeson.ToJSON
-  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum WatchKind Language.LSP.Protocol.Types.Common.UInt)
+  , Aeson.FromJSON ) via (Language.LSP.Protocol.Types.LspEnum.AsLspEnum WatchKind)
   deriving Pretty via (ViaJSON WatchKind)
 
 instance Language.LSP.Protocol.Types.LspEnum.LspEnum WatchKind where
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WillSaveTextDocumentParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WindowClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -56,4 +58,4 @@
     ,"showDocument" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON WindowClientCapabilities where
-  parseJSON = Aeson.withObject "WindowClientCapabilities" $ \arg -> WindowClientCapabilities <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "showMessage" <*> arg Aeson..:! "showDocument"
+  parseJSON = Aeson.withObject "WindowClientCapabilities" $ \arg -> WindowClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "showMessage" <*> arg Language.LSP.Protocol.Types.Common..:!? "showDocument"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressBegin.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -68,4 +70,4 @@
     ,"percentage" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON WorkDoneProgressBegin where
-  parseJSON = Aeson.withObject "WorkDoneProgressBegin" $ \arg -> WorkDoneProgressBegin <$> arg Aeson..: "kind" <*> arg Aeson..: "title" <*> arg Aeson..:! "cancellable" <*> arg Aeson..:! "message" <*> arg Aeson..:! "percentage"
+  parseJSON = Aeson.withObject "WorkDoneProgressBegin" $ \arg -> WorkDoneProgressBegin <$> arg Aeson..: "kind" <*> arg Aeson..: "title" <*> arg Language.LSP.Protocol.Types.Common..:!? "cancellable" <*> arg Language.LSP.Protocol.Types.Common..:!? "message" <*> arg Language.LSP.Protocol.Types.Common..:!? "percentage"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCancelParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressCreateParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressEnd.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"message" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON WorkDoneProgressEnd where
-  parseJSON = Aeson.withObject "WorkDoneProgressEnd" $ \arg -> WorkDoneProgressEnd <$> arg Aeson..: "kind" <*> arg Aeson..:! "message"
+  parseJSON = Aeson.withObject "WorkDoneProgressEnd" $ \arg -> WorkDoneProgressEnd <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "message"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -32,4 +34,4 @@
   toJSON (WorkDoneProgressOptions arg0) = Aeson.object $ concat $  ["workDoneProgress" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON WorkDoneProgressOptions where
-  parseJSON = Aeson.withObject "WorkDoneProgressOptions" $ \arg -> WorkDoneProgressOptions <$> arg Aeson..:! "workDoneProgress"
+  parseJSON = Aeson.withObject "WorkDoneProgressOptions" $ \arg -> WorkDoneProgressOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -33,4 +35,4 @@
   toJSON (WorkDoneProgressParams arg0) = Aeson.object $ concat $  ["workDoneToken" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON WorkDoneProgressParams where
-  parseJSON = Aeson.withObject "WorkDoneProgressParams" $ \arg -> WorkDoneProgressParams <$> arg Aeson..:! "workDoneToken"
+  parseJSON = Aeson.withObject "WorkDoneProgressParams" $ \arg -> WorkDoneProgressParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkDoneProgressReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -61,4 +63,4 @@
     ,"percentage" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON WorkDoneProgressReport where
-  parseJSON = Aeson.withObject "WorkDoneProgressReport" $ \arg -> WorkDoneProgressReport <$> arg Aeson..: "kind" <*> arg Aeson..:! "cancellable" <*> arg Aeson..:! "message" <*> arg Aeson..:! "percentage"
+  parseJSON = Aeson.withObject "WorkDoneProgressReport" $ \arg -> WorkDoneProgressReport <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "cancellable" <*> arg Language.LSP.Protocol.Types.Common..:!? "message" <*> arg Language.LSP.Protocol.Types.Common..:!? "percentage"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -131,4 +133,4 @@
     ,"diagnostics" Language.LSP.Protocol.Types.Common..=? arg13]
 
 instance Aeson.FromJSON WorkspaceClientCapabilities where
-  parseJSON = Aeson.withObject "WorkspaceClientCapabilities" $ \arg -> WorkspaceClientCapabilities <$> arg Aeson..:! "applyEdit" <*> arg Aeson..:! "workspaceEdit" <*> arg Aeson..:! "didChangeConfiguration" <*> arg Aeson..:! "didChangeWatchedFiles" <*> arg Aeson..:! "symbol" <*> arg Aeson..:! "executeCommand" <*> arg Aeson..:! "workspaceFolders" <*> arg Aeson..:! "configuration" <*> arg Aeson..:! "semanticTokens" <*> arg Aeson..:! "codeLens" <*> arg Aeson..:! "fileOperations" <*> arg Aeson..:! "inlineValue" <*> arg Aeson..:! "inlayHint" <*> arg Aeson..:! "diagnostics"
+  parseJSON = Aeson.withObject "WorkspaceClientCapabilities" $ \arg -> WorkspaceClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "applyEdit" <*> arg Language.LSP.Protocol.Types.Common..:!? "workspaceEdit" <*> arg Language.LSP.Protocol.Types.Common..:!? "didChangeConfiguration" <*> arg Language.LSP.Protocol.Types.Common..:!? "didChangeWatchedFiles" <*> arg Language.LSP.Protocol.Types.Common..:!? "symbol" <*> arg Language.LSP.Protocol.Types.Common..:!? "executeCommand" <*> arg Language.LSP.Protocol.Types.Common..:!? "workspaceFolders" <*> arg Language.LSP.Protocol.Types.Common..:!? "configuration" <*> arg Language.LSP.Protocol.Types.Common..:!? "semanticTokens" <*> arg Language.LSP.Protocol.Types.Common..:!? "codeLens" <*> arg Language.LSP.Protocol.Types.Common..:!? "fileOperations" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlineValue" <*> arg Language.LSP.Protocol.Types.Common..:!? "inlayHint" <*> arg Language.LSP.Protocol.Types.Common..:!? "diagnostics"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -54,4 +56,4 @@
     ,["previousResultIds" Aeson..= arg3]]
 
 instance Aeson.FromJSON WorkspaceDiagnosticParams where
-  parseJSON = Aeson.withObject "WorkspaceDiagnosticParams" $ \arg -> WorkspaceDiagnosticParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..:! "identifier" <*> arg Aeson..: "previousResultIds"
+  parseJSON = Aeson.withObject "WorkspaceDiagnosticParams" $ \arg -> WorkspaceDiagnosticParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "identifier" <*> arg Aeson..: "previousResultIds"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDiagnosticReportPartialResult.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEdit.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -76,4 +78,4 @@
     ,"changeAnnotations" Language.LSP.Protocol.Types.Common..=? arg2]
 
 instance Aeson.FromJSON WorkspaceEdit where
-  parseJSON = Aeson.withObject "WorkspaceEdit" $ \arg -> WorkspaceEdit <$> arg Aeson..:! "changes" <*> arg Aeson..:! "documentChanges" <*> arg Aeson..:! "changeAnnotations"
+  parseJSON = Aeson.withObject "WorkspaceEdit" $ \arg -> WorkspaceEdit <$> arg Language.LSP.Protocol.Types.Common..:!? "changes" <*> arg Language.LSP.Protocol.Types.Common..:!? "documentChanges" <*> arg Language.LSP.Protocol.Types.Common..:!? "changeAnnotations"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceEditClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,9 +13,9 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions
 import qualified Language.LSP.Protocol.Internal.Types.FailureHandlingKind
 import qualified Language.LSP.Protocol.Internal.Types.ResourceOperationKind
 import qualified Language.LSP.Protocol.Types.Common
@@ -56,7 +58,7 @@
 
   @since 3.16.0
   -}
-  _changeAnnotationSupport :: (Maybe (Row.Rec ("groupsOnLabel" Row..== (Maybe Bool) Row..+ Row.Empty)))
+  _changeAnnotationSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions.ChangeAnnotationsSupportOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -70,4 +72,4 @@
     ,"changeAnnotationSupport" Language.LSP.Protocol.Types.Common..=? arg4]
 
 instance Aeson.FromJSON WorkspaceEditClientCapabilities where
-  parseJSON = Aeson.withObject "WorkspaceEditClientCapabilities" $ \arg -> WorkspaceEditClientCapabilities <$> arg Aeson..:! "documentChanges" <*> arg Aeson..:! "resourceOperations" <*> arg Aeson..:! "failureHandling" <*> arg Aeson..:! "normalizesLineEndings" <*> arg Aeson..:! "changeAnnotationSupport"
+  parseJSON = Aeson.withObject "WorkspaceEditClientCapabilities" $ \arg -> WorkspaceEditClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "documentChanges" <*> arg Language.LSP.Protocol.Types.Common..:!? "resourceOperations" <*> arg Language.LSP.Protocol.Types.Common..:!? "failureHandling" <*> arg Language.LSP.Protocol.Types.Common..:!? "normalizesLineEndings" <*> arg Language.LSP.Protocol.Types.Common..:!? "changeAnnotationSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFolder.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersChangeEvent.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersInitializeParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -39,4 +41,4 @@
   toJSON (WorkspaceFoldersInitializeParams arg0) = Aeson.object $ concat $  ["workspaceFolders" Language.LSP.Protocol.Types.Common..=? arg0]
 
 instance Aeson.FromJSON WorkspaceFoldersInitializeParams where
-  parseJSON = Aeson.withObject "WorkspaceFoldersInitializeParams" $ \arg -> WorkspaceFoldersInitializeParams <$> arg Aeson..:! "workspaceFolders"
+  parseJSON = Aeson.withObject "WorkspaceFoldersInitializeParams" $ \arg -> WorkspaceFoldersInitializeParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workspaceFolders"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFoldersServerCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -44,4 +46,4 @@
     ,"changeNotifications" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON WorkspaceFoldersServerCapabilities where
-  parseJSON = Aeson.withObject "WorkspaceFoldersServerCapabilities" $ \arg -> WorkspaceFoldersServerCapabilities <$> arg Aeson..:! "supported" <*> arg Aeson..:! "changeNotifications"
+  parseJSON = Aeson.withObject "WorkspaceFoldersServerCapabilities" $ \arg -> WorkspaceFoldersServerCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "supported" <*> arg Language.LSP.Protocol.Types.Common..:!? "changeNotifications"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceFullDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -61,4 +63,4 @@
     ,["version" Aeson..= arg4]]
 
 instance Aeson.FromJSON WorkspaceFullDocumentDiagnosticReport where
-  parseJSON = Aeson.withObject "WorkspaceFullDocumentDiagnosticReport" $ \arg -> WorkspaceFullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Aeson..:! "resultId" <*> arg Aeson..: "items" <*> arg Aeson..: "uri" <*> arg Aeson..: "version"
+  parseJSON = Aeson.withObject "WorkspaceFullDocumentDiagnosticReport" $ \arg -> WorkspaceFullDocumentDiagnosticReport <$> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "resultId" <*> arg Aeson..: "items" <*> arg Aeson..: "uri" <*> arg Aeson..: "version"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceOptions.hs
new file mode 100644
--- /dev/null
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceOptions.hs
@@ -0,0 +1,51 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
+-- THIS IS A GENERATED FILE, DO NOT EDIT
+
+{-# OPTIONS_GHC -Wno-unused-imports #-}
+{-# OPTIONS_GHC -Wno-unused-matches #-}
+{-# OPTIONS_GHC -Wno-deprecations #-}
+module Language.LSP.Protocol.Internal.Types.WorkspaceOptions where
+
+import Control.DeepSeq
+import Data.Hashable
+import GHC.Generics
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import qualified Data.Aeson as Aeson
+import qualified Data.Row.Aeson as Aeson
+import qualified Data.Row.Hashable as Hashable
+import qualified Language.LSP.Protocol.Internal.Types.FileOperationOptions
+import qualified Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities
+import qualified Language.LSP.Protocol.Types.Common
+
+{-|
+Defines workspace specific capabilities of the server.
+
+@since 3.18.0
+@proposed
+-}
+data WorkspaceOptions = WorkspaceOptions 
+  { {-|
+  The server supports workspace folder.
+
+  @since 3.6.0
+  -}
+  _workspaceFolders :: (Maybe Language.LSP.Protocol.Internal.Types.WorkspaceFoldersServerCapabilities.WorkspaceFoldersServerCapabilities)
+  , {-|
+  The server is interested in notifications/requests for operations on files.
+
+  @since 3.16.0
+  -}
+  _fileOperations :: (Maybe Language.LSP.Protocol.Internal.Types.FileOperationOptions.FileOperationOptions)
+  }
+  deriving stock (Show, Eq, Ord, Generic)
+  deriving anyclass (NFData, Hashable)
+  deriving Pretty via (ViaJSON WorkspaceOptions)
+
+instance Aeson.ToJSON WorkspaceOptions where
+  toJSON (WorkspaceOptions arg0 arg1) = Aeson.object $ concat $  ["workspaceFolders" Language.LSP.Protocol.Types.Common..=? arg0
+    ,"fileOperations" Language.LSP.Protocol.Types.Common..=? arg1]
+
+instance Aeson.FromJSON WorkspaceOptions where
+  parseJSON = Aeson.withObject "WorkspaceOptions" $ \arg -> WorkspaceOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workspaceFolders" <*> arg Language.LSP.Protocol.Types.Common..:!? "fileOperations"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbol.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -12,15 +14,14 @@
 import Prettyprinter
 import qualified Data.Aeson
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
 import qualified Data.Text
 import qualified Language.LSP.Protocol.Internal.Types.Location
+import qualified Language.LSP.Protocol.Internal.Types.LocationUriOnly
 import qualified Language.LSP.Protocol.Internal.Types.SymbolKind
 import qualified Language.LSP.Protocol.Internal.Types.SymbolTag
 import qualified Language.LSP.Protocol.Types.Common
-import qualified Language.LSP.Protocol.Types.Uri
 
 {-|
 A special workspace symbol that supports locations without a range.
@@ -58,7 +59,7 @@
 
   See SymbolInformation#location for more details.
   -}
-  _location :: (Language.LSP.Protocol.Internal.Types.Location.Location Language.LSP.Protocol.Types.Common.|? (Row.Rec ("uri" Row..== Language.LSP.Protocol.Types.Uri.Uri Row..+ Row.Empty)))
+  _location :: (Language.LSP.Protocol.Internal.Types.Location.Location Language.LSP.Protocol.Types.Common.|? Language.LSP.Protocol.Internal.Types.LocationUriOnly.LocationUriOnly)
   , {-|
   A data entry field that is preserved on a workspace symbol between a
   workspace symbol request and a workspace symbol resolve request.
@@ -78,4 +79,4 @@
     ,"data" Language.LSP.Protocol.Types.Common..=? arg5]
 
 instance Aeson.FromJSON WorkspaceSymbol where
-  parseJSON = Aeson.withObject "WorkspaceSymbol" $ \arg -> WorkspaceSymbol <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Aeson..:! "tags" <*> arg Aeson..:! "containerName" <*> arg Aeson..: "location" <*> arg Aeson..:! "data"
+  parseJSON = Aeson.withObject "WorkspaceSymbol" $ \arg -> WorkspaceSymbol <$> arg Aeson..: "name" <*> arg Aeson..: "kind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tags" <*> arg Language.LSP.Protocol.Types.Common..:!? "containerName" <*> arg Aeson..: "location" <*> arg Language.LSP.Protocol.Types.Common..:!? "data"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolClientCapabilities.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -11,12 +13,11 @@
 import Language.LSP.Protocol.Utils.Misc
 import Prettyprinter
 import qualified Data.Aeson as Aeson
-import qualified Data.Row as Row
 import qualified Data.Row.Aeson as Aeson
 import qualified Data.Row.Hashable as Hashable
-import qualified Data.Text
-import qualified Language.LSP.Protocol.Internal.Types.SymbolKind
-import qualified Language.LSP.Protocol.Internal.Types.SymbolTag
+import qualified Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions
+import qualified Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions
 import qualified Language.LSP.Protocol.Types.Common
 
 {-|
@@ -30,14 +31,14 @@
   , {-|
   Specific capabilities for the `SymbolKind` in the `workspace/symbol` request.
   -}
-  _symbolKind :: (Maybe (Row.Rec ("valueSet" Row..== (Maybe [Language.LSP.Protocol.Internal.Types.SymbolKind.SymbolKind]) Row..+ Row.Empty)))
+  _symbolKind :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions.ClientSymbolKindOptions)
   , {-|
   The client supports tags on `SymbolInformation`.
   Clients supporting tags have to handle unknown tags gracefully.
 
   @since 3.16.0
   -}
-  _tagSupport :: (Maybe (Row.Rec ("valueSet" Row..== [Language.LSP.Protocol.Internal.Types.SymbolTag.SymbolTag] Row..+ Row.Empty)))
+  _tagSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions.ClientSymbolTagOptions)
   , {-|
   The client support partial workspace symbols. The client will send the
   request `workspaceSymbol/resolve` to the server to resolve additional
@@ -45,7 +46,7 @@
 
   @since 3.17.0
   -}
-  _resolveSupport :: (Maybe (Row.Rec ("properties" Row..== [Data.Text.Text] Row..+ Row.Empty)))
+  _resolveSupport :: (Maybe Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions.ClientSymbolResolveOptions)
   }
   deriving stock (Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
@@ -58,4 +59,4 @@
     ,"resolveSupport" Language.LSP.Protocol.Types.Common..=? arg3]
 
 instance Aeson.FromJSON WorkspaceSymbolClientCapabilities where
-  parseJSON = Aeson.withObject "WorkspaceSymbolClientCapabilities" $ \arg -> WorkspaceSymbolClientCapabilities <$> arg Aeson..:! "dynamicRegistration" <*> arg Aeson..:! "symbolKind" <*> arg Aeson..:! "tagSupport" <*> arg Aeson..:! "resolveSupport"
+  parseJSON = Aeson.withObject "WorkspaceSymbolClientCapabilities" $ \arg -> WorkspaceSymbolClientCapabilities <$> arg Language.LSP.Protocol.Types.Common..:!? "dynamicRegistration" <*> arg Language.LSP.Protocol.Types.Common..:!? "symbolKind" <*> arg Language.LSP.Protocol.Types.Common..:!? "tagSupport" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveSupport"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON WorkspaceSymbolOptions where
-  parseJSON = Aeson.withObject "WorkspaceSymbolOptions" $ \arg -> WorkspaceSymbolOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "WorkspaceSymbolOptions" $ \arg -> WorkspaceSymbolOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolParams.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -46,4 +48,4 @@
     ,["query" Aeson..= arg2]]
 
 instance Aeson.FromJSON WorkspaceSymbolParams where
-  parseJSON = Aeson.withObject "WorkspaceSymbolParams" $ \arg -> WorkspaceSymbolParams <$> arg Aeson..:! "workDoneToken" <*> arg Aeson..:! "partialResultToken" <*> arg Aeson..: "query"
+  parseJSON = Aeson.withObject "WorkspaceSymbolParams" $ \arg -> WorkspaceSymbolParams <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneToken" <*> arg Language.LSP.Protocol.Types.Common..:!? "partialResultToken" <*> arg Aeson..: "query"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceSymbolRegistrationOptions.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
@@ -40,4 +42,4 @@
     ,"resolveProvider" Language.LSP.Protocol.Types.Common..=? arg1]
 
 instance Aeson.FromJSON WorkspaceSymbolRegistrationOptions where
-  parseJSON = Aeson.withObject "WorkspaceSymbolRegistrationOptions" $ \arg -> WorkspaceSymbolRegistrationOptions <$> arg Aeson..:! "workDoneProgress" <*> arg Aeson..:! "resolveProvider"
+  parseJSON = Aeson.withObject "WorkspaceSymbolRegistrationOptions" $ \arg -> WorkspaceSymbolRegistrationOptions <$> arg Language.LSP.Protocol.Types.Common..:!? "workDoneProgress" <*> arg Language.LSP.Protocol.Types.Common..:!? "resolveProvider"
diff --git a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs
--- a/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs
+++ b/generated/Language/LSP/Protocol/Internal/Types/WorkspaceUnchangedDocumentDiagnosticReport.hs
@@ -1,3 +1,5 @@
+{- ORMOLU_DISABLE -}
+{- HLINT ignore -}
 -- THIS IS A GENERATED FILE, DO NOT EDIT
 
 {-# OPTIONS_GHC -Wno-unused-imports #-}
diff --git a/generator/CodeGen.hs b/generator/CodeGen.hs
--- a/generator/CodeGen.hs
+++ b/generator/CodeGen.hs
@@ -1,51 +1,59 @@
 {-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE NamedFieldPuns #-}
 {-# LANGUAGE LambdaCase #-}
-{-# LANGUAGE ScopedTypeVariables #-}
-{-# LANGUAGE ViewPatterns #-}
-{-# LANGUAGE RecordWildCards #-}
+{-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE QuasiQuotes #-}
+{-# LANGUAGE RecordWildCards #-}
+{-# LANGUAGE ViewPatterns #-}
+
 {- | The main module for generating code from the metamodel
 
 See Note [Code generation approach] for why we do it this way.
 -}
 module CodeGen where
 
-import qualified Data.Text as T
-import qualified Data.Map as Map
-import qualified Data.Set as Set
-import qualified Text.RE.Replace as RE
-import qualified Text.RE.TDFA.Text as RE
-import Language.LSP.MetaModel as MM
+import Control.Monad
 import Control.Monad.Reader
 import Control.Monad.Writer
-import Prettyprinter
-import Data.Traversable
 import Data.Foldable
-import System.FilePath
-import System.Directory
-import qualified Data.Text.IO as T
-import Data.List (sort, intersperse)
-import Data.Maybe (maybeToList, fromMaybe, catMaybes, mapMaybe)
 import Data.Function
+import Data.List (intersperse, sort)
+import Data.List.NonEmpty qualified as NE
+import Data.Map qualified as Map
+import Data.Maybe (catMaybes, fromMaybe, mapMaybe, maybeToList)
+import Data.Set qualified as Set
+import Data.Text qualified as T
+import Data.Text.IO qualified as T
+import Data.Traversable
+import Language.LSP.MetaModel as MM
+import Prettyprinter
+import System.Directory
+import System.FilePath
+import Text.RE.Replace qualified as RE
+import Text.RE.TDFA.Text qualified as RE
+import Witherable (forMaybe)
 
 -- | A mapping from names in the metamodel to their names in the generated Haskell.
 type SymbolTable = Map.Map T.Text T.Text
 
--- | A mapping from names in the metamodel to their structure definition, used for chasing
--- supertypes.
+{- | A mapping from names in the metamodel to their structure definition, used for chasing
+ supertypes.
+-}
 type StructTable = Map.Map T.Text Structure
 
-data CodeGenEnv = CodeGenEnv {
-  symbolTable :: SymbolTable
+data TypeMeta = TypeMeta {isProposed :: Bool}
+type MetaTable = Map.Map T.Text TypeMeta
+
+data CodeGenEnv = CodeGenEnv
+  { symbolTable :: SymbolTable
   , structTable :: StructTable
+  , metaTable :: MetaTable
   , modulePrefix :: T.Text
   , outputDir :: FilePath
   }
 
 -- | Monad for running overall code generation in, has access to the environment and settings.
 type CodeGenM = ReaderT CodeGenEnv IO
+
 -- | Monad for running module generation in, the same as 'CodeGenM' with the ability to record imports.
 type ModuleGenM = WriterT (Set.Set T.Text) CodeGenM
 
@@ -86,37 +94,48 @@
   pure t''
 
 multilineHaddock :: Doc ann -> Doc ann
-multilineHaddock doc = vsep [ "{-|", doc , "-}" ]
+multilineHaddock doc = vsep ["{-|", doc, "-}"]
 
-genModule :: forall ann . T.Text -> [T.Text] -> Maybe [T.Text] -> ModuleGenM (Doc ann) -> CodeGenM T.Text
+genModule :: forall ann. T.Text -> [T.Text] -> Maybe [T.Text] -> ModuleGenM (Doc ann) -> CodeGenM T.Text
 genModule name pragmas mexports action = do
   (doc, imports) <- runWriterT action
   mp <- asks modulePrefix
   dir <- asks outputDir
   let
-      -- these are both common in the generated code
-      ghcOptions :: [T.Text] = ["-Wno-unused-imports", "-Wno-unused-matches", "-Wno-deprecations"]
-      fullModName = mp <> "." <> name
-      warning = "-- THIS IS A GENERATED FILE, DO NOT EDIT"
-      pragmaSection = hardvcat (fmap (\p -> "{-#" <+> "LANGUAGE" <+> pretty p <+> "#-}") pragmas)
-      optionsSection = hardvcat (fmap (\p -> "{-#" <+> "OPTIONS_GHC" <+> pretty p <+> "#-}") ghcOptions)
-      header = case mexports of
-        Just exports -> "module" <+> pretty fullModName <+> parens (cat $ punctuate "," (fmap pretty exports)) <+> "where"
-        Nothing -> "module" <+> pretty fullModName <+> "where"
-      -- TODO: replace with regex
-      isSelfImport imp = (" " <> fullModName <> " ") `T.isInfixOf` imp || (" " <> fullModName) `T.isSuffixOf` imp
-      importSection = hardvcat (fmap pretty $ filter (not . isSelfImport) $ toList imports)
-      mod = warning <> hardline
-          <> pragmaSection <> hardline
-          <> optionsSection <> hardline
-          <> header <> hardline <> hardline
-          <> importSection 
-          <> hardline <> hardline 
-          <> doc <> hardline
-      printed = T.pack $ show mod
+    -- these are both common in the generated code
+    ghcOptions :: [T.Text] = ["-Wno-unused-imports", "-Wno-unused-matches", "-Wno-deprecations"]
+    fullModName = mp <> "." <> name
+    ignoreComments = ["{- ORMOLU_DISABLE -}", "{- HLINT ignore -}"]
+    warning = "-- THIS IS A GENERATED FILE, DO NOT EDIT"
+    pragmaSection = hardvcat (fmap (\p -> "{-#" <+> "LANGUAGE" <+> pretty p <+> "#-}") pragmas)
+    optionsSection = hardvcat (fmap (\p -> "{-#" <+> "OPTIONS_GHC" <+> pretty p <+> "#-}") ghcOptions)
+    header = case mexports of
+      Just exports -> "module" <+> pretty fullModName <+> parens (cat $ punctuate "," (fmap pretty exports)) <+> "where"
+      Nothing -> "module" <+> pretty fullModName <+> "where"
+    -- TODO: replace with regex
+    isSelfImport imp = (" " <> fullModName <> " ") `T.isInfixOf` imp || (" " <> fullModName) `T.isSuffixOf` imp
+    importSection = hardvcat (fmap pretty $ filter (not . isSelfImport) $ toList imports)
+    mod =
+      hardvcat ignoreComments
+        <> hardline
+        <> warning
+        <> hardline
+        <> pragmaSection
+        <> hardline
+        <> optionsSection
+        <> hardline
+        <> header
+        <> hardline
+        <> hardline
+        <> importSection
+        <> hardline
+        <> hardline
+        <> doc
+        <> hardline
+    printed = T.pack $ show mod
 
-      modSegments = T.unpack <$> T.splitOn "." fullModName
-      modulePath = foldl (</>) dir modSegments <.> "hs"
+    modSegments = T.unpack <$> T.splitOn "." fullModName
+    modulePath = foldl (</>) dir modSegments <.> "hs"
 
   lift $ createDirectoryIfMissing True $ takeDirectory modulePath
   lift $ T.writeFile modulePath printed
@@ -147,24 +166,28 @@
 
 genFromMetaModel :: T.Text -> FilePath -> MetaModel -> IO ()
 genFromMetaModel prefix dir mm = do
-  let (symbolTable, structTable) = buildTables mm
-  flip runReaderT (CodeGenEnv symbolTable structTable prefix dir) $ do
-    structModuleNames <- traverse genStruct (structures mm)
+  let (symbolTable, structTable, metaTable) = buildTables mm
+  flip runReaderT (CodeGenEnv symbolTable structTable metaTable prefix dir) $ do
     -- Don't even generate LSPAny, LSPObject, or LSPArry
-    aliasModuleNames <- traverse genAlias (filter (\TypeAlias{name} -> name `notElem` ["LSPAny", "LSPObject", "LSPArray"]) (typeAliases mm))
-    enumModuleNames <- traverse genEnum (enumerations mm)
+    let filteredAliases = filter (\TypeAlias{name} -> name `notElem` ["LSPAny", "LSPObject", "LSPArray"]) (typeAliases mm)
+    structModuleNames <- catMaybes <$> traverse genStruct (structures mm)
+    aliasModuleNames <- catMaybes <$> traverse genAlias filteredAliases
+    enumModuleNames <- catMaybes <$> traverse genEnum (enumerations mm)
     methodModuleName <- genMethods (requests mm) (notifications mm)
     -- not the methods, we export them separately!
     genAllModule $ sort $ concat [structModuleNames, aliasModuleNames, enumModuleNames]
     -- Have to use the string form of the generated Name
     -- since we might have mangled the original name
     let structNames = mapMaybe (\Structure{name} -> Map.lookup name symbolTable) (structures mm)
-    genLensModule structNames
+        aliasNames = mapMaybe (\TypeAlias{name} -> Map.lookup name symbolTable) filteredAliases
+        enumNames = mapMaybe (\Enumeration{name} -> Map.lookup name symbolTable) (enumerations mm)
+    genMetaModule (structures mm) filteredAliases (enumerations mm)
     pure ()
   pure ()
+
 -- | Names we can't put in Haskell code.
 reservedNames :: Set.Set T.Text
-reservedNames = Set.fromList [ "data", "type" ]
+reservedNames = Set.fromList ["data", "type"]
 
 -- | Sanitize a name so we can use it in Haskell.
 sanitizeName :: T.Text -> T.Text
@@ -172,13 +195,13 @@
   -- Names can't start with underscores! Replace that with a 'U' for lack
   -- of a better idea
   let n' = if "_" `T.isPrefixOf` n then T.cons 'U' $ T.tail n else n
-  -- Names can't have '$'s! Just throw them away.
+      -- Names can't have '$'s! Just throw them away.
       n'' = T.filter (\c -> c /= '$') n'
-  -- If we end up with a reserved name, suffix with an underscore. This
-  -- relibly gets us something recognizable, rather than trying to systematize
-  -- the conversion of 'type' into 'tpe' or similar.
+      -- If we end up with a reserved name, suffix with an underscore. This
+      -- relibly gets us something recognizable, rather than trying to systematize
+      -- the conversion of 'type' into 'tpe' or similar.
       n''' = if n'' `Set.member` reservedNames then n'' <> "_" else n''
-  in n'''
+   in n'''
 
 -- | Make a name to be used at the top-level (i.e. not as a member of anything).
 makeToplevelName :: T.Text -> T.Text
@@ -189,42 +212,56 @@
 makeConstrName context n =
   let
     cap = capitalize n
-    disambiguated = case context of { Just t -> t <> "_" <> cap; Nothing -> cap }
-  in sanitizeName disambiguated
+    disambiguated = case context of Just t -> t <> "_" <> cap; Nothing -> cap
+   in
+    sanitizeName disambiguated
 
 -- | Make a name for a field.
 makeFieldName :: T.Text -> T.Text
 makeFieldName n = "_" <> sanitizeName n
 
-buildTables :: MetaModel -> (SymbolTable, StructTable)
+buildTables :: MetaModel -> (SymbolTable, StructTable, MetaTable)
 buildTables (MetaModel{structures, enumerations, typeAliases}) =
-  let bothEntries = flip fmap structures $ \s@Structure{name} ->
-        ((name, makeToplevelName name), (name, s))
-      (entries, sentries) = unzip bothEntries
+  let (structNames, structStructs, structMeta) = unzip3 $ flip fmap structures $ \s@Structure{name, proposed} ->
+        ((name, makeToplevelName name), (name, s), (name, TypeMeta (fromMaybe False proposed)))
 
-      entries' = flip fmap enumerations $ \Enumeration{name} -> (name, makeToplevelName name)
+      (enumNames, enumMeta) = unzip $ flip fmap enumerations $ \Enumeration{name, proposed} -> ((name, makeToplevelName name), (name, TypeMeta (fromMaybe False proposed)))
 
-      entries'' = flip fmap typeAliases $ \TypeAlias{name} -> (name, makeToplevelName name)
-      symbolTable = Map.fromList $ entries <> entries' <> entries''
+      (aliasNames, aliasMeta) = unzip $ flip fmap typeAliases $ \TypeAlias{name, proposed} -> ((name, makeToplevelName name), (name, TypeMeta (fromMaybe False proposed)))
+      symbolTable = Map.fromList $ structNames <> enumNames <> aliasNames
 
-      structTable = Map.fromList sentries
-  in (symbolTable, structTable)
+      structTable = Map.fromList structStructs
 
--- | Translate a type in the metamodel into the corresponding Haskell type.
--- See Note [Translating metamodel types]
+      metaTable = Map.fromList $ structMeta <> enumMeta <> aliasMeta
+   in (symbolTable, structTable, metaTable)
+
+isProposedM :: T.Text -> ModuleGenM Bool
+isProposedM n = do
+  mt <- asks metaTable
+  case Map.lookup n mt of
+    Just (TypeMeta proposed) -> pure proposed
+    Nothing -> fail $ "Unknown name: " <> show n
+
+isProposedTypeM :: Type -> ModuleGenM Bool
+isProposedTypeM = \case
+  ReferenceType n -> isProposedM n
+  _ -> pure False
+
+{- | Translate a type in the metamodel into the corresponding Haskell type.
+ See Note [Translating metamodel types]
+-}
 convertType :: Type -> ModuleGenM (Doc ann)
 convertType = \case
   BaseType n -> case n of
-    URI         -> pretty <$> entityName "Language.LSP.Protocol.Types.Uri" "Uri"
+    URI -> pretty <$> entityName "Language.LSP.Protocol.Types.Uri" "Uri"
     DocumentUri -> pretty <$> entityName "Language.LSP.Protocol.Types.Uri" "Uri"
-    Integer     -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Int32"
-    UInteger    -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "UInt"
-    Decimal     -> pure "Float"
-    RegExp      -> pretty <$> entityName "Data.Text" "Text"
-    String      -> pretty <$> entityName "Data.Text" "Text"
-    Boolean     -> pure "Bool"
-    Null        -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Null"
-
+    Integer -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Int32"
+    UInteger -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "UInt"
+    Decimal -> pure "Float"
+    RegExp -> pretty <$> entityName "Data.Text" "Text"
+    String -> pretty <$> entityName "Data.Text" "Text"
+    Boolean -> pure "Bool"
+    Null -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Null"
   -- Special cases: these are in fact defined in the meta model, but
   -- we have way better types for them
 
@@ -235,12 +272,11 @@
   ReferenceType "LSPObject" -> pretty <$> entityName "Data.Aeson" "Object"
   -- 'LSPArray' is a list of 'LSPAny'... better to just say it's an aeson 'Array'!
   ReferenceType "LSPArray" -> pretty <$> entityName "Data.Aeson" "Array"
-
   ReferenceType n -> do
     st <- asks symbolTable
     case Map.lookup n st of
       Just thn -> pretty <$> lspEntityName (typesModSegment <> "." <> thn) thn
-      Nothing  -> fail $ "Reference to unknown type: " <> show n
+      Nothing -> fail $ "Reference to unknown type: " <> show n
   ArrayType e -> do
     innerType <- convertType e
     pure $ brackets innerType
@@ -250,16 +286,22 @@
     n <- pretty <$> entityName "Data.Map" "Map"
     pure $ parens $ n <+> kt <+> vt
   OrType es -> do
-    est <- traverse convertType es
-    n <- pretty <$> entityName "Language.LSP.Protocol.Types.Common" "|?"
-    pure $ foldr1 (\ty o -> parens (ty <+> n <+> o)) est
+    -- Any 'proposed' members should be treated as 'Void', but that's
+    -- annoying and leaks their presence, better to just filter them out
+    es' <- filterM (fmap not . isProposedTypeM) (toList es)
+    case NE.nonEmpty es' of
+      Nothing -> fail $ "Or type with no non-proposed members: " <> show es
+      Just es'' -> do
+        est <- traverse convertType es''
+        n <- pretty <$> entityName "Language.LSP.Protocol.Types.Common" "|?"
+        pure $ foldr1 (\ty o -> parens (ty <+> n <+> o)) est
   AndType es -> do
     st <- asks structTable
     props <- for es $ \case
       ReferenceType t | Just e <- Map.lookup t st -> getStructProperties e
       t -> fail $ "element of 'and' type was not a reference to a structure: " ++ show t
     genAnonymousStruct $ concat props
-  StructureLiteralType (StructureLiteral {properties}) -> genAnonymousStruct properties
+  StructureLiteralType (StructureLiteral{properties}) -> genAnonymousStruct properties
   TupleType es -> do
     est <- traverse convertType es
     pure $ tupled est
@@ -273,13 +315,15 @@
     pure $ parens ty
   BooleanLiteralType _ -> fail "unsupported: boolean literal types"
 
-genStruct :: Structure -> CodeGenM T.Text
-genStruct s@Structure{name} = do
-  st <- asks symbolTable
-  hsName <- case Map.lookup name st of
-    Just hsn -> pure hsn
-    Nothing  -> fail $ "Unknown type: " <> show name
-  genModule (typesModSegment <> "." <> hsName) [] Nothing (printStruct hsName s)
+genStruct :: Structure -> CodeGenM (Maybe T.Text)
+genStruct s@Structure{proposed = Just True} = pure Nothing
+genStruct s@Structure{name} =
+  Just <$> do
+    st <- asks symbolTable
+    hsName <- case Map.lookup name st of
+      Just hsn -> pure hsn
+      Nothing -> fail $ "Unknown type: " <> show name
+    genModule (typesModSegment <> "." <> hsName) [] Nothing (printStruct hsName s)
 
 printStruct :: T.Text -> Structure -> ModuleGenM (Doc ann)
 printStruct tn s@Structure{name, documentation, since, proposed, deprecated} = do
@@ -287,13 +331,13 @@
 
   props <- getStructProperties s
   args <- for props $ \Property{name, type_, optional, documentation, since, proposed, deprecated} -> do
-      pty <- convertType type_
-      let mty = case optional of
-            Just True -> parens ("Maybe" <+> pty)
-            _         -> pty
-      let n = makeFieldName name
-      propDoc <- multilineHaddock . pretty <$> mkDocumentation documentation since proposed
-      pure $ hardvcat [propDoc, pretty n <+> "::" <+> mty]
+    pty <- convertType type_
+    let mty = case optional of
+          Just True -> parens ("Maybe" <+> pty)
+          _ -> pty
+    let n = makeFieldName name
+    propDoc <- multilineHaddock . pretty <$> mkDocumentation documentation since proposed
+    pure $ hardvcat [propDoc, pretty n <+> "::" <+> mty]
 
   -- We do *not* deprecate fields. We can't really represent this properly: typically a deprecated field
   -- is optional, and the "correct" thing to do is to omit it. But in our representaiton that means passing
@@ -311,7 +355,7 @@
         let stockDeriv = "deriving stock" <+> tupled (fmap pretty toStockDerive)
             anyclassDeriv = "deriving anyclass" <+> tupled (fmap pretty toAnyclassDerive)
             viaDeriv = "deriving" <+> "Pretty" <+> "via" <+> parens ("ViaJSON" <+> pretty tn)
-        in indent indentSize $ hardvcat [stockDeriv, anyclassDeriv, viaDeriv]
+         in indent indentSize $ hardvcat [stockDeriv, anyclassDeriv, viaDeriv]
   dataDoc <- multilineHaddock . pretty <$> mkDocumentation documentation since proposed
   let dataDecl = "data" <+> pretty tn <+> "=" <+> pretty tn <+> nest indentSize (encloseSep (line <> "{ ") (line <> "}") ", " args)
       datad = hardvcat (deprecations ++ [dataDoc, dataDecl, derivDoc])
@@ -319,25 +363,28 @@
   ensureImport "Data.Aeson" (QualAs "Aeson")
   ensureImport "Data.Row.Aeson" (QualAs "Aeson")
   ensureImport "Data.Row.Hashable" (QualAs "Hashable")
-  matcherName <- entityName "Language.LSP.Protocol.Types.Common" ".=?"
+  optionalPairerName <- entityName "Language.LSP.Protocol.Types.Common" ".=?"
+  optionalMatcherName <- entityName "Language.LSP.Protocol.Types.Common" ".:!?"
   let toJsonD =
-        let (unzip -> (args, pairEs)) = flip fmap (zip props [0..]) $ \(Property{name, optional}, i) ->
-              let n :: T.Text = "arg" <> (T.pack $ show i)
+        let (unzip -> (args, pairEs)) = flip fmap (zip props [0 ..]) $ \(Property{name, optional}, i) ->
+              let n :: T.Text = "arg" <> T.pack (show i)
                   pairE = case optional of
-                    Just True -> dquotes (pretty name) <+> pretty matcherName <+> pretty n
+                    Just True -> dquotes (pretty name) <+> pretty optionalPairerName <+> pretty n
                     _ -> brackets (dquotes (pretty name) <+> "Aeson..=" <+> pretty n)
-              in (pretty n, pairE)
+               in (pretty n, pairE)
             body = "Aeson.object $ concat $ " <+> encloseSep "[" "]" "," pairEs
             toJsonDoc = "toJSON" <+> parens (pretty tn <+> hsep args) <+> "=" <+> nest indentSize body
             instanceDoc = "instance Aeson.ToJSON" <+> pretty tn <+> "where" <> nest indentSize (hardline <> toJsonDoc)
-        in instanceDoc
+         in instanceDoc
 
   fromJsonD <- do
     let vn :: T.Text = "arg"
     let exprs = flip fmap props $ \Property{name, optional} ->
           case optional of
-            Just True -> pretty vn <+> "Aeson..:!" <+> dquotes (pretty name)
-            _         -> pretty vn <+> "Aeson..:" <+> dquotes (pretty name)
+            -- Accept null in place of Nothing
+            -- Note [Principle of robustness for parsing LSP types]
+            Just True -> pretty vn <+> pretty optionalMatcherName <+> dquotes (pretty name)
+            _ -> pretty vn <+> "Aeson..:" <+> dquotes (pretty name)
     let lamBody = mkIterApplicativeApp (pretty tn) exprs
     let body = "Aeson.withObject" <+> dquotes (pretty structName) <+> "$" <+> "\\" <> pretty vn <+> "->" <+> nest indentSize lamBody
     let fromJsonDoc = "parseJSON" <+> "=" <+> nest indentSize body
@@ -345,11 +392,13 @@
     pure instanceDoc
 
   pure $
-    datad <>
-    hardline <> hardline <>
-    toJsonD <>
-    hardline <> hardline <>
-    fromJsonD
+    datad
+      <> hardline
+      <> hardline
+      <> toJsonD
+      <> hardline
+      <> hardline
+      <> fromJsonD
 
 -- | Get the list of properties of a struct, including inherited ones.
 getStructProperties :: Structure -> ModuleGenM [Property]
@@ -366,28 +415,32 @@
       -- If a property is redefined in the current type, then it overrides the inherited one
       localNames = foldMap (\Property{name} -> Set.singleton name) properties
       filteredSuperProps = filter (\Property{name} -> name `Set.notMember` localNames) allSuperProps
-  pure (filteredSuperProps ++ properties)
+      fullProps = filteredSuperProps ++ properties
+      nonProposedProps = filter (\Property{proposed} -> case proposed of Just True -> False; _ -> True) fullProps
+  pure nonProposedProps
 
 -- | Generate a type corresponding to an anonymous struct.
 genAnonymousStruct :: [Property] -> ModuleGenM (Doc ann)
 genAnonymousStruct properties = do
+  ensureImport "Data.Row" (QualAs "Row")
   row <- for properties $ \Property{name, type_, optional} -> do
     pty <- convertType type_
     let mty = case optional of
           Just True -> parens ("Maybe" <+> pty)
-          _         -> pty
-    ensureImport "Data.Row" (QualAs "Row")
+          _ -> pty
     pure $ dquotes (pretty name) <+> "Row..==" <+> mty
   let tyList = foldr (\ty l -> parens $ ty <+> "Row..+" <+> l) "Row.Empty" row
   pure $ parens $ "Row.Rec" <+> tyList
 
-genEnum :: Enumeration -> CodeGenM T.Text
-genEnum e@Enumeration{name} = do
-  st <- asks symbolTable
-  hsName <- case Map.lookup name st of
-    Just hsn -> pure hsn
-    Nothing  -> fail $ "Unknown type: " <> show name
-  genModule (typesModSegment <> "." <> hsName) [] Nothing (printEnum hsName e)
+genEnum :: Enumeration -> CodeGenM (Maybe T.Text)
+genEnum s@Enumeration{proposed = Just True} = pure Nothing
+genEnum e@Enumeration{name} =
+  Just <$> do
+    st <- asks symbolTable
+    hsName <- case Map.lookup name st of
+      Just hsn -> pure hsn
+      Nothing -> fail $ "Unknown type: " <> show name
+    genModule (typesModSegment <> "." <> hsName) [] Nothing (printEnum hsName e)
 
 printEnum :: T.Text -> Enumeration -> ModuleGenM (Doc ann)
 printEnum tn Enumeration{name, type_, values, supportsCustomValues, documentation, since, proposed, deprecated} = do
@@ -402,10 +455,10 @@
   -- The (Haskell) type of the elements of this enum. Useful, so we can generate various
   -- code (e.g. for parsing JSON) generically but use this type to pin down what we want to do.
   ty <- case type_ of
-    BaseType Integer  -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Int32"
+    BaseType Integer -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "Int32"
     BaseType UInteger -> pretty <$> entityName "Language.LSP.Protocol.Types.Common" "UInt"
-    BaseType String   -> pretty <$> entityName "Data.Text" "Text"
-    _                 -> fail $ "enumeration of unexpected type " ++ show type_
+    BaseType String -> pretty <$> entityName "Data.Text" "Text"
+    _ -> fail $ "enumeration of unexpected type " ++ show type_
 
   let isString = case type_ of
         BaseType String -> True
@@ -415,21 +468,24 @@
   let badEnumValues = ["jsonrpcReservedErrorRangeStart", "jsonrpcReservedErrorRangeEnd", "serverErrorStart", "serverErrorEnd"]
       values' = filter (\EnumerationEntry{name} -> name `notElem` badEnumValues) values
   -- The associations between constructor names and their literals
-  assocs <- for values' $ \EnumerationEntry{name, value, documentation, since, proposed} -> do
+  assocs <- forMaybe values' $ \case
+    EnumerationEntry{proposed = Just True} -> pure Nothing
+    EnumerationEntry{name, value, documentation, since, proposed} ->
+      Just <$> do
         let cn = makeConstrName (Just enumName) name
-          -- The literal for the actual enum value in this case
+            -- The literal for the actual enum value in this case
             lit = case value of
-                T t -> pretty $ show $ T.unpack t
-                I i -> pretty $ show i
+              T t -> pretty $ show $ T.unpack t
+              I i -> pretty $ show i
         doc <- mkDocumentation documentation since proposed
         pure (cn, lit, doc)
 
   let normalCons = flip fmap assocs $ \(cn, _, doc) ->
-        hardvcat [ multilineHaddock $ pretty doc,  pretty cn ]
+        hardvcat [multilineHaddock $ pretty doc, pretty cn]
   let customCon =
         let cn = makeConstrName (Just enumName) "Custom"
-        in if custom then Just (cn, pretty cn <+> ty) else Nothing
-  let cons = normalCons ++ (fmap snd $ maybeToList customCon)
+         in if custom then Just (cn, pretty cn <+> ty) else Nothing
+  let cons = normalCons ++ (snd <$> maybeToList customCon)
 
   ensureImport "Data.Aeson" (QualAs "Aeson")
   ensureImport "Data.Row.Aeson" (QualAs "Aeson")
@@ -457,70 +513,76 @@
           toDeriveViaLspEnum = ["Aeson.ToJSON", "Aeson.FromJSON"] ++ if custom && isString then [isStringN] else []
           stockDeriv = "deriving stock" <+> tupled (fmap pretty toStockDerive)
           anyclassDeriv = "deriving anyclass" <+> tupled (fmap pretty toAnyclassDerive)
-          viaDeriv1 = "deriving" <+> tupled toDeriveViaLspEnum <+> "via" <+> parens (asLspEnumN <+> pretty tn <+> ty)
+          viaDeriv1 = "deriving" <+> tupled toDeriveViaLspEnum <+> "via" <+> parens (asLspEnumN <+> pretty tn)
           viaDeriv2 = "deriving" <+> "Pretty" <+> "via" <+> parens ("ViaJSON" <+> pretty tn)
-        in indent indentSize $ hardvcat [stockDeriv, anyclassDeriv, viaDeriv1, viaDeriv2]
+         in
+          indent indentSize $ hardvcat [stockDeriv, anyclassDeriv, viaDeriv1, viaDeriv2]
   let dataDecl = "data" <+> pretty tn <+> "=" <+> nest indentSize (encloseSep (line <> "  ") mempty "| " cons)
       dataD = hardvcat (deprecations ++ [dataDoc, dataDecl, derivDoc])
 
   setFromListN <- pretty <$> entityName "Data.Set" "fromList"
   let knownValuesD =
         let valuesList = nest indentSize $ encloseSep "[" "]" "," $ flip fmap assocs $ \(n, _, _) -> pretty n
-        in knownValuesN <+> "=" <+> setFromListN <+> valuesList
+         in knownValuesN <+> "=" <+> setFromListN <+> valuesList
 
   let toBaseTypeD =
         -- xToValue X1 = <X1 value>
         let normalClauses = flip fmap assocs $ \(n, v, _) -> toBaseTypeN <+> pretty n <+> "=" <+> v
-        -- xToValue (CustomX c) = c
+            -- xToValue (CustomX c) = c
             customClause = case customCon of
               Just (cn, _) ->
                 let vn :: T.Text = "arg"
-                in Just $ toBaseTypeN <+> parens (pretty cn <+> pretty vn) <+> "=" <+> pretty vn
+                 in Just $ toBaseTypeN <+> parens (pretty cn <+> pretty vn) <+> "=" <+> pretty vn
               Nothing -> Nothing
             clauses = normalClauses ++ maybeToList customClause
-        in hardvcat clauses
+         in hardvcat clauses
 
   let fromBaseTypeD =
         let fn = if custom then fromOpenBaseTypeN else fromBaseTypeN
-        -- valueToX <X1 value> = X
-        -- or
-        -- valueToX <X1 value> = Just X
+            -- valueToX <X1 value> = X
+            -- or
+            -- valueToX <X1 value> = Just X
             normalClauses = flip fmap assocs $ \(n, v, _) -> fn <+> v <+> "=" <+> if custom then pretty n else "pure" <+> pretty n
-        -- valueToX c = CustomX c
-        -- or
-        -- valueToX _ = Nothing
+            -- valueToX c = CustomX c
+            -- or
+            -- valueToX _ = Nothing
             fallThroughClause = case customCon of
               Just (cn, _) ->
                 let vn :: T.Text = "arg"
-                in fn <+> pretty vn <+> "=" <+> pretty cn <+> pretty vn
-              Nothing ->  fn <+> "_ = Nothing"
+                 in fn <+> pretty vn <+> "=" <+> pretty cn <+> pretty vn
+              Nothing -> fn <+> "_ = Nothing"
             clauses = normalClauses ++ [fallThroughClause]
-        in hardvcat clauses
+         in hardvcat clauses
 
   let lspEnumD =
         let
           baseTypeD = "type EnumBaseType" <+> pretty tn <+> "=" <+> ty
           decls = [knownValuesD, baseTypeD, toBaseTypeD] ++ if custom then [] else [fromBaseTypeD]
           instanceDoc = "instance" <+> lspEnumN <+> pretty tn <+> "where" <> nest indentSize (hardline <> vcat decls)
-        in instanceDoc
+         in
+          instanceDoc
   let lspOpenEnumD = "instance" <+> lspOpenEnumN <+> pretty tn <+> "where" <> nest indentSize (hardline <> fromBaseTypeD)
 
   pure $
-    dataD <>
-    hardline <> hardline <>
-    lspEnumD <>
-    hardline <> hardline <>
-    (if custom then lspOpenEnumD <> hardline <> hardline else "")
+    dataD
+      <> hardline
+      <> hardline
+      <> lspEnumD
+      <> hardline
+      <> hardline
+      <> (if custom then lspOpenEnumD <> hardline <> hardline else "")
 
-genAlias :: TypeAlias -> CodeGenM T.Text
-genAlias a@TypeAlias{name} = do
-  st <- asks symbolTable
-  hsName <- case Map.lookup name st of
-    Just hsn -> pure hsn
-    Nothing  -> fail $ "Unknown type: " <> show name
-  genModule (typesModSegment <> "." <> hsName) [] Nothing (printAlias hsName a)
+genAlias :: TypeAlias -> CodeGenM (Maybe T.Text)
+genAlias s@TypeAlias{proposed = Just True} = pure Nothing
+genAlias a@TypeAlias{name} =
+  Just <$> do
+    st <- asks symbolTable
+    hsName <- case Map.lookup name st of
+      Just hsn -> pure hsn
+      Nothing -> fail $ "Unknown type: " <> show name
+    genModule (typesModSegment <> "." <> hsName) [] Nothing (printAlias hsName a)
 
-printAlias :: forall ann . T.Text -> TypeAlias -> ModuleGenM (Doc ann)
+printAlias :: forall ann. T.Text -> TypeAlias -> ModuleGenM (Doc ann)
 printAlias hsName TypeAlias{name, type_, documentation, since, proposed, deprecated} = do
   st <- asks symbolTable
   rhs <- convertType type_
@@ -536,12 +598,12 @@
   -- In practice, it seems that only base types and aliases to base types get used as map keys, so deriving
   -- To/FromJSONKey for them seems to be enough
   let derivDoc =
-        let aesonDeriving :: [Doc ann] = ["Aeson.ToJSON", "Aeson.FromJSON"] ++ case type_ of { BaseType _ -> ["Aeson.ToJSONKey", "Aeson.FromJSONKey"]; _ -> [] }
+        let aesonDeriving :: [Doc ann] = ["Aeson.ToJSON", "Aeson.FromJSON"] ++ case type_ of BaseType _ -> ["Aeson.ToJSONKey", "Aeson.FromJSONKey"]; _ -> []
             newtypeDeriv = "deriving newtype" <+> tupled aesonDeriving
             stockDeriv = "deriving stock" <+> tupled (fmap pretty toStockDerive)
             anyclassDeriv = "deriving anyclass" <+> tupled (fmap pretty toAnyclassDerive)
             viaDeriv = "deriving" <+> "Pretty" <+> "via" <+> parens ("ViaJSON" <+> pretty hsName)
-        in indent indentSize $ hardvcat [newtypeDeriv, stockDeriv, anyclassDeriv, viaDeriv]
+         in indent indentSize $ hardvcat [newtypeDeriv, stockDeriv, anyclassDeriv, viaDeriv]
   dataDoc <- multilineHaddock . pretty <$> mkDocumentation documentation since proposed
   let dataDecl = "newtype" <+> pretty hsName <+> "=" <+> pretty hsName <+> rhs
       datad = hardvcat (optDeprecated hsName deprecated ++ [dataDoc, dataDecl, derivDoc])
@@ -550,40 +612,40 @@
 ---------------
 
 data RequestData ann = RequestData
-  { methCon                :: Doc ann
-  , singCon                :: Doc ann
-  , paramsEq               :: Doc ann
-  , resultEq               :: Doc ann
-  , errorDataEq            :: Doc ann
-  , registrationOptionsEq  :: Doc ann
-  , toStringClause         :: Doc ann
-  , fromStringClause       :: Doc ann
+  { methCon :: Doc ann
+  , singCon :: Doc ann
+  , paramsEq :: Doc ann
+  , resultEq :: Doc ann
+  , errorDataEq :: Doc ann
+  , registrationOptionsEq :: Doc ann
+  , toStringClause :: Doc ann
+  , fromStringClause :: Doc ann
   , messageDirectionClause :: Doc ann
-  , messageKindClause      :: Doc ann
+  , messageKindClause :: Doc ann
   }
 
 data NotificationData ann = NotificationData
-  { methCon                :: Doc ann
-  , singCon                :: Doc ann
-  , paramsEq               :: Doc ann
-  , registrationOptionsEq  :: Doc ann
-  , toStringClause         :: Doc ann
-  , fromStringClause       :: Doc ann
+  { methCon :: Doc ann
+  , singCon :: Doc ann
+  , paramsEq :: Doc ann
+  , registrationOptionsEq :: Doc ann
+  , toStringClause :: Doc ann
+  , fromStringClause :: Doc ann
   , messageDirectionClause :: Doc ann
-  , messageKindClause      :: Doc ann
+  , messageKindClause :: Doc ann
   }
 
 data CustomData ann = CustomData
-  { methCon                :: Doc ann
-  , singCon                :: Doc ann
-  , paramsEq               :: Doc ann
-  , resultEq               :: Doc ann
-  , errorDataEq            :: Doc ann
-  , registrationOptionsEq  :: Doc ann
-  , toStringClause         :: Doc ann
-  , fromStringClause       :: Doc ann
+  { methCon :: Doc ann
+  , singCon :: Doc ann
+  , paramsEq :: Doc ann
+  , resultEq :: Doc ann
+  , errorDataEq :: Doc ann
+  , registrationOptionsEq :: Doc ann
+  , toStringClause :: Doc ann
+  , fromStringClause :: Doc ann
   , messageDirectionClause :: Doc ann
-  , messageKindClause      :: Doc ann
+  , messageKindClause :: Doc ann
   }
 
 -- See Note [Generating code for methods]
@@ -605,7 +667,7 @@
 
   let methodName context fullName =
         let pieces = T.splitOn "/" fullName
-        in pretty $ makeConstrName context $ foldMap capitalize pieces
+         in pretty $ makeConstrName context $ foldMap capitalize pieces
   let messagePartType t = case t of
         Just ty -> convertType ty
         -- See Note [Absent parameters/results/errors]
@@ -616,66 +678,72 @@
   ensureImport "Language.LSP.Protocol.Message.Meta" (QualAs "MM")
 
   -- Construct the various pieces we'll need for the declarations in one go
-  reqData <- for reqs $ \Request{method, params, result, errorData, registrationOptions, messageDirection} -> do
-    -- <constructor name> :: Method <direction> <method type>
-    let mcn = methodName (Just mtyN) method
-        direction = case messageDirection of
-            MM.ClientToServer -> "MM.ClientToServer"
-            MM.ServerToClient -> "MM.ServerToClient"
-            MM.Both           -> "f"
-        methCon = mcn <+> "::" <+> pretty mtyN <+> direction <+> "MM.Request"
-        scn = methodName (Just styN) method
-        singCon = scn <+> "::" <+> pretty styN <+> mcn
+  reqData <- forMaybe reqs $ \case
+    Request{proposed = Just True} -> pure Nothing
+    Request{method, params, result, errorData, registrationOptions, messageDirection} ->
+      Just <$> do
+        -- <constructor name> :: Method <direction> <method type>
+        let mcn = methodName (Just mtyN) method
+            direction = case messageDirection of
+              MM.ClientToServer -> "MM.ClientToServer"
+              MM.ServerToClient -> "MM.ServerToClient"
+              MM.Both -> "f"
+            methCon = mcn <+> "::" <+> pretty mtyN <+> direction <+> "MM.Request"
+            scn = methodName (Just styN) method
+            singCon = scn <+> "::" <+> pretty styN <+> mcn
 
-    -- MessageParams <constructor name> = <param type>
-    paramTy <- messagePartType params
-    let paramsEq = mpN <+> mcn <+> "=" <+> paramTy
-    -- MessageResult <constructor name> = <result type>
-    resultTy <- messagePartType (Just result)
-    let resultEq = mrN <+> mcn <+> "=" <+> resultTy
-    errDatTy <- messagePartType errorData
-    let errorDataEq = edN <+> mcn <+> "=" <+> errDatTy
-    regOptsTy <- messagePartType registrationOptions
-    let registrationOptionsEq = roN <+> mcn <+> "=" <+> regOptsTy
+        -- MessageParams <constructor name> = <param type>
+        paramTy <- messagePartType params
+        let paramsEq = mpN <+> mcn <+> "=" <+> paramTy
+        -- MessageResult <constructor name> = <result type>
+        resultTy <- messagePartType (Just result)
+        let resultEq = mrN <+> mcn <+> "=" <+> resultTy
+        errDatTy <- messagePartType errorData
+        let errorDataEq = edN <+> mcn <+> "=" <+> errDatTy
+        regOptsTy <- messagePartType registrationOptions
+        let registrationOptionsEq = roN <+> mcn <+> "=" <+> regOptsTy
 
-    let toStringClause = toStringN <+> parens (smcn <+> scn) <+> "=" <+> dquotes (pretty method)
-        fromStringClause = fromStringN <+> dquotes (pretty method) <+> "=" <+> smcn <+> scn
-        messageDirectionClause =
-          let d = case messageDirection of
-                MM.ClientToServer -> "MM.SClientToServer"
-                MM.ServerToClient -> "MM.SServerToClient"
-                MM.Both           -> "MM.SBothDirections"
-          in mdN <+> scn <+> "=" <+> d
-        messageKindClause = "messageKind" <+> scn <+> "=" <+> "MM.SRequest"
-    pure $ RequestData {..}
+        let toStringClause = toStringN <+> parens (smcn <+> scn) <+> "=" <+> dquotes (pretty method)
+            fromStringClause = fromStringN <+> dquotes (pretty method) <+> "=" <+> smcn <+> scn
+            messageDirectionClause =
+              let d = case messageDirection of
+                    MM.ClientToServer -> "MM.SClientToServer"
+                    MM.ServerToClient -> "MM.SServerToClient"
+                    MM.Both -> "MM.SBothDirections"
+               in mdN <+> scn <+> "=" <+> d
+            messageKindClause = "messageKind" <+> scn <+> "=" <+> "MM.SRequest"
+        pure $ RequestData{..}
 
-  notData <- for nots $ \Notification{method, params, registrationOptions, messageDirection} -> do
-    let mcn = methodName (Just mtyN) method
-        direction = case messageDirection of
-            MM.ClientToServer -> "MM.ClientToServer"
-            MM.ServerToClient -> "MM.ServerToClient"
-            MM.Both           -> "f"
-        methCon = mcn <+> "::" <+> pretty mtyN <+> direction <+> "MM.Notification"
-        scn = methodName (Just styN) method
-        singCon = scn <+> "::" <+> pretty styN <+> mcn
+  notData <- forMaybe nots $ \case
+    Notification{proposed = Just True} -> pure Nothing
+    Notification{method, params, registrationOptions, messageDirection} ->
+      Just <$> do
+        let mcn = methodName (Just mtyN) method
+            direction = case messageDirection of
+              MM.ClientToServer -> "MM.ClientToServer"
+              MM.ServerToClient -> "MM.ServerToClient"
+              MM.Both -> "f"
+            methCon = mcn <+> "::" <+> pretty mtyN <+> direction <+> "MM.Notification"
+            scn = methodName (Just styN) method
+            singCon = scn <+> "::" <+> pretty styN <+> mcn
 
-    -- MessageParams <constructor name> = <param type>
-    paramTy <- messagePartType params
-    let paramsEq = mpN <+> mcn <+> "=" <+> paramTy
-    regOptsTy <- messagePartType registrationOptions
-    let registrationOptionsEq = roN <+> mcn <+> "=" <+> regOptsTy
+        -- MessageParams <constructor name> = <param type>
+        paramTy <- messagePartType params
+        let paramsEq = mpN <+> mcn <+> "=" <+> paramTy
+        regOptsTy <- messagePartType registrationOptions
+        let registrationOptionsEq = roN <+> mcn <+> "=" <+> regOptsTy
 
-    let toStringClause = toStringN <+> parens (smcn <+> scn) <+> "=" <+> dquotes (pretty method)
-        fromStringClause = fromStringN <+> dquotes (pretty method) <+> "=" <+> smcn <+> scn
-        messageDirectionClause =
-          let d = case messageDirection of
-                MM.ClientToServer -> "MM.SClientToServer"
-                MM.ServerToClient -> "MM.SServerToClient"
-                MM.Both           -> "MM.SBothDirections"
-          in "messageDirection" <+> scn <+> "=" <+> d
-        messageKindClause = "messageKind" <+> scn <+> "=" <+> "MM.SNotification"
+        let toStringClause = toStringN <+> parens (smcn <+> scn) <+> "=" <+> dquotes (pretty method)
+            fromStringClause = fromStringN <+> dquotes (pretty method) <+> "=" <+> smcn <+> scn
+            messageDirectionClause =
+              let d = case messageDirection of
+                    MM.ClientToServer -> "MM.SClientToServer"
+                    MM.ServerToClient -> "MM.SServerToClient"
+                    MM.Both -> "MM.SBothDirections"
+               in "messageDirection" <+> scn <+> "=" <+> d
+            messageKindClause = "messageKind" <+> scn <+> "=" <+> "MM.SNotification"
 
-    pure $ NotificationData {..}
+        pure $ NotificationData{..}
 
   -- Add the custom method case, which isn't in the metamodel
   customDat <- do
@@ -690,10 +758,10 @@
     -- MessageParams (Method_CustomMethod s) = Value
     ensureImport "Data.Aeson" (QualAs "Aeson")
     let paramsEq = mpN <+> parens (mcn <+> "s") <+> "=" <+> "Aeson.Value"
-    -- MessageResult (Method_CustomMethod s) = Value
+        -- MessageResult (Method_CustomMethod s) = Value
         resultEq = mrN <+> parens (mcn <+> "s") <+> "=" <+> "Aeson.Value"
-    -- Can shove whatever you want in the error data for custom methods?
-    -- ErrorData (Method_CustomMethod s) = Value
+        -- Can shove whatever you want in the error data for custom methods?
+        -- ErrorData (Method_CustomMethod s) = Value
         errorDataEq = edN <+> parens (mcn <+> "s") <+> "=" <+> "Aeson.Value"
     -- Can't register custom methods
     -- RegistrationOptions (Method_CustomMethod s) = Void
@@ -705,7 +773,7 @@
         messageDirectionClause = mdN <+> parens (scn <+> "_") <+> "=" <+> "MM.SBothDirections"
         messageKindClause = mkN <+> parens (scn <+> "_") <+> "=" <+> "MM.SBothTypes"
 
-    pure $ CustomData {..}
+    pure $ CustomData{..}
 
   ensureImport "Data.Kind" (QualAs "Kind")
   let dataD =
@@ -713,117 +781,163 @@
             docD = "-- | A type representing a LSP method (or class of methods), intended to be used mostly at the type level."
             ctors = fmap (\RequestData{..} -> methCon) reqData ++ fmap (\NotificationData{..} -> methCon) notData ++ [(\CustomData{..} -> methCon) customDat]
             dataD = nest indentSize $ "data" <+> pretty mtyN <+> "f t" <+> "where" <+> (hardline <> hardvcat ctors)
-        -- This only really exists on the type level so we don't really want instances anyway
-        in hardvcat [docD, sigD, dataD]
+         in -- This only really exists on the type level so we don't really want instances anyway
+            hardvcat [docD, sigD, dataD]
 
   let mpD =
         let sigD = "type" <+> mpN <+> ":: forall f t ." <+> pretty mtyN <+> "f t" <+> "->" <+> "Kind.Type"
             docD = "-- | Maps a LSP method to its parameter type."
             eqns = fmap (\RequestData{..} -> paramsEq) reqData ++ fmap (\NotificationData{..} -> paramsEq) notData ++ [(\CustomData{..} -> paramsEq) customDat]
             declD = nest indentSize $ "type family" <+> mpN <+> parens ("m :: " <+> pretty mtyN <+> "f t") <+> "where" <+> (hardline <> hardvcat eqns)
-        in hardvcat [docD, sigD, declD]
+         in hardvcat [docD, sigD, declD]
 
   let mrD =
         let sigD = "type" <+> mrN <+> ":: forall f t ." <+> pretty mtyN <+> "f t" <+> "->" <+> "Kind.Type"
             docD = "-- | Maps a LSP method to its result type."
-        -- TODO: should we give notifiations ()?
+            -- TODO: should we give notifiations ()?
             eqns = fmap (\RequestData{..} -> resultEq) reqData ++ [(\CustomData{..} -> resultEq) customDat]
             declD = nest indentSize $ "type family" <+> mrN <+> parens ("m :: " <+> pretty mtyN <+> "f t") <+> "where" <+> (hardline <> hardvcat eqns)
-        in hardvcat [docD, sigD, declD]
+         in hardvcat [docD, sigD, declD]
 
   let edD =
         let sigD = "type" <+> edN <+> ":: forall f t ." <+> pretty mtyN <+> "f t" <+> "->" <+> "Kind.Type"
             docD = "-- | Maps a LSP method to its error data type."
-        -- TODO: should we give notifiations ()?
+            -- TODO: should we give notifiations ()?
             eqns = fmap (\RequestData{..} -> errorDataEq) reqData ++ [(\CustomData{..} -> errorDataEq) customDat]
             declD = nest indentSize $ "type family" <+> edN <+> parens ("m :: " <+> pretty mtyN <+> "f t") <+> "where" <+> (hardline <> hardvcat eqns)
-        in hardvcat [docD, sigD, declD]
+         in hardvcat [docD, sigD, declD]
 
   let roD =
         let sigD = "type" <+> roN <+> ":: forall f t ." <+> pretty mtyN <+> "f t" <+> "->" <+> "Kind.Type"
             docD = "-- | Maps a LSP method to its registration options type."
             eqns = fmap (\RequestData{..} -> registrationOptionsEq) reqData ++ fmap (\NotificationData{..} -> registrationOptionsEq) notData ++ [(\CustomData{..} -> registrationOptionsEq) customDat]
             declD = nest indentSize $ "type family" <+> roN <+> parens ("m :: " <+> pretty mtyN <+> "f t") <+> "where" <+> (hardline <> hardvcat eqns)
-        in hardvcat [docD, sigD, declD]
+         in hardvcat [docD, sigD, declD]
 
   let singD =
         let sigD = "type" <+> pretty styN <+> ":: forall f t ." <+> pretty mtyN <+> "f t" <+> "->" <+> "Kind.Type"
             docD = "-- | A singleton type for 'Method'."
             ctors = fmap (\RequestData{..} -> singCon) reqData ++ fmap (\NotificationData{..} -> singCon) notData ++ [(\CustomData{..} -> singCon) customDat]
-        -- Can't derive instances, it's a GADT, will do them later
+            -- Can't derive instances, it's a GADT, will do them later
             dataD = nest indentSize $ "data" <+> pretty styN <+> "m" <+> "where" <+> (hardline <> hardvcat ctors)
-        in hardvcat [docD, sigD, dataD]
+         in hardvcat [docD, sigD, dataD]
 
   let ssmD =
         let ctor = smcn <+> "::" <+> "forall m ." <+> pretty styN <+> "m" <+> "->" <+> sstyN
             docD = "-- | A method which isn't statically known."
-        -- Can't derive instances because it's a GADT and we're not doing the instances for SMethod here either
+            -- Can't derive instances because it's a GADT and we're not doing the instances for SMethod here either
             dataD = nest indentSize $ "data" <+> sstyN <+> "where" <+> (hardline <> ctor)
-        in hardvcat [docD, dataD]
+         in hardvcat [docD, dataD]
 
   -- methodToString :: SomeMethod -> String
   let toStringD =
         let docD = "-- | Turn a 'SomeMethod' into its LSP method string."
             sigD = toStringN <+> "::" <+> sstyN <+> "->" <+> "String"
             clauses = fmap (\RequestData{..} -> toStringClause) reqData ++ fmap (\NotificationData{..} -> toStringClause) notData ++ [(\CustomData{..} -> toStringClause) customDat]
-        in hardvcat [docD, sigD, hardvcat clauses]
+         in hardvcat [docD, sigD, hardvcat clauses]
   -- stringToMethod :: String -> SomeMethod
   let fromStringD =
         let docD = "-- | Turn a LSP method string into a 'SomeMethod'."
             sigD = fromStringN <+> "::" <+> "String" <+> "->" <+> sstyN
             clauses = fmap (\RequestData{..} -> fromStringClause) reqData ++ fmap (\NotificationData{..} -> fromStringClause) notData ++ [(\CustomData{..} -> fromStringClause) customDat]
-        in hardvcat [docD, sigD, hardvcat clauses]
+         in hardvcat [docD, sigD, hardvcat clauses]
 
   let messageDirectionD =
         let docD = "-- | Get a singleton witness for the message direction of a 'SMethod'."
             sigD = mdN <+> ":: forall f t (m :: Method f t) ." <+> pretty styN <+> "m" <+> "->" <+> "MM.SMessageDirection f"
             clauses = fmap (\RequestData{..} -> messageDirectionClause) reqData ++ fmap (\NotificationData{..} -> messageDirectionClause) notData ++ [(\CustomData{..} -> messageDirectionClause) customDat]
-        in hardvcat [docD, sigD, hardvcat clauses]
+         in hardvcat [docD, sigD, hardvcat clauses]
 
   let messageKindD =
         let docD = "-- | Get a singleton witness for the message kind of a 'SMethod'."
             sigD = mkN <+> ":: forall f t (m :: Method f t) ." <+> pretty styN <+> "m" <+> "->" <+> "MM.SMessageKind t"
             clauses = fmap (\RequestData{..} -> messageKindClause) reqData ++ fmap (\NotificationData{..} -> messageKindClause) notData ++ [(\CustomData{..} -> messageKindClause) customDat]
-        in hardvcat [docD, sigD, hardvcat clauses]
+         in hardvcat [docD, sigD, hardvcat clauses]
 
   pure $
-    dataD <>
-    hardline <> hardline <>
-    mpD <>
-    hardline <> hardline <>
-    mrD <>
-    hardline <> hardline <>
-    edD <>
-    hardline <> hardline <>
-    roD <>
-    hardline <> hardline <>
-    singD <>
-    hardline <> hardline <>
-    ssmD <>
-    hardline <> hardline <>
-    toStringD <>
-    hardline <> hardline <>
-    fromStringD <>
-    hardline <> hardline <>
-    messageDirectionD <>
-    hardline <> hardline <>
-    messageKindD
+    dataD
+      <> hardline
+      <> hardline
+      <> mpD
+      <> hardline
+      <> hardline
+      <> mrD
+      <> hardline
+      <> hardline
+      <> edD
+      <> hardline
+      <> hardline
+      <> roD
+      <> hardline
+      <> hardline
+      <> singD
+      <> hardline
+      <> hardline
+      <> ssmD
+      <> hardline
+      <> hardline
+      <> toStringD
+      <> hardline
+      <> hardline
+      <> fromStringD
+      <> hardline
+      <> hardline
+      <> messageDirectionD
+      <> hardline
+      <> hardline
+      <> messageKindD
 
 genMethods :: [Request] -> [Notification] -> CodeGenM T.Text
 genMethods reqs nots = do
   genModule "Method" [] Nothing (printMethods reqs nots)
 
---------------
+---------------
 
-genLensModule :: [T.Text] -> CodeGenM T.Text
-genLensModule names = do
-  genModule "Lens" ["TemplateHaskell"] Nothing $ do
-    mkLensesN <- pretty <$> entityName "Control.Lens.TH" "makeFieldsNoPrefix"
-    decls <- for names $ \thn -> do
-      nm <- pretty <$> lspEntityName (typesModSegment <> "." <> thn) thn
-      let lensesD = mkLensesN <+> "''" <> nm
-      pure lensesD
-    pure $ hardvcat decls
+genMetaModule :: [Structure] -> [TypeAlias] -> [Enumeration] -> CodeGenM T.Text
+genMetaModule structs aliases enums = do
+  genModule "Meta" ["TemplateHaskell"] Nothing $ do
+    ensureImport "Language.Haskell.TH" (QualAs "TH")
+    let tyn thn = pretty <$> entityName "Language.LSP.Protocol.Internal.Types" thn
+    sns <- forMaybe structs $ \case
+      Structure{proposed = Just True} -> pure Nothing
+      Structure{name} ->
+        Just <$> do
+          st <- asks symbolTable
+          case Map.lookup name st of
+            Just thn -> pretty <$> entityName "Language.LSP.Protocol.Internal.Types" thn
+            Nothing -> fail $ "Unknown struct: " <> show name
+    ans <- forMaybe aliases $ \case
+      TypeAlias{proposed = Just True} -> pure Nothing
+      TypeAlias{name} ->
+        Just <$> do
+          st <- asks symbolTable
+          case Map.lookup name st of
+            Just thn -> pretty <$> entityName "Language.LSP.Protocol.Internal.Types" thn
+            Nothing -> fail $ "Unknown alias: " <> show name
+    ens <- forMaybe enums $ \case
+      Enumeration{proposed = Just True} -> pure Nothing
+      Enumeration{name} ->
+        Just <$> do
+          st <- asks symbolTable
+          case Map.lookup name st of
+            Just thn -> pretty <$> entityName "Language.LSP.Protocol.Internal.Types" thn
+            Nothing -> fail $ "Unknown enum: " <> show name
+    let
+      sig1 = "structNames" <+> "::" <+> brackets "TH.Name"
+      decl1 = "structNames =" <+> nest indentSize (encloseSep "[" "]" "," $ fmap (\n -> "''" <> n) sns)
+      sig2 = "aliasNames" <+> "::" <+> brackets "TH.Name"
+      decl2 = "aliasNames =" <+> nest indentSize (encloseSep "[" "]" "," $ fmap (\n -> "''" <> n) ans)
+      sig3 = "enumNames" <+> "::" <+> brackets "TH.Name"
+      decl3 = "enumNames =" <+> nest indentSize (encloseSep "[" "]" "," $ fmap (\n -> "''" <> n) ens)
+    pure $
+      hardvcat
+        [ sig1
+        , decl1
+        , sig2
+        , decl2
+        , sig3
+        , decl3
+        ]
 
 ---------------
 
@@ -849,9 +963,9 @@
 
 mkIterApplicativeApp :: Doc a -> [Doc a] -> Doc a
 mkIterApplicativeApp hd [] = "pure" <+> hd
-mkIterApplicativeApp hd (a:rest) =
+mkIterApplicativeApp hd (a : rest) =
   let acc = hd <+> "<$>" <+> a
-  in foldl' (\acc a -> acc <+> "<*>" <+> a) acc rest
+   in foldl' (\acc a -> acc <+> "<*>" <+> a) acc rest
 
 {- Note [Code generation approach]
 The approach we take here is quite primitive: we just print out Haskell modules
@@ -990,4 +1104,25 @@
 
 We don't do this for fields, instead we rely on `DuplicateRecordFields` and
 use classy lenses.
+-}
+
+{- Note [Principle of robustness for parsing LSP types]
+The principle of robustness states:
+
+> Be conservative in what you do, liberal in what you accept from others
+
+We try to follow this when parsing LSP types, and where possible accept
+"slightly wrong" input. This is important because the LSP spec is very
+fiddly to implement correctly, and there are many clients we interact with,
+some of whom will therefore get it wrong. It's best if we can accept this
+(although in an ideal world we would also emit a warning, but it's not super
+easy to do that, so we just don't).
+
+Specific ways in which we try to be robust:
+- Accept 'null' to mean "missing". The LSP spec *sometimes* allows a value
+  to be 'null', but often it says a value can be missing but is not nullable.
+  A common mistake for clients is to still send 'null' to mean "missing"
+  (see e.g. https://github.com/haskell/haskell-language-server/issues/3842#issuecomment-1798217080).
+  This is complicated because if 'null' is an allowed value then we want to parse
+  it as a present 'null', not missing.
 -}
diff --git a/generator/Main.hs b/generator/Main.hs
--- a/generator/Main.hs
+++ b/generator/Main.hs
@@ -1,4 +1,5 @@
 {-# LANGUAGE OverloadedStrings #-}
+
 module Main (main) where
 
 import CodeGen
diff --git a/lsp-types.cabal b/lsp-types.cabal
--- a/lsp-types.cabal
+++ b/lsp-types.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               lsp-types
-version:            2.0.2.0
+version:            2.4.0.0
 synopsis:
   Haskell library for the Microsoft Language Server Protocol, data types
 
@@ -16,9 +16,10 @@
 copyright:          Alan Zimmerman, 2016-2021
 category:           Development
 build-type:         Simple
-extra-source-files:
+extra-doc-files:
   ChangeLog.md
   README.md
+extra-source-files:
   metaModel.json
 
 source-repository head
@@ -31,9 +32,14 @@
   description:
     Force a version bound on filepath library, to enable 'OsPath'.
 
+common warnings
+  ghc-options: -Wunused-packages
+
 library
+  import:             warnings
   hs-source-dirs:     src generated
-  default-language:   Haskell2010
+  default-language:   GHC2021
+
   -- Various things we want on by default
   -- * syntactic niceties, QOL
   -- * we always want more deriving options
@@ -45,60 +51,52 @@
   default-extensions:
     DataKinds
     DeriveAnyClass
-    DeriveGeneric
     DerivingStrategies
     DerivingVia
     DuplicateRecordFields
-    FlexibleInstances
     FunctionalDependencies
     GADTs
-    GeneralizedNewtypeDeriving
-    KindSignatures
-    MultiParamTypeClasses
     NegativeLiterals
     OverloadedStrings
-    PolyKinds
-    ScopedTypeVariables
-    StandaloneDeriving
-    StandaloneKindSignatures
     StrictData
-    TypeApplications
     TypeFamilies
-    TypeOperators
     UndecidableInstances
 
   build-depends:
-    , aeson             >=1.2.2.0 && <2.2
-    , base              >=4.11    && <5
-    , binary
-    , containers
-    , data-default
-    , deepseq
-    , Diff              >=0.2
-    , dlist
-    , exceptions
-    , hashable          >=1.3.4.0
-    , indexed-traversable
-    , indexed-traversable-instances
-    , lens              >=4.15.2
-    , lens-aeson
-    , mod
-    , mtl               <2.4
-    , prettyprinter     
-    , network-uri       >=2.6
-    , row-types
-    , safe
-    , some
-    , template-haskell
-    , text
-    -- needed for aeson < 1
-    , unordered-containers
+    , aeson                          >=2     && <2.3
+    , base                           >=4.11  && <5
+    , binary                         ^>=0.8
+    , containers                     >=0.6 && < 0.9
+    , data-default                   >=0.7 && < 0.9
+    , deepseq                        >=1.4   && <1.6
+    , Diff                           >=0.4   && <1.1
+    , dlist                          ^>=1.0
+    , hashable                       >=1.4 && <1.6
+    , indexed-traversable            ^>=0.1
+    , indexed-traversable-instances  ^>=0.1
+    , lens                           >=5.1   && <5.4
+    , mod                            ^>=0.2
+    , mtl                            >=2.2   && <2.4
+    , network-uri                    ^>=2.6
+    , prettyprinter                  ^>=1.7
+    , row-types                      ^>=1.0
+    , safe                           ^>=0.3
+    , some                           ^>=1.0
+    , template-haskell               >=2.7   && <2.25
+    , text                           >=1     && <2.2
 
+  -- This version of filepath comes with GHC 9.6, so
+  -- we should be able to drop this flag once we only
+  -- support 9.6 or higher
   if flag(force-ospath)
-    build-depends: filepath ^>=1.4.100.0
+    build-depends: filepath >=1.4.100.0 && < 1.6
+
   else
-    build-depends: filepath
+    build-depends: filepath >=1.4 && < 1.6
 
+  if impl(ghc >= 9.6)
+    build-depends: exceptions ^>=0.10
+
   ghc-options:
     -Wall -Wmissing-deriving-strategies
     -Wno-unticked-promoted-constructors
@@ -108,9 +106,10 @@
     Data.Row.Aeson
     Data.Row.Hashable
     Language.LSP.Protocol.Capabilities
+    Language.LSP.Protocol.Lens
     Language.LSP.Protocol.Message
     Language.LSP.Protocol.Types
-    Language.LSP.Protocol.Lens
+    Language.LSP.Protocol.Meta
     Language.LSP.Protocol.Utils.Misc
     Language.LSP.Protocol.Utils.SMethodMap
 
@@ -137,6 +136,7 @@
     Language.LSP.Protocol.Types.Uri.OsPath
     Language.LSP.Protocol.Types.WatchKinds
 
+
   -- The generated modules
   -- In principle these could be in a separate component,
   -- but a) the generated modules depend on some of the common code
@@ -144,7 +144,7 @@
   -- It's simpler to just have everything in together, otherwise we'd
   -- actually need three layers!
   other-modules:
-    Language.LSP.Protocol.Internal.Lens
+    Language.LSP.Protocol.Internal.Meta
     Language.LSP.Protocol.Internal.Method
     Language.LSP.Protocol.Internal.Types
     Language.LSP.Protocol.Internal.Types.AnnotatedTextEdit
@@ -278,6 +278,7 @@
     Language.LSP.Protocol.Internal.Types.DocumentSymbolParams
     Language.LSP.Protocol.Internal.Types.DocumentSymbolRegistrationOptions
     Language.LSP.Protocol.Internal.Types.ErrorCodes
+    Language.LSP.Protocol.Internal.Types.EditRangeWithInsertReplace
     Language.LSP.Protocol.Internal.Types.ExecuteCommandClientCapabilities
     Language.LSP.Protocol.Internal.Types.ExecuteCommandOptions
     Language.LSP.Protocol.Internal.Types.ExecuteCommandParams
@@ -467,7 +468,6 @@
     Language.LSP.Protocol.Internal.Types.TextDocumentSyncOptions
     Language.LSP.Protocol.Internal.Types.TextEdit
     Language.LSP.Protocol.Internal.Types.TokenFormat
-    Language.LSP.Protocol.Internal.Types.TraceValues
     Language.LSP.Protocol.Internal.Types.TypeDefinitionClientCapabilities
     Language.LSP.Protocol.Internal.Types.TypeDefinitionOptions
     Language.LSP.Protocol.Internal.Types.TypeDefinitionParams
@@ -514,34 +514,117 @@
     Language.LSP.Protocol.Internal.Types.WorkspaceSymbolParams
     Language.LSP.Protocol.Internal.Types.WorkspaceSymbolRegistrationOptions
     Language.LSP.Protocol.Internal.Types.WorkspaceUnchangedDocumentDiagnosticReport
+    Language.LSP.Protocol.Internal.Types.ChangeAnnotationsSupportOptions
+    Language.LSP.Protocol.Internal.Types.ClientCodeActionKindOptions
+    Language.LSP.Protocol.Internal.Types.ClientCodeActionLiteralOptions
+    Language.LSP.Protocol.Internal.Types.ClientCodeActionResolveOptions
+    Language.LSP.Protocol.Internal.Types.ClientCompletionItemInsertTextModeOptions
+    Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptions
+    Language.LSP.Protocol.Internal.Types.ClientCompletionItemOptionsKind
+    Language.LSP.Protocol.Internal.Types.ClientCompletionItemResolveOptions
+    Language.LSP.Protocol.Internal.Types.ClientDiagnosticsTagOptions
+    Language.LSP.Protocol.Internal.Types.ClientFoldingRangeKindOptions
+    Language.LSP.Protocol.Internal.Types.ClientFoldingRangeOptions
+    Language.LSP.Protocol.Internal.Types.ClientInfo
+    Language.LSP.Protocol.Internal.Types.ClientInlayHintResolveOptions
+    Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestFullDelta
+    Language.LSP.Protocol.Internal.Types.ClientSemanticTokensRequestOptions
+    Language.LSP.Protocol.Internal.Types.ClientShowMessageActionItemOptions
+    Language.LSP.Protocol.Internal.Types.ClientSignatureInformationOptions
+    Language.LSP.Protocol.Internal.Types.ClientSignatureParameterInformationOptions
+    Language.LSP.Protocol.Internal.Types.ClientSymbolKindOptions
+    Language.LSP.Protocol.Internal.Types.ClientSymbolResolveOptions
+    Language.LSP.Protocol.Internal.Types.ClientSymbolTagOptions
+    Language.LSP.Protocol.Internal.Types.CodeActionDisabled
+    Language.LSP.Protocol.Internal.Types.CompletionItemDefaults
+    Language.LSP.Protocol.Internal.Types.CompletionItemTagOptions
+    Language.LSP.Protocol.Internal.Types.CompletionListCapabilities
+    Language.LSP.Protocol.Internal.Types.LanguageKind
+    Language.LSP.Protocol.Internal.Types.LocationUriOnly
+    Language.LSP.Protocol.Internal.Types.MarkedStringWithLanguage
+    Language.LSP.Protocol.Internal.Types.NotebookCellLanguage
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChangeStructure
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentCellChanges
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentCellContentChanges
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterNotebookType
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterPattern
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterScheme
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithCells
+    Language.LSP.Protocol.Internal.Types.NotebookDocumentFilterWithNotebook
+    Language.LSP.Protocol.Internal.Types.PrepareRenameDefaultBehavior
+    Language.LSP.Protocol.Internal.Types.PrepareRenamePlaceholder
+    Language.LSP.Protocol.Internal.Types.RegularExpressionEngineKind
+    Language.LSP.Protocol.Internal.Types.SemanticTokensFullDelta
+    Language.LSP.Protocol.Internal.Types.ServerCompletionItemOptions
+    Language.LSP.Protocol.Internal.Types.ServerInfo
+    Language.LSP.Protocol.Internal.Types.StaleRequestSupportOptions
+    Language.LSP.Protocol.Internal.Types.TextDocumentContentChangePartial
+    Language.LSP.Protocol.Internal.Types.TextDocumentContentChangeWholeDocument
+    Language.LSP.Protocol.Internal.Types.TextDocumentFilterLanguage
+    Language.LSP.Protocol.Internal.Types.TextDocumentFilterPattern
+    Language.LSP.Protocol.Internal.Types.TextDocumentFilterScheme
+    Language.LSP.Protocol.Internal.Types.TraceValue
+    Language.LSP.Protocol.Internal.Types.WorkspaceOptions
 
 library metamodel
+  import:             warnings
   -- We don't currently re-export this from the main
   -- library, but it's here if people want it
-  visibility: public
+  visibility:         public
   hs-source-dirs:     metamodel
-  default-language:   Haskell2010
-  default-extensions: StrictData
+  default-language:   GHC2021
+  default-extensions:
+    StrictData
+
   exposed-modules:
     Language.LSP.MetaModel
     Language.LSP.MetaModel.Types
 
   build-depends:
-    , aeson             >=1.2.2.0
+    , aeson             >=2
     , base              >=4.11    && <5
-    , file-embed
-    , lens              >=4.15.2
+    , file-embed        ^>=0.0.15
+    , lens              >=5.1     && <5.4
+    , template-haskell  >=2.7     && <2.25
+    , text              >=1       && <2.2
+
+library lsp-types-quickcheck
+  import:             warnings
+  visibility:         public
+  hs-source-dirs:     quickcheck generated
+  default-language:   GHC2021
+  default-extensions:
+    StrictData
+    DerivingVia
+    DerivingStrategies
+
+  exposed-modules:
+    Language.LSP.Protocol.QuickCheck
+
+  other-modules:
+    Language.LSP.Protocol.QuickCheck.Common
+    Language.LSP.Protocol.QuickCheck.Message
+    Language.LSP.Protocol.QuickCheck.Types
+
+  build-depends:
+    , base              >=4.11    && <5
+    , lsp-types
+    , row-types
+    , QuickCheck
+    , quickcheck-instances
+    , generic-arbitrary
     , template-haskell
-    , text
 
 executable generator
   hs-source-dirs:     generator
-  default-language:   Haskell2010
-  default-extensions: StrictData
+  default-language:   GHC2021
+  default-extensions:
+    StrictData
+
   main-is:            Main.hs
   other-modules:      CodeGen
   build-depends:
-    , base                 >=4.11 && <5
+    , base
     , containers
     , directory
     , filepath
@@ -550,11 +633,13 @@
     , prettyprinter
     , regex
     , text
+    , witherable
 
 test-suite lsp-types-test
+  import:             warnings
   type:               exitcode-stdio-1.0
   hs-source-dirs:     test
-  default-language:   Haskell2010
+  default-language:   GHC2021
   main-is:            Main.hs
   other-modules:
     CapabilitiesSpec
@@ -569,18 +654,19 @@
     WorkspaceEditSpec
 
   ghc-options:        -threaded -rtsopts -with-rtsopts=-N -Wall
-
   build-depends:
-    , aeson                 >=2.0.3.0
+    , aeson
     , base
     , filepath
     , hspec
-    , lens                  >=4.15.2
+    , hspec-golden
+    , lens
     , lsp-types
+    , lsp-types-quickcheck
     , network-uri
+    , prettyprinter
     , QuickCheck
     , quickcheck-instances
-    , row-types
     , text
 
   build-tool-depends: hspec-discover:hspec-discover
diff --git a/metaModel.json b/metaModel.json
--- a/metaModel.json
+++ b/metaModel.json
@@ -53,14321 +53,15333 @@
 				"kind": "reference",
 				"name": "ImplementationRegistrationOptions"
 			},
-			"documentation": "A request to resolve the implementation locations of a symbol at a given text\ndocument position. The request's parameter is of type [TextDocumentPositionParams]\n(#TextDocumentPositionParams) the response is of type {@link Definition} or a\nThenable that resolves to such."
-		},
-		{
-			"method": "textDocument/typeDefinition",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Definition"
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DefinitionLink"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "TypeDefinitionParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DefinitionLink"
-						}
-					}
-				]
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TypeDefinitionRegistrationOptions"
-			},
-			"documentation": "A request to resolve the type definition locations of a symbol at a given text\ndocument position. The request's parameter is of type [TextDocumentPositionParams]\n(#TextDocumentPositionParams) the response is of type {@link Definition} or a\nThenable that resolves to such."
-		},
-		{
-			"method": "workspace/workspaceFolders",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceFolder"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "The `workspace/workspaceFolders` is sent from the server to the client to fetch the open workspace folders."
-		},
-		{
-			"method": "workspace/configuration",
-			"result": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "LSPAny"
-				}
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "ConfigurationParams"
-			},
-			"documentation": "The 'workspace/configuration' request is sent from the server to the client to fetch a certain\nconfiguration setting.\n\nThis pull model replaces the old push model were the client signaled configuration change via an\nevent. If the server still needs to react to configuration changes (since the server caches the\nresult of `workspace/configuration` requests) the server should register for an empty configuration\nchange event and empty the cache if such an event is received."
-		},
-		{
-			"method": "textDocument/documentColor",
-			"result": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "ColorInformation"
-				}
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentColorParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "ColorInformation"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentColorRegistrationOptions"
-			},
-			"documentation": "A request to list all color symbols found in a given text document. The request's\nparameter is of type {@link DocumentColorParams} the\nresponse is of type {@link ColorInformation ColorInformation[]} or a Thenable\nthat resolves to such."
-		},
-		{
-			"method": "textDocument/colorPresentation",
-			"result": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "ColorPresentation"
-				}
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "ColorPresentationParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "ColorPresentation"
-				}
-			},
-			"registrationOptions": {
-				"kind": "and",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkDoneProgressOptions"
-					},
-					{
-						"kind": "reference",
-						"name": "TextDocumentRegistrationOptions"
-					}
-				]
-			},
-			"documentation": "A request to list all presentation for a color. The request's\nparameter is of type {@link ColorPresentationParams} the\nresponse is of type {@link ColorInformation ColorInformation[]} or a Thenable\nthat resolves to such."
-		},
-		{
-			"method": "textDocument/foldingRange",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FoldingRange"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "FoldingRangeParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "FoldingRange"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FoldingRangeRegistrationOptions"
-			},
-			"documentation": "A request to provide folding ranges in a document. The request's\nparameter is of type {@link FoldingRangeParams}, the\nresponse is of type {@link FoldingRangeList} or a Thenable\nthat resolves to such."
-		},
-		{
-			"method": "textDocument/declaration",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Declaration"
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DeclarationLink"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DeclarationParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DeclarationLink"
-						}
-					}
-				]
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DeclarationRegistrationOptions"
-			},
-			"documentation": "A request to resolve the type definition locations of a symbol at a given text\ndocument position. The request's parameter is of type [TextDocumentPositionParams]\n(#TextDocumentPositionParams) the response is of type {@link Declaration}\nor a typed array of {@link DeclarationLink} or a Thenable that resolves\nto such."
-		},
-		{
-			"method": "textDocument/selectionRange",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SelectionRange"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SelectionRangeParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "SelectionRange"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "SelectionRangeRegistrationOptions"
-			},
-			"documentation": "A request to provide selection ranges in a document. The request's\nparameter is of type {@link SelectionRangeParams}, the\nresponse is of type {@link SelectionRange SelectionRange[]} or a Thenable\nthat resolves to such."
-		},
-		{
-			"method": "window/workDoneProgress/create",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "WorkDoneProgressCreateParams"
-			},
-			"documentation": "The `window/workDoneProgress/create` request is sent from the server to the client to initiate progress\nreporting from the server."
-		},
-		{
-			"method": "textDocument/prepareCallHierarchy",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CallHierarchyItem"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CallHierarchyPrepareParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "CallHierarchyRegistrationOptions"
-			},
-			"documentation": "A request to result a `CallHierarchyItem` in a document at a given position.\nCan be used as an input to an incoming or outgoing call hierarchy.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "callHierarchy/incomingCalls",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CallHierarchyIncomingCall"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CallHierarchyIncomingCallsParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "CallHierarchyIncomingCall"
-				}
-			},
-			"documentation": "A request to resolve the incoming calls for a given `CallHierarchyItem`.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "callHierarchy/outgoingCalls",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CallHierarchyOutgoingCall"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CallHierarchyOutgoingCallsParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "CallHierarchyOutgoingCall"
-				}
-			},
-			"documentation": "A request to resolve the outgoing calls for a given `CallHierarchyItem`.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/semanticTokens/full",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "SemanticTokens"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SemanticTokensParams"
-			},
-			"partialResult": {
-				"kind": "reference",
-				"name": "SemanticTokensPartialResult"
-			},
-			"registrationMethod": "textDocument/semanticTokens",
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "SemanticTokensRegistrationOptions"
-			},
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/semanticTokens/full/delta",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "SemanticTokens"
-					},
-					{
-						"kind": "reference",
-						"name": "SemanticTokensDelta"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SemanticTokensDeltaParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "SemanticTokensPartialResult"
-					},
-					{
-						"kind": "reference",
-						"name": "SemanticTokensDeltaPartialResult"
-					}
-				]
-			},
-			"registrationMethod": "textDocument/semanticTokens",
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "SemanticTokensRegistrationOptions"
-			},
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/semanticTokens/range",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "SemanticTokens"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SemanticTokensRangeParams"
-			},
-			"partialResult": {
-				"kind": "reference",
-				"name": "SemanticTokensPartialResult"
-			},
-			"registrationMethod": "textDocument/semanticTokens",
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/semanticTokens/refresh",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "window/showDocument",
-			"result": {
-				"kind": "reference",
-				"name": "ShowDocumentResult"
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "ShowDocumentParams"
-			},
-			"documentation": "A request to show a document. This request might open an\nexternal program depending on the value of the URI to open.\nFor example a request to open `https://code.visualstudio.com/`\nwill very likely open the URI in a WEB browser.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/linkedEditingRange",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "LinkedEditingRanges"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "LinkedEditingRangeParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "LinkedEditingRangeRegistrationOptions"
-			},
-			"documentation": "A request to provide ranges that can be edited together.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/willCreateFiles",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CreateFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The will create files request is sent from the client to the server before files are actually\ncreated as long as the creation is triggered from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/willRenameFiles",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "RenameFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The will rename files request is sent from the client to the server before files are actually\nrenamed as long as the rename is triggered from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/willDeleteFiles",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DeleteFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The did delete files notification is sent from the client to the server when\nfiles were deleted from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/moniker",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Moniker"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "MonikerParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "Moniker"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "MonikerRegistrationOptions"
-			},
-			"documentation": "A request to get the moniker of a symbol at a given text document position.\nThe request parameter is of type {@link TextDocumentPositionParams}.\nThe response is of type {@link Moniker Moniker[]} or `null`."
-		},
-		{
-			"method": "textDocument/prepareTypeHierarchy",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TypeHierarchyItem"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "TypeHierarchyPrepareParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TypeHierarchyRegistrationOptions"
-			},
-			"documentation": "A request to result a `TypeHierarchyItem` in a document at a given position.\nCan be used as an input to a subtypes or supertypes type hierarchy.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "typeHierarchy/supertypes",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TypeHierarchyItem"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "TypeHierarchySupertypesParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "TypeHierarchyItem"
-				}
-			},
-			"documentation": "A request to resolve the supertypes for a given `TypeHierarchyItem`.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "typeHierarchy/subtypes",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TypeHierarchyItem"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "TypeHierarchySubtypesParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "TypeHierarchyItem"
-				}
-			},
-			"documentation": "A request to resolve the subtypes for a given `TypeHierarchyItem`.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "textDocument/inlineValue",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "InlineValue"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "InlineValueParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "InlineValue"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "InlineValueRegistrationOptions"
-			},
-			"documentation": "A request to provide inline values in a document. The request's parameter is of\ntype {@link InlineValueParams}, the response is of type\n{@link InlineValue InlineValue[]} or a Thenable that resolves to such.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "workspace/inlineValue/refresh",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "textDocument/inlayHint",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "InlayHint"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "InlayHintParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "InlayHint"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "InlayHintRegistrationOptions"
-			},
-			"documentation": "A request to provide inlay hints in a document. The request's parameter is of\ntype {@link InlayHintsParams}, the response is of type\n{@link InlayHint InlayHint[]} or a Thenable that resolves to such.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "inlayHint/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "InlayHint"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "InlayHint"
-			},
-			"documentation": "A request to resolve additional properties for an inlay hint.\nThe request's parameter is of type {@link InlayHint}, the response is\nof type {@link InlayHint} or a Thenable that resolves to such.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "workspace/inlayHint/refresh",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "textDocument/diagnostic",
-			"result": {
-				"kind": "reference",
-				"name": "DocumentDiagnosticReport"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentDiagnosticParams"
-			},
-			"partialResult": {
-				"kind": "reference",
-				"name": "DocumentDiagnosticReportPartialResult"
-			},
-			"errorData": {
-				"kind": "reference",
-				"name": "DiagnosticServerCancellationData"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DiagnosticRegistrationOptions"
-			},
-			"documentation": "The document diagnostic request definition.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "workspace/diagnostic",
-			"result": {
-				"kind": "reference",
-				"name": "WorkspaceDiagnosticReport"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WorkspaceDiagnosticParams"
-			},
-			"partialResult": {
-				"kind": "reference",
-				"name": "WorkspaceDiagnosticReportPartialResult"
-			},
-			"errorData": {
-				"kind": "reference",
-				"name": "DiagnosticServerCancellationData"
-			},
-			"documentation": "The workspace diagnostic request definition.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "workspace/diagnostic/refresh",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "The diagnostic refresh request definition.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "client/registerCapability",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "RegistrationParams"
-			},
-			"documentation": "The `client/registerCapability` request is sent from the server to the client to register a new capability\nhandler on the client side."
-		},
-		{
-			"method": "client/unregisterCapability",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "UnregistrationParams"
-			},
-			"documentation": "The `client/unregisterCapability` request is sent from the server to the client to unregister a previously registered capability\nhandler on the client side."
-		},
-		{
-			"method": "initialize",
-			"result": {
-				"kind": "reference",
-				"name": "InitializeResult"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "InitializeParams"
-			},
-			"errorData": {
-				"kind": "reference",
-				"name": "InitializeError"
-			},
-			"documentation": "The initialize request is sent from the client to the server.\nIt is sent once as the request after starting up the server.\nThe requests parameter is of type {@link InitializeParams}\nthe response if of type {@link InitializeResult} of a Thenable that\nresolves to such."
-		},
-		{
-			"method": "shutdown",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "clientToServer",
-			"documentation": "A shutdown request is sent from the client to the server.\nIt is sent once when the client decides to shutdown the\nserver. The only notification that is sent after a shutdown request\nis the exit event."
-		},
-		{
-			"method": "window/showMessageRequest",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "MessageActionItem"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "ShowMessageRequestParams"
-			},
-			"documentation": "The show message request is sent from the server to the client to show a message\nand a set of options actions to the user."
-		},
-		{
-			"method": "textDocument/willSaveWaitUntil",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WillSaveTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentRegistrationOptions"
-			},
-			"documentation": "A document will save request is sent from the client to the server before\nthe document is actually saved. The request can return an array of TextEdits\nwhich will be applied to the text document before it is saved. Please note that\nclients might drop results if computing the text edits took too long or if a\nserver constantly fails on this request. This is done to keep the save fast and\nreliable."
-		},
-		{
-			"method": "textDocument/completion",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CompletionItem"
-						}
-					},
-					{
-						"kind": "reference",
-						"name": "CompletionList"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CompletionParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "CompletionItem"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "CompletionRegistrationOptions"
-			},
-			"documentation": "Request to request completion at a given text document position. The request's\nparameter is of type {@link TextDocumentPosition} the response\nis of type {@link CompletionItem CompletionItem[]} or {@link CompletionList}\nor a Thenable that resolves to such.\n\nThe request can delay the computation of the {@link CompletionItem.detail `detail`}\nand {@link CompletionItem.documentation `documentation`} properties to the `completionItem/resolve`\nrequest. However, properties that are needed for the initial sorting and filtering, like `sortText`,\n`filterText`, `insertText`, and `textEdit`, must not be changed during resolve."
-		},
-		{
-			"method": "completionItem/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "CompletionItem"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CompletionItem"
-			},
-			"documentation": "Request to resolve additional information for a given completion item.The request's\nparameter is of type {@link CompletionItem} the response\nis of type {@link CompletionItem} or a Thenable that resolves to such."
-		},
-		{
-			"method": "textDocument/hover",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Hover"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "HoverParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "HoverRegistrationOptions"
-			},
-			"documentation": "Request to request hover information at a given text document position. The request's\nparameter is of type {@link TextDocumentPosition} the response is of\ntype {@link Hover} or a Thenable that resolves to such."
-		},
-		{
-			"method": "textDocument/signatureHelp",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "SignatureHelp"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SignatureHelpParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "SignatureHelpRegistrationOptions"
-			}
-		},
-		{
-			"method": "textDocument/definition",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Definition"
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DefinitionLink"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DefinitionParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DefinitionLink"
-						}
-					}
-				]
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DefinitionRegistrationOptions"
-			},
-			"documentation": "A request to resolve the definition location of a symbol at a given text\ndocument position. The request's parameter is of type [TextDocumentPosition]\n(#TextDocumentPosition) the response is of either type {@link Definition}\nor a typed array of {@link DefinitionLink} or a Thenable that resolves\nto such."
-		},
-		{
-			"method": "textDocument/references",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "ReferenceParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "Location"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "ReferenceRegistrationOptions"
-			},
-			"documentation": "A request to resolve project-wide references for the symbol denoted\nby the given text document position. The request's parameter is of\ntype {@link ReferenceParams} the response is of type\n{@link Location Location[]} or a Thenable that resolves to such."
-		},
-		{
-			"method": "textDocument/documentHighlight",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DocumentHighlight"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentHighlightParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "DocumentHighlight"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentHighlightRegistrationOptions"
-			},
-			"documentation": "Request to resolve a {@link DocumentHighlight} for a given\ntext document position. The request's parameter is of type [TextDocumentPosition]\n(#TextDocumentPosition) the request response is of type [DocumentHighlight[]]\n(#DocumentHighlight) or a Thenable that resolves to such."
-		},
-		{
-			"method": "textDocument/documentSymbol",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolInformation"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DocumentSymbol"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentSymbolParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolInformation"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DocumentSymbol"
-						}
-					}
-				]
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentSymbolRegistrationOptions"
-			},
-			"documentation": "A request to list all symbols found in a given text document. The request's\nparameter is of type {@link TextDocumentIdentifier} the\nresponse is of type {@link SymbolInformation SymbolInformation[]} or a Thenable\nthat resolves to such."
-		},
-		{
-			"method": "textDocument/codeAction",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "Command"
-								},
-								{
-									"kind": "reference",
-									"name": "CodeAction"
-								}
-							]
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CodeActionParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "or",
-					"items": [
-						{
-							"kind": "reference",
-							"name": "Command"
-						},
-						{
-							"kind": "reference",
-							"name": "CodeAction"
-						}
-					]
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "CodeActionRegistrationOptions"
-			},
-			"documentation": "A request to provide commands for the given text document and range."
-		},
-		{
-			"method": "codeAction/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "CodeAction"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CodeAction"
-			},
-			"documentation": "Request to resolve additional information for a given code action.The request's\nparameter is of type {@link CodeAction} the response\nis of type {@link CodeAction} or a Thenable that resolves to such."
-		},
-		{
-			"method": "workspace/symbol",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolInformation"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceSymbol"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WorkspaceSymbolParams"
-			},
-			"partialResult": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolInformation"
-						}
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceSymbol"
-						}
-					}
-				]
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "WorkspaceSymbolRegistrationOptions"
-			},
-			"documentation": "A request to list project-wide symbols matching the query string given\nby the {@link WorkspaceSymbolParams}. The response is\nof type {@link SymbolInformation SymbolInformation[]} or a Thenable that\nresolves to such.\n\n@since 3.17.0 - support for WorkspaceSymbol in the returned data. Clients\n need to advertise support for WorkspaceSymbols via the client capability\n `workspace.symbol.resolveSupport`.\n",
-			"since": "3.17.0 - support for WorkspaceSymbol in the returned data. Clients\nneed to advertise support for WorkspaceSymbols via the client capability\n`workspace.symbol.resolveSupport`."
-		},
-		{
-			"method": "workspaceSymbol/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "WorkspaceSymbol"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WorkspaceSymbol"
-			},
-			"documentation": "A request to resolve the range inside the workspace\nsymbol's location.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "textDocument/codeLens",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CodeLens"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CodeLensParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "CodeLens"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "CodeLensRegistrationOptions"
-			},
-			"documentation": "A request to provide code lens for the given text document."
-		},
-		{
-			"method": "codeLens/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "CodeLens"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CodeLens"
-			},
-			"documentation": "A request to resolve a command for a given code lens."
-		},
-		{
-			"method": "workspace/codeLens/refresh",
-			"result": {
-				"kind": "base",
-				"name": "null"
-			},
-			"messageDirection": "serverToClient",
-			"documentation": "A request to refresh all code actions\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "textDocument/documentLink",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DocumentLink"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentLinkParams"
-			},
-			"partialResult": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "DocumentLink"
-				}
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentLinkRegistrationOptions"
-			},
-			"documentation": "A request to provide document links"
-		},
-		{
-			"method": "documentLink/resolve",
-			"result": {
-				"kind": "reference",
-				"name": "DocumentLink"
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentLink"
-			},
-			"documentation": "Request to resolve additional information for a given document link. The request's\nparameter is of type {@link DocumentLink} the response\nis of type {@link DocumentLink} or a Thenable that resolves to such."
-		},
-		{
-			"method": "textDocument/formatting",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentFormattingParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentFormattingRegistrationOptions"
-			},
-			"documentation": "A request to to format a whole document."
-		},
-		{
-			"method": "textDocument/rangeFormatting",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentRangeFormattingParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentRangeFormattingRegistrationOptions"
-			},
-			"documentation": "A request to to format a range in a document."
-		},
-		{
-			"method": "textDocument/onTypeFormatting",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DocumentOnTypeFormattingParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DocumentOnTypeFormattingRegistrationOptions"
-			},
-			"documentation": "A request to format a document on type."
-		},
-		{
-			"method": "textDocument/rename",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "RenameParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "RenameRegistrationOptions"
-			},
-			"documentation": "A request to rename a symbol."
-		},
-		{
-			"method": "textDocument/prepareRename",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "PrepareRenameResult"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "PrepareRenameParams"
-			},
-			"documentation": "A request to test and perform the setup necessary for a rename.\n\n@since 3.16 - support for default behavior",
-			"since": "3.16 - support for default behavior"
-		},
-		{
-			"method": "workspace/executeCommand",
-			"result": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "ExecuteCommandParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "ExecuteCommandRegistrationOptions"
-			},
-			"documentation": "A request send from the client to the server to execute a command. The request might return\na workspace edit which the client will apply to the workspace."
-		},
-		{
-			"method": "workspace/applyEdit",
-			"result": {
-				"kind": "reference",
-				"name": "ApplyWorkspaceEditResult"
-			},
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "ApplyWorkspaceEditParams"
-			},
-			"documentation": "A request sent from the server to the client to modified certain resources."
-		}
-	],
-	"notifications": [
-		{
-			"method": "workspace/didChangeWorkspaceFolders",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidChangeWorkspaceFoldersParams"
-			},
-			"documentation": "The `workspace/didChangeWorkspaceFolders` notification is sent from the client to the server when the workspace\nfolder configuration changes."
-		},
-		{
-			"method": "window/workDoneProgress/cancel",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WorkDoneProgressCancelParams"
-			},
-			"documentation": "The `window/workDoneProgress/cancel` notification is sent from  the client to the server to cancel a progress\ninitiated on the server side."
-		},
-		{
-			"method": "workspace/didCreateFiles",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "CreateFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The did create files notification is sent from the client to the server when\nfiles were created from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/didRenameFiles",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "RenameFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The did rename files notification is sent from the client to the server when\nfiles were renamed from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "workspace/didDeleteFiles",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DeleteFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "FileOperationRegistrationOptions"
-			},
-			"documentation": "The will delete files request is sent from the client to the server before files are actually\ndeleted as long as the deletion is triggered from within the client.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"method": "notebookDocument/didOpen",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidOpenNotebookDocumentParams"
-			},
-			"registrationMethod": "notebookDocument/sync",
-			"documentation": "A notification sent when a notebook opens.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "notebookDocument/didChange",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidChangeNotebookDocumentParams"
-			},
-			"registrationMethod": "notebookDocument/sync"
-		},
-		{
-			"method": "notebookDocument/didSave",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidSaveNotebookDocumentParams"
-			},
-			"registrationMethod": "notebookDocument/sync",
-			"documentation": "A notification sent when a notebook document is saved.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "notebookDocument/didClose",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidCloseNotebookDocumentParams"
-			},
-			"registrationMethod": "notebookDocument/sync",
-			"documentation": "A notification sent when a notebook closes.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"method": "initialized",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "InitializedParams"
-			},
-			"documentation": "The initialized notification is sent from the client to the\nserver after the client is fully initialized and the server\nis allowed to send requests from the server to the client."
-		},
-		{
-			"method": "exit",
-			"messageDirection": "clientToServer",
-			"documentation": "The exit event is sent from the client to the server to\nask the server to exit its process."
-		},
-		{
-			"method": "workspace/didChangeConfiguration",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidChangeConfigurationParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DidChangeConfigurationRegistrationOptions"
-			},
-			"documentation": "The configuration change notification is sent from the client to the server\nwhen the client's configuration has changed. The notification contains\nthe changed configuration as defined by the language client."
-		},
-		{
-			"method": "window/showMessage",
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "ShowMessageParams"
-			},
-			"documentation": "The show message notification is sent from a server to a client to ask\nthe client to display a particular message in the user interface."
-		},
-		{
-			"method": "window/logMessage",
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "LogMessageParams"
-			},
-			"documentation": "The log message notification is sent from the server to the client to ask\nthe client to log a particular message."
-		},
-		{
-			"method": "telemetry/event",
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "LSPAny"
-			},
-			"documentation": "The telemetry event notification is sent from the server to the client to ask\nthe client to log telemetry data."
-		},
-		{
-			"method": "textDocument/didOpen",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidOpenTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentRegistrationOptions"
-			},
-			"documentation": "The document open notification is sent from the client to the server to signal\nnewly opened text documents. The document's truth is now managed by the client\nand the server must not try to read the document's truth using the document's\nuri. Open in this sense means it is managed by the client. It doesn't necessarily\nmean that its content is presented in an editor. An open notification must not\nbe sent more than once without a corresponding close notification send before.\nThis means open and close notification must be balanced and the max open count\nis one."
-		},
-		{
-			"method": "textDocument/didChange",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidChangeTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentChangeRegistrationOptions"
-			},
-			"documentation": "The document change notification is sent from the client to the server to signal\nchanges to a text document."
-		},
-		{
-			"method": "textDocument/didClose",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidCloseTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentRegistrationOptions"
-			},
-			"documentation": "The document close notification is sent from the client to the server when\nthe document got closed in the client. The document's truth now exists where\nthe document's uri points to (e.g. if the document's uri is a file uri the\ntruth now exists on disk). As with the open notification the close notification\nis about managing the document's content. Receiving a close notification\ndoesn't mean that the document was open in an editor before. A close\nnotification requires a previous open notification to be sent."
-		},
-		{
-			"method": "textDocument/didSave",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidSaveTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentSaveRegistrationOptions"
-			},
-			"documentation": "The document save notification is sent from the client to the server when\nthe document got saved in the client."
-		},
-		{
-			"method": "textDocument/willSave",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "WillSaveTextDocumentParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "TextDocumentRegistrationOptions"
-			},
-			"documentation": "A document will save notification is sent from the client to the server before\nthe document is actually saved."
-		},
-		{
-			"method": "workspace/didChangeWatchedFiles",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "DidChangeWatchedFilesParams"
-			},
-			"registrationOptions": {
-				"kind": "reference",
-				"name": "DidChangeWatchedFilesRegistrationOptions"
-			},
-			"documentation": "The watched files notification is sent from the client to the server when\nthe client detects changes to file watched by the language client."
-		},
-		{
-			"method": "textDocument/publishDiagnostics",
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "PublishDiagnosticsParams"
-			},
-			"documentation": "Diagnostics notification are sent from the server to the client to signal\nresults of validation runs."
-		},
-		{
-			"method": "$/setTrace",
-			"messageDirection": "clientToServer",
-			"params": {
-				"kind": "reference",
-				"name": "SetTraceParams"
-			}
-		},
-		{
-			"method": "$/logTrace",
-			"messageDirection": "serverToClient",
-			"params": {
-				"kind": "reference",
-				"name": "LogTraceParams"
-			}
-		},
-		{
-			"method": "$/cancelRequest",
-			"messageDirection": "both",
-			"params": {
-				"kind": "reference",
-				"name": "CancelParams"
-			}
-		},
-		{
-			"method": "$/progress",
-			"messageDirection": "both",
-			"params": {
-				"kind": "reference",
-				"name": "ProgressParams"
-			}
-		}
-	],
-	"structures": [
-		{
-			"name": "ImplementationParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			]
-		},
-		{
-			"name": "Location",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					}
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					}
-				}
-			],
-			"documentation": "Represents a location inside a resource, such as a line\ninside a text file."
-		},
-		{
-			"name": "ImplementationRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "ImplementationOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "TypeDefinitionParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			]
-		},
-		{
-			"name": "TypeDefinitionRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TypeDefinitionOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "WorkspaceFolder",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "The associated URI for this workspace folder."
-				},
-				{
-					"name": "name",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of the workspace folder. Used to refer to this\nworkspace folder in the user interface."
-				}
-			],
-			"documentation": "A workspace folder inside a client."
-		},
-		{
-			"name": "DidChangeWorkspaceFoldersParams",
-			"properties": [
-				{
-					"name": "event",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceFoldersChangeEvent"
-					},
-					"documentation": "The actual workspace folder change event."
-				}
-			],
-			"documentation": "The parameters of a `workspace/didChangeWorkspaceFolders` notification."
-		},
-		{
-			"name": "ConfigurationParams",
-			"properties": [
-				{
-					"name": "items",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "ConfigurationItem"
-						}
-					}
-				}
-			],
-			"documentation": "The parameters of a configuration request."
-		},
-		{
-			"name": "DocumentColorParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link DocumentColorRequest}."
-		},
-		{
-			"name": "ColorInformation",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range in the document where this color appears."
-				},
-				{
-					"name": "color",
-					"type": {
-						"kind": "reference",
-						"name": "Color"
-					},
-					"documentation": "The actual color value for this color range."
-				}
-			],
-			"documentation": "Represents a color range from a document."
-		},
-		{
-			"name": "DocumentColorRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentColorOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "ColorPresentationParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "color",
-					"type": {
-						"kind": "reference",
-						"name": "Color"
-					},
-					"documentation": "The color to request presentations for."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range where the color would be inserted. Serves as a context."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link ColorPresentationRequest}."
-		},
-		{
-			"name": "ColorPresentation",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The label of this color presentation. It will be shown on the color\npicker header. By default this is also the text that is inserted when selecting\nthis color presentation."
-				},
-				{
-					"name": "textEdit",
-					"type": {
-						"kind": "reference",
-						"name": "TextEdit"
-					},
-					"optional": true,
-					"documentation": "An {@link TextEdit edit} which is applied to a document when selecting\nthis presentation for the color.  When `falsy` the {@link ColorPresentation.label label}\nis used."
-				},
-				{
-					"name": "additionalTextEdits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					"optional": true,
-					"documentation": "An optional array of additional {@link TextEdit text edits} that are applied when\nselecting this color presentation. Edits must not overlap with the main {@link ColorPresentation.textEdit edit} nor with themselves."
-				}
-			]
-		},
-		{
-			"name": "WorkDoneProgressOptions",
-			"properties": [
-				{
-					"name": "workDoneProgress",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true
-				}
-			]
-		},
-		{
-			"name": "TextDocumentRegistrationOptions",
-			"properties": [
-				{
-					"name": "documentSelector",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "DocumentSelector"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "A document selector to identify the scope of the registration. If set to null\nthe document selector provided on the client side will be used."
-				}
-			],
-			"documentation": "General text document registration options."
-		},
-		{
-			"name": "FoldingRangeParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link FoldingRangeRequest}."
-		},
-		{
-			"name": "FoldingRange",
-			"properties": [
-				{
-					"name": "startLine",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The zero-based start line of the range to fold. The folded area starts after the line's last character.\nTo be valid, the end must be zero or larger and smaller than the number of lines in the document."
-				},
-				{
-					"name": "startCharacter",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line."
-				},
-				{
-					"name": "endLine",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The zero-based end line of the range to fold. The folded area ends with the line's last character.\nTo be valid, the end must be zero or larger and smaller than the number of lines in the document."
-				},
-				{
-					"name": "endCharacter",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "FoldingRangeKind"
-					},
-					"optional": true,
-					"documentation": "Describes the kind of the folding range such as `comment' or 'region'. The kind\nis used to categorize folding ranges and used by commands like 'Fold all comments'.\nSee {@link FoldingRangeKind} for an enumeration of standardized kinds."
-				},
-				{
-					"name": "collapsedText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The text that the client should show when the specified range is\ncollapsed. If not defined or not supported by the client, a default\nwill be chosen by the client.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Represents a folding range. To be valid, start and end line must be bigger than zero and smaller\nthan the number of lines in the document. Clients are free to ignore invalid ranges."
-		},
-		{
-			"name": "FoldingRangeRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "FoldingRangeOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "DeclarationParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			]
-		},
-		{
-			"name": "DeclarationRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "DeclarationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "SelectionRangeParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "positions",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Position"
-						}
-					},
-					"documentation": "The positions inside the text document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "A parameter literal used in selection range requests."
-		},
-		{
-			"name": "SelectionRange",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The {@link Range range} of this selection range."
-				},
-				{
-					"name": "parent",
-					"type": {
-						"kind": "reference",
-						"name": "SelectionRange"
-					},
-					"optional": true,
-					"documentation": "The parent selection range containing this range. Therefore `parent.range` must contain `this.range`."
-				}
-			],
-			"documentation": "A selection range represents a part of a selection hierarchy. A selection range\nmay have a parent selection range that contains it."
-		},
-		{
-			"name": "SelectionRangeRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "SelectionRangeOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "WorkDoneProgressCreateParams",
-			"properties": [
-				{
-					"name": "token",
-					"type": {
-						"kind": "reference",
-						"name": "ProgressToken"
-					},
-					"documentation": "The token to be used to report progress."
-				}
-			]
-		},
-		{
-			"name": "WorkDoneProgressCancelParams",
-			"properties": [
-				{
-					"name": "token",
-					"type": {
-						"kind": "reference",
-						"name": "ProgressToken"
-					},
-					"documentation": "The token to be used to report progress."
-				}
-			]
-		},
-		{
-			"name": "CallHierarchyPrepareParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameter of a `textDocument/prepareCallHierarchy` request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyItem",
-			"properties": [
-				{
-					"name": "name",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of this item."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "SymbolKind"
-					},
-					"documentation": "The kind of this item."
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Tags for this item."
-				},
-				{
-					"name": "detail",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "More detail for this item, e.g. the signature of a function."
-				},
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The resource identifier of this item."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code."
-				},
-				{
-					"name": "selectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.\nMust be contained by the {@link CallHierarchyItem.range `range`}."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved between a call hierarchy prepare and\nincoming calls or outgoing calls requests."
-				}
-			],
-			"documentation": "Represents programming constructs like functions or constructors in the context\nof call hierarchy.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "CallHierarchyOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Call hierarchy options used during static or dynamic registration.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyIncomingCallsParams",
-			"properties": [
-				{
-					"name": "item",
-					"type": {
-						"kind": "reference",
-						"name": "CallHierarchyItem"
-					}
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameter of a `callHierarchy/incomingCalls` request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyIncomingCall",
-			"properties": [
-				{
-					"name": "from",
-					"type": {
-						"kind": "reference",
-						"name": "CallHierarchyItem"
-					},
-					"documentation": "The item that makes the call."
-				},
-				{
-					"name": "fromRanges",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Range"
-						}
-					},
-					"documentation": "The ranges at which the calls appear. This is relative to the caller\ndenoted by {@link CallHierarchyIncomingCall.from `this.from`}."
-				}
-			],
-			"documentation": "Represents an incoming call, e.g. a caller of a method or constructor.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyOutgoingCallsParams",
-			"properties": [
-				{
-					"name": "item",
-					"type": {
-						"kind": "reference",
-						"name": "CallHierarchyItem"
-					}
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameter of a `callHierarchy/outgoingCalls` request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CallHierarchyOutgoingCall",
-			"properties": [
-				{
-					"name": "to",
-					"type": {
-						"kind": "reference",
-						"name": "CallHierarchyItem"
-					},
-					"documentation": "The item that is called."
-				},
-				{
-					"name": "fromRanges",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Range"
-						}
-					},
-					"documentation": "The range at which this item is called. This is the range relative to the caller, e.g the item\npassed to {@link CallHierarchyItemProvider.provideCallHierarchyOutgoingCalls `provideCallHierarchyOutgoingCalls`}\nand not {@link CallHierarchyOutgoingCall.to `this.to`}."
-				}
-			],
-			"documentation": "Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokens",
-			"properties": [
-				{
-					"name": "resultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional result id. If provided and clients support delta updating\nthe client will include the result id in the next semantic token request.\nA server can then instead of computing all semantic tokens again simply\nsend a delta."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "uinteger"
-						}
-					},
-					"documentation": "The actual tokens."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensPartialResult",
-			"properties": [
-				{
-					"name": "data",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "uinteger"
-						}
-					}
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "SemanticTokensOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensDeltaParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "previousResultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The result id of a previous response. The result Id can either point to a full response\nor a delta response depending on what was received last."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensDelta",
-			"properties": [
-				{
-					"name": "resultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true
-				},
-				{
-					"name": "edits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SemanticTokensEdit"
-						}
-					},
-					"documentation": "The semantic token edits to transform a previous result into a new result."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensDeltaPartialResult",
-			"properties": [
-				{
-					"name": "edits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SemanticTokensEdit"
-						}
-					}
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensRangeParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range the semantic tokens are requested for."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "ShowDocumentParams",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "The document uri to show."
-				},
-				{
-					"name": "external",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Indicates to show the resource in an external program.\nTo show for example `https://code.visualstudio.com/`\nin the default WEB browser set `external` to `true`."
-				},
-				{
-					"name": "takeFocus",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "An optional property to indicate whether the editor\nshowing the document should take focus or not.\nClients might ignore this property if an external\nprogram is started."
-				},
-				{
-					"name": "selection",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"optional": true,
-					"documentation": "An optional selection range if the document is a text\ndocument. Clients might ignore the property if an\nexternal program is started or the file is not a text\nfile."
-				}
-			],
-			"documentation": "Params to show a document.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "ShowDocumentResult",
-			"properties": [
-				{
-					"name": "success",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "A boolean indicating if the show was successful."
-				}
-			],
-			"documentation": "The result of a showDocument request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "LinkedEditingRangeParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			]
-		},
-		{
-			"name": "LinkedEditingRanges",
-			"properties": [
-				{
-					"name": "ranges",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Range"
-						}
-					},
-					"documentation": "A list of ranges that can be edited together. The ranges must have\nidentical length and contain identical text content. The ranges cannot overlap."
-				},
-				{
-					"name": "wordPattern",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional word pattern (regular expression) that describes valid contents for\nthe given ranges. If no pattern is provided, the client configuration's word\npattern will be used."
-				}
-			],
-			"documentation": "The result of a linked editing range request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "LinkedEditingRangeRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "LinkedEditingRangeOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			]
-		},
-		{
-			"name": "CreateFilesParams",
-			"properties": [
-				{
-					"name": "files",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileCreate"
-						}
-					},
-					"documentation": "An array of all files/folders created in this operation."
-				}
-			],
-			"documentation": "The parameters sent in notifications/requests for user-initiated creation of\nfiles.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "WorkspaceEdit",
-			"properties": [
-				{
-					"name": "changes",
-					"type": {
-						"kind": "map",
-						"key": {
-							"kind": "base",
-							"name": "DocumentUri"
-						},
-						"value": {
-							"kind": "array",
-							"element": {
-								"kind": "reference",
-								"name": "TextEdit"
-							}
-						}
-					},
-					"optional": true,
-					"documentation": "Holds changes to existing resources."
-				},
-				{
-					"name": "documentChanges",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "TextDocumentEdit"
-								},
-								{
-									"kind": "reference",
-									"name": "CreateFile"
-								},
-								{
-									"kind": "reference",
-									"name": "RenameFile"
-								},
-								{
-									"kind": "reference",
-									"name": "DeleteFile"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Depending on the client capability `workspace.workspaceEdit.resourceOperations` document changes\nare either an array of `TextDocumentEdit`s to express changes to n different text documents\nwhere each text document edit addresses a specific version of a text document. Or it can contain\nabove `TextDocumentEdit`s mixed with create, rename and delete file / folder operations.\n\nWhether a client supports versioned document edits is expressed via\n`workspace.workspaceEdit.documentChanges` client capability.\n\nIf a client neither supports `documentChanges` nor `workspace.workspaceEdit.resourceOperations` then\nonly plain `TextEdit`s using the `changes` property are supported."
-				},
-				{
-					"name": "changeAnnotations",
-					"type": {
-						"kind": "map",
-						"key": {
-							"kind": "reference",
-							"name": "ChangeAnnotationIdentifier"
-						},
-						"value": {
-							"kind": "reference",
-							"name": "ChangeAnnotation"
-						}
-					},
-					"optional": true,
-					"documentation": "A map of change annotations that can be referenced in `AnnotatedTextEdit`s or create, rename and\ndelete file / folder operations.\n\nWhether clients honor this property depends on the client capability `workspace.changeAnnotationSupport`.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "A workspace edit represents changes to many resources managed in the workspace. The edit\nshould either provide `changes` or `documentChanges`. If documentChanges are present\nthey are preferred over `changes` if the client can handle versioned document edits.\n\nSince version 3.13.0 a workspace edit can contain resource operations as well. If resource\noperations are present clients need to execute the operations in the order in which they\nare provided. So a workspace edit for example can consist of the following two changes:\n(1) a create file a.txt and (2) a text document edit which insert text into file a.txt.\n\nAn invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will\ncause failure of the operation. How the client recovers from the failure is described by\nthe client capability: `workspace.workspaceEdit.failureHandling`"
-		},
-		{
-			"name": "FileOperationRegistrationOptions",
-			"properties": [
-				{
-					"name": "filters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileOperationFilter"
-						}
-					},
-					"documentation": "The actual filters."
-				}
-			],
-			"documentation": "The options to register for file operations.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "RenameFilesParams",
-			"properties": [
-				{
-					"name": "files",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileRename"
-						}
-					},
-					"documentation": "An array of all files/folders renamed in this operation. When a folder is renamed, only\nthe folder will be included, and not its children."
-				}
-			],
-			"documentation": "The parameters sent in notifications/requests for user-initiated renames of\nfiles.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "DeleteFilesParams",
-			"properties": [
-				{
-					"name": "files",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileDelete"
-						}
-					},
-					"documentation": "An array of all files/folders deleted in this operation."
-				}
-			],
-			"documentation": "The parameters sent in notifications/requests for user-initiated deletes of\nfiles.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MonikerParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			]
-		},
-		{
-			"name": "Moniker",
-			"properties": [
-				{
-					"name": "scheme",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The scheme of the moniker. For example tsc or .Net"
-				},
-				{
-					"name": "identifier",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The identifier of the moniker. The value is opaque in LSIF however\nschema owners are allowed to define the structure if they want."
-				},
-				{
-					"name": "unique",
-					"type": {
-						"kind": "reference",
-						"name": "UniquenessLevel"
-					},
-					"documentation": "The scope in which the moniker is unique"
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "MonikerKind"
-					},
-					"optional": true,
-					"documentation": "The moniker kind if known."
-				}
-			],
-			"documentation": "Moniker definition to match LSIF 0.5 moniker definition.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MonikerRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "MonikerOptions"
-				}
-			]
-		},
-		{
-			"name": "TypeHierarchyPrepareParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameter of a `textDocument/prepareTypeHierarchy` request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TypeHierarchyItem",
-			"properties": [
-				{
-					"name": "name",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of this item."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "SymbolKind"
-					},
-					"documentation": "The kind of this item."
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Tags for this item."
-				},
-				{
-					"name": "detail",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "More detail for this item, e.g. the signature of a function."
-				},
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The resource identifier of this item."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range enclosing this symbol not including leading/trailing whitespace\nbut everything else, e.g. comments and code."
-				},
-				{
-					"name": "selectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range that should be selected and revealed when this symbol is being\npicked, e.g. the name of a function. Must be contained by the\n{@link TypeHierarchyItem.range `range`}."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved between a type hierarchy prepare and\nsupertypes or subtypes requests. It could also be used to identify the\ntype hierarchy in the server, helping improve the performance on\nresolving supertypes and subtypes."
-				}
-			],
-			"documentation": "@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TypeHierarchyRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TypeHierarchyOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Type hierarchy options used during static or dynamic registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TypeHierarchySupertypesParams",
-			"properties": [
-				{
-					"name": "item",
-					"type": {
-						"kind": "reference",
-						"name": "TypeHierarchyItem"
-					}
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameter of a `typeHierarchy/supertypes` request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TypeHierarchySubtypesParams",
-			"properties": [
-				{
-					"name": "item",
-					"type": {
-						"kind": "reference",
-						"name": "TypeHierarchyItem"
-					}
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameter of a `typeHierarchy/subtypes` request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range for which inline values should be computed."
-				},
-				{
-					"name": "context",
-					"type": {
-						"kind": "reference",
-						"name": "InlineValueContext"
-					},
-					"documentation": "Additional information about the context in which inline values were\nrequested."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "A parameter literal used in inline value requests.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "InlineValueOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Inline value options used during static or dynamic registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHintParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range for which inlay hints should be computed."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "A parameter literal used in inlay hint requests.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHint",
-			"properties": [
-				{
-					"name": "position",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The position of this hint."
-				},
-				{
-					"name": "label",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "array",
-								"element": {
-									"kind": "reference",
-									"name": "InlayHintLabelPart"
-								}
-							}
-						]
-					},
-					"documentation": "The label of this hint. A human readable string or an array of\nInlayHintLabelPart label parts.\n\n*Note* that neither the string nor the label part can be empty."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "InlayHintKind"
-					},
-					"optional": true,
-					"documentation": "The kind of this hint. Can be omitted in which case the client\nshould fall back to a reasonable default."
-				},
-				{
-					"name": "textEdits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					"optional": true,
-					"documentation": "Optional text edits that are performed when accepting this inlay hint.\n\n*Note* that edits are expected to change the document so that the inlay\nhint (or its nearest variant) is now part of the document and the inlay\nhint itself is now obsolete."
-				},
-				{
-					"name": "tooltip",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The tooltip text when you hover over this item."
-				},
-				{
-					"name": "paddingLeft",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Render padding before the hint.\n\nNote: Padding should use the editor's background color, not the\nbackground color of the hint itself. That means padding can be used\nto visually align/separate an inlay hint."
-				},
-				{
-					"name": "paddingRight",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Render padding after the hint.\n\nNote: Padding should use the editor's background color, not the\nbackground color of the hint itself. That means padding can be used\nto visually align/separate an inlay hint."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on an inlay hint between\na `textDocument/inlayHint` and a `inlayHint/resolve` request."
-				}
-			],
-			"documentation": "Inlay hint information.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHintRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "InlayHintOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Inlay hint options used during static or dynamic registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DocumentDiagnosticParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "identifier",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The additional identifier  provided during registration."
-				},
-				{
-					"name": "previousResultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The result id of a previous response if provided."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters of the document diagnostic request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DocumentDiagnosticReportPartialResult",
-			"properties": [
-				{
-					"name": "relatedDocuments",
-					"type": {
-						"kind": "map",
-						"key": {
-							"kind": "base",
-							"name": "DocumentUri"
-						},
-						"value": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "FullDocumentDiagnosticReport"
-								},
-								{
-									"kind": "reference",
-									"name": "UnchangedDocumentDiagnosticReport"
-								}
-							]
-						}
-					}
-				}
-			],
-			"documentation": "A partial result for a document diagnostic report.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DiagnosticServerCancellationData",
-			"properties": [
-				{
-					"name": "retriggerRequest",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					}
-				}
-			],
-			"documentation": "Cancellation data returned from a diagnostic request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DiagnosticRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DiagnosticOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Diagnostic registration options.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceDiagnosticParams",
-			"properties": [
-				{
-					"name": "identifier",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The additional identifier provided during registration."
-				},
-				{
-					"name": "previousResultIds",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "PreviousResultId"
-						}
-					},
-					"documentation": "The currently known diagnostic reports with their\nprevious result ids."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters of the workspace diagnostic request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceDiagnosticReport",
-			"properties": [
-				{
-					"name": "items",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceDocumentDiagnosticReport"
-						}
-					}
-				}
-			],
-			"documentation": "A workspace diagnostic report.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceDiagnosticReportPartialResult",
-			"properties": [
-				{
-					"name": "items",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceDocumentDiagnosticReport"
-						}
-					}
-				}
-			],
-			"documentation": "A partial result for a workspace diagnostic report.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DidOpenNotebookDocumentParams",
-			"properties": [
-				{
-					"name": "notebookDocument",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocument"
-					},
-					"documentation": "The notebook document that got opened."
-				},
-				{
-					"name": "cellTextDocuments",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextDocumentItem"
-						}
-					},
-					"documentation": "The text documents that represent the content\nof a notebook cell."
-				}
-			],
-			"documentation": "The params sent in an open notebook document notification.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DidChangeNotebookDocumentParams",
-			"properties": [
-				{
-					"name": "notebookDocument",
-					"type": {
-						"kind": "reference",
-						"name": "VersionedNotebookDocumentIdentifier"
-					},
-					"documentation": "The notebook document that did change. The version number points\nto the version after all provided changes have been applied. If\nonly the text document content of a cell changes the notebook version\ndoesn't necessarily have to change."
-				},
-				{
-					"name": "change",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocumentChangeEvent"
-					},
-					"documentation": "The actual changes to the notebook document.\n\nThe changes describe single state changes to the notebook document.\nSo if there are two changes c1 (at array index 0) and c2 (at array\nindex 1) for a notebook in state S then c1 moves the notebook from\nS to S' and c2 from S' to S''. So c1 is computed on the state S and\nc2 is computed on the state S'.\n\nTo mirror the content of a notebook using change events use the following approach:\n- start with the same initial content\n- apply the 'notebookDocument/didChange' notifications in the order you receive them.\n- apply the `NotebookChangeEvent`s in a single notification in the order\n  you receive them."
-				}
-			],
-			"documentation": "The params sent in a change notebook document notification.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DidSaveNotebookDocumentParams",
-			"properties": [
-				{
-					"name": "notebookDocument",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocumentIdentifier"
-					},
-					"documentation": "The notebook document that got saved."
-				}
-			],
-			"documentation": "The params sent in a save notebook document notification.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DidCloseNotebookDocumentParams",
-			"properties": [
-				{
-					"name": "notebookDocument",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocumentIdentifier"
-					},
-					"documentation": "The notebook document that got closed."
-				},
-				{
-					"name": "cellTextDocuments",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextDocumentIdentifier"
-						}
-					},
-					"documentation": "The text documents that represent the content\nof a notebook cell that got closed."
-				}
-			],
-			"documentation": "The params sent in a close notebook document notification.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "RegistrationParams",
-			"properties": [
-				{
-					"name": "registrations",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Registration"
-						}
-					}
-				}
-			]
-		},
-		{
-			"name": "UnregistrationParams",
-			"properties": [
-				{
-					"name": "unregisterations",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Unregistration"
-						}
-					}
-				}
-			]
-		},
-		{
-			"name": "InitializeParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "_InitializeParams"
-				},
-				{
-					"kind": "reference",
-					"name": "WorkspaceFoldersInitializeParams"
-				}
-			]
-		},
-		{
-			"name": "InitializeResult",
-			"properties": [
-				{
-					"name": "capabilities",
-					"type": {
-						"kind": "reference",
-						"name": "ServerCapabilities"
-					},
-					"documentation": "The capabilities the language server provides."
-				},
-				{
-					"name": "serverInfo",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "name",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "The name of the server as defined by the server."
-								},
-								{
-									"name": "version",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "The server's version as defined by the server."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Information about the server.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"documentation": "The result returned from an initialize request."
-		},
-		{
-			"name": "InitializeError",
-			"properties": [
-				{
-					"name": "retry",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "Indicates whether the client execute the following retry logic:\n(1) show the message provided by the ResponseError to the user\n(2) user selects retry or cancel\n(3) if user selected retry the initialize method is sent again."
-				}
-			],
-			"documentation": "The data type of the ResponseError if the\ninitialize request fails."
-		},
-		{
-			"name": "InitializedParams",
-			"properties": []
-		},
-		{
-			"name": "DidChangeConfigurationParams",
-			"properties": [
-				{
-					"name": "settings",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"documentation": "The actual changed settings"
-				}
-			],
-			"documentation": "The parameters of a change configuration notification."
-		},
-		{
-			"name": "DidChangeConfigurationRegistrationOptions",
-			"properties": [
-				{
-					"name": "section",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "array",
-								"element": {
-									"kind": "base",
-									"name": "string"
-								}
-							}
-						]
-					},
-					"optional": true
-				}
-			]
-		},
-		{
-			"name": "ShowMessageParams",
-			"properties": [
-				{
-					"name": "type",
-					"type": {
-						"kind": "reference",
-						"name": "MessageType"
-					},
-					"documentation": "The message type. See {@link MessageType}"
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The actual message."
-				}
-			],
-			"documentation": "The parameters of a notification message."
-		},
-		{
-			"name": "ShowMessageRequestParams",
-			"properties": [
-				{
-					"name": "type",
-					"type": {
-						"kind": "reference",
-						"name": "MessageType"
-					},
-					"documentation": "The message type. See {@link MessageType}"
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The actual message."
-				},
-				{
-					"name": "actions",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "MessageActionItem"
-						}
-					},
-					"optional": true,
-					"documentation": "The message action items to present."
-				}
-			]
-		},
-		{
-			"name": "MessageActionItem",
-			"properties": [
-				{
-					"name": "title",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A short title like 'Retry', 'Open Log' etc."
-				}
-			]
-		},
-		{
-			"name": "LogMessageParams",
-			"properties": [
-				{
-					"name": "type",
-					"type": {
-						"kind": "reference",
-						"name": "MessageType"
-					},
-					"documentation": "The message type. See {@link MessageType}"
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The actual message."
-				}
-			],
-			"documentation": "The log message parameters."
-		},
-		{
-			"name": "DidOpenTextDocumentParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentItem"
-					},
-					"documentation": "The document that was opened."
-				}
-			],
-			"documentation": "The parameters sent in an open text document notification"
-		},
-		{
-			"name": "DidChangeTextDocumentParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "VersionedTextDocumentIdentifier"
-					},
-					"documentation": "The document that did change. The version number points\nto the version after all provided content changes have\nbeen applied."
-				},
-				{
-					"name": "contentChanges",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextDocumentContentChangeEvent"
-						}
-					},
-					"documentation": "The actual content changes. The content changes describe single state changes\nto the document. So if there are two content changes c1 (at array index 0) and\nc2 (at array index 1) for a document in state S then c1 moves the document from\nS to S' and c2 from S' to S''. So c1 is computed on the state S and c2 is computed\non the state S'.\n\nTo mirror the content of a document using change events use the following approach:\n- start with the same initial content\n- apply the 'textDocument/didChange' notifications in the order you receive them.\n- apply the `TextDocumentContentChangeEvent`s in a single notification in the order\n  you receive them."
-				}
-			],
-			"documentation": "The change text document notification's parameters."
-		},
-		{
-			"name": "TextDocumentChangeRegistrationOptions",
-			"properties": [
-				{
-					"name": "syncKind",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentSyncKind"
-					},
-					"documentation": "How documents are synced to the server."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				}
-			],
-			"documentation": "Describe options to be used when registered for text document change events."
-		},
-		{
-			"name": "DidCloseTextDocumentParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document that was closed."
-				}
-			],
-			"documentation": "The parameters sent in a close text document notification"
-		},
-		{
-			"name": "DidSaveTextDocumentParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document that was saved."
-				},
-				{
-					"name": "text",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "Optional the content when saved. Depends on the includeText value\nwhen the save notification was requested."
-				}
-			],
-			"documentation": "The parameters sent in a save text document notification"
-		},
-		{
-			"name": "TextDocumentSaveRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "SaveOptions"
-				}
-			],
-			"documentation": "Save registration options."
-		},
-		{
-			"name": "WillSaveTextDocumentParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document that will be saved."
-				},
-				{
-					"name": "reason",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentSaveReason"
-					},
-					"documentation": "The 'TextDocumentSaveReason'."
-				}
-			],
-			"documentation": "The parameters sent in a will save text document notification."
-		},
-		{
-			"name": "TextEdit",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range of the text document to be manipulated. To insert\ntext into a document create a range where start === end."
-				},
-				{
-					"name": "newText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The string to be inserted. For delete operations use an\nempty string."
-				}
-			],
-			"documentation": "A text edit applicable to a text document."
-		},
-		{
-			"name": "DidChangeWatchedFilesParams",
-			"properties": [
-				{
-					"name": "changes",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileEvent"
-						}
-					},
-					"documentation": "The actual file events."
-				}
-			],
-			"documentation": "The watched files change notification's parameters."
-		},
-		{
-			"name": "DidChangeWatchedFilesRegistrationOptions",
-			"properties": [
-				{
-					"name": "watchers",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "FileSystemWatcher"
-						}
-					},
-					"documentation": "The watchers to register."
-				}
-			],
-			"documentation": "Describe options to be used when registered for text document change events."
-		},
-		{
-			"name": "PublishDiagnosticsParams",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The URI for which diagnostic information is reported."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"optional": true,
-					"documentation": "Optional the version number of the document the diagnostics are published for.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "diagnostics",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Diagnostic"
-						}
-					},
-					"documentation": "An array of diagnostic information items."
-				}
-			],
-			"documentation": "The publish diagnostic notification's parameters."
-		},
-		{
-			"name": "CompletionParams",
-			"properties": [
-				{
-					"name": "context",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionContext"
-					},
-					"optional": true,
-					"documentation": "The completion context. This is only available it the client specifies\nto send this using the client capability `textDocument.completion.contextSupport === true`"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Completion parameters"
-		},
-		{
-			"name": "CompletionItem",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The label of this completion item.\n\nThe label property is also by default the text that\nis inserted when selecting this completion.\n\nIf label details are provided the label itself should\nbe an unqualified name of the completion item."
-				},
-				{
-					"name": "labelDetails",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionItemLabelDetails"
-					},
-					"optional": true,
-					"documentation": "Additional details for the label\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionItemKind"
-					},
-					"optional": true,
-					"documentation": "The kind of this completion item. Based of the kind\nan icon is chosen by the editor."
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CompletionItemTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Tags for this completion item.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "detail",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A human-readable string with additional information\nabout this item, like type or symbol information."
-				},
-				{
-					"name": "documentation",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "A human-readable string that represents a doc-comment."
-				},
-				{
-					"name": "deprecated",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Indicates if this item is deprecated.\n@deprecated Use `tags` instead.",
-					"deprecated": "Use `tags` instead."
-				},
-				{
-					"name": "preselect",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Select this item when showing.\n\n*Note* that only one completion item can be selected and that the\ntool / client decides which item that is. The rule is that the *first*\nitem of those that match best is selected."
-				},
-				{
-					"name": "sortText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A string that should be used when comparing this item\nwith other items. When `falsy` the {@link CompletionItem.label label}\nis used."
-				},
-				{
-					"name": "filterText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A string that should be used when filtering a set of\ncompletion items. When `falsy` the {@link CompletionItem.label label}\nis used."
-				},
-				{
-					"name": "insertText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A string that should be inserted into a document when selecting\nthis completion. When `falsy` the {@link CompletionItem.label label}\nis used.\n\nThe `insertText` is subject to interpretation by the client side.\nSome tools might not take the string literally. For example\nVS Code when code complete is requested in this example\n`con<cursor position>` and a completion item with an `insertText` of\n`console` is provided it will only insert `sole`. Therefore it is\nrecommended to use `textEdit` instead since it avoids additional client\nside interpretation."
-				},
-				{
-					"name": "insertTextFormat",
-					"type": {
-						"kind": "reference",
-						"name": "InsertTextFormat"
-					},
-					"optional": true,
-					"documentation": "The format of the insert text. The format applies to both the\n`insertText` property and the `newText` property of a provided\n`textEdit`. If omitted defaults to `InsertTextFormat.PlainText`.\n\nPlease note that the insertTextFormat doesn't apply to\n`additionalTextEdits`."
-				},
-				{
-					"name": "insertTextMode",
-					"type": {
-						"kind": "reference",
-						"name": "InsertTextMode"
-					},
-					"optional": true,
-					"documentation": "How whitespace and indentation is handled during completion\nitem insertion. If not provided the clients default value depends on\nthe `textDocument.completion.insertTextMode` client capability.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "textEdit",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "TextEdit"
-							},
-							{
-								"kind": "reference",
-								"name": "InsertReplaceEdit"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "An {@link TextEdit edit} which is applied to a document when selecting\nthis completion. When an edit is provided the value of\n{@link CompletionItem.insertText insertText} is ignored.\n\nMost editors support two different operations when accepting a completion\nitem. One is to insert a completion text and the other is to replace an\nexisting text with a completion text. Since this can usually not be\npredetermined by a server it can report both ranges. Clients need to\nsignal support for `InsertReplaceEdits` via the\n`textDocument.completion.insertReplaceSupport` client capability\nproperty.\n\n*Note 1:* The text edit's range as well as both ranges from an insert\nreplace edit must be a [single line] and they must contain the position\nat which completion has been requested.\n*Note 2:* If an `InsertReplaceEdit` is returned the edit's insert range\nmust be a prefix of the edit's replace range, that means it must be\ncontained and starting at the same position.\n\n@since 3.16.0 additional type `InsertReplaceEdit`",
-					"since": "3.16.0 additional type `InsertReplaceEdit`"
-				},
-				{
-					"name": "textEditText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The edit text used if the completion item is part of a CompletionList and\nCompletionList defines an item default for the text edit range.\n\nClients will only honor this property if they opt into completion list\nitem defaults using the capability `completionList.itemDefaults`.\n\nIf not provided and a list's default range is provided the label\nproperty is used as a text.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "additionalTextEdits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TextEdit"
-						}
-					},
-					"optional": true,
-					"documentation": "An optional array of additional {@link TextEdit text edits} that are applied when\nselecting this completion. Edits must not overlap (including the same insert position)\nwith the main {@link CompletionItem.textEdit edit} nor with themselves.\n\nAdditional text edits should be used to change text unrelated to the current cursor position\n(for example adding an import statement at the top of the file if the completion item will\ninsert an unqualified type)."
-				},
-				{
-					"name": "commitCharacters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "An optional set of characters that when pressed while this completion is active will accept it first and\nthen type that character. *Note* that all commit characters should have `length=1` and that superfluous\ncharacters will be ignored."
-				},
-				{
-					"name": "command",
-					"type": {
-						"kind": "reference",
-						"name": "Command"
-					},
-					"optional": true,
-					"documentation": "An optional {@link Command command} that is executed *after* inserting this completion. *Note* that\nadditional modifications to the current document should be described with the\n{@link CompletionItem.additionalTextEdits additionalTextEdits}-property."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on a completion item between a\n{@link CompletionRequest} and a {@link CompletionResolveRequest}."
-				}
-			],
-			"documentation": "A completion item represents a text snippet that is\nproposed to complete text that is being typed."
-		},
-		{
-			"name": "CompletionList",
-			"properties": [
-				{
-					"name": "isIncomplete",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "This list it not complete. Further typing results in recomputing this list.\n\nRecomputed lists have all their items replaced (not appended) in the\nincomplete completion sessions."
-				},
-				{
-					"name": "itemDefaults",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "commitCharacters",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"optional": true,
-									"documentation": "A default commit character set.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								},
-								{
-									"name": "editRange",
-									"type": {
-										"kind": "or",
-										"items": [
-											{
-												"kind": "reference",
-												"name": "Range"
-											},
-											{
-												"kind": "literal",
-												"value": {
-													"properties": [
-														{
-															"name": "insert",
-															"type": {
-																"kind": "reference",
-																"name": "Range"
-															}
-														},
-														{
-															"name": "replace",
-															"type": {
-																"kind": "reference",
-																"name": "Range"
-															}
-														}
-													]
-												}
-											}
-										]
-									},
-									"optional": true,
-									"documentation": "A default edit range.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								},
-								{
-									"name": "insertTextFormat",
-									"type": {
-										"kind": "reference",
-										"name": "InsertTextFormat"
-									},
-									"optional": true,
-									"documentation": "A default insert text format.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								},
-								{
-									"name": "insertTextMode",
-									"type": {
-										"kind": "reference",
-										"name": "InsertTextMode"
-									},
-									"optional": true,
-									"documentation": "A default insert text mode.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								},
-								{
-									"name": "data",
-									"type": {
-										"kind": "reference",
-										"name": "LSPAny"
-									},
-									"optional": true,
-									"documentation": "A default data value.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "In many cases the items of an actual completion result share the same\nvalue for properties like `commitCharacters` or the range of a text\nedit. A completion list can therefore define item defaults which will\nbe used if a completion item itself doesn't specify the value.\n\nIf a completion list specifies a default value and a completion item\nalso specifies a corresponding value the one from the item is used.\n\nServers are only allowed to return default values if the client\nsignals support for this via the `completionList.itemDefaults`\ncapability.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "items",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CompletionItem"
-						}
-					},
-					"documentation": "The completion items."
-				}
-			],
-			"documentation": "Represents a collection of {@link CompletionItem completion items} to be presented\nin the editor."
-		},
-		{
-			"name": "CompletionRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "CompletionOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link CompletionRequest}."
-		},
-		{
-			"name": "HoverParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "Parameters for a {@link HoverRequest}."
-		},
-		{
-			"name": "Hover",
-			"properties": [
-				{
-					"name": "contents",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkedString"
-							},
-							{
-								"kind": "array",
-								"element": {
-									"kind": "reference",
-									"name": "MarkedString"
-								}
-							}
-						]
-					},
-					"documentation": "The hover's content"
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"optional": true,
-					"documentation": "An optional range inside the text document that is used to\nvisualize the hover, e.g. by changing the background color."
-				}
-			],
-			"documentation": "The result of a hover request."
-		},
-		{
-			"name": "HoverRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "HoverOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link HoverRequest}."
-		},
-		{
-			"name": "SignatureHelpParams",
-			"properties": [
-				{
-					"name": "context",
-					"type": {
-						"kind": "reference",
-						"name": "SignatureHelpContext"
-					},
-					"optional": true,
-					"documentation": "The signature help context. This is only available if the client specifies\nto send this using the client capability `textDocument.signatureHelp.contextSupport === true`\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "Parameters for a {@link SignatureHelpRequest}."
-		},
-		{
-			"name": "SignatureHelp",
-			"properties": [
-				{
-					"name": "signatures",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SignatureInformation"
-						}
-					},
-					"documentation": "One or more signatures."
-				},
-				{
-					"name": "activeSignature",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The active signature. If omitted or the value lies outside the\nrange of `signatures` the value defaults to zero or is ignored if\nthe `SignatureHelp` has no signatures.\n\nWhenever possible implementors should make an active decision about\nthe active signature and shouldn't rely on a default value.\n\nIn future version of the protocol this property might become\nmandatory to better express this."
-				},
-				{
-					"name": "activeParameter",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The active parameter of the active signature. If omitted or the value\nlies outside the range of `signatures[activeSignature].parameters`\ndefaults to 0 if the active signature has parameters. If\nthe active signature has no parameters it is ignored.\nIn future version of the protocol this property might become\nmandatory to better express the active parameter if the\nactive signature does have any."
-				}
-			],
-			"documentation": "Signature help represents the signature of something\ncallable. There can be multiple signature but only one\nactive and only one active parameter."
-		},
-		{
-			"name": "SignatureHelpRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "SignatureHelpOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link SignatureHelpRequest}."
-		},
-		{
-			"name": "DefinitionParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link DefinitionRequest}."
-		},
-		{
-			"name": "DefinitionRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DefinitionOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DefinitionRequest}."
-		},
-		{
-			"name": "ReferenceParams",
-			"properties": [
-				{
-					"name": "context",
-					"type": {
-						"kind": "reference",
-						"name": "ReferenceContext"
-					}
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link ReferencesRequest}."
-		},
-		{
-			"name": "ReferenceRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "ReferenceOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link ReferencesRequest}."
-		},
-		{
-			"name": "DocumentHighlightParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link DocumentHighlightRequest}."
-		},
-		{
-			"name": "DocumentHighlight",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range this highlight applies to."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentHighlightKind"
-					},
-					"optional": true,
-					"documentation": "The highlight kind, default is {@link DocumentHighlightKind.Text text}."
-				}
-			],
-			"documentation": "A document highlight is a range inside a text document which deserves\nspecial attention. Usually a document highlight is visualized by changing\nthe background color of its range."
-		},
-		{
-			"name": "DocumentHighlightRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentHighlightOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentHighlightRequest}."
-		},
-		{
-			"name": "DocumentSymbolParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "Parameters for a {@link DocumentSymbolRequest}."
-		},
-		{
-			"name": "SymbolInformation",
-			"properties": [
-				{
-					"name": "deprecated",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Indicates if this symbol is deprecated.\n\n@deprecated Use tags instead",
-					"deprecated": "Use tags instead"
-				},
-				{
-					"name": "location",
-					"type": {
-						"kind": "reference",
-						"name": "Location"
-					},
-					"documentation": "The location of this symbol. The location's range is used by a tool\nto reveal the location in the editor. If the symbol is selected in the\ntool the range's start information is used to position the cursor. So\nthe range usually spans more than the actual symbol's name and does\nnormally include things like visibility modifiers.\n\nThe range doesn't have to denote a node range in the sense of an abstract\nsyntax tree. It can therefore not be used to re-construct a hierarchy of\nthe symbols."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "BaseSymbolInformation"
-				}
-			],
-			"documentation": "Represents information about programming constructs like variables, classes,\ninterfaces etc."
-		},
-		{
-			"name": "DocumentSymbol",
-			"properties": [
-				{
-					"name": "name",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of this symbol. Will be displayed in the user interface and therefore must not be\nan empty string or a string only consisting of white spaces."
-				},
-				{
-					"name": "detail",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "More detail for this symbol, e.g the signature of a function."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "SymbolKind"
-					},
-					"documentation": "The kind of this symbol."
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Tags for this document symbol.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "deprecated",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Indicates if this symbol is deprecated.\n\n@deprecated Use tags instead",
-					"deprecated": "Use tags instead"
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to determine if the clients cursor is\ninside the symbol to reveal in the symbol in the UI."
-				},
-				{
-					"name": "selectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.\nMust be contained by the `range`."
-				},
-				{
-					"name": "children",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DocumentSymbol"
-						}
-					},
-					"optional": true,
-					"documentation": "Children of this symbol, e.g. properties of a class."
-				}
-			],
-			"documentation": "Represents programming constructs like variables, classes, interfaces etc.\nthat appear in a document. Document symbols can be hierarchical and they\nhave two ranges: one that encloses its definition and one that points to\nits most interesting range, e.g. the range of an identifier."
-		},
-		{
-			"name": "DocumentSymbolRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentSymbolOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentSymbolRequest}."
-		},
-		{
-			"name": "CodeActionParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document in which the command was invoked."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range for which the command was invoked."
-				},
-				{
-					"name": "context",
-					"type": {
-						"kind": "reference",
-						"name": "CodeActionContext"
-					},
-					"documentation": "Context carrying additional information."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameters of a {@link CodeActionRequest}."
-		},
-		{
-			"name": "Command",
-			"properties": [
-				{
-					"name": "title",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "Title of the command, like `save`."
-				},
-				{
-					"name": "command",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The identifier of the actual command handler."
-				},
-				{
-					"name": "arguments",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "LSPAny"
-						}
-					},
-					"optional": true,
-					"documentation": "Arguments that the command handler should be\ninvoked with."
-				}
-			],
-			"documentation": "Represents a reference to a command. Provides a title which\nwill be used to represent a command in the UI and, optionally,\nan array of arguments which will be passed to the command handler\nfunction when invoked."
-		},
-		{
-			"name": "CodeAction",
-			"properties": [
-				{
-					"name": "title",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A short, human-readable, title for this code action."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "CodeActionKind"
-					},
-					"optional": true,
-					"documentation": "The kind of the code action.\n\nUsed to filter code actions."
-				},
-				{
-					"name": "diagnostics",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Diagnostic"
-						}
-					},
-					"optional": true,
-					"documentation": "The diagnostics that this code action resolves."
-				},
-				{
-					"name": "isPreferred",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Marks this as a preferred action. Preferred actions are used by the `auto fix` command and can be targeted\nby keybindings.\n\nA quick fix should be marked preferred if it properly addresses the underlying error.\nA refactoring should be marked preferred if it is the most reasonable choice of actions to take.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "disabled",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "reason",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "Human readable description of why the code action is currently disabled.\n\nThis is displayed in the code actions UI."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Marks that the code action cannot currently be applied.\n\nClients should follow the following guidelines regarding disabled code actions:\n\n  - Disabled code actions are not shown in automatic [lightbulbs](https://code.visualstudio.com/docs/editor/editingevolved#_code-action)\n    code action menus.\n\n  - Disabled actions are shown as faded out in the code action menu when the user requests a more specific type\n    of code action, such as refactorings.\n\n  - If the user has a [keybinding](https://code.visualstudio.com/docs/editor/refactoring#_keybindings-for-code-actions)\n    that auto applies a code action and only disabled code actions are returned, the client should show the user an\n    error message with `reason` in the editor.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "edit",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					"optional": true,
-					"documentation": "The workspace edit this code action performs."
-				},
-				{
-					"name": "command",
-					"type": {
-						"kind": "reference",
-						"name": "Command"
-					},
-					"optional": true,
-					"documentation": "A command this code action executes. If a code action\nprovides an edit and a command, first the edit is\nexecuted and then the command."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on a code action between\na `textDocument/codeAction` and a `codeAction/resolve` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "A code action represents a change that can be performed in code, e.g. to fix a problem or\nto refactor code.\n\nA CodeAction must set either `edit` and/or a `command`. If both are supplied, the `edit` is applied first, then the `command` is executed."
-		},
-		{
-			"name": "CodeActionRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "CodeActionOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link CodeActionRequest}."
-		},
-		{
-			"name": "WorkspaceSymbolParams",
-			"properties": [
-				{
-					"name": "query",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A query string to filter symbols by. Clients may send an empty\nstring here to request all symbols."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameters of a {@link WorkspaceSymbolRequest}."
-		},
-		{
-			"name": "WorkspaceSymbol",
-			"properties": [
-				{
-					"name": "location",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "Location"
-							},
-							{
-								"kind": "literal",
-								"value": {
-									"properties": [
-										{
-											"name": "uri",
-											"type": {
-												"kind": "base",
-												"name": "DocumentUri"
-											}
-										}
-									]
-								}
-							}
-						]
-					},
-					"documentation": "The location of the symbol. Whether a server is allowed to\nreturn a location without a range depends on the client\ncapability `workspace.symbol.resolveSupport`.\n\nSee SymbolInformation#location for more details."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on a workspace symbol between a\nworkspace symbol request and a workspace symbol resolve request."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "BaseSymbolInformation"
-				}
-			],
-			"documentation": "A special workspace symbol that supports locations without a range.\n\nSee also SymbolInformation.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceSymbolRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "WorkspaceSymbolOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link WorkspaceSymbolRequest}."
-		},
-		{
-			"name": "CodeLensParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to request code lens for."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameters of a {@link CodeLensRequest}."
-		},
-		{
-			"name": "CodeLens",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range in which this code lens is valid. Should only span a single line."
-				},
-				{
-					"name": "command",
-					"type": {
-						"kind": "reference",
-						"name": "Command"
-					},
-					"optional": true,
-					"documentation": "The command this code lens represents."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on a code lens item between\na {@link CodeLensRequest} and a [CodeLensResolveRequest]\n(#CodeLensResolveRequest)"
-				}
-			],
-			"documentation": "A code lens represents a {@link Command command} that should be shown along with\nsource text, like the number of references, a way to run tests, etc.\n\nA code lens is _unresolved_ when no command is associated to it. For performance\nreasons the creation of a code lens and resolving should be done in two stages."
-		},
-		{
-			"name": "CodeLensRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "CodeLensOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link CodeLensRequest}."
-		},
-		{
-			"name": "DocumentLinkParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to provide document links for."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				},
-				{
-					"kind": "reference",
-					"name": "PartialResultParams"
-				}
-			],
-			"documentation": "The parameters of a {@link DocumentLinkRequest}."
-		},
-		{
-			"name": "DocumentLink",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range this link applies to."
-				},
-				{
-					"name": "target",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The uri this link points to. If missing a resolve request is sent later."
-				},
-				{
-					"name": "tooltip",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The tooltip text when you hover over this link.\n\nIf a tooltip is provided, is will be displayed in a string that includes instructions on how to\ntrigger the link, such as `{0} (ctrl + click)`. The specific instructions vary depending on OS,\nuser settings, and localization.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved on a document link between a\nDocumentLinkRequest and a DocumentLinkResolveRequest."
-				}
-			],
-			"documentation": "A document link is a range in a text document that links to an internal or external resource, like another\ntext document or a web site."
-		},
-		{
-			"name": "DocumentLinkRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentLinkOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentLinkRequest}."
-		},
-		{
-			"name": "DocumentFormattingParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to format."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "FormattingOptions"
-					},
-					"documentation": "The format options."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameters of a {@link DocumentFormattingRequest}."
-		},
-		{
-			"name": "DocumentFormattingRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentFormattingOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentFormattingRequest}."
-		},
-		{
-			"name": "DocumentRangeFormattingParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to format."
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range to format"
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "FormattingOptions"
-					},
-					"documentation": "The format options"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameters of a {@link DocumentRangeFormattingRequest}."
-		},
-		{
-			"name": "DocumentRangeFormattingRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentRangeFormattingOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentRangeFormattingRequest}."
-		},
-		{
-			"name": "DocumentOnTypeFormattingParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to format."
-				},
-				{
-					"name": "position",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The position around which the on type formatting should happen.\nThis is not necessarily the exact position where the character denoted\nby the property `ch` got typed."
-				},
-				{
-					"name": "ch",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The character that has been typed that triggered the formatting\non type request. That is not necessarily the last character that\ngot inserted into the document since the client could auto insert\ncharacters as well (e.g. like automatic brace completion)."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "FormattingOptions"
-					},
-					"documentation": "The formatting options."
-				}
-			],
-			"documentation": "The parameters of a {@link DocumentOnTypeFormattingRequest}."
-		},
-		{
-			"name": "DocumentOnTypeFormattingRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "DocumentOnTypeFormattingOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link DocumentOnTypeFormattingRequest}."
-		},
-		{
-			"name": "RenameParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The document to rename."
-				},
-				{
-					"name": "position",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The position at which this request was sent."
-				},
-				{
-					"name": "newName",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The new name of the symbol. If the given name is not valid the\nrequest must return a {@link ResponseError} with an\nappropriate message set."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameters of a {@link RenameRequest}."
-		},
-		{
-			"name": "RenameRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentRegistrationOptions"
-				},
-				{
-					"kind": "reference",
-					"name": "RenameOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link RenameRequest}."
-		},
-		{
-			"name": "PrepareRenameParams",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentPositionParams"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			]
-		},
-		{
-			"name": "ExecuteCommandParams",
-			"properties": [
-				{
-					"name": "command",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The identifier of the actual command handler."
-				},
-				{
-					"name": "arguments",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "LSPAny"
-						}
-					},
-					"optional": true,
-					"documentation": "Arguments that the command should be invoked with."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The parameters of a {@link ExecuteCommandRequest}."
-		},
-		{
-			"name": "ExecuteCommandRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "ExecuteCommandOptions"
-				}
-			],
-			"documentation": "Registration options for a {@link ExecuteCommandRequest}."
-		},
-		{
-			"name": "ApplyWorkspaceEditParams",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional label of the workspace edit. This label is\npresented in the user interface for example on an undo\nstack to undo the workspace edit."
-				},
-				{
-					"name": "edit",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceEdit"
-					},
-					"documentation": "The edits to apply."
-				}
-			],
-			"documentation": "The parameters passed via a apply workspace edit request."
-		},
-		{
-			"name": "ApplyWorkspaceEditResult",
-			"properties": [
-				{
-					"name": "applied",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "Indicates whether the edit was applied or not."
-				},
-				{
-					"name": "failureReason",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional textual description for why the edit was not applied.\nThis may be used by the server for diagnostic logging or to provide\na suitable error for a request that triggered the edit."
-				},
-				{
-					"name": "failedChange",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "Depending on the client's failure handling strategy `failedChange` might\ncontain the index of the change that failed. This property is only available\nif the client signals a `failureHandlingStrategy` in its client capabilities."
-				}
-			],
-			"documentation": "The result returned from the apply workspace edit request.\n\n@since 3.17 renamed from ApplyWorkspaceEditResponse",
-			"since": "3.17 renamed from ApplyWorkspaceEditResponse"
-		},
-		{
-			"name": "WorkDoneProgressBegin",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "begin"
-					}
-				},
-				{
-					"name": "title",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "Mandatory title of the progress operation. Used to briefly inform about\nthe kind of operation being performed.\n\nExamples: \"Indexing\" or \"Linking dependencies\"."
-				},
-				{
-					"name": "cancellable",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Controls if a cancel button should show to allow the user to cancel the\nlong running operation. Clients that don't support cancellation are allowed\nto ignore the setting."
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "Optional, more detailed associated progress message. Contains\ncomplementary information to the `title`.\n\nExamples: \"3/25 files\", \"project/src/module2\", \"node_modules/some_dep\".\nIf unset, the previous progress message (if any) is still valid."
-				},
-				{
-					"name": "percentage",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
-				}
-			]
-		},
-		{
-			"name": "WorkDoneProgressReport",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "report"
-					}
-				},
-				{
-					"name": "cancellable",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Controls enablement state of a cancel button.\n\nClients that don't support cancellation or don't support controlling the button's\nenablement state are allowed to ignore the property."
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "Optional, more detailed associated progress message. Contains\ncomplementary information to the `title`.\n\nExamples: \"3/25 files\", \"project/src/module2\", \"node_modules/some_dep\".\nIf unset, the previous progress message (if any) is still valid."
-				},
-				{
-					"name": "percentage",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]"
-				}
-			]
-		},
-		{
-			"name": "WorkDoneProgressEnd",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "end"
-					}
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "Optional, a final message indicating to for example indicate the outcome\nof the operation."
-				}
-			]
-		},
-		{
-			"name": "SetTraceParams",
-			"properties": [
-				{
-					"name": "value",
-					"type": {
-						"kind": "reference",
-						"name": "TraceValues"
-					}
-				}
-			]
-		},
-		{
-			"name": "LogTraceParams",
-			"properties": [
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					}
-				},
-				{
-					"name": "verbose",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true
-				}
-			]
-		},
-		{
-			"name": "CancelParams",
-			"properties": [
-				{
-					"name": "id",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "string"
-							}
-						]
-					},
-					"documentation": "The request id to cancel."
-				}
-			]
-		},
-		{
-			"name": "ProgressParams",
-			"properties": [
-				{
-					"name": "token",
-					"type": {
-						"kind": "reference",
-						"name": "ProgressToken"
-					},
-					"documentation": "The progress token provided by the client or server."
-				},
-				{
-					"name": "value",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"documentation": "The progress data."
-				}
-			]
-		},
-		{
-			"name": "TextDocumentPositionParams",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentIdentifier"
-					},
-					"documentation": "The text document."
-				},
-				{
-					"name": "position",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The position inside the text document."
-				}
-			],
-			"documentation": "A parameter literal used in requests to pass a text document and a position inside that\ndocument."
-		},
-		{
-			"name": "WorkDoneProgressParams",
-			"properties": [
-				{
-					"name": "workDoneToken",
-					"type": {
-						"kind": "reference",
-						"name": "ProgressToken"
-					},
-					"optional": true,
-					"documentation": "An optional token that a server can use to report work done progress."
-				}
-			]
-		},
-		{
-			"name": "PartialResultParams",
-			"properties": [
-				{
-					"name": "partialResultToken",
-					"type": {
-						"kind": "reference",
-						"name": "ProgressToken"
-					},
-					"optional": true,
-					"documentation": "An optional token that a server can use to report partial results (e.g. streaming) to\nthe client."
-				}
-			]
-		},
-		{
-			"name": "LocationLink",
-			"properties": [
-				{
-					"name": "originSelectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"optional": true,
-					"documentation": "Span of the origin of this link.\n\nUsed as the underlined span for mouse interaction. Defaults to the word range at\nthe definition position."
-				},
-				{
-					"name": "targetUri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The target resource identifier of this link."
-				},
-				{
-					"name": "targetRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The full target range of this link. If the target for example is a symbol then target range is the\nrange enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to highlight the range in the editor."
-				},
-				{
-					"name": "targetSelectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range that should be selected and revealed when this link is being followed, e.g the name of a function.\nMust be contained by the `targetRange`. See also `DocumentSymbol#range`"
-				}
-			],
-			"documentation": "Represents the connection of two locations. Provides additional metadata over normal {@link Location locations},\nincluding an origin range."
-		},
-		{
-			"name": "Range",
-			"properties": [
-				{
-					"name": "start",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The range's start position."
-				},
-				{
-					"name": "end",
-					"type": {
-						"kind": "reference",
-						"name": "Position"
-					},
-					"documentation": "The range's end position."
-				}
-			],
-			"documentation": "A range in a text document expressed as (zero-based) start and end positions.\n\nIf you want to specify a range that contains a line including the line ending\ncharacter(s) then use an end position denoting the start of the next line.\nFor example:\n```ts\n{\n    start: { line: 5, character: 23 }\n    end : { line 6, character : 0 }\n}\n```"
-		},
-		{
-			"name": "ImplementationOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "StaticRegistrationOptions",
-			"properties": [
-				{
-					"name": "id",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The id used to register the request. The id can be used to deregister\nthe request again. See also Registration#id."
-				}
-			],
-			"documentation": "Static registration options to be returned in the initialize\nrequest."
-		},
-		{
-			"name": "TypeDefinitionOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "WorkspaceFoldersChangeEvent",
-			"properties": [
-				{
-					"name": "added",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceFolder"
-						}
-					},
-					"documentation": "The array of added workspace folders"
-				},
-				{
-					"name": "removed",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "WorkspaceFolder"
-						}
-					},
-					"documentation": "The array of the removed workspace folders"
-				}
-			],
-			"documentation": "The workspace folder change event."
-		},
-		{
-			"name": "ConfigurationItem",
-			"properties": [
-				{
-					"name": "scopeUri",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The scope to get the configuration section for."
-				},
-				{
-					"name": "section",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The configuration section asked for."
-				}
-			]
-		},
-		{
-			"name": "TextDocumentIdentifier",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The text document's uri."
-				}
-			],
-			"documentation": "A literal to identify a text document in the client."
-		},
-		{
-			"name": "Color",
-			"properties": [
-				{
-					"name": "red",
-					"type": {
-						"kind": "base",
-						"name": "decimal"
-					},
-					"documentation": "The red component of this color in the range [0-1]."
-				},
-				{
-					"name": "green",
-					"type": {
-						"kind": "base",
-						"name": "decimal"
-					},
-					"documentation": "The green component of this color in the range [0-1]."
-				},
-				{
-					"name": "blue",
-					"type": {
-						"kind": "base",
-						"name": "decimal"
-					},
-					"documentation": "The blue component of this color in the range [0-1]."
-				},
-				{
-					"name": "alpha",
-					"type": {
-						"kind": "base",
-						"name": "decimal"
-					},
-					"documentation": "The alpha component of this color in the range [0-1]."
-				}
-			],
-			"documentation": "Represents a color in RGBA space."
-		},
-		{
-			"name": "DocumentColorOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "FoldingRangeOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "DeclarationOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "Position",
-			"properties": [
-				{
-					"name": "line",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "Line position in a document (zero-based).\n\nIf a line number is greater than the number of lines in a document, it defaults back to the number of lines in the document.\nIf a line number is negative, it defaults to 0."
-				},
-				{
-					"name": "character",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "Character offset on a line in a document (zero-based).\n\nThe meaning of this offset is determined by the negotiated\n`PositionEncodingKind`.\n\nIf the character value is greater than the line length it defaults back to the\nline length."
-				}
-			],
-			"documentation": "Position in a text document expressed as zero-based line and character\noffset. Prior to 3.17 the offsets were always based on a UTF-16 string\nrepresentation. So a string of the form `a𐐀b` the character offset of the\ncharacter `a` is 0, the character offset of `𐐀` is 1 and the character\noffset of b is 3 since `𐐀` is represented using two code units in UTF-16.\nSince 3.17 clients and servers can agree on a different string encoding\nrepresentation (e.g. UTF-8). The client announces it's supported encoding\nvia the client capability [`general.positionEncodings`](#clientCapabilities).\nThe value is an array of position encodings the client supports, with\ndecreasing preference (e.g. the encoding at index `0` is the most preferred\none). To stay backwards compatible the only mandatory encoding is UTF-16\nrepresented via the string `utf-16`. The server can pick one of the\nencodings offered by the client and signals that encoding back to the\nclient via the initialize result's property\n[`capabilities.positionEncoding`](#serverCapabilities). If the string value\n`utf-16` is missing from the client's capability `general.positionEncodings`\nservers can safely assume that the client supports UTF-16. If the server\nomits the position encoding in its initialize result the encoding defaults\nto the string value `utf-16`. Implementation considerations: since the\nconversion from one encoding into another requires the content of the\nfile / line the conversion is best done where the file is read which is\nusually on the server side.\n\nPositions are line end character agnostic. So you can not specify a position\nthat denotes `\\r|\\n` or `\\n|` where `|` represents the character offset.\n\n@since 3.17.0 - support for negotiated position encoding.",
-			"since": "3.17.0 - support for negotiated position encoding."
-		},
-		{
-			"name": "SelectionRangeOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "CallHierarchyOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Call hierarchy options used during static registration.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensOptions",
-			"properties": [
-				{
-					"name": "legend",
-					"type": {
-						"kind": "reference",
-						"name": "SemanticTokensLegend"
-					},
-					"documentation": "The legend used by the server"
-				},
-				{
-					"name": "range",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "literal",
-								"value": {
-									"properties": []
-								}
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "Server supports providing semantic tokens for a specific range\nof a document."
-				},
-				{
-					"name": "full",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "literal",
-								"value": {
-									"properties": [
-										{
-											"name": "delta",
-											"type": {
-												"kind": "base",
-												"name": "boolean"
-											},
-											"optional": true,
-											"documentation": "The server supports deltas for full documents."
-										}
-									]
-								}
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "Server supports providing semantic tokens for a full document."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensEdit",
-			"properties": [
-				{
-					"name": "start",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The start offset of the edit."
-				},
-				{
-					"name": "deleteCount",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The count of elements to remove."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "uinteger"
-						}
-					},
-					"optional": true,
-					"documentation": "The elements to insert."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "LinkedEditingRangeOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "FileCreate",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A file:// URI for the location of the file/folder being created."
-				}
-			],
-			"documentation": "Represents information on a file/folder create.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "TextDocumentEdit",
-			"properties": [
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "OptionalVersionedTextDocumentIdentifier"
-					},
-					"documentation": "The text document to change."
-				},
-				{
-					"name": "edits",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "TextEdit"
-								},
-								{
-									"kind": "reference",
-									"name": "AnnotatedTextEdit"
-								}
-							]
-						}
-					},
-					"documentation": "The edits to be applied.\n\n@since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a\nclient capability.",
-					"since": "3.16.0 - support for AnnotatedTextEdit. This is guarded using a\nclient capability."
-				}
-			],
-			"documentation": "Describes textual changes on a text document. A TextDocumentEdit describes all changes\non a document version Si and after they are applied move the document to version Si+1.\nSo the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any\nkind of ordering. However the edits must be non overlapping."
-		},
-		{
-			"name": "CreateFile",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "create"
-					},
-					"documentation": "A create"
-				},
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The resource to create."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "CreateFileOptions"
-					},
-					"optional": true,
-					"documentation": "Additional options"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "ResourceOperation"
-				}
-			],
-			"documentation": "Create file operation."
-		},
-		{
-			"name": "RenameFile",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "rename"
-					},
-					"documentation": "A rename"
-				},
-				{
-					"name": "oldUri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The old (existing) location."
-				},
-				{
-					"name": "newUri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The new location."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "RenameFileOptions"
-					},
-					"optional": true,
-					"documentation": "Rename options."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "ResourceOperation"
-				}
-			],
-			"documentation": "Rename file operation"
-		},
-		{
-			"name": "DeleteFile",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "delete"
-					},
-					"documentation": "A delete"
-				},
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The file to delete."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "DeleteFileOptions"
-					},
-					"optional": true,
-					"documentation": "Delete options."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "ResourceOperation"
-				}
-			],
-			"documentation": "Delete file operation"
-		},
-		{
-			"name": "ChangeAnnotation",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A human-readable string describing the actual change. The string\nis rendered prominent in the user interface."
-				},
-				{
-					"name": "needsConfirmation",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "A flag which indicates that user confirmation is needed\nbefore applying the change."
-				},
-				{
-					"name": "description",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A human-readable string which is rendered less prominent in\nthe user interface."
-				}
-			],
-			"documentation": "Additional information that describes document changes.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "FileOperationFilter",
-			"properties": [
-				{
-					"name": "scheme",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A Uri scheme like `file` or `untitled`."
-				},
-				{
-					"name": "pattern",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationPattern"
-					},
-					"documentation": "The actual file operation pattern."
-				}
-			],
-			"documentation": "A filter to describe in which file operation requests or notifications\nthe server is interested in receiving.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "FileRename",
-			"properties": [
-				{
-					"name": "oldUri",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A file:// URI for the original location of the file/folder being renamed."
-				},
-				{
-					"name": "newUri",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A file:// URI for the new location of the file/folder being renamed."
-				}
-			],
-			"documentation": "Represents information on a file/folder rename.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "FileDelete",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A file:// URI for the location of the file/folder being deleted."
-				}
-			],
-			"documentation": "Represents information on a file/folder delete.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MonikerOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			]
-		},
-		{
-			"name": "TypeHierarchyOptions",
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"properties": [],
-			"documentation": "Type hierarchy options used during static registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueContext",
-			"properties": [
-				{
-					"name": "frameId",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"documentation": "The stack frame (as a DAP Id) where the execution has stopped."
-				},
-				{
-					"name": "stoppedLocation",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range where execution has stopped.\nTypically the end position of the range denotes the line where the inline values are shown."
-				}
-			],
-			"documentation": "@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueText",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range for which the inline value applies."
-				},
-				{
-					"name": "text",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The text of the inline value."
-				}
-			],
-			"documentation": "Provide inline value as text.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueVariableLookup",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range for which the inline value applies.\nThe range is used to extract the variable name from the underlying document."
-				},
-				{
-					"name": "variableName",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "If specified the name of the variable to look up."
-				},
-				{
-					"name": "caseSensitiveLookup",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "How to perform the lookup."
-				}
-			],
-			"documentation": "Provide inline value through a variable lookup.\nIf only a range is specified, the variable name will be extracted from the underlying document.\nAn optional variable name can be used to override the extracted name.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueEvaluatableExpression",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The document range for which the inline value applies.\nThe range is used to extract the evaluatable expression from the underlying document."
-				},
-				{
-					"name": "expression",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "If specified the expression overrides the extracted expression."
-				}
-			],
-			"documentation": "Provide an inline value through an expression evaluation.\nIf only a range is specified, the expression will be extracted from the underlying document.\nAn optional expression can be used to override the extracted expression.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueOptions",
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"properties": [],
-			"documentation": "Inline value options used during static registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHintLabelPart",
-			"properties": [
-				{
-					"name": "value",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The value of this label part."
-				},
-				{
-					"name": "tooltip",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The tooltip text when you hover over this label part. Depending on\nthe client capability `inlayHint.resolveSupport` clients might resolve\nthis property late using the resolve request."
-				},
-				{
-					"name": "location",
-					"type": {
-						"kind": "reference",
-						"name": "Location"
-					},
-					"optional": true,
-					"documentation": "An optional source code location that represents this\nlabel part.\n\nThe editor will use this location for the hover and for code navigation\nfeatures: This part will become a clickable link that resolves to the\ndefinition of the symbol at the given location (not necessarily the\nlocation itself), it shows the hover that shows at the given location,\nand it shows a context menu with further code navigation commands.\n\nDepending on the client capability `inlayHint.resolveSupport` clients\nmight resolve this property late using the resolve request."
-				},
-				{
-					"name": "command",
-					"type": {
-						"kind": "reference",
-						"name": "Command"
-					},
-					"optional": true,
-					"documentation": "An optional command for this label part.\n\nDepending on the client capability `inlayHint.resolveSupport` clients\nmight resolve this property late using the resolve request."
-				}
-			],
-			"documentation": "An inlay hint label part allows for interactive and composite labels\nof inlay hints.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "MarkupContent",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "MarkupKind"
-					},
-					"documentation": "The type of the Markup"
-				},
-				{
-					"name": "value",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The content itself"
-				}
-			],
-			"documentation": "A `MarkupContent` literal represents a string value which content is interpreted base on its\nkind flag. Currently the protocol supports `plaintext` and `markdown` as markup kinds.\n\nIf the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues.\nSee https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting\n\nHere is an example how such a string can be constructed using JavaScript / TypeScript:\n```ts\nlet markdown: MarkdownContent = {\n kind: MarkupKind.Markdown,\n value: [\n   '# Header',\n   'Some text',\n   '```typescript',\n   'someCode();',\n   '```'\n ].join('\\n')\n};\n```\n\n*Please Note* that clients might sanitize the return markdown. A client could decide to\nremove HTML from the markdown to avoid script execution."
-		},
-		{
-			"name": "InlayHintOptions",
-			"properties": [
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The server provides support to resolve additional\ninformation for an inlay hint item."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Inlay hint options used during static registration.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "RelatedFullDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "relatedDocuments",
-					"type": {
-						"kind": "map",
-						"key": {
-							"kind": "base",
-							"name": "DocumentUri"
-						},
-						"value": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "FullDocumentDiagnosticReport"
-								},
-								{
-									"kind": "reference",
-									"name": "UnchangedDocumentDiagnosticReport"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Diagnostics of related documents. This information is useful\nin programming languages where code in a file A can generate\ndiagnostics in a file B which A depends on. An example of\nsuch a language is C/C++ where marco definitions in a file\na.cpp and result in errors in a header file b.hpp.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "FullDocumentDiagnosticReport"
-				}
-			],
-			"documentation": "A full diagnostic report with a set of related documents.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "RelatedUnchangedDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "relatedDocuments",
-					"type": {
-						"kind": "map",
-						"key": {
-							"kind": "base",
-							"name": "DocumentUri"
-						},
-						"value": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "reference",
-									"name": "FullDocumentDiagnosticReport"
-								},
-								{
-									"kind": "reference",
-									"name": "UnchangedDocumentDiagnosticReport"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Diagnostics of related documents. This information is useful\nin programming languages where code in a file A can generate\ndiagnostics in a file B which A depends on. An example of\nsuch a language is C/C++ where marco definitions in a file\na.cpp and result in errors in a header file b.hpp.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "UnchangedDocumentDiagnosticReport"
-				}
-			],
-			"documentation": "An unchanged diagnostic report with a set of related documents.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "FullDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "full"
-					},
-					"documentation": "A full document diagnostic report."
-				},
-				{
-					"name": "resultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional result id. If provided it will\nbe sent on the next diagnostic request for the\nsame document."
-				},
-				{
-					"name": "items",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Diagnostic"
-						}
-					},
-					"documentation": "The actual items."
-				}
-			],
-			"documentation": "A diagnostic report with a full set of problems.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "UnchangedDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "stringLiteral",
-						"value": "unchanged"
-					},
-					"documentation": "A document diagnostic report indicating\nno changes to the last result. A server can\nonly return `unchanged` if result ids are\nprovided."
-				},
-				{
-					"name": "resultId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A result id which will be sent on the next\ndiagnostic request for the same document."
-				}
-			],
-			"documentation": "A diagnostic report indicating that the last returned\nreport is still accurate.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DiagnosticOptions",
-			"properties": [
-				{
-					"name": "identifier",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional identifier under which the diagnostics are\nmanaged by the client."
-				},
-				{
-					"name": "interFileDependencies",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "Whether the language has inter file dependencies meaning that\nediting code in one file can result in a different diagnostic\nset in another file. Inter file dependencies are common for\nmost programming languages and typically uncommon for linters."
-				},
-				{
-					"name": "workspaceDiagnostics",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "The server provides support for workspace diagnostics as well."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Diagnostic options.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "PreviousResultId",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The URI for which the client knowns a\nresult id."
-				},
-				{
-					"name": "value",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The value of the previous result id."
-				}
-			],
-			"documentation": "A previous result id in a workspace pull request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocument",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "The notebook document's uri."
-				},
-				{
-					"name": "notebookType",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The type of the notebook."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"documentation": "The version number of this document (it will increase after each\nchange, including undo/redo)."
-				},
-				{
-					"name": "metadata",
-					"type": {
-						"kind": "reference",
-						"name": "LSPObject"
-					},
-					"optional": true,
-					"documentation": "Additional metadata stored with the notebook\ndocument.\n\nNote: should always be an object literal (e.g. LSPObject)"
-				},
-				{
-					"name": "cells",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "NotebookCell"
-						}
-					},
-					"documentation": "The cells of a notebook."
-				}
-			],
-			"documentation": "A notebook document.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TextDocumentItem",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The text document's uri."
-				},
-				{
-					"name": "languageId",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The text document's language identifier."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"documentation": "The version number of this document (it will increase after each\nchange, including undo/redo)."
-				},
-				{
-					"name": "text",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The content of the opened text document."
-				}
-			],
-			"documentation": "An item to transfer a text document from the client to the\nserver."
-		},
-		{
-			"name": "VersionedNotebookDocumentIdentifier",
-			"properties": [
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"documentation": "The version number of this notebook document."
-				},
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "The notebook document's uri."
-				}
-			],
-			"documentation": "A versioned notebook document identifier.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocumentChangeEvent",
-			"properties": [
-				{
-					"name": "metadata",
-					"type": {
-						"kind": "reference",
-						"name": "LSPObject"
-					},
-					"optional": true,
-					"documentation": "The changed meta data if any.\n\nNote: should always be an object literal (e.g. LSPObject)"
-				},
-				{
-					"name": "cells",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "structure",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "array",
-													"type": {
-														"kind": "reference",
-														"name": "NotebookCellArrayChange"
-													},
-													"documentation": "The change to the cell array."
-												},
-												{
-													"name": "didOpen",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "reference",
-															"name": "TextDocumentItem"
-														}
-													},
-													"optional": true,
-													"documentation": "Additional opened cell text documents."
-												},
-												{
-													"name": "didClose",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "reference",
-															"name": "TextDocumentIdentifier"
-														}
-													},
-													"optional": true,
-													"documentation": "Additional closed cell text documents."
-												}
-											]
-										}
-									},
-									"optional": true,
-									"documentation": "Changes to the cell structure to add or\nremove cells."
-								},
-								{
-									"name": "data",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "NotebookCell"
-										}
-									},
-									"optional": true,
-									"documentation": "Changes to notebook cells properties like its\nkind, execution summary or metadata."
-								},
-								{
-									"name": "textContent",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "literal",
-											"value": {
-												"properties": [
-													{
-														"name": "document",
-														"type": {
-															"kind": "reference",
-															"name": "VersionedTextDocumentIdentifier"
-														}
-													},
-													{
-														"name": "changes",
-														"type": {
-															"kind": "array",
-															"element": {
-																"kind": "reference",
-																"name": "TextDocumentContentChangeEvent"
-															}
-														}
-													}
-												]
-											}
-										}
-									},
-									"optional": true,
-									"documentation": "Changes to the text content of notebook cells."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Changes to cells"
-				}
-			],
-			"documentation": "A change event for a notebook document.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocumentIdentifier",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "The notebook document's uri."
-				}
-			],
-			"documentation": "A literal to identify a notebook document in the client.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "Registration",
-			"properties": [
-				{
-					"name": "id",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The id used to register the request. The id can be used to deregister\nthe request again."
-				},
-				{
-					"name": "method",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The method / capability to register for."
-				},
-				{
-					"name": "registerOptions",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "Options necessary for the registration."
-				}
-			],
-			"documentation": "General parameters to to register for an notification or to register a provider."
-		},
-		{
-			"name": "Unregistration",
-			"properties": [
-				{
-					"name": "id",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The id used to unregister the request or notification. Usually an id\nprovided during the register request."
-				},
-				{
-					"name": "method",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The method to unregister for."
-				}
-			],
-			"documentation": "General parameters to unregister a request or notification."
-		},
-		{
-			"name": "_InitializeParams",
-			"properties": [
-				{
-					"name": "processId",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "The process Id of the parent process that started\nthe server.\n\nIs `null` if the process has not been started by another process.\nIf the parent process is not alive then the server should exit."
-				},
-				{
-					"name": "clientInfo",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "name",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "The name of the client as defined by the client."
-								},
-								{
-									"name": "version",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "The client's version as defined by the client."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Information about the client\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "locale",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The locale the client is currently showing the user interface\nin. This must not necessarily be the locale of the operating\nsystem.\n\nUses IETF language tags as the value's syntax\n(See https://en.wikipedia.org/wiki/IETF_language_tag)\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "rootPath",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The rootPath of the workspace. Is null\nif no folder is open.\n\n@deprecated in favour of rootUri.",
-					"deprecated": "in favour of rootUri."
-				},
-				{
-					"name": "rootUri",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "DocumentUri"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "The rootUri of the workspace. Is null if no\nfolder is open. If both `rootPath` and `rootUri` are set\n`rootUri` wins.\n\n@deprecated in favour of workspaceFolders.",
-					"deprecated": "in favour of workspaceFolders."
-				},
-				{
-					"name": "capabilities",
-					"type": {
-						"kind": "reference",
-						"name": "ClientCapabilities"
-					},
-					"documentation": "The capabilities provided by the client (editor or tool)"
-				},
-				{
-					"name": "initializationOptions",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "User provided initialization options."
-				},
-				{
-					"name": "trace",
-					"type": {
-						"kind": "reference",
-						"name": "TraceValues"
-					},
-					"optional": true,
-					"documentation": "The initial trace setting. If omitted trace is disabled ('off')."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressParams"
-				}
-			],
-			"documentation": "The initialize parameters"
-		},
-		{
-			"name": "WorkspaceFoldersInitializeParams",
-			"properties": [
-				{
-					"name": "workspaceFolders",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "array",
-								"element": {
-									"kind": "reference",
-									"name": "WorkspaceFolder"
-								}
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The workspace folders configured in the client when the server starts.\n\nThis property is only available if the client supports workspace folders.\nIt can be `null` if the client supports workspace folders but none are\nconfigured.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				}
-			]
-		},
-		{
-			"name": "ServerCapabilities",
-			"properties": [
-				{
-					"name": "positionEncoding",
-					"type": {
-						"kind": "reference",
-						"name": "PositionEncodingKind"
-					},
-					"optional": true,
-					"documentation": "The position encoding the server picked from the encodings offered\nby the client via the client capability `general.positionEncodings`.\n\nIf the client didn't provide any position encodings the only valid\nvalue that a server can return is 'utf-16'.\n\nIf omitted it defaults to 'utf-16'.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "textDocumentSync",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "TextDocumentSyncOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "TextDocumentSyncKind"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "Defines how text documents are synced. Is either a detailed structure\ndefining each notification or for backwards compatibility the\nTextDocumentSyncKind number."
-				},
-				{
-					"name": "notebookDocumentSync",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "NotebookDocumentSyncOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "NotebookDocumentSyncRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "Defines how notebook documents are synced.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "completionProvider",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides completion support."
-				},
-				{
-					"name": "hoverProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "HoverOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides hover support."
-				},
-				{
-					"name": "signatureHelpProvider",
-					"type": {
-						"kind": "reference",
-						"name": "SignatureHelpOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides signature help support."
-				},
-				{
-					"name": "declarationProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DeclarationOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "DeclarationRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides Goto Declaration support."
-				},
-				{
-					"name": "definitionProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DefinitionOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides goto definition support."
-				},
-				{
-					"name": "typeDefinitionProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "TypeDefinitionOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "TypeDefinitionRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides Goto Type Definition support."
-				},
-				{
-					"name": "implementationProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "ImplementationOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "ImplementationRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides Goto Implementation support."
-				},
-				{
-					"name": "referencesProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "ReferenceOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides find references support."
-				},
-				{
-					"name": "documentHighlightProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentHighlightOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides document highlight support."
-				},
-				{
-					"name": "documentSymbolProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentSymbolOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides document symbol support."
-				},
-				{
-					"name": "codeActionProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "CodeActionOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides code actions. CodeActionOptions may only be\nspecified if the client states that it supports\n`codeActionLiteralSupport` in its initial `initialize` request."
-				},
-				{
-					"name": "codeLensProvider",
-					"type": {
-						"kind": "reference",
-						"name": "CodeLensOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides code lens."
-				},
-				{
-					"name": "documentLinkProvider",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentLinkOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides document link support."
-				},
-				{
-					"name": "colorProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentColorOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentColorRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides color provider support."
-				},
-				{
-					"name": "workspaceSymbolProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "WorkspaceSymbolOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides workspace symbol support."
-				},
-				{
-					"name": "documentFormattingProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentFormattingOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides document formatting."
-				},
-				{
-					"name": "documentRangeFormattingProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "DocumentRangeFormattingOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides document range formatting."
-				},
-				{
-					"name": "documentOnTypeFormattingProvider",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentOnTypeFormattingOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides document formatting on typing."
-				},
-				{
-					"name": "renameProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "RenameOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides rename support. RenameOptions may only be\nspecified if the client states that it supports\n`prepareSupport` in its initial `initialize` request."
-				},
-				{
-					"name": "foldingRangeProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "FoldingRangeOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "FoldingRangeRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides folding provider support."
-				},
-				{
-					"name": "selectionRangeProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "SelectionRangeOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "SelectionRangeRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides selection range support."
-				},
-				{
-					"name": "executeCommandProvider",
-					"type": {
-						"kind": "reference",
-						"name": "ExecuteCommandOptions"
-					},
-					"optional": true,
-					"documentation": "The server provides execute command support."
-				},
-				{
-					"name": "callHierarchyProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "CallHierarchyOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "CallHierarchyRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides call hierarchy support.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "linkedEditingRangeProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "LinkedEditingRangeOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "LinkedEditingRangeRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides linked editing range support.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "semanticTokensProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "SemanticTokensOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "SemanticTokensRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides semantic tokens support.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "monikerProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "MonikerOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "MonikerRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides moniker support.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "typeHierarchyProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "TypeHierarchyOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "TypeHierarchyRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides type hierarchy support.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "inlineValueProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "InlineValueOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "InlineValueRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides inline values.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "inlayHintProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "InlayHintOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "InlayHintRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server provides inlay hints.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "diagnosticProvider",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "DiagnosticOptions"
-							},
-							{
-								"kind": "reference",
-								"name": "DiagnosticRegistrationOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The server has support for pull model diagnostics.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "workspace",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "workspaceFolders",
-									"type": {
-										"kind": "reference",
-										"name": "WorkspaceFoldersServerCapabilities"
-									},
-									"optional": true,
-									"documentation": "The server supports workspace folder.\n\n@since 3.6.0",
-									"since": "3.6.0"
-								},
-								{
-									"name": "fileOperations",
-									"type": {
-										"kind": "reference",
-										"name": "FileOperationOptions"
-									},
-									"optional": true,
-									"documentation": "The server is interested in notifications/requests for operations on files.\n\n@since 3.16.0",
-									"since": "3.16.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Workspace specific server capabilities."
-				},
-				{
-					"name": "experimental",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "Experimental server capabilities."
-				}
-			],
-			"documentation": "Defines the capabilities provided by a language\nserver."
-		},
-		{
-			"name": "VersionedTextDocumentIdentifier",
-			"properties": [
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "integer"
-					},
-					"documentation": "The version number of this document."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentIdentifier"
-				}
-			],
-			"documentation": "A text document identifier to denote a specific version of a text document."
-		},
-		{
-			"name": "SaveOptions",
-			"properties": [
-				{
-					"name": "includeText",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client is supposed to include the content on save."
-				}
-			],
-			"documentation": "Save options."
-		},
-		{
-			"name": "FileEvent",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The file's uri."
-				},
-				{
-					"name": "type",
-					"type": {
-						"kind": "reference",
-						"name": "FileChangeType"
-					},
-					"documentation": "The change type."
-				}
-			],
-			"documentation": "An event describing a file change."
-		},
-		{
-			"name": "FileSystemWatcher",
-			"properties": [
-				{
-					"name": "globPattern",
-					"type": {
-						"kind": "reference",
-						"name": "GlobPattern"
-					},
-					"documentation": "The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.\n\n@since 3.17.0 support for relative patterns.",
-					"since": "3.17.0 support for relative patterns."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "WatchKind"
-					},
-					"optional": true,
-					"documentation": "The kind of events of interest. If omitted it defaults\nto WatchKind.Create | WatchKind.Change | WatchKind.Delete\nwhich is 7."
-				}
-			]
-		},
-		{
-			"name": "Diagnostic",
-			"properties": [
-				{
-					"name": "range",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range at which the message applies"
-				},
-				{
-					"name": "severity",
-					"type": {
-						"kind": "reference",
-						"name": "DiagnosticSeverity"
-					},
-					"optional": true,
-					"documentation": "The diagnostic's severity. Can be omitted. If omitted it is up to the\nclient to interpret diagnostics as error, warning, info or hint."
-				},
-				{
-					"name": "code",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "string"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The diagnostic's code, which usually appear in the user interface."
-				},
-				{
-					"name": "codeDescription",
-					"type": {
-						"kind": "reference",
-						"name": "CodeDescription"
-					},
-					"optional": true,
-					"documentation": "An optional property to describe the error code.\nRequires the code field (above) to be present/not null.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "source",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A human-readable string describing the source of this\ndiagnostic, e.g. 'typescript' or 'super lint'. It usually\nappears in the user interface."
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The diagnostic's message. It usually appears in the user interface"
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DiagnosticTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Additional metadata about the diagnostic.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "relatedInformation",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "DiagnosticRelatedInformation"
-						}
-					},
-					"optional": true,
-					"documentation": "An array of related diagnostic information, e.g. when symbol-names within\na scope collide all definitions can be marked via this property."
-				},
-				{
-					"name": "data",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "A data entry field that is preserved between a `textDocument/publishDiagnostics`\nnotification and `textDocument/codeAction` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "Represents a diagnostic, such as a compiler error or warning. Diagnostic objects\nare only valid in the scope of a resource."
-		},
-		{
-			"name": "CompletionContext",
-			"properties": [
-				{
-					"name": "triggerKind",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionTriggerKind"
-					},
-					"documentation": "How the completion was triggered."
-				},
-				{
-					"name": "triggerCharacter",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The trigger character (a single character) that has trigger code complete.\nIs undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`"
-				}
-			],
-			"documentation": "Contains additional information about the context in which a completion request is triggered."
-		},
-		{
-			"name": "CompletionItemLabelDetails",
-			"properties": [
-				{
-					"name": "detail",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional string which is rendered less prominently directly after {@link CompletionItem.label label},\nwithout any spacing. Should be used for function signatures and type annotations."
-				},
-				{
-					"name": "description",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "An optional string which is rendered less prominently after {@link CompletionItem.detail}. Should be used\nfor fully qualified names and file paths."
-				}
-			],
-			"documentation": "Additional details for a completion item label.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InsertReplaceEdit",
-			"properties": [
-				{
-					"name": "newText",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The string to be inserted."
-				},
-				{
-					"name": "insert",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range if the insert is requested"
-				},
-				{
-					"name": "replace",
-					"type": {
-						"kind": "reference",
-						"name": "Range"
-					},
-					"documentation": "The range if the replace is requested."
-				}
-			],
-			"documentation": "A special text edit to provide an insert and a replace operation.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CompletionOptions",
-			"properties": [
-				{
-					"name": "triggerCharacters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "Most tools trigger completion request automatically without explicitly requesting\nit using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user\nstarts to type an identifier. For example if the user types `c` in a JavaScript file\ncode complete will automatically pop up present `console` besides others as a\ncompletion item. Characters that make up identifiers don't need to be listed here.\n\nIf code complete should automatically be trigger on characters not being valid inside\nan identifier (for example `.` in JavaScript) list them in `triggerCharacters`."
-				},
-				{
-					"name": "allCommitCharacters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "The list of all possible characters that commit a completion. This field can be used\nif clients don't support individual commit characters per completion item. See\n`ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`\n\nIf a server provides both `allCommitCharacters` and commit characters on an individual\ncompletion item the ones on the completion item win.\n\n@since 3.2.0",
-					"since": "3.2.0"
-				},
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The server provides support to resolve additional\ninformation for a completion item."
-				},
-				{
-					"name": "completionItem",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "labelDetailsSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "The server has support for completion item label\ndetails (see also `CompletionItemLabelDetails`) when\nreceiving a completion item in a resolve call.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The server supports the following `CompletionItem` specific\ncapabilities.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Completion options."
-		},
-		{
-			"name": "HoverOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Hover options."
-		},
-		{
-			"name": "SignatureHelpContext",
-			"properties": [
-				{
-					"name": "triggerKind",
-					"type": {
-						"kind": "reference",
-						"name": "SignatureHelpTriggerKind"
-					},
-					"documentation": "Action that caused signature help to be triggered."
-				},
-				{
-					"name": "triggerCharacter",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "Character that caused signature help to be triggered.\n\nThis is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter`"
-				},
-				{
-					"name": "isRetrigger",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "`true` if signature help was already showing when it was triggered.\n\nRetriggers occurs when the signature help is already active and can be caused by actions such as\ntyping a trigger character, a cursor move, or document content changes."
-				},
-				{
-					"name": "activeSignatureHelp",
-					"type": {
-						"kind": "reference",
-						"name": "SignatureHelp"
-					},
-					"optional": true,
-					"documentation": "The currently active `SignatureHelp`.\n\nThe `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on\nthe user navigating through available signatures."
-				}
-			],
-			"documentation": "Additional information about the context in which a signature help request was triggered.\n\n@since 3.15.0",
-			"since": "3.15.0"
-		},
-		{
-			"name": "SignatureInformation",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The label of this signature. Will be shown in\nthe UI."
-				},
-				{
-					"name": "documentation",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The human-readable doc-comment of this signature. Will be shown\nin the UI but can be omitted."
-				},
-				{
-					"name": "parameters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "ParameterInformation"
-						}
-					},
-					"optional": true,
-					"documentation": "The parameters of this signature."
-				},
-				{
-					"name": "activeParameter",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The index of the active parameter.\n\nIf provided, this is used in place of `SignatureHelp.activeParameter`.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "Represents the signature of something callable. A signature\ncan have a label, like a function-name, a doc-comment, and\na set of parameters."
-		},
-		{
-			"name": "SignatureHelpOptions",
-			"properties": [
-				{
-					"name": "triggerCharacters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "List of characters that trigger signature help automatically."
-				},
-				{
-					"name": "retriggerCharacters",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "List of characters that re-trigger signature help.\n\nThese trigger characters are only active when signature help is already showing. All trigger characters\nare also counted as re-trigger characters.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Server Capabilities for a {@link SignatureHelpRequest}."
-		},
-		{
-			"name": "DefinitionOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Server Capabilities for a {@link DefinitionRequest}."
-		},
-		{
-			"name": "ReferenceContext",
-			"properties": [
-				{
-					"name": "includeDeclaration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "Include the declaration of the current symbol."
-				}
-			],
-			"documentation": "Value-object that contains additional information when\nrequesting references."
-		},
-		{
-			"name": "ReferenceOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Reference options."
-		},
-		{
-			"name": "DocumentHighlightOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentHighlightRequest}."
-		},
-		{
-			"name": "BaseSymbolInformation",
-			"properties": [
-				{
-					"name": "name",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of this symbol."
-				},
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "SymbolKind"
-					},
-					"documentation": "The kind of this symbol."
-				},
-				{
-					"name": "tags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "SymbolTag"
-						}
-					},
-					"optional": true,
-					"documentation": "Tags for this symbol.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "containerName",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The name of the symbol containing this symbol. This information is for\nuser interface purposes (e.g. to render a qualifier in the user interface\nif necessary). It can't be used to re-infer a hierarchy for the document\nsymbols."
-				}
-			],
-			"documentation": "A base for all symbol information."
-		},
-		{
-			"name": "DocumentSymbolOptions",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A human-readable string that is shown when multiple outlines trees\nare shown for the same document.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentSymbolRequest}."
-		},
-		{
-			"name": "CodeActionContext",
-			"properties": [
-				{
-					"name": "diagnostics",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Diagnostic"
-						}
-					},
-					"documentation": "An array of diagnostics known on the client side overlapping the range provided to the\n`textDocument/codeAction` request. They are provided so that the server knows which\nerrors are currently presented to the user for the given range. There is no guarantee\nthat these accurately reflect the error state of the resource. The primary parameter\nto compute code actions is the provided range."
-				},
-				{
-					"name": "only",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CodeActionKind"
-						}
-					},
-					"optional": true,
-					"documentation": "Requested kind of actions to return.\n\nActions not of this kind are filtered out by the client before being shown. So servers\ncan omit computing them."
-				},
-				{
-					"name": "triggerKind",
-					"type": {
-						"kind": "reference",
-						"name": "CodeActionTriggerKind"
-					},
-					"optional": true,
-					"documentation": "The reason why code actions were requested.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Contains additional diagnostic information about the context in which\na {@link CodeActionProvider.provideCodeActions code action} is run."
-		},
-		{
-			"name": "CodeActionOptions",
-			"properties": [
-				{
-					"name": "codeActionKinds",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "CodeActionKind"
-						}
-					},
-					"optional": true,
-					"documentation": "CodeActionKinds that this server may return.\n\nThe list of kinds may be generic, such as `CodeActionKind.Refactor`, or the server\nmay list out every specific kind they provide."
-				},
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The server provides support to resolve additional\ninformation for a code action.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link CodeActionRequest}."
-		},
-		{
-			"name": "WorkspaceSymbolOptions",
-			"properties": [
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The server provides support to resolve additional\ninformation for a workspace symbol.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Server capabilities for a {@link WorkspaceSymbolRequest}."
-		},
-		{
-			"name": "CodeLensOptions",
-			"properties": [
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Code lens has a resolve provider as well."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Code Lens provider options of a {@link CodeLensRequest}."
-		},
-		{
-			"name": "DocumentLinkOptions",
-			"properties": [
-				{
-					"name": "resolveProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Document links have a resolve provider as well."
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentLinkRequest}."
-		},
-		{
-			"name": "FormattingOptions",
-			"properties": [
-				{
-					"name": "tabSize",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "Size of a tab in spaces."
-				},
-				{
-					"name": "insertSpaces",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "Prefer spaces over tabs."
-				},
-				{
-					"name": "trimTrailingWhitespace",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Trim trailing whitespace on a line.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "insertFinalNewline",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Insert a newline character at the end of the file if one does not exist.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "trimFinalNewlines",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Trim all newlines after the final newline at the end of the file.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"documentation": "Value-object describing what options formatting should use."
-		},
-		{
-			"name": "DocumentFormattingOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentFormattingRequest}."
-		},
-		{
-			"name": "DocumentRangeFormattingOptions",
-			"properties": [],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentRangeFormattingRequest}."
-		},
-		{
-			"name": "DocumentOnTypeFormattingOptions",
-			"properties": [
-				{
-					"name": "firstTriggerCharacter",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "A character on which formatting should be triggered, like `{`."
-				},
-				{
-					"name": "moreTriggerCharacter",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "More trigger characters."
-				}
-			],
-			"documentation": "Provider options for a {@link DocumentOnTypeFormattingRequest}."
-		},
-		{
-			"name": "RenameOptions",
-			"properties": [
-				{
-					"name": "prepareProvider",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Renames should be checked and tested before being executed.\n\n@since version 3.12.0",
-					"since": "version 3.12.0"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "Provider options for a {@link RenameRequest}."
-		},
-		{
-			"name": "ExecuteCommandOptions",
-			"properties": [
-				{
-					"name": "commands",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"documentation": "The commands to be executed on the server"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "WorkDoneProgressOptions"
-				}
-			],
-			"documentation": "The server capabilities of a {@link ExecuteCommandRequest}."
-		},
-		{
-			"name": "SemanticTokensLegend",
-			"properties": [
-				{
-					"name": "tokenTypes",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"documentation": "The token types a server uses."
-				},
-				{
-					"name": "tokenModifiers",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"documentation": "The token modifiers a server uses."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "OptionalVersionedTextDocumentIdentifier",
-			"properties": [
-				{
-					"name": "version",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "The version number of this document. If a versioned text document identifier\nis sent from the server to the client and the file is not open in the editor\n(the server has not received an open notification before) the server can send\n`null` to indicate that the version is unknown and the content on disk is the\ntruth (as specified with document content ownership)."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextDocumentIdentifier"
-				}
-			],
-			"documentation": "A text document identifier to optionally denote a specific version of a text document."
-		},
-		{
-			"name": "AnnotatedTextEdit",
-			"properties": [
-				{
-					"name": "annotationId",
-					"type": {
-						"kind": "reference",
-						"name": "ChangeAnnotationIdentifier"
-					},
-					"documentation": "The actual identifier of the change annotation"
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "TextEdit"
-				}
-			],
-			"documentation": "A special text edit with an additional change annotation.\n\n@since 3.16.0.",
-			"since": "3.16.0."
-		},
-		{
-			"name": "ResourceOperation",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The resource operation kind."
-				},
-				{
-					"name": "annotationId",
-					"type": {
-						"kind": "reference",
-						"name": "ChangeAnnotationIdentifier"
-					},
-					"optional": true,
-					"documentation": "An optional annotation identifier describing the operation.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "A generic resource operation."
-		},
-		{
-			"name": "CreateFileOptions",
-			"properties": [
-				{
-					"name": "overwrite",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Overwrite existing file. Overwrite wins over `ignoreIfExists`"
-				},
-				{
-					"name": "ignoreIfExists",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Ignore if exists."
-				}
-			],
-			"documentation": "Options to create a file."
-		},
-		{
-			"name": "RenameFileOptions",
-			"properties": [
-				{
-					"name": "overwrite",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Overwrite target if existing. Overwrite wins over `ignoreIfExists`"
-				},
-				{
-					"name": "ignoreIfExists",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Ignores if target exists."
-				}
-			],
-			"documentation": "Rename file options"
-		},
-		{
-			"name": "DeleteFileOptions",
-			"properties": [
-				{
-					"name": "recursive",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Delete the content recursively if a folder is denoted."
-				},
-				{
-					"name": "ignoreIfNotExists",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Ignore the operation if the file doesn't exist."
-				}
-			],
-			"documentation": "Delete file options"
-		},
-		{
-			"name": "FileOperationPattern",
-			"properties": [
-				{
-					"name": "glob",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The glob pattern to match. Glob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)"
-				},
-				{
-					"name": "matches",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationPatternKind"
-					},
-					"optional": true,
-					"documentation": "Whether to match files or folders with this pattern.\n\nMatches both if undefined."
-				},
-				{
-					"name": "options",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationPatternOptions"
-					},
-					"optional": true,
-					"documentation": "Additional options used during matching."
-				}
-			],
-			"documentation": "A pattern to describe in which file operation requests or notifications\nthe server is interested in receiving.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "WorkspaceFullDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The URI for which diagnostic information is reported."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "The version number for which the diagnostics are reported.\nIf the document is not marked as open `null` can be provided."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "FullDocumentDiagnosticReport"
-				}
-			],
-			"documentation": "A full document diagnostic report for a workspace diagnostic result.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceUnchangedDocumentDiagnosticReport",
-			"properties": [
-				{
-					"name": "uri",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The URI for which diagnostic information is reported."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "integer"
-							},
-							{
-								"kind": "base",
-								"name": "null"
-							}
-						]
-					},
-					"documentation": "The version number for which the diagnostics are reported.\nIf the document is not marked as open `null` can be provided."
-				}
-			],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "UnchangedDocumentDiagnosticReport"
-				}
-			],
-			"documentation": "An unchanged document diagnostic report for a workspace diagnostic result.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookCell",
-			"properties": [
-				{
-					"name": "kind",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookCellKind"
-					},
-					"documentation": "The cell's kind"
-				},
-				{
-					"name": "document",
-					"type": {
-						"kind": "base",
-						"name": "DocumentUri"
-					},
-					"documentation": "The URI of the cell's text document\ncontent."
-				},
-				{
-					"name": "metadata",
-					"type": {
-						"kind": "reference",
-						"name": "LSPObject"
-					},
-					"optional": true,
-					"documentation": "Additional metadata stored with the cell.\n\nNote: should always be an object literal (e.g. LSPObject)"
-				},
-				{
-					"name": "executionSummary",
-					"type": {
-						"kind": "reference",
-						"name": "ExecutionSummary"
-					},
-					"optional": true,
-					"documentation": "Additional execution summary information\nif supported by the client."
-				}
-			],
-			"documentation": "A notebook cell.\n\nA cell's document URI must be unique across ALL notebook\ncells and can therefore be used to uniquely identify a\nnotebook cell or the cell's text document.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookCellArrayChange",
-			"properties": [
-				{
-					"name": "start",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The start oftest of the cell that changed."
-				},
-				{
-					"name": "deleteCount",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "The deleted cells"
-				},
-				{
-					"name": "cells",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "NotebookCell"
-						}
-					},
-					"optional": true,
-					"documentation": "The new cells, if any"
-				}
-			],
-			"documentation": "A change describing how to move a `NotebookCell`\narray from state S to S'.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "ClientCapabilities",
-			"properties": [
-				{
-					"name": "workspace",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Workspace specific client capabilities."
-				},
-				{
-					"name": "textDocument",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Text document specific client capabilities."
-				},
-				{
-					"name": "notebookDocument",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocumentClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the notebook document support.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "window",
-					"type": {
-						"kind": "reference",
-						"name": "WindowClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Window specific client capabilities."
-				},
-				{
-					"name": "general",
-					"type": {
-						"kind": "reference",
-						"name": "GeneralClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "General client capabilities.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "experimental",
-					"type": {
-						"kind": "reference",
-						"name": "LSPAny"
-					},
-					"optional": true,
-					"documentation": "Experimental client capabilities."
-				}
-			],
-			"documentation": "Defines the capabilities provided by the client."
-		},
-		{
-			"name": "TextDocumentSyncOptions",
-			"properties": [
-				{
-					"name": "openClose",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Open and close notifications are sent to the server. If omitted open close notification should not\nbe sent."
-				},
-				{
-					"name": "change",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentSyncKind"
-					},
-					"optional": true,
-					"documentation": "Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full\nand TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None."
-				},
-				{
-					"name": "willSave",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "If present will save notifications are sent to the server. If omitted the notification should not be\nsent."
-				},
-				{
-					"name": "willSaveWaitUntil",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "If present will save wait until requests are sent to the server. If omitted the request should not be\nsent."
-				},
-				{
-					"name": "save",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "boolean"
-							},
-							{
-								"kind": "reference",
-								"name": "SaveOptions"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "If present save notifications are sent to the server. If omitted the notification should not be\nsent."
-				}
-			]
-		},
-		{
-			"name": "NotebookDocumentSyncOptions",
-			"properties": [
-				{
-					"name": "notebookSelector",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "or",
-							"items": [
-								{
-									"kind": "literal",
-									"value": {
-										"properties": [
-											{
-												"name": "notebook",
-												"type": {
-													"kind": "or",
-													"items": [
-														{
-															"kind": "base",
-															"name": "string"
-														},
-														{
-															"kind": "reference",
-															"name": "NotebookDocumentFilter"
-														}
-													]
-												},
-												"documentation": "The notebook to be synced If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
-											},
-											{
-												"name": "cells",
-												"type": {
-													"kind": "array",
-													"element": {
-														"kind": "literal",
-														"value": {
-															"properties": [
-																{
-																	"name": "language",
-																	"type": {
-																		"kind": "base",
-																		"name": "string"
-																	}
-																}
-															]
-														}
-													}
-												},
-												"optional": true,
-												"documentation": "The cells of the matching notebook to be synced."
-											}
-										]
-									}
-								},
-								{
-									"kind": "literal",
-									"value": {
-										"properties": [
-											{
-												"name": "notebook",
-												"type": {
-													"kind": "or",
-													"items": [
-														{
-															"kind": "base",
-															"name": "string"
-														},
-														{
-															"kind": "reference",
-															"name": "NotebookDocumentFilter"
-														}
-													]
-												},
-												"optional": true,
-												"documentation": "The notebook to be synced If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
-											},
-											{
-												"name": "cells",
-												"type": {
-													"kind": "array",
-													"element": {
-														"kind": "literal",
-														"value": {
-															"properties": [
-																{
-																	"name": "language",
-																	"type": {
-																		"kind": "base",
-																		"name": "string"
-																	}
-																}
-															]
-														}
-													}
-												},
-												"documentation": "The cells of the matching notebook to be synced."
-											}
-										]
-									}
-								}
-							]
-						}
-					},
-					"documentation": "The notebooks to be synced"
-				},
-				{
-					"name": "save",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether save notification should be forwarded to\nthe server. Will only be honored if mode === `notebook`."
-				}
-			],
-			"documentation": "Options specific to a notebook plus its cells\nto be synced to the server.\n\nIf a selector provides a notebook document\nfilter but no cell selector all cells of a\nmatching notebook document will be synced.\n\nIf a selector provides no notebook document\nfilter but only a cell selector all notebook\ndocument that contain at least one matching\ncell will be synced.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocumentSyncRegistrationOptions",
-			"properties": [],
-			"extends": [
-				{
-					"kind": "reference",
-					"name": "NotebookDocumentSyncOptions"
-				}
-			],
-			"mixins": [
-				{
-					"kind": "reference",
-					"name": "StaticRegistrationOptions"
-				}
-			],
-			"documentation": "Registration options specific to a notebook.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceFoldersServerCapabilities",
-			"properties": [
-				{
-					"name": "supported",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The server has support for workspace folders"
-				},
-				{
-					"name": "changeNotifications",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "base",
-								"name": "boolean"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "Whether the server wants to receive workspace folder\nchange notifications.\n\nIf a string is provided the string is treated as an ID\nunder which the notification is registered on the client\nside. The ID can be used to unregister for these events\nusing the `client/unregisterCapability` request."
-				}
-			]
-		},
-		{
-			"name": "FileOperationOptions",
-			"properties": [
-				{
-					"name": "didCreate",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving didCreateFiles notifications."
-				},
-				{
-					"name": "willCreate",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving willCreateFiles requests."
-				},
-				{
-					"name": "didRename",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving didRenameFiles notifications."
-				},
-				{
-					"name": "willRename",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving willRenameFiles requests."
-				},
-				{
-					"name": "didDelete",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving didDeleteFiles file notifications."
-				},
-				{
-					"name": "willDelete",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationRegistrationOptions"
-					},
-					"optional": true,
-					"documentation": "The server is interested in receiving willDeleteFiles file requests."
-				}
-			],
-			"documentation": "Options for notifications/requests for user operations on files.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CodeDescription",
-			"properties": [
-				{
-					"name": "href",
-					"type": {
-						"kind": "base",
-						"name": "URI"
-					},
-					"documentation": "An URI to open with more information about the diagnostic error."
-				}
-			],
-			"documentation": "Structure to capture a description for an error code.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "DiagnosticRelatedInformation",
-			"properties": [
-				{
-					"name": "location",
-					"type": {
-						"kind": "reference",
-						"name": "Location"
-					},
-					"documentation": "The location of this related diagnostic information."
-				},
-				{
-					"name": "message",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The message of this related diagnostic information."
-				}
-			],
-			"documentation": "Represents a related message and source code location for a diagnostic. This should be\nused to point to code locations that cause or related to a diagnostics, e.g when duplicating\na symbol in a scope."
-		},
-		{
-			"name": "ParameterInformation",
-			"properties": [
-				{
-					"name": "label",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "tuple",
-								"items": [
-									{
-										"kind": "base",
-										"name": "uinteger"
-									},
-									{
-										"kind": "base",
-										"name": "uinteger"
-									}
-								]
-							}
-						]
-					},
-					"documentation": "The label of this parameter information.\n\nEither a string or an inclusive start and exclusive end offsets within its containing\nsignature label. (see SignatureInformation.label). The offsets are based on a UTF-16\nstring representation as `Position` and `Range` does.\n\n*Note*: a label of type string should be a substring of its containing signature label.\nIts intended use case is to highlight the parameter label part in the `SignatureInformation.label`."
-				},
-				{
-					"name": "documentation",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "MarkupContent"
-							}
-						]
-					},
-					"optional": true,
-					"documentation": "The human-readable doc-comment of this parameter. Will be shown\nin the UI but can be omitted."
-				}
-			],
-			"documentation": "Represents a parameter of a callable-signature. A parameter can\nhave a label and a doc-comment."
-		},
-		{
-			"name": "NotebookCellTextDocumentFilter",
-			"properties": [
-				{
-					"name": "notebook",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "base",
-								"name": "string"
-							},
-							{
-								"kind": "reference",
-								"name": "NotebookDocumentFilter"
-							}
-						]
-					},
-					"documentation": "A filter that matches against the notebook\ncontaining the notebook cell. If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
-				},
-				{
-					"name": "language",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "A language id like `python`.\n\nWill be matched against the language id of the\nnotebook cell document. '*' matches every language."
-				}
-			],
-			"documentation": "A notebook cell text document filter denotes a cell text\ndocument by different properties.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "FileOperationPatternOptions",
-			"properties": [
-				{
-					"name": "ignoreCase",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The pattern should be matched ignoring casing."
-				}
-			],
-			"documentation": "Matching options for the file operation pattern.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "ExecutionSummary",
-			"properties": [
-				{
-					"name": "executionOrder",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"documentation": "A strict monotonically increasing value\nindicating the execution order of a cell\ninside a notebook."
-				},
-				{
-					"name": "success",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the execution was successful or\nnot if known by the client."
-				}
-			]
-		},
-		{
-			"name": "WorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "applyEdit",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports applying batch edits\nto the workspace by supporting the request\n'workspace/applyEdit'"
-				},
-				{
-					"name": "workspaceEdit",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceEditClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to `WorkspaceEdit`s."
-				},
-				{
-					"name": "didChangeConfiguration",
-					"type": {
-						"kind": "reference",
-						"name": "DidChangeConfigurationClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `workspace/didChangeConfiguration` notification."
-				},
-				{
-					"name": "didChangeWatchedFiles",
-					"type": {
-						"kind": "reference",
-						"name": "DidChangeWatchedFilesClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `workspace/didChangeWatchedFiles` notification."
-				},
-				{
-					"name": "symbol",
-					"type": {
-						"kind": "reference",
-						"name": "WorkspaceSymbolClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `workspace/symbol` request."
-				},
-				{
-					"name": "executeCommand",
-					"type": {
-						"kind": "reference",
-						"name": "ExecuteCommandClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `workspace/executeCommand` request."
-				},
-				{
-					"name": "workspaceFolders",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for workspace folders.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				},
-				{
-					"name": "configuration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports `workspace/configuration` requests.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				},
-				{
-					"name": "semanticTokens",
-					"type": {
-						"kind": "reference",
-						"name": "SemanticTokensWorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the semantic token requests scoped to the\nworkspace.\n\n@since 3.16.0.",
-					"since": "3.16.0."
-				},
-				{
-					"name": "codeLens",
-					"type": {
-						"kind": "reference",
-						"name": "CodeLensWorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the code lens requests scoped to the\nworkspace.\n\n@since 3.16.0.",
-					"since": "3.16.0."
-				},
-				{
-					"name": "fileOperations",
-					"type": {
-						"kind": "reference",
-						"name": "FileOperationClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "The client has support for file notifications/requests for user operations on files.\n\nSince 3.16.0"
-				},
-				{
-					"name": "inlineValue",
-					"type": {
-						"kind": "reference",
-						"name": "InlineValueWorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the inline values requests scoped to the\nworkspace.\n\n@since 3.17.0.",
-					"since": "3.17.0."
-				},
-				{
-					"name": "inlayHint",
-					"type": {
-						"kind": "reference",
-						"name": "InlayHintWorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the inlay hint requests scoped to the\nworkspace.\n\n@since 3.17.0.",
-					"since": "3.17.0."
-				},
-				{
-					"name": "diagnostics",
-					"type": {
-						"kind": "reference",
-						"name": "DiagnosticWorkspaceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the diagnostic requests scoped to the\nworkspace.\n\n@since 3.17.0.",
-					"since": "3.17.0."
-				}
-			],
-			"documentation": "Workspace specific client capabilities."
-		},
-		{
-			"name": "TextDocumentClientCapabilities",
-			"properties": [
-				{
-					"name": "synchronization",
-					"type": {
-						"kind": "reference",
-						"name": "TextDocumentSyncClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Defines which synchronization capabilities the client supports."
-				},
-				{
-					"name": "completion",
-					"type": {
-						"kind": "reference",
-						"name": "CompletionClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/completion` request."
-				},
-				{
-					"name": "hover",
-					"type": {
-						"kind": "reference",
-						"name": "HoverClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/hover` request."
-				},
-				{
-					"name": "signatureHelp",
-					"type": {
-						"kind": "reference",
-						"name": "SignatureHelpClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/signatureHelp` request."
-				},
-				{
-					"name": "declaration",
-					"type": {
-						"kind": "reference",
-						"name": "DeclarationClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/declaration` request.\n\n@since 3.14.0",
-					"since": "3.14.0"
-				},
-				{
-					"name": "definition",
-					"type": {
-						"kind": "reference",
-						"name": "DefinitionClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/definition` request."
-				},
-				{
-					"name": "typeDefinition",
-					"type": {
-						"kind": "reference",
-						"name": "TypeDefinitionClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/typeDefinition` request.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				},
-				{
-					"name": "implementation",
-					"type": {
-						"kind": "reference",
-						"name": "ImplementationClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/implementation` request.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				},
-				{
-					"name": "references",
-					"type": {
-						"kind": "reference",
-						"name": "ReferenceClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/references` request."
-				},
-				{
-					"name": "documentHighlight",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentHighlightClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/documentHighlight` request."
-				},
-				{
-					"name": "documentSymbol",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentSymbolClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/documentSymbol` request."
-				},
-				{
-					"name": "codeAction",
-					"type": {
-						"kind": "reference",
-						"name": "CodeActionClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/codeAction` request."
-				},
-				{
-					"name": "codeLens",
-					"type": {
-						"kind": "reference",
-						"name": "CodeLensClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/codeLens` request."
-				},
-				{
-					"name": "documentLink",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentLinkClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/documentLink` request."
-				},
-				{
-					"name": "colorProvider",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentColorClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/documentColor` and the\n`textDocument/colorPresentation` request.\n\n@since 3.6.0",
-					"since": "3.6.0"
-				},
-				{
-					"name": "formatting",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentFormattingClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/formatting` request."
-				},
-				{
-					"name": "rangeFormatting",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentRangeFormattingClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/rangeFormatting` request."
-				},
-				{
-					"name": "onTypeFormatting",
-					"type": {
-						"kind": "reference",
-						"name": "DocumentOnTypeFormattingClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/onTypeFormatting` request."
-				},
-				{
-					"name": "rename",
-					"type": {
-						"kind": "reference",
-						"name": "RenameClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/rename` request."
-				},
-				{
-					"name": "foldingRange",
-					"type": {
-						"kind": "reference",
-						"name": "FoldingRangeClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/foldingRange` request.\n\n@since 3.10.0",
-					"since": "3.10.0"
-				},
-				{
-					"name": "selectionRange",
-					"type": {
-						"kind": "reference",
-						"name": "SelectionRangeClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/selectionRange` request.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "publishDiagnostics",
-					"type": {
-						"kind": "reference",
-						"name": "PublishDiagnosticsClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/publishDiagnostics` notification."
-				},
-				{
-					"name": "callHierarchy",
-					"type": {
-						"kind": "reference",
-						"name": "CallHierarchyClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the various call hierarchy requests.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "semanticTokens",
-					"type": {
-						"kind": "reference",
-						"name": "SemanticTokensClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the various semantic token request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "linkedEditingRange",
-					"type": {
-						"kind": "reference",
-						"name": "LinkedEditingRangeClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/linkedEditingRange` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "moniker",
-					"type": {
-						"kind": "reference",
-						"name": "MonikerClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Client capabilities specific to the `textDocument/moniker` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "typeHierarchy",
-					"type": {
-						"kind": "reference",
-						"name": "TypeHierarchyClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the various type hierarchy requests.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "inlineValue",
-					"type": {
-						"kind": "reference",
-						"name": "InlineValueClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/inlineValue` request.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "inlayHint",
-					"type": {
-						"kind": "reference",
-						"name": "InlayHintClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `textDocument/inlayHint` request.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "diagnostic",
-					"type": {
-						"kind": "reference",
-						"name": "DiagnosticClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the diagnostic pull model.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Text document specific client capabilities."
-		},
-		{
-			"name": "NotebookDocumentClientCapabilities",
-			"properties": [
-				{
-					"name": "synchronization",
-					"type": {
-						"kind": "reference",
-						"name": "NotebookDocumentSyncClientCapabilities"
-					},
-					"documentation": "Capabilities specific to notebook document synchronization\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Capabilities specific to the notebook document support.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WindowClientCapabilities",
-			"properties": [
-				{
-					"name": "workDoneProgress",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "It indicates whether the client supports server initiated\nprogress using the `window/workDoneProgress/create` request.\n\nThe capability also controls Whether client supports handling\nof progress notifications. If set servers are allowed to report a\n`workDoneProgress` property in the request specific server\ncapabilities.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "showMessage",
-					"type": {
-						"kind": "reference",
-						"name": "ShowMessageRequestClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the showMessage request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "showDocument",
-					"type": {
-						"kind": "reference",
-						"name": "ShowDocumentClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the showDocument request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			]
-		},
-		{
-			"name": "GeneralClientCapabilities",
-			"properties": [
-				{
-					"name": "staleRequestSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "cancel",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"documentation": "The client will actively cancel the request."
-								},
-								{
-									"name": "retryOnContentModified",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"documentation": "The list of requests for which the client\nwill retry the request if it receives a\nresponse with error code `ContentModified`"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Client capability that signals how the client\nhandles stale requests (e.g. a request\nfor which the client will not process the response\nanymore since the information is outdated).\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "regularExpressions",
-					"type": {
-						"kind": "reference",
-						"name": "RegularExpressionsClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Client capabilities specific to regular expressions.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "markdown",
-					"type": {
-						"kind": "reference",
-						"name": "MarkdownClientCapabilities"
-					},
-					"optional": true,
-					"documentation": "Client capabilities specific to the client's markdown parser.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "positionEncodings",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "PositionEncodingKind"
-						}
-					},
-					"optional": true,
-					"documentation": "The position encodings supported by the client. Client and server\nhave to agree on the same position encoding to ensure that offsets\n(e.g. character position in a line) are interpreted the same on both\nsides.\n\nTo keep the protocol backwards compatible the following applies: if\nthe value 'utf-16' is missing from the array of position encodings\nservers can assume that the client supports UTF-16. UTF-16 is\ntherefore a mandatory encoding.\n\nIf omitted it defaults to ['utf-16'].\n\nImplementation considerations: since the conversion from one encoding\ninto another requires the content of the file / line the conversion\nis best done where the file is read which is usually on the server\nside.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "General client capabilities.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "RelativePattern",
-			"properties": [
-				{
-					"name": "baseUri",
-					"type": {
-						"kind": "or",
-						"items": [
-							{
-								"kind": "reference",
-								"name": "WorkspaceFolder"
-							},
-							{
-								"kind": "base",
-								"name": "URI"
-							}
-						]
-					},
-					"documentation": "A workspace folder or a base URI to which this pattern will be matched\nagainst relatively."
-				},
-				{
-					"name": "pattern",
-					"type": {
-						"kind": "reference",
-						"name": "Pattern"
-					},
-					"documentation": "The actual glob pattern;"
-				}
-			],
-			"documentation": "A relative pattern is a helper to construct glob patterns that are matched\nrelatively to a base URI. The common value for a `baseUri` is a workspace\nfolder root, but it can be another absolute URI as well.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "WorkspaceEditClientCapabilities",
-			"properties": [
-				{
-					"name": "documentChanges",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports versioned document changes in `WorkspaceEdit`s"
-				},
-				{
-					"name": "resourceOperations",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "ResourceOperationKind"
-						}
-					},
-					"optional": true,
-					"documentation": "The resource operations the client supports. Clients should at least\nsupport 'create', 'rename' and 'delete' files and folders.\n\n@since 3.13.0",
-					"since": "3.13.0"
-				},
-				{
-					"name": "failureHandling",
-					"type": {
-						"kind": "reference",
-						"name": "FailureHandlingKind"
-					},
-					"optional": true,
-					"documentation": "The failure handling strategy of a client if applying the workspace edit\nfails.\n\n@since 3.13.0",
-					"since": "3.13.0"
-				},
-				{
-					"name": "normalizesLineEndings",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client normalizes line endings to the client specific\nsetting.\nIf set to `true` the client will normalize line ending characters\nin a workspace edit to the client-specified new line\ncharacter.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "changeAnnotationSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "groupsOnLabel",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Whether the client groups edits with equal labels into tree nodes,\nfor instance all edits labelled with \"Changes in Strings\" would\nbe a tree node."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Whether the client in general supports change annotations on text edits,\ncreate file, rename file and delete file changes.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			]
-		},
-		{
-			"name": "DidChangeConfigurationClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Did change configuration notification supports dynamic registration."
-				}
-			]
-		},
-		{
-			"name": "DidChangeWatchedFilesClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Did change watched files notification supports dynamic registration. Please note\nthat the current protocol doesn't support static configuration for file changes\nfrom the server side."
-				},
-				{
-					"name": "relativePatternSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client has support for {@link  RelativePattern relative pattern}\nor not.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			]
-		},
-		{
-			"name": "WorkspaceSymbolClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Symbol request supports dynamic registration."
-				},
-				{
-					"name": "symbolKind",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "SymbolKind"
-										}
-									},
-									"optional": true,
-									"documentation": "The symbol kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown.\n\nIf this property is not present the client only supports\nthe symbol kinds from `File` to `Array` as defined in\nthe initial version of the protocol."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Specific capabilities for the `SymbolKind` in the `workspace/symbol` request."
-				},
-				{
-					"name": "tagSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "SymbolTag"
-										}
-									},
-									"documentation": "The tags supported by the client."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client supports tags on `SymbolInformation`.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "resolveSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "properties",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"documentation": "The properties that a client can resolve lazily. Usually\n`location.range`"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client support partial workspace symbols. The client will send the\nrequest `workspaceSymbol/resolve` to the server to resolve additional\nproperties.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Client capabilities for a {@link WorkspaceSymbolRequest}."
-		},
-		{
-			"name": "ExecuteCommandClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Execute command supports dynamic registration."
-				}
-			],
-			"documentation": "The client capabilities of a {@link ExecuteCommandRequest}."
-		},
-		{
-			"name": "SemanticTokensWorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "refreshSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\nsemantic tokens currently shown. It should be used with absolute care\nand is useful for situation where a server for example detects a project\nwide change that requires such a calculation."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "CodeLensWorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "refreshSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\ncode lenses currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detect a project wide\nchange that requires such a calculation."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "FileOperationClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client supports dynamic registration for file requests/notifications."
-				},
-				{
-					"name": "didCreate",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending didCreateFiles notifications."
-				},
-				{
-					"name": "willCreate",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending willCreateFiles requests."
-				},
-				{
-					"name": "didRename",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending didRenameFiles notifications."
-				},
-				{
-					"name": "willRename",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending willRenameFiles requests."
-				},
-				{
-					"name": "didDelete",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending didDeleteFiles notifications."
-				},
-				{
-					"name": "willDelete",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client has support for sending willDeleteFiles requests."
-				}
-			],
-			"documentation": "Capabilities relating to events from file operations by the user in the client.\n\nThese events do not come from the file system, they come from user operations\nlike renaming a file in the UI.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "InlineValueWorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "refreshSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\ninline values currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detects a project wide\nchange that requires such a calculation."
-				}
-			],
-			"documentation": "Client workspace capabilities specific to inline values.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHintWorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "refreshSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\ninlay hints currently shown. It should be used with absolute care and\nis useful for situation where a server for example detects a project wide\nchange that requires such a calculation."
-				}
-			],
-			"documentation": "Client workspace capabilities specific to inlay hints.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DiagnosticWorkspaceClientCapabilities",
-			"properties": [
-				{
-					"name": "refreshSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\npulled diagnostics currently shown. It should be used with absolute care and\nis useful for situation where a server for example detects a project wide\nchange that requires such a calculation."
-				}
-			],
-			"documentation": "Workspace client capabilities specific to diagnostic pull requests.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TextDocumentSyncClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether text document synchronization supports dynamic registration."
-				},
-				{
-					"name": "willSave",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports sending will save notifications."
-				},
-				{
-					"name": "willSaveWaitUntil",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports sending a will save request and\nwaits for a response providing text edits which will\nbe applied to the document before it is saved."
-				},
-				{
-					"name": "didSave",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports did save notifications."
-				}
-			]
-		},
-		{
-			"name": "CompletionClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether completion supports dynamic registration."
-				},
-				{
-					"name": "completionItem",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "snippetSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Client supports snippets as insert text.\n\nA snippet can define tab stops and placeholders with `$1`, `$2`\nand `${3:foo}`. `$0` defines the final tab stop, it defaults to\nthe end of the snippet. Placeholders with equal identifiers are linked,\nthat is typing in one will update others too."
-								},
-								{
-									"name": "commitCharactersSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Client supports commit characters on a completion item."
-								},
-								{
-									"name": "documentationFormat",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "MarkupKind"
-										}
-									},
-									"optional": true,
-									"documentation": "Client supports the following content formats for the documentation\nproperty. The order describes the preferred format of the client."
-								},
-								{
-									"name": "deprecatedSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Client supports the deprecated property on a completion item."
-								},
-								{
-									"name": "preselectSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Client supports the preselect property on a completion item."
-								},
-								{
-									"name": "tagSupport",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "valueSet",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "reference",
-															"name": "CompletionItemTag"
-														}
-													},
-													"documentation": "The tags supported by the client."
-												}
-											]
-										}
-									},
-									"optional": true,
-									"documentation": "Client supports the tag property on a completion item. Clients supporting\ntags have to handle unknown tags gracefully. Clients especially need to\npreserve unknown tags when sending a completion item back to the server in\na resolve call.\n\n@since 3.15.0",
-									"since": "3.15.0"
-								},
-								{
-									"name": "insertReplaceSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Client support insert replace edit to control different behavior if a\ncompletion item is inserted in the text or should replace text.\n\n@since 3.16.0",
-									"since": "3.16.0"
-								},
-								{
-									"name": "resolveSupport",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "properties",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "base",
-															"name": "string"
-														}
-													},
-													"documentation": "The properties that a client can resolve lazily."
-												}
-											]
-										}
-									},
-									"optional": true,
-									"documentation": "Indicates which properties a client can resolve lazily on a completion\nitem. Before version 3.16.0 only the predefined properties `documentation`\nand `details` could be resolved lazily.\n\n@since 3.16.0",
-									"since": "3.16.0"
-								},
-								{
-									"name": "insertTextModeSupport",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "valueSet",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "reference",
-															"name": "InsertTextMode"
-														}
-													}
-												}
-											]
-										}
-									},
-									"optional": true,
-									"documentation": "The client supports the `insertTextMode` property on\na completion item to override the whitespace handling mode\nas defined by the client (see `insertTextMode`).\n\n@since 3.16.0",
-									"since": "3.16.0"
-								},
-								{
-									"name": "labelDetailsSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "The client has support for completion item label\ndetails (see also `CompletionItemLabelDetails`).\n\n@since 3.17.0",
-									"since": "3.17.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client supports the following `CompletionItem` specific\ncapabilities."
-				},
-				{
-					"name": "completionItemKind",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "CompletionItemKind"
-										}
-									},
-									"optional": true,
-									"documentation": "The completion item kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown.\n\nIf this property is not present the client only supports\nthe completion items kinds from `Text` to `Reference` as defined in\nthe initial version of the protocol."
-								}
-							]
-						}
-					},
-					"optional": true
-				},
-				{
-					"name": "insertTextMode",
-					"type": {
-						"kind": "reference",
-						"name": "InsertTextMode"
-					},
-					"optional": true,
-					"documentation": "Defines how the client handles whitespace and indentation\nwhen accepting a completion item that uses multi line\ntext in either `insertText` or `textEdit`.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "contextSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports to send additional context information for a\n`textDocument/completion` request."
-				},
-				{
-					"name": "completionList",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "itemDefaults",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"optional": true,
-									"documentation": "The client supports the following itemDefaults on\na completion list.\n\nThe value lists the supported property names of the\n`CompletionList.itemDefaults` object. If omitted\nno properties are supported.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client supports the following `CompletionList` specific\ncapabilities.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Completion client capabilities"
-		},
-		{
-			"name": "HoverClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether hover supports dynamic registration."
-				},
-				{
-					"name": "contentFormat",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "MarkupKind"
-						}
-					},
-					"optional": true,
-					"documentation": "Client supports the following content formats for the content\nproperty. The order describes the preferred format of the client."
-				}
-			]
-		},
-		{
-			"name": "SignatureHelpClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether signature help supports dynamic registration."
-				},
-				{
-					"name": "signatureInformation",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "documentationFormat",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "MarkupKind"
-										}
-									},
-									"optional": true,
-									"documentation": "Client supports the following content formats for the documentation\nproperty. The order describes the preferred format of the client."
-								},
-								{
-									"name": "parameterInformation",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "labelOffsetSupport",
-													"type": {
-														"kind": "base",
-														"name": "boolean"
-													},
-													"optional": true,
-													"documentation": "The client supports processing label offsets instead of a\nsimple label string.\n\n@since 3.14.0",
-													"since": "3.14.0"
-												}
-											]
-										}
-									},
-									"optional": true,
-									"documentation": "Client capabilities specific to parameter information."
-								},
-								{
-									"name": "activeParameterSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "The client supports the `activeParameter` property on `SignatureInformation`\nliteral.\n\n@since 3.16.0",
-									"since": "3.16.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client supports the following `SignatureInformation`\nspecific properties."
-				},
-				{
-					"name": "contextSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports to send additional context information for a\n`textDocument/signatureHelp` request. A client that opts into\ncontextSupport will also support the `retriggerCharacters` on\n`SignatureHelpOptions`.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"documentation": "Client Capabilities for a {@link SignatureHelpRequest}."
-		},
-		{
-			"name": "DeclarationClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether declaration supports dynamic registration. If this is set to `true`\nthe client supports the new `DeclarationRegistrationOptions` return value\nfor the corresponding server capability as well."
-				},
-				{
-					"name": "linkSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports additional metadata in the form of declaration links."
-				}
-			],
-			"documentation": "@since 3.14.0",
-			"since": "3.14.0"
-		},
-		{
-			"name": "DefinitionClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether definition supports dynamic registration."
-				},
-				{
-					"name": "linkSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports additional metadata in the form of definition links.\n\n@since 3.14.0",
-					"since": "3.14.0"
-				}
-			],
-			"documentation": "Client Capabilities for a {@link DefinitionRequest}."
-		},
-		{
-			"name": "TypeDefinitionClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `TypeDefinitionRegistrationOptions` return value\nfor the corresponding server capability as well."
-				},
-				{
-					"name": "linkSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports additional metadata in the form of definition links.\n\nSince 3.14.0"
-				}
-			],
-			"documentation": "Since 3.6.0"
-		},
-		{
-			"name": "ImplementationClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `ImplementationRegistrationOptions` return value\nfor the corresponding server capability as well."
-				},
-				{
-					"name": "linkSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports additional metadata in the form of definition links.\n\n@since 3.14.0",
-					"since": "3.14.0"
-				}
-			],
-			"documentation": "@since 3.6.0",
-			"since": "3.6.0"
-		},
-		{
-			"name": "ReferenceClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether references supports dynamic registration."
-				}
-			],
-			"documentation": "Client Capabilities for a {@link ReferencesRequest}."
-		},
-		{
-			"name": "DocumentHighlightClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether document highlight supports dynamic registration."
-				}
-			],
-			"documentation": "Client Capabilities for a {@link DocumentHighlightRequest}."
-		},
-		{
-			"name": "DocumentSymbolClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether document symbol supports dynamic registration."
-				},
-				{
-					"name": "symbolKind",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "SymbolKind"
-										}
-									},
-									"optional": true,
-									"documentation": "The symbol kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown.\n\nIf this property is not present the client only supports\nthe symbol kinds from `File` to `Array` as defined in\nthe initial version of the protocol."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Specific capabilities for the `SymbolKind` in the\n`textDocument/documentSymbol` request."
-				},
-				{
-					"name": "hierarchicalDocumentSymbolSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports hierarchical document symbols."
-				},
-				{
-					"name": "tagSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "SymbolTag"
-										}
-									},
-									"documentation": "The tags supported by the client."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client supports tags on `SymbolInformation`. Tags are supported on\n`DocumentSymbol` if `hierarchicalDocumentSymbolSupport` is set to true.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "labelSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports an additional label presented in the UI when\nregistering a document symbol provider.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "Client Capabilities for a {@link DocumentSymbolRequest}."
-		},
-		{
-			"name": "CodeActionClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code action supports dynamic registration."
-				},
-				{
-					"name": "codeActionLiteralSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "codeActionKind",
-									"type": {
-										"kind": "literal",
-										"value": {
-											"properties": [
-												{
-													"name": "valueSet",
-													"type": {
-														"kind": "array",
-														"element": {
-															"kind": "reference",
-															"name": "CodeActionKind"
-														}
-													},
-													"documentation": "The code action kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown."
-												}
-											]
-										}
-									},
-									"documentation": "The code action kind is support with the following value\nset."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "The client support code action literals of type `CodeAction` as a valid\nresponse of the `textDocument/codeAction` request. If the property is not\nset the request can only return `Command` literals.\n\n@since 3.8.0",
-					"since": "3.8.0"
-				},
-				{
-					"name": "isPreferredSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code action supports the `isPreferred` property.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "disabledSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code action supports the `disabled` property.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "dataSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code action supports the `data` property which is\npreserved between a `textDocument/codeAction` and a\n`codeAction/resolve` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "resolveSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "properties",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"documentation": "The properties that a client can resolve lazily."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Whether the client supports resolving additional code action\nproperties via a separate `codeAction/resolve` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "honorsChangeAnnotations",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client honors the change annotations in\ntext edits and resource operations returned via the\n`CodeAction#edit` property by for example presenting\nthe workspace edit in the user interface and asking\nfor confirmation.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "The Client Capabilities of a {@link CodeActionRequest}."
-		},
-		{
-			"name": "CodeLensClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code lens supports dynamic registration."
-				}
-			],
-			"documentation": "The client capabilities  of a {@link CodeLensRequest}."
-		},
-		{
-			"name": "DocumentLinkClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether document link supports dynamic registration."
-				},
-				{
-					"name": "tooltipSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client supports the `tooltip` property on `DocumentLink`.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"documentation": "The client capabilities of a {@link DocumentLinkRequest}."
-		},
-		{
-			"name": "DocumentColorClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `DocumentColorRegistrationOptions` return value\nfor the corresponding server capability as well."
-				}
-			]
-		},
-		{
-			"name": "DocumentFormattingClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether formatting supports dynamic registration."
-				}
-			],
-			"documentation": "Client capabilities of a {@link DocumentFormattingRequest}."
-		},
-		{
-			"name": "DocumentRangeFormattingClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether range formatting supports dynamic registration."
-				}
-			],
-			"documentation": "Client capabilities of a {@link DocumentRangeFormattingRequest}."
-		},
-		{
-			"name": "DocumentOnTypeFormattingClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether on type formatting supports dynamic registration."
-				}
-			],
-			"documentation": "Client capabilities of a {@link DocumentOnTypeFormattingRequest}."
-		},
-		{
-			"name": "RenameClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether rename supports dynamic registration."
-				},
-				{
-					"name": "prepareSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Client supports testing for validity of rename operations\nbefore execution.\n\n@since 3.12.0",
-					"since": "3.12.0"
-				},
-				{
-					"name": "prepareSupportDefaultBehavior",
-					"type": {
-						"kind": "reference",
-						"name": "PrepareSupportDefaultBehavior"
-					},
-					"optional": true,
-					"documentation": "Client supports the default behavior result.\n\nThe value indicates the default behavior used by the\nclient.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "honorsChangeAnnotations",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client honors the change annotations in\ntext edits and resource operations returned via the\nrename request's workspace edit by for example presenting\nthe workspace edit in the user interface and asking\nfor confirmation.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			]
-		},
-		{
-			"name": "FoldingRangeClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration for folding range\nproviders. If this is set to `true` the client supports the new\n`FoldingRangeRegistrationOptions` return value for the corresponding\nserver capability as well."
-				},
-				{
-					"name": "rangeLimit",
-					"type": {
-						"kind": "base",
-						"name": "uinteger"
-					},
-					"optional": true,
-					"documentation": "The maximum number of folding ranges that the client prefers to receive\nper document. The value serves as a hint, servers are free to follow the\nlimit."
-				},
-				{
-					"name": "lineFoldingOnly",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "If set, the client signals that it only supports folding complete lines.\nIf set, client will ignore specified `startCharacter` and `endCharacter`\nproperties in a FoldingRange."
-				},
-				{
-					"name": "foldingRangeKind",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "FoldingRangeKind"
-										}
-									},
-									"optional": true,
-									"documentation": "The folding range kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Specific options for the folding range kind.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "foldingRange",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "collapsedText",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "If set, the client signals that it supports setting collapsedText on\nfolding ranges to display custom labels instead of the default text.\n\n@since 3.17.0",
-									"since": "3.17.0"
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Specific options for the folding range.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			]
-		},
-		{
-			"name": "SelectionRangeClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration for selection range providers. If this is set to `true`\nthe client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server\ncapability as well."
-				}
-			]
-		},
-		{
-			"name": "PublishDiagnosticsClientCapabilities",
-			"properties": [
-				{
-					"name": "relatedInformation",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the clients accepts diagnostics with related information."
-				},
-				{
-					"name": "tagSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "valueSet",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "reference",
-											"name": "DiagnosticTag"
-										}
-									},
-									"documentation": "The tags supported by the client."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Client supports the tag property to provide meta data about a diagnostic.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "versionSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client interprets the version property of the\n`textDocument/publishDiagnostics` notification's parameter.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				},
-				{
-					"name": "codeDescriptionSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Client supports a codeDescription property\n\n@since 3.16.0",
-					"since": "3.16.0"
-				},
-				{
-					"name": "dataSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether code action supports the `data` property which is\npreserved between a `textDocument/publishDiagnostics` and\n`textDocument/codeAction` request.\n\n@since 3.16.0",
-					"since": "3.16.0"
-				}
-			],
-			"documentation": "The publish diagnostic client capabilities."
-		},
-		{
-			"name": "CallHierarchyClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokensClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				},
-				{
-					"name": "requests",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "range",
-									"type": {
-										"kind": "or",
-										"items": [
-											{
-												"kind": "base",
-												"name": "boolean"
-											},
-											{
-												"kind": "literal",
-												"value": {
-													"properties": []
-												}
-											}
-										]
-									},
-									"optional": true,
-									"documentation": "The client will send the `textDocument/semanticTokens/range` request if\nthe server provides a corresponding handler."
-								},
-								{
-									"name": "full",
-									"type": {
-										"kind": "or",
-										"items": [
-											{
-												"kind": "base",
-												"name": "boolean"
-											},
-											{
-												"kind": "literal",
-												"value": {
-													"properties": [
-														{
-															"name": "delta",
-															"type": {
-																"kind": "base",
-																"name": "boolean"
-															},
-															"optional": true,
-															"documentation": "The client will send the `textDocument/semanticTokens/full/delta` request if\nthe server provides a corresponding handler."
-														}
-													]
-												}
-											}
-										]
-									},
-									"optional": true,
-									"documentation": "The client will send the `textDocument/semanticTokens/full` request if\nthe server provides a corresponding handler."
-								}
-							]
-						}
-					},
-					"documentation": "Which requests the client supports and might send to the server\ndepending on the server's capability. Please note that clients might not\nshow semantic tokens or degrade some of the user experience if a range\nor full request is advertised by the client but not provided by the\nserver. If for example the client capability `requests.full` and\n`request.range` are both set to true but the server only provides a\nrange provider the client might not render a minimap correctly or might\neven decide to not show any semantic tokens at all."
-				},
-				{
-					"name": "tokenTypes",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"documentation": "The token types that the client supports."
-				},
-				{
-					"name": "tokenModifiers",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"documentation": "The token modifiers that the client supports."
-				},
-				{
-					"name": "formats",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "TokenFormat"
-						}
-					},
-					"documentation": "The token formats the clients supports."
-				},
-				{
-					"name": "overlappingTokenSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client supports tokens that can overlap each other."
-				},
-				{
-					"name": "multilineTokenSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client supports tokens that can span multiple lines."
-				},
-				{
-					"name": "serverCancelSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client allows the server to actively cancel a\nsemantic token request, e.g. supports returning\nLSPErrorCodes.ServerCancelled. If a server does the client\nneeds to retrigger the request.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "augmentsSyntaxTokens",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the client uses semantic tokens to augment existing\nsyntax tokens. If set to `true` client side created syntax\ntokens and semantic tokens are both used for colorization. If\nset to `false` the client only uses the returned semantic tokens\nfor colorization.\n\nIf the value is `undefined` then the client behavior is not\nspecified.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "LinkedEditingRangeClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				}
-			],
-			"documentation": "Client capabilities for the linked editing range request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MonikerClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether moniker supports dynamic registration. If this is set to `true`\nthe client supports the new `MonikerRegistrationOptions` return value\nfor the corresponding server capability as well."
-				}
-			],
-			"documentation": "Client capabilities specific to the moniker request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "TypeHierarchyClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				}
-			],
-			"documentation": "@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlineValueClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration for inline value providers."
-				}
-			],
-			"documentation": "Client capabilities specific to inline values.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "InlayHintClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether inlay hints support dynamic registration."
-				},
-				{
-					"name": "resolveSupport",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "properties",
-									"type": {
-										"kind": "array",
-										"element": {
-											"kind": "base",
-											"name": "string"
-										}
-									},
-									"documentation": "The properties that a client can resolve lazily."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Indicates which properties a client can resolve lazily on an inlay\nhint."
-				}
-			],
-			"documentation": "Inlay hint client capabilities.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DiagnosticClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				},
-				{
-					"name": "relatedDocumentSupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether the clients supports related documents for document diagnostic pulls."
-				}
-			],
-			"documentation": "Client capabilities specific to diagnostic pull requests.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocumentSyncClientCapabilities",
-			"properties": [
-				{
-					"name": "dynamicRegistration",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "Whether implementation supports dynamic registration. If this is\nset to `true` the client supports the new\n`(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
-				},
-				{
-					"name": "executionSummarySupport",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"optional": true,
-					"documentation": "The client supports sending execution summary data per cell."
-				}
-			],
-			"documentation": "Notebook specific client capabilities.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "ShowMessageRequestClientCapabilities",
-			"properties": [
-				{
-					"name": "messageActionItem",
-					"type": {
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "additionalPropertiesSupport",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									},
-									"optional": true,
-									"documentation": "Whether the client supports additional attributes which\nare preserved and send back to the server in the\nrequest's response."
-								}
-							]
-						}
-					},
-					"optional": true,
-					"documentation": "Capabilities specific to the `MessageActionItem` type."
-				}
-			],
-			"documentation": "Show message request client capabilities"
-		},
-		{
-			"name": "ShowDocumentClientCapabilities",
-			"properties": [
-				{
-					"name": "support",
-					"type": {
-						"kind": "base",
-						"name": "boolean"
-					},
-					"documentation": "The client has support for the showDocument\nrequest."
-				}
-			],
-			"documentation": "Client capabilities for the showDocument request.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "RegularExpressionsClientCapabilities",
-			"properties": [
-				{
-					"name": "engine",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The engine's name."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The engine's version."
-				}
-			],
-			"documentation": "Client capabilities specific to regular expressions.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MarkdownClientCapabilities",
-			"properties": [
-				{
-					"name": "parser",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"documentation": "The name of the parser."
-				},
-				{
-					"name": "version",
-					"type": {
-						"kind": "base",
-						"name": "string"
-					},
-					"optional": true,
-					"documentation": "The version of the parser."
-				},
-				{
-					"name": "allowedTags",
-					"type": {
-						"kind": "array",
-						"element": {
-							"kind": "base",
-							"name": "string"
-						}
-					},
-					"optional": true,
-					"documentation": "A list of HTML tags that the client allows / supports in\nMarkdown.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"documentation": "Client capabilities specific to the used markdown parser.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		}
-	],
-	"enumerations": [
-		{
-			"name": "SemanticTokenTypes",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "namespace",
-					"value": "namespace"
-				},
-				{
-					"name": "type",
-					"value": "type",
-					"documentation": "Represents a generic type. Acts as a fallback for types which can't be mapped to\na specific type like class or enum."
-				},
-				{
-					"name": "class",
-					"value": "class"
-				},
-				{
-					"name": "enum",
-					"value": "enum"
-				},
-				{
-					"name": "interface",
-					"value": "interface"
-				},
-				{
-					"name": "struct",
-					"value": "struct"
-				},
-				{
-					"name": "typeParameter",
-					"value": "typeParameter"
-				},
-				{
-					"name": "parameter",
-					"value": "parameter"
-				},
-				{
-					"name": "variable",
-					"value": "variable"
-				},
-				{
-					"name": "property",
-					"value": "property"
-				},
-				{
-					"name": "enumMember",
-					"value": "enumMember"
-				},
-				{
-					"name": "event",
-					"value": "event"
-				},
-				{
-					"name": "function",
-					"value": "function"
-				},
-				{
-					"name": "method",
-					"value": "method"
-				},
-				{
-					"name": "macro",
-					"value": "macro"
-				},
-				{
-					"name": "keyword",
-					"value": "keyword"
-				},
-				{
-					"name": "modifier",
-					"value": "modifier"
-				},
-				{
-					"name": "comment",
-					"value": "comment"
-				},
-				{
-					"name": "string",
-					"value": "string"
-				},
-				{
-					"name": "number",
-					"value": "number"
-				},
-				{
-					"name": "regexp",
-					"value": "regexp"
-				},
-				{
-					"name": "operator",
-					"value": "operator"
-				},
-				{
-					"name": "decorator",
-					"value": "decorator",
-					"documentation": "@since 3.17.0",
-					"since": "3.17.0"
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "A set of predefined token types. This set is not fixed\nan clients can specify additional token types via the\ncorresponding client capabilities.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "SemanticTokenModifiers",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "declaration",
-					"value": "declaration"
-				},
-				{
-					"name": "definition",
-					"value": "definition"
-				},
-				{
-					"name": "readonly",
-					"value": "readonly"
-				},
-				{
-					"name": "static",
-					"value": "static"
-				},
-				{
-					"name": "deprecated",
-					"value": "deprecated"
-				},
-				{
-					"name": "abstract",
-					"value": "abstract"
-				},
-				{
-					"name": "async",
-					"value": "async"
-				},
-				{
-					"name": "modification",
-					"value": "modification"
-				},
-				{
-					"name": "documentation",
-					"value": "documentation"
-				},
-				{
-					"name": "defaultLibrary",
-					"value": "defaultLibrary"
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "A set of predefined token modifiers. This set is not fixed\nan clients can specify additional token types via the\ncorresponding client capabilities.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "DocumentDiagnosticReportKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Full",
-					"value": "full",
-					"documentation": "A diagnostic report with a full\nset of problems."
-				},
-				{
-					"name": "Unchanged",
-					"value": "unchanged",
-					"documentation": "A report indicating that the last\nreturned report is still accurate."
-				}
-			],
-			"documentation": "The document diagnostic report kinds.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "ErrorCodes",
-			"type": {
-				"kind": "base",
-				"name": "integer"
-			},
-			"values": [
-				{
-					"name": "ParseError",
-					"value": -32700
-				},
-				{
-					"name": "InvalidRequest",
-					"value": -32600
-				},
-				{
-					"name": "MethodNotFound",
-					"value": -32601
-				},
-				{
-					"name": "InvalidParams",
-					"value": -32602
-				},
-				{
-					"name": "InternalError",
-					"value": -32603
-				},
-				{
-					"name": "ServerNotInitialized",
-					"value": -32002,
-					"documentation": "Error code indicating that a server received a notification or\nrequest before the server has received the `initialize` request."
-				},
-				{
-					"name": "UnknownErrorCode",
-					"value": -32001
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "Predefined error codes."
-		},
-		{
-			"name": "LSPErrorCodes",
-			"type": {
-				"kind": "base",
-				"name": "integer"
-			},
-			"values": [
-				{
-					"name": "RequestFailed",
-					"value": -32803,
-					"documentation": "A request failed but it was syntactically correct, e.g the\nmethod name was known and the parameters were valid. The error\nmessage should contain human readable information about why\nthe request failed.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "ServerCancelled",
-					"value": -32802,
-					"documentation": "The server cancelled the request. This error code should\nonly be used for requests that explicitly support being\nserver cancellable.\n\n@since 3.17.0",
-					"since": "3.17.0"
-				},
-				{
-					"name": "ContentModified",
-					"value": -32801,
-					"documentation": "The server detected that the content of a document got\nmodified outside normal conditions. A server should\nNOT send this error code if it detects a content change\nin it unprocessed messages. The result even computed\non an older state might still be useful for the client.\n\nIf a client decides that a result is not of any use anymore\nthe client should cancel the request."
-				},
-				{
-					"name": "RequestCancelled",
-					"value": -32800,
-					"documentation": "The client has canceled a request and a server as detected\nthe cancel."
-				}
-			],
-			"supportsCustomValues": true
-		},
-		{
-			"name": "FoldingRangeKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Comment",
-					"value": "comment",
-					"documentation": "Folding range for a comment"
-				},
-				{
-					"name": "Imports",
-					"value": "imports",
-					"documentation": "Folding range for an import or include"
-				},
-				{
-					"name": "Region",
-					"value": "region",
-					"documentation": "Folding range for a region (e.g. `#region`)"
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "A set of predefined range kinds."
-		},
-		{
-			"name": "SymbolKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "File",
-					"value": 1
-				},
-				{
-					"name": "Module",
-					"value": 2
-				},
-				{
-					"name": "Namespace",
-					"value": 3
-				},
-				{
-					"name": "Package",
-					"value": 4
-				},
-				{
-					"name": "Class",
-					"value": 5
-				},
-				{
-					"name": "Method",
-					"value": 6
-				},
-				{
-					"name": "Property",
-					"value": 7
-				},
-				{
-					"name": "Field",
-					"value": 8
-				},
-				{
-					"name": "Constructor",
-					"value": 9
-				},
-				{
-					"name": "Enum",
-					"value": 10
-				},
-				{
-					"name": "Interface",
-					"value": 11
-				},
-				{
-					"name": "Function",
-					"value": 12
-				},
-				{
-					"name": "Variable",
-					"value": 13
-				},
-				{
-					"name": "Constant",
-					"value": 14
-				},
-				{
-					"name": "String",
-					"value": 15
-				},
-				{
-					"name": "Number",
-					"value": 16
-				},
-				{
-					"name": "Boolean",
-					"value": 17
-				},
-				{
-					"name": "Array",
-					"value": 18
-				},
-				{
-					"name": "Object",
-					"value": 19
-				},
-				{
-					"name": "Key",
-					"value": 20
-				},
-				{
-					"name": "Null",
-					"value": 21
-				},
-				{
-					"name": "EnumMember",
-					"value": 22
-				},
-				{
-					"name": "Struct",
-					"value": 23
-				},
-				{
-					"name": "Event",
-					"value": 24
-				},
-				{
-					"name": "Operator",
-					"value": 25
-				},
-				{
-					"name": "TypeParameter",
-					"value": 26
-				}
-			],
-			"documentation": "A symbol kind."
-		},
-		{
-			"name": "SymbolTag",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Deprecated",
-					"value": 1,
-					"documentation": "Render a symbol as obsolete, usually using a strike-out."
-				}
-			],
-			"documentation": "Symbol tags are extra annotations that tweak the rendering of a symbol.\n\n@since 3.16",
-			"since": "3.16"
-		},
-		{
-			"name": "UniquenessLevel",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "document",
-					"value": "document",
-					"documentation": "The moniker is only unique inside a document"
-				},
-				{
-					"name": "project",
-					"value": "project",
-					"documentation": "The moniker is unique inside a project for which a dump got created"
-				},
-				{
-					"name": "group",
-					"value": "group",
-					"documentation": "The moniker is unique inside the group to which a project belongs"
-				},
-				{
-					"name": "scheme",
-					"value": "scheme",
-					"documentation": "The moniker is unique inside the moniker scheme."
-				},
-				{
-					"name": "global",
-					"value": "global",
-					"documentation": "The moniker is globally unique"
-				}
-			],
-			"documentation": "Moniker uniqueness level to define scope of the moniker.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "MonikerKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "import",
-					"value": "import",
-					"documentation": "The moniker represent a symbol that is imported into a project"
-				},
-				{
-					"name": "export",
-					"value": "export",
-					"documentation": "The moniker represents a symbol that is exported from a project"
-				},
-				{
-					"name": "local",
-					"value": "local",
-					"documentation": "The moniker represents a symbol that is local to a project (e.g. a local\nvariable of a function, a class not visible outside the project, ...)"
-				}
-			],
-			"documentation": "The moniker kind.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "InlayHintKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Type",
-					"value": 1,
-					"documentation": "An inlay hint that for a type annotation."
-				},
-				{
-					"name": "Parameter",
-					"value": 2,
-					"documentation": "An inlay hint that is for a parameter."
-				}
-			],
-			"documentation": "Inlay hint kinds.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "MessageType",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Error",
-					"value": 1,
-					"documentation": "An error message."
-				},
-				{
-					"name": "Warning",
-					"value": 2,
-					"documentation": "A warning message."
-				},
-				{
-					"name": "Info",
-					"value": 3,
-					"documentation": "An information message."
-				},
-				{
-					"name": "Log",
-					"value": 4,
-					"documentation": "A log message."
-				}
-			],
-			"documentation": "The message type"
-		},
-		{
-			"name": "TextDocumentSyncKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "None",
-					"value": 0,
-					"documentation": "Documents should not be synced at all."
-				},
-				{
-					"name": "Full",
-					"value": 1,
-					"documentation": "Documents are synced by always sending the full content\nof the document."
-				},
-				{
-					"name": "Incremental",
-					"value": 2,
-					"documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsend."
-				}
-			],
-			"documentation": "Defines how the host (editor) should sync\ndocument changes to the language server."
-		},
-		{
-			"name": "TextDocumentSaveReason",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Manual",
-					"value": 1,
-					"documentation": "Manually triggered, e.g. by the user pressing save, by starting debugging,\nor by an API call."
-				},
-				{
-					"name": "AfterDelay",
-					"value": 2,
-					"documentation": "Automatic after a delay."
-				},
-				{
-					"name": "FocusOut",
-					"value": 3,
-					"documentation": "When the editor lost focus."
-				}
-			],
-			"documentation": "Represents reasons why a text document is saved."
-		},
-		{
-			"name": "CompletionItemKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Text",
-					"value": 1
-				},
-				{
-					"name": "Method",
-					"value": 2
-				},
-				{
-					"name": "Function",
-					"value": 3
-				},
-				{
-					"name": "Constructor",
-					"value": 4
-				},
-				{
-					"name": "Field",
-					"value": 5
-				},
-				{
-					"name": "Variable",
-					"value": 6
-				},
-				{
-					"name": "Class",
-					"value": 7
-				},
-				{
-					"name": "Interface",
-					"value": 8
-				},
-				{
-					"name": "Module",
-					"value": 9
-				},
-				{
-					"name": "Property",
-					"value": 10
-				},
-				{
-					"name": "Unit",
-					"value": 11
-				},
-				{
-					"name": "Value",
-					"value": 12
-				},
-				{
-					"name": "Enum",
-					"value": 13
-				},
-				{
-					"name": "Keyword",
-					"value": 14
-				},
-				{
-					"name": "Snippet",
-					"value": 15
-				},
-				{
-					"name": "Color",
-					"value": 16
-				},
-				{
-					"name": "File",
-					"value": 17
-				},
-				{
-					"name": "Reference",
-					"value": 18
-				},
-				{
-					"name": "Folder",
-					"value": 19
-				},
-				{
-					"name": "EnumMember",
-					"value": 20
-				},
-				{
-					"name": "Constant",
-					"value": 21
-				},
-				{
-					"name": "Struct",
-					"value": 22
-				},
-				{
-					"name": "Event",
-					"value": 23
-				},
-				{
-					"name": "Operator",
-					"value": 24
-				},
-				{
-					"name": "TypeParameter",
-					"value": 25
-				}
-			],
-			"documentation": "The kind of a completion entry."
-		},
-		{
-			"name": "CompletionItemTag",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Deprecated",
-					"value": 1,
-					"documentation": "Render a completion as obsolete, usually using a strike-out."
-				}
-			],
-			"documentation": "Completion item tags are extra annotations that tweak the rendering of a completion\nitem.\n\n@since 3.15.0",
-			"since": "3.15.0"
-		},
-		{
-			"name": "InsertTextFormat",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "PlainText",
-					"value": 1,
-					"documentation": "The primary text to be inserted is treated as a plain string."
-				},
-				{
-					"name": "Snippet",
-					"value": 2,
-					"documentation": "The primary text to be inserted is treated as a snippet.\n\nA snippet can define tab stops and placeholders with `$1`, `$2`\nand `${3:foo}`. `$0` defines the final tab stop, it defaults to\nthe end of the snippet. Placeholders with equal identifiers are linked,\nthat is typing in one will update others too.\n\nSee also: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#snippet_syntax"
-				}
-			],
-			"documentation": "Defines whether the insert text in a completion item should be interpreted as\nplain text or a snippet."
-		},
-		{
-			"name": "InsertTextMode",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "asIs",
-					"value": 1,
-					"documentation": "The insertion or replace strings is taken as it is. If the\nvalue is multi line the lines below the cursor will be\ninserted using the indentation defined in the string value.\nThe client will not apply any kind of adjustments to the\nstring."
-				},
-				{
-					"name": "adjustIndentation",
-					"value": 2,
-					"documentation": "The editor adjusts leading whitespace of new lines so that\nthey match the indentation up to the cursor of the line for\nwhich the item is accepted.\n\nConsider a line like this: <2tabs><cursor><3tabs>foo. Accepting a\nmulti line completion item is indented using 2 tabs and all\nfollowing lines inserted will be indented using 2 tabs as well."
-				}
-			],
-			"documentation": "How whitespace and indentation is handled during completion\nitem insertion.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "DocumentHighlightKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Text",
-					"value": 1,
-					"documentation": "A textual occurrence."
-				},
-				{
-					"name": "Read",
-					"value": 2,
-					"documentation": "Read-access of a symbol, like reading a variable."
-				},
-				{
-					"name": "Write",
-					"value": 3,
-					"documentation": "Write-access of a symbol, like writing to a variable."
-				}
-			],
-			"documentation": "A document highlight kind."
-		},
-		{
-			"name": "CodeActionKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Empty",
-					"value": "",
-					"documentation": "Empty kind."
-				},
-				{
-					"name": "QuickFix",
-					"value": "quickfix",
-					"documentation": "Base kind for quickfix actions: 'quickfix'"
-				},
-				{
-					"name": "Refactor",
-					"value": "refactor",
-					"documentation": "Base kind for refactoring actions: 'refactor'"
-				},
-				{
-					"name": "RefactorExtract",
-					"value": "refactor.extract",
-					"documentation": "Base kind for refactoring extraction actions: 'refactor.extract'\n\nExample extract actions:\n\n- Extract method\n- Extract function\n- Extract variable\n- Extract interface from class\n- ..."
-				},
-				{
-					"name": "RefactorInline",
-					"value": "refactor.inline",
-					"documentation": "Base kind for refactoring inline actions: 'refactor.inline'\n\nExample inline actions:\n\n- Inline function\n- Inline variable\n- Inline constant\n- ..."
-				},
-				{
-					"name": "RefactorRewrite",
-					"value": "refactor.rewrite",
-					"documentation": "Base kind for refactoring rewrite actions: 'refactor.rewrite'\n\nExample rewrite actions:\n\n- Convert JavaScript function to class\n- Add or remove parameter\n- Encapsulate field\n- Make method static\n- Move method to base class\n- ..."
-				},
-				{
-					"name": "Source",
-					"value": "source",
-					"documentation": "Base kind for source actions: `source`\n\nSource code actions apply to the entire file."
-				},
-				{
-					"name": "SourceOrganizeImports",
-					"value": "source.organizeImports",
-					"documentation": "Base kind for an organize imports source action: `source.organizeImports`"
-				},
-				{
-					"name": "SourceFixAll",
-					"value": "source.fixAll",
-					"documentation": "Base kind for auto-fix source actions: `source.fixAll`.\n\nFix all actions automatically fix errors that have a clear fix that do not require user input.\nThey should not suppress errors or perform unsafe fixes such as generating new types or classes.\n\n@since 3.15.0",
-					"since": "3.15.0"
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "A set of predefined code action kinds"
-		},
-		{
-			"name": "TraceValues",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Off",
-					"value": "off",
-					"documentation": "Turn tracing off."
-				},
-				{
-					"name": "Messages",
-					"value": "messages",
-					"documentation": "Trace messages only."
-				},
-				{
-					"name": "Verbose",
-					"value": "verbose",
-					"documentation": "Verbose message tracing."
-				}
-			]
-		},
-		{
-			"name": "MarkupKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "PlainText",
-					"value": "plaintext",
-					"documentation": "Plain text is supported as a content format"
-				},
-				{
-					"name": "Markdown",
-					"value": "markdown",
-					"documentation": "Markdown is supported as a content format"
-				}
-			],
-			"documentation": "Describes the content type that a client supports in various\nresult literals like `Hover`, `ParameterInfo` or `CompletionItem`.\n\nPlease note that `MarkupKinds` must not start with a `$`. This kinds\nare reserved for internal usage."
-		},
-		{
-			"name": "PositionEncodingKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "UTF8",
-					"value": "utf-8",
-					"documentation": "Character offsets count UTF-8 code units."
-				},
-				{
-					"name": "UTF16",
-					"value": "utf-16",
-					"documentation": "Character offsets count UTF-16 code units.\n\nThis is the default and must always be supported\nby servers"
-				},
-				{
-					"name": "UTF32",
-					"value": "utf-32",
-					"documentation": "Character offsets count UTF-32 code units.\n\nImplementation note: these are the same as Unicode code points,\nso this `PositionEncodingKind` may also be used for an\nencoding-agnostic representation of character offsets."
-				}
-			],
-			"supportsCustomValues": true,
-			"documentation": "A set of predefined position encoding kinds.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "FileChangeType",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Created",
-					"value": 1,
-					"documentation": "The file got created."
-				},
-				{
-					"name": "Changed",
-					"value": 2,
-					"documentation": "The file got changed."
-				},
-				{
-					"name": "Deleted",
-					"value": 3,
-					"documentation": "The file got deleted."
-				}
-			],
-			"documentation": "The file event type"
-		},
-		{
-			"name": "WatchKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Create",
-					"value": 1,
-					"documentation": "Interested in create events."
-				},
-				{
-					"name": "Change",
-					"value": 2,
-					"documentation": "Interested in change events"
-				},
-				{
-					"name": "Delete",
-					"value": 4,
-					"documentation": "Interested in delete events"
-				}
-			],
-			"supportsCustomValues": true
-		},
-		{
-			"name": "DiagnosticSeverity",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Error",
-					"value": 1,
-					"documentation": "Reports an error."
-				},
-				{
-					"name": "Warning",
-					"value": 2,
-					"documentation": "Reports a warning."
-				},
-				{
-					"name": "Information",
-					"value": 3,
-					"documentation": "Reports an information."
-				},
-				{
-					"name": "Hint",
-					"value": 4,
-					"documentation": "Reports a hint."
-				}
-			],
-			"documentation": "The diagnostic's severity."
-		},
-		{
-			"name": "DiagnosticTag",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Unnecessary",
-					"value": 1,
-					"documentation": "Unused or unnecessary code.\n\nClients are allowed to render diagnostics with this tag faded out instead of having\nan error squiggle."
-				},
-				{
-					"name": "Deprecated",
-					"value": 2,
-					"documentation": "Deprecated or obsolete code.\n\nClients are allowed to rendered diagnostics with this tag strike through."
-				}
-			],
-			"documentation": "The diagnostic tags.\n\n@since 3.15.0",
-			"since": "3.15.0"
-		},
-		{
-			"name": "CompletionTriggerKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Invoked",
-					"value": 1,
-					"documentation": "Completion was triggered by typing an identifier (24x7 code\ncomplete), manual invocation (e.g Ctrl+Space) or via API."
-				},
-				{
-					"name": "TriggerCharacter",
-					"value": 2,
-					"documentation": "Completion was triggered by a trigger character specified by\nthe `triggerCharacters` properties of the `CompletionRegistrationOptions`."
-				},
-				{
-					"name": "TriggerForIncompleteCompletions",
-					"value": 3,
-					"documentation": "Completion was re-triggered as current completion list is incomplete"
-				}
-			],
-			"documentation": "How a completion was triggered"
-		},
-		{
-			"name": "SignatureHelpTriggerKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Invoked",
-					"value": 1,
-					"documentation": "Signature help was invoked manually by the user or by a command."
-				},
-				{
-					"name": "TriggerCharacter",
-					"value": 2,
-					"documentation": "Signature help was triggered by a trigger character."
-				},
-				{
-					"name": "ContentChange",
-					"value": 3,
-					"documentation": "Signature help was triggered by the cursor moving or by the document content changing."
-				}
-			],
-			"documentation": "How a signature help was triggered.\n\n@since 3.15.0",
-			"since": "3.15.0"
-		},
-		{
-			"name": "CodeActionTriggerKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Invoked",
-					"value": 1,
-					"documentation": "Code actions were explicitly requested by the user or by an extension."
-				},
-				{
-					"name": "Automatic",
-					"value": 2,
-					"documentation": "Code actions were requested automatically.\n\nThis typically happens when current selection in a file changes, but can\nalso be triggered when file content changes."
-				}
-			],
-			"documentation": "The reason why code actions were requested.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "FileOperationPatternKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "file",
-					"value": "file",
-					"documentation": "The pattern matches a file only."
-				},
-				{
-					"name": "folder",
-					"value": "folder",
-					"documentation": "The pattern matches a folder only."
-				}
-			],
-			"documentation": "A pattern kind describing if a glob pattern matches a file a folder or\nboth.\n\n@since 3.16.0",
-			"since": "3.16.0"
-		},
-		{
-			"name": "NotebookCellKind",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Markup",
-					"value": 1,
-					"documentation": "A markup-cell is formatted source that is used for display."
-				},
-				{
-					"name": "Code",
-					"value": 2,
-					"documentation": "A code-cell is source code."
-				}
-			],
-			"documentation": "A notebook cell kind.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "ResourceOperationKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Create",
-					"value": "create",
-					"documentation": "Supports creating new files and folders."
-				},
-				{
-					"name": "Rename",
-					"value": "rename",
-					"documentation": "Supports renaming existing files and folders."
-				},
-				{
-					"name": "Delete",
-					"value": "delete",
-					"documentation": "Supports deleting existing files and folders."
-				}
-			]
-		},
-		{
-			"name": "FailureHandlingKind",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Abort",
-					"value": "abort",
-					"documentation": "Applying the workspace change is simply aborted if one of the changes provided\nfails. All operations executed before the failing operation stay executed."
-				},
-				{
-					"name": "Transactional",
-					"value": "transactional",
-					"documentation": "All operations are executed transactional. That means they either all\nsucceed or no changes at all are applied to the workspace."
-				},
-				{
-					"name": "TextOnlyTransactional",
-					"value": "textOnlyTransactional",
-					"documentation": "If the workspace edit contains only textual file changes they are executed transactional.\nIf resource changes (create, rename or delete file) are part of the change the failure\nhandling strategy is abort."
-				},
-				{
-					"name": "Undo",
-					"value": "undo",
-					"documentation": "The client tries to undo the operations already executed. But there is no\nguarantee that this is succeeding."
-				}
-			]
-		},
-		{
-			"name": "PrepareSupportDefaultBehavior",
-			"type": {
-				"kind": "base",
-				"name": "uinteger"
-			},
-			"values": [
-				{
-					"name": "Identifier",
-					"value": 1,
-					"documentation": "The client's default behavior is to select the identifier\naccording the to language's syntax rule."
-				}
-			]
-		},
-		{
-			"name": "TokenFormat",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"values": [
-				{
-					"name": "Relative",
-					"value": "relative"
-				}
-			]
-		}
-	],
-	"typeAliases": [
-		{
-			"name": "Definition",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Location"
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					}
-				]
-			},
-			"documentation": "The definition of a symbol represented as one or many {@link Location locations}.\nFor most programming languages there is only one location at which a symbol is\ndefined.\n\nServers should prefer returning `DefinitionLink` over `Definition` if supported\nby the client."
-		},
-		{
-			"name": "DefinitionLink",
-			"type": {
-				"kind": "reference",
-				"name": "LocationLink"
-			},
-			"documentation": "Information about where a symbol is defined.\n\nProvides additional metadata over normal {@link Location location} definitions, including the range of\nthe defining symbol"
-		},
-		{
-			"name": "LSPArray",
-			"type": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "LSPAny"
-				}
-			},
-			"documentation": "LSP arrays.\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "LSPAny",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "LSPObject"
-					},
-					{
-						"kind": "reference",
-						"name": "LSPArray"
-					},
-					{
-						"kind": "base",
-						"name": "string"
-					},
-					{
-						"kind": "base",
-						"name": "integer"
-					},
-					{
-						"kind": "base",
-						"name": "uinteger"
-					},
-					{
-						"kind": "base",
-						"name": "decimal"
-					},
-					{
-						"kind": "base",
-						"name": "boolean"
-					},
-					{
-						"kind": "base",
-						"name": "null"
-					}
-				]
-			},
-			"documentation": "The LSP any type.\nPlease note that strictly speaking a property with the value `undefined`\ncan't be converted into JSON preserving the property name. However for\nconvenience it is allowed and assumed that all these properties are\noptional as well.\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "Declaration",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Location"
-					},
-					{
-						"kind": "array",
-						"element": {
-							"kind": "reference",
-							"name": "Location"
-						}
-					}
-				]
-			},
-			"documentation": "The declaration of a symbol representation as one or many {@link Location locations}."
-		},
-		{
-			"name": "DeclarationLink",
-			"type": {
-				"kind": "reference",
-				"name": "LocationLink"
-			},
-			"documentation": "Information about where a symbol is declared.\n\nProvides additional metadata over normal {@link Location location} declarations, including the range of\nthe declaring symbol.\n\nServers should prefer returning `DeclarationLink` over `Declaration` if supported\nby the client."
-		},
-		{
-			"name": "InlineValue",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "InlineValueText"
-					},
-					{
-						"kind": "reference",
-						"name": "InlineValueVariableLookup"
-					},
-					{
-						"kind": "reference",
-						"name": "InlineValueEvaluatableExpression"
-					}
-				]
-			},
-			"documentation": "Inline value information can be provided by different means:\n- directly as a text value (class InlineValueText).\n- as a name to use for a variable lookup (class InlineValueVariableLookup)\n- as an evaluatable expression (class InlineValueEvaluatableExpression)\nThe InlineValue types combines all inline value types into one type.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "DocumentDiagnosticReport",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "RelatedFullDocumentDiagnosticReport"
-					},
-					{
-						"kind": "reference",
-						"name": "RelatedUnchangedDocumentDiagnosticReport"
-					}
-				]
-			},
-			"documentation": "The result of a document diagnostic pull request. A report can\neither be a full report containing all diagnostics for the\nrequested document or an unchanged report indicating that nothing\nhas changed in terms of diagnostics in comparison to the last\npull request.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "PrepareRenameResult",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Range"
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "range",
-									"type": {
-										"kind": "reference",
-										"name": "Range"
-									}
-								},
-								{
-									"name": "placeholder",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									}
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "defaultBehavior",
-									"type": {
-										"kind": "base",
-										"name": "boolean"
-									}
-								}
-							]
-						}
-					}
-				]
-			}
-		},
-		{
-			"name": "DocumentSelector",
-			"type": {
-				"kind": "array",
-				"element": {
-					"kind": "reference",
-					"name": "DocumentFilter"
-				}
-			},
-			"documentation": "A document selector is the combination of one or many document filters.\n\n@sample `let sel:DocumentSelector = [{ language: 'typescript' }, { language: 'json', pattern: '**∕tsconfig.json' }]`;\n\nThe use of a string as a document filter is deprecated @since 3.16.0.",
-			"since": "3.16.0."
-		},
-		{
-			"name": "ProgressToken",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "base",
-						"name": "integer"
-					},
-					{
-						"kind": "base",
-						"name": "string"
-					}
-				]
-			}
-		},
-		{
-			"name": "ChangeAnnotationIdentifier",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"documentation": "An identifier to refer to a change annotation stored with a workspace edit."
-		},
-		{
-			"name": "WorkspaceDocumentDiagnosticReport",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "WorkspaceFullDocumentDiagnosticReport"
-					},
-					{
-						"kind": "reference",
-						"name": "WorkspaceUnchangedDocumentDiagnosticReport"
-					}
-				]
-			},
-			"documentation": "A workspace diagnostic document report.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TextDocumentContentChangeEvent",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "range",
-									"type": {
-										"kind": "reference",
-										"name": "Range"
-									},
-									"documentation": "The range of the document that changed."
-								},
-								{
-									"name": "rangeLength",
-									"type": {
-										"kind": "base",
-										"name": "uinteger"
-									},
-									"optional": true,
-									"documentation": "The optional length of the range that got replaced.\n\n@deprecated use range instead."
-								},
-								{
-									"name": "text",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "The new text for the provided range."
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "text",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "The new text of the whole document."
-								}
-							]
-						}
-					}
-				]
-			},
-			"documentation": "An event describing a change to a text document. If only a text is provided\nit is considered to be the full content of the document."
-		},
-		{
-			"name": "MarkedString",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "base",
-						"name": "string"
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "language",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									}
-								},
-								{
-									"name": "value",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									}
-								}
-							]
-						}
-					}
-				]
-			},
-			"documentation": "MarkedString can be used to render human readable text. It is either a markdown string\nor a code-block that provides a language and a code snippet. The language identifier\nis semantically equal to the optional language identifier in fenced code blocks in GitHub\nissues. See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting\n\nThe pair of a language and a value is an equivalent to markdown:\n```${language}\n${value}\n```\n\nNote that markdown strings will be sanitized - that means html will be escaped.\n@deprecated use MarkupContent instead.",
-			"deprecated": "use MarkupContent instead."
-		},
-		{
-			"name": "DocumentFilter",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "TextDocumentFilter"
-					},
-					{
-						"kind": "reference",
-						"name": "NotebookCellTextDocumentFilter"
-					}
-				]
-			},
-			"documentation": "A document filter describes a top level text document or\na notebook cell document.\n\n@since 3.17.0 - proposed support for NotebookCellTextDocumentFilter.",
-			"since": "3.17.0 - proposed support for NotebookCellTextDocumentFilter."
-		},
-		{
-			"name": "LSPObject",
-			"type": {
-				"kind": "map",
-				"key": {
-					"kind": "base",
-					"name": "string"
-				},
-				"value": {
-					"kind": "reference",
-					"name": "LSPAny"
-				}
-			},
-			"documentation": "LSP object definition.\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "GlobPattern",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "reference",
-						"name": "Pattern"
-					},
-					{
-						"kind": "reference",
-						"name": "RelativePattern"
-					}
-				]
-			},
-			"documentation": "The glob pattern. Either a string pattern or a relative pattern.\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "TextDocumentFilter",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "language",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "A language id, like `typescript`."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A glob pattern, like `*.{ts,js}`."
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "language",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A language id, like `typescript`."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A glob pattern, like `*.{ts,js}`."
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "language",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A language id, like `typescript`."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "A glob pattern, like `*.{ts,js}`."
-								}
-							]
-						}
-					}
-				]
-			},
-			"documentation": "A document filter denotes a document by different properties like\nthe {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of\nits resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.\n\nGlob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }`\n@sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**package.json' }`\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "NotebookDocumentFilter",
-			"type": {
-				"kind": "or",
-				"items": [
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "notebookType",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "The type of the enclosing notebook."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A glob pattern."
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "notebookType",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "The type of the enclosing notebook."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A glob pattern."
-								}
-							]
-						}
-					},
-					{
-						"kind": "literal",
-						"value": {
-							"properties": [
-								{
-									"name": "notebookType",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "The type of the enclosing notebook."
-								},
-								{
-									"name": "scheme",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"optional": true,
-									"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
-								},
-								{
-									"name": "pattern",
-									"type": {
-										"kind": "base",
-										"name": "string"
-									},
-									"documentation": "A glob pattern."
-								}
-							]
-						}
-					}
-				]
-			},
-			"documentation": "A notebook document filter denotes a notebook document by\ndifferent properties. The properties will be match\nagainst the notebook's URI (same as with documents)\n\n@since 3.17.0",
-			"since": "3.17.0"
-		},
-		{
-			"name": "Pattern",
-			"type": {
-				"kind": "base",
-				"name": "string"
-			},
-			"documentation": "The glob pattern to watch relative to the base path. Glob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group conditions (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@since 3.17.0",
-			"since": "3.17.0"
+			"documentation": "A request to resolve the implementation locations of a symbol at a given text\ndocument position. The request's parameter is of type {@link TextDocumentPositionParams}\nthe response is of type {@link Definition} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/typeDefinition",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Definition"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DefinitionLink"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "TypeDefinitionParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DefinitionLink"
+						}
+					}
+				]
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TypeDefinitionRegistrationOptions"
+			},
+			"documentation": "A request to resolve the type definition locations of a symbol at a given text\ndocument position. The request's parameter is of type {@link TextDocumentPositionParams}\nthe response is of type {@link Definition} or a Thenable that resolves to such."
+		},
+		{
+			"method": "workspace/workspaceFolders",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceFolder"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "The `workspace/workspaceFolders` is sent from the server to the client to fetch the open workspace folders."
+		},
+		{
+			"method": "workspace/configuration",
+			"result": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "LSPAny"
+				}
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "ConfigurationParams"
+			},
+			"documentation": "The 'workspace/configuration' request is sent from the server to the client to fetch a certain\nconfiguration setting.\n\nThis pull model replaces the old push model were the client signaled configuration change via an\nevent. If the server still needs to react to configuration changes (since the server caches the\nresult of `workspace/configuration` requests) the server should register for an empty configuration\nchange event and empty the cache if such an event is received."
+		},
+		{
+			"method": "textDocument/documentColor",
+			"result": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "ColorInformation"
+				}
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentColorParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "ColorInformation"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentColorRegistrationOptions"
+			},
+			"documentation": "A request to list all color symbols found in a given text document. The request's\nparameter is of type {@link DocumentColorParams} the\nresponse is of type {@link ColorInformation ColorInformation[]} or a Thenable\nthat resolves to such."
+		},
+		{
+			"method": "textDocument/colorPresentation",
+			"result": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "ColorPresentation"
+				}
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "ColorPresentationParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "ColorPresentation"
+				}
+			},
+			"registrationOptions": {
+				"kind": "and",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkDoneProgressOptions"
+					},
+					{
+						"kind": "reference",
+						"name": "TextDocumentRegistrationOptions"
+					}
+				]
+			},
+			"documentation": "A request to list all presentation for a color. The request's\nparameter is of type {@link ColorPresentationParams} the\nresponse is of type {@link ColorInformation ColorInformation[]} or a Thenable\nthat resolves to such."
+		},
+		{
+			"method": "textDocument/foldingRange",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FoldingRange"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "FoldingRangeParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "FoldingRange"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FoldingRangeRegistrationOptions"
+			},
+			"documentation": "A request to provide folding ranges in a document. The request's\nparameter is of type {@link FoldingRangeParams}, the\nresponse is of type {@link FoldingRangeList} or a Thenable\nthat resolves to such."
+		},
+		{
+			"method": "workspace/foldingRange/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"method": "textDocument/declaration",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Declaration"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DeclarationLink"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DeclarationParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DeclarationLink"
+						}
+					}
+				]
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DeclarationRegistrationOptions"
+			},
+			"documentation": "A request to resolve the type definition locations of a symbol at a given text\ndocument position. The request's parameter is of type {@link TextDocumentPositionParams}\nthe response is of type {@link Declaration} or a typed array of {@link DeclarationLink}\nor a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/selectionRange",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SelectionRange"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SelectionRangeParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "SelectionRange"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "SelectionRangeRegistrationOptions"
+			},
+			"documentation": "A request to provide selection ranges in a document. The request's\nparameter is of type {@link SelectionRangeParams}, the\nresponse is of type {@link SelectionRange SelectionRange[]} or a Thenable\nthat resolves to such."
+		},
+		{
+			"method": "window/workDoneProgress/create",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "WorkDoneProgressCreateParams"
+			},
+			"documentation": "The `window/workDoneProgress/create` request is sent from the server to the client to initiate progress\nreporting from the server."
+		},
+		{
+			"method": "textDocument/prepareCallHierarchy",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CallHierarchyItem"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CallHierarchyPrepareParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "CallHierarchyRegistrationOptions"
+			},
+			"documentation": "A request to result a `CallHierarchyItem` in a document at a given position.\nCan be used as an input to an incoming or outgoing call hierarchy.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "callHierarchy/incomingCalls",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CallHierarchyIncomingCall"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CallHierarchyIncomingCallsParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "CallHierarchyIncomingCall"
+				}
+			},
+			"documentation": "A request to resolve the incoming calls for a given `CallHierarchyItem`.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "callHierarchy/outgoingCalls",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CallHierarchyOutgoingCall"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CallHierarchyOutgoingCallsParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "CallHierarchyOutgoingCall"
+				}
+			},
+			"documentation": "A request to resolve the outgoing calls for a given `CallHierarchyItem`.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/semanticTokens/full",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "SemanticTokens"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SemanticTokensParams"
+			},
+			"partialResult": {
+				"kind": "reference",
+				"name": "SemanticTokensPartialResult"
+			},
+			"registrationMethod": "textDocument/semanticTokens",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "SemanticTokensRegistrationOptions"
+			},
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/semanticTokens/full/delta",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "SemanticTokens"
+					},
+					{
+						"kind": "reference",
+						"name": "SemanticTokensDelta"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SemanticTokensDeltaParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "SemanticTokensPartialResult"
+					},
+					{
+						"kind": "reference",
+						"name": "SemanticTokensDeltaPartialResult"
+					}
+				]
+			},
+			"registrationMethod": "textDocument/semanticTokens",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "SemanticTokensRegistrationOptions"
+			},
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/semanticTokens/range",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "SemanticTokens"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SemanticTokensRangeParams"
+			},
+			"partialResult": {
+				"kind": "reference",
+				"name": "SemanticTokensPartialResult"
+			},
+			"registrationMethod": "textDocument/semanticTokens",
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/semanticTokens/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "window/showDocument",
+			"result": {
+				"kind": "reference",
+				"name": "ShowDocumentResult"
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "ShowDocumentParams"
+			},
+			"documentation": "A request to show a document. This request might open an\nexternal program depending on the value of the URI to open.\nFor example a request to open `https://code.visualstudio.com/`\nwill very likely open the URI in a WEB browser.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/linkedEditingRange",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "LinkedEditingRanges"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "LinkedEditingRangeParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "LinkedEditingRangeRegistrationOptions"
+			},
+			"documentation": "A request to provide ranges that can be edited together.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/willCreateFiles",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CreateFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The will create files request is sent from the client to the server before files are actually\ncreated as long as the creation is triggered from within the client.\n\nThe request can return a `WorkspaceEdit` which will be applied to workspace before the\nfiles are created. Hence the `WorkspaceEdit` can not manipulate the content of the file\nto be created.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/willRenameFiles",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "RenameFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The will rename files request is sent from the client to the server before files are actually\nrenamed as long as the rename is triggered from within the client.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/willDeleteFiles",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DeleteFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The did delete files notification is sent from the client to the server when\nfiles were deleted from within the client.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/moniker",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Moniker"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "MonikerParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "Moniker"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "MonikerRegistrationOptions"
+			},
+			"documentation": "A request to get the moniker of a symbol at a given text document position.\nThe request parameter is of type {@link TextDocumentPositionParams}.\nThe response is of type {@link Moniker Moniker[]} or `null`."
+		},
+		{
+			"method": "textDocument/prepareTypeHierarchy",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TypeHierarchyItem"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "TypeHierarchyPrepareParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TypeHierarchyRegistrationOptions"
+			},
+			"documentation": "A request to result a `TypeHierarchyItem` in a document at a given position.\nCan be used as an input to a subtypes or supertypes type hierarchy.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "typeHierarchy/supertypes",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TypeHierarchyItem"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "TypeHierarchySupertypesParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "TypeHierarchyItem"
+				}
+			},
+			"documentation": "A request to resolve the supertypes for a given `TypeHierarchyItem`.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "typeHierarchy/subtypes",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TypeHierarchyItem"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "TypeHierarchySubtypesParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "TypeHierarchyItem"
+				}
+			},
+			"documentation": "A request to resolve the subtypes for a given `TypeHierarchyItem`.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "textDocument/inlineValue",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "InlineValue"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InlineValueParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "InlineValue"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "InlineValueRegistrationOptions"
+			},
+			"documentation": "A request to provide inline values in a document. The request's parameter is of\ntype {@link InlineValueParams}, the response is of type\n{@link InlineValue InlineValue[]} or a Thenable that resolves to such.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "workspace/inlineValue/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "textDocument/inlayHint",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "InlayHint"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InlayHintParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "InlayHint"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "InlayHintRegistrationOptions"
+			},
+			"documentation": "A request to provide inlay hints in a document. The request's parameter is of\ntype {@link InlayHintsParams}, the response is of type\n{@link InlayHint InlayHint[]} or a Thenable that resolves to such.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "inlayHint/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "InlayHint"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InlayHint"
+			},
+			"documentation": "A request to resolve additional properties for an inlay hint.\nThe request's parameter is of type {@link InlayHint}, the response is\nof type {@link InlayHint} or a Thenable that resolves to such.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "workspace/inlayHint/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "textDocument/diagnostic",
+			"result": {
+				"kind": "reference",
+				"name": "DocumentDiagnosticReport"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentDiagnosticParams"
+			},
+			"partialResult": {
+				"kind": "reference",
+				"name": "DocumentDiagnosticReportPartialResult"
+			},
+			"errorData": {
+				"kind": "reference",
+				"name": "DiagnosticServerCancellationData"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DiagnosticRegistrationOptions"
+			},
+			"documentation": "The document diagnostic request definition.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "workspace/diagnostic",
+			"result": {
+				"kind": "reference",
+				"name": "WorkspaceDiagnosticReport"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WorkspaceDiagnosticParams"
+			},
+			"partialResult": {
+				"kind": "reference",
+				"name": "WorkspaceDiagnosticReportPartialResult"
+			},
+			"errorData": {
+				"kind": "reference",
+				"name": "DiagnosticServerCancellationData"
+			},
+			"documentation": "The workspace diagnostic request definition.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "workspace/diagnostic/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "The diagnostic refresh request definition.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "textDocument/inlineCompletion",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "InlineCompletionList"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "InlineCompletionItem"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InlineCompletionParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "InlineCompletionItem"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "InlineCompletionRegistrationOptions"
+			},
+			"documentation": "A request to provide inline completions in a document. The request's parameter is of\ntype {@link InlineCompletionParams}, the response is of type\n{@link InlineCompletion InlineCompletion[]} or a Thenable that resolves to such.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"method": "client/registerCapability",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "RegistrationParams"
+			},
+			"documentation": "The `client/registerCapability` request is sent from the server to the client to register a new capability\nhandler on the client side."
+		},
+		{
+			"method": "client/unregisterCapability",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "UnregistrationParams"
+			},
+			"documentation": "The `client/unregisterCapability` request is sent from the server to the client to unregister a previously registered capability\nhandler on the client side."
+		},
+		{
+			"method": "initialize",
+			"result": {
+				"kind": "reference",
+				"name": "InitializeResult"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InitializeParams"
+			},
+			"errorData": {
+				"kind": "reference",
+				"name": "InitializeError"
+			},
+			"documentation": "The initialize request is sent from the client to the server.\nIt is sent once as the request after starting up the server.\nThe requests parameter is of type {@link InitializeParams}\nthe response if of type {@link InitializeResult} of a Thenable that\nresolves to such."
+		},
+		{
+			"method": "shutdown",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "clientToServer",
+			"documentation": "A shutdown request is sent from the client to the server.\nIt is sent once when the client decides to shutdown the\nserver. The only notification that is sent after a shutdown request\nis the exit event."
+		},
+		{
+			"method": "window/showMessageRequest",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "MessageActionItem"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "ShowMessageRequestParams"
+			},
+			"documentation": "The show message request is sent from the server to the client to show a message\nand a set of options actions to the user."
+		},
+		{
+			"method": "textDocument/willSaveWaitUntil",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WillSaveTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentRegistrationOptions"
+			},
+			"documentation": "A document will save request is sent from the client to the server before\nthe document is actually saved. The request can return an array of TextEdits\nwhich will be applied to the text document before it is saved. Please note that\nclients might drop results if computing the text edits took too long or if a\nserver constantly fails on this request. This is done to keep the save fast and\nreliable."
+		},
+		{
+			"method": "textDocument/completion",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CompletionItem"
+						}
+					},
+					{
+						"kind": "reference",
+						"name": "CompletionList"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CompletionParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "CompletionItem"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "CompletionRegistrationOptions"
+			},
+			"documentation": "Request to request completion at a given text document position. The request's\nparameter is of type {@link TextDocumentPosition} the response\nis of type {@link CompletionItem CompletionItem[]} or {@link CompletionList}\nor a Thenable that resolves to such.\n\nThe request can delay the computation of the {@link CompletionItem.detail `detail`}\nand {@link CompletionItem.documentation `documentation`} properties to the `completionItem/resolve`\nrequest. However, properties that are needed for the initial sorting and filtering, like `sortText`,\n`filterText`, `insertText`, and `textEdit`, must not be changed during resolve."
+		},
+		{
+			"method": "completionItem/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "CompletionItem"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CompletionItem"
+			},
+			"documentation": "Request to resolve additional information for a given completion item.The request's\nparameter is of type {@link CompletionItem} the response\nis of type {@link CompletionItem} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/hover",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Hover"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "HoverParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "HoverRegistrationOptions"
+			},
+			"documentation": "Request to request hover information at a given text document position. The request's\nparameter is of type {@link TextDocumentPosition} the response is of\ntype {@link Hover} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/signatureHelp",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "SignatureHelp"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SignatureHelpParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "SignatureHelpRegistrationOptions"
+			}
+		},
+		{
+			"method": "textDocument/definition",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Definition"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DefinitionLink"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DefinitionParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DefinitionLink"
+						}
+					}
+				]
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DefinitionRegistrationOptions"
+			},
+			"documentation": "A request to resolve the definition location of a symbol at a given text\ndocument position. The request's parameter is of type {@link TextDocumentPosition}\nthe response is of either type {@link Definition} or a typed array of\n{@link DefinitionLink} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/references",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "ReferenceParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "Location"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "ReferenceRegistrationOptions"
+			},
+			"documentation": "A request to resolve project-wide references for the symbol denoted\nby the given text document position. The request's parameter is of\ntype {@link ReferenceParams} the response is of type\n{@link Location Location[]} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/documentHighlight",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DocumentHighlight"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentHighlightParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "DocumentHighlight"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentHighlightRegistrationOptions"
+			},
+			"documentation": "Request to resolve a {@link DocumentHighlight} for a given\ntext document position. The request's parameter is of type {@link TextDocumentPosition}\nthe request response is an array of type {@link DocumentHighlight}\nor a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/documentSymbol",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolInformation"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DocumentSymbol"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentSymbolParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolInformation"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DocumentSymbol"
+						}
+					}
+				]
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentSymbolRegistrationOptions"
+			},
+			"documentation": "A request to list all symbols found in a given text document. The request's\nparameter is of type {@link TextDocumentIdentifier} the\nresponse is of type {@link SymbolInformation SymbolInformation[]} or a Thenable\nthat resolves to such."
+		},
+		{
+			"method": "textDocument/codeAction",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "Command"
+								},
+								{
+									"kind": "reference",
+									"name": "CodeAction"
+								}
+							]
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CodeActionParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "or",
+					"items": [
+						{
+							"kind": "reference",
+							"name": "Command"
+						},
+						{
+							"kind": "reference",
+							"name": "CodeAction"
+						}
+					]
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "CodeActionRegistrationOptions"
+			},
+			"documentation": "A request to provide commands for the given text document and range."
+		},
+		{
+			"method": "codeAction/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "CodeAction"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CodeAction"
+			},
+			"documentation": "Request to resolve additional information for a given code action.The request's\nparameter is of type {@link CodeAction} the response\nis of type {@link CodeAction} or a Thenable that resolves to such."
+		},
+		{
+			"method": "workspace/symbol",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolInformation"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceSymbol"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WorkspaceSymbolParams"
+			},
+			"partialResult": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolInformation"
+						}
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceSymbol"
+						}
+					}
+				]
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "WorkspaceSymbolRegistrationOptions"
+			},
+			"documentation": "A request to list project-wide symbols matching the query string given\nby the {@link WorkspaceSymbolParams}. The response is\nof type {@link SymbolInformation SymbolInformation[]} or a Thenable that\nresolves to such.\n\n@since 3.17.0 - support for WorkspaceSymbol in the returned data. Clients\n need to advertise support for WorkspaceSymbols via the client capability\n `workspace.symbol.resolveSupport`.\n",
+			"since": "3.17.0 - support for WorkspaceSymbol in the returned data. Clients\nneed to advertise support for WorkspaceSymbols via the client capability\n`workspace.symbol.resolveSupport`."
+		},
+		{
+			"method": "workspaceSymbol/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "WorkspaceSymbol"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WorkspaceSymbol"
+			},
+			"documentation": "A request to resolve the range inside the workspace\nsymbol's location.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "textDocument/codeLens",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CodeLens"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CodeLensParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "CodeLens"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "CodeLensRegistrationOptions"
+			},
+			"documentation": "A request to provide code lens for the given text document."
+		},
+		{
+			"method": "codeLens/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "CodeLens"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CodeLens"
+			},
+			"documentation": "A request to resolve a command for a given code lens."
+		},
+		{
+			"method": "workspace/codeLens/refresh",
+			"result": {
+				"kind": "base",
+				"name": "null"
+			},
+			"messageDirection": "serverToClient",
+			"documentation": "A request to refresh all code actions\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "textDocument/documentLink",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DocumentLink"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentLinkParams"
+			},
+			"partialResult": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "DocumentLink"
+				}
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentLinkRegistrationOptions"
+			},
+			"documentation": "A request to provide document links"
+		},
+		{
+			"method": "documentLink/resolve",
+			"result": {
+				"kind": "reference",
+				"name": "DocumentLink"
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentLink"
+			},
+			"documentation": "Request to resolve additional information for a given document link. The request's\nparameter is of type {@link DocumentLink} the response\nis of type {@link DocumentLink} or a Thenable that resolves to such."
+		},
+		{
+			"method": "textDocument/formatting",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentFormattingParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentFormattingRegistrationOptions"
+			},
+			"documentation": "A request to format a whole document."
+		},
+		{
+			"method": "textDocument/rangeFormatting",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentRangeFormattingParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentRangeFormattingRegistrationOptions"
+			},
+			"documentation": "A request to format a range in a document."
+		},
+		{
+			"method": "textDocument/rangesFormatting",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentRangesFormattingParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentRangeFormattingRegistrationOptions"
+			},
+			"documentation": "A request to format ranges in a document.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"method": "textDocument/onTypeFormatting",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DocumentOnTypeFormattingParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DocumentOnTypeFormattingRegistrationOptions"
+			},
+			"documentation": "A request to format a document on type."
+		},
+		{
+			"method": "textDocument/rename",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "RenameParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "RenameRegistrationOptions"
+			},
+			"documentation": "A request to rename a symbol."
+		},
+		{
+			"method": "textDocument/prepareRename",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "PrepareRenameResult"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "PrepareRenameParams"
+			},
+			"documentation": "A request to test and perform the setup necessary for a rename.\n\n@since 3.16 - support for default behavior",
+			"since": "3.16 - support for default behavior"
+		},
+		{
+			"method": "workspace/executeCommand",
+			"result": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "ExecuteCommandParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "ExecuteCommandRegistrationOptions"
+			},
+			"documentation": "A request send from the client to the server to execute a command. The request might return\na workspace edit which the client will apply to the workspace."
+		},
+		{
+			"method": "workspace/applyEdit",
+			"result": {
+				"kind": "reference",
+				"name": "ApplyWorkspaceEditResult"
+			},
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "ApplyWorkspaceEditParams"
+			},
+			"documentation": "A request sent from the server to the client to modified certain resources."
+		}
+	],
+	"notifications": [
+		{
+			"method": "workspace/didChangeWorkspaceFolders",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidChangeWorkspaceFoldersParams"
+			},
+			"documentation": "The `workspace/didChangeWorkspaceFolders` notification is sent from the client to the server when the workspace\nfolder configuration changes."
+		},
+		{
+			"method": "window/workDoneProgress/cancel",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WorkDoneProgressCancelParams"
+			},
+			"documentation": "The `window/workDoneProgress/cancel` notification is sent from  the client to the server to cancel a progress\ninitiated on the server side."
+		},
+		{
+			"method": "workspace/didCreateFiles",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "CreateFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The did create files notification is sent from the client to the server when\nfiles were created from within the client.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/didRenameFiles",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "RenameFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The did rename files notification is sent from the client to the server when\nfiles were renamed from within the client.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "workspace/didDeleteFiles",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DeleteFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "FileOperationRegistrationOptions"
+			},
+			"documentation": "The will delete files request is sent from the client to the server before files are actually\ndeleted as long as the deletion is triggered from within the client.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"method": "notebookDocument/didOpen",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidOpenNotebookDocumentParams"
+			},
+			"registrationMethod": "notebookDocument/sync",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "NotebookDocumentSyncRegistrationOptions"
+			},
+			"documentation": "A notification sent when a notebook opens.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "notebookDocument/didChange",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidChangeNotebookDocumentParams"
+			},
+			"registrationMethod": "notebookDocument/sync",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "NotebookDocumentSyncRegistrationOptions"
+			}
+		},
+		{
+			"method": "notebookDocument/didSave",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidSaveNotebookDocumentParams"
+			},
+			"registrationMethod": "notebookDocument/sync",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "NotebookDocumentSyncRegistrationOptions"
+			},
+			"documentation": "A notification sent when a notebook document is saved.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "notebookDocument/didClose",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidCloseNotebookDocumentParams"
+			},
+			"registrationMethod": "notebookDocument/sync",
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "NotebookDocumentSyncRegistrationOptions"
+			},
+			"documentation": "A notification sent when a notebook closes.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"method": "initialized",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "InitializedParams"
+			},
+			"documentation": "The initialized notification is sent from the client to the\nserver after the client is fully initialized and the server\nis allowed to send requests from the server to the client."
+		},
+		{
+			"method": "exit",
+			"messageDirection": "clientToServer",
+			"documentation": "The exit event is sent from the client to the server to\nask the server to exit its process."
+		},
+		{
+			"method": "workspace/didChangeConfiguration",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidChangeConfigurationParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DidChangeConfigurationRegistrationOptions"
+			},
+			"documentation": "The configuration change notification is sent from the client to the server\nwhen the client's configuration has changed. The notification contains\nthe changed configuration as defined by the language client."
+		},
+		{
+			"method": "window/showMessage",
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "ShowMessageParams"
+			},
+			"documentation": "The show message notification is sent from a server to a client to ask\nthe client to display a particular message in the user interface."
+		},
+		{
+			"method": "window/logMessage",
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "LogMessageParams"
+			},
+			"documentation": "The log message notification is sent from the server to the client to ask\nthe client to log a particular message."
+		},
+		{
+			"method": "telemetry/event",
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "LSPAny"
+			},
+			"documentation": "The telemetry event notification is sent from the server to the client to ask\nthe client to log telemetry data."
+		},
+		{
+			"method": "textDocument/didOpen",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidOpenTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentRegistrationOptions"
+			},
+			"documentation": "The document open notification is sent from the client to the server to signal\nnewly opened text documents. The document's truth is now managed by the client\nand the server must not try to read the document's truth using the document's\nuri. Open in this sense means it is managed by the client. It doesn't necessarily\nmean that its content is presented in an editor. An open notification must not\nbe sent more than once without a corresponding close notification send before.\nThis means open and close notification must be balanced and the max open count\nis one."
+		},
+		{
+			"method": "textDocument/didChange",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidChangeTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentChangeRegistrationOptions"
+			},
+			"documentation": "The document change notification is sent from the client to the server to signal\nchanges to a text document."
+		},
+		{
+			"method": "textDocument/didClose",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidCloseTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentRegistrationOptions"
+			},
+			"documentation": "The document close notification is sent from the client to the server when\nthe document got closed in the client. The document's truth now exists where\nthe document's uri points to (e.g. if the document's uri is a file uri the\ntruth now exists on disk). As with the open notification the close notification\nis about managing the document's content. Receiving a close notification\ndoesn't mean that the document was open in an editor before. A close\nnotification requires a previous open notification to be sent."
+		},
+		{
+			"method": "textDocument/didSave",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidSaveTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentSaveRegistrationOptions"
+			},
+			"documentation": "The document save notification is sent from the client to the server when\nthe document got saved in the client."
+		},
+		{
+			"method": "textDocument/willSave",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "WillSaveTextDocumentParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "TextDocumentRegistrationOptions"
+			},
+			"documentation": "A document will save notification is sent from the client to the server before\nthe document is actually saved."
+		},
+		{
+			"method": "workspace/didChangeWatchedFiles",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "DidChangeWatchedFilesParams"
+			},
+			"registrationOptions": {
+				"kind": "reference",
+				"name": "DidChangeWatchedFilesRegistrationOptions"
+			},
+			"documentation": "The watched files notification is sent from the client to the server when\nthe client detects changes to file watched by the language client."
+		},
+		{
+			"method": "textDocument/publishDiagnostics",
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "PublishDiagnosticsParams"
+			},
+			"documentation": "Diagnostics notification are sent from the server to the client to signal\nresults of validation runs."
+		},
+		{
+			"method": "$/setTrace",
+			"messageDirection": "clientToServer",
+			"params": {
+				"kind": "reference",
+				"name": "SetTraceParams"
+			}
+		},
+		{
+			"method": "$/logTrace",
+			"messageDirection": "serverToClient",
+			"params": {
+				"kind": "reference",
+				"name": "LogTraceParams"
+			}
+		},
+		{
+			"method": "$/cancelRequest",
+			"messageDirection": "both",
+			"params": {
+				"kind": "reference",
+				"name": "CancelParams"
+			}
+		},
+		{
+			"method": "$/progress",
+			"messageDirection": "both",
+			"params": {
+				"kind": "reference",
+				"name": "ProgressParams"
+			}
+		}
+	],
+	"structures": [
+		{
+			"name": "ImplementationParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			]
+		},
+		{
+			"name": "Location",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					}
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					}
+				}
+			],
+			"documentation": "Represents a location inside a resource, such as a line\ninside a text file."
+		},
+		{
+			"name": "ImplementationRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "ImplementationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "TypeDefinitionParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			]
+		},
+		{
+			"name": "TypeDefinitionRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TypeDefinitionOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "WorkspaceFolder",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "The associated URI for this workspace folder."
+				},
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of the workspace folder. Used to refer to this\nworkspace folder in the user interface."
+				}
+			],
+			"documentation": "A workspace folder inside a client."
+		},
+		{
+			"name": "DidChangeWorkspaceFoldersParams",
+			"properties": [
+				{
+					"name": "event",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceFoldersChangeEvent"
+					},
+					"documentation": "The actual workspace folder change event."
+				}
+			],
+			"documentation": "The parameters of a `workspace/didChangeWorkspaceFolders` notification."
+		},
+		{
+			"name": "ConfigurationParams",
+			"properties": [
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "ConfigurationItem"
+						}
+					}
+				}
+			],
+			"documentation": "The parameters of a configuration request."
+		},
+		{
+			"name": "DocumentColorParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link DocumentColorRequest}."
+		},
+		{
+			"name": "ColorInformation",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range in the document where this color appears."
+				},
+				{
+					"name": "color",
+					"type": {
+						"kind": "reference",
+						"name": "Color"
+					},
+					"documentation": "The actual color value for this color range."
+				}
+			],
+			"documentation": "Represents a color range from a document."
+		},
+		{
+			"name": "DocumentColorRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentColorOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "ColorPresentationParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "color",
+					"type": {
+						"kind": "reference",
+						"name": "Color"
+					},
+					"documentation": "The color to request presentations for."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range where the color would be inserted. Serves as a context."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link ColorPresentationRequest}."
+		},
+		{
+			"name": "ColorPresentation",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The label of this color presentation. It will be shown on the color\npicker header. By default this is also the text that is inserted when selecting\nthis color presentation."
+				},
+				{
+					"name": "textEdit",
+					"type": {
+						"kind": "reference",
+						"name": "TextEdit"
+					},
+					"optional": true,
+					"documentation": "An {@link TextEdit edit} which is applied to a document when selecting\nthis presentation for the color.  When `falsy` the {@link ColorPresentation.label label}\nis used."
+				},
+				{
+					"name": "additionalTextEdits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					"optional": true,
+					"documentation": "An optional array of additional {@link TextEdit text edits} that are applied when\nselecting this color presentation. Edits must not overlap with the main {@link ColorPresentation.textEdit edit} nor with themselves."
+				}
+			]
+		},
+		{
+			"name": "WorkDoneProgressOptions",
+			"properties": [
+				{
+					"name": "workDoneProgress",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true
+				}
+			]
+		},
+		{
+			"name": "TextDocumentRegistrationOptions",
+			"properties": [
+				{
+					"name": "documentSelector",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "DocumentSelector"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "A document selector to identify the scope of the registration. If set to null\nthe document selector provided on the client side will be used."
+				}
+			],
+			"documentation": "General text document registration options."
+		},
+		{
+			"name": "FoldingRangeParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link FoldingRangeRequest}."
+		},
+		{
+			"name": "FoldingRange",
+			"properties": [
+				{
+					"name": "startLine",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The zero-based start line of the range to fold. The folded area starts after the line's last character.\nTo be valid, the end must be zero or larger and smaller than the number of lines in the document."
+				},
+				{
+					"name": "startCharacter",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line."
+				},
+				{
+					"name": "endLine",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The zero-based end line of the range to fold. The folded area ends with the line's last character.\nTo be valid, the end must be zero or larger and smaller than the number of lines in the document."
+				},
+				{
+					"name": "endCharacter",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "FoldingRangeKind"
+					},
+					"optional": true,
+					"documentation": "Describes the kind of the folding range such as 'comment' or 'region'. The kind\nis used to categorize folding ranges and used by commands like 'Fold all comments'.\nSee {@link FoldingRangeKind} for an enumeration of standardized kinds."
+				},
+				{
+					"name": "collapsedText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The text that the client should show when the specified range is\ncollapsed. If not defined or not supported by the client, a default\nwill be chosen by the client.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Represents a folding range. To be valid, start and end line must be bigger than zero and smaller\nthan the number of lines in the document. Clients are free to ignore invalid ranges."
+		},
+		{
+			"name": "FoldingRangeRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "FoldingRangeOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "DeclarationParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			]
+		},
+		{
+			"name": "DeclarationRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "DeclarationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "SelectionRangeParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "positions",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Position"
+						}
+					},
+					"documentation": "The positions inside the text document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "A parameter literal used in selection range requests."
+		},
+		{
+			"name": "SelectionRange",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The {@link Range range} of this selection range."
+				},
+				{
+					"name": "parent",
+					"type": {
+						"kind": "reference",
+						"name": "SelectionRange"
+					},
+					"optional": true,
+					"documentation": "The parent selection range containing this range. Therefore `parent.range` must contain `this.range`."
+				}
+			],
+			"documentation": "A selection range represents a part of a selection hierarchy. A selection range\nmay have a parent selection range that contains it."
+		},
+		{
+			"name": "SelectionRangeRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "SelectionRangeOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "WorkDoneProgressCreateParams",
+			"properties": [
+				{
+					"name": "token",
+					"type": {
+						"kind": "reference",
+						"name": "ProgressToken"
+					},
+					"documentation": "The token to be used to report progress."
+				}
+			]
+		},
+		{
+			"name": "WorkDoneProgressCancelParams",
+			"properties": [
+				{
+					"name": "token",
+					"type": {
+						"kind": "reference",
+						"name": "ProgressToken"
+					},
+					"documentation": "The token to be used to report progress."
+				}
+			]
+		},
+		{
+			"name": "CallHierarchyPrepareParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameter of a `textDocument/prepareCallHierarchy` request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyItem",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of this item."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "SymbolKind"
+					},
+					"documentation": "The kind of this item."
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Tags for this item."
+				},
+				{
+					"name": "detail",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "More detail for this item, e.g. the signature of a function."
+				},
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The resource identifier of this item."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code."
+				},
+				{
+					"name": "selectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.\nMust be contained by the {@link CallHierarchyItem.range `range`}."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved between a call hierarchy prepare and\nincoming calls or outgoing calls requests."
+				}
+			],
+			"documentation": "Represents programming constructs like functions or constructors in the context\nof call hierarchy.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "CallHierarchyOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Call hierarchy options used during static or dynamic registration.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyIncomingCallsParams",
+			"properties": [
+				{
+					"name": "item",
+					"type": {
+						"kind": "reference",
+						"name": "CallHierarchyItem"
+					}
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameter of a `callHierarchy/incomingCalls` request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyIncomingCall",
+			"properties": [
+				{
+					"name": "from",
+					"type": {
+						"kind": "reference",
+						"name": "CallHierarchyItem"
+					},
+					"documentation": "The item that makes the call."
+				},
+				{
+					"name": "fromRanges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Range"
+						}
+					},
+					"documentation": "The ranges at which the calls appear. This is relative to the caller\ndenoted by {@link CallHierarchyIncomingCall.from `this.from`}."
+				}
+			],
+			"documentation": "Represents an incoming call, e.g. a caller of a method or constructor.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyOutgoingCallsParams",
+			"properties": [
+				{
+					"name": "item",
+					"type": {
+						"kind": "reference",
+						"name": "CallHierarchyItem"
+					}
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameter of a `callHierarchy/outgoingCalls` request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CallHierarchyOutgoingCall",
+			"properties": [
+				{
+					"name": "to",
+					"type": {
+						"kind": "reference",
+						"name": "CallHierarchyItem"
+					},
+					"documentation": "The item that is called."
+				},
+				{
+					"name": "fromRanges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Range"
+						}
+					},
+					"documentation": "The range at which this item is called. This is the range relative to the caller, e.g the item\npassed to {@link CallHierarchyItemProvider.provideCallHierarchyOutgoingCalls `provideCallHierarchyOutgoingCalls`}\nand not {@link CallHierarchyOutgoingCall.to `this.to`}."
+				}
+			],
+			"documentation": "Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokens",
+			"properties": [
+				{
+					"name": "resultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional result id. If provided and clients support delta updating\nthe client will include the result id in the next semantic token request.\nA server can then instead of computing all semantic tokens again simply\nsend a delta."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "uinteger"
+						}
+					},
+					"documentation": "The actual tokens."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensPartialResult",
+			"properties": [
+				{
+					"name": "data",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "uinteger"
+						}
+					}
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "SemanticTokensOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensDeltaParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "previousResultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The result id of a previous response. The result Id can either point to a full response\nor a delta response depending on what was received last."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensDelta",
+			"properties": [
+				{
+					"name": "resultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true
+				},
+				{
+					"name": "edits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SemanticTokensEdit"
+						}
+					},
+					"documentation": "The semantic token edits to transform a previous result into a new result."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensDeltaPartialResult",
+			"properties": [
+				{
+					"name": "edits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SemanticTokensEdit"
+						}
+					}
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensRangeParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range the semantic tokens are requested for."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "ShowDocumentParams",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "The uri to show."
+				},
+				{
+					"name": "external",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Indicates to show the resource in an external program.\nTo show, for example, `https://code.visualstudio.com/`\nin the default WEB browser set `external` to `true`."
+				},
+				{
+					"name": "takeFocus",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "An optional property to indicate whether the editor\nshowing the document should take focus or not.\nClients might ignore this property if an external\nprogram is started."
+				},
+				{
+					"name": "selection",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"optional": true,
+					"documentation": "An optional selection range if the document is a text\ndocument. Clients might ignore the property if an\nexternal program is started or the file is not a text\nfile."
+				}
+			],
+			"documentation": "Params to show a resource in the UI.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "ShowDocumentResult",
+			"properties": [
+				{
+					"name": "success",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "A boolean indicating if the show was successful."
+				}
+			],
+			"documentation": "The result of a showDocument request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "LinkedEditingRangeParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			]
+		},
+		{
+			"name": "LinkedEditingRanges",
+			"properties": [
+				{
+					"name": "ranges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Range"
+						}
+					},
+					"documentation": "A list of ranges that can be edited together. The ranges must have\nidentical length and contain identical text content. The ranges cannot overlap."
+				},
+				{
+					"name": "wordPattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional word pattern (regular expression) that describes valid contents for\nthe given ranges. If no pattern is provided, the client configuration's word\npattern will be used."
+				}
+			],
+			"documentation": "The result of a linked editing range request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "LinkedEditingRangeRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "LinkedEditingRangeOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			]
+		},
+		{
+			"name": "CreateFilesParams",
+			"properties": [
+				{
+					"name": "files",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileCreate"
+						}
+					},
+					"documentation": "An array of all files/folders created in this operation."
+				}
+			],
+			"documentation": "The parameters sent in notifications/requests for user-initiated creation of\nfiles.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "WorkspaceEdit",
+			"properties": [
+				{
+					"name": "changes",
+					"type": {
+						"kind": "map",
+						"key": {
+							"kind": "base",
+							"name": "DocumentUri"
+						},
+						"value": {
+							"kind": "array",
+							"element": {
+								"kind": "reference",
+								"name": "TextEdit"
+							}
+						}
+					},
+					"optional": true,
+					"documentation": "Holds changes to existing resources."
+				},
+				{
+					"name": "documentChanges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "TextDocumentEdit"
+								},
+								{
+									"kind": "reference",
+									"name": "CreateFile"
+								},
+								{
+									"kind": "reference",
+									"name": "RenameFile"
+								},
+								{
+									"kind": "reference",
+									"name": "DeleteFile"
+								}
+							]
+						}
+					},
+					"optional": true,
+					"documentation": "Depending on the client capability `workspace.workspaceEdit.resourceOperations` document changes\nare either an array of `TextDocumentEdit`s to express changes to n different text documents\nwhere each text document edit addresses a specific version of a text document. Or it can contain\nabove `TextDocumentEdit`s mixed with create, rename and delete file / folder operations.\n\nWhether a client supports versioned document edits is expressed via\n`workspace.workspaceEdit.documentChanges` client capability.\n\nIf a client neither supports `documentChanges` nor `workspace.workspaceEdit.resourceOperations` then\nonly plain `TextEdit`s using the `changes` property are supported."
+				},
+				{
+					"name": "changeAnnotations",
+					"type": {
+						"kind": "map",
+						"key": {
+							"kind": "reference",
+							"name": "ChangeAnnotationIdentifier"
+						},
+						"value": {
+							"kind": "reference",
+							"name": "ChangeAnnotation"
+						}
+					},
+					"optional": true,
+					"documentation": "A map of change annotations that can be referenced in `AnnotatedTextEdit`s or create, rename and\ndelete file / folder operations.\n\nWhether clients honor this property depends on the client capability `workspace.changeAnnotationSupport`.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "A workspace edit represents changes to many resources managed in the workspace. The edit\nshould either provide `changes` or `documentChanges`. If documentChanges are present\nthey are preferred over `changes` if the client can handle versioned document edits.\n\nSince version 3.13.0 a workspace edit can contain resource operations as well. If resource\noperations are present clients need to execute the operations in the order in which they\nare provided. So a workspace edit for example can consist of the following two changes:\n(1) a create file a.txt and (2) a text document edit which insert text into file a.txt.\n\nAn invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will\ncause failure of the operation. How the client recovers from the failure is described by\nthe client capability: `workspace.workspaceEdit.failureHandling`"
+		},
+		{
+			"name": "FileOperationRegistrationOptions",
+			"properties": [
+				{
+					"name": "filters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileOperationFilter"
+						}
+					},
+					"documentation": "The actual filters."
+				}
+			],
+			"documentation": "The options to register for file operations.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "RenameFilesParams",
+			"properties": [
+				{
+					"name": "files",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileRename"
+						}
+					},
+					"documentation": "An array of all files/folders renamed in this operation. When a folder is renamed, only\nthe folder will be included, and not its children."
+				}
+			],
+			"documentation": "The parameters sent in notifications/requests for user-initiated renames of\nfiles.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "DeleteFilesParams",
+			"properties": [
+				{
+					"name": "files",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileDelete"
+						}
+					},
+					"documentation": "An array of all files/folders deleted in this operation."
+				}
+			],
+			"documentation": "The parameters sent in notifications/requests for user-initiated deletes of\nfiles.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MonikerParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			]
+		},
+		{
+			"name": "Moniker",
+			"properties": [
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The scheme of the moniker. For example tsc or .Net"
+				},
+				{
+					"name": "identifier",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The identifier of the moniker. The value is opaque in LSIF however\nschema owners are allowed to define the structure if they want."
+				},
+				{
+					"name": "unique",
+					"type": {
+						"kind": "reference",
+						"name": "UniquenessLevel"
+					},
+					"documentation": "The scope in which the moniker is unique"
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "MonikerKind"
+					},
+					"optional": true,
+					"documentation": "The moniker kind if known."
+				}
+			],
+			"documentation": "Moniker definition to match LSIF 0.5 moniker definition.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MonikerRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "MonikerOptions"
+				}
+			]
+		},
+		{
+			"name": "TypeHierarchyPrepareParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameter of a `textDocument/prepareTypeHierarchy` request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TypeHierarchyItem",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of this item."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "SymbolKind"
+					},
+					"documentation": "The kind of this item."
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Tags for this item."
+				},
+				{
+					"name": "detail",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "More detail for this item, e.g. the signature of a function."
+				},
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The resource identifier of this item."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range enclosing this symbol not including leading/trailing whitespace\nbut everything else, e.g. comments and code."
+				},
+				{
+					"name": "selectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range that should be selected and revealed when this symbol is being\npicked, e.g. the name of a function. Must be contained by the\n{@link TypeHierarchyItem.range `range`}."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved between a type hierarchy prepare and\nsupertypes or subtypes requests. It could also be used to identify the\ntype hierarchy in the server, helping improve the performance on\nresolving supertypes and subtypes."
+				}
+			],
+			"documentation": "@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TypeHierarchyRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TypeHierarchyOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Type hierarchy options used during static or dynamic registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TypeHierarchySupertypesParams",
+			"properties": [
+				{
+					"name": "item",
+					"type": {
+						"kind": "reference",
+						"name": "TypeHierarchyItem"
+					}
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameter of a `typeHierarchy/supertypes` request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TypeHierarchySubtypesParams",
+			"properties": [
+				{
+					"name": "item",
+					"type": {
+						"kind": "reference",
+						"name": "TypeHierarchyItem"
+					}
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameter of a `typeHierarchy/subtypes` request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range for which inline values should be computed."
+				},
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "InlineValueContext"
+					},
+					"documentation": "Additional information about the context in which inline values were\nrequested."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "A parameter literal used in inline value requests.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "InlineValueOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Inline value options used during static or dynamic registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHintParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range for which inlay hints should be computed."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "A parameter literal used in inlay hint requests.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHint",
+			"properties": [
+				{
+					"name": "position",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The position of this hint.\n\nIf multiple hints have the same position, they will be shown in the order\nthey appear in the response."
+				},
+				{
+					"name": "label",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "array",
+								"element": {
+									"kind": "reference",
+									"name": "InlayHintLabelPart"
+								}
+							}
+						]
+					},
+					"documentation": "The label of this hint. A human readable string or an array of\nInlayHintLabelPart label parts.\n\n*Note* that neither the string nor the label part can be empty."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "InlayHintKind"
+					},
+					"optional": true,
+					"documentation": "The kind of this hint. Can be omitted in which case the client\nshould fall back to a reasonable default."
+				},
+				{
+					"name": "textEdits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					"optional": true,
+					"documentation": "Optional text edits that are performed when accepting this inlay hint.\n\n*Note* that edits are expected to change the document so that the inlay\nhint (or its nearest variant) is now part of the document and the inlay\nhint itself is now obsolete."
+				},
+				{
+					"name": "tooltip",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The tooltip text when you hover over this item."
+				},
+				{
+					"name": "paddingLeft",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Render padding before the hint.\n\nNote: Padding should use the editor's background color, not the\nbackground color of the hint itself. That means padding can be used\nto visually align/separate an inlay hint."
+				},
+				{
+					"name": "paddingRight",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Render padding after the hint.\n\nNote: Padding should use the editor's background color, not the\nbackground color of the hint itself. That means padding can be used\nto visually align/separate an inlay hint."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on an inlay hint between\na `textDocument/inlayHint` and a `inlayHint/resolve` request."
+				}
+			],
+			"documentation": "Inlay hint information.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHintRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "InlayHintOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Inlay hint options used during static or dynamic registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DocumentDiagnosticParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "identifier",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The additional identifier  provided during registration."
+				},
+				{
+					"name": "previousResultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The result id of a previous response if provided."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters of the document diagnostic request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DocumentDiagnosticReportPartialResult",
+			"properties": [
+				{
+					"name": "relatedDocuments",
+					"type": {
+						"kind": "map",
+						"key": {
+							"kind": "base",
+							"name": "DocumentUri"
+						},
+						"value": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "FullDocumentDiagnosticReport"
+								},
+								{
+									"kind": "reference",
+									"name": "UnchangedDocumentDiagnosticReport"
+								}
+							]
+						}
+					}
+				}
+			],
+			"documentation": "A partial result for a document diagnostic report.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DiagnosticServerCancellationData",
+			"properties": [
+				{
+					"name": "retriggerRequest",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					}
+				}
+			],
+			"documentation": "Cancellation data returned from a diagnostic request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DiagnosticRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DiagnosticOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Diagnostic registration options.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceDiagnosticParams",
+			"properties": [
+				{
+					"name": "identifier",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The additional identifier provided during registration."
+				},
+				{
+					"name": "previousResultIds",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "PreviousResultId"
+						}
+					},
+					"documentation": "The currently known diagnostic reports with their\nprevious result ids."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters of the workspace diagnostic request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceDiagnosticReport",
+			"properties": [
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceDocumentDiagnosticReport"
+						}
+					}
+				}
+			],
+			"documentation": "A workspace diagnostic report.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceDiagnosticReportPartialResult",
+			"properties": [
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceDocumentDiagnosticReport"
+						}
+					}
+				}
+			],
+			"documentation": "A partial result for a workspace diagnostic report.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DidOpenNotebookDocumentParams",
+			"properties": [
+				{
+					"name": "notebookDocument",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocument"
+					},
+					"documentation": "The notebook document that got opened."
+				},
+				{
+					"name": "cellTextDocuments",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentItem"
+						}
+					},
+					"documentation": "The text documents that represent the content\nof a notebook cell."
+				}
+			],
+			"documentation": "The params sent in an open notebook document notification.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocumentSyncRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "NotebookDocumentSyncOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Registration options specific to a notebook.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DidChangeNotebookDocumentParams",
+			"properties": [
+				{
+					"name": "notebookDocument",
+					"type": {
+						"kind": "reference",
+						"name": "VersionedNotebookDocumentIdentifier"
+					},
+					"documentation": "The notebook document that did change. The version number points\nto the version after all provided changes have been applied. If\nonly the text document content of a cell changes the notebook version\ndoesn't necessarily have to change."
+				},
+				{
+					"name": "change",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentChangeEvent"
+					},
+					"documentation": "The actual changes to the notebook document.\n\nThe changes describe single state changes to the notebook document.\nSo if there are two changes c1 (at array index 0) and c2 (at array\nindex 1) for a notebook in state S then c1 moves the notebook from\nS to S' and c2 from S' to S''. So c1 is computed on the state S and\nc2 is computed on the state S'.\n\nTo mirror the content of a notebook using change events use the following approach:\n- start with the same initial content\n- apply the 'notebookDocument/didChange' notifications in the order you receive them.\n- apply the `NotebookChangeEvent`s in a single notification in the order\n  you receive them."
+				}
+			],
+			"documentation": "The params sent in a change notebook document notification.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DidSaveNotebookDocumentParams",
+			"properties": [
+				{
+					"name": "notebookDocument",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentIdentifier"
+					},
+					"documentation": "The notebook document that got saved."
+				}
+			],
+			"documentation": "The params sent in a save notebook document notification.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DidCloseNotebookDocumentParams",
+			"properties": [
+				{
+					"name": "notebookDocument",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentIdentifier"
+					},
+					"documentation": "The notebook document that got closed."
+				},
+				{
+					"name": "cellTextDocuments",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentIdentifier"
+						}
+					},
+					"documentation": "The text documents that represent the content\nof a notebook cell that got closed."
+				}
+			],
+			"documentation": "The params sent in a close notebook document notification.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineCompletionParams",
+			"properties": [
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "InlineCompletionContext"
+					},
+					"documentation": "Additional information about the context in which inline completions were\nrequested."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "A parameter literal used in inline completion requests.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "InlineCompletionList",
+			"properties": [
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "InlineCompletionItem"
+						}
+					},
+					"documentation": "The inline completion items"
+				}
+			],
+			"documentation": "Represents a collection of {@link InlineCompletionItem inline completion items} to be presented in the editor.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "InlineCompletionItem",
+			"properties": [
+				{
+					"name": "insertText",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "StringValue"
+							}
+						]
+					},
+					"documentation": "The text to replace the range with. Must be set."
+				},
+				{
+					"name": "filterText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A text that is used to decide if this inline completion should be shown. When `falsy` the {@link InlineCompletionItem.insertText} is used."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"optional": true,
+					"documentation": "The range to replace. Must begin and end on the same line."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"optional": true,
+					"documentation": "An optional {@link Command} that is executed *after* inserting this completion."
+				}
+			],
+			"documentation": "An inline completion item represents a text snippet that is proposed inline to complete text that is being typed.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "InlineCompletionRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "InlineCompletionOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "StaticRegistrationOptions"
+				}
+			],
+			"documentation": "Inline completion options used during static or dynamic registration.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "RegistrationParams",
+			"properties": [
+				{
+					"name": "registrations",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Registration"
+						}
+					}
+				}
+			]
+		},
+		{
+			"name": "UnregistrationParams",
+			"properties": [
+				{
+					"name": "unregisterations",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Unregistration"
+						}
+					}
+				}
+			]
+		},
+		{
+			"name": "InitializeParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "_InitializeParams"
+				},
+				{
+					"kind": "reference",
+					"name": "WorkspaceFoldersInitializeParams"
+				}
+			]
+		},
+		{
+			"name": "InitializeResult",
+			"properties": [
+				{
+					"name": "capabilities",
+					"type": {
+						"kind": "reference",
+						"name": "ServerCapabilities"
+					},
+					"documentation": "The capabilities the language server provides."
+				},
+				{
+					"name": "serverInfo",
+					"type": {
+						"kind": "reference",
+						"name": "ServerInfo"
+					},
+					"optional": true,
+					"documentation": "Information about the server.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"documentation": "The result returned from an initialize request."
+		},
+		{
+			"name": "InitializeError",
+			"properties": [
+				{
+					"name": "retry",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "Indicates whether the client execute the following retry logic:\n(1) show the message provided by the ResponseError to the user\n(2) user selects retry or cancel\n(3) if user selected retry the initialize method is sent again."
+				}
+			],
+			"documentation": "The data type of the ResponseError if the\ninitialize request fails."
+		},
+		{
+			"name": "InitializedParams",
+			"properties": []
+		},
+		{
+			"name": "DidChangeConfigurationParams",
+			"properties": [
+				{
+					"name": "settings",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"documentation": "The actual changed settings"
+				}
+			],
+			"documentation": "The parameters of a change configuration notification."
+		},
+		{
+			"name": "DidChangeConfigurationRegistrationOptions",
+			"properties": [
+				{
+					"name": "section",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "array",
+								"element": {
+									"kind": "base",
+									"name": "string"
+								}
+							}
+						]
+					},
+					"optional": true
+				}
+			]
+		},
+		{
+			"name": "ShowMessageParams",
+			"properties": [
+				{
+					"name": "type",
+					"type": {
+						"kind": "reference",
+						"name": "MessageType"
+					},
+					"documentation": "The message type. See {@link MessageType}"
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The actual message."
+				}
+			],
+			"documentation": "The parameters of a notification message."
+		},
+		{
+			"name": "ShowMessageRequestParams",
+			"properties": [
+				{
+					"name": "type",
+					"type": {
+						"kind": "reference",
+						"name": "MessageType"
+					},
+					"documentation": "The message type. See {@link MessageType}"
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The actual message."
+				},
+				{
+					"name": "actions",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "MessageActionItem"
+						}
+					},
+					"optional": true,
+					"documentation": "The message action items to present."
+				}
+			]
+		},
+		{
+			"name": "MessageActionItem",
+			"properties": [
+				{
+					"name": "title",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A short title like 'Retry', 'Open Log' etc."
+				}
+			]
+		},
+		{
+			"name": "LogMessageParams",
+			"properties": [
+				{
+					"name": "type",
+					"type": {
+						"kind": "reference",
+						"name": "MessageType"
+					},
+					"documentation": "The message type. See {@link MessageType}"
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The actual message."
+				}
+			],
+			"documentation": "The log message parameters."
+		},
+		{
+			"name": "DidOpenTextDocumentParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentItem"
+					},
+					"documentation": "The document that was opened."
+				}
+			],
+			"documentation": "The parameters sent in an open text document notification"
+		},
+		{
+			"name": "DidChangeTextDocumentParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "VersionedTextDocumentIdentifier"
+					},
+					"documentation": "The document that did change. The version number points\nto the version after all provided content changes have\nbeen applied."
+				},
+				{
+					"name": "contentChanges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentContentChangeEvent"
+						}
+					},
+					"documentation": "The actual content changes. The content changes describe single state changes\nto the document. So if there are two content changes c1 (at array index 0) and\nc2 (at array index 1) for a document in state S then c1 moves the document from\nS to S' and c2 from S' to S''. So c1 is computed on the state S and c2 is computed\non the state S'.\n\nTo mirror the content of a document using change events use the following approach:\n- start with the same initial content\n- apply the 'textDocument/didChange' notifications in the order you receive them.\n- apply the `TextDocumentContentChangeEvent`s in a single notification in the order\n  you receive them."
+				}
+			],
+			"documentation": "The change text document notification's parameters."
+		},
+		{
+			"name": "TextDocumentChangeRegistrationOptions",
+			"properties": [
+				{
+					"name": "syncKind",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentSyncKind"
+					},
+					"documentation": "How documents are synced to the server."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				}
+			],
+			"documentation": "Describe options to be used when registered for text document change events."
+		},
+		{
+			"name": "DidCloseTextDocumentParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document that was closed."
+				}
+			],
+			"documentation": "The parameters sent in a close text document notification"
+		},
+		{
+			"name": "DidSaveTextDocumentParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document that was saved."
+				},
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "Optional the content when saved. Depends on the includeText value\nwhen the save notification was requested."
+				}
+			],
+			"documentation": "The parameters sent in a save text document notification"
+		},
+		{
+			"name": "TextDocumentSaveRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "SaveOptions"
+				}
+			],
+			"documentation": "Save registration options."
+		},
+		{
+			"name": "WillSaveTextDocumentParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document that will be saved."
+				},
+				{
+					"name": "reason",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentSaveReason"
+					},
+					"documentation": "The 'TextDocumentSaveReason'."
+				}
+			],
+			"documentation": "The parameters sent in a will save text document notification."
+		},
+		{
+			"name": "TextEdit",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range of the text document to be manipulated. To insert\ntext into a document create a range where start === end."
+				},
+				{
+					"name": "newText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The string to be inserted. For delete operations use an\nempty string."
+				}
+			],
+			"documentation": "A text edit applicable to a text document."
+		},
+		{
+			"name": "DidChangeWatchedFilesParams",
+			"properties": [
+				{
+					"name": "changes",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileEvent"
+						}
+					},
+					"documentation": "The actual file events."
+				}
+			],
+			"documentation": "The watched files change notification's parameters."
+		},
+		{
+			"name": "DidChangeWatchedFilesRegistrationOptions",
+			"properties": [
+				{
+					"name": "watchers",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FileSystemWatcher"
+						}
+					},
+					"documentation": "The watchers to register."
+				}
+			],
+			"documentation": "Describe options to be used when registered for text document change events."
+		},
+		{
+			"name": "PublishDiagnosticsParams",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The URI for which diagnostic information is reported."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"optional": true,
+					"documentation": "Optional the version number of the document the diagnostics are published for.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "diagnostics",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Diagnostic"
+						}
+					},
+					"documentation": "An array of diagnostic information items."
+				}
+			],
+			"documentation": "The publish diagnostic notification's parameters."
+		},
+		{
+			"name": "CompletionParams",
+			"properties": [
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionContext"
+					},
+					"optional": true,
+					"documentation": "The completion context. This is only available it the client specifies\nto send this using the client capability `textDocument.completion.contextSupport === true`"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Completion parameters"
+		},
+		{
+			"name": "CompletionItem",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The label of this completion item.\n\nThe label property is also by default the text that\nis inserted when selecting this completion.\n\nIf label details are provided the label itself should\nbe an unqualified name of the completion item."
+				},
+				{
+					"name": "labelDetails",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionItemLabelDetails"
+					},
+					"optional": true,
+					"documentation": "Additional details for the label\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionItemKind"
+					},
+					"optional": true,
+					"documentation": "The kind of this completion item. Based of the kind\nan icon is chosen by the editor."
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CompletionItemTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Tags for this completion item.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "detail",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A human-readable string with additional information\nabout this item, like type or symbol information."
+				},
+				{
+					"name": "documentation",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "A human-readable string that represents a doc-comment."
+				},
+				{
+					"name": "deprecated",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Indicates if this item is deprecated.\n@deprecated Use `tags` instead.",
+					"deprecated": "Use `tags` instead."
+				},
+				{
+					"name": "preselect",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Select this item when showing.\n\n*Note* that only one completion item can be selected and that the\ntool / client decides which item that is. The rule is that the *first*\nitem of those that match best is selected."
+				},
+				{
+					"name": "sortText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A string that should be used when comparing this item\nwith other items. When `falsy` the {@link CompletionItem.label label}\nis used."
+				},
+				{
+					"name": "filterText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A string that should be used when filtering a set of\ncompletion items. When `falsy` the {@link CompletionItem.label label}\nis used."
+				},
+				{
+					"name": "insertText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A string that should be inserted into a document when selecting\nthis completion. When `falsy` the {@link CompletionItem.label label}\nis used.\n\nThe `insertText` is subject to interpretation by the client side.\nSome tools might not take the string literally. For example\nVS Code when code complete is requested in this example\n`con<cursor position>` and a completion item with an `insertText` of\n`console` is provided it will only insert `sole`. Therefore it is\nrecommended to use `textEdit` instead since it avoids additional client\nside interpretation."
+				},
+				{
+					"name": "insertTextFormat",
+					"type": {
+						"kind": "reference",
+						"name": "InsertTextFormat"
+					},
+					"optional": true,
+					"documentation": "The format of the insert text. The format applies to both the\n`insertText` property and the `newText` property of a provided\n`textEdit`. If omitted defaults to `InsertTextFormat.PlainText`.\n\nPlease note that the insertTextFormat doesn't apply to\n`additionalTextEdits`."
+				},
+				{
+					"name": "insertTextMode",
+					"type": {
+						"kind": "reference",
+						"name": "InsertTextMode"
+					},
+					"optional": true,
+					"documentation": "How whitespace and indentation is handled during completion\nitem insertion. If not provided the clients default value depends on\nthe `textDocument.completion.insertTextMode` client capability.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "textEdit",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "TextEdit"
+							},
+							{
+								"kind": "reference",
+								"name": "InsertReplaceEdit"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "An {@link TextEdit edit} which is applied to a document when selecting\nthis completion. When an edit is provided the value of\n{@link CompletionItem.insertText insertText} is ignored.\n\nMost editors support two different operations when accepting a completion\nitem. One is to insert a completion text and the other is to replace an\nexisting text with a completion text. Since this can usually not be\npredetermined by a server it can report both ranges. Clients need to\nsignal support for `InsertReplaceEdits` via the\n`textDocument.completion.insertReplaceSupport` client capability\nproperty.\n\n*Note 1:* The text edit's range as well as both ranges from an insert\nreplace edit must be a [single line] and they must contain the position\nat which completion has been requested.\n*Note 2:* If an `InsertReplaceEdit` is returned the edit's insert range\nmust be a prefix of the edit's replace range, that means it must be\ncontained and starting at the same position.\n\n@since 3.16.0 additional type `InsertReplaceEdit`",
+					"since": "3.16.0 additional type `InsertReplaceEdit`"
+				},
+				{
+					"name": "textEditText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The edit text used if the completion item is part of a CompletionList and\nCompletionList defines an item default for the text edit range.\n\nClients will only honor this property if they opt into completion list\nitem defaults using the capability `completionList.itemDefaults`.\n\nIf not provided and a list's default range is provided the label\nproperty is used as a text.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "additionalTextEdits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextEdit"
+						}
+					},
+					"optional": true,
+					"documentation": "An optional array of additional {@link TextEdit text edits} that are applied when\nselecting this completion. Edits must not overlap (including the same insert position)\nwith the main {@link CompletionItem.textEdit edit} nor with themselves.\n\nAdditional text edits should be used to change text unrelated to the current cursor position\n(for example adding an import statement at the top of the file if the completion item will\ninsert an unqualified type)."
+				},
+				{
+					"name": "commitCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "An optional set of characters that when pressed while this completion is active will accept it first and\nthen type that character. *Note* that all commit characters should have `length=1` and that superfluous\ncharacters will be ignored."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"optional": true,
+					"documentation": "An optional {@link Command command} that is executed *after* inserting this completion. *Note* that\nadditional modifications to the current document should be described with the\n{@link CompletionItem.additionalTextEdits additionalTextEdits}-property."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on a completion item between a\n{@link CompletionRequest} and a {@link CompletionResolveRequest}."
+				}
+			],
+			"documentation": "A completion item represents a text snippet that is\nproposed to complete text that is being typed."
+		},
+		{
+			"name": "CompletionList",
+			"properties": [
+				{
+					"name": "isIncomplete",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "This list it not complete. Further typing results in recomputing this list.\n\nRecomputed lists have all their items replaced (not appended) in the\nincomplete completion sessions."
+				},
+				{
+					"name": "itemDefaults",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionItemDefaults"
+					},
+					"optional": true,
+					"documentation": "In many cases the items of an actual completion result share the same\nvalue for properties like `commitCharacters` or the range of a text\nedit. A completion list can therefore define item defaults which will\nbe used if a completion item itself doesn't specify the value.\n\nIf a completion list specifies a default value and a completion item\nalso specifies a corresponding value the one from the item is used.\n\nServers are only allowed to return default values if the client\nsignals support for this via the `completionList.itemDefaults`\ncapability.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CompletionItem"
+						}
+					},
+					"documentation": "The completion items."
+				}
+			],
+			"documentation": "Represents a collection of {@link CompletionItem completion items} to be presented\nin the editor."
+		},
+		{
+			"name": "CompletionRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "CompletionOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link CompletionRequest}."
+		},
+		{
+			"name": "HoverParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "Parameters for a {@link HoverRequest}."
+		},
+		{
+			"name": "Hover",
+			"properties": [
+				{
+					"name": "contents",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkedString"
+							},
+							{
+								"kind": "array",
+								"element": {
+									"kind": "reference",
+									"name": "MarkedString"
+								}
+							}
+						]
+					},
+					"documentation": "The hover's content"
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"optional": true,
+					"documentation": "An optional range inside the text document that is used to\nvisualize the hover, e.g. by changing the background color."
+				}
+			],
+			"documentation": "The result of a hover request."
+		},
+		{
+			"name": "HoverRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "HoverOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link HoverRequest}."
+		},
+		{
+			"name": "SignatureHelpParams",
+			"properties": [
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "SignatureHelpContext"
+					},
+					"optional": true,
+					"documentation": "The signature help context. This is only available if the client specifies\nto send this using the client capability `textDocument.signatureHelp.contextSupport === true`\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "Parameters for a {@link SignatureHelpRequest}."
+		},
+		{
+			"name": "SignatureHelp",
+			"properties": [
+				{
+					"name": "signatures",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SignatureInformation"
+						}
+					},
+					"documentation": "One or more signatures."
+				},
+				{
+					"name": "activeSignature",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "The active signature. If omitted or the value lies outside the\nrange of `signatures` the value defaults to zero or is ignored if\nthe `SignatureHelp` has no signatures.\n\nWhenever possible implementors should make an active decision about\nthe active signature and shouldn't rely on a default value.\n\nIn future version of the protocol this property might become\nmandatory to better express this."
+				},
+				{
+					"name": "activeParameter",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "uinteger"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The active parameter of the active signature.\n\nIf `null`, no parameter of the signature is active (for example a named\nargument that does not match any declared parameters). This is only valid\nif the client specifies the client capability\n`textDocument.signatureHelp.noActiveParameterSupport === true`\n\nIf omitted or the value lies outside the range of\n`signatures[activeSignature].parameters` defaults to 0 if the active\nsignature has parameters.\n\nIf the active signature has no parameters it is ignored.\n\nIn future version of the protocol this property might become\nmandatory (but still nullable) to better express the active parameter if\nthe active signature does have any."
+				}
+			],
+			"documentation": "Signature help represents the signature of something\ncallable. There can be multiple signature but only one\nactive and only one active parameter."
+		},
+		{
+			"name": "SignatureHelpRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "SignatureHelpOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link SignatureHelpRequest}."
+		},
+		{
+			"name": "DefinitionParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link DefinitionRequest}."
+		},
+		{
+			"name": "DefinitionRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DefinitionOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DefinitionRequest}."
+		},
+		{
+			"name": "ReferenceParams",
+			"properties": [
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "ReferenceContext"
+					}
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link ReferencesRequest}."
+		},
+		{
+			"name": "ReferenceRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "ReferenceOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link ReferencesRequest}."
+		},
+		{
+			"name": "DocumentHighlightParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link DocumentHighlightRequest}."
+		},
+		{
+			"name": "DocumentHighlight",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range this highlight applies to."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentHighlightKind"
+					},
+					"optional": true,
+					"documentation": "The highlight kind, default is {@link DocumentHighlightKind.Text text}."
+				}
+			],
+			"documentation": "A document highlight is a range inside a text document which deserves\nspecial attention. Usually a document highlight is visualized by changing\nthe background color of its range."
+		},
+		{
+			"name": "DocumentHighlightRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentHighlightOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentHighlightRequest}."
+		},
+		{
+			"name": "DocumentSymbolParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "Parameters for a {@link DocumentSymbolRequest}."
+		},
+		{
+			"name": "SymbolInformation",
+			"properties": [
+				{
+					"name": "deprecated",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Indicates if this symbol is deprecated.\n\n@deprecated Use tags instead",
+					"deprecated": "Use tags instead"
+				},
+				{
+					"name": "location",
+					"type": {
+						"kind": "reference",
+						"name": "Location"
+					},
+					"documentation": "The location of this symbol. The location's range is used by a tool\nto reveal the location in the editor. If the symbol is selected in the\ntool the range's start information is used to position the cursor. So\nthe range usually spans more than the actual symbol's name and does\nnormally include things like visibility modifiers.\n\nThe range doesn't have to denote a node range in the sense of an abstract\nsyntax tree. It can therefore not be used to re-construct a hierarchy of\nthe symbols."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "BaseSymbolInformation"
+				}
+			],
+			"documentation": "Represents information about programming constructs like variables, classes,\ninterfaces etc."
+		},
+		{
+			"name": "DocumentSymbol",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of this symbol. Will be displayed in the user interface and therefore must not be\nan empty string or a string only consisting of white spaces."
+				},
+				{
+					"name": "detail",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "More detail for this symbol, e.g the signature of a function."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "SymbolKind"
+					},
+					"documentation": "The kind of this symbol."
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Tags for this document symbol.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "deprecated",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Indicates if this symbol is deprecated.\n\n@deprecated Use tags instead",
+					"deprecated": "Use tags instead"
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to determine if the clients cursor is\ninside the symbol to reveal in the symbol in the UI."
+				},
+				{
+					"name": "selectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.\nMust be contained by the `range`."
+				},
+				{
+					"name": "children",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DocumentSymbol"
+						}
+					},
+					"optional": true,
+					"documentation": "Children of this symbol, e.g. properties of a class."
+				}
+			],
+			"documentation": "Represents programming constructs like variables, classes, interfaces etc.\nthat appear in a document. Document symbols can be hierarchical and they\nhave two ranges: one that encloses its definition and one that points to\nits most interesting range, e.g. the range of an identifier."
+		},
+		{
+			"name": "DocumentSymbolRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentSymbolOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentSymbolRequest}."
+		},
+		{
+			"name": "CodeActionParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document in which the command was invoked."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range for which the command was invoked."
+				},
+				{
+					"name": "context",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionContext"
+					},
+					"documentation": "Context carrying additional information."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameters of a {@link CodeActionRequest}."
+		},
+		{
+			"name": "Command",
+			"properties": [
+				{
+					"name": "title",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "Title of the command, like `save`."
+				},
+				{
+					"name": "tooltip",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional tooltip.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The identifier of the actual command handler."
+				},
+				{
+					"name": "arguments",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "LSPAny"
+						}
+					},
+					"optional": true,
+					"documentation": "Arguments that the command handler should be\ninvoked with."
+				}
+			],
+			"documentation": "Represents a reference to a command. Provides a title which\nwill be used to represent a command in the UI and, optionally,\nan array of arguments which will be passed to the command handler\nfunction when invoked."
+		},
+		{
+			"name": "CodeAction",
+			"properties": [
+				{
+					"name": "title",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A short, human-readable, title for this code action."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionKind"
+					},
+					"optional": true,
+					"documentation": "The kind of the code action.\n\nUsed to filter code actions."
+				},
+				{
+					"name": "diagnostics",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Diagnostic"
+						}
+					},
+					"optional": true,
+					"documentation": "The diagnostics that this code action resolves."
+				},
+				{
+					"name": "isPreferred",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Marks this as a preferred action. Preferred actions are used by the `auto fix` command and can be targeted\nby keybindings.\n\nA quick fix should be marked preferred if it properly addresses the underlying error.\nA refactoring should be marked preferred if it is the most reasonable choice of actions to take.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "disabled",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionDisabled"
+					},
+					"optional": true,
+					"documentation": "Marks that the code action cannot currently be applied.\n\nClients should follow the following guidelines regarding disabled code actions:\n\n  - Disabled code actions are not shown in automatic [lightbulbs](https://code.visualstudio.com/docs/editor/editingevolved#_code-action)\n    code action menus.\n\n  - Disabled actions are shown as faded out in the code action menu when the user requests a more specific type\n    of code action, such as refactorings.\n\n  - If the user has a [keybinding](https://code.visualstudio.com/docs/editor/refactoring#_keybindings-for-code-actions)\n    that auto applies a code action and only disabled code actions are returned, the client should show the user an\n    error message with `reason` in the editor.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "edit",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					"optional": true,
+					"documentation": "The workspace edit this code action performs."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"optional": true,
+					"documentation": "A command this code action executes. If a code action\nprovides an edit and a command, first the edit is\nexecuted and then the command."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on a code action between\na `textDocument/codeAction` and a `codeAction/resolve` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "A code action represents a change that can be performed in code, e.g. to fix a problem or\nto refactor code.\n\nA CodeAction must set either `edit` and/or a `command`. If both are supplied, the `edit` is applied first, then the `command` is executed."
+		},
+		{
+			"name": "CodeActionRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "CodeActionOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link CodeActionRequest}."
+		},
+		{
+			"name": "WorkspaceSymbolParams",
+			"properties": [
+				{
+					"name": "query",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A query string to filter symbols by. Clients may send an empty\nstring here to request all symbols."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameters of a {@link WorkspaceSymbolRequest}."
+		},
+		{
+			"name": "WorkspaceSymbol",
+			"properties": [
+				{
+					"name": "location",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "Location"
+							},
+							{
+								"kind": "reference",
+								"name": "LocationUriOnly"
+							}
+						]
+					},
+					"documentation": "The location of the symbol. Whether a server is allowed to\nreturn a location without a range depends on the client\ncapability `workspace.symbol.resolveSupport`.\n\nSee SymbolInformation#location for more details."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on a workspace symbol between a\nworkspace symbol request and a workspace symbol resolve request."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "BaseSymbolInformation"
+				}
+			],
+			"documentation": "A special workspace symbol that supports locations without a range.\n\nSee also SymbolInformation.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceSymbolRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "WorkspaceSymbolOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link WorkspaceSymbolRequest}."
+		},
+		{
+			"name": "CodeLensParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to request code lens for."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameters of a {@link CodeLensRequest}."
+		},
+		{
+			"name": "CodeLens",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range in which this code lens is valid. Should only span a single line."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"optional": true,
+					"documentation": "The command this code lens represents."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on a code lens item between\na {@link CodeLensRequest} and a {@link CodeLensResolveRequest}"
+				}
+			],
+			"documentation": "A code lens represents a {@link Command command} that should be shown along with\nsource text, like the number of references, a way to run tests, etc.\n\nA code lens is _unresolved_ when no command is associated to it. For performance\nreasons the creation of a code lens and resolving should be done in two stages."
+		},
+		{
+			"name": "CodeLensRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "CodeLensOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link CodeLensRequest}."
+		},
+		{
+			"name": "DocumentLinkParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to provide document links for."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				},
+				{
+					"kind": "reference",
+					"name": "PartialResultParams"
+				}
+			],
+			"documentation": "The parameters of a {@link DocumentLinkRequest}."
+		},
+		{
+			"name": "DocumentLink",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range this link applies to."
+				},
+				{
+					"name": "target",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"optional": true,
+					"documentation": "The uri this link points to. If missing a resolve request is sent later."
+				},
+				{
+					"name": "tooltip",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The tooltip text when you hover over this link.\n\nIf a tooltip is provided, is will be displayed in a string that includes instructions on how to\ntrigger the link, such as `{0} (ctrl + click)`. The specific instructions vary depending on OS,\nuser settings, and localization.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved on a document link between a\nDocumentLinkRequest and a DocumentLinkResolveRequest."
+				}
+			],
+			"documentation": "A document link is a range in a text document that links to an internal or external resource, like another\ntext document or a web site."
+		},
+		{
+			"name": "DocumentLinkRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentLinkOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentLinkRequest}."
+		},
+		{
+			"name": "DocumentFormattingParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to format."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "FormattingOptions"
+					},
+					"documentation": "The format options."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameters of a {@link DocumentFormattingRequest}."
+		},
+		{
+			"name": "DocumentFormattingRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentFormattingOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentFormattingRequest}."
+		},
+		{
+			"name": "DocumentRangeFormattingParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to format."
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range to format"
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "FormattingOptions"
+					},
+					"documentation": "The format options"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameters of a {@link DocumentRangeFormattingRequest}."
+		},
+		{
+			"name": "DocumentRangeFormattingRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentRangeFormattingOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentRangeFormattingRequest}."
+		},
+		{
+			"name": "DocumentRangesFormattingParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to format."
+				},
+				{
+					"name": "ranges",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Range"
+						}
+					},
+					"documentation": "The ranges to format"
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "FormattingOptions"
+					},
+					"documentation": "The format options"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameters of a {@link DocumentRangesFormattingRequest}.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "DocumentOnTypeFormattingParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to format."
+				},
+				{
+					"name": "position",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The position around which the on type formatting should happen.\nThis is not necessarily the exact position where the character denoted\nby the property `ch` got typed."
+				},
+				{
+					"name": "ch",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The character that has been typed that triggered the formatting\non type request. That is not necessarily the last character that\ngot inserted into the document since the client could auto insert\ncharacters as well (e.g. like automatic brace completion)."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "FormattingOptions"
+					},
+					"documentation": "The formatting options."
+				}
+			],
+			"documentation": "The parameters of a {@link DocumentOnTypeFormattingRequest}."
+		},
+		{
+			"name": "DocumentOnTypeFormattingRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "DocumentOnTypeFormattingOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link DocumentOnTypeFormattingRequest}."
+		},
+		{
+			"name": "RenameParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The document to rename."
+				},
+				{
+					"name": "position",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The position at which this request was sent."
+				},
+				{
+					"name": "newName",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The new name of the symbol. If the given name is not valid the\nrequest must return a {@link ResponseError} with an\nappropriate message set."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameters of a {@link RenameRequest}."
+		},
+		{
+			"name": "RenameRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentRegistrationOptions"
+				},
+				{
+					"kind": "reference",
+					"name": "RenameOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link RenameRequest}."
+		},
+		{
+			"name": "PrepareRenameParams",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentPositionParams"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			]
+		},
+		{
+			"name": "ExecuteCommandParams",
+			"properties": [
+				{
+					"name": "command",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The identifier of the actual command handler."
+				},
+				{
+					"name": "arguments",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "LSPAny"
+						}
+					},
+					"optional": true,
+					"documentation": "Arguments that the command should be invoked with."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The parameters of a {@link ExecuteCommandRequest}."
+		},
+		{
+			"name": "ExecuteCommandRegistrationOptions",
+			"properties": [],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "ExecuteCommandOptions"
+				}
+			],
+			"documentation": "Registration options for a {@link ExecuteCommandRequest}."
+		},
+		{
+			"name": "ApplyWorkspaceEditParams",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional label of the workspace edit. This label is\npresented in the user interface for example on an undo\nstack to undo the workspace edit."
+				},
+				{
+					"name": "edit",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceEdit"
+					},
+					"documentation": "The edits to apply."
+				}
+			],
+			"documentation": "The parameters passed via an apply workspace edit request."
+		},
+		{
+			"name": "ApplyWorkspaceEditResult",
+			"properties": [
+				{
+					"name": "applied",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "Indicates whether the edit was applied or not."
+				},
+				{
+					"name": "failureReason",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional textual description for why the edit was not applied.\nThis may be used by the server for diagnostic logging or to provide\na suitable error for a request that triggered the edit."
+				},
+				{
+					"name": "failedChange",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "Depending on the client's failure handling strategy `failedChange` might\ncontain the index of the change that failed. This property is only available\nif the client signals a `failureHandlingStrategy` in its client capabilities."
+				}
+			],
+			"documentation": "The result returned from the apply workspace edit request.\n\n@since 3.17 renamed from ApplyWorkspaceEditResponse",
+			"since": "3.17 renamed from ApplyWorkspaceEditResponse"
+		},
+		{
+			"name": "WorkDoneProgressBegin",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "begin"
+					}
+				},
+				{
+					"name": "title",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "Mandatory title of the progress operation. Used to briefly inform about\nthe kind of operation being performed.\n\nExamples: \"Indexing\" or \"Linking dependencies\"."
+				},
+				{
+					"name": "cancellable",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Controls if a cancel button should show to allow the user to cancel the\nlong running operation. Clients that don't support cancellation are allowed\nto ignore the setting."
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "Optional, more detailed associated progress message. Contains\ncomplementary information to the `title`.\n\nExamples: \"3/25 files\", \"project/src/module2\", \"node_modules/some_dep\".\nIf unset, the previous progress message (if any) is still valid."
+				},
+				{
+					"name": "percentage",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]."
+				}
+			]
+		},
+		{
+			"name": "WorkDoneProgressReport",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "report"
+					}
+				},
+				{
+					"name": "cancellable",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Controls enablement state of a cancel button.\n\nClients that don't support cancellation or don't support controlling the button's\nenablement state are allowed to ignore the property."
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "Optional, more detailed associated progress message. Contains\ncomplementary information to the `title`.\n\nExamples: \"3/25 files\", \"project/src/module2\", \"node_modules/some_dep\".\nIf unset, the previous progress message (if any) is still valid."
+				},
+				{
+					"name": "percentage",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "Optional progress percentage to display (value 100 is considered 100%).\nIf not provided infinite progress is assumed and clients are allowed\nto ignore the `percentage` value in subsequent in report notifications.\n\nThe value should be steadily rising. Clients are free to ignore values\nthat are not following this rule. The value range is [0, 100]"
+				}
+			]
+		},
+		{
+			"name": "WorkDoneProgressEnd",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "end"
+					}
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "Optional, a final message indicating to for example indicate the outcome\nof the operation."
+				}
+			]
+		},
+		{
+			"name": "SetTraceParams",
+			"properties": [
+				{
+					"name": "value",
+					"type": {
+						"kind": "reference",
+						"name": "TraceValue"
+					}
+				}
+			]
+		},
+		{
+			"name": "LogTraceParams",
+			"properties": [
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					}
+				},
+				{
+					"name": "verbose",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true
+				}
+			]
+		},
+		{
+			"name": "CancelParams",
+			"properties": [
+				{
+					"name": "id",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "string"
+							}
+						]
+					},
+					"documentation": "The request id to cancel."
+				}
+			]
+		},
+		{
+			"name": "ProgressParams",
+			"properties": [
+				{
+					"name": "token",
+					"type": {
+						"kind": "reference",
+						"name": "ProgressToken"
+					},
+					"documentation": "The progress token provided by the client or server."
+				},
+				{
+					"name": "value",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"documentation": "The progress data."
+				}
+			]
+		},
+		{
+			"name": "TextDocumentPositionParams",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentIdentifier"
+					},
+					"documentation": "The text document."
+				},
+				{
+					"name": "position",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The position inside the text document."
+				}
+			],
+			"documentation": "A parameter literal used in requests to pass a text document and a position inside that\ndocument."
+		},
+		{
+			"name": "WorkDoneProgressParams",
+			"properties": [
+				{
+					"name": "workDoneToken",
+					"type": {
+						"kind": "reference",
+						"name": "ProgressToken"
+					},
+					"optional": true,
+					"documentation": "An optional token that a server can use to report work done progress."
+				}
+			]
+		},
+		{
+			"name": "PartialResultParams",
+			"properties": [
+				{
+					"name": "partialResultToken",
+					"type": {
+						"kind": "reference",
+						"name": "ProgressToken"
+					},
+					"optional": true,
+					"documentation": "An optional token that a server can use to report partial results (e.g. streaming) to\nthe client."
+				}
+			]
+		},
+		{
+			"name": "LocationLink",
+			"properties": [
+				{
+					"name": "originSelectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"optional": true,
+					"documentation": "Span of the origin of this link.\n\nUsed as the underlined span for mouse interaction. Defaults to the word range at\nthe definition position."
+				},
+				{
+					"name": "targetUri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The target resource identifier of this link."
+				},
+				{
+					"name": "targetRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The full target range of this link. If the target for example is a symbol then target range is the\nrange enclosing this symbol not including leading/trailing whitespace but everything else\nlike comments. This information is typically used to highlight the range in the editor."
+				},
+				{
+					"name": "targetSelectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range that should be selected and revealed when this link is being followed, e.g the name of a function.\nMust be contained by the `targetRange`. See also `DocumentSymbol#range`"
+				}
+			],
+			"documentation": "Represents the connection of two locations. Provides additional metadata over normal {@link Location locations},\nincluding an origin range."
+		},
+		{
+			"name": "Range",
+			"properties": [
+				{
+					"name": "start",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The range's start position."
+				},
+				{
+					"name": "end",
+					"type": {
+						"kind": "reference",
+						"name": "Position"
+					},
+					"documentation": "The range's end position."
+				}
+			],
+			"documentation": "A range in a text document expressed as (zero-based) start and end positions.\n\nIf you want to specify a range that contains a line including the line ending\ncharacter(s) then use an end position denoting the start of the next line.\nFor example:\n```ts\n{\n    start: { line: 5, character: 23 }\n    end : { line 6, character : 0 }\n}\n```"
+		},
+		{
+			"name": "ImplementationOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "StaticRegistrationOptions",
+			"properties": [
+				{
+					"name": "id",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The id used to register the request. The id can be used to deregister\nthe request again. See also Registration#id."
+				}
+			],
+			"documentation": "Static registration options to be returned in the initialize\nrequest."
+		},
+		{
+			"name": "TypeDefinitionOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "WorkspaceFoldersChangeEvent",
+			"properties": [
+				{
+					"name": "added",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceFolder"
+						}
+					},
+					"documentation": "The array of added workspace folders"
+				},
+				{
+					"name": "removed",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "WorkspaceFolder"
+						}
+					},
+					"documentation": "The array of the removed workspace folders"
+				}
+			],
+			"documentation": "The workspace folder change event."
+		},
+		{
+			"name": "ConfigurationItem",
+			"properties": [
+				{
+					"name": "scopeUri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"optional": true,
+					"documentation": "The scope to get the configuration section for."
+				},
+				{
+					"name": "section",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The configuration section asked for."
+				}
+			]
+		},
+		{
+			"name": "TextDocumentIdentifier",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The text document's uri."
+				}
+			],
+			"documentation": "A literal to identify a text document in the client."
+		},
+		{
+			"name": "Color",
+			"properties": [
+				{
+					"name": "red",
+					"type": {
+						"kind": "base",
+						"name": "decimal"
+					},
+					"documentation": "The red component of this color in the range [0-1]."
+				},
+				{
+					"name": "green",
+					"type": {
+						"kind": "base",
+						"name": "decimal"
+					},
+					"documentation": "The green component of this color in the range [0-1]."
+				},
+				{
+					"name": "blue",
+					"type": {
+						"kind": "base",
+						"name": "decimal"
+					},
+					"documentation": "The blue component of this color in the range [0-1]."
+				},
+				{
+					"name": "alpha",
+					"type": {
+						"kind": "base",
+						"name": "decimal"
+					},
+					"documentation": "The alpha component of this color in the range [0-1]."
+				}
+			],
+			"documentation": "Represents a color in RGBA space."
+		},
+		{
+			"name": "DocumentColorOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "FoldingRangeOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "DeclarationOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "Position",
+			"properties": [
+				{
+					"name": "line",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "Line position in a document (zero-based).\n\nIf a line number is greater than the number of lines in a document, it defaults back to the number of lines in the document.\nIf a line number is negative, it defaults to 0."
+				},
+				{
+					"name": "character",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "Character offset on a line in a document (zero-based).\n\nThe meaning of this offset is determined by the negotiated\n`PositionEncodingKind`.\n\nIf the character value is greater than the line length it defaults back to the\nline length."
+				}
+			],
+			"documentation": "Position in a text document expressed as zero-based line and character\noffset. Prior to 3.17 the offsets were always based on a UTF-16 string\nrepresentation. So a string of the form `a𐐀b` the character offset of the\ncharacter `a` is 0, the character offset of `𐐀` is 1 and the character\noffset of b is 3 since `𐐀` is represented using two code units in UTF-16.\nSince 3.17 clients and servers can agree on a different string encoding\nrepresentation (e.g. UTF-8). The client announces it's supported encoding\nvia the client capability [`general.positionEncodings`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#clientCapabilities).\nThe value is an array of position encodings the client supports, with\ndecreasing preference (e.g. the encoding at index `0` is the most preferred\none). To stay backwards compatible the only mandatory encoding is UTF-16\nrepresented via the string `utf-16`. The server can pick one of the\nencodings offered by the client and signals that encoding back to the\nclient via the initialize result's property\n[`capabilities.positionEncoding`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#serverCapabilities). If the string value\n`utf-16` is missing from the client's capability `general.positionEncodings`\nservers can safely assume that the client supports UTF-16. If the server\nomits the position encoding in its initialize result the encoding defaults\nto the string value `utf-16`. Implementation considerations: since the\nconversion from one encoding into another requires the content of the\nfile / line the conversion is best done where the file is read which is\nusually on the server side.\n\nPositions are line end character agnostic. So you can not specify a position\nthat denotes `\\r|\\n` or `\\n|` where `|` represents the character offset.\n\n@since 3.17.0 - support for negotiated position encoding.",
+			"since": "3.17.0 - support for negotiated position encoding."
+		},
+		{
+			"name": "SelectionRangeOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "CallHierarchyOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Call hierarchy options used during static registration.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensOptions",
+			"properties": [
+				{
+					"name": "legend",
+					"type": {
+						"kind": "reference",
+						"name": "SemanticTokensLegend"
+					},
+					"documentation": "The legend used by the server"
+				},
+				{
+					"name": "range",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "literal",
+								"value": {
+									"properties": []
+								}
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Server supports providing semantic tokens for a specific range\nof a document."
+				},
+				{
+					"name": "full",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "SemanticTokensFullDelta"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Server supports providing semantic tokens for a full document."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensEdit",
+			"properties": [
+				{
+					"name": "start",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The start offset of the edit."
+				},
+				{
+					"name": "deleteCount",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The count of elements to remove."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "uinteger"
+						}
+					},
+					"optional": true,
+					"documentation": "The elements to insert."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "LinkedEditingRangeOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "FileCreate",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A file:// URI for the location of the file/folder being created."
+				}
+			],
+			"documentation": "Represents information on a file/folder create.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "TextDocumentEdit",
+			"properties": [
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "OptionalVersionedTextDocumentIdentifier"
+					},
+					"documentation": "The text document to change."
+				},
+				{
+					"name": "edits",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "TextEdit"
+								},
+								{
+									"kind": "reference",
+									"name": "AnnotatedTextEdit"
+								}
+							]
+						}
+					},
+					"documentation": "The edits to be applied.\n\n@since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a\nclient capability.",
+					"since": "3.16.0 - support for AnnotatedTextEdit. This is guarded using a\nclient capability."
+				}
+			],
+			"documentation": "Describes textual changes on a text document. A TextDocumentEdit describes all changes\non a document version Si and after they are applied move the document to version Si+1.\nSo the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any\nkind of ordering. However the edits must be non overlapping."
+		},
+		{
+			"name": "CreateFile",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "create"
+					},
+					"documentation": "A create"
+				},
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The resource to create."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "CreateFileOptions"
+					},
+					"optional": true,
+					"documentation": "Additional options"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "ResourceOperation"
+				}
+			],
+			"documentation": "Create file operation."
+		},
+		{
+			"name": "RenameFile",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "rename"
+					},
+					"documentation": "A rename"
+				},
+				{
+					"name": "oldUri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The old (existing) location."
+				},
+				{
+					"name": "newUri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The new location."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "RenameFileOptions"
+					},
+					"optional": true,
+					"documentation": "Rename options."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "ResourceOperation"
+				}
+			],
+			"documentation": "Rename file operation"
+		},
+		{
+			"name": "DeleteFile",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "delete"
+					},
+					"documentation": "A delete"
+				},
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The file to delete."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "DeleteFileOptions"
+					},
+					"optional": true,
+					"documentation": "Delete options."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "ResourceOperation"
+				}
+			],
+			"documentation": "Delete file operation"
+		},
+		{
+			"name": "ChangeAnnotation",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A human-readable string describing the actual change. The string\nis rendered prominent in the user interface."
+				},
+				{
+					"name": "needsConfirmation",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "A flag which indicates that user confirmation is needed\nbefore applying the change."
+				},
+				{
+					"name": "description",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A human-readable string which is rendered less prominent in\nthe user interface."
+				}
+			],
+			"documentation": "Additional information that describes document changes.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "FileOperationFilter",
+			"properties": [
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A Uri scheme like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationPattern"
+					},
+					"documentation": "The actual file operation pattern."
+				}
+			],
+			"documentation": "A filter to describe in which file operation requests or notifications\nthe server is interested in receiving.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "FileRename",
+			"properties": [
+				{
+					"name": "oldUri",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A file:// URI for the original location of the file/folder being renamed."
+				},
+				{
+					"name": "newUri",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A file:// URI for the new location of the file/folder being renamed."
+				}
+			],
+			"documentation": "Represents information on a file/folder rename.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "FileDelete",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A file:// URI for the location of the file/folder being deleted."
+				}
+			],
+			"documentation": "Represents information on a file/folder delete.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MonikerOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			]
+		},
+		{
+			"name": "TypeHierarchyOptions",
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"properties": [],
+			"documentation": "Type hierarchy options used during static registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueContext",
+			"properties": [
+				{
+					"name": "frameId",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"documentation": "The stack frame (as a DAP Id) where the execution has stopped."
+				},
+				{
+					"name": "stoppedLocation",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range where execution has stopped.\nTypically the end position of the range denotes the line where the inline values are shown."
+				}
+			],
+			"documentation": "@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueText",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range for which the inline value applies."
+				},
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The text of the inline value."
+				}
+			],
+			"documentation": "Provide inline value as text.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueVariableLookup",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range for which the inline value applies.\nThe range is used to extract the variable name from the underlying document."
+				},
+				{
+					"name": "variableName",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "If specified the name of the variable to look up."
+				},
+				{
+					"name": "caseSensitiveLookup",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "How to perform the lookup."
+				}
+			],
+			"documentation": "Provide inline value through a variable lookup.\nIf only a range is specified, the variable name will be extracted from the underlying document.\nAn optional variable name can be used to override the extracted name.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueEvaluatableExpression",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The document range for which the inline value applies.\nThe range is used to extract the evaluatable expression from the underlying document."
+				},
+				{
+					"name": "expression",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "If specified the expression overrides the extracted expression."
+				}
+			],
+			"documentation": "Provide an inline value through an expression evaluation.\nIf only a range is specified, the expression will be extracted from the underlying document.\nAn optional expression can be used to override the extracted expression.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueOptions",
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"properties": [],
+			"documentation": "Inline value options used during static registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHintLabelPart",
+			"properties": [
+				{
+					"name": "value",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The value of this label part."
+				},
+				{
+					"name": "tooltip",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The tooltip text when you hover over this label part. Depending on\nthe client capability `inlayHint.resolveSupport` clients might resolve\nthis property late using the resolve request."
+				},
+				{
+					"name": "location",
+					"type": {
+						"kind": "reference",
+						"name": "Location"
+					},
+					"optional": true,
+					"documentation": "An optional source code location that represents this\nlabel part.\n\nThe editor will use this location for the hover and for code navigation\nfeatures: This part will become a clickable link that resolves to the\ndefinition of the symbol at the given location (not necessarily the\nlocation itself), it shows the hover that shows at the given location,\nand it shows a context menu with further code navigation commands.\n\nDepending on the client capability `inlayHint.resolveSupport` clients\nmight resolve this property late using the resolve request."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"optional": true,
+					"documentation": "An optional command for this label part.\n\nDepending on the client capability `inlayHint.resolveSupport` clients\nmight resolve this property late using the resolve request."
+				}
+			],
+			"documentation": "An inlay hint label part allows for interactive and composite labels\nof inlay hints.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "MarkupContent",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "MarkupKind"
+					},
+					"documentation": "The type of the Markup"
+				},
+				{
+					"name": "value",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The content itself"
+				}
+			],
+			"documentation": "A `MarkupContent` literal represents a string value which content is interpreted base on its\nkind flag. Currently the protocol supports `plaintext` and `markdown` as markup kinds.\n\nIf the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues.\nSee https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting\n\nHere is an example how such a string can be constructed using JavaScript / TypeScript:\n```ts\nlet markdown: MarkdownContent = {\n kind: MarkupKind.Markdown,\n value: [\n   '# Header',\n   'Some text',\n   '```typescript',\n   'someCode();',\n   '```'\n ].join('\\n')\n};\n```\n\n*Please Note* that clients might sanitize the return markdown. A client could decide to\nremove HTML from the markdown to avoid script execution."
+		},
+		{
+			"name": "InlayHintOptions",
+			"properties": [
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server provides support to resolve additional\ninformation for an inlay hint item."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Inlay hint options used during static registration.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "RelatedFullDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "relatedDocuments",
+					"type": {
+						"kind": "map",
+						"key": {
+							"kind": "base",
+							"name": "DocumentUri"
+						},
+						"value": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "FullDocumentDiagnosticReport"
+								},
+								{
+									"kind": "reference",
+									"name": "UnchangedDocumentDiagnosticReport"
+								}
+							]
+						}
+					},
+					"optional": true,
+					"documentation": "Diagnostics of related documents. This information is useful\nin programming languages where code in a file A can generate\ndiagnostics in a file B which A depends on. An example of\nsuch a language is C/C++ where marco definitions in a file\na.cpp and result in errors in a header file b.hpp.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "FullDocumentDiagnosticReport"
+				}
+			],
+			"documentation": "A full diagnostic report with a set of related documents.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "RelatedUnchangedDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "relatedDocuments",
+					"type": {
+						"kind": "map",
+						"key": {
+							"kind": "base",
+							"name": "DocumentUri"
+						},
+						"value": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "FullDocumentDiagnosticReport"
+								},
+								{
+									"kind": "reference",
+									"name": "UnchangedDocumentDiagnosticReport"
+								}
+							]
+						}
+					},
+					"optional": true,
+					"documentation": "Diagnostics of related documents. This information is useful\nin programming languages where code in a file A can generate\ndiagnostics in a file B which A depends on. An example of\nsuch a language is C/C++ where marco definitions in a file\na.cpp and result in errors in a header file b.hpp.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "UnchangedDocumentDiagnosticReport"
+				}
+			],
+			"documentation": "An unchanged diagnostic report with a set of related documents.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "FullDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "full"
+					},
+					"documentation": "A full document diagnostic report."
+				},
+				{
+					"name": "resultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional result id. If provided it will\nbe sent on the next diagnostic request for the\nsame document."
+				},
+				{
+					"name": "items",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Diagnostic"
+						}
+					},
+					"documentation": "The actual items."
+				}
+			],
+			"documentation": "A diagnostic report with a full set of problems.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "UnchangedDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "unchanged"
+					},
+					"documentation": "A document diagnostic report indicating\nno changes to the last result. A server can\nonly return `unchanged` if result ids are\nprovided."
+				},
+				{
+					"name": "resultId",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A result id which will be sent on the next\ndiagnostic request for the same document."
+				}
+			],
+			"documentation": "A diagnostic report indicating that the last returned\nreport is still accurate.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DiagnosticOptions",
+			"properties": [
+				{
+					"name": "identifier",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional identifier under which the diagnostics are\nmanaged by the client."
+				},
+				{
+					"name": "interFileDependencies",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "Whether the language has inter file dependencies meaning that\nediting code in one file can result in a different diagnostic\nset in another file. Inter file dependencies are common for\nmost programming languages and typically uncommon for linters."
+				},
+				{
+					"name": "workspaceDiagnostics",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "The server provides support for workspace diagnostics as well."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Diagnostic options.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "PreviousResultId",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The URI for which the client knowns a\nresult id."
+				},
+				{
+					"name": "value",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The value of the previous result id."
+				}
+			],
+			"documentation": "A previous result id in a workspace pull request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocument",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "The notebook document's uri."
+				},
+				{
+					"name": "notebookType",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The type of the notebook."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"documentation": "The version number of this document (it will increase after each\nchange, including undo/redo)."
+				},
+				{
+					"name": "metadata",
+					"type": {
+						"kind": "reference",
+						"name": "LSPObject"
+					},
+					"optional": true,
+					"documentation": "Additional metadata stored with the notebook\ndocument.\n\nNote: should always be an object literal (e.g. LSPObject)"
+				},
+				{
+					"name": "cells",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookCell"
+						}
+					},
+					"documentation": "The cells of a notebook."
+				}
+			],
+			"documentation": "A notebook document.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TextDocumentItem",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The text document's uri."
+				},
+				{
+					"name": "languageId",
+					"type": {
+						"kind": "reference",
+						"name": "LanguageKind"
+					},
+					"documentation": "The text document's language identifier."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"documentation": "The version number of this document (it will increase after each\nchange, including undo/redo)."
+				},
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The content of the opened text document."
+				}
+			],
+			"documentation": "An item to transfer a text document from the client to the\nserver."
+		},
+		{
+			"name": "NotebookDocumentSyncOptions",
+			"properties": [
+				{
+					"name": "notebookSelector",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "or",
+							"items": [
+								{
+									"kind": "reference",
+									"name": "NotebookDocumentFilterWithNotebook"
+								},
+								{
+									"kind": "reference",
+									"name": "NotebookDocumentFilterWithCells"
+								}
+							]
+						}
+					},
+					"documentation": "The notebooks to be synced"
+				},
+				{
+					"name": "save",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether save notification should be forwarded to\nthe server. Will only be honored if mode === `notebook`."
+				}
+			],
+			"documentation": "Options specific to a notebook plus its cells\nto be synced to the server.\n\nIf a selector provides a notebook document\nfilter but no cell selector all cells of a\nmatching notebook document will be synced.\n\nIf a selector provides no notebook document\nfilter but only a cell selector all notebook\ndocument that contain at least one matching\ncell will be synced.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "VersionedNotebookDocumentIdentifier",
+			"properties": [
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"documentation": "The version number of this notebook document."
+				},
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "The notebook document's uri."
+				}
+			],
+			"documentation": "A versioned notebook document identifier.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocumentChangeEvent",
+			"properties": [
+				{
+					"name": "metadata",
+					"type": {
+						"kind": "reference",
+						"name": "LSPObject"
+					},
+					"optional": true,
+					"documentation": "The changed meta data if any.\n\nNote: should always be an object literal (e.g. LSPObject)"
+				},
+				{
+					"name": "cells",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentCellChanges"
+					},
+					"optional": true,
+					"documentation": "Changes to cells"
+				}
+			],
+			"documentation": "A change event for a notebook document.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocumentIdentifier",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "The notebook document's uri."
+				}
+			],
+			"documentation": "A literal to identify a notebook document in the client.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineCompletionContext",
+			"properties": [
+				{
+					"name": "triggerKind",
+					"type": {
+						"kind": "reference",
+						"name": "InlineCompletionTriggerKind"
+					},
+					"documentation": "Describes how the inline completion was triggered."
+				},
+				{
+					"name": "selectedCompletionInfo",
+					"type": {
+						"kind": "reference",
+						"name": "SelectedCompletionInfo"
+					},
+					"optional": true,
+					"documentation": "Provides information about the currently selected item in the autocomplete widget if it is visible."
+				}
+			],
+			"documentation": "Provides information about the context in which an inline completion was requested.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "StringValue",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "stringLiteral",
+						"value": "snippet"
+					},
+					"documentation": "The kind of string value."
+				},
+				{
+					"name": "value",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The snippet string."
+				}
+			],
+			"documentation": "A string value used as a snippet is a template which allows to insert text\nand to control the editor cursor when insertion happens.\n\nA snippet can define tab stops and placeholders with `$1`, `$2`\nand `${3:foo}`. `$0` defines the final tab stop, it defaults to\nthe end of the snippet. Variables are defined with `$name` and\n`${name:default value}`.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "InlineCompletionOptions",
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"properties": [],
+			"documentation": "Inline completion options used during static registration.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "Registration",
+			"properties": [
+				{
+					"name": "id",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The id used to register the request. The id can be used to deregister\nthe request again."
+				},
+				{
+					"name": "method",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The method / capability to register for."
+				},
+				{
+					"name": "registerOptions",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "Options necessary for the registration."
+				}
+			],
+			"documentation": "General parameters to register for a notification or to register a provider."
+		},
+		{
+			"name": "Unregistration",
+			"properties": [
+				{
+					"name": "id",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The id used to unregister the request or notification. Usually an id\nprovided during the register request."
+				},
+				{
+					"name": "method",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The method to unregister for."
+				}
+			],
+			"documentation": "General parameters to unregister a request or notification."
+		},
+		{
+			"name": "_InitializeParams",
+			"properties": [
+				{
+					"name": "processId",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "The process Id of the parent process that started\nthe server.\n\nIs `null` if the process has not been started by another process.\nIf the parent process is not alive then the server should exit."
+				},
+				{
+					"name": "clientInfo",
+					"type": {
+						"kind": "reference",
+						"name": "ClientInfo"
+					},
+					"optional": true,
+					"documentation": "Information about the client\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "locale",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The locale the client is currently showing the user interface\nin. This must not necessarily be the locale of the operating\nsystem.\n\nUses IETF language tags as the value's syntax\n(See https://en.wikipedia.org/wiki/IETF_language_tag)\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "rootPath",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The rootPath of the workspace. Is null\nif no folder is open.\n\n@deprecated in favour of rootUri.",
+					"deprecated": "in favour of rootUri."
+				},
+				{
+					"name": "rootUri",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "DocumentUri"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "The rootUri of the workspace. Is null if no\nfolder is open. If both `rootPath` and `rootUri` are set\n`rootUri` wins.\n\n@deprecated in favour of workspaceFolders.",
+					"deprecated": "in favour of workspaceFolders."
+				},
+				{
+					"name": "capabilities",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCapabilities"
+					},
+					"documentation": "The capabilities provided by the client (editor or tool)"
+				},
+				{
+					"name": "initializationOptions",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "User provided initialization options."
+				},
+				{
+					"name": "trace",
+					"type": {
+						"kind": "reference",
+						"name": "TraceValue"
+					},
+					"optional": true,
+					"documentation": "The initial trace setting. If omitted trace is disabled ('off')."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressParams"
+				}
+			],
+			"documentation": "The initialize parameters"
+		},
+		{
+			"name": "WorkspaceFoldersInitializeParams",
+			"properties": [
+				{
+					"name": "workspaceFolders",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "array",
+								"element": {
+									"kind": "reference",
+									"name": "WorkspaceFolder"
+								}
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The workspace folders configured in the client when the server starts.\n\nThis property is only available if the client supports workspace folders.\nIt can be `null` if the client supports workspace folders but none are\nconfigured.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				}
+			]
+		},
+		{
+			"name": "ServerCapabilities",
+			"properties": [
+				{
+					"name": "positionEncoding",
+					"type": {
+						"kind": "reference",
+						"name": "PositionEncodingKind"
+					},
+					"optional": true,
+					"documentation": "The position encoding the server picked from the encodings offered\nby the client via the client capability `general.positionEncodings`.\n\nIf the client didn't provide any position encodings the only valid\nvalue that a server can return is 'utf-16'.\n\nIf omitted it defaults to 'utf-16'.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "textDocumentSync",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "TextDocumentSyncOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "TextDocumentSyncKind"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Defines how text documents are synced. Is either a detailed structure\ndefining each notification or for backwards compatibility the\nTextDocumentSyncKind number."
+				},
+				{
+					"name": "notebookDocumentSync",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "NotebookDocumentSyncOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "NotebookDocumentSyncRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Defines how notebook documents are synced.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "completionProvider",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides completion support."
+				},
+				{
+					"name": "hoverProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "HoverOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides hover support."
+				},
+				{
+					"name": "signatureHelpProvider",
+					"type": {
+						"kind": "reference",
+						"name": "SignatureHelpOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides signature help support."
+				},
+				{
+					"name": "declarationProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DeclarationOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "DeclarationRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides Goto Declaration support."
+				},
+				{
+					"name": "definitionProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DefinitionOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides goto definition support."
+				},
+				{
+					"name": "typeDefinitionProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "TypeDefinitionOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "TypeDefinitionRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides Goto Type Definition support."
+				},
+				{
+					"name": "implementationProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "ImplementationOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "ImplementationRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides Goto Implementation support."
+				},
+				{
+					"name": "referencesProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "ReferenceOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides find references support."
+				},
+				{
+					"name": "documentHighlightProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentHighlightOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides document highlight support."
+				},
+				{
+					"name": "documentSymbolProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentSymbolOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides document symbol support."
+				},
+				{
+					"name": "codeActionProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "CodeActionOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides code actions. CodeActionOptions may only be\nspecified if the client states that it supports\n`codeActionLiteralSupport` in its initial `initialize` request."
+				},
+				{
+					"name": "codeLensProvider",
+					"type": {
+						"kind": "reference",
+						"name": "CodeLensOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides code lens."
+				},
+				{
+					"name": "documentLinkProvider",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentLinkOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides document link support."
+				},
+				{
+					"name": "colorProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentColorOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentColorRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides color provider support."
+				},
+				{
+					"name": "workspaceSymbolProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "WorkspaceSymbolOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides workspace symbol support."
+				},
+				{
+					"name": "documentFormattingProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentFormattingOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides document formatting."
+				},
+				{
+					"name": "documentRangeFormattingProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "DocumentRangeFormattingOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides document range formatting."
+				},
+				{
+					"name": "documentOnTypeFormattingProvider",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentOnTypeFormattingOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides document formatting on typing."
+				},
+				{
+					"name": "renameProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "RenameOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides rename support. RenameOptions may only be\nspecified if the client states that it supports\n`prepareSupport` in its initial `initialize` request."
+				},
+				{
+					"name": "foldingRangeProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "FoldingRangeOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "FoldingRangeRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides folding provider support."
+				},
+				{
+					"name": "selectionRangeProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "SelectionRangeOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "SelectionRangeRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides selection range support."
+				},
+				{
+					"name": "executeCommandProvider",
+					"type": {
+						"kind": "reference",
+						"name": "ExecuteCommandOptions"
+					},
+					"optional": true,
+					"documentation": "The server provides execute command support."
+				},
+				{
+					"name": "callHierarchyProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "CallHierarchyOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "CallHierarchyRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides call hierarchy support.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "linkedEditingRangeProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "LinkedEditingRangeOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "LinkedEditingRangeRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides linked editing range support.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "semanticTokensProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "SemanticTokensOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "SemanticTokensRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides semantic tokens support.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "monikerProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "MonikerOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "MonikerRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides moniker support.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "typeHierarchyProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "TypeHierarchyOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "TypeHierarchyRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides type hierarchy support.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlineValueProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "InlineValueOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "InlineValueRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides inline values.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlayHintProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "InlayHintOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "InlayHintRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server provides inlay hints.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "diagnosticProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "DiagnosticOptions"
+							},
+							{
+								"kind": "reference",
+								"name": "DiagnosticRegistrationOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The server has support for pull model diagnostics.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlineCompletionProvider",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "InlineCompletionOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Inline completion options used during static registration.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "workspace",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceOptions"
+					},
+					"optional": true,
+					"documentation": "Workspace specific server capabilities."
+				},
+				{
+					"name": "experimental",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "Experimental server capabilities."
+				}
+			],
+			"documentation": "Defines the capabilities provided by a language\nserver."
+		},
+		{
+			"name": "ServerInfo",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of the server as defined by the server."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The server's version as defined by the server."
+				}
+			],
+			"documentation": "Information about the server\n\n@since 3.15.0\n@since 3.18.0 ServerInfo type name added.\n@proposed",
+			"since": "3.18.0 ServerInfo type name added."
+		},
+		{
+			"name": "VersionedTextDocumentIdentifier",
+			"properties": [
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "integer"
+					},
+					"documentation": "The version number of this document."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentIdentifier"
+				}
+			],
+			"documentation": "A text document identifier to denote a specific version of a text document."
+		},
+		{
+			"name": "SaveOptions",
+			"properties": [
+				{
+					"name": "includeText",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client is supposed to include the content on save."
+				}
+			],
+			"documentation": "Save options."
+		},
+		{
+			"name": "FileEvent",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The file's uri."
+				},
+				{
+					"name": "type",
+					"type": {
+						"kind": "reference",
+						"name": "FileChangeType"
+					},
+					"documentation": "The change type."
+				}
+			],
+			"documentation": "An event describing a file change."
+		},
+		{
+			"name": "FileSystemWatcher",
+			"properties": [
+				{
+					"name": "globPattern",
+					"type": {
+						"kind": "reference",
+						"name": "GlobPattern"
+					},
+					"documentation": "The glob pattern to watch. See {@link GlobPattern glob pattern} for more detail.\n\n@since 3.17.0 support for relative patterns.",
+					"since": "3.17.0 support for relative patterns."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "WatchKind"
+					},
+					"optional": true,
+					"documentation": "The kind of events of interest. If omitted it defaults\nto WatchKind.Create | WatchKind.Change | WatchKind.Delete\nwhich is 7."
+				}
+			]
+		},
+		{
+			"name": "Diagnostic",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range at which the message applies"
+				},
+				{
+					"name": "severity",
+					"type": {
+						"kind": "reference",
+						"name": "DiagnosticSeverity"
+					},
+					"optional": true,
+					"documentation": "The diagnostic's severity. Can be omitted. If omitted it is up to the\nclient to interpret diagnostics as error, warning, info or hint."
+				},
+				{
+					"name": "code",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "string"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The diagnostic's code, which usually appear in the user interface."
+				},
+				{
+					"name": "codeDescription",
+					"type": {
+						"kind": "reference",
+						"name": "CodeDescription"
+					},
+					"optional": true,
+					"documentation": "An optional property to describe the error code.\nRequires the code field (above) to be present/not null.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "source",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A human-readable string describing the source of this\ndiagnostic, e.g. 'typescript' or 'super lint'. It usually\nappears in the user interface."
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The diagnostic's message. It usually appears in the user interface"
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DiagnosticTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Additional metadata about the diagnostic.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "relatedInformation",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DiagnosticRelatedInformation"
+						}
+					},
+					"optional": true,
+					"documentation": "An array of related diagnostic information, e.g. when symbol-names within\na scope collide all definitions can be marked via this property."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A data entry field that is preserved between a `textDocument/publishDiagnostics`\nnotification and `textDocument/codeAction` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "Represents a diagnostic, such as a compiler error or warning. Diagnostic objects\nare only valid in the scope of a resource."
+		},
+		{
+			"name": "CompletionContext",
+			"properties": [
+				{
+					"name": "triggerKind",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionTriggerKind"
+					},
+					"documentation": "How the completion was triggered."
+				},
+				{
+					"name": "triggerCharacter",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The trigger character (a single character) that has trigger code complete.\nIs undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`"
+				}
+			],
+			"documentation": "Contains additional information about the context in which a completion request is triggered."
+		},
+		{
+			"name": "CompletionItemLabelDetails",
+			"properties": [
+				{
+					"name": "detail",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional string which is rendered less prominently directly after {@link CompletionItem.label label},\nwithout any spacing. Should be used for function signatures and type annotations."
+				},
+				{
+					"name": "description",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "An optional string which is rendered less prominently after {@link CompletionItem.detail}. Should be used\nfor fully qualified names and file paths."
+				}
+			],
+			"documentation": "Additional details for a completion item label.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InsertReplaceEdit",
+			"properties": [
+				{
+					"name": "newText",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The string to be inserted."
+				},
+				{
+					"name": "insert",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range if the insert is requested"
+				},
+				{
+					"name": "replace",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range if the replace is requested."
+				}
+			],
+			"documentation": "A special text edit to provide an insert and a replace operation.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CompletionItemDefaults",
+			"properties": [
+				{
+					"name": "commitCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "A default commit character set.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "editRange",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "Range"
+							},
+							{
+								"kind": "reference",
+								"name": "EditRangeWithInsertReplace"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "A default edit range.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "insertTextFormat",
+					"type": {
+						"kind": "reference",
+						"name": "InsertTextFormat"
+					},
+					"optional": true,
+					"documentation": "A default insert text format.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "insertTextMode",
+					"type": {
+						"kind": "reference",
+						"name": "InsertTextMode"
+					},
+					"optional": true,
+					"documentation": "A default insert text mode.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "A default data value.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "In many cases the items of an actual completion result share the same\nvalue for properties like `commitCharacters` or the range of a text\nedit. A completion list can therefore define item defaults which will\nbe used if a completion item itself doesn't specify the value.\n\nIf a completion list specifies a default value and a completion item\nalso specifies a corresponding value the one from the item is used.\n\nServers are only allowed to return default values if the client\nsignals support for this via the `completionList.itemDefaults`\ncapability.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "CompletionOptions",
+			"properties": [
+				{
+					"name": "triggerCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "Most tools trigger completion request automatically without explicitly requesting\nit using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user\nstarts to type an identifier. For example if the user types `c` in a JavaScript file\ncode complete will automatically pop up present `console` besides others as a\ncompletion item. Characters that make up identifiers don't need to be listed here.\n\nIf code complete should automatically be trigger on characters not being valid inside\nan identifier (for example `.` in JavaScript) list them in `triggerCharacters`."
+				},
+				{
+					"name": "allCommitCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "The list of all possible characters that commit a completion. This field can be used\nif clients don't support individual commit characters per completion item. See\n`ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`\n\nIf a server provides both `allCommitCharacters` and commit characters on an individual\ncompletion item the ones on the completion item win.\n\n@since 3.2.0",
+					"since": "3.2.0"
+				},
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server provides support to resolve additional\ninformation for a completion item."
+				},
+				{
+					"name": "completionItem",
+					"type": {
+						"kind": "reference",
+						"name": "ServerCompletionItemOptions"
+					},
+					"optional": true,
+					"documentation": "The server supports the following `CompletionItem` specific\ncapabilities.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Completion options."
+		},
+		{
+			"name": "HoverOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Hover options."
+		},
+		{
+			"name": "SignatureHelpContext",
+			"properties": [
+				{
+					"name": "triggerKind",
+					"type": {
+						"kind": "reference",
+						"name": "SignatureHelpTriggerKind"
+					},
+					"documentation": "Action that caused signature help to be triggered."
+				},
+				{
+					"name": "triggerCharacter",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "Character that caused signature help to be triggered.\n\nThis is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter`"
+				},
+				{
+					"name": "isRetrigger",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "`true` if signature help was already showing when it was triggered.\n\nRetriggers occurs when the signature help is already active and can be caused by actions such as\ntyping a trigger character, a cursor move, or document content changes."
+				},
+				{
+					"name": "activeSignatureHelp",
+					"type": {
+						"kind": "reference",
+						"name": "SignatureHelp"
+					},
+					"optional": true,
+					"documentation": "The currently active `SignatureHelp`.\n\nThe `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on\nthe user navigating through available signatures."
+				}
+			],
+			"documentation": "Additional information about the context in which a signature help request was triggered.\n\n@since 3.15.0",
+			"since": "3.15.0"
+		},
+		{
+			"name": "SignatureInformation",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The label of this signature. Will be shown in\nthe UI."
+				},
+				{
+					"name": "documentation",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The human-readable doc-comment of this signature. Will be shown\nin the UI but can be omitted."
+				},
+				{
+					"name": "parameters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "ParameterInformation"
+						}
+					},
+					"optional": true,
+					"documentation": "The parameters of this signature."
+				},
+				{
+					"name": "activeParameter",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "uinteger"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The index of the active parameter.\n\nIf `null`, no parameter of the signature is active (for example a named\nargument that does not match any declared parameters). This is only valid\nif the client specifies the client capability\n`textDocument.signatureHelp.noActiveParameterSupport === true`\n\nIf provided (or `null`), this is used in place of\n`SignatureHelp.activeParameter`.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "Represents the signature of something callable. A signature\ncan have a label, like a function-name, a doc-comment, and\na set of parameters."
+		},
+		{
+			"name": "SignatureHelpOptions",
+			"properties": [
+				{
+					"name": "triggerCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "List of characters that trigger signature help automatically."
+				},
+				{
+					"name": "retriggerCharacters",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "List of characters that re-trigger signature help.\n\nThese trigger characters are only active when signature help is already showing. All trigger characters\nare also counted as re-trigger characters.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Server Capabilities for a {@link SignatureHelpRequest}."
+		},
+		{
+			"name": "DefinitionOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Server Capabilities for a {@link DefinitionRequest}."
+		},
+		{
+			"name": "ReferenceContext",
+			"properties": [
+				{
+					"name": "includeDeclaration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "Include the declaration of the current symbol."
+				}
+			],
+			"documentation": "Value-object that contains additional information when\nrequesting references."
+		},
+		{
+			"name": "ReferenceOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Reference options."
+		},
+		{
+			"name": "DocumentHighlightOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentHighlightRequest}."
+		},
+		{
+			"name": "BaseSymbolInformation",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of this symbol."
+				},
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "SymbolKind"
+					},
+					"documentation": "The kind of this symbol."
+				},
+				{
+					"name": "tags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolTag"
+						}
+					},
+					"optional": true,
+					"documentation": "Tags for this symbol.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "containerName",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The name of the symbol containing this symbol. This information is for\nuser interface purposes (e.g. to render a qualifier in the user interface\nif necessary). It can't be used to re-infer a hierarchy for the document\nsymbols."
+				}
+			],
+			"documentation": "A base for all symbol information."
+		},
+		{
+			"name": "DocumentSymbolOptions",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A human-readable string that is shown when multiple outlines trees\nare shown for the same document.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentSymbolRequest}."
+		},
+		{
+			"name": "CodeActionContext",
+			"properties": [
+				{
+					"name": "diagnostics",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Diagnostic"
+						}
+					},
+					"documentation": "An array of diagnostics known on the client side overlapping the range provided to the\n`textDocument/codeAction` request. They are provided so that the server knows which\nerrors are currently presented to the user for the given range. There is no guarantee\nthat these accurately reflect the error state of the resource. The primary parameter\nto compute code actions is the provided range."
+				},
+				{
+					"name": "only",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CodeActionKind"
+						}
+					},
+					"optional": true,
+					"documentation": "Requested kind of actions to return.\n\nActions not of this kind are filtered out by the client before being shown. So servers\ncan omit computing them."
+				},
+				{
+					"name": "triggerKind",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionTriggerKind"
+					},
+					"optional": true,
+					"documentation": "The reason why code actions were requested.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Contains additional diagnostic information about the context in which\na {@link CodeActionProvider.provideCodeActions code action} is run."
+		},
+		{
+			"name": "CodeActionDisabled",
+			"properties": [
+				{
+					"name": "reason",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "Human readable description of why the code action is currently disabled.\n\nThis is displayed in the code actions UI."
+				}
+			],
+			"documentation": "Captures why the code action is currently disabled.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "CodeActionOptions",
+			"properties": [
+				{
+					"name": "codeActionKinds",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CodeActionKind"
+						}
+					},
+					"optional": true,
+					"documentation": "CodeActionKinds that this server may return.\n\nThe list of kinds may be generic, such as `CodeActionKind.Refactor`, or the server\nmay list out every specific kind they provide."
+				},
+				{
+					"name": "documentation",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CodeActionKindDocumentation"
+						}
+					},
+					"optional": true,
+					"documentation": "Static documentation for a class of code actions.\n\nDocumentation from the provider should be shown in the code actions menu if either:\n\n- Code actions of `kind` are requested by the editor. In this case, the editor will show the documentation that\n  most closely matches the requested code action kind. For example, if a provider has documentation for\n  both `Refactor` and `RefactorExtract`, when the user requests code actions for `RefactorExtract`,\n  the editor will use the documentation for `RefactorExtract` instead of the documentation for `Refactor`.\n\n- Any code actions of `kind` are returned by the provider.\n\nAt most one documentation entry should be shown per provider.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server provides support to resolve additional\ninformation for a code action.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link CodeActionRequest}."
+		},
+		{
+			"name": "LocationUriOnly",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					}
+				}
+			],
+			"documentation": "Location with only uri and does not include range.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "WorkspaceSymbolOptions",
+			"properties": [
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server provides support to resolve additional\ninformation for a workspace symbol.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Server capabilities for a {@link WorkspaceSymbolRequest}."
+		},
+		{
+			"name": "CodeLensOptions",
+			"properties": [
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Code lens has a resolve provider as well."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Code Lens provider options of a {@link CodeLensRequest}."
+		},
+		{
+			"name": "DocumentLinkOptions",
+			"properties": [
+				{
+					"name": "resolveProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Document links have a resolve provider as well."
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentLinkRequest}."
+		},
+		{
+			"name": "FormattingOptions",
+			"properties": [
+				{
+					"name": "tabSize",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "Size of a tab in spaces."
+				},
+				{
+					"name": "insertSpaces",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "Prefer spaces over tabs."
+				},
+				{
+					"name": "trimTrailingWhitespace",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Trim trailing whitespace on a line.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "insertFinalNewline",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Insert a newline character at the end of the file if one does not exist.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "trimFinalNewlines",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Trim all newlines after the final newline at the end of the file.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"documentation": "Value-object describing what options formatting should use."
+		},
+		{
+			"name": "DocumentFormattingOptions",
+			"properties": [],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentFormattingRequest}."
+		},
+		{
+			"name": "DocumentRangeFormattingOptions",
+			"properties": [
+				{
+					"name": "rangesSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the server supports formatting multiple ranges at once.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentRangeFormattingRequest}."
+		},
+		{
+			"name": "DocumentOnTypeFormattingOptions",
+			"properties": [
+				{
+					"name": "firstTriggerCharacter",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A character on which formatting should be triggered, like `{`."
+				},
+				{
+					"name": "moreTriggerCharacter",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "More trigger characters."
+				}
+			],
+			"documentation": "Provider options for a {@link DocumentOnTypeFormattingRequest}."
+		},
+		{
+			"name": "RenameOptions",
+			"properties": [
+				{
+					"name": "prepareProvider",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Renames should be checked and tested before being executed.\n\n@since version 3.12.0",
+					"since": "version 3.12.0"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "Provider options for a {@link RenameRequest}."
+		},
+		{
+			"name": "PrepareRenamePlaceholder",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					}
+				},
+				{
+					"name": "placeholder",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					}
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "PrepareRenameDefaultBehavior",
+			"properties": [
+				{
+					"name": "defaultBehavior",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					}
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ExecuteCommandOptions",
+			"properties": [
+				{
+					"name": "commands",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The commands to be executed on the server"
+				}
+			],
+			"mixins": [
+				{
+					"kind": "reference",
+					"name": "WorkDoneProgressOptions"
+				}
+			],
+			"documentation": "The server capabilities of a {@link ExecuteCommandRequest}."
+		},
+		{
+			"name": "SemanticTokensLegend",
+			"properties": [
+				{
+					"name": "tokenTypes",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The token types a server uses."
+				},
+				{
+					"name": "tokenModifiers",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The token modifiers a server uses."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensFullDelta",
+			"properties": [
+				{
+					"name": "delta",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server supports deltas for full documents."
+				}
+			],
+			"documentation": "Semantic tokens options to support deltas for full documents\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "OptionalVersionedTextDocumentIdentifier",
+			"properties": [
+				{
+					"name": "version",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "The version number of this document. If a versioned text document identifier\nis sent from the server to the client and the file is not open in the editor\n(the server has not received an open notification before) the server can send\n`null` to indicate that the version is unknown and the content on disk is the\ntruth (as specified with document content ownership)."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextDocumentIdentifier"
+				}
+			],
+			"documentation": "A text document identifier to optionally denote a specific version of a text document."
+		},
+		{
+			"name": "AnnotatedTextEdit",
+			"properties": [
+				{
+					"name": "annotationId",
+					"type": {
+						"kind": "reference",
+						"name": "ChangeAnnotationIdentifier"
+					},
+					"documentation": "The actual identifier of the change annotation"
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "TextEdit"
+				}
+			],
+			"documentation": "A special text edit with an additional change annotation.\n\n@since 3.16.0.",
+			"since": "3.16.0."
+		},
+		{
+			"name": "ResourceOperation",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The resource operation kind."
+				},
+				{
+					"name": "annotationId",
+					"type": {
+						"kind": "reference",
+						"name": "ChangeAnnotationIdentifier"
+					},
+					"optional": true,
+					"documentation": "An optional annotation identifier describing the operation.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "A generic resource operation."
+		},
+		{
+			"name": "CreateFileOptions",
+			"properties": [
+				{
+					"name": "overwrite",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Overwrite existing file. Overwrite wins over `ignoreIfExists`"
+				},
+				{
+					"name": "ignoreIfExists",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Ignore if exists."
+				}
+			],
+			"documentation": "Options to create a file."
+		},
+		{
+			"name": "RenameFileOptions",
+			"properties": [
+				{
+					"name": "overwrite",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Overwrite target if existing. Overwrite wins over `ignoreIfExists`"
+				},
+				{
+					"name": "ignoreIfExists",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Ignores if target exists."
+				}
+			],
+			"documentation": "Rename file options"
+		},
+		{
+			"name": "DeleteFileOptions",
+			"properties": [
+				{
+					"name": "recursive",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Delete the content recursively if a folder is denoted."
+				},
+				{
+					"name": "ignoreIfNotExists",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Ignore the operation if the file doesn't exist."
+				}
+			],
+			"documentation": "Delete file options"
+		},
+		{
+			"name": "FileOperationPattern",
+			"properties": [
+				{
+					"name": "glob",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The glob pattern to match. Glob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)"
+				},
+				{
+					"name": "matches",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationPatternKind"
+					},
+					"optional": true,
+					"documentation": "Whether to match files or folders with this pattern.\n\nMatches both if undefined."
+				},
+				{
+					"name": "options",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationPatternOptions"
+					},
+					"optional": true,
+					"documentation": "Additional options used during matching."
+				}
+			],
+			"documentation": "A pattern to describe in which file operation requests or notifications\nthe server is interested in receiving.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "WorkspaceFullDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The URI for which diagnostic information is reported."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "The version number for which the diagnostics are reported.\nIf the document is not marked as open `null` can be provided."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "FullDocumentDiagnosticReport"
+				}
+			],
+			"documentation": "A full document diagnostic report for a workspace diagnostic result.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceUnchangedDocumentDiagnosticReport",
+			"properties": [
+				{
+					"name": "uri",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The URI for which diagnostic information is reported."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "integer"
+							},
+							{
+								"kind": "base",
+								"name": "null"
+							}
+						]
+					},
+					"documentation": "The version number for which the diagnostics are reported.\nIf the document is not marked as open `null` can be provided."
+				}
+			],
+			"extends": [
+				{
+					"kind": "reference",
+					"name": "UnchangedDocumentDiagnosticReport"
+				}
+			],
+			"documentation": "An unchanged document diagnostic report for a workspace diagnostic result.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookCell",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookCellKind"
+					},
+					"documentation": "The cell's kind"
+				},
+				{
+					"name": "document",
+					"type": {
+						"kind": "base",
+						"name": "DocumentUri"
+					},
+					"documentation": "The URI of the cell's text document\ncontent."
+				},
+				{
+					"name": "metadata",
+					"type": {
+						"kind": "reference",
+						"name": "LSPObject"
+					},
+					"optional": true,
+					"documentation": "Additional metadata stored with the cell.\n\nNote: should always be an object literal (e.g. LSPObject)"
+				},
+				{
+					"name": "executionSummary",
+					"type": {
+						"kind": "reference",
+						"name": "ExecutionSummary"
+					},
+					"optional": true,
+					"documentation": "Additional execution summary information\nif supported by the client."
+				}
+			],
+			"documentation": "A notebook cell.\n\nA cell's document URI must be unique across ALL notebook\ncells and can therefore be used to uniquely identify a\nnotebook cell or the cell's text document.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocumentFilterWithNotebook",
+			"properties": [
+				{
+					"name": "notebook",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "NotebookDocumentFilter"
+							}
+						]
+					},
+					"documentation": "The notebook to be synced If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
+				},
+				{
+					"name": "cells",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookCellLanguage"
+						}
+					},
+					"optional": true,
+					"documentation": "The cells of the matching notebook to be synced."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentFilterWithCells",
+			"properties": [
+				{
+					"name": "notebook",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "NotebookDocumentFilter"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The notebook to be synced If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
+				},
+				{
+					"name": "cells",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookCellLanguage"
+						}
+					},
+					"documentation": "The cells of the matching notebook to be synced."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentCellChanges",
+			"properties": [
+				{
+					"name": "structure",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentCellChangeStructure"
+					},
+					"optional": true,
+					"documentation": "Changes to the cell structure to add or\nremove cells."
+				},
+				{
+					"name": "data",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookCell"
+						}
+					},
+					"optional": true,
+					"documentation": "Changes to notebook cells properties like its\nkind, execution summary or metadata."
+				},
+				{
+					"name": "textContent",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookDocumentCellContentChanges"
+						}
+					},
+					"optional": true,
+					"documentation": "Changes to the text content of notebook cells."
+				}
+			],
+			"documentation": "Cell changes to a notebook document.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "SelectedCompletionInfo",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range that will be replaced if this completion item is accepted."
+				},
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The text the range will be replaced with if this completion is accepted."
+				}
+			],
+			"documentation": "Describes the currently selected completion item.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "ClientInfo",
+			"properties": [
+				{
+					"name": "name",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of the client as defined by the client."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The client's version as defined by the client."
+				}
+			],
+			"documentation": "Information about the client\n\n@since 3.15.0\n@since 3.18.0 ClientInfo type name added.\n@proposed",
+			"since": "3.18.0 ClientInfo type name added."
+		},
+		{
+			"name": "ClientCapabilities",
+			"properties": [
+				{
+					"name": "workspace",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Workspace specific client capabilities."
+				},
+				{
+					"name": "textDocument",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Text document specific client capabilities."
+				},
+				{
+					"name": "notebookDocument",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the notebook document support.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "window",
+					"type": {
+						"kind": "reference",
+						"name": "WindowClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Window specific client capabilities."
+				},
+				{
+					"name": "general",
+					"type": {
+						"kind": "reference",
+						"name": "GeneralClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "General client capabilities.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "experimental",
+					"type": {
+						"kind": "reference",
+						"name": "LSPAny"
+					},
+					"optional": true,
+					"documentation": "Experimental client capabilities."
+				}
+			],
+			"documentation": "Defines the capabilities provided by the client."
+		},
+		{
+			"name": "TextDocumentSyncOptions",
+			"properties": [
+				{
+					"name": "openClose",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Open and close notifications are sent to the server. If omitted open close notification should not\nbe sent."
+				},
+				{
+					"name": "change",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentSyncKind"
+					},
+					"optional": true,
+					"documentation": "Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full\nand TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None."
+				},
+				{
+					"name": "willSave",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "If present will save notifications are sent to the server. If omitted the notification should not be\nsent."
+				},
+				{
+					"name": "willSaveWaitUntil",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "If present will save wait until requests are sent to the server. If omitted the request should not be\nsent."
+				},
+				{
+					"name": "save",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "SaveOptions"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "If present save notifications are sent to the server. If omitted the notification should not be\nsent."
+				}
+			]
+		},
+		{
+			"name": "WorkspaceOptions",
+			"properties": [
+				{
+					"name": "workspaceFolders",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceFoldersServerCapabilities"
+					},
+					"optional": true,
+					"documentation": "The server supports workspace folder.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "fileOperations",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in notifications/requests for operations on files.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "Defines workspace specific capabilities of the server.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "TextDocumentContentChangePartial",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					},
+					"documentation": "The range of the document that changed."
+				},
+				{
+					"name": "rangeLength",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "The optional length of the range that got replaced.\n\n@deprecated use range instead.",
+					"deprecated": "use range instead."
+				},
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The new text for the provided range."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "TextDocumentContentChangeWholeDocument",
+			"properties": [
+				{
+					"name": "text",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The new text of the whole document."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "CodeDescription",
+			"properties": [
+				{
+					"name": "href",
+					"type": {
+						"kind": "base",
+						"name": "URI"
+					},
+					"documentation": "An URI to open with more information about the diagnostic error."
+				}
+			],
+			"documentation": "Structure to capture a description for an error code.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "DiagnosticRelatedInformation",
+			"properties": [
+				{
+					"name": "location",
+					"type": {
+						"kind": "reference",
+						"name": "Location"
+					},
+					"documentation": "The location of this related diagnostic information."
+				},
+				{
+					"name": "message",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The message of this related diagnostic information."
+				}
+			],
+			"documentation": "Represents a related message and source code location for a diagnostic. This should be\nused to point to code locations that cause or related to a diagnostics, e.g when duplicating\na symbol in a scope."
+		},
+		{
+			"name": "EditRangeWithInsertReplace",
+			"properties": [
+				{
+					"name": "insert",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					}
+				},
+				{
+					"name": "replace",
+					"type": {
+						"kind": "reference",
+						"name": "Range"
+					}
+				}
+			],
+			"documentation": "Edit range variant that includes ranges for insert and replace operations.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ServerCompletionItemOptions",
+			"properties": [
+				{
+					"name": "labelDetailsSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server has support for completion item label\ndetails (see also `CompletionItemLabelDetails`) when\nreceiving a completion item in a resolve call.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "MarkedStringWithLanguage",
+			"properties": [
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					}
+				},
+				{
+					"name": "value",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					}
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed\n@deprecated use MarkupContent instead.",
+			"since": "3.18.0",
+			"deprecated": "use MarkupContent instead."
+		},
+		{
+			"name": "ParameterInformation",
+			"properties": [
+				{
+					"name": "label",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "tuple",
+								"items": [
+									{
+										"kind": "base",
+										"name": "uinteger"
+									},
+									{
+										"kind": "base",
+										"name": "uinteger"
+									}
+								]
+							}
+						]
+					},
+					"documentation": "The label of this parameter information.\n\nEither a string or an inclusive start and exclusive end offsets within its containing\nsignature label. (see SignatureInformation.label). The offsets are based on a UTF-16\nstring representation as `Position` and `Range` does.\n\nTo avoid ambiguities a server should use the [start, end] offset value instead of using\na substring. Whether a client support this is controlled via `labelOffsetSupport` client\ncapability.\n\n*Note*: a label of type string should be a substring of its containing signature label.\nIts intended use case is to highlight the parameter label part in the `SignatureInformation.label`."
+				},
+				{
+					"name": "documentation",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "MarkupContent"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The human-readable doc-comment of this parameter. Will be shown\nin the UI but can be omitted."
+				}
+			],
+			"documentation": "Represents a parameter of a callable-signature. A parameter can\nhave a label and a doc-comment."
+		},
+		{
+			"name": "CodeActionKindDocumentation",
+			"properties": [
+				{
+					"name": "kind",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionKind"
+					},
+					"documentation": "The kind of the code action being documented.\n\nIf the kind is generic, such as `CodeActionKind.Refactor`, the documentation will be shown whenever any\nrefactorings are returned. If the kind if more specific, such as `CodeActionKind.RefactorExtract`, the\ndocumentation will only be shown when extract refactoring code actions are returned."
+				},
+				{
+					"name": "command",
+					"type": {
+						"kind": "reference",
+						"name": "Command"
+					},
+					"documentation": "Command that is ued to display the documentation to the user.\n\nThe title of this documentation code action is taken from {@linkcode Command.title}"
+				}
+			],
+			"documentation": "Documentation for a class of code actions.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "NotebookCellTextDocumentFilter",
+			"properties": [
+				{
+					"name": "notebook",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "reference",
+								"name": "NotebookDocumentFilter"
+							}
+						]
+					},
+					"documentation": "A filter that matches against the notebook\ncontaining the notebook cell. If a string\nvalue is provided it matches against the\nnotebook type. '*' matches every notebook."
+				},
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A language id like `python`.\n\nWill be matched against the language id of the\nnotebook cell document. '*' matches every language."
+				}
+			],
+			"documentation": "A notebook cell text document filter denotes a cell text\ndocument by different properties.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "FileOperationPatternOptions",
+			"properties": [
+				{
+					"name": "ignoreCase",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The pattern should be matched ignoring casing."
+				}
+			],
+			"documentation": "Matching options for the file operation pattern.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "ExecutionSummary",
+			"properties": [
+				{
+					"name": "executionOrder",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "A strict monotonically increasing value\nindicating the execution order of a cell\ninside a notebook."
+				},
+				{
+					"name": "success",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the execution was successful or\nnot if known by the client."
+				}
+			]
+		},
+		{
+			"name": "NotebookCellLanguage",
+			"properties": [
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					}
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentCellChangeStructure",
+			"properties": [
+				{
+					"name": "array",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookCellArrayChange"
+					},
+					"documentation": "The change to the cell array."
+				},
+				{
+					"name": "didOpen",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentItem"
+						}
+					},
+					"optional": true,
+					"documentation": "Additional opened cell text documents."
+				},
+				{
+					"name": "didClose",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentIdentifier"
+						}
+					},
+					"optional": true,
+					"documentation": "Additional closed cell text documents."
+				}
+			],
+			"documentation": "Structural changes to cells in a notebook document.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentCellContentChanges",
+			"properties": [
+				{
+					"name": "document",
+					"type": {
+						"kind": "reference",
+						"name": "VersionedTextDocumentIdentifier"
+					}
+				},
+				{
+					"name": "changes",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TextDocumentContentChangeEvent"
+						}
+					}
+				}
+			],
+			"documentation": "Content changes to a cell in a notebook document.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "WorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "applyEdit",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports applying batch edits\nto the workspace by supporting the request\n'workspace/applyEdit'"
+				},
+				{
+					"name": "workspaceEdit",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceEditClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to `WorkspaceEdit`s."
+				},
+				{
+					"name": "didChangeConfiguration",
+					"type": {
+						"kind": "reference",
+						"name": "DidChangeConfigurationClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `workspace/didChangeConfiguration` notification."
+				},
+				{
+					"name": "didChangeWatchedFiles",
+					"type": {
+						"kind": "reference",
+						"name": "DidChangeWatchedFilesClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `workspace/didChangeWatchedFiles` notification."
+				},
+				{
+					"name": "symbol",
+					"type": {
+						"kind": "reference",
+						"name": "WorkspaceSymbolClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `workspace/symbol` request."
+				},
+				{
+					"name": "executeCommand",
+					"type": {
+						"kind": "reference",
+						"name": "ExecuteCommandClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `workspace/executeCommand` request."
+				},
+				{
+					"name": "workspaceFolders",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for workspace folders.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "configuration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports `workspace/configuration` requests.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "semanticTokens",
+					"type": {
+						"kind": "reference",
+						"name": "SemanticTokensWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the semantic token requests scoped to the\nworkspace.\n\n@since 3.16.0.",
+					"since": "3.16.0."
+				},
+				{
+					"name": "codeLens",
+					"type": {
+						"kind": "reference",
+						"name": "CodeLensWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the code lens requests scoped to the\nworkspace.\n\n@since 3.16.0.",
+					"since": "3.16.0."
+				},
+				{
+					"name": "fileOperations",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "The client has support for file notifications/requests for user operations on files.\n\nSince 3.16.0"
+				},
+				{
+					"name": "inlineValue",
+					"type": {
+						"kind": "reference",
+						"name": "InlineValueWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the inline values requests scoped to the\nworkspace.\n\n@since 3.17.0.",
+					"since": "3.17.0."
+				},
+				{
+					"name": "inlayHint",
+					"type": {
+						"kind": "reference",
+						"name": "InlayHintWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the inlay hint requests scoped to the\nworkspace.\n\n@since 3.17.0.",
+					"since": "3.17.0."
+				},
+				{
+					"name": "diagnostics",
+					"type": {
+						"kind": "reference",
+						"name": "DiagnosticWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the diagnostic requests scoped to the\nworkspace.\n\n@since 3.17.0.",
+					"since": "3.17.0."
+				},
+				{
+					"name": "foldingRange",
+					"type": {
+						"kind": "reference",
+						"name": "FoldingRangeWorkspaceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the folding range requests scoped to the workspace.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+          "proposed": true
+				}
+			],
+			"documentation": "Workspace specific client capabilities."
+		},
+		{
+			"name": "TextDocumentClientCapabilities",
+			"properties": [
+				{
+					"name": "synchronization",
+					"type": {
+						"kind": "reference",
+						"name": "TextDocumentSyncClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Defines which synchronization capabilities the client supports."
+				},
+				{
+					"name": "completion",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/completion` request."
+				},
+				{
+					"name": "hover",
+					"type": {
+						"kind": "reference",
+						"name": "HoverClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/hover` request."
+				},
+				{
+					"name": "signatureHelp",
+					"type": {
+						"kind": "reference",
+						"name": "SignatureHelpClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/signatureHelp` request."
+				},
+				{
+					"name": "declaration",
+					"type": {
+						"kind": "reference",
+						"name": "DeclarationClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/declaration` request.\n\n@since 3.14.0",
+					"since": "3.14.0"
+				},
+				{
+					"name": "definition",
+					"type": {
+						"kind": "reference",
+						"name": "DefinitionClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/definition` request."
+				},
+				{
+					"name": "typeDefinition",
+					"type": {
+						"kind": "reference",
+						"name": "TypeDefinitionClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/typeDefinition` request.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "implementation",
+					"type": {
+						"kind": "reference",
+						"name": "ImplementationClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/implementation` request.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "references",
+					"type": {
+						"kind": "reference",
+						"name": "ReferenceClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/references` request."
+				},
+				{
+					"name": "documentHighlight",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentHighlightClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/documentHighlight` request."
+				},
+				{
+					"name": "documentSymbol",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentSymbolClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/documentSymbol` request."
+				},
+				{
+					"name": "codeAction",
+					"type": {
+						"kind": "reference",
+						"name": "CodeActionClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/codeAction` request."
+				},
+				{
+					"name": "codeLens",
+					"type": {
+						"kind": "reference",
+						"name": "CodeLensClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/codeLens` request."
+				},
+				{
+					"name": "documentLink",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentLinkClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/documentLink` request."
+				},
+				{
+					"name": "colorProvider",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentColorClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/documentColor` and the\n`textDocument/colorPresentation` request.\n\n@since 3.6.0",
+					"since": "3.6.0"
+				},
+				{
+					"name": "formatting",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentFormattingClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/formatting` request."
+				},
+				{
+					"name": "rangeFormatting",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentRangeFormattingClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/rangeFormatting` request."
+				},
+				{
+					"name": "onTypeFormatting",
+					"type": {
+						"kind": "reference",
+						"name": "DocumentOnTypeFormattingClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/onTypeFormatting` request."
+				},
+				{
+					"name": "rename",
+					"type": {
+						"kind": "reference",
+						"name": "RenameClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/rename` request."
+				},
+				{
+					"name": "foldingRange",
+					"type": {
+						"kind": "reference",
+						"name": "FoldingRangeClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/foldingRange` request.\n\n@since 3.10.0",
+					"since": "3.10.0"
+				},
+				{
+					"name": "selectionRange",
+					"type": {
+						"kind": "reference",
+						"name": "SelectionRangeClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/selectionRange` request.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "publishDiagnostics",
+					"type": {
+						"kind": "reference",
+						"name": "PublishDiagnosticsClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/publishDiagnostics` notification."
+				},
+				{
+					"name": "callHierarchy",
+					"type": {
+						"kind": "reference",
+						"name": "CallHierarchyClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the various call hierarchy requests.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "semanticTokens",
+					"type": {
+						"kind": "reference",
+						"name": "SemanticTokensClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the various semantic token request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "linkedEditingRange",
+					"type": {
+						"kind": "reference",
+						"name": "LinkedEditingRangeClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/linkedEditingRange` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "moniker",
+					"type": {
+						"kind": "reference",
+						"name": "MonikerClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Client capabilities specific to the `textDocument/moniker` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "typeHierarchy",
+					"type": {
+						"kind": "reference",
+						"name": "TypeHierarchyClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the various type hierarchy requests.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlineValue",
+					"type": {
+						"kind": "reference",
+						"name": "InlineValueClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/inlineValue` request.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlayHint",
+					"type": {
+						"kind": "reference",
+						"name": "InlayHintClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `textDocument/inlayHint` request.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "diagnostic",
+					"type": {
+						"kind": "reference",
+						"name": "DiagnosticClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the diagnostic pull model.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "inlineCompletion",
+					"type": {
+						"kind": "reference",
+						"name": "InlineCompletionClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Client capabilities specific to inline completions.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "Text document specific client capabilities."
+		},
+		{
+			"name": "NotebookDocumentClientCapabilities",
+			"properties": [
+				{
+					"name": "synchronization",
+					"type": {
+						"kind": "reference",
+						"name": "NotebookDocumentSyncClientCapabilities"
+					},
+					"documentation": "Capabilities specific to notebook document synchronization\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Capabilities specific to the notebook document support.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WindowClientCapabilities",
+			"properties": [
+				{
+					"name": "workDoneProgress",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "It indicates whether the client supports server initiated\nprogress using the `window/workDoneProgress/create` request.\n\nThe capability also controls Whether client supports handling\nof progress notifications. If set servers are allowed to report a\n`workDoneProgress` property in the request specific server\ncapabilities.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "showMessage",
+					"type": {
+						"kind": "reference",
+						"name": "ShowMessageRequestClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the showMessage request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "showDocument",
+					"type": {
+						"kind": "reference",
+						"name": "ShowDocumentClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the showDocument request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			]
+		},
+		{
+			"name": "GeneralClientCapabilities",
+			"properties": [
+				{
+					"name": "staleRequestSupport",
+					"type": {
+						"kind": "reference",
+						"name": "StaleRequestSupportOptions"
+					},
+					"optional": true,
+					"documentation": "Client capability that signals how the client\nhandles stale requests (e.g. a request\nfor which the client will not process the response\nanymore since the information is outdated).\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "regularExpressions",
+					"type": {
+						"kind": "reference",
+						"name": "RegularExpressionsClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Client capabilities specific to regular expressions.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "markdown",
+					"type": {
+						"kind": "reference",
+						"name": "MarkdownClientCapabilities"
+					},
+					"optional": true,
+					"documentation": "Client capabilities specific to the client's markdown parser.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "positionEncodings",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "PositionEncodingKind"
+						}
+					},
+					"optional": true,
+					"documentation": "The position encodings supported by the client. Client and server\nhave to agree on the same position encoding to ensure that offsets\n(e.g. character position in a line) are interpreted the same on both\nsides.\n\nTo keep the protocol backwards compatible the following applies: if\nthe value 'utf-16' is missing from the array of position encodings\nservers can assume that the client supports UTF-16. UTF-16 is\ntherefore a mandatory encoding.\n\nIf omitted it defaults to ['utf-16'].\n\nImplementation considerations: since the conversion from one encoding\ninto another requires the content of the file / line the conversion\nis best done where the file is read which is usually on the server\nside.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "General client capabilities.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "WorkspaceFoldersServerCapabilities",
+			"properties": [
+				{
+					"name": "supported",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The server has support for workspace folders"
+				},
+				{
+					"name": "changeNotifications",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "string"
+							},
+							{
+								"kind": "base",
+								"name": "boolean"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "Whether the server wants to receive workspace folder\nchange notifications.\n\nIf a string is provided the string is treated as an ID\nunder which the notification is registered on the client\nside. The ID can be used to unregister for these events\nusing the `client/unregisterCapability` request."
+				}
+			]
+		},
+		{
+			"name": "FileOperationOptions",
+			"properties": [
+				{
+					"name": "didCreate",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving didCreateFiles notifications."
+				},
+				{
+					"name": "willCreate",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving willCreateFiles requests."
+				},
+				{
+					"name": "didRename",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving didRenameFiles notifications."
+				},
+				{
+					"name": "willRename",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving willRenameFiles requests."
+				},
+				{
+					"name": "didDelete",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving didDeleteFiles file notifications."
+				},
+				{
+					"name": "willDelete",
+					"type": {
+						"kind": "reference",
+						"name": "FileOperationRegistrationOptions"
+					},
+					"optional": true,
+					"documentation": "The server is interested in receiving willDeleteFiles file requests."
+				}
+			],
+			"documentation": "Options for notifications/requests for user operations on files.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "RelativePattern",
+			"properties": [
+				{
+					"name": "baseUri",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "reference",
+								"name": "WorkspaceFolder"
+							},
+							{
+								"kind": "base",
+								"name": "URI"
+							}
+						]
+					},
+					"documentation": "A workspace folder or a base URI to which this pattern will be matched\nagainst relatively."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "reference",
+						"name": "Pattern"
+					},
+					"documentation": "The actual glob pattern;"
+				}
+			],
+			"documentation": "A relative pattern is a helper to construct glob patterns that are matched\nrelatively to a base URI. The common value for a `baseUri` is a workspace\nfolder root, but it can be another absolute URI as well.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TextDocumentFilterLanguage",
+			"properties": [
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A language id, like `typescript`."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
+				}
+			],
+			"documentation": "A document filter where `language` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "TextDocumentFilterScheme",
+			"properties": [
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A language id, like `typescript`."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
+				}
+			],
+			"documentation": "A document filter where `scheme` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "TextDocumentFilterPattern",
+			"properties": [
+				{
+					"name": "language",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A language id, like `typescript`."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples."
+				}
+			],
+			"documentation": "A document filter where `pattern` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentFilterNotebookType",
+			"properties": [
+				{
+					"name": "notebookType",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The type of the enclosing notebook."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A glob pattern."
+				}
+			],
+			"documentation": "A notebook document filter where `notebookType` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentFilterScheme",
+			"properties": [
+				{
+					"name": "notebookType",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The type of the enclosing notebook."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A glob pattern."
+				}
+			],
+			"documentation": "A notebook document filter where `scheme` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookDocumentFilterPattern",
+			"properties": [
+				{
+					"name": "notebookType",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The type of the enclosing notebook."
+				},
+				{
+					"name": "scheme",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "A Uri {@link Uri.scheme scheme}, like `file` or `untitled`."
+				},
+				{
+					"name": "pattern",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "A glob pattern."
+				}
+			],
+			"documentation": "A notebook document filter where `pattern` is required field.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "NotebookCellArrayChange",
+			"properties": [
+				{
+					"name": "start",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The start oftest of the cell that changed."
+				},
+				{
+					"name": "deleteCount",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"documentation": "The deleted cells"
+				},
+				{
+					"name": "cells",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "NotebookCell"
+						}
+					},
+					"optional": true,
+					"documentation": "The new cells, if any"
+				}
+			],
+			"documentation": "A change describing how to move a `NotebookCell`\narray from state S to S'.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "WorkspaceEditClientCapabilities",
+			"properties": [
+				{
+					"name": "documentChanges",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports versioned document changes in `WorkspaceEdit`s"
+				},
+				{
+					"name": "resourceOperations",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "ResourceOperationKind"
+						}
+					},
+					"optional": true,
+					"documentation": "The resource operations the client supports. Clients should at least\nsupport 'create', 'rename' and 'delete' files and folders.\n\n@since 3.13.0",
+					"since": "3.13.0"
+				},
+				{
+					"name": "failureHandling",
+					"type": {
+						"kind": "reference",
+						"name": "FailureHandlingKind"
+					},
+					"optional": true,
+					"documentation": "The failure handling strategy of a client if applying the workspace edit\nfails.\n\n@since 3.13.0",
+					"since": "3.13.0"
+				},
+				{
+					"name": "normalizesLineEndings",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client normalizes line endings to the client specific\nsetting.\nIf set to `true` the client will normalize line ending characters\nin a workspace edit to the client-specified new line\ncharacter.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "changeAnnotationSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ChangeAnnotationsSupportOptions"
+					},
+					"optional": true,
+					"documentation": "Whether the client in general supports change annotations on text edits,\ncreate file, rename file and delete file changes.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			]
+		},
+		{
+			"name": "DidChangeConfigurationClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Did change configuration notification supports dynamic registration."
+				}
+			]
+		},
+		{
+			"name": "DidChangeWatchedFilesClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Did change watched files notification supports dynamic registration. Please note\nthat the current protocol doesn't support static configuration for file changes\nfrom the server side."
+				},
+				{
+					"name": "relativePatternSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client has support for {@link  RelativePattern relative pattern}\nor not.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			]
+		},
+		{
+			"name": "WorkspaceSymbolClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Symbol request supports dynamic registration."
+				},
+				{
+					"name": "symbolKind",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSymbolKindOptions"
+					},
+					"optional": true,
+					"documentation": "Specific capabilities for the `SymbolKind` in the `workspace/symbol` request."
+				},
+				{
+					"name": "tagSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSymbolTagOptions"
+					},
+					"optional": true,
+					"documentation": "The client supports tags on `SymbolInformation`.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "resolveSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSymbolResolveOptions"
+					},
+					"optional": true,
+					"documentation": "The client support partial workspace symbols. The client will send the\nrequest `workspaceSymbol/resolve` to the server to resolve additional\nproperties.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Client capabilities for a {@link WorkspaceSymbolRequest}."
+		},
+		{
+			"name": "ExecuteCommandClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Execute command supports dynamic registration."
+				}
+			],
+			"documentation": "The client capabilities of a {@link ExecuteCommandRequest}."
+		},
+		{
+			"name": "SemanticTokensWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\nsemantic tokens currently shown. It should be used with absolute care\nand is useful for situation where a server for example detects a project\nwide change that requires such a calculation."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "CodeLensWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\ncode lenses currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detect a project wide\nchange that requires such a calculation."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "FileOperationClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports dynamic registration for file requests/notifications."
+				},
+				{
+					"name": "didCreate",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending didCreateFiles notifications."
+				},
+				{
+					"name": "willCreate",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending willCreateFiles requests."
+				},
+				{
+					"name": "didRename",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending didRenameFiles notifications."
+				},
+				{
+					"name": "willRename",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending willRenameFiles requests."
+				},
+				{
+					"name": "didDelete",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending didDeleteFiles notifications."
+				},
+				{
+					"name": "willDelete",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for sending willDeleteFiles requests."
+				}
+			],
+			"documentation": "Capabilities relating to events from file operations by the user in the client.\n\nThese events do not come from the file system, they come from user operations\nlike renaming a file in the UI.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "InlineValueWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\ninline values currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detects a project wide\nchange that requires such a calculation."
+				}
+			],
+			"documentation": "Client workspace capabilities specific to inline values.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHintWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\ninlay hints currently shown. It should be used with absolute care and\nis useful for situation where a server for example detects a project wide\nchange that requires such a calculation."
+				}
+			],
+			"documentation": "Client workspace capabilities specific to inlay hints.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DiagnosticWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from\nthe server to the client.\n\nNote that this event is global and will force the client to refresh all\npulled diagnostics currently shown. It should be used with absolute care and\nis useful for situation where a server for example detects a project wide\nchange that requires such a calculation."
+				}
+			],
+			"documentation": "Workspace client capabilities specific to diagnostic pull requests.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "FoldingRangeWorkspaceClientCapabilities",
+			"properties": [
+				{
+					"name": "refreshSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client implementation supports a refresh request sent from the\nserver to the client.\n\nNote that this event is global and will force the client to refresh all\nfolding ranges currently shown. It should be used with absolute care and is\nuseful for situation where a server for example detects a project wide\nchange that requires such a calculation.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "Client workspace capabilities specific to folding ranges\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "TextDocumentSyncClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether text document synchronization supports dynamic registration."
+				},
+				{
+					"name": "willSave",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports sending will save notifications."
+				},
+				{
+					"name": "willSaveWaitUntil",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports sending a will save request and\nwaits for a response providing text edits which will\nbe applied to the document before it is saved."
+				},
+				{
+					"name": "didSave",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports did save notifications."
+				}
+			]
+		},
+		{
+			"name": "CompletionClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether completion supports dynamic registration."
+				},
+				{
+					"name": "completionItem",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCompletionItemOptions"
+					},
+					"optional": true,
+					"documentation": "The client supports the following `CompletionItem` specific\ncapabilities."
+				},
+				{
+					"name": "completionItemKind",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCompletionItemOptionsKind"
+					},
+					"optional": true
+				},
+				{
+					"name": "insertTextMode",
+					"type": {
+						"kind": "reference",
+						"name": "InsertTextMode"
+					},
+					"optional": true,
+					"documentation": "Defines how the client handles whitespace and indentation\nwhen accepting a completion item that uses multi line\ntext in either `insertText` or `textEdit`.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "contextSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports to send additional context information for a\n`textDocument/completion` request."
+				},
+				{
+					"name": "completionList",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionListCapabilities"
+					},
+					"optional": true,
+					"documentation": "The client supports the following `CompletionList` specific\ncapabilities.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Completion client capabilities"
+		},
+		{
+			"name": "HoverClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether hover supports dynamic registration."
+				},
+				{
+					"name": "contentFormat",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "MarkupKind"
+						}
+					},
+					"optional": true,
+					"documentation": "Client supports the following content formats for the content\nproperty. The order describes the preferred format of the client."
+				}
+			]
+		},
+		{
+			"name": "SignatureHelpClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether signature help supports dynamic registration."
+				},
+				{
+					"name": "signatureInformation",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSignatureInformationOptions"
+					},
+					"optional": true,
+					"documentation": "The client supports the following `SignatureInformation`\nspecific properties."
+				},
+				{
+					"name": "contextSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports to send additional context information for a\n`textDocument/signatureHelp` request. A client that opts into\ncontextSupport will also support the `retriggerCharacters` on\n`SignatureHelpOptions`.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"documentation": "Client Capabilities for a {@link SignatureHelpRequest}."
+		},
+		{
+			"name": "DeclarationClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether declaration supports dynamic registration. If this is set to `true`\nthe client supports the new `DeclarationRegistrationOptions` return value\nfor the corresponding server capability as well."
+				},
+				{
+					"name": "linkSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports additional metadata in the form of declaration links."
+				}
+			],
+			"documentation": "@since 3.14.0",
+			"since": "3.14.0"
+		},
+		{
+			"name": "DefinitionClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether definition supports dynamic registration."
+				},
+				{
+					"name": "linkSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports additional metadata in the form of definition links.\n\n@since 3.14.0",
+					"since": "3.14.0"
+				}
+			],
+			"documentation": "Client Capabilities for a {@link DefinitionRequest}."
+		},
+		{
+			"name": "TypeDefinitionClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `TypeDefinitionRegistrationOptions` return value\nfor the corresponding server capability as well."
+				},
+				{
+					"name": "linkSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports additional metadata in the form of definition links.\n\nSince 3.14.0"
+				}
+			],
+			"documentation": "Since 3.6.0"
+		},
+		{
+			"name": "ImplementationClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `ImplementationRegistrationOptions` return value\nfor the corresponding server capability as well."
+				},
+				{
+					"name": "linkSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports additional metadata in the form of definition links.\n\n@since 3.14.0",
+					"since": "3.14.0"
+				}
+			],
+			"documentation": "@since 3.6.0",
+			"since": "3.6.0"
+		},
+		{
+			"name": "ReferenceClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether references supports dynamic registration."
+				}
+			],
+			"documentation": "Client Capabilities for a {@link ReferencesRequest}."
+		},
+		{
+			"name": "DocumentHighlightClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether document highlight supports dynamic registration."
+				}
+			],
+			"documentation": "Client Capabilities for a {@link DocumentHighlightRequest}."
+		},
+		{
+			"name": "DocumentSymbolClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether document symbol supports dynamic registration."
+				},
+				{
+					"name": "symbolKind",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSymbolKindOptions"
+					},
+					"optional": true,
+					"documentation": "Specific capabilities for the `SymbolKind` in the\n`textDocument/documentSymbol` request."
+				},
+				{
+					"name": "hierarchicalDocumentSymbolSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports hierarchical document symbols."
+				},
+				{
+					"name": "tagSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSymbolTagOptions"
+					},
+					"optional": true,
+					"documentation": "The client supports tags on `SymbolInformation`. Tags are supported on\n`DocumentSymbol` if `hierarchicalDocumentSymbolSupport` is set to true.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "labelSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports an additional label presented in the UI when\nregistering a document symbol provider.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "Client Capabilities for a {@link DocumentSymbolRequest}."
+		},
+		{
+			"name": "CodeActionClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code action supports dynamic registration."
+				},
+				{
+					"name": "codeActionLiteralSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCodeActionLiteralOptions"
+					},
+					"optional": true,
+					"documentation": "The client support code action literals of type `CodeAction` as a valid\nresponse of the `textDocument/codeAction` request. If the property is not\nset the request can only return `Command` literals.\n\n@since 3.8.0",
+					"since": "3.8.0"
+				},
+				{
+					"name": "isPreferredSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code action supports the `isPreferred` property.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "disabledSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code action supports the `disabled` property.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "dataSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code action supports the `data` property which is\npreserved between a `textDocument/codeAction` and a\n`codeAction/resolve` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "resolveSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCodeActionResolveOptions"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports resolving additional code action\nproperties via a separate `codeAction/resolve` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "honorsChangeAnnotations",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client honors the change annotations in\ntext edits and resource operations returned via the\n`CodeAction#edit` property by for example presenting\nthe workspace edit in the user interface and asking\nfor confirmation.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "documentationSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports documentation for a class of\ncode actions.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "The Client Capabilities of a {@link CodeActionRequest}."
+		},
+		{
+			"name": "CodeLensClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code lens supports dynamic registration."
+				}
+			],
+			"documentation": "The client capabilities  of a {@link CodeLensRequest}."
+		},
+		{
+			"name": "DocumentLinkClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether document link supports dynamic registration."
+				},
+				{
+					"name": "tooltipSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports the `tooltip` property on `DocumentLink`.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				}
+			],
+			"documentation": "The client capabilities of a {@link DocumentLinkRequest}."
+		},
+		{
+			"name": "DocumentColorClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `DocumentColorRegistrationOptions` return value\nfor the corresponding server capability as well."
+				}
+			]
+		},
+		{
+			"name": "DocumentFormattingClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether formatting supports dynamic registration."
+				}
+			],
+			"documentation": "Client capabilities of a {@link DocumentFormattingRequest}."
+		},
+		{
+			"name": "DocumentRangeFormattingClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether range formatting supports dynamic registration."
+				},
+				{
+					"name": "rangesSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports formatting multiple ranges at once.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "Client capabilities of a {@link DocumentRangeFormattingRequest}."
+		},
+		{
+			"name": "DocumentOnTypeFormattingClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether on type formatting supports dynamic registration."
+				}
+			],
+			"documentation": "Client capabilities of a {@link DocumentOnTypeFormattingRequest}."
+		},
+		{
+			"name": "RenameClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether rename supports dynamic registration."
+				},
+				{
+					"name": "prepareSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports testing for validity of rename operations\nbefore execution.\n\n@since 3.12.0",
+					"since": "3.12.0"
+				},
+				{
+					"name": "prepareSupportDefaultBehavior",
+					"type": {
+						"kind": "reference",
+						"name": "PrepareSupportDefaultBehavior"
+					},
+					"optional": true,
+					"documentation": "Client supports the default behavior result.\n\nThe value indicates the default behavior used by the\nclient.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "honorsChangeAnnotations",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client honors the change annotations in\ntext edits and resource operations returned via the\nrename request's workspace edit by for example presenting\nthe workspace edit in the user interface and asking\nfor confirmation.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			]
+		},
+		{
+			"name": "FoldingRangeClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration for folding range\nproviders. If this is set to `true` the client supports the new\n`FoldingRangeRegistrationOptions` return value for the corresponding\nserver capability as well."
+				},
+				{
+					"name": "rangeLimit",
+					"type": {
+						"kind": "base",
+						"name": "uinteger"
+					},
+					"optional": true,
+					"documentation": "The maximum number of folding ranges that the client prefers to receive\nper document. The value serves as a hint, servers are free to follow the\nlimit."
+				},
+				{
+					"name": "lineFoldingOnly",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "If set, the client signals that it only supports folding complete lines.\nIf set, client will ignore specified `startCharacter` and `endCharacter`\nproperties in a FoldingRange."
+				},
+				{
+					"name": "foldingRangeKind",
+					"type": {
+						"kind": "reference",
+						"name": "ClientFoldingRangeKindOptions"
+					},
+					"optional": true,
+					"documentation": "Specific options for the folding range kind.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "foldingRange",
+					"type": {
+						"kind": "reference",
+						"name": "ClientFoldingRangeOptions"
+					},
+					"optional": true,
+					"documentation": "Specific options for the folding range.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			]
+		},
+		{
+			"name": "SelectionRangeClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration for selection range providers. If this is set to `true`\nthe client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server\ncapability as well."
+				}
+			]
+		},
+		{
+			"name": "PublishDiagnosticsClientCapabilities",
+			"properties": [
+				{
+					"name": "relatedInformation",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the clients accepts diagnostics with related information."
+				},
+				{
+					"name": "tagSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientDiagnosticsTagOptions"
+					},
+					"optional": true,
+					"documentation": "Client supports the tag property to provide meta data about a diagnostic.\nClients supporting tags have to handle unknown tags gracefully.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "versionSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client interprets the version property of the\n`textDocument/publishDiagnostics` notification's parameter.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "codeDescriptionSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports a codeDescription property\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "dataSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether code action supports the `data` property which is\npreserved between a `textDocument/publishDiagnostics` and\n`textDocument/codeAction` request.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				}
+			],
+			"documentation": "The publish diagnostic client capabilities."
+		},
+		{
+			"name": "CallHierarchyClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokensClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				},
+				{
+					"name": "requests",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSemanticTokensRequestOptions"
+					},
+					"documentation": "Which requests the client supports and might send to the server\ndepending on the server's capability. Please note that clients might not\nshow semantic tokens or degrade some of the user experience if a range\nor full request is advertised by the client but not provided by the\nserver. If for example the client capability `requests.full` and\n`request.range` are both set to true but the server only provides a\nrange provider the client might not render a minimap correctly or might\neven decide to not show any semantic tokens at all."
+				},
+				{
+					"name": "tokenTypes",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The token types that the client supports."
+				},
+				{
+					"name": "tokenModifiers",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The token modifiers that the client supports."
+				},
+				{
+					"name": "formats",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "TokenFormat"
+						}
+					},
+					"documentation": "The token formats the clients supports."
+				},
+				{
+					"name": "overlappingTokenSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports tokens that can overlap each other."
+				},
+				{
+					"name": "multilineTokenSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports tokens that can span multiple lines."
+				},
+				{
+					"name": "serverCancelSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client allows the server to actively cancel a\nsemantic token request, e.g. supports returning\nLSPErrorCodes.ServerCancelled. If a server does the client\nneeds to retrigger the request.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "augmentsSyntaxTokens",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client uses semantic tokens to augment existing\nsyntax tokens. If set to `true` client side created syntax\ntokens and semantic tokens are both used for colorization. If\nset to `false` the client only uses the returned semantic tokens\nfor colorization.\n\nIf the value is `undefined` then the client behavior is not\nspecified.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "LinkedEditingRangeClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				}
+			],
+			"documentation": "Client capabilities for the linked editing range request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MonikerClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether moniker supports dynamic registration. If this is set to `true`\nthe client supports the new `MonikerRegistrationOptions` return value\nfor the corresponding server capability as well."
+				}
+			],
+			"documentation": "Client capabilities specific to the moniker request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "TypeHierarchyClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				}
+			],
+			"documentation": "@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineValueClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration for inline value providers."
+				}
+			],
+			"documentation": "Client capabilities specific to inline values.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlayHintClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether inlay hints support dynamic registration."
+				},
+				{
+					"name": "resolveSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientInlayHintResolveOptions"
+					},
+					"optional": true,
+					"documentation": "Indicates which properties a client can resolve lazily on an inlay\nhint."
+				}
+			],
+			"documentation": "Inlay hint client capabilities.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DiagnosticClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is set to `true`\nthe client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				},
+				{
+					"name": "relatedDocumentSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the clients supports related documents for document diagnostic pulls."
+				}
+			],
+			"documentation": "Client capabilities specific to diagnostic pull requests.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "InlineCompletionClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration for inline completion providers."
+				}
+			],
+			"documentation": "Client capabilities specific to inline completions.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "NotebookDocumentSyncClientCapabilities",
+			"properties": [
+				{
+					"name": "dynamicRegistration",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether implementation supports dynamic registration. If this is\nset to `true` the client supports the new\n`(TextDocumentRegistrationOptions & StaticRegistrationOptions)`\nreturn value for the corresponding server capability as well."
+				},
+				{
+					"name": "executionSummarySupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports sending execution summary data per cell."
+				}
+			],
+			"documentation": "Notebook specific client capabilities.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "ShowMessageRequestClientCapabilities",
+			"properties": [
+				{
+					"name": "messageActionItem",
+					"type": {
+						"kind": "reference",
+						"name": "ClientShowMessageActionItemOptions"
+					},
+					"optional": true,
+					"documentation": "Capabilities specific to the `MessageActionItem` type."
+				}
+			],
+			"documentation": "Show message request client capabilities"
+		},
+		{
+			"name": "ShowDocumentClientCapabilities",
+			"properties": [
+				{
+					"name": "support",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "The client has support for the showDocument\nrequest."
+				}
+			],
+			"documentation": "Client capabilities for the showDocument request.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "StaleRequestSupportOptions",
+			"properties": [
+				{
+					"name": "cancel",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"documentation": "The client will actively cancel the request."
+				},
+				{
+					"name": "retryOnContentModified",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The list of requests for which the client\nwill retry the request if it receives a\nresponse with error code `ContentModified`"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "RegularExpressionsClientCapabilities",
+			"properties": [
+				{
+					"name": "engine",
+					"type": {
+						"kind": "reference",
+						"name": "RegularExpressionEngineKind"
+					},
+					"documentation": "The engine's name."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The engine's version."
+				}
+			],
+			"documentation": "Client capabilities specific to regular expressions.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MarkdownClientCapabilities",
+			"properties": [
+				{
+					"name": "parser",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"documentation": "The name of the parser."
+				},
+				{
+					"name": "version",
+					"type": {
+						"kind": "base",
+						"name": "string"
+					},
+					"optional": true,
+					"documentation": "The version of the parser."
+				},
+				{
+					"name": "allowedTags",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "A list of HTML tags that the client allows / supports in\nMarkdown.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "Client capabilities specific to the used markdown parser.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "ChangeAnnotationsSupportOptions",
+			"properties": [
+				{
+					"name": "groupsOnLabel",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client groups edits with equal labels into tree nodes,\nfor instance all edits labelled with \"Changes in Strings\" would\nbe a tree node."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSymbolKindOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolKind"
+						}
+					},
+					"optional": true,
+					"documentation": "The symbol kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown.\n\nIf this property is not present the client only supports\nthe symbol kinds from `File` to `Array` as defined in\nthe initial version of the protocol."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSymbolTagOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "SymbolTag"
+						}
+					},
+					"documentation": "The tags supported by the client."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSymbolResolveOptions",
+			"properties": [
+				{
+					"name": "properties",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The properties that a client can resolve lazily. Usually\n`location.range`"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCompletionItemOptions",
+			"properties": [
+				{
+					"name": "snippetSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports snippets as insert text.\n\nA snippet can define tab stops and placeholders with `$1`, `$2`\nand `${3:foo}`. `$0` defines the final tab stop, it defaults to\nthe end of the snippet. Placeholders with equal identifiers are linked,\nthat is typing in one will update others too."
+				},
+				{
+					"name": "commitCharactersSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports commit characters on a completion item."
+				},
+				{
+					"name": "documentationFormat",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "MarkupKind"
+						}
+					},
+					"optional": true,
+					"documentation": "Client supports the following content formats for the documentation\nproperty. The order describes the preferred format of the client."
+				},
+				{
+					"name": "deprecatedSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports the deprecated property on a completion item."
+				},
+				{
+					"name": "preselectSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client supports the preselect property on a completion item."
+				},
+				{
+					"name": "tagSupport",
+					"type": {
+						"kind": "reference",
+						"name": "CompletionItemTagOptions"
+					},
+					"optional": true,
+					"documentation": "Client supports the tag property on a completion item. Clients supporting\ntags have to handle unknown tags gracefully. Clients especially need to\npreserve unknown tags when sending a completion item back to the server in\na resolve call.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "insertReplaceSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Client support insert replace edit to control different behavior if a\ncompletion item is inserted in the text or should replace text.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "resolveSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCompletionItemResolveOptions"
+					},
+					"optional": true,
+					"documentation": "Indicates which properties a client can resolve lazily on a completion\nitem. Before version 3.16.0 only the predefined properties `documentation`\nand `details` could be resolved lazily.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "insertTextModeSupport",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCompletionItemInsertTextModeOptions"
+					},
+					"optional": true,
+					"documentation": "The client supports the `insertTextMode` property on\na completion item to override the whitespace handling mode\nas defined by the client (see `insertTextMode`).\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "labelDetailsSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client has support for completion item label\ndetails (see also `CompletionItemLabelDetails`).\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCompletionItemOptionsKind",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CompletionItemKind"
+						}
+					},
+					"optional": true,
+					"documentation": "The completion item kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown.\n\nIf this property is not present the client only supports\nthe completion items kinds from `Text` to `Reference` as defined in\nthe initial version of the protocol."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "CompletionListCapabilities",
+			"properties": [
+				{
+					"name": "itemDefaults",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"optional": true,
+					"documentation": "The client supports the following itemDefaults on\na completion list.\n\nThe value lists the supported property names of the\n`CompletionList.itemDefaults` object. If omitted\nno properties are supported.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "The client supports the following `CompletionList` specific\ncapabilities.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "ClientSignatureInformationOptions",
+			"properties": [
+				{
+					"name": "documentationFormat",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "MarkupKind"
+						}
+					},
+					"optional": true,
+					"documentation": "Client supports the following content formats for the documentation\nproperty. The order describes the preferred format of the client."
+				},
+				{
+					"name": "parameterInformation",
+					"type": {
+						"kind": "reference",
+						"name": "ClientSignatureParameterInformationOptions"
+					},
+					"optional": true,
+					"documentation": "Client capabilities specific to parameter information."
+				},
+				{
+					"name": "activeParameterSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports the `activeParameter` property on `SignatureInformation`\nliteral.\n\n@since 3.16.0",
+					"since": "3.16.0"
+				},
+				{
+					"name": "noActiveParameterSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports the `activeParameter` property on\n`SignatureHelp`/`SignatureInformation` being set to `null` to\nindicate that no parameter should be active.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCodeActionLiteralOptions",
+			"properties": [
+				{
+					"name": "codeActionKind",
+					"type": {
+						"kind": "reference",
+						"name": "ClientCodeActionKindOptions"
+					},
+					"documentation": "The code action kind is support with the following value\nset."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCodeActionResolveOptions",
+			"properties": [
+				{
+					"name": "properties",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The properties that a client can resolve lazily."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientFoldingRangeKindOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "FoldingRangeKind"
+						}
+					},
+					"optional": true,
+					"documentation": "The folding range kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientFoldingRangeOptions",
+			"properties": [
+				{
+					"name": "collapsedText",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "If set, the client signals that it supports setting collapsedText on\nfolding ranges to display custom labels instead of the default text.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientDiagnosticsTagOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "DiagnosticTag"
+						}
+					},
+					"documentation": "The tags supported by the client."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSemanticTokensRequestOptions",
+			"properties": [
+				{
+					"name": "range",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "literal",
+								"value": {
+									"properties": []
+								}
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The client will send the `textDocument/semanticTokens/range` request if\nthe server provides a corresponding handler."
+				},
+				{
+					"name": "full",
+					"type": {
+						"kind": "or",
+						"items": [
+							{
+								"kind": "base",
+								"name": "boolean"
+							},
+							{
+								"kind": "reference",
+								"name": "ClientSemanticTokensRequestFullDelta"
+							}
+						]
+					},
+					"optional": true,
+					"documentation": "The client will send the `textDocument/semanticTokens/full` request if\nthe server provides a corresponding handler."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientInlayHintResolveOptions",
+			"properties": [
+				{
+					"name": "properties",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The properties that a client can resolve lazily."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientShowMessageActionItemOptions",
+			"properties": [
+				{
+					"name": "additionalPropertiesSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "Whether the client supports additional attributes which\nare preserved and send back to the server in the\nrequest's response."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "CompletionItemTagOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CompletionItemTag"
+						}
+					},
+					"documentation": "The tags supported by the client."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCompletionItemResolveOptions",
+			"properties": [
+				{
+					"name": "properties",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "base",
+							"name": "string"
+						}
+					},
+					"documentation": "The properties that a client can resolve lazily."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCompletionItemInsertTextModeOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "InsertTextMode"
+						}
+					}
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSignatureParameterInformationOptions",
+			"properties": [
+				{
+					"name": "labelOffsetSupport",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client supports processing label offsets instead of a\nsimple label string.\n\n@since 3.14.0",
+					"since": "3.14.0"
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientCodeActionKindOptions",
+			"properties": [
+				{
+					"name": "valueSet",
+					"type": {
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "CodeActionKind"
+						}
+					},
+					"documentation": "The code action kind values the client supports. When this\nproperty exists the client also guarantees that it will\nhandle values outside its set gracefully and falls back\nto a default value when unknown."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "ClientSemanticTokensRequestFullDelta",
+			"properties": [
+				{
+					"name": "delta",
+					"type": {
+						"kind": "base",
+						"name": "boolean"
+					},
+					"optional": true,
+					"documentation": "The client will send the `textDocument/semanticTokens/full/delta` request if\nthe server provides a corresponding handler."
+				}
+			],
+			"documentation": "@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		}
+	],
+	"enumerations": [
+		{
+			"name": "SemanticTokenTypes",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "namespace",
+					"value": "namespace"
+				},
+				{
+					"name": "type",
+					"value": "type",
+					"documentation": "Represents a generic type. Acts as a fallback for types which can't be mapped to\na specific type like class or enum."
+				},
+				{
+					"name": "class",
+					"value": "class"
+				},
+				{
+					"name": "enum",
+					"value": "enum"
+				},
+				{
+					"name": "interface",
+					"value": "interface"
+				},
+				{
+					"name": "struct",
+					"value": "struct"
+				},
+				{
+					"name": "typeParameter",
+					"value": "typeParameter"
+				},
+				{
+					"name": "parameter",
+					"value": "parameter"
+				},
+				{
+					"name": "variable",
+					"value": "variable"
+				},
+				{
+					"name": "property",
+					"value": "property"
+				},
+				{
+					"name": "enumMember",
+					"value": "enumMember"
+				},
+				{
+					"name": "event",
+					"value": "event"
+				},
+				{
+					"name": "function",
+					"value": "function"
+				},
+				{
+					"name": "method",
+					"value": "method"
+				},
+				{
+					"name": "macro",
+					"value": "macro"
+				},
+				{
+					"name": "keyword",
+					"value": "keyword"
+				},
+				{
+					"name": "modifier",
+					"value": "modifier"
+				},
+				{
+					"name": "comment",
+					"value": "comment"
+				},
+				{
+					"name": "string",
+					"value": "string"
+				},
+				{
+					"name": "number",
+					"value": "number"
+				},
+				{
+					"name": "regexp",
+					"value": "regexp"
+				},
+				{
+					"name": "operator",
+					"value": "operator"
+				},
+				{
+					"name": "decorator",
+					"value": "decorator",
+					"documentation": "@since 3.17.0",
+					"since": "3.17.0"
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "A set of predefined token types. This set is not fixed\nan clients can specify additional token types via the\ncorresponding client capabilities.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "SemanticTokenModifiers",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "declaration",
+					"value": "declaration"
+				},
+				{
+					"name": "definition",
+					"value": "definition"
+				},
+				{
+					"name": "readonly",
+					"value": "readonly"
+				},
+				{
+					"name": "static",
+					"value": "static"
+				},
+				{
+					"name": "deprecated",
+					"value": "deprecated"
+				},
+				{
+					"name": "abstract",
+					"value": "abstract"
+				},
+				{
+					"name": "async",
+					"value": "async"
+				},
+				{
+					"name": "modification",
+					"value": "modification"
+				},
+				{
+					"name": "documentation",
+					"value": "documentation"
+				},
+				{
+					"name": "defaultLibrary",
+					"value": "defaultLibrary"
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "A set of predefined token modifiers. This set is not fixed\nan clients can specify additional token types via the\ncorresponding client capabilities.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "DocumentDiagnosticReportKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Full",
+					"value": "full",
+					"documentation": "A diagnostic report with a full\nset of problems."
+				},
+				{
+					"name": "Unchanged",
+					"value": "unchanged",
+					"documentation": "A report indicating that the last\nreturned report is still accurate."
+				}
+			],
+			"documentation": "The document diagnostic report kinds.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "ErrorCodes",
+			"type": {
+				"kind": "base",
+				"name": "integer"
+			},
+			"values": [
+				{
+					"name": "ParseError",
+					"value": -32700
+				},
+				{
+					"name": "InvalidRequest",
+					"value": -32600
+				},
+				{
+					"name": "MethodNotFound",
+					"value": -32601
+				},
+				{
+					"name": "InvalidParams",
+					"value": -32602
+				},
+				{
+					"name": "InternalError",
+					"value": -32603
+				},
+				{
+					"name": "ServerNotInitialized",
+					"value": -32002,
+					"documentation": "Error code indicating that a server received a notification or\nrequest before the server has received the `initialize` request."
+				},
+				{
+					"name": "UnknownErrorCode",
+					"value": -32001
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "Predefined error codes."
+		},
+		{
+			"name": "LSPErrorCodes",
+			"type": {
+				"kind": "base",
+				"name": "integer"
+			},
+			"values": [
+				{
+					"name": "RequestFailed",
+					"value": -32803,
+					"documentation": "A request failed but it was syntactically correct, e.g the\nmethod name was known and the parameters were valid. The error\nmessage should contain human readable information about why\nthe request failed.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "ServerCancelled",
+					"value": -32802,
+					"documentation": "The server cancelled the request. This error code should\nonly be used for requests that explicitly support being\nserver cancellable.\n\n@since 3.17.0",
+					"since": "3.17.0"
+				},
+				{
+					"name": "ContentModified",
+					"value": -32801,
+					"documentation": "The server detected that the content of a document got\nmodified outside normal conditions. A server should\nNOT send this error code if it detects a content change\nin it unprocessed messages. The result even computed\non an older state might still be useful for the client.\n\nIf a client decides that a result is not of any use anymore\nthe client should cancel the request."
+				},
+				{
+					"name": "RequestCancelled",
+					"value": -32800,
+					"documentation": "The client has canceled a request and a server as detected\nthe cancel."
+				}
+			],
+			"supportsCustomValues": true
+		},
+		{
+			"name": "FoldingRangeKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Comment",
+					"value": "comment",
+					"documentation": "Folding range for a comment"
+				},
+				{
+					"name": "Imports",
+					"value": "imports",
+					"documentation": "Folding range for an import or include"
+				},
+				{
+					"name": "Region",
+					"value": "region",
+					"documentation": "Folding range for a region (e.g. `#region`)"
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "A set of predefined range kinds."
+		},
+		{
+			"name": "SymbolKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "File",
+					"value": 1
+				},
+				{
+					"name": "Module",
+					"value": 2
+				},
+				{
+					"name": "Namespace",
+					"value": 3
+				},
+				{
+					"name": "Package",
+					"value": 4
+				},
+				{
+					"name": "Class",
+					"value": 5
+				},
+				{
+					"name": "Method",
+					"value": 6
+				},
+				{
+					"name": "Property",
+					"value": 7
+				},
+				{
+					"name": "Field",
+					"value": 8
+				},
+				{
+					"name": "Constructor",
+					"value": 9
+				},
+				{
+					"name": "Enum",
+					"value": 10
+				},
+				{
+					"name": "Interface",
+					"value": 11
+				},
+				{
+					"name": "Function",
+					"value": 12
+				},
+				{
+					"name": "Variable",
+					"value": 13
+				},
+				{
+					"name": "Constant",
+					"value": 14
+				},
+				{
+					"name": "String",
+					"value": 15
+				},
+				{
+					"name": "Number",
+					"value": 16
+				},
+				{
+					"name": "Boolean",
+					"value": 17
+				},
+				{
+					"name": "Array",
+					"value": 18
+				},
+				{
+					"name": "Object",
+					"value": 19
+				},
+				{
+					"name": "Key",
+					"value": 20
+				},
+				{
+					"name": "Null",
+					"value": 21
+				},
+				{
+					"name": "EnumMember",
+					"value": 22
+				},
+				{
+					"name": "Struct",
+					"value": 23
+				},
+				{
+					"name": "Event",
+					"value": 24
+				},
+				{
+					"name": "Operator",
+					"value": 25
+				},
+				{
+					"name": "TypeParameter",
+					"value": 26
+				}
+			],
+			"documentation": "A symbol kind."
+		},
+		{
+			"name": "SymbolTag",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Deprecated",
+					"value": 1,
+					"documentation": "Render a symbol as obsolete, usually using a strike-out."
+				}
+			],
+			"documentation": "Symbol tags are extra annotations that tweak the rendering of a symbol.\n\n@since 3.16",
+			"since": "3.16"
+		},
+		{
+			"name": "UniquenessLevel",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "document",
+					"value": "document",
+					"documentation": "The moniker is only unique inside a document"
+				},
+				{
+					"name": "project",
+					"value": "project",
+					"documentation": "The moniker is unique inside a project for which a dump got created"
+				},
+				{
+					"name": "group",
+					"value": "group",
+					"documentation": "The moniker is unique inside the group to which a project belongs"
+				},
+				{
+					"name": "scheme",
+					"value": "scheme",
+					"documentation": "The moniker is unique inside the moniker scheme."
+				},
+				{
+					"name": "global",
+					"value": "global",
+					"documentation": "The moniker is globally unique"
+				}
+			],
+			"documentation": "Moniker uniqueness level to define scope of the moniker.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "MonikerKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "import",
+					"value": "import",
+					"documentation": "The moniker represent a symbol that is imported into a project"
+				},
+				{
+					"name": "export",
+					"value": "export",
+					"documentation": "The moniker represents a symbol that is exported from a project"
+				},
+				{
+					"name": "local",
+					"value": "local",
+					"documentation": "The moniker represents a symbol that is local to a project (e.g. a local\nvariable of a function, a class not visible outside the project, ...)"
+				}
+			],
+			"documentation": "The moniker kind.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "InlayHintKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Type",
+					"value": 1,
+					"documentation": "An inlay hint that for a type annotation."
+				},
+				{
+					"name": "Parameter",
+					"value": 2,
+					"documentation": "An inlay hint that is for a parameter."
+				}
+			],
+			"documentation": "Inlay hint kinds.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "MessageType",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Error",
+					"value": 1,
+					"documentation": "An error message."
+				},
+				{
+					"name": "Warning",
+					"value": 2,
+					"documentation": "A warning message."
+				},
+				{
+					"name": "Info",
+					"value": 3,
+					"documentation": "An information message."
+				},
+				{
+					"name": "Log",
+					"value": 4,
+					"documentation": "A log message."
+				},
+				{
+					"name": "Debug",
+					"value": 5,
+					"documentation": "A debug message.\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				}
+			],
+			"documentation": "The message type"
+		},
+		{
+			"name": "TextDocumentSyncKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "None",
+					"value": 0,
+					"documentation": "Documents should not be synced at all."
+				},
+				{
+					"name": "Full",
+					"value": 1,
+					"documentation": "Documents are synced by always sending the full content\nof the document."
+				},
+				{
+					"name": "Incremental",
+					"value": 2,
+					"documentation": "Documents are synced by sending the full content on open.\nAfter that only incremental updates to the document are\nsend."
+				}
+			],
+			"documentation": "Defines how the host (editor) should sync\ndocument changes to the language server."
+		},
+		{
+			"name": "TextDocumentSaveReason",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Manual",
+					"value": 1,
+					"documentation": "Manually triggered, e.g. by the user pressing save, by starting debugging,\nor by an API call."
+				},
+				{
+					"name": "AfterDelay",
+					"value": 2,
+					"documentation": "Automatic after a delay."
+				},
+				{
+					"name": "FocusOut",
+					"value": 3,
+					"documentation": "When the editor lost focus."
+				}
+			],
+			"documentation": "Represents reasons why a text document is saved."
+		},
+		{
+			"name": "CompletionItemKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Text",
+					"value": 1
+				},
+				{
+					"name": "Method",
+					"value": 2
+				},
+				{
+					"name": "Function",
+					"value": 3
+				},
+				{
+					"name": "Constructor",
+					"value": 4
+				},
+				{
+					"name": "Field",
+					"value": 5
+				},
+				{
+					"name": "Variable",
+					"value": 6
+				},
+				{
+					"name": "Class",
+					"value": 7
+				},
+				{
+					"name": "Interface",
+					"value": 8
+				},
+				{
+					"name": "Module",
+					"value": 9
+				},
+				{
+					"name": "Property",
+					"value": 10
+				},
+				{
+					"name": "Unit",
+					"value": 11
+				},
+				{
+					"name": "Value",
+					"value": 12
+				},
+				{
+					"name": "Enum",
+					"value": 13
+				},
+				{
+					"name": "Keyword",
+					"value": 14
+				},
+				{
+					"name": "Snippet",
+					"value": 15
+				},
+				{
+					"name": "Color",
+					"value": 16
+				},
+				{
+					"name": "File",
+					"value": 17
+				},
+				{
+					"name": "Reference",
+					"value": 18
+				},
+				{
+					"name": "Folder",
+					"value": 19
+				},
+				{
+					"name": "EnumMember",
+					"value": 20
+				},
+				{
+					"name": "Constant",
+					"value": 21
+				},
+				{
+					"name": "Struct",
+					"value": 22
+				},
+				{
+					"name": "Event",
+					"value": 23
+				},
+				{
+					"name": "Operator",
+					"value": 24
+				},
+				{
+					"name": "TypeParameter",
+					"value": 25
+				}
+			],
+			"documentation": "The kind of a completion entry."
+		},
+		{
+			"name": "CompletionItemTag",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Deprecated",
+					"value": 1,
+					"documentation": "Render a completion as obsolete, usually using a strike-out."
+				}
+			],
+			"documentation": "Completion item tags are extra annotations that tweak the rendering of a completion\nitem.\n\n@since 3.15.0",
+			"since": "3.15.0"
+		},
+		{
+			"name": "InsertTextFormat",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "PlainText",
+					"value": 1,
+					"documentation": "The primary text to be inserted is treated as a plain string."
+				},
+				{
+					"name": "Snippet",
+					"value": 2,
+					"documentation": "The primary text to be inserted is treated as a snippet.\n\nA snippet can define tab stops and placeholders with `$1`, `$2`\nand `${3:foo}`. `$0` defines the final tab stop, it defaults to\nthe end of the snippet. Placeholders with equal identifiers are linked,\nthat is typing in one will update others too.\n\nSee also: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#snippet_syntax"
+				}
+			],
+			"documentation": "Defines whether the insert text in a completion item should be interpreted as\nplain text or a snippet."
+		},
+		{
+			"name": "InsertTextMode",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "asIs",
+					"value": 1,
+					"documentation": "The insertion or replace strings is taken as it is. If the\nvalue is multi line the lines below the cursor will be\ninserted using the indentation defined in the string value.\nThe client will not apply any kind of adjustments to the\nstring."
+				},
+				{
+					"name": "adjustIndentation",
+					"value": 2,
+					"documentation": "The editor adjusts leading whitespace of new lines so that\nthey match the indentation up to the cursor of the line for\nwhich the item is accepted.\n\nConsider a line like this: <2tabs><cursor><3tabs>foo. Accepting a\nmulti line completion item is indented using 2 tabs and all\nfollowing lines inserted will be indented using 2 tabs as well."
+				}
+			],
+			"documentation": "How whitespace and indentation is handled during completion\nitem insertion.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "DocumentHighlightKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Text",
+					"value": 1,
+					"documentation": "A textual occurrence."
+				},
+				{
+					"name": "Read",
+					"value": 2,
+					"documentation": "Read-access of a symbol, like reading a variable."
+				},
+				{
+					"name": "Write",
+					"value": 3,
+					"documentation": "Write-access of a symbol, like writing to a variable."
+				}
+			],
+			"documentation": "A document highlight kind."
+		},
+		{
+			"name": "CodeActionKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Empty",
+					"value": "",
+					"documentation": "Empty kind."
+				},
+				{
+					"name": "QuickFix",
+					"value": "quickfix",
+					"documentation": "Base kind for quickfix actions: 'quickfix'"
+				},
+				{
+					"name": "Refactor",
+					"value": "refactor",
+					"documentation": "Base kind for refactoring actions: 'refactor'"
+				},
+				{
+					"name": "RefactorExtract",
+					"value": "refactor.extract",
+					"documentation": "Base kind for refactoring extraction actions: 'refactor.extract'\n\nExample extract actions:\n\n- Extract method\n- Extract function\n- Extract variable\n- Extract interface from class\n- ..."
+				},
+				{
+					"name": "RefactorInline",
+					"value": "refactor.inline",
+					"documentation": "Base kind for refactoring inline actions: 'refactor.inline'\n\nExample inline actions:\n\n- Inline function\n- Inline variable\n- Inline constant\n- ..."
+				},
+				{
+					"name": "RefactorMove",
+					"value": "refactor.move",
+					"documentation": "Base kind for refactoring move actions: `refactor.move`\n\nExample move actions:\n\n- Move a function to a new file\n- Move a property between classes\n- Move method to base class\n- ...\n\n@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "RefactorRewrite",
+					"value": "refactor.rewrite",
+					"documentation": "Base kind for refactoring rewrite actions: 'refactor.rewrite'\n\nExample rewrite actions:\n\n- Convert JavaScript function to class\n- Add or remove parameter\n- Encapsulate field\n- Make method static\n- Move method to base class\n- ..."
+				},
+				{
+					"name": "Source",
+					"value": "source",
+					"documentation": "Base kind for source actions: `source`\n\nSource code actions apply to the entire file."
+				},
+				{
+					"name": "SourceOrganizeImports",
+					"value": "source.organizeImports",
+					"documentation": "Base kind for an organize imports source action: `source.organizeImports`"
+				},
+				{
+					"name": "SourceFixAll",
+					"value": "source.fixAll",
+					"documentation": "Base kind for auto-fix source actions: `source.fixAll`.\n\nFix all actions automatically fix errors that have a clear fix that do not require user input.\nThey should not suppress errors or perform unsafe fixes such as generating new types or classes.\n\n@since 3.15.0",
+					"since": "3.15.0"
+				},
+				{
+					"name": "Notebook",
+					"value": "notebook",
+					"documentation": "Base kind for all code actions applying to the entire notebook's scope. CodeActionKinds using\nthis should always begin with `notebook.`\n\n@since 3.18.0",
+					"since": "3.18.0"
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "A set of predefined code action kinds"
+		},
+		{
+			"name": "TraceValue",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Off",
+					"value": "off",
+					"documentation": "Turn tracing off."
+				},
+				{
+					"name": "Messages",
+					"value": "messages",
+					"documentation": "Trace messages only."
+				},
+				{
+					"name": "Verbose",
+					"value": "verbose",
+					"documentation": "Verbose message tracing."
+				}
+			]
+		},
+		{
+			"name": "MarkupKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "PlainText",
+					"value": "plaintext",
+					"documentation": "Plain text is supported as a content format"
+				},
+				{
+					"name": "Markdown",
+					"value": "markdown",
+					"documentation": "Markdown is supported as a content format"
+				}
+			],
+			"documentation": "Describes the content type that a client supports in various\nresult literals like `Hover`, `ParameterInfo` or `CompletionItem`.\n\nPlease note that `MarkupKinds` must not start with a `$`. This kinds\nare reserved for internal usage."
+		},
+		{
+			"name": "LanguageKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "ABAP",
+					"value": "abap"
+				},
+				{
+					"name": "WindowsBat",
+					"value": "bat"
+				},
+				{
+					"name": "BibTeX",
+					"value": "bibtex"
+				},
+				{
+					"name": "Clojure",
+					"value": "clojure"
+				},
+				{
+					"name": "Coffeescript",
+					"value": "coffeescript"
+				},
+				{
+					"name": "C",
+					"value": "c"
+				},
+				{
+					"name": "CPP",
+					"value": "cpp"
+				},
+				{
+					"name": "CSharp",
+					"value": "csharp"
+				},
+				{
+					"name": "CSS",
+					"value": "css"
+				},
+				{
+					"name": "D",
+					"value": "d",
+					"documentation": "@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "Delphi",
+					"value": "pascal",
+					"documentation": "@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "Diff",
+					"value": "diff"
+				},
+				{
+					"name": "Dart",
+					"value": "dart"
+				},
+				{
+					"name": "Dockerfile",
+					"value": "dockerfile"
+				},
+				{
+					"name": "Elixir",
+					"value": "elixir"
+				},
+				{
+					"name": "Erlang",
+					"value": "erlang"
+				},
+				{
+					"name": "FSharp",
+					"value": "fsharp"
+				},
+				{
+					"name": "GitCommit",
+					"value": "git-commit"
+				},
+				{
+					"name": "GitRebase",
+					"value": "rebase"
+				},
+				{
+					"name": "Go",
+					"value": "go"
+				},
+				{
+					"name": "Groovy",
+					"value": "groovy"
+				},
+				{
+					"name": "Handlebars",
+					"value": "handlebars"
+				},
+				{
+					"name": "Haskell",
+					"value": "haskell"
+				},
+				{
+					"name": "HTML",
+					"value": "html"
+				},
+				{
+					"name": "Ini",
+					"value": "ini"
+				},
+				{
+					"name": "Java",
+					"value": "java"
+				},
+				{
+					"name": "JavaScript",
+					"value": "javascript"
+				},
+				{
+					"name": "JavaScriptReact",
+					"value": "javascriptreact"
+				},
+				{
+					"name": "JSON",
+					"value": "json"
+				},
+				{
+					"name": "LaTeX",
+					"value": "latex"
+				},
+				{
+					"name": "Less",
+					"value": "less"
+				},
+				{
+					"name": "Lua",
+					"value": "lua"
+				},
+				{
+					"name": "Makefile",
+					"value": "makefile"
+				},
+				{
+					"name": "Markdown",
+					"value": "markdown"
+				},
+				{
+					"name": "ObjectiveC",
+					"value": "objective-c"
+				},
+				{
+					"name": "ObjectiveCPP",
+					"value": "objective-cpp"
+				},
+				{
+					"name": "Pascal",
+					"value": "pascal",
+					"documentation": "@since 3.18.0\n@proposed",
+					"since": "3.18.0",
+					"proposed": true
+				},
+				{
+					"name": "Perl",
+					"value": "perl"
+				},
+				{
+					"name": "Perl6",
+					"value": "perl6"
+				},
+				{
+					"name": "PHP",
+					"value": "php"
+				},
+				{
+					"name": "Powershell",
+					"value": "powershell"
+				},
+				{
+					"name": "Pug",
+					"value": "jade"
+				},
+				{
+					"name": "Python",
+					"value": "python"
+				},
+				{
+					"name": "R",
+					"value": "r"
+				},
+				{
+					"name": "Razor",
+					"value": "razor"
+				},
+				{
+					"name": "Ruby",
+					"value": "ruby"
+				},
+				{
+					"name": "Rust",
+					"value": "rust"
+				},
+				{
+					"name": "SCSS",
+					"value": "scss"
+				},
+				{
+					"name": "SASS",
+					"value": "sass"
+				},
+				{
+					"name": "Scala",
+					"value": "scala"
+				},
+				{
+					"name": "ShaderLab",
+					"value": "shaderlab"
+				},
+				{
+					"name": "ShellScript",
+					"value": "shellscript"
+				},
+				{
+					"name": "SQL",
+					"value": "sql"
+				},
+				{
+					"name": "Swift",
+					"value": "swift"
+				},
+				{
+					"name": "TypeScript",
+					"value": "typescript"
+				},
+				{
+					"name": "TypeScriptReact",
+					"value": "typescriptreact"
+				},
+				{
+					"name": "TeX",
+					"value": "tex"
+				},
+				{
+					"name": "VisualBasic",
+					"value": "vb"
+				},
+				{
+					"name": "XML",
+					"value": "xml"
+				},
+				{
+					"name": "XSL",
+					"value": "xsl"
+				},
+				{
+					"name": "YAML",
+					"value": "yaml"
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "Predefined Language kinds\n@since 3.18.0\n@proposed",
+			"since": "3.18.0"
+		},
+		{
+			"name": "InlineCompletionTriggerKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Invoked",
+					"value": 1,
+					"documentation": "Completion was triggered explicitly by a user gesture."
+				},
+				{
+					"name": "Automatic",
+					"value": 2,
+					"documentation": "Completion was triggered automatically while editing."
+				}
+			],
+			"documentation": "Describes how an {@link InlineCompletionItemProvider inline completion provider} was triggered.\n\n@since 3.18.0\n@proposed",
+			"since": "3.18.0",
+			"proposed": true
+		},
+		{
+			"name": "PositionEncodingKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "UTF8",
+					"value": "utf-8",
+					"documentation": "Character offsets count UTF-8 code units (e.g. bytes)."
+				},
+				{
+					"name": "UTF16",
+					"value": "utf-16",
+					"documentation": "Character offsets count UTF-16 code units.\n\nThis is the default and must always be supported\nby servers"
+				},
+				{
+					"name": "UTF32",
+					"value": "utf-32",
+					"documentation": "Character offsets count UTF-32 code units.\n\nImplementation note: these are the same as Unicode codepoints,\nso this `PositionEncodingKind` may also be used for an\nencoding-agnostic representation of character offsets."
+				}
+			],
+			"supportsCustomValues": true,
+			"documentation": "A set of predefined position encoding kinds.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "FileChangeType",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Created",
+					"value": 1,
+					"documentation": "The file got created."
+				},
+				{
+					"name": "Changed",
+					"value": 2,
+					"documentation": "The file got changed."
+				},
+				{
+					"name": "Deleted",
+					"value": 3,
+					"documentation": "The file got deleted."
+				}
+			],
+			"documentation": "The file event type"
+		},
+		{
+			"name": "WatchKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Create",
+					"value": 1,
+					"documentation": "Interested in create events."
+				},
+				{
+					"name": "Change",
+					"value": 2,
+					"documentation": "Interested in change events"
+				},
+				{
+					"name": "Delete",
+					"value": 4,
+					"documentation": "Interested in delete events"
+				}
+			],
+			"supportsCustomValues": true
+		},
+		{
+			"name": "DiagnosticSeverity",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Error",
+					"value": 1,
+					"documentation": "Reports an error."
+				},
+				{
+					"name": "Warning",
+					"value": 2,
+					"documentation": "Reports a warning."
+				},
+				{
+					"name": "Information",
+					"value": 3,
+					"documentation": "Reports an information."
+				},
+				{
+					"name": "Hint",
+					"value": 4,
+					"documentation": "Reports a hint."
+				}
+			],
+			"documentation": "The diagnostic's severity."
+		},
+		{
+			"name": "DiagnosticTag",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Unnecessary",
+					"value": 1,
+					"documentation": "Unused or unnecessary code.\n\nClients are allowed to render diagnostics with this tag faded out instead of having\nan error squiggle."
+				},
+				{
+					"name": "Deprecated",
+					"value": 2,
+					"documentation": "Deprecated or obsolete code.\n\nClients are allowed to rendered diagnostics with this tag strike through."
+				}
+			],
+			"documentation": "The diagnostic tags.\n\n@since 3.15.0",
+			"since": "3.15.0"
+		},
+		{
+			"name": "CompletionTriggerKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Invoked",
+					"value": 1,
+					"documentation": "Completion was triggered by typing an identifier (24x7 code\ncomplete), manual invocation (e.g Ctrl+Space) or via API."
+				},
+				{
+					"name": "TriggerCharacter",
+					"value": 2,
+					"documentation": "Completion was triggered by a trigger character specified by\nthe `triggerCharacters` properties of the `CompletionRegistrationOptions`."
+				},
+				{
+					"name": "TriggerForIncompleteCompletions",
+					"value": 3,
+					"documentation": "Completion was re-triggered as current completion list is incomplete"
+				}
+			],
+			"documentation": "How a completion was triggered"
+		},
+		{
+			"name": "SignatureHelpTriggerKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Invoked",
+					"value": 1,
+					"documentation": "Signature help was invoked manually by the user or by a command."
+				},
+				{
+					"name": "TriggerCharacter",
+					"value": 2,
+					"documentation": "Signature help was triggered by a trigger character."
+				},
+				{
+					"name": "ContentChange",
+					"value": 3,
+					"documentation": "Signature help was triggered by the cursor moving or by the document content changing."
+				}
+			],
+			"documentation": "How a signature help was triggered.\n\n@since 3.15.0",
+			"since": "3.15.0"
+		},
+		{
+			"name": "CodeActionTriggerKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Invoked",
+					"value": 1,
+					"documentation": "Code actions were explicitly requested by the user or by an extension."
+				},
+				{
+					"name": "Automatic",
+					"value": 2,
+					"documentation": "Code actions were requested automatically.\n\nThis typically happens when current selection in a file changes, but can\nalso be triggered when file content changes."
+				}
+			],
+			"documentation": "The reason why code actions were requested.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "FileOperationPatternKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "file",
+					"value": "file",
+					"documentation": "The pattern matches a file only."
+				},
+				{
+					"name": "folder",
+					"value": "folder",
+					"documentation": "The pattern matches a folder only."
+				}
+			],
+			"documentation": "A pattern kind describing if a glob pattern matches a file a folder or\nboth.\n\n@since 3.16.0",
+			"since": "3.16.0"
+		},
+		{
+			"name": "NotebookCellKind",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Markup",
+					"value": 1,
+					"documentation": "A markup-cell is formatted source that is used for display."
+				},
+				{
+					"name": "Code",
+					"value": 2,
+					"documentation": "A code-cell is source code."
+				}
+			],
+			"documentation": "A notebook cell kind.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "ResourceOperationKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Create",
+					"value": "create",
+					"documentation": "Supports creating new files and folders."
+				},
+				{
+					"name": "Rename",
+					"value": "rename",
+					"documentation": "Supports renaming existing files and folders."
+				},
+				{
+					"name": "Delete",
+					"value": "delete",
+					"documentation": "Supports deleting existing files and folders."
+				}
+			]
+		},
+		{
+			"name": "FailureHandlingKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Abort",
+					"value": "abort",
+					"documentation": "Applying the workspace change is simply aborted if one of the changes provided\nfails. All operations executed before the failing operation stay executed."
+				},
+				{
+					"name": "Transactional",
+					"value": "transactional",
+					"documentation": "All operations are executed transactional. That means they either all\nsucceed or no changes at all are applied to the workspace."
+				},
+				{
+					"name": "TextOnlyTransactional",
+					"value": "textOnlyTransactional",
+					"documentation": "If the workspace edit contains only textual file changes they are executed transactional.\nIf resource changes (create, rename or delete file) are part of the change the failure\nhandling strategy is abort."
+				},
+				{
+					"name": "Undo",
+					"value": "undo",
+					"documentation": "The client tries to undo the operations already executed. But there is no\nguarantee that this is succeeding."
+				}
+			]
+		},
+		{
+			"name": "PrepareSupportDefaultBehavior",
+			"type": {
+				"kind": "base",
+				"name": "uinteger"
+			},
+			"values": [
+				{
+					"name": "Identifier",
+					"value": 1,
+					"documentation": "The client's default behavior is to select the identifier\naccording the to language's syntax rule."
+				}
+			]
+		},
+		{
+			"name": "TokenFormat",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"values": [
+				{
+					"name": "Relative",
+					"value": "relative"
+				}
+			]
+		}
+	],
+	"typeAliases": [
+		{
+			"name": "Definition",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Location"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					}
+				]
+			},
+			"documentation": "The definition of a symbol represented as one or many {@link Location locations}.\nFor most programming languages there is only one location at which a symbol is\ndefined.\n\nServers should prefer returning `DefinitionLink` over `Definition` if supported\nby the client."
+		},
+		{
+			"name": "DefinitionLink",
+			"type": {
+				"kind": "reference",
+				"name": "LocationLink"
+			},
+			"documentation": "Information about where a symbol is defined.\n\nProvides additional metadata over normal {@link Location location} definitions, including the range of\nthe defining symbol"
+		},
+		{
+			"name": "LSPArray",
+			"type": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "LSPAny"
+				}
+			},
+			"documentation": "LSP arrays.\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "LSPAny",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "LSPObject"
+					},
+					{
+						"kind": "reference",
+						"name": "LSPArray"
+					},
+					{
+						"kind": "base",
+						"name": "string"
+					},
+					{
+						"kind": "base",
+						"name": "integer"
+					},
+					{
+						"kind": "base",
+						"name": "uinteger"
+					},
+					{
+						"kind": "base",
+						"name": "decimal"
+					},
+					{
+						"kind": "base",
+						"name": "boolean"
+					},
+					{
+						"kind": "base",
+						"name": "null"
+					}
+				]
+			},
+			"documentation": "The LSP any type.\nPlease note that strictly speaking a property with the value `undefined`\ncan't be converted into JSON preserving the property name. However for\nconvenience it is allowed and assumed that all these properties are\noptional as well.\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "Declaration",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Location"
+					},
+					{
+						"kind": "array",
+						"element": {
+							"kind": "reference",
+							"name": "Location"
+						}
+					}
+				]
+			},
+			"documentation": "The declaration of a symbol representation as one or many {@link Location locations}."
+		},
+		{
+			"name": "DeclarationLink",
+			"type": {
+				"kind": "reference",
+				"name": "LocationLink"
+			},
+			"documentation": "Information about where a symbol is declared.\n\nProvides additional metadata over normal {@link Location location} declarations, including the range of\nthe declaring symbol.\n\nServers should prefer returning `DeclarationLink` over `Declaration` if supported\nby the client."
+		},
+		{
+			"name": "InlineValue",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "InlineValueText"
+					},
+					{
+						"kind": "reference",
+						"name": "InlineValueVariableLookup"
+					},
+					{
+						"kind": "reference",
+						"name": "InlineValueEvaluatableExpression"
+					}
+				]
+			},
+			"documentation": "Inline value information can be provided by different means:\n- directly as a text value (class InlineValueText).\n- as a name to use for a variable lookup (class InlineValueVariableLookup)\n- as an evaluatable expression (class InlineValueEvaluatableExpression)\nThe InlineValue types combines all inline value types into one type.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "DocumentDiagnosticReport",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "RelatedFullDocumentDiagnosticReport"
+					},
+					{
+						"kind": "reference",
+						"name": "RelatedUnchangedDocumentDiagnosticReport"
+					}
+				]
+			},
+			"documentation": "The result of a document diagnostic pull request. A report can\neither be a full report containing all diagnostics for the\nrequested document or an unchanged report indicating that nothing\nhas changed in terms of diagnostics in comparison to the last\npull request.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "PrepareRenameResult",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Range"
+					},
+					{
+						"kind": "reference",
+						"name": "PrepareRenamePlaceholder"
+					},
+					{
+						"kind": "reference",
+						"name": "PrepareRenameDefaultBehavior"
+					}
+				]
+			}
+		},
+		{
+			"name": "DocumentSelector",
+			"type": {
+				"kind": "array",
+				"element": {
+					"kind": "reference",
+					"name": "DocumentFilter"
+				}
+			},
+			"documentation": "A document selector is the combination of one or many document filters.\n\n@sample `let sel:DocumentSelector = [{ language: 'typescript' }, { language: 'json', pattern: '**∕tsconfig.json' }]`;\n\nThe use of a string as a document filter is deprecated @since 3.16.0.",
+			"since": "3.16.0."
+		},
+		{
+			"name": "ProgressToken",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "base",
+						"name": "integer"
+					},
+					{
+						"kind": "base",
+						"name": "string"
+					}
+				]
+			}
+		},
+		{
+			"name": "ChangeAnnotationIdentifier",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"documentation": "An identifier to refer to a change annotation stored with a workspace edit."
+		},
+		{
+			"name": "WorkspaceDocumentDiagnosticReport",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "WorkspaceFullDocumentDiagnosticReport"
+					},
+					{
+						"kind": "reference",
+						"name": "WorkspaceUnchangedDocumentDiagnosticReport"
+					}
+				]
+			},
+			"documentation": "A workspace diagnostic document report.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TextDocumentContentChangeEvent",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "TextDocumentContentChangePartial"
+					},
+					{
+						"kind": "reference",
+						"name": "TextDocumentContentChangeWholeDocument"
+					}
+				]
+			},
+			"documentation": "An event describing a change to a text document. If only a text is provided\nit is considered to be the full content of the document."
+		},
+		{
+			"name": "MarkedString",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "base",
+						"name": "string"
+					},
+					{
+						"kind": "reference",
+						"name": "MarkedStringWithLanguage"
+					}
+				]
+			},
+			"documentation": "MarkedString can be used to render human readable text. It is either a markdown string\nor a code-block that provides a language and a code snippet. The language identifier\nis semantically equal to the optional language identifier in fenced code blocks in GitHub\nissues. See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting\n\nThe pair of a language and a value is an equivalent to markdown:\n```${language}\n${value}\n```\n\nNote that markdown strings will be sanitized - that means html will be escaped.\n@deprecated use MarkupContent instead.",
+			"deprecated": "use MarkupContent instead."
+		},
+		{
+			"name": "DocumentFilter",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "TextDocumentFilter"
+					},
+					{
+						"kind": "reference",
+						"name": "NotebookCellTextDocumentFilter"
+					}
+				]
+			},
+			"documentation": "A document filter describes a top level text document or\na notebook cell document.\n\n@since 3.17.0 - proposed support for NotebookCellTextDocumentFilter.",
+			"since": "3.17.0 - proposed support for NotebookCellTextDocumentFilter."
+		},
+		{
+			"name": "LSPObject",
+			"type": {
+				"kind": "map",
+				"key": {
+					"kind": "base",
+					"name": "string"
+				},
+				"value": {
+					"kind": "reference",
+					"name": "LSPAny"
+				}
+			},
+			"documentation": "LSP object definition.\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "GlobPattern",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "Pattern"
+					},
+					{
+						"kind": "reference",
+						"name": "RelativePattern"
+					}
+				]
+			},
+			"documentation": "The glob pattern. Either a string pattern or a relative pattern.\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "TextDocumentFilter",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "TextDocumentFilterLanguage"
+					},
+					{
+						"kind": "reference",
+						"name": "TextDocumentFilterScheme"
+					},
+					{
+						"kind": "reference",
+						"name": "TextDocumentFilterPattern"
+					}
+				]
+			},
+			"documentation": "A document filter denotes a document by different properties like\nthe {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of\nits resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.\n\nGlob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@sample A language filter that applies to typescript files on disk: `{ language: 'typescript', scheme: 'file' }`\n@sample A language filter that applies to all package.json paths: `{ language: 'json', pattern: '**package.json' }`\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "NotebookDocumentFilter",
+			"type": {
+				"kind": "or",
+				"items": [
+					{
+						"kind": "reference",
+						"name": "NotebookDocumentFilterNotebookType"
+					},
+					{
+						"kind": "reference",
+						"name": "NotebookDocumentFilterScheme"
+					},
+					{
+						"kind": "reference",
+						"name": "NotebookDocumentFilterPattern"
+					}
+				]
+			},
+			"documentation": "A notebook document filter denotes a notebook document by\ndifferent properties. The properties will be match\nagainst the notebook's URI (same as with documents)\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "Pattern",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			},
+			"documentation": "The glob pattern to watch relative to the base path. Glob patterns can have the following syntax:\n- `*` to match one or more characters in a path segment\n- `?` to match on one character in a path segment\n- `**` to match any number of path segments, including none\n- `{}` to group conditions (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)\n- `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)\n- `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)\n\n@since 3.17.0",
+			"since": "3.17.0"
+		},
+		{
+			"name": "RegularExpressionEngineKind",
+			"type": {
+				"kind": "base",
+				"name": "string"
+			}
 		}
 	]
 }
diff --git a/metamodel/Language/LSP/MetaModel.hs b/metamodel/Language/LSP/MetaModel.hs
--- a/metamodel/Language/LSP/MetaModel.hs
+++ b/metamodel/Language/LSP/MetaModel.hs
@@ -1,11 +1,10 @@
-{-# LANGUAGE TemplateHaskell       #-}
+{-# LANGUAGE TemplateHaskell #-}
 
 module Language.LSP.MetaModel (module Export, metaModel) where
 
 import Language.LSP.MetaModel.Types as Export
 
 import Data.FileEmbed (makeRelativeToProject)
-import qualified Language.Haskell.TH as TH
 
 -- | The metamodel used to generate the LSP types in this package.
 metaModel :: MetaModel
diff --git a/metamodel/Language/LSP/MetaModel/Types.hs b/metamodel/Language/LSP/MetaModel/Types.hs
--- a/metamodel/Language/LSP/MetaModel/Types.hs
+++ b/metamodel/Language/LSP/MetaModel/Types.hs
@@ -1,15 +1,12 @@
-{-# LANGUAGE DataKinds             #-}
-{-# LANGUAGE DerivingStrategies             #-}
-{-# LANGUAGE DeriveLift             #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE DerivingStrategies #-}
 {-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE GADTs                 #-}
-{-# LANGUAGE KindSignatures        #-}
-{-# LANGUAGE LambdaCase            #-}
-{-# LANGUAGE OverloadedStrings     #-}
-{-# LANGUAGE ScopedTypeVariables   #-}
-{-# LANGUAGE TemplateHaskell       #-}
-{-# LANGUAGE TypeApplications      #-}
-{-|
+{-# LANGUAGE GADTs #-}
+{-# LANGUAGE LambdaCase #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE TemplateHaskell #-}
+
+{- |
 This defines the types of the LSP "metamodel", which is a machine-readable format specifying the
 types used in the LSP protocol.
 
@@ -22,17 +19,17 @@
 -}
 module Language.LSP.MetaModel.Types where
 
-import           Data.Aeson         hiding (Null, String)
-import qualified Data.Aeson         as JSON
-import qualified Data.Aeson.TH      as JSON
-import qualified Data.Char          as Char
-import           Data.Text          (Text)
+import Data.Aeson hiding (Null, String)
+import Data.Aeson qualified as JSON
+import Data.Aeson.TH qualified as JSON
+import Data.Char qualified as Char
+import Data.Text (Text)
 
-import           Control.Lens
-import           Control.Monad.IO.Class
-import qualified Data.List.NonEmpty as NE
+import Control.Lens
+import Control.Monad.IO.Class
+import Data.List.NonEmpty qualified as NE
 
-import Language.Haskell.TH.Syntax (Lift(..), Q, Exp, addDependentFile)
+import Language.Haskell.TH.Syntax (Exp, Lift (..), Q, addDependentFile)
 
 -- | What direction is this message sent in: server to client, client to server, or both?
 data MessageDirection = ServerToClient | ClientToServer | Both
@@ -41,14 +38,14 @@
 instance ToJSON MessageDirection where
   toJSON ServerToClient = toJSON @String "serverToClient"
   toJSON ClientToServer = toJSON @String "clientToServer"
-  toJSON Both           = toJSON @String "both"
+  toJSON Both = toJSON @String "both"
 
 instance FromJSON MessageDirection where
   parseJSON = withText "MessageDirection" $ \case
     "serverToClient" -> pure ServerToClient
     "clientToServer" -> pure ClientToServer
-    "both"           -> pure Both
-    t                -> fail $ "unknown message direction " ++ show t
+    "both" -> pure Both
+    t -> fail $ "unknown message direction " ++ show t
 
 -- | The "base types" in the metamodel.
 data BaseTypeName = URI | DocumentUri | Integer | UInteger | Decimal | RegExp | String | Boolean | Null
@@ -56,120 +53,121 @@
 
 -- | A property of a structure.
 data Property = Property
-  { name          :: Text
-  , type_         :: Type
-  , optional      :: Maybe Bool
+  { name :: Text
+  , type_ :: Type
+  , optional :: Maybe Bool
   , documentation :: Maybe Text
-  , since         :: Maybe Text
-  , proposed      :: Maybe Bool
-  , deprecated    :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | An anonymous structure type.
 data StructureLiteral = StructureLiteral
-  { properties    :: [Property]
+  { properties :: [Property]
   , documentation :: Maybe Text
-  , since         :: Maybe Text
-  , proposed      :: Maybe Bool
-  , deprecated    :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | The various kinds of type in the metamodel.
-data Type =
-  BaseType { btName :: BaseTypeName }
-  | ReferenceType { rtName :: Text }
-  | ArrayType { atElement :: Type }
-  | MapType { mKey :: Type, mValue :: Type }
-  | AndType { aItems :: NE.NonEmpty Type }
-  | OrType { oItems :: NE.NonEmpty Type }
-  | TupleType { tItems :: [Type] }
-  | StructureLiteralType { stlValue :: StructureLiteral }
-  | StringLiteralType { slValue :: Text }
-  | IntegerLiteralType { ilValue :: Integer }
-  | BooleanLiteralType { blValue :: Bool }
+data Type
+  = BaseType {btName :: BaseTypeName}
+  | ReferenceType {rtName :: Text}
+  | ArrayType {atElement :: Type}
+  | MapType {mKey :: Type, mValue :: Type}
+  | AndType {aItems :: NE.NonEmpty Type}
+  | OrType {oItems :: NE.NonEmpty Type}
+  | TupleType {tItems :: [Type]}
+  | StructureLiteralType {stlValue :: StructureLiteral}
+  | StringLiteralType {slValue :: Text}
+  | IntegerLiteralType {ilValue :: Integer}
+  | BooleanLiteralType {blValue :: Bool}
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | A request message.
 data Request = Request
-  { method              :: Text
-  , params              :: Maybe Type -- typescript says it can be [Type], but it never is so whatever
-  , result              :: Type
-  , partialResult       :: Maybe Type
-  , errorData           :: Maybe Type
+  { method :: Text
+  , params :: Maybe Type -- typescript says it can be [Type], but it never is so whatever
+  , result :: Type
+  , partialResult :: Maybe Type
+  , errorData :: Maybe Type
   , registrationOptions :: Maybe Type
-  , messageDirection    :: MessageDirection
-  , documentation       :: Maybe Text
-  , since               :: Maybe Text
-  , proposed            :: Maybe Bool
-  , deprecated          :: Maybe Text
+  , messageDirection :: MessageDirection
+  , documentation :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | A notification message.
 data Notification = Notification
-  { method              :: Text
-  , params              :: Maybe Type
+  { method :: Text
+  , params :: Maybe Type
   , registrationOptions :: Maybe Type
-  , messageDirection    :: MessageDirection
-  , documentation       :: Maybe Text
-  , since               :: Maybe Text
-  , proposed            :: Maybe Bool
-  , deprecated          :: Maybe Text
+  , messageDirection :: MessageDirection
+  , documentation :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | A structure type.
 data Structure = Structure
-  { name          :: Text
-  , extends       :: Maybe [Type]
-  , mixins        :: Maybe [Type]
-  , properties    :: [Property]
+  { name :: Text
+  , extends :: Maybe [Type]
+  , mixins :: Maybe [Type]
+  , properties :: [Property]
   , documentation :: Maybe Text
-  , since         :: Maybe Text
-  , proposed      :: Maybe Bool
-  , deprecated    :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | A type alias.
 data TypeAlias = TypeAlias
-  { name          :: Text
-  , type_         :: Type
+  { name :: Text
+  , type_ :: Type
   , documentation :: Maybe Text
-  , since         :: Maybe Text
-  , proposed      :: Maybe Bool
-  , deprecated    :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
--- | This is just 'string | int' on the typescript side, but
--- it's convenient to have a proper type here.
+{- | This is just 'string | int' on the typescript side, but
+ it's convenient to have a proper type here.
+-}
 data TextOrInteger = T Text | I Integer
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | An entry in an enumeration.
 data EnumerationEntry = EnumerationEntry
-  { name          :: Text
-  , value         :: TextOrInteger
+  { name :: Text
+  , value :: TextOrInteger
   , documentation :: Maybe Text
-  , since         :: Maybe Text
-  , proposed      :: Maybe Bool
-  , deprecated    :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- | An enumeration type.
 data Enumeration = Enumeration
-  { name                 :: Text
-  , type_                :: Type
-  , values               :: [EnumerationEntry]
+  { name :: Text
+  , type_ :: Type
+  , values :: [EnumerationEntry]
   , supportsCustomValues :: Maybe Bool
-  , documentation        :: Maybe Text
-  , since                :: Maybe Text
-  , proposed             :: Maybe Bool
-  , deprecated           :: Maybe Text
+  , documentation :: Maybe Text
+  , since :: Maybe Text
+  , proposed :: Maybe Bool
+  , deprecated :: Maybe Text
   }
   deriving stock (Show, Eq, Ord, Lift)
 
@@ -181,73 +179,74 @@
 
 -- | The entire metamodel.
 data MetaModel = MetaModel
-  { metaData      :: MetaData
-  , requests      :: [Request]
+  { metaData :: MetaData
+  , requests :: [Request]
   , notifications :: [Notification]
-  , structures    :: [Structure]
-  , enumerations  :: [Enumeration]
-  , typeAliases   :: [TypeAlias]
+  , structures :: [Structure]
+  , enumerations :: [Enumeration]
+  , typeAliases :: [TypeAlias]
   }
   deriving stock (Show, Eq, Ord, Lift)
 
 -- We need to do some massaging to make sure that we get the right aeson instances for
 -- these types and can actually parse the incoming data!
-$(
-  let
-      -- "type" is a very common field name, we use "type_" on the Haskell side
-      defOpts = defaultOptions{fieldLabelModifier = \case { "type_" -> "type"; x -> x; }}
+$( let
+    -- "type" is a very common field name, we use "type_" on the Haskell side
+    defOpts = defaultOptions{fieldLabelModifier = \case "type_" -> "type"; x -> x}
 
-      propertyInst = JSON.deriveJSON defOpts ''Property
-      slInst = JSON.deriveJSON defOpts ''StructureLiteral
+    propertyInst = JSON.deriveJSON defOpts ''Property
+    slInst = JSON.deriveJSON defOpts ''StructureLiteral
 
-      -- 'BaseType' is a union of strings, so we encode it as an untagged sum with some
-      -- mangling of the constructor names
-      baseTyNameToTag :: String -> String
-      baseTyNameToTag = \case
-        "Integer"  -> "integer"
-        "UInteger" -> "uinteger"
-        "Decimal"  -> "decimal"
-        "String"   -> "string"
-        "Boolean"  -> "boolean"
-        "Null"     -> "null"
-        x          -> x
-      baseTyNameInst = JSON.deriveJSON (defOpts{sumEncoding=JSON.UntaggedValue, constructorTagModifier=baseTyNameToTag}) ''BaseTypeName
+    -- 'BaseType' is a union of strings, so we encode it as an untagged sum with some
+    -- mangling of the constructor names
+    baseTyNameToTag :: String -> String
+    baseTyNameToTag = \case
+      "Integer" -> "integer"
+      "UInteger" -> "uinteger"
+      "Decimal" -> "decimal"
+      "String" -> "string"
+      "Boolean" -> "boolean"
+      "Null" -> "null"
+      x -> x
+    baseTyNameInst = JSON.deriveJSON (defOpts{sumEncoding = JSON.UntaggedValue, constructorTagModifier = baseTyNameToTag}) ''BaseTypeName
 
-      -- 'Type' is a *tagged* union, but the tag is a string field (sigh), fortunately
-      -- aeson can deal with this. Also needs some constructor mangling.
-      typeToTag :: String -> String
-      typeToTag = \case
-        "BaseType"             -> "base"
-        "ReferenceType"        -> "reference"
-        "ArrayType"            -> "array"
-        "MapType"              -> "map"
-        "AndType"              -> "and"
-        "OrType"               -> "or"
-        "TupleType"            -> "tuple"
-        "StructureLiteralType" -> "literal"
-        "StringLiteralType"    -> "stringLiteral"
-        "IntegerLiteralType"   -> "integerLiteral"
-        "BooleanLiteralType"   -> "booleanLiteral"
-        x                      -> x
-      typeOpts = defOpts
-        { sumEncoding=JSON.defaultTaggedObject{tagFieldName="kind"}
-        , constructorTagModifier=typeToTag
-        , fieldLabelModifier= \s -> over _head Char.toLower $ Prelude.dropWhile Char.isLower s
+    -- 'Type' is a *tagged* union, but the tag is a string field (sigh), fortunately
+    -- aeson can deal with this. Also needs some constructor mangling.
+    typeToTag :: String -> String
+    typeToTag = \case
+      "BaseType" -> "base"
+      "ReferenceType" -> "reference"
+      "ArrayType" -> "array"
+      "MapType" -> "map"
+      "AndType" -> "and"
+      "OrType" -> "or"
+      "TupleType" -> "tuple"
+      "StructureLiteralType" -> "literal"
+      "StringLiteralType" -> "stringLiteral"
+      "IntegerLiteralType" -> "integerLiteral"
+      "BooleanLiteralType" -> "booleanLiteral"
+      x -> x
+    typeOpts =
+      defOpts
+        { sumEncoding = JSON.defaultTaggedObject{tagFieldName = "kind"}
+        , constructorTagModifier = typeToTag
+        , fieldLabelModifier = \s -> over _head Char.toLower $ Prelude.dropWhile Char.isLower s
         }
-      typeInst = JSON.deriveJSON typeOpts ''Type
+    typeInst = JSON.deriveJSON typeOpts ''Type
 
-      -- The rest are mostly normal
-      reqInst = JSON.deriveJSON defOpts ''Request
-      notInst = JSON.deriveJSON defOpts ''Notification
-      sInst = JSON.deriveJSON defOpts ''Structure
-      taInst = JSON.deriveJSON defOpts ''TypeAlias
-      -- TextOrInteger is also an untagged sum
-      tiInst = JSON.deriveJSON (defOpts{sumEncoding=UntaggedValue}) ''TextOrInteger
-      eeInst = JSON.deriveJSON defOpts ''EnumerationEntry
-      eInst = JSON.deriveJSON defOpts ''Enumeration
-      mdInst = JSON.deriveJSON defOpts ''MetaData
-      mmInst = JSON.deriveJSON defOpts ''MetaModel
-  in mconcat <$> sequence [ propertyInst, slInst, baseTyNameInst, typeInst, reqInst, notInst, sInst, taInst, tiInst, eeInst, eInst, mdInst, mmInst ]
+    -- The rest are mostly normal
+    reqInst = JSON.deriveJSON defOpts ''Request
+    notInst = JSON.deriveJSON defOpts ''Notification
+    sInst = JSON.deriveJSON defOpts ''Structure
+    taInst = JSON.deriveJSON defOpts ''TypeAlias
+    -- TextOrInteger is also an untagged sum
+    tiInst = JSON.deriveJSON (defOpts{sumEncoding = UntaggedValue}) ''TextOrInteger
+    eeInst = JSON.deriveJSON defOpts ''EnumerationEntry
+    eInst = JSON.deriveJSON defOpts ''Enumeration
+    mdInst = JSON.deriveJSON defOpts ''MetaData
+    mmInst = JSON.deriveJSON defOpts ''MetaModel
+    in
+    mconcat <$> sequence [propertyInst, slInst, baseTyNameInst, typeInst, reqInst, notInst, sInst, taInst, tiInst, eeInst, eInst, mdInst, mmInst]
  )
 
 loadMetaModelFromFile :: FilePath -> Q Exp
@@ -255,5 +254,5 @@
   addDependentFile fp
   res <- liftIO $ JSON.eitherDecodeFileStrict' fp
   case res of
-    Left e   -> fail e
+    Left e -> fail e
     Right (mm :: MetaModel) -> lift mm
diff --git a/quickcheck/Language/LSP/Protocol/QuickCheck.hs b/quickcheck/Language/LSP/Protocol/QuickCheck.hs
new file mode 100644
--- /dev/null
+++ b/quickcheck/Language/LSP/Protocol/QuickCheck.hs
@@ -0,0 +1,6 @@
+-- | Provides 'Arbitrary' instances for protocol types.
+module Language.LSP.Protocol.QuickCheck (module Export) where
+
+import Language.LSP.Protocol.QuickCheck.Common as Export
+import Language.LSP.Protocol.QuickCheck.Message as Export
+import Language.LSP.Protocol.QuickCheck.Types as Export
diff --git a/quickcheck/Language/LSP/Protocol/QuickCheck/Common.hs b/quickcheck/Language/LSP/Protocol/QuickCheck/Common.hs
new file mode 100644
--- /dev/null
+++ b/quickcheck/Language/LSP/Protocol/QuickCheck/Common.hs
@@ -0,0 +1,43 @@
+{-# LANGUAGE UndecidableInstances #-}
+
+module Language.LSP.Protocol.QuickCheck.Common where
+
+import Data.Foldable
+import Data.Row qualified as R
+import Data.Row.Records qualified as R
+import GHC.TypeLits
+import Language.LSP.Protocol.Message
+import Language.LSP.Protocol.Types
+import Test.QuickCheck
+import Test.QuickCheck.Instances ()
+
+instance (Arbitrary a, Arbitrary b) => Arbitrary (a |? b) where
+  arbitrary = oneof [InL <$> arbitrary, InR <$> arbitrary]
+  shrink = genericShrink
+
+instance Arbitrary Null where
+  arbitrary = pure Null
+
+instance (R.AllUniqueLabels r, R.Forall r Arbitrary) => Arbitrary (R.Rec r) where
+  arbitrary = R.fromLabelsA @Arbitrary $ \_l -> arbitrary
+  shrink record = R.traverse @Arbitrary @[] shrink record
+
+instance Arbitrary UInt where
+  arbitrary = fromInteger <$> arbitrary
+
+instance Arbitrary Uri where
+  arbitrary = Uri <$> arbitrary
+  shrink = genericShrink
+
+instance Arbitrary (LspId m) where
+  arbitrary = oneof [IdInt <$> arbitrary, IdString <$> arbitrary]
+  shrink = genericShrink
+
+instance (LspEnum a) => Arbitrary (AsLspEnum a) where
+  arbitrary = elements $ AsLspEnum <$> toList knownValues
+
+instance (KnownSymbol s) => Arbitrary (AString s) where
+  arbitrary = pure $ AString
+
+instance (KnownNat n) => Arbitrary (AnInteger n) where
+  arbitrary = pure $ AnInteger
diff --git a/quickcheck/Language/LSP/Protocol/QuickCheck/Message.hs b/quickcheck/Language/LSP/Protocol/QuickCheck/Message.hs
new file mode 100644
--- /dev/null
+++ b/quickcheck/Language/LSP/Protocol/QuickCheck/Message.hs
@@ -0,0 +1,82 @@
+{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE UndecidableInstances #-}
+-- See Note [Arbitary Maybe Void]
+{-# OPTIONS_GHC -Wno-simplifiable-class-constraints #-}
+
+module Language.LSP.Protocol.QuickCheck.Message where
+
+import Data.Row qualified as R
+import Data.Row.Records qualified as R
+import Data.Void
+import Language.LSP.Protocol.Message
+import Language.LSP.Protocol.QuickCheck.Types
+import Language.LSP.Protocol.Types
+import Test.QuickCheck
+import Test.QuickCheck.Arbitrary.Generic
+import Test.QuickCheck.Instances ()
+
+deriving via (GenericArbitrary RequestMessage) instance Arbitrary RequestMessage
+deriving via (GenericArbitrary ResponseMessage) instance Arbitrary ResponseMessage
+deriving via (GenericArbitrary NotificationMessage) instance Arbitrary NotificationMessage
+
+-- See Note [Arbitary Maybe Void]
+instance {-# OVERLAPS #-} Arbitrary (Maybe Void) where
+  arbitrary = pure Nothing
+
+-- FIXME: there is something funny with the way we're representing error data.
+-- Should be able to have these instances!
+{-
+deriving via (GenericArbitrary ResponseError) instance Arbitrary ResponseError
+
+deriving via
+  (GenericArbitrary (TResponseError m))
+  instance
+    (Arbitrary (ErrorData m)) => Arbitrary (TResponseError m)
+
+deriving via
+  (GenericArbitrary (TResponseMEssage m))
+  instance
+    (Arbitrary (MessageResult m), Arbitrary (ErrorData m)) => Arbitrary (TResponseMEssage m)
+-}
+
+instance (ErrorData m ~ Maybe Void) => Arbitrary (TResponseError m) where
+  arbitrary = TResponseError <$> arbitrary <*> arbitrary <*> pure Nothing
+  shrink = genericShrink
+
+instance Arbitrary ResponseError where
+  arbitrary = ResponseError <$> arbitrary <*> arbitrary <*> pure Nothing
+  shrink = genericShrink
+
+-- See Note [Arbitary Maybe Void]
+deriving via
+  (GenericArbitrary (TResponseMessage m))
+  instance
+    (Arbitrary (MessageResult m), ErrorData m ~ Maybe Void) => Arbitrary (TResponseMessage m)
+
+-- These require a method singleton. We need something like SingI from
+-- singletons to pass that into the class instance
+{-
+instance (Arbitrary (MessageParams m)) => Arbitrary (TRequestMessage m) where
+  arbitrary = TRequestMessage <$> arbitrary <*> arbitrary <*> arbitrary <*> arbitrary
+  shrink = genericShrink
+
+instance (Arbitrary (MessageParams m)) => Arbitrary (TNotificationMessage m) where
+  arbitrary = TNotificationMessage <$> arbitrary <*> arbitrary <*> arbitrary
+  shrink = genericShrink
+-}
+
+{- Note [Arbitary Maybe Void]
+For methods that don't have error data, we say that their error data type is 'Void'.
+This means that the error data field has type 'Maybe Void', i.e. can only be 'Nothing',
+which is what we want.
+
+However, we have a problem with the Arbitrary instance. There is an 'Arbitrary (Maybe a)'
+instance which depends on an 'Arbitrary a' instance - but there is no 'Arbitrary Void'
+instance, and apparently can't be since we can't make an empty generator.
+
+So we cheat a bit:
+- Define an overlapping 'Arbitrary (Maybe Void)' instance
+- Define the instances for response messages to require 'Arbitrary (Maybe (ErrorData m))',
+  which delays GHC picking the actual instance until the use site, so it can pick
+  the overlapping one.
+-}
diff --git a/quickcheck/Language/LSP/Protocol/QuickCheck/Types.hs b/quickcheck/Language/LSP/Protocol/QuickCheck/Types.hs
new file mode 100644
--- /dev/null
+++ b/quickcheck/Language/LSP/Protocol/QuickCheck/Types.hs
@@ -0,0 +1,27 @@
+{-# LANGUAGE TemplateHaskell #-}
+
+module Language.LSP.Protocol.QuickCheck.Types where
+
+import Data.Traversable
+import Language.Haskell.TH
+import Language.LSP.Protocol.Meta
+import Language.LSP.Protocol.QuickCheck.Common
+import Language.LSP.Protocol.Types
+import Test.QuickCheck
+import Test.QuickCheck.Arbitrary.Generic
+
+$( let
+    sderiving = for structNames $ \sname ->
+      let viaT = ConT ''GenericArbitrary `AppT` ConT sname
+          arb = ConT ''Arbitrary `AppT` ConT sname
+       in pure $ StandaloneDerivD (Just (ViaStrategy viaT)) [] arb
+    aderiving = for aliasNames $ \aname ->
+      let arb = ConT ''Arbitrary `AppT` ConT aname
+       in pure $ StandaloneDerivD (Just NewtypeStrategy) [] arb
+    ederiving = for enumNames $ \ename ->
+      let viaT = ConT ''AsLspEnum `AppT` ConT ename
+          arb = ConT ''Arbitrary `AppT` ConT ename
+       in pure $ StandaloneDerivD (Just (ViaStrategy viaT)) [] arb
+    in
+    mconcat <$> sequence [sderiving, aderiving, ederiving]
+ )
diff --git a/src/Data/IxMap.hs b/src/Data/IxMap.hs
--- a/src/Data/IxMap.hs
+++ b/src/Data/IxMap.hs
@@ -1,16 +1,13 @@
-{-# LANGUAGE BangPatterns     #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE RankNTypes       #-}
-{-# LANGUAGE TypeFamilies     #-}
-{-# LANGUAGE TypeInType       #-}
-{-# LANGUAGE ViewPatterns     #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE ViewPatterns #-}
 
 module Data.IxMap where
 
-import           Data.Kind
-import qualified Data.Map.Strict as M
-import           Data.Some
-import           Unsafe.Coerce
+import Data.Kind
+import Data.Map.Strict qualified as M
+import Data.Some
+import Unsafe.Coerce
 
 -- a `compare` b <=> toBase a `compare` toBase b
 -- toBase (i :: f a) == toBase (j :: f b) <=> a ~ b
@@ -18,7 +15,7 @@
   type Base f
   toBase :: forall a. f a -> Base f
 
-newtype IxMap (k :: a -> Type) (f :: a -> Type) = IxMap { getMap :: M.Map (Base k) (Some f) }
+newtype IxMap (k :: a -> Type) (f :: a -> Type) = IxMap {getMap :: M.Map (Base k) (Some f)}
 
 emptyIxMap :: IxMap k f
 emptyIxMap = IxMap M.empty
@@ -32,10 +29,10 @@
 lookupIxMap i (IxMap m) =
   case M.lookup (toBase i) m of
     Just (Some v) -> Just $ unsafeCoerce v
-    Nothing       -> Nothing
+    Nothing -> Nothing
 
 pickFromIxMap :: IxOrd k => k m -> IxMap k f -> (Maybe (f m), IxMap k f)
 pickFromIxMap i (IxMap m) =
   case M.updateLookupWithKey (\_ _ -> Nothing) (toBase i) m of
-    (Nothing,!m')       -> (Nothing,IxMap m')
-    (Just (Some k),!m') -> (Just (unsafeCoerce k),IxMap m')
+    (Nothing, !m') -> (Nothing, IxMap m')
+    (Just (Some k), !m') -> (Just (unsafeCoerce k), IxMap m')
diff --git a/src/Data/Row/Aeson.hs b/src/Data/Row/Aeson.hs
--- a/src/Data/Row/Aeson.hs
+++ b/src/Data/Row/Aeson.hs
@@ -1,13 +1,7 @@
-{-# LANGUAGE FlexibleContexts     #-}
-{-# LANGUAGE FlexibleInstances    #-}
-{-# LANGUAGE ScopedTypeVariables  #-}
-{-# LANGUAGE TypeApplications     #-}
-{-# LANGUAGE TypeOperators        #-}
 {-# LANGUAGE UndecidableInstances #-}
-
 {-# OPTIONS_GHC -Wno-orphans #-}
 
-{-|
+{- |
 This module defines orphan `aeson` instances for `Data.Row`.
 They differ from the instances in `row-types-aeson` in one crucial respect: they
 serialise `Nothing` fields by *omitting* them in the resulting object, and parse absent fields as `Nothing`.
@@ -18,25 +12,28 @@
 -}
 module Data.Row.Aeson where
 
-import           Data.Aeson
-import           Data.Aeson.Types      (Parser, typeMismatch)
-import           Data.List             (intercalate)
+import Data.Aeson
+import Data.Aeson.Types (Parser, typeMismatch)
+import Data.List (intercalate)
 
-import           Data.Row
-import           Data.Row.Internal
-import qualified Data.Row.Records      as Rec
+import Data.Row
+import Data.Row.Internal
+import Data.Row.Records qualified as Rec
 
-import           Data.Bifunctor        (second)
-import           Data.Functor.Const
-import           Data.Functor.Identity
-import           Data.Proxy
-import           Data.String
+import Data.Bifunctor (second)
+import Data.Functor.Const
+import Data.Functor.Identity
+import Data.Proxy
+import Data.String
 
+import Language.LSP.Protocol.Types.Common ((.:!?))
+
 -- `aeson` does not need such a typeclass because it generates code per-instance
 -- that handles this, whereas we want to work generically.
 
--- | Serialise a value as an entry in a JSON object. This allows customizing the
--- behaviour in the object context, in order to e.g. omit the field.
+{- | Serialise a value as an entry in a JSON object. This allows customizing the
+ behaviour in the object context, in order to e.g. omit the field.
+-}
 class ToJSONEntry a where
   -- We use String so we can use fromString on it to get a key that works
   -- in both aeson-1 and aeson-2
@@ -45,7 +42,7 @@
 instance {-# OVERLAPPING #-} ToJSON a => ToJSONEntry (Maybe a) where
   -- Omit Nothing fields
   toJSONEntry _ Nothing = mempty
-  toJSONEntry k v       = fromString k .= toJSON v
+  toJSONEntry k v = fromString k .= toJSON v
 
 instance {-# OVERLAPPABLE #-} ToJSON a => ToJSONEntry a where
   toJSONEntry k v = fromString k .= toJSON v
@@ -54,8 +51,8 @@
   parseJSONEntry :: Object -> String -> Parser a
 
 instance {-# OVERLAPPING #-} FromJSON a => FromJSONEntry (Maybe a) where
-  -- Parse Nothing fields as optional
-  parseJSONEntry o k = o .:? (fromString k)
+  -- Parse Nothing fields as optional, accepting Null to mean "missing"
+  parseJSONEntry o k = o .:!? (fromString k)
 
 instance {-# OVERLAPPABLE #-} FromJSON a => FromJSONEntry a where
   parseJSONEntry o k = o .: (fromString k)
@@ -66,33 +63,33 @@
   -- Sadly, there appears to be no helper we can use that gives us access to the keys, so I just used metamorph directly
   -- adapted from 'eraseWithLabels'
   toJSON rc = Object $ getConst $ metamorph @_ @r @ToJSONEntry @(,) @Rec @(Const Object) @Identity Proxy doNil doUncons doCons rc
-      where
-        doNil :: Rec Empty -> Const Object Empty
-        doNil _ = Const mempty
-        doUncons
-          :: forall l r'
-          . (KnownSymbol l)
-          => Label l
-          -> Rec r'
-          -> (Rec (r' .- l), Identity (r' .! l))
-        doUncons l = second Identity . lazyUncons l
-        doCons
-          :: forall l t r'
-          . (KnownSymbol l, ToJSONEntry t)
-          => Label l
-          -> (Const Object r', Identity t)
-          -> Const Object (Extend l t r')
-        doCons l (Const c, Identity x) = Const $ toJSONEntry (show' l) x <> c
+   where
+    doNil :: Rec Empty -> Const Object Empty
+    doNil _ = Const mempty
+    doUncons ::
+      forall l r'.
+      (KnownSymbol l) =>
+      Label l ->
+      Rec r' ->
+      (Rec (r' .- l), Identity (r' .! l))
+    doUncons l = second Identity . lazyUncons l
+    doCons ::
+      forall l t r'.
+      (KnownSymbol l, ToJSONEntry t) =>
+      Label l ->
+      (Const Object r', Identity t) ->
+      Const Object (Extend l t r')
+    doCons l (Const c, Identity x) = Const $ toJSONEntry (show' l) x <> c
 
 instance (AllUniqueLabels r, Forall r FromJSONEntry) => FromJSON (Rec r) where
   parseJSON (Object o) = do
-    r <- Rec.fromLabelsA @FromJSONEntry $ \ l -> do
+    r <- Rec.fromLabelsA @FromJSONEntry $ \l -> do
       x <- parseJSONEntry o (fromString $ show l)
       x `seq` pure x
     r `seq` pure r
-
   parseJSON v = typeMismatch msg v
-    where msg = "REC: {" ++ intercalate "," (labels @r @FromJSONEntry) ++ "}"
+   where
+    msg = "REC: {" ++ intercalate "," (labels @r @FromJSONEntry) ++ "}"
 
 --- Copied from the library, as it's private
 
diff --git a/src/Data/Row/Hashable.hs b/src/Data/Row/Hashable.hs
--- a/src/Data/Row/Hashable.hs
+++ b/src/Data/Row/Hashable.hs
@@ -1,18 +1,12 @@
-{-# LANGUAGE FlexibleContexts     #-}
-{-# LANGUAGE FlexibleInstances    #-}
-{-# LANGUAGE ScopedTypeVariables  #-}
-{-# LANGUAGE TypeApplications     #-}
-{-# LANGUAGE TypeOperators        #-}
 {-# LANGUAGE UndecidableInstances #-}
-
 {-# OPTIONS_GHC -Wno-orphans #-}
 
 module Data.Row.Hashable where
 
-import           Data.Hashable
+import Data.Hashable
 
-import           Data.Row
-import qualified Data.Row.Records      as Rec
+import Data.Row
+import Data.Row.Records qualified as Rec
 
 instance (Forall r Hashable, Forall r Eq) => Hashable (Rec r) where
   hashWithSalt s record = hashWithSalt s (Rec.erase @Hashable (hashWithSalt s) record)
diff --git a/src/Language/LSP/Protocol/Capabilities.hs b/src/Language/LSP/Protocol/Capabilities.hs
--- a/src/Language/LSP/Protocol/Capabilities.hs
+++ b/src/Language/LSP/Protocol/Capabilities.hs
@@ -1,308 +1,994 @@
 {-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE OverloadedLabels      #-}
-{-# LANGUAGE OverloadedStrings     #-}
-module Language.LSP.Protocol.Capabilities
-  (
-    fullCaps
-  , LSPVersion(..)
-  , capsForVersion
-  ) where
-
-import           Data.Row
-import qualified Data.Set                          as Set
-import           Language.LSP.Protocol.Types
-import           Prelude                           hiding (min)
-
-{-
-TODO: this is out-of-date/needs an audit
-TODO: can we generate this? process the 'since' annotations in the metamodel?
--}
-
--- | Capabilities for full conformance to the current (v3.15) LSP specification.
-fullCaps :: ClientCapabilities
-fullCaps = capsForVersion (LSPVersion maxBound maxBound)
-
--- | A specific version of the LSP specification.
-data LSPVersion = LSPVersion Int Int -- ^ Construct a major.minor version
-
--- | Capabilities for full conformance to the LSP specification up until a version.
--- Some important milestones:
---
--- * 3.12 textDocument/prepareRename request
--- * 3.11 CodeActionOptions provided by the server
--- * 3.10 hierarchical document symbols, folding ranges
--- * 3.9 completion item preselect
--- * 3.8 codeAction literals
--- * 3.7 related information in diagnostics
--- * 3.6 workspace folders, colors, goto type/implementation
--- * 3.4 extended completion item and symbol item kinds
--- * 3.0 dynamic registration
-capsForVersion :: LSPVersion -> ClientCapabilities
-capsForVersion (LSPVersion maj min) = caps
-  where
-    caps = ClientCapabilities {
-      _workspace=Just w
-      , _textDocument=Just td
-      , _window=Just window
-      , _general=since 3 16 general
-      , _experimental=Nothing
-      -- TODO
-      , _notebookDocument=Nothing
-      }
-    w = WorkspaceClientCapabilities {
-      _applyEdit = Just True
-      , _workspaceEdit = Just (WorkspaceEditClientCapabilities
-                  (Just True)
-                  (since 3 13 resourceOperations)
-                  Nothing
-                  (since 3 16 True)
-                  (since 3 16 (#groupsOnLabel .== Just True)))
-      , _didChangeConfiguration = Just (DidChangeConfigurationClientCapabilities dynamicReg)
-      , _didChangeWatchedFiles = Just (DidChangeWatchedFilesClientCapabilities dynamicReg (Just True))
-      , _symbol = Just symbolCapabilities
-      , _executeCommand = Just (ExecuteCommandClientCapabilities dynamicReg)
-      , _workspaceFolders = since 3 6 True
-      , _configuration = since 3 6 True
-      , _semanticTokens = since 3 16 (SemanticTokensWorkspaceClientCapabilities $ Just True)
-      -- TODO
-      , _codeLens = Nothing
-      , _fileOperations = Nothing
-      , _inlineValue = Nothing
-      , _inlayHint = Nothing
-      , _diagnostics = Nothing
-      }
-
-    resourceOperations =
-      [ ResourceOperationKind_Create
-      , ResourceOperationKind_Delete
-      , ResourceOperationKind_Rename
-      ]
-
-    symbolCapabilities = WorkspaceSymbolClientCapabilities
-      dynamicReg
-      (since 3 4 (#valueSet .== Just sKs))
-      (since 3 16 (#valueSet .== [SymbolTag_Deprecated]))
-      (since 3 17 (#properties .== []))
-
-    sKs
-      | maj >= 3 && min >= 4 = oldSKs ++ newSKs
-      | otherwise            = oldSKs
-
-    oldSKs =   [ SymbolKind_File
-               , SymbolKind_Module
-               , SymbolKind_Namespace
-               , SymbolKind_Package
-               , SymbolKind_Class
-               , SymbolKind_Method
-               , SymbolKind_Property
-               , SymbolKind_Field
-               , SymbolKind_Constructor
-               , SymbolKind_Enum
-               , SymbolKind_Interface
-               , SymbolKind_Function
-               , SymbolKind_Variable
-               , SymbolKind_Constant
-               , SymbolKind_String
-               , SymbolKind_Number
-               , SymbolKind_Boolean
-               , SymbolKind_Array
-               ]
-
-    newSKs = [ SymbolKind_Object
-             , SymbolKind_Key
-             , SymbolKind_Null
-             , SymbolKind_EnumMember
-             , SymbolKind_Struct
-             , SymbolKind_Event
-             , SymbolKind_Operator
-             , SymbolKind_TypeParameter
-             ]
-
-    -- Only one token format for now, just list it here
-    tfs = [ TokenFormat_Relative ]
-
-    semanticTokensCapabilities = SemanticTokensClientCapabilities {
-        _dynamicRegistration=Just True
-        , _requests= #range .== Just (InL True) .+ #full .== Just (InR (#delta .== Just True))
-        , _tokenTypes=toEnumBaseType <$> Set.toList (knownValues @SemanticTokenTypes)
-        , _tokenModifiers=toEnumBaseType <$> Set.toList (knownValues @SemanticTokenModifiers)
-        , _formats=tfs
-        , _overlappingTokenSupport=Just True
-        , _multilineTokenSupport=Just True
-        , _serverCancelSupport=Just True
-        , _augmentsSyntaxTokens=Just True
-      }
-
-    td = TextDocumentClientCapabilities {
-          _synchronization=Just sync
-          , _completion=Just completionCapability
-          , _hover=Just hoverCapability
-          , _signatureHelp=Just signatureHelpCapability
-          , _references=Just (ReferenceClientCapabilities dynamicReg)
-          , _documentHighlight=Just (DocumentHighlightClientCapabilities dynamicReg)
-          , _documentSymbol=Just documentSymbolCapability
-          , _formatting=Just (DocumentFormattingClientCapabilities dynamicReg)
-          , _rangeFormatting=Just (DocumentRangeFormattingClientCapabilities dynamicReg)
-          , _onTypeFormatting=Just (DocumentOnTypeFormattingClientCapabilities dynamicReg)
-          , _declaration=since 3 14 (DeclarationClientCapabilities dynamicReg (Just True))
-          , _definition=Just (DefinitionClientCapabilities dynamicReg (since 3 14 True))
-          , _typeDefinition=since 3 6 (TypeDefinitionClientCapabilities dynamicReg (since 3 14 True))
-          , _implementation=since 3 6 (ImplementationClientCapabilities dynamicReg (since 3 14 True))
-          , _codeAction=Just codeActionCapability
-          , _codeLens=Just (CodeLensClientCapabilities dynamicReg)
-          , _documentLink=Just (DocumentLinkClientCapabilities dynamicReg (since 3 15 True))
-          , _colorProvider=since 3 6 (DocumentColorClientCapabilities dynamicReg)
-          , _rename=Just (RenameClientCapabilities dynamicReg (since 3 12 True) (since 3 16 PrepareSupportDefaultBehavior_Identifier) (since 3 16 True))
-          , _publishDiagnostics=Just publishDiagnosticsCapabilities
-          , _foldingRange=since 3 10 foldingRangeCapability
-          , _selectionRange=since 3 5 (SelectionRangeClientCapabilities dynamicReg)
-          , _callHierarchy=since 3 16 (CallHierarchyClientCapabilities dynamicReg)
-          , _semanticTokens=since 3 16 semanticTokensCapabilities
-          -- TODO
-          , _linkedEditingRange=Nothing
-          , _moniker=Nothing
-          , _typeHierarchy=Nothing
-          , _inlineValue=Nothing
-          , _inlayHint=Nothing
-          , _diagnostic=Nothing
-        }
-
-    sync =
-      TextDocumentSyncClientCapabilities {
-        _dynamicRegistration=dynamicReg
-        , _willSave=Just True
-        , _willSaveWaitUntil=Just True
-        , _didSave=Just True
-        }
-
-    completionCapability =
-      CompletionClientCapabilities{
-        _dynamicRegistration=dynamicReg
-        , _completionItem=Just completionItemCapabilities
-        , _completionItemKind=since 3 4 (#valueSet .== Just ciKs)
-        , _insertTextMode=since 3 17 InsertTextMode_AsIs
-        , _contextSupport=since 3 3 True
-        , _completionList=since 3 17 (#itemDefaults .== Just [])
-        }
-
-    completionItemCapabilities =
-      #snippetSupport .== Just True
-      .+ #commitCharactersSupport .== Just True
-      .+ #documentationFormat .== since 3 3 allMarkups
-      .+ #deprecatedSupport .== Just True
-      .+ #preselectSupport .== since 3 9 True
-      .+ #tagSupport .== since 3 15 (#valueSet .== [])
-      .+ #insertReplaceSupport .== since 3 16 True
-      .+ #resolveSupport .== since 3 16 (#properties .== ["documentation", "details"])
-      .+ #insertTextModeSupport .== since 3 16 (#valueSet .== [])
-      .+ #labelDetailsSupport .== since 3 17 True
-
-    ciKs
-      | maj >= 3 && min >= 4 = oldCiKs ++ newCiKs
-      | otherwise            = oldCiKs
-
-    oldCiKs =   [ CompletionItemKind_Text
-                , CompletionItemKind_Method
-                , CompletionItemKind_Function
-                , CompletionItemKind_Constructor
-                , CompletionItemKind_Field
-                , CompletionItemKind_Variable
-                , CompletionItemKind_Class
-                , CompletionItemKind_Interface
-                , CompletionItemKind_Module
-                , CompletionItemKind_Property
-                , CompletionItemKind_Unit
-                , CompletionItemKind_Value
-                , CompletionItemKind_Enum
-                , CompletionItemKind_Keyword
-                , CompletionItemKind_Snippet
-                , CompletionItemKind_Color
-                , CompletionItemKind_File
-                , CompletionItemKind_Reference
-                ]
-
-    newCiKs =   [ CompletionItemKind_Folder
-                , CompletionItemKind_EnumMember
-                , CompletionItemKind_Constant
-                , CompletionItemKind_Struct
-                , CompletionItemKind_Event
-                , CompletionItemKind_Operator
-                , CompletionItemKind_TypeParameter
-                ]
-
-    hoverCapability =
-      HoverClientCapabilities {
-        _dynamicRegistration=dynamicReg
-        , _contentFormat=since 3 3 allMarkups
-      }
-
-    codeActionCapability
-      = CodeActionClientCapabilities {
-          _dynamicRegistration=dynamicReg
-          , _codeActionLiteralSupport=since 3 8 (#codeActionKind .== (#valueSet .== Set.toList knownValues))
-          , _isPreferredSupport=since 3 15 True
-          , _disabledSupport=since 3 16 True
-          , _dataSupport=since 3 16 True
-          , _resolveSupport=since 3 16 (#properties .== [])
-          , _honorsChangeAnnotations=since 3 16 True
-        }
-
-    signatureHelpCapability =
-      SignatureHelpClientCapabilities {
-        _dynamicRegistration=dynamicReg
-        , _signatureInformation=Just (#documentationFormat .== Just allMarkups .+ #parameterInformation .== Just (#labelOffsetSupport .== Just True) .+ #activeParameterSupport .== Just True)
-        , _contextSupport=since 3 16 True
-      }
-
-    documentSymbolCapability =
-      DocumentSymbolClientCapabilities {
-        _dynamicRegistration=dynamicReg
-        -- same as workspace symbol kinds
-        , _symbolKind=Just (#valueSet .== Just sKs)
-        , _hierarchicalDocumentSymbolSupport=since 3 10 True
-        , _tagSupport=since 3 16 (#valueSet .== [SymbolTag_Deprecated])
-        , _labelSupport=since 3 16 True
-      }
-
-    foldingRangeCapability =
-      FoldingRangeClientCapabilities {
-        _dynamicRegistration=dynamicReg
-        , _rangeLimit=Nothing
-        , _lineFoldingOnly=Nothing
-        , _foldingRangeKind=since 3 17 (#valueSet .== Just [])
-        , _foldingRange=since 3 16 (#collapsedText .== Just True)
-      }
-
-    publishDiagnosticsCapabilities =
-      PublishDiagnosticsClientCapabilities {
-        _relatedInformation=since 3 7 True
-        , _tagSupport=since 3 15 (#valueSet .== [ DiagnosticTag_Unnecessary, DiagnosticTag_Deprecated ])
-        , _versionSupport=since 3 15 True
-        , _codeDescriptionSupport=since 3 16 True
-        , _dataSupport=since 3 16 True
-      }
-
-    dynamicReg
-      | maj >= 3  = Just True
-      | otherwise = Nothing
-    since :: Int -> Int -> a -> Maybe a
-    since x y a
-      | maj >= x && min >= y = Just a
-      | otherwise            = Nothing
-
-    window =
-      WindowClientCapabilities {
-        _workDoneProgress=since 3 15 True
-        , _showMessage=since 3 16 $ ShowMessageRequestClientCapabilities Nothing
-        , _showDocument=since 3 16 $ ShowDocumentClientCapabilities True
-      }
-
-    general = GeneralClientCapabilities {
-      _staleRequestSupport=since 3 16 (#cancel .== True .+ #retryOnContentModified .== [])
-      , _regularExpressions=since 3 16 $ RegularExpressionsClientCapabilities "" Nothing
-      , _markdown=since 3 16 $ MarkdownClientCapabilities "" Nothing (Just [])
-      -- TODO
-      , _positionEncodings=Nothing
-      }
-
-    allMarkups = [MarkupKind_PlainText, MarkupKind_Markdown]
+{-# LANGUAGE LambdaCase #-}
+{-# LANGUAGE OverloadedStrings #-}
+
+module Language.LSP.Protocol.Capabilities (
+  LSPVersion (..),
+
+  -- * Client capabilities
+  ClientCapability,
+  clientCapability,
+  fullLatestClientCaps,
+  fullClientCapsForVersion,
+  fullClientCapsForVersionAndMethod,
+  dynamicRegistrationSupported,
+
+  -- * Server capabilities
+  ServerCapability,
+  serverCapability,
+) where
+
+import Control.Lens
+import Data.Kind (Type)
+import Data.Maybe
+import Data.Set qualified as Set
+import Data.Void
+import Language.LSP.Protocol.Lens qualified as L
+import Language.LSP.Protocol.Message
+import Language.LSP.Protocol.Types
+import Prelude hiding (min)
+
+-- | A specific version of the LSP specification.
+data LSPVersion = LSPVersion Int Int
+
+---- CLIENT CAPABILITIES
+
+type ClientCapability :: forall f t. Method f t -> Type
+
+-- See Note [Capability mappings]
+
+{- | The client capability associated with a given method.
+
+Where several methods are provided together (e.g. the three `callHierarchy` methods), we associate all of them
+with the capaiblity, even if there is one "primary" method.
+-}
+type family ClientCapability (m :: Method f t) where
+  ClientCapability Method_TextDocumentDeclaration = DeclarationClientCapabilities
+  ClientCapability Method_TextDocumentImplementation = ImplementationClientCapabilities
+  ClientCapability Method_TextDocumentTypeDefinition = TypeDefinitionClientCapabilities
+  ClientCapability Method_TextDocumentHover = HoverClientCapabilities
+  ClientCapability Method_TextDocumentSignatureHelp = SignatureHelpClientCapabilities
+  ClientCapability Method_TextDocumentDefinition = DefinitionClientCapabilities
+  ClientCapability Method_TextDocumentReferences = ReferenceClientCapabilities
+  ClientCapability Method_TextDocumentDocumentHighlight = DocumentHighlightClientCapabilities
+  ClientCapability Method_TextDocumentDocumentSymbol = DocumentSymbolClientCapabilities
+  ClientCapability Method_TextDocumentFoldingRange = FoldingRangeClientCapabilities
+  ClientCapability Method_TextDocumentSelectionRange = SelectionRangeClientCapabilities
+  ClientCapability Method_WorkspaceExecuteCommand = ExecuteCommandClientCapabilities
+  ClientCapability Method_TextDocumentLinkedEditingRange = LinkedEditingRangeClientCapabilities
+  ClientCapability Method_TextDocumentMoniker = MonikerClientCapabilities
+  ClientCapability Method_WorkspaceWorkspaceFolders = Bool
+  ClientCapability Method_TextDocumentCompletion = CompletionClientCapabilities
+  ClientCapability Method_CompletionItemResolve = CompletionClientCapabilities
+  ClientCapability Method_TextDocumentCodeAction = CodeActionClientCapabilities
+  ClientCapability Method_CodeActionResolve = CodeActionClientCapabilities
+  ClientCapability Method_TextDocumentCodeLens = CodeLensClientCapabilities
+  ClientCapability Method_CodeLensResolve = CodeLensClientCapabilities
+  ClientCapability Method_WorkspaceCodeLensRefresh = CodeLensWorkspaceClientCapabilities
+  ClientCapability Method_TextDocumentDocumentLink = DocumentLinkClientCapabilities
+  ClientCapability Method_DocumentLinkResolve = DocumentLinkClientCapabilities
+  ClientCapability Method_WorkspaceSymbol = WorkspaceSymbolClientCapabilities
+  ClientCapability Method_WorkspaceSymbolResolve = WorkspaceSymbolClientCapabilities
+  ClientCapability Method_TextDocumentRename = RenameClientCapabilities
+  ClientCapability Method_TextDocumentPrepareRename = RenameClientCapabilities
+  ClientCapability Method_TextDocumentDocumentColor = DocumentColorClientCapabilities
+  ClientCapability Method_TextDocumentColorPresentation = DocumentColorClientCapabilities
+  ClientCapability Method_TextDocumentFormatting = DocumentFormattingClientCapabilities
+  ClientCapability Method_TextDocumentRangeFormatting = DocumentRangeFormattingClientCapabilities
+  ClientCapability Method_TextDocumentOnTypeFormatting = DocumentOnTypeFormattingClientCapabilities
+  ClientCapability Method_TextDocumentPrepareCallHierarchy = CallHierarchyClientCapabilities
+  ClientCapability Method_CallHierarchyIncomingCalls = CallHierarchyClientCapabilities
+  ClientCapability Method_CallHierarchyOutgoingCalls = CallHierarchyClientCapabilities
+  ClientCapability Method_TextDocumentSemanticTokensFull = SemanticTokensClientCapabilities
+  ClientCapability Method_TextDocumentSemanticTokensFullDelta = SemanticTokensClientCapabilities
+  ClientCapability Method_TextDocumentSemanticTokensRange = SemanticTokensClientCapabilities
+  ClientCapability Method_WorkspaceSemanticTokensRefresh = SemanticTokensWorkspaceClientCapabilities
+  ClientCapability Method_TextDocumentPrepareTypeHierarchy = TypeHierarchyClientCapabilities
+  ClientCapability Method_TypeHierarchySupertypes = TypeHierarchyClientCapabilities
+  ClientCapability Method_TypeHierarchySubtypes = TypeHierarchyClientCapabilities
+  ClientCapability Method_TextDocumentInlineValue = InlineValueClientCapabilities
+  ClientCapability Method_WorkspaceInlineValueRefresh = InlineValueWorkspaceClientCapabilities
+  ClientCapability Method_TextDocumentInlayHint = InlayHintClientCapabilities
+  ClientCapability Method_InlayHintResolve = InlayHintClientCapabilities
+  ClientCapability Method_WorkspaceInlayHintRefresh = InlayHintWorkspaceClientCapabilities
+  ClientCapability Method_TextDocumentDiagnostic = DiagnosticClientCapabilities
+  ClientCapability Method_WorkspaceDiagnostic = DiagnosticWorkspaceClientCapabilities
+  ClientCapability Method_WorkspaceDiagnosticRefresh = DiagnosticWorkspaceClientCapabilities
+  ClientCapability Method_WorkspaceWillCreateFiles = FileOperationClientCapabilities
+  ClientCapability Method_WorkspaceWillRenameFiles = FileOperationClientCapabilities
+  ClientCapability Method_WorkspaceWillDeleteFiles = FileOperationClientCapabilities
+  ClientCapability Method_WorkspaceDidCreateFiles = FileOperationClientCapabilities
+  ClientCapability Method_WorkspaceDidRenameFiles = FileOperationClientCapabilities
+  ClientCapability Method_WorkspaceDidDeleteFiles = FileOperationClientCapabilities
+  ClientCapability Method_TextDocumentDidOpen = TextDocumentSyncClientCapabilities
+  ClientCapability Method_TextDocumentDidChange = TextDocumentSyncClientCapabilities
+  ClientCapability Method_TextDocumentDidClose = TextDocumentSyncClientCapabilities
+  ClientCapability Method_TextDocumentDidSave = TextDocumentSyncClientCapabilities
+  ClientCapability Method_TextDocumentWillSave = TextDocumentSyncClientCapabilities
+  ClientCapability Method_TextDocumentWillSaveWaitUntil = TextDocumentSyncClientCapabilities
+  ClientCapability Method_NotebookDocumentDidOpen = NotebookDocumentSyncClientCapabilities
+  ClientCapability Method_NotebookDocumentDidChange = NotebookDocumentSyncClientCapabilities
+  ClientCapability Method_NotebookDocumentDidSave = NotebookDocumentSyncClientCapabilities
+  ClientCapability Method_NotebookDocumentDidClose = NotebookDocumentSyncClientCapabilities
+  ClientCapability Method_WorkspaceDidChangeConfiguration = DidChangeConfigurationClientCapabilities
+  ClientCapability Method_WorkspaceDidChangeWatchedFiles = DidChangeWatchedFilesClientCapabilities
+  ClientCapability Method_WorkspaceDidChangeWorkspaceFolders = Void
+  ClientCapability Method_TextDocumentPublishDiagnostics = PublishDiagnosticsClientCapabilities
+  ClientCapability Method_WorkspaceConfiguration = Bool
+  ClientCapability Method_WorkspaceApplyEdit = Bool
+  ClientCapability Method_WindowWorkDoneProgressCreate = Bool
+  ClientCapability Method_WindowWorkDoneProgressCancel = Bool
+  ClientCapability Method_WindowShowMessage = ShowMessageRequestClientCapabilities
+  ClientCapability Method_WindowShowMessageRequest = ShowMessageRequestClientCapabilities
+  ClientCapability Method_WindowShowDocument = ShowDocumentClientCapabilities
+  -- All required by default, no capabilities
+  ClientCapability Method_Progress = Void
+  ClientCapability Method_WindowLogMessage = Void
+  ClientCapability Method_ClientRegisterCapability = Void
+  ClientCapability Method_ClientUnregisterCapability = Void
+  ClientCapability Method_Initialize = Void
+  ClientCapability Method_Initialized = Void
+  ClientCapability Method_Shutdown = Void
+  ClientCapability Method_Exit = Void
+  ClientCapability Method_TelemetryEvent = Void
+  ClientCapability Method_SetTrace = Void
+  ClientCapability Method_LogTrace = Void
+  ClientCapability Method_CancelRequest = Void
+  ClientCapability (Method_CustomMethod s) = Void
+
+-- See Note [Capability mappings]
+
+-- | A lens which focusses on the (possibly absent) client capability associated with a method.
+clientCapability :: forall m. SMethod m -> Lens' ClientCapabilities (Maybe (ClientCapability m))
+clientCapability = \case
+  SMethod_TextDocumentDeclaration -> td . L.declaration
+  SMethod_TextDocumentImplementation -> td . L.implementation
+  SMethod_TextDocumentTypeDefinition -> td . L.typeDefinition
+  SMethod_TextDocumentHover -> td . L.hover
+  SMethod_TextDocumentSignatureHelp -> td . L.signatureHelp
+  SMethod_TextDocumentDefinition -> td . L.definition
+  SMethod_TextDocumentReferences -> td . L.references
+  SMethod_TextDocumentDocumentHighlight -> td . L.documentHighlight
+  SMethod_TextDocumentDocumentSymbol -> td . L.documentSymbol
+  SMethod_TextDocumentFoldingRange -> td . L.foldingRange
+  SMethod_TextDocumentSelectionRange -> td . L.selectionRange
+  SMethod_WorkspaceExecuteCommand -> ws . L.executeCommand
+  SMethod_TextDocumentMoniker -> td . L.moniker
+  SMethod_TextDocumentCompletion -> td . L.completion
+  SMethod_CompletionItemResolve -> td . L.completion
+  SMethod_TextDocumentCodeAction -> td . L.codeAction
+  SMethod_CodeActionResolve -> td . L.codeAction
+  SMethod_TextDocumentCodeLens -> td . L.codeLens
+  SMethod_CodeLensResolve -> td . L.codeLens
+  SMethod_WorkspaceCodeLensRefresh -> ws . L.codeLens
+  SMethod_TextDocumentDocumentLink -> td . L.documentLink
+  SMethod_DocumentLinkResolve -> td . L.documentLink
+  SMethod_TextDocumentDocumentColor -> td . L.colorProvider
+  SMethod_TextDocumentColorPresentation -> td . L.colorProvider
+  SMethod_WorkspaceSymbol -> ws . L.symbol
+  SMethod_WorkspaceSymbolResolve -> ws . L.symbol
+  SMethod_TextDocumentFormatting -> td . L.formatting
+  SMethod_TextDocumentRangeFormatting -> td . L.rangeFormatting
+  SMethod_TextDocumentOnTypeFormatting -> td . L.onTypeFormatting
+  SMethod_TextDocumentRename -> td . L.rename
+  SMethod_TextDocumentPrepareRename -> td . L.rename
+  SMethod_TextDocumentPrepareCallHierarchy -> td . L.callHierarchy
+  SMethod_CallHierarchyIncomingCalls -> td . L.callHierarchy
+  SMethod_CallHierarchyOutgoingCalls -> td . L.callHierarchy
+  SMethod_TextDocumentLinkedEditingRange -> td . L.linkedEditingRange
+  SMethod_TextDocumentSemanticTokensFull -> td . L.semanticTokens
+  SMethod_TextDocumentSemanticTokensFullDelta -> td . L.semanticTokens
+  SMethod_TextDocumentSemanticTokensRange -> td . L.semanticTokens
+  SMethod_WorkspaceSemanticTokensRefresh -> ws . L.semanticTokens
+  SMethod_TextDocumentPrepareTypeHierarchy -> td . L.typeHierarchy
+  SMethod_TypeHierarchySubtypes -> td . L.typeHierarchy
+  SMethod_TypeHierarchySupertypes -> td . L.typeHierarchy
+  SMethod_TextDocumentInlineValue -> td . L.inlineValue
+  SMethod_WorkspaceInlineValueRefresh -> ws . L.inlineValue
+  SMethod_TextDocumentInlayHint -> td . L.inlayHint
+  SMethod_InlayHintResolve -> td . L.inlayHint
+  SMethod_WorkspaceInlayHintRefresh -> ws . L.inlayHint
+  SMethod_TextDocumentDiagnostic -> td . L.diagnostic
+  SMethod_WorkspaceDiagnostic -> ws . L.diagnostics
+  SMethod_WorkspaceDiagnosticRefresh -> ws . L.diagnostics
+  SMethod_WorkspaceWorkspaceFolders -> ws . L.workspaceFolders
+  SMethod_WorkspaceWillCreateFiles -> ws . L.fileOperations
+  SMethod_WorkspaceWillRenameFiles -> ws . L.fileOperations
+  SMethod_WorkspaceWillDeleteFiles -> ws . L.fileOperations
+  SMethod_WorkspaceDidCreateFiles -> ws . L.fileOperations
+  SMethod_WorkspaceDidRenameFiles -> ws . L.fileOperations
+  SMethod_WorkspaceDidDeleteFiles -> ws . L.fileOperations
+  SMethod_TextDocumentDidOpen -> td . L.synchronization
+  SMethod_TextDocumentDidChange -> td . L.synchronization
+  SMethod_TextDocumentDidClose -> td . L.synchronization
+  SMethod_TextDocumentDidSave -> td . L.synchronization
+  SMethod_TextDocumentWillSave -> td . L.synchronization
+  SMethod_TextDocumentWillSaveWaitUntil -> td . L.synchronization
+  SMethod_NotebookDocumentDidOpen -> nbs
+  SMethod_NotebookDocumentDidChange -> nbs
+  SMethod_NotebookDocumentDidSave -> nbs
+  SMethod_NotebookDocumentDidClose -> nbs
+  SMethod_WorkspaceDidChangeConfiguration -> ws . L.didChangeConfiguration
+  SMethod_WorkspaceDidChangeWatchedFiles -> ws . L.didChangeWatchedFiles
+  SMethod_TextDocumentPublishDiagnostics -> td . L.publishDiagnostics
+  SMethod_WorkspaceConfiguration -> ws . L.configuration
+  SMethod_WindowWorkDoneProgressCreate -> wd . L.workDoneProgress
+  SMethod_WindowWorkDoneProgressCancel -> wd . L.workDoneProgress
+  SMethod_WorkspaceApplyEdit -> ws . L.applyEdit
+  SMethod_WindowShowDocument -> wd . L.showDocument
+  SMethod_WindowShowMessageRequest -> wd . L.showMessage
+  SMethod_WindowShowMessage -> wd . L.showMessage
+  SMethod_WorkspaceDidChangeWorkspaceFolders -> noCap
+  SMethod_Progress -> noCap
+  SMethod_WindowLogMessage -> noCap
+  SMethod_ClientRegisterCapability -> noCap
+  SMethod_ClientUnregisterCapability -> noCap
+  SMethod_Initialize -> noCap
+  SMethod_Initialized -> noCap
+  SMethod_Shutdown -> noCap
+  SMethod_Exit -> noCap
+  SMethod_TelemetryEvent -> noCap
+  SMethod_SetTrace -> noCap
+  SMethod_LogTrace -> noCap
+  SMethod_CancelRequest -> noCap
+  (SMethod_CustomMethod _s) -> noCap
+ where
+  ws :: Lens' ClientCapabilities WorkspaceClientCapabilities
+  ws = L.workspace . non emptyWorkspaceClientCaps
+  wd :: Lens' ClientCapabilities WindowClientCapabilities
+  wd = L.window . non emptyWindowClientCaps
+  td :: Lens' ClientCapabilities TextDocumentClientCapabilities
+  td = L.textDocument . non emptyTextDocumentClientCaps
+  -- This is messed up because, unlike literally everything else, `NotebookDocumentClientCapabilities.synchronization` is
+  -- a mandatory field, so if we don't have it we need to unset the parent `notebookDocument` field. Maybe.
+  nbs :: Lens' ClientCapabilities (Maybe NotebookDocumentSyncClientCapabilities)
+  nbs = lens g s
+   where
+    g c = c ^. L.notebookDocument . non emptyNotebookDocumentClientCaps . L.synchronization . to Just
+    s c Nothing = c & L.notebookDocument .~ Nothing
+    s c (Just v) = c & L.notebookDocument . non emptyNotebookDocumentClientCaps . L.synchronization .~ v
+
+-- TODO: can we do this generically somehow?
+
+{- | Whether the client supports dynamic registration for the given method.
+
+Note that here we only consider the "main" method against which you dynamically register, so
+even though e.g. we associate the client capabilities for code lenses with `codeLens/resolve`,
+we don't ever say that you can dynamically register `codeLens/resolve`, because you in fact
+need to register `textDocument/codeLens`.
+-}
+dynamicRegistrationSupported :: SMethod m -> ClientCapabilities -> Bool
+dynamicRegistrationSupported m caps = fromMaybe False $ case m of
+  SMethod_WorkspaceDidChangeConfiguration -> caps ^? dyn m
+  SMethod_WorkspaceDidChangeWatchedFiles -> caps ^? dyn m
+  SMethod_WorkspaceSymbol -> caps ^? dyn m
+  SMethod_WorkspaceExecuteCommand -> caps ^? dyn m
+  SMethod_WorkspaceWillCreateFiles -> caps ^? dyn m
+  SMethod_WorkspaceDidCreateFiles -> caps ^? dyn m
+  SMethod_WorkspaceWillDeleteFiles -> caps ^? dyn m
+  SMethod_WorkspaceDidDeleteFiles -> caps ^? dyn m
+  SMethod_TextDocumentDidOpen -> caps ^? dyn m
+  SMethod_TextDocumentDidChange -> caps ^? dyn m
+  SMethod_TextDocumentDidClose -> caps ^? dyn m
+  SMethod_TextDocumentCompletion -> caps ^? dyn m
+  SMethod_TextDocumentHover -> caps ^? dyn m
+  SMethod_TextDocumentSignatureHelp -> caps ^? dyn m
+  SMethod_TextDocumentDeclaration -> caps ^? dyn m
+  SMethod_TextDocumentDefinition -> caps ^? dyn m
+  SMethod_TextDocumentTypeDefinition -> caps ^? dyn m
+  SMethod_TextDocumentImplementation -> caps ^? dyn m
+  SMethod_TextDocumentReferences -> caps ^? dyn m
+  SMethod_TextDocumentDocumentHighlight -> caps ^? dyn m
+  SMethod_TextDocumentDocumentSymbol -> caps ^? dyn m
+  SMethod_TextDocumentCodeAction -> caps ^? dyn m
+  SMethod_TextDocumentCodeLens -> caps ^? dyn m
+  SMethod_TextDocumentDocumentLink -> caps ^? dyn m
+  SMethod_TextDocumentDocumentColor -> caps ^? dyn m
+  SMethod_TextDocumentColorPresentation -> caps ^? dyn m
+  SMethod_TextDocumentFormatting -> caps ^? dyn m
+  SMethod_TextDocumentRangeFormatting -> caps ^? dyn m
+  SMethod_TextDocumentOnTypeFormatting -> caps ^? dyn m
+  SMethod_TextDocumentRename -> caps ^? dyn m
+  SMethod_TextDocumentFoldingRange -> caps ^? dyn m
+  SMethod_TextDocumentSelectionRange -> caps ^? dyn m
+  SMethod_TextDocumentLinkedEditingRange -> caps ^? dyn m
+  SMethod_TextDocumentPrepareCallHierarchy -> caps ^? dyn m
+  SMethod_TextDocumentInlayHint -> caps ^? dyn m
+  SMethod_TextDocumentInlineValue -> caps ^? dyn m
+  SMethod_TextDocumentMoniker -> caps ^? dyn m
+  SMethod_TextDocumentPrepareTypeHierarchy -> caps ^? dyn m
+  SMethod_TextDocumentDiagnostic -> caps ^? dyn m
+  -- semantic tokens is messed up due to it having you register with an otherwise non-existent method
+  -- SMethod_TextDocumentSemanticTokens       -> capDyn $ clientCaps ^? L.textDocument . _Just . L.semanticTokens . _Just
+  -- Notebook document methods alway support dynamic registration, it seems?
+  _ -> Just False
+ where
+  dyn :: L.HasDynamicRegistration (ClientCapability m) (Maybe Bool) => SMethod m -> Traversal' ClientCapabilities Bool
+  dyn m1 = clientCapability m1 . _Just . L.dynamicRegistration . _Just
+
+-- | Client capabilities for full support of the current LSP specification.
+fullLatestClientCaps :: ClientCapabilities
+fullLatestClientCaps = fullClientCapsForVersion (LSPVersion maxBound maxBound)
+
+{-
+TODO: the "since" conditions are out-of-date/needs an audit
+TODO: can we generate this? process the 'since' annotations in the metamodel?
+-}
+
+-- | Client capabilities for full support of the LSP specification up until a version.
+fullClientCapsForVersion :: LSPVersion -> ClientCapabilities
+fullClientCapsForVersion v@(LSPVersion maj min) = caps
+ where
+  methCaps :: SMethod m -> Maybe (ClientCapability m)
+  methCaps = fullClientCapsForVersionAndMethod v
+
+  caps =
+    ClientCapabilities
+      { _workspace = Just workspace
+      , _textDocument = Just td
+      , _window = Just window
+      , _general = since 3 16 general
+      , _notebookDocument = NotebookDocumentClientCapabilities <$> methCaps SMethod_NotebookDocumentDidOpen
+      , _experimental = Nothing
+      }
+
+  window =
+    WindowClientCapabilities
+      { _workDoneProgress = methCaps SMethod_WindowWorkDoneProgressCreate
+      , _showMessage = methCaps SMethod_WindowShowMessageRequest
+      , _showDocument = methCaps SMethod_WindowShowDocument
+      }
+
+  general =
+    GeneralClientCapabilities
+      { _staleRequestSupport = since 3 16 (StaleRequestSupportOptions{_cancel = True, _retryOnContentModified = []})
+      , _regularExpressions = since 3 16 $ RegularExpressionsClientCapabilities (RegularExpressionEngineKind "") Nothing
+      , _markdown = since 3 16 $ MarkdownClientCapabilities "" Nothing (Just [])
+      , _positionEncodings = since 3 17 [PositionEncodingKind_UTF16]
+      }
+
+  workspace =
+    WorkspaceClientCapabilities
+      { _applyEdit = methCaps SMethod_WorkspaceApplyEdit
+      , _workspaceEdit =
+          Just
+            ( WorkspaceEditClientCapabilities
+                (Just True)
+                (since 3 13 [ResourceOperationKind_Create, ResourceOperationKind_Delete, ResourceOperationKind_Rename])
+                Nothing
+                (since 3 16 True)
+                (since 3 16 (ChangeAnnotationsSupportOptions{_groupsOnLabel = Just True}))
+            )
+      , _didChangeConfiguration = methCaps SMethod_WorkspaceDidChangeConfiguration
+      , _didChangeWatchedFiles = methCaps SMethod_WorkspaceDidChangeWatchedFiles
+      , _symbol = methCaps SMethod_WorkspaceSymbol
+      , _executeCommand = methCaps SMethod_WorkspaceExecuteCommand
+      , _codeLens = methCaps SMethod_WorkspaceCodeLensRefresh
+      , _workspaceFolders = methCaps SMethod_WorkspaceWorkspaceFolders
+      , _configuration = methCaps SMethod_WorkspaceConfiguration
+      , _semanticTokens = methCaps SMethod_WorkspaceSemanticTokensRefresh
+      , _inlayHint = methCaps SMethod_WorkspaceInlayHintRefresh
+      , _fileOperations = methCaps SMethod_WorkspaceDidCreateFiles
+      , _inlineValue = methCaps SMethod_WorkspaceInlineValueRefresh
+      , _diagnostics = methCaps SMethod_WorkspaceDiagnostic
+      }
+
+  td =
+    TextDocumentClientCapabilities
+      { _synchronization = methCaps SMethod_TextDocumentDidOpen
+      , _completion = methCaps SMethod_TextDocumentCompletion
+      , _hover = methCaps SMethod_TextDocumentHover
+      , _signatureHelp = methCaps SMethod_TextDocumentSignatureHelp
+      , _references = methCaps SMethod_TextDocumentReferences
+      , _documentHighlight = methCaps SMethod_TextDocumentDocumentHighlight
+      , _documentSymbol = methCaps SMethod_TextDocumentDocumentSymbol
+      , _formatting = methCaps SMethod_TextDocumentFormatting
+      , _rangeFormatting = methCaps SMethod_TextDocumentRangeFormatting
+      , _onTypeFormatting = methCaps SMethod_TextDocumentOnTypeFormatting
+      , _declaration = methCaps SMethod_TextDocumentDeclaration
+      , _definition = methCaps SMethod_TextDocumentDefinition
+      , _typeDefinition = methCaps SMethod_TextDocumentTypeDefinition
+      , _implementation = methCaps SMethod_TextDocumentImplementation
+      , _codeAction = methCaps SMethod_TextDocumentCodeAction
+      , _codeLens = methCaps SMethod_TextDocumentCodeLens
+      , _documentLink = methCaps SMethod_TextDocumentDocumentLink
+      , _colorProvider = methCaps SMethod_TextDocumentDocumentColor
+      , _rename = methCaps SMethod_TextDocumentRename
+      , _publishDiagnostics = methCaps SMethod_TextDocumentPublishDiagnostics
+      , _foldingRange = methCaps SMethod_TextDocumentFoldingRange
+      , _selectionRange = methCaps SMethod_TextDocumentSelectionRange
+      , _callHierarchy = methCaps SMethod_TextDocumentPrepareCallHierarchy
+      , _semanticTokens = methCaps SMethod_TextDocumentSemanticTokensFull
+      , _linkedEditingRange = methCaps SMethod_TextDocumentLinkedEditingRange
+      , _moniker = methCaps SMethod_TextDocumentMoniker
+      , _inlayHint = methCaps SMethod_TextDocumentInlayHint
+      , _typeHierarchy = methCaps SMethod_TextDocumentPrepareTypeHierarchy
+      , _inlineValue = methCaps SMethod_TextDocumentInlineValue
+      , _diagnostic = methCaps SMethod_TextDocumentDiagnostic
+      }
+
+  since :: Int -> Int -> a -> Maybe a
+  since x y a
+    | maj >= x && min >= y = Just a
+    | otherwise = Nothing
+
+-- TODO: make this only include the caps that are necessary for that specific method. That will require
+-- some code to merge capabilities...
+
+-- | Client capabilities for full support of a specific method in the LSP specification up until a version.
+fullClientCapsForVersionAndMethod :: LSPVersion -> SMethod m -> Maybe (ClientCapability m)
+fullClientCapsForVersionAndMethod (LSPVersion maj min) = \case
+  SMethod_TextDocumentDeclaration -> declaration
+  SMethod_TextDocumentImplementation -> implementation
+  SMethod_TextDocumentTypeDefinition -> typeDefinition
+  SMethod_TextDocumentHover -> hover
+  SMethod_TextDocumentSignatureHelp -> signatureHelp
+  SMethod_TextDocumentDefinition -> definition
+  SMethod_TextDocumentReferences -> references
+  SMethod_TextDocumentDocumentHighlight -> documentHighlight
+  SMethod_TextDocumentDocumentSymbol -> documentSymbol
+  SMethod_TextDocumentFoldingRange -> foldingRange
+  SMethod_TextDocumentSelectionRange -> selectionRange
+  SMethod_WorkspaceExecuteCommand -> executeCommand
+  SMethod_TextDocumentMoniker -> moniker
+  SMethod_TextDocumentCompletion -> completion
+  SMethod_CompletionItemResolve -> completion
+  SMethod_TextDocumentCodeAction -> codeAction
+  SMethod_CodeActionResolve -> codeAction
+  SMethod_TextDocumentCodeLens -> codeLens
+  SMethod_CodeLensResolve -> codeLens
+  SMethod_WorkspaceCodeLensRefresh -> wsCodeLens
+  SMethod_TextDocumentDocumentLink -> documentLink
+  SMethod_DocumentLinkResolve -> documentLink
+  SMethod_TextDocumentDocumentColor -> colorProvider
+  SMethod_TextDocumentColorPresentation -> colorProvider
+  SMethod_WorkspaceSymbol -> wsSymbol
+  SMethod_WorkspaceSymbolResolve -> wsSymbol
+  SMethod_TextDocumentFormatting -> formatting
+  SMethod_TextDocumentRangeFormatting -> rangeFormatting
+  SMethod_TextDocumentOnTypeFormatting -> onTypeFormatting
+  SMethod_TextDocumentRename -> rename
+  SMethod_TextDocumentPrepareRename -> rename
+  SMethod_TextDocumentPrepareCallHierarchy -> callHierarchy
+  SMethod_CallHierarchyIncomingCalls -> callHierarchy
+  SMethod_CallHierarchyOutgoingCalls -> callHierarchy
+  SMethod_TextDocumentLinkedEditingRange -> linkedEditingRange
+  SMethod_TextDocumentSemanticTokensFull -> semanticTokens
+  SMethod_TextDocumentSemanticTokensFullDelta -> semanticTokens
+  SMethod_TextDocumentSemanticTokensRange -> semanticTokens
+  SMethod_WorkspaceSemanticTokensRefresh -> wsSemanticTokens
+  SMethod_TextDocumentPrepareTypeHierarchy -> typeHierarchy
+  SMethod_TypeHierarchySubtypes -> typeHierarchy
+  SMethod_TypeHierarchySupertypes -> typeHierarchy
+  SMethod_TextDocumentInlineValue -> inlineValue
+  SMethod_WorkspaceInlineValueRefresh -> wsInlineValue
+  SMethod_TextDocumentInlayHint -> inlayHint
+  SMethod_InlayHintResolve -> inlayHint
+  SMethod_WorkspaceInlayHintRefresh -> wsInlayHint
+  SMethod_TextDocumentDiagnostic -> diagnostic
+  SMethod_WorkspaceDiagnostic -> diagnostics
+  SMethod_WorkspaceDiagnosticRefresh -> diagnostics
+  SMethod_WorkspaceWorkspaceFolders -> workspaceFolders
+  SMethod_WorkspaceWillCreateFiles -> fileOperations
+  SMethod_WorkspaceWillRenameFiles -> fileOperations
+  SMethod_WorkspaceWillDeleteFiles -> fileOperations
+  SMethod_WorkspaceDidCreateFiles -> fileOperations
+  SMethod_WorkspaceDidRenameFiles -> fileOperations
+  SMethod_WorkspaceDidDeleteFiles -> fileOperations
+  SMethod_TextDocumentDidOpen -> synchronization
+  SMethod_TextDocumentDidChange -> synchronization
+  SMethod_TextDocumentDidClose -> synchronization
+  SMethod_TextDocumentDidSave -> synchronization
+  SMethod_TextDocumentWillSave -> synchronization
+  SMethod_TextDocumentWillSaveWaitUntil -> synchronization
+  SMethod_NotebookDocumentDidOpen -> notebookDocumentSync
+  SMethod_NotebookDocumentDidChange -> notebookDocumentSync
+  SMethod_NotebookDocumentDidSave -> notebookDocumentSync
+  SMethod_NotebookDocumentDidClose -> notebookDocumentSync
+  SMethod_WorkspaceDidChangeConfiguration -> didChangeConfiguration
+  SMethod_WorkspaceDidChangeWatchedFiles -> didChangeWatchedFiles
+  SMethod_TextDocumentPublishDiagnostics -> publishDiagnostics
+  SMethod_WorkspaceConfiguration -> configuration
+  SMethod_WindowWorkDoneProgressCreate -> workDoneProgress
+  SMethod_WindowWorkDoneProgressCancel -> workDoneProgress
+  SMethod_WorkspaceApplyEdit -> applyEdit
+  SMethod_WindowShowDocument -> showDocument
+  SMethod_WindowShowMessageRequest -> showMessage
+  SMethod_WindowShowMessage -> showMessage
+  SMethod_WorkspaceDidChangeWorkspaceFolders -> Nothing
+  SMethod_Progress -> Nothing
+  SMethod_WindowLogMessage -> Nothing
+  SMethod_ClientRegisterCapability -> Nothing
+  SMethod_ClientUnregisterCapability -> Nothing
+  SMethod_Initialize -> Nothing
+  SMethod_Initialized -> Nothing
+  SMethod_Shutdown -> Nothing
+  SMethod_Exit -> Nothing
+  SMethod_TelemetryEvent -> Nothing
+  SMethod_SetTrace -> Nothing
+  SMethod_LogTrace -> Nothing
+  SMethod_CancelRequest -> Nothing
+  (SMethod_CustomMethod _s) -> Nothing
+ where
+  workDoneProgress = since 3 15 True
+  showMessage = since 3 16 $ ShowMessageRequestClientCapabilities Nothing
+  showDocument = since 3 16 $ ShowDocumentClientCapabilities True
+  applyEdit = Just True
+  didChangeConfiguration = Just (DidChangeConfigurationClientCapabilities dynamicReg)
+  didChangeWatchedFiles = Just (DidChangeWatchedFilesClientCapabilities dynamicReg (Just True))
+  wsSymbol =
+    Just $
+      WorkspaceSymbolClientCapabilities
+        dynamicReg
+        (since 3 4 (ClientSymbolKindOptions{_valueSet = Just sKs}))
+        (since 3 16 (ClientSymbolTagOptions{_valueSet = [SymbolTag_Deprecated]}))
+        (since 3 17 (ClientSymbolResolveOptions{_properties = []}))
+  executeCommand = Just (ExecuteCommandClientCapabilities dynamicReg)
+  wsCodeLens = Just (CodeLensWorkspaceClientCapabilities $ Just True)
+  workspaceFolders = since 3 6 True
+  configuration = since 3 6 True
+  wsSemanticTokens = since 3 16 (SemanticTokensWorkspaceClientCapabilities $ Just True)
+  wsInlayHint = since 3 17 (InlayHintWorkspaceClientCapabilities $ Just True)
+  fileOperations =
+    since 3 16 $
+      FileOperationClientCapabilities
+        dynamicReg
+        (Just True)
+        (Just True)
+        (Just True)
+        (Just True)
+        (Just True)
+        (Just True)
+  wsInlineValue = since 3 17 (InlineValueWorkspaceClientCapabilities $ Just True)
+  diagnostics = since 3 17 (DiagnosticWorkspaceClientCapabilities $ Just True)
+
+  notebookDocumentSync = since 3 17 $ NotebookDocumentSyncClientCapabilities dynamicReg (Just True)
+
+  synchronization =
+    Just $
+      TextDocumentSyncClientCapabilities{_dynamicRegistration = dynamicReg, _willSave = Just True, _willSaveWaitUntil = Just True, _didSave = Just True}
+  completion =
+    Just $
+      CompletionClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _completionItem = Just completionItemCapabilities
+        , _completionItemKind = since 3 4 (ClientCompletionItemOptionsKind{_valueSet = Just ciKs})
+        , _insertTextMode = since 3 17 InsertTextMode_AsIs
+        , _contextSupport = since 3 3 True
+        , _completionList = since 3 17 (CompletionListCapabilities{_itemDefaults = Just []})
+        }
+  hover =
+    Just $
+      HoverClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _contentFormat = since 3 3 allMarkups
+        }
+  signatureHelp =
+    Just $
+      SignatureHelpClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _signatureInformation =
+            Just $
+              ClientSignatureInformationOptions
+                { _documentationFormat = Just allMarkups
+                , _parameterInformation = Just (ClientSignatureParameterInformationOptions{_labelOffsetSupport = Just True})
+                , _activeParameterSupport = Just True
+                }
+        , _contextSupport = since 3 16 True
+        }
+  references = Just $ ReferenceClientCapabilities dynamicReg
+  documentHighlight = Just $ DocumentHighlightClientCapabilities dynamicReg
+  documentSymbol =
+    Just $
+      DocumentSymbolClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , -- same as workspace symbol kinds
+          _symbolKind = Just (ClientSymbolKindOptions{_valueSet = Just sKs})
+        , _hierarchicalDocumentSymbolSupport = since 3 10 True
+        , _tagSupport = since 3 16 (ClientSymbolTagOptions{_valueSet = [SymbolTag_Deprecated]})
+        , _labelSupport = since 3 16 True
+        }
+  formatting = Just $ DocumentFormattingClientCapabilities dynamicReg
+  rangeFormatting = Just $ DocumentRangeFormattingClientCapabilities dynamicReg
+  onTypeFormatting = Just $ DocumentOnTypeFormattingClientCapabilities dynamicReg
+  declaration = since 3 14 (DeclarationClientCapabilities dynamicReg (Just True))
+  definition = Just (DefinitionClientCapabilities dynamicReg (since 3 14 True))
+  typeDefinition = since 3 6 (TypeDefinitionClientCapabilities dynamicReg (since 3 14 True))
+  implementation = since 3 6 (ImplementationClientCapabilities dynamicReg (since 3 14 True))
+  codeAction =
+    Just $
+      CodeActionClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _codeActionLiteralSupport = since 3 8 (ClientCodeActionLiteralOptions{_codeActionKind = ClientCodeActionKindOptions{_valueSet = Set.toList knownValues}})
+        , _isPreferredSupport = since 3 15 True
+        , _disabledSupport = since 3 16 True
+        , _dataSupport = since 3 16 True
+        , _resolveSupport = since 3 16 (ClientCodeActionResolveOptions{_properties = []})
+        , _honorsChangeAnnotations = since 3 16 True
+        }
+  codeLens = Just (CodeLensClientCapabilities dynamicReg)
+  documentLink = Just (DocumentLinkClientCapabilities dynamicReg (since 3 15 True))
+  colorProvider = since 3 6 (DocumentColorClientCapabilities dynamicReg)
+  rename = Just (RenameClientCapabilities dynamicReg (since 3 12 True) (since 3 16 PrepareSupportDefaultBehavior_Identifier) (since 3 16 True))
+  publishDiagnostics =
+    Just
+      PublishDiagnosticsClientCapabilities
+        { _relatedInformation = since 3 7 True
+        , _tagSupport = since 3 15 (ClientDiagnosticsTagOptions{_valueSet = [DiagnosticTag_Unnecessary, DiagnosticTag_Deprecated]})
+        , _versionSupport = since 3 15 True
+        , _codeDescriptionSupport = since 3 16 True
+        , _dataSupport = since 3 16 True
+        }
+  foldingRange =
+    since 3 10 $
+      FoldingRangeClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _rangeLimit = Nothing
+        , _lineFoldingOnly = Nothing
+        , _foldingRangeKind = since 3 17 (ClientFoldingRangeKindOptions{_valueSet = Just []})
+        , _foldingRange = since 3 16 (ClientFoldingRangeOptions{_collapsedText = Just True})
+        }
+  selectionRange = since 3 5 (SelectionRangeClientCapabilities dynamicReg)
+  callHierarchy = since 3 16 (CallHierarchyClientCapabilities dynamicReg)
+  semanticTokens =
+    since 3 16 $
+      SemanticTokensClientCapabilities
+        { _dynamicRegistration = Just True
+        , _requests = ClientSemanticTokensRequestOptions{_range = Just (InL True), _full = Just (InR (ClientSemanticTokensRequestFullDelta{_delta = Just True}))}
+        , _tokenTypes = toEnumBaseType <$> Set.toList (knownValues @SemanticTokenTypes)
+        , _tokenModifiers = toEnumBaseType <$> Set.toList (knownValues @SemanticTokenModifiers)
+        , _formats = tfs
+        , _overlappingTokenSupport = Just True
+        , _multilineTokenSupport = Just True
+        , _serverCancelSupport = Just True
+        , _augmentsSyntaxTokens = Just True
+        }
+  linkedEditingRange = since 3 16 (LinkedEditingRangeClientCapabilities dynamicReg)
+  moniker = since 3 16 (MonikerClientCapabilities dynamicReg)
+  inlayHint =
+    since 3 17 $
+      InlayHintClientCapabilities
+        { _dynamicRegistration = dynamicReg
+        , _resolveSupport = Just (ClientInlayHintResolveOptions{_properties = []})
+        }
+  typeHierarchy = since 3 17 (TypeHierarchyClientCapabilities dynamicReg)
+  inlineValue = since 3 17 (InlineValueClientCapabilities dynamicReg)
+  diagnostic = since 3 17 (DiagnosticClientCapabilities dynamicReg (Just True))
+
+  completionItemCapabilities =
+    ClientCompletionItemOptions
+      { _snippetSupport = Just True
+      , _commitCharactersSupport = Just True
+      , _documentationFormat = since 3 3 allMarkups
+      , _deprecatedSupport = Just True
+      , _preselectSupport = since 3 9 True
+      , _tagSupport = since 3 15 (CompletionItemTagOptions{_valueSet = []})
+      , _insertReplaceSupport = since 3 16 True
+      , _resolveSupport = since 3 16 (ClientCompletionItemResolveOptions{_properties = ["documentation", "details"]})
+      , _insertTextModeSupport = since 3 16 (ClientCompletionItemInsertTextModeOptions{_valueSet = []})
+      , _labelDetailsSupport = since 3 17 True
+      }
+
+  sKs
+    | maj >= 3 && min >= 4 = oldSKs ++ newSKs
+    | otherwise = oldSKs
+
+  oldSKs =
+    [ SymbolKind_File
+    , SymbolKind_Module
+    , SymbolKind_Namespace
+    , SymbolKind_Package
+    , SymbolKind_Class
+    , SymbolKind_Method
+    , SymbolKind_Property
+    , SymbolKind_Field
+    , SymbolKind_Constructor
+    , SymbolKind_Enum
+    , SymbolKind_Interface
+    , SymbolKind_Function
+    , SymbolKind_Variable
+    , SymbolKind_Constant
+    , SymbolKind_String
+    , SymbolKind_Number
+    , SymbolKind_Boolean
+    , SymbolKind_Array
+    ]
+
+  newSKs =
+    [ SymbolKind_Object
+    , SymbolKind_Key
+    , SymbolKind_Null
+    , SymbolKind_EnumMember
+    , SymbolKind_Struct
+    , SymbolKind_Event
+    , SymbolKind_Operator
+    , SymbolKind_TypeParameter
+    ]
+
+  ciKs
+    | maj >= 3 && min >= 4 = oldCiKs ++ newCiKs
+    | otherwise = oldCiKs
+
+  oldCiKs =
+    [ CompletionItemKind_Text
+    , CompletionItemKind_Method
+    , CompletionItemKind_Function
+    , CompletionItemKind_Constructor
+    , CompletionItemKind_Field
+    , CompletionItemKind_Variable
+    , CompletionItemKind_Class
+    , CompletionItemKind_Interface
+    , CompletionItemKind_Module
+    , CompletionItemKind_Property
+    , CompletionItemKind_Unit
+    , CompletionItemKind_Value
+    , CompletionItemKind_Enum
+    , CompletionItemKind_Keyword
+    , CompletionItemKind_Snippet
+    , CompletionItemKind_Color
+    , CompletionItemKind_File
+    , CompletionItemKind_Reference
+    ]
+
+  newCiKs =
+    [ CompletionItemKind_Folder
+    , CompletionItemKind_EnumMember
+    , CompletionItemKind_Constant
+    , CompletionItemKind_Struct
+    , CompletionItemKind_Event
+    , CompletionItemKind_Operator
+    , CompletionItemKind_TypeParameter
+    ]
+
+  allMarkups = [MarkupKind_PlainText, MarkupKind_Markdown]
+
+  tfs = [TokenFormat_Relative]
+
+  dynamicReg
+    | maj >= 3 = Just True
+    | otherwise = Nothing
+  since :: Int -> Int -> a -> Maybe a
+  since x y a
+    | maj >= x && min >= y = Just a
+    | otherwise = Nothing
+
+---- SERVER CAPABILITIES
+
+type DocumentSyncCaps = TextDocumentSyncOptions |? TextDocumentSyncKind
+type NotebookDocumentSyncCaps = NotebookDocumentSyncOptions |? NotebookDocumentSyncRegistrationOptions
+
+type ServerCapability :: forall f t. Method f t -> Type
+
+-- See Note [Capability mappings]
+
+{- | The server capability associated with a given method.
+
+Where several methods are provided together (e.g. the three `callHierarchy` methods), we associate all of them
+with the capaiblity, even if there is one "primary" method.
+
+For methods which strictly only need a client capability but which are closely related to a server capability
+(e.g. `codeLens/refresh`), we also associate them with that server capability.
+-}
+type family ServerCapability (m :: Method f t) where
+  ServerCapability Method_TextDocumentDeclaration = Bool |? (DeclarationOptions |? DeclarationRegistrationOptions)
+  ServerCapability Method_TextDocumentImplementation = Bool |? (ImplementationOptions |? ImplementationRegistrationOptions)
+  ServerCapability Method_TextDocumentTypeDefinition = Bool |? (TypeDefinitionOptions |? TypeDefinitionRegistrationOptions)
+  ServerCapability Method_TextDocumentHover = Bool |? HoverOptions
+  ServerCapability Method_TextDocumentSignatureHelp = SignatureHelpOptions
+  ServerCapability Method_TextDocumentDefinition = Bool |? DefinitionOptions
+  ServerCapability Method_TextDocumentReferences = Bool |? ReferenceOptions
+  ServerCapability Method_TextDocumentDocumentHighlight = Bool |? DocumentHighlightOptions
+  ServerCapability Method_TextDocumentDocumentSymbol = Bool |? DocumentSymbolOptions
+  ServerCapability Method_TextDocumentFoldingRange = Bool |? (FoldingRangeOptions |? FoldingRangeRegistrationOptions)
+  ServerCapability Method_TextDocumentSelectionRange = Bool |? (SelectionRangeOptions |? SelectionRangeRegistrationOptions)
+  ServerCapability Method_WorkspaceExecuteCommand = ExecuteCommandOptions
+  ServerCapability Method_TextDocumentLinkedEditingRange = Bool |? (LinkedEditingRangeOptions |? LinkedEditingRangeRegistrationOptions)
+  ServerCapability Method_TextDocumentMoniker = Bool |? (MonikerOptions |? MonikerRegistrationOptions)
+  ServerCapability Method_WorkspaceWorkspaceFolders = WorkspaceFoldersServerCapabilities
+  ServerCapability Method_TextDocumentCompletion = CompletionOptions
+  ServerCapability Method_CompletionItemResolve = CompletionOptions
+  ServerCapability Method_TextDocumentCodeAction = Bool |? CodeActionOptions
+  ServerCapability Method_CodeActionResolve = Bool |? CodeActionOptions
+  ServerCapability Method_TextDocumentCodeLens = CodeLensOptions
+  ServerCapability Method_CodeLensResolve = CodeLensOptions
+  ServerCapability Method_WorkspaceCodeLensRefresh = CodeLensOptions
+  ServerCapability Method_TextDocumentDocumentLink = DocumentLinkOptions
+  ServerCapability Method_DocumentLinkResolve = DocumentLinkOptions
+  ServerCapability Method_WorkspaceSymbol = Bool |? WorkspaceSymbolOptions
+  ServerCapability Method_WorkspaceSymbolResolve = Bool |? WorkspaceSymbolOptions
+  ServerCapability Method_TextDocumentRename = Bool |? RenameOptions
+  ServerCapability Method_TextDocumentPrepareRename = Bool |? RenameOptions
+  ServerCapability Method_TextDocumentDocumentColor = Bool |? (DocumentColorOptions |? DocumentColorRegistrationOptions)
+  ServerCapability Method_TextDocumentColorPresentation = Bool |? (DocumentColorOptions |? DocumentColorRegistrationOptions)
+  ServerCapability Method_TextDocumentFormatting = Bool |? DocumentFormattingOptions
+  ServerCapability Method_TextDocumentRangeFormatting = Bool |? DocumentRangeFormattingOptions
+  ServerCapability Method_TextDocumentOnTypeFormatting = DocumentOnTypeFormattingOptions
+  ServerCapability Method_TextDocumentPrepareCallHierarchy = Bool |? (CallHierarchyOptions |? CallHierarchyRegistrationOptions)
+  ServerCapability Method_CallHierarchyIncomingCalls = Bool |? (CallHierarchyOptions |? CallHierarchyRegistrationOptions)
+  ServerCapability Method_CallHierarchyOutgoingCalls = Bool |? (CallHierarchyOptions |? CallHierarchyRegistrationOptions)
+  ServerCapability Method_TextDocumentSemanticTokensFull = SemanticTokensOptions |? SemanticTokensRegistrationOptions
+  ServerCapability Method_TextDocumentSemanticTokensFullDelta = SemanticTokensOptions |? SemanticTokensRegistrationOptions
+  ServerCapability Method_TextDocumentSemanticTokensRange = SemanticTokensOptions |? SemanticTokensRegistrationOptions
+  ServerCapability Method_WorkspaceSemanticTokensRefresh = SemanticTokensOptions |? SemanticTokensRegistrationOptions
+  ServerCapability Method_TextDocumentPrepareTypeHierarchy = Bool |? (TypeHierarchyOptions |? TypeHierarchyRegistrationOptions)
+  ServerCapability Method_TypeHierarchySupertypes = Bool |? (TypeHierarchyOptions |? TypeHierarchyRegistrationOptions)
+  ServerCapability Method_TypeHierarchySubtypes = Bool |? (TypeHierarchyOptions |? TypeHierarchyRegistrationOptions)
+  ServerCapability Method_TextDocumentInlineValue = Bool |? (InlineValueOptions |? InlineValueRegistrationOptions)
+  ServerCapability Method_WorkspaceInlineValueRefresh = Bool |? (InlineValueOptions |? InlineValueRegistrationOptions)
+  ServerCapability Method_TextDocumentInlayHint = Bool |? (InlayHintOptions |? InlayHintRegistrationOptions)
+  ServerCapability Method_InlayHintResolve = Bool |? (InlayHintOptions |? InlayHintRegistrationOptions)
+  ServerCapability Method_WorkspaceInlayHintRefresh = Bool |? (InlayHintOptions |? InlayHintRegistrationOptions)
+  ServerCapability Method_TextDocumentDiagnostic = DiagnosticOptions |? DiagnosticRegistrationOptions
+  ServerCapability Method_WorkspaceDiagnostic = DiagnosticOptions |? DiagnosticRegistrationOptions
+  ServerCapability Method_WorkspaceDiagnosticRefresh = DiagnosticOptions |? DiagnosticRegistrationOptions
+  ServerCapability Method_WorkspaceWillCreateFiles = FileOperationOptions
+  ServerCapability Method_WorkspaceWillRenameFiles = FileOperationOptions
+  ServerCapability Method_WorkspaceWillDeleteFiles = FileOperationOptions
+  ServerCapability Method_WorkspaceDidCreateFiles = FileOperationOptions
+  ServerCapability Method_WorkspaceDidRenameFiles = FileOperationOptions
+  ServerCapability Method_WorkspaceDidDeleteFiles = FileOperationOptions
+  ServerCapability Method_TextDocumentDidOpen = DocumentSyncCaps
+  ServerCapability Method_TextDocumentDidChange = DocumentSyncCaps
+  ServerCapability Method_TextDocumentDidClose = DocumentSyncCaps
+  ServerCapability Method_TextDocumentDidSave = DocumentSyncCaps
+  ServerCapability Method_TextDocumentWillSave = DocumentSyncCaps
+  ServerCapability Method_TextDocumentWillSaveWaitUntil = DocumentSyncCaps
+  ServerCapability Method_NotebookDocumentDidOpen = NotebookDocumentSyncCaps
+  ServerCapability Method_NotebookDocumentDidChange = NotebookDocumentSyncCaps
+  ServerCapability Method_NotebookDocumentDidSave = NotebookDocumentSyncCaps
+  ServerCapability Method_NotebookDocumentDidClose = NotebookDocumentSyncCaps
+  -- Dynamic registration only
+  ServerCapability Method_WorkspaceDidChangeConfiguration = Void
+  ServerCapability Method_WorkspaceDidChangeWatchedFiles = Void
+  ServerCapability Method_WorkspaceDidChangeWorkspaceFolders = Void
+  -- Client capability only
+  ServerCapability Method_TextDocumentPublishDiagnostics = Void
+  ServerCapability Method_WorkspaceConfiguration = Void
+  -- All required by default, no capabilities
+  ServerCapability Method_WindowWorkDoneProgressCreate = Void
+  ServerCapability Method_WindowWorkDoneProgressCancel = Void
+  ServerCapability Method_Progress = Void
+  ServerCapability Method_WindowShowDocument = Void
+  ServerCapability Method_WindowShowMessageRequest = Void
+  ServerCapability Method_WindowShowMessage = Void
+  ServerCapability Method_WindowLogMessage = Void
+  ServerCapability Method_ClientRegisterCapability = Void
+  ServerCapability Method_ClientUnregisterCapability = Void
+  ServerCapability Method_Initialize = Void
+  ServerCapability Method_Initialized = Void
+  ServerCapability Method_Shutdown = Void
+  ServerCapability Method_Exit = Void
+  ServerCapability Method_WorkspaceApplyEdit = Void
+  ServerCapability Method_TelemetryEvent = Void
+  ServerCapability Method_SetTrace = Void
+  ServerCapability Method_LogTrace = Void
+  ServerCapability Method_CancelRequest = Void
+  ServerCapability (Method_CustomMethod s) = Void
+
+-- See Note [Capability mappings]
+
+-- | A lens which focusses on the (possibly absent) server capability associated with a method.
+serverCapability :: forall m. SMethod m -> Lens' ServerCapabilities (Maybe (ServerCapability m))
+serverCapability = \case
+  SMethod_TextDocumentDeclaration -> L.declarationProvider
+  SMethod_TextDocumentImplementation -> L.implementationProvider
+  SMethod_TextDocumentTypeDefinition -> L.typeDefinitionProvider
+  SMethod_TextDocumentHover -> L.hoverProvider
+  SMethod_TextDocumentSignatureHelp -> L.signatureHelpProvider
+  SMethod_TextDocumentDefinition -> L.definitionProvider
+  SMethod_TextDocumentReferences -> L.referencesProvider
+  SMethod_TextDocumentDocumentHighlight -> L.documentHighlightProvider
+  SMethod_TextDocumentDocumentSymbol -> L.documentSymbolProvider
+  SMethod_TextDocumentFoldingRange -> L.foldingRangeProvider
+  SMethod_TextDocumentSelectionRange -> L.selectionRangeProvider
+  SMethod_WorkspaceExecuteCommand -> L.executeCommandProvider
+  SMethod_TextDocumentMoniker -> L.monikerProvider
+  SMethod_TextDocumentCompletion -> L.completionProvider
+  SMethod_CompletionItemResolve -> L.completionProvider
+  SMethod_TextDocumentCodeAction -> L.codeActionProvider
+  SMethod_CodeActionResolve -> L.codeActionProvider
+  SMethod_TextDocumentCodeLens -> L.codeLensProvider
+  SMethod_CodeLensResolve -> L.codeLensProvider
+  SMethod_WorkspaceCodeLensRefresh -> L.codeLensProvider
+  SMethod_TextDocumentDocumentLink -> L.documentLinkProvider
+  SMethod_DocumentLinkResolve -> L.documentLinkProvider
+  SMethod_TextDocumentDocumentColor -> L.colorProvider
+  SMethod_TextDocumentColorPresentation -> L.colorProvider
+  SMethod_WorkspaceSymbol -> L.workspaceSymbolProvider
+  SMethod_WorkspaceSymbolResolve -> L.workspaceSymbolProvider
+  SMethod_TextDocumentFormatting -> L.documentFormattingProvider
+  SMethod_TextDocumentRangeFormatting -> L.documentRangeFormattingProvider
+  SMethod_TextDocumentOnTypeFormatting -> L.documentOnTypeFormattingProvider
+  SMethod_TextDocumentRename -> L.renameProvider
+  SMethod_TextDocumentPrepareRename -> L.renameProvider
+  SMethod_TextDocumentPrepareCallHierarchy -> L.callHierarchyProvider
+  SMethod_CallHierarchyIncomingCalls -> L.callHierarchyProvider
+  SMethod_CallHierarchyOutgoingCalls -> L.callHierarchyProvider
+  SMethod_TextDocumentLinkedEditingRange -> L.linkedEditingRangeProvider
+  SMethod_TextDocumentSemanticTokensFull -> L.semanticTokensProvider
+  SMethod_TextDocumentSemanticTokensFullDelta -> L.semanticTokensProvider
+  SMethod_TextDocumentSemanticTokensRange -> L.semanticTokensProvider
+  SMethod_WorkspaceSemanticTokensRefresh -> L.semanticTokensProvider
+  SMethod_TextDocumentPrepareTypeHierarchy -> L.typeHierarchyProvider
+  SMethod_TypeHierarchySubtypes -> L.typeHierarchyProvider
+  SMethod_TypeHierarchySupertypes -> L.typeHierarchyProvider
+  SMethod_TextDocumentInlineValue -> L.inlineValueProvider
+  SMethod_WorkspaceInlineValueRefresh -> L.inlineValueProvider
+  SMethod_TextDocumentInlayHint -> L.inlayHintProvider
+  SMethod_InlayHintResolve -> L.inlayHintProvider
+  SMethod_WorkspaceInlayHintRefresh -> L.inlayHintProvider
+  SMethod_TextDocumentDiagnostic -> L.diagnosticProvider
+  SMethod_WorkspaceDiagnostic -> L.diagnosticProvider
+  SMethod_WorkspaceDiagnosticRefresh -> L.diagnosticProvider
+  SMethod_WorkspaceWorkspaceFolders -> L.workspace . non emptyWorkspaceServerCaps . L.workspaceFolders
+  SMethod_WorkspaceWillCreateFiles -> fileOps
+  SMethod_WorkspaceWillRenameFiles -> fileOps
+  SMethod_WorkspaceWillDeleteFiles -> fileOps
+  SMethod_WorkspaceDidCreateFiles -> fileOps
+  SMethod_WorkspaceDidRenameFiles -> fileOps
+  SMethod_WorkspaceDidDeleteFiles -> fileOps
+  SMethod_TextDocumentDidOpen -> documentSync
+  SMethod_TextDocumentDidChange -> documentSync
+  SMethod_TextDocumentDidClose -> documentSync
+  SMethod_TextDocumentDidSave -> documentSync
+  SMethod_TextDocumentWillSave -> documentSync
+  SMethod_TextDocumentWillSaveWaitUntil -> documentSync
+  SMethod_NotebookDocumentDidOpen -> notebookDocumentSync
+  SMethod_NotebookDocumentDidChange -> notebookDocumentSync
+  SMethod_NotebookDocumentDidSave -> notebookDocumentSync
+  SMethod_NotebookDocumentDidClose -> notebookDocumentSync
+  SMethod_WorkspaceDidChangeConfiguration -> noCap
+  SMethod_WorkspaceDidChangeWatchedFiles -> noCap
+  SMethod_WorkspaceDidChangeWorkspaceFolders -> noCap
+  SMethod_TextDocumentPublishDiagnostics -> noCap
+  SMethod_WorkspaceConfiguration -> noCap
+  SMethod_WindowWorkDoneProgressCreate -> noCap
+  SMethod_WindowWorkDoneProgressCancel -> noCap
+  SMethod_Progress -> noCap
+  SMethod_WindowShowDocument -> noCap
+  SMethod_WindowShowMessageRequest -> noCap
+  SMethod_WindowShowMessage -> noCap
+  SMethod_WindowLogMessage -> noCap
+  SMethod_ClientRegisterCapability -> noCap
+  SMethod_ClientUnregisterCapability -> noCap
+  SMethod_Initialize -> noCap
+  SMethod_Initialized -> noCap
+  SMethod_Shutdown -> noCap
+  SMethod_Exit -> noCap
+  SMethod_WorkspaceApplyEdit -> noCap
+  SMethod_TelemetryEvent -> noCap
+  SMethod_SetTrace -> noCap
+  SMethod_LogTrace -> noCap
+  SMethod_CancelRequest -> noCap
+  (SMethod_CustomMethod _s) -> noCap
+ where
+  fileOps :: Lens' ServerCapabilities (Maybe FileOperationOptions)
+  fileOps = L.workspace . non emptyWorkspaceServerCaps . L.fileOperations
+  documentSync :: Lens' ServerCapabilities (Maybe DocumentSyncCaps)
+  documentSync = L.textDocumentSync
+  notebookDocumentSync :: Lens' ServerCapabilities (Maybe NotebookDocumentSyncCaps)
+  notebookDocumentSync = L.notebookDocumentSync
+
+noCap :: Lens' a (Maybe Void)
+noCap = lens g s
+ where
+  g _ = Nothing
+  s a Nothing = a
+  s _ (Just v) = absurd v
+
+-- TODO: this is silly
+emptyWorkspaceClientCaps :: WorkspaceClientCapabilities
+emptyWorkspaceClientCaps = WorkspaceClientCapabilities Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing
+emptyWindowClientCaps :: WindowClientCapabilities
+emptyWindowClientCaps = WindowClientCapabilities Nothing Nothing Nothing
+emptyTextDocumentClientCaps :: TextDocumentClientCapabilities
+emptyTextDocumentClientCaps = TextDocumentClientCapabilities Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing Nothing
+emptyNotebookDocumentClientCaps :: NotebookDocumentClientCapabilities
+emptyNotebookDocumentClientCaps = NotebookDocumentClientCapabilities (NotebookDocumentSyncClientCapabilities Nothing Nothing)
+
+emptyWorkspaceServerCaps :: WorkspaceOptions
+emptyWorkspaceServerCaps = WorkspaceOptions Nothing Nothing
+
+{- Note [Capability mappings]
+Sadly these are all manually defined as we don't have the information in the metamodel to do them automatically.
+-}
diff --git a/src/Language/LSP/Protocol/Lens.hs b/src/Language/LSP/Protocol/Lens.hs
--- a/src/Language/LSP/Protocol/Lens.hs
+++ b/src/Language/LSP/Protocol/Lens.hs
@@ -1,12 +1,8 @@
-
 module Language.LSP.Protocol.Lens (
   -- * Generated lens classes
-    module Lens
-  -- Custom lets classes for Type
-  , module TypesLens
-  -- Custom lens classes for Message
-  , module MessageLens) where
+  module TypesLens,
+  module MessageLens,
+) where
 
-import Language.LSP.Protocol.Internal.Lens as Lens
 import Language.LSP.Protocol.Message.Lens as MessageLens
 import Language.LSP.Protocol.Types.Lens as TypesLens
diff --git a/src/Language/LSP/Protocol/Message.hs b/src/Language/LSP/Protocol/Message.hs
--- a/src/Language/LSP/Protocol/Message.hs
+++ b/src/Language/LSP/Protocol/Message.hs
@@ -1,19 +1,25 @@
 module Language.LSP.Protocol.Message (
   -- * Messages
+
   -- ** LSP protocol message types and metadata
-  module Message
-  , module LspId
-  , module Meta
+  module Message,
+  module LspId,
+  module Meta,
+
   -- ** Parsing LSP messages
-  , module Parsing
+  module Parsing,
+
   -- * Methods
+
   -- ** Main LSP method types and functions
-  , module Generated
+  module Generated,
+
   -- ** Helpers for working with methods
-  , module Method
+  module Method,
+
   -- * LSP registrations
-  , module Registration
-  ) where
+  module Registration,
+) where
 
 import Language.LSP.Protocol.Internal.Method as Generated
 import Language.LSP.Protocol.Message.LspId as LspId
diff --git a/src/Language/LSP/Protocol/Message/Lens.hs b/src/Language/LSP/Protocol/Message/Lens.hs
--- a/src/Language/LSP/Protocol/Message/Lens.hs
+++ b/src/Language/LSP/Protocol/Message/Lens.hs
@@ -1,12 +1,12 @@
-{-#LANGUAGE TemplateHaskell #-}
+{-# LANGUAGE TemplateHaskell #-}
 {-# OPTIONS_GHC -Wno-orphans #-}
 
 module Language.LSP.Protocol.Message.Lens where
 
-import Language.LSP.Protocol.Internal.Lens
+import Control.Lens.TH
 import Language.LSP.Protocol.Message.Registration
 import Language.LSP.Protocol.Message.Types
-import           Control.Lens.TH
+import Language.LSP.Protocol.Types.Lens
 
 makeFieldsNoPrefix ''TRegistration
 makeFieldsNoPrefix ''TUnregistration
diff --git a/src/Language/LSP/Protocol/Message/LspId.hs b/src/Language/LSP/Protocol/Message/LspId.hs
--- a/src/Language/LSP/Protocol/Message/LspId.hs
+++ b/src/Language/LSP/Protocol/Message/LspId.hs
@@ -1,30 +1,31 @@
-{-# LANGUAGE TypeInType #-}
+{-# LANGUAGE DataKinds #-}
+
 module Language.LSP.Protocol.Message.LspId where
 
-import qualified Data.Aeson                         as A
-import           Data.Hashable
-import           Data.IxMap
-import           Data.Text                          (Text)
-import           GHC.Generics
-import           Prettyprinter
+import Data.Aeson qualified as A
+import Data.Hashable
+import Data.IxMap
+import Data.Text (Text)
+import GHC.Generics
+import Prettyprinter
 
-import           Language.LSP.Protocol.Types.Common
-import           Language.LSP.Protocol.Internal.Method
-import           Language.LSP.Protocol.Message.Meta
-import           Language.LSP.Protocol.Utils.Misc
+import Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Message.Meta
+import Language.LSP.Protocol.Types.Common
+import Language.LSP.Protocol.Utils.Misc
 
 -- | Id used for a request, Can be either a String or an Int
 data LspId (m :: Method f Request) = IdInt !Int32 | IdString !Text
-  deriving stock (Show,Read,Eq,Ord,Generic)
+  deriving stock (Show, Read, Eq, Ord, Generic)
 
 instance A.ToJSON (LspId m) where
-  toJSON (IdInt i)    = A.toJSON i
+  toJSON (IdInt i) = A.toJSON i
   toJSON (IdString s) = A.toJSON s
 
 instance A.FromJSON (LspId m) where
   parseJSON v@(A.Number _) = IdInt <$> A.parseJSON v
-  parseJSON  (A.String  s) = return (IdString s)
-  parseJSON _              = fail "LspId"
+  parseJSON (A.String s) = return (IdString s)
+  parseJSON _ = fail "LspId"
 
 deriving via ViaJSON (LspId m) instance Pretty (LspId m)
 
@@ -33,7 +34,7 @@
   toBase = SomeLspId
 
 instance Hashable (LspId m) where
-  hashWithSalt n (IdInt i)    = hashWithSalt n i
+  hashWithSalt n (IdInt i) = hashWithSalt n i
   hashWithSalt n (IdString t) = hashWithSalt n t
 
 data SomeLspId where
@@ -41,16 +42,16 @@
 
 deriving stock instance Show SomeLspId
 instance Eq SomeLspId where
-  SomeLspId (IdInt a) == SomeLspId (IdInt b)       = a == b
+  SomeLspId (IdInt a) == SomeLspId (IdInt b) = a == b
   SomeLspId (IdString a) == SomeLspId (IdString b) = a == b
-  _ == _                                           = False
+  _ == _ = False
 instance Ord SomeLspId where
   compare (SomeLspId x) (SomeLspId y) = go x y
-    where
-      go (IdInt    a) (IdInt    b) = a `compare` b
-      go (IdString a) (IdString b) = a `compare` b
-      go (IdInt    _) (IdString _) = LT
-      go (IdString _) (IdInt    _) = GT
+   where
+    go (IdInt a) (IdInt b) = a `compare` b
+    go (IdString a) (IdString b) = a `compare` b
+    go (IdInt _) (IdString _) = LT
+    go (IdString _) (IdInt _) = GT
 
 instance Hashable SomeLspId where
   hashWithSalt n (SomeLspId lspId) = hashWithSalt n lspId
diff --git a/src/Language/LSP/Protocol/Message/Meta.hs b/src/Language/LSP/Protocol/Message/Meta.hs
--- a/src/Language/LSP/Protocol/Message/Meta.hs
+++ b/src/Language/LSP/Protocol/Message/Meta.hs
@@ -2,6 +2,7 @@
 
 -- | Which direction messages are sent in.
 data MessageDirection = ServerToClient | ClientToServer
+
 -- | What kind of message is sent.
 data MessageKind = Notification | Request
 
diff --git a/src/Language/LSP/Protocol/Message/Method.hs b/src/Language/LSP/Protocol/Message/Method.hs
--- a/src/Language/LSP/Protocol/Message/Method.hs
+++ b/src/Language/LSP/Protocol/Message/Method.hs
@@ -1,31 +1,30 @@
-{-# LANGUAGE ConstraintKinds         #-}
-{-# LANGUAGE FlexibleContexts        #-}
-{-# LANGUAGE LambdaCase              #-}
-{-# LANGUAGE MagicHash               #-}
-{-# LANGUAGE QuantifiedConstraints   #-}
-{-# LANGUAGE RankNTypes              #-}
-{-# LANGUAGE TemplateHaskell         #-}
-{-# LANGUAGE TypeInType              #-}
-{-# LANGUAGE TypeOperators           #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE LambdaCase #-}
+{-# LANGUAGE MagicHash #-}
+{-# LANGUAGE QuantifiedConstraints #-}
+{-# LANGUAGE TemplateHaskell #-}
 {-# LANGUAGE UndecidableSuperClasses #-}
-
 {-# OPTIONS_GHC -Wno-orphans #-}
+
 module Language.LSP.Protocol.Message.Method where
 
-import           Data.Aeson.Types
-import           Data.Function                      (on)
-import           Data.List                          (isPrefixOf)
-import           Data.GADT.Compare
-import           Data.Proxy
-import           Data.Type.Equality
-import           GHC.Exts                           (Int (..), dataToTag#)
-import           GHC.TypeLits                       (KnownSymbol, sameSymbol,
-                                                     symbolVal)
-import           Language.LSP.Protocol.Internal.Method
-import           Language.LSP.Protocol.Message.Meta
-import           Language.LSP.Protocol.Utils.Misc
-import           Prettyprinter
-import           Unsafe.Coerce
+import Data.Aeson.Types
+import Data.Function (on)
+import Data.GADT.Compare
+import Data.List (isPrefixOf)
+import Data.Proxy
+import Data.Type.Equality
+import GHC.Exts (Int (..), dataToTag#)
+import GHC.TypeLits (
+  KnownSymbol,
+  sameSymbol,
+  symbolVal,
+ )
+import Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Message.Meta
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import Unsafe.Coerce
 
 ---------------
 -- SomeMethod
@@ -99,7 +98,7 @@
     case sm of
       SomeMethod (SMethod_CustomMethod x) -> case sameSymbol x (Proxy :: Proxy s) of
         Just Refl -> pure $ SMethod_CustomMethod x
-        Nothing   -> mempty
+        Nothing -> mempty
       _ -> mempty
 
 -- TODO: generate these with everything else?
@@ -125,24 +124,24 @@
 
 someClientMethod :: SMethod m -> Maybe SomeClientMethod
 someClientMethod s = case messageDirection s of
-    SClientToServer -> Just $ SomeClientMethod s
-    SServerToClient -> Nothing
-    -- See Note [Parsing methods that go both ways]
-    SBothDirections -> Just $ SomeClientMethod $ unsafeCoerce s
+  SClientToServer -> Just $ SomeClientMethod s
+  SServerToClient -> Nothing
+  -- See Note [Parsing methods that go both ways]
+  SBothDirections -> Just $ SomeClientMethod $ unsafeCoerce s
 
 someServerMethod :: SMethod m -> Maybe SomeServerMethod
 someServerMethod s = case messageDirection s of
-    SServerToClient-> Just $ SomeServerMethod s
-    SClientToServer -> Nothing
-    -- See Note [Parsing methods that go both ways]
-    SBothDirections -> Just $ SomeServerMethod $ unsafeCoerce s
+  SServerToClient -> Just $ SomeServerMethod s
+  SClientToServer -> Nothing
+  -- See Note [Parsing methods that go both ways]
+  SBothDirections -> Just $ SomeServerMethod $ unsafeCoerce s
 
 instance FromJSON SomeClientMethod where
   parseJSON v = do
     (SomeMethod sm) <- parseJSON v
     case someClientMethod sm of
       Just scm -> pure scm
-      Nothing  -> mempty
+      Nothing -> mempty
 
 instance ToJSON SomeClientMethod where
   toJSON (SomeClientMethod sm) = toJSON $ someMethodToMethodString $ SomeMethod sm
@@ -154,7 +153,7 @@
     (SomeMethod sm) <- parseJSON v
     case someServerMethod sm of
       Just scm -> pure scm
-      Nothing  -> mempty
+      Nothing -> mempty
 
 instance ToJSON SomeServerMethod where
   toJSON (SomeServerMethod sm) = toJSON $ someMethodToMethodString $ SomeMethod sm
diff --git a/src/Language/LSP/Protocol/Message/Parsing.hs b/src/Language/LSP/Protocol/Message/Parsing.hs
--- a/src/Language/LSP/Protocol/Message/Parsing.hs
+++ b/src/Language/LSP/Protocol/Message/Parsing.hs
@@ -1,25 +1,22 @@
-{-# LANGUAGE ConstraintKinds  #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE LambdaCase       #-}
-{-# LANGUAGE RankNTypes       #-}
-{-# LANGUAGE TypeInType       #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE LambdaCase #-}
 
 module Language.LSP.Protocol.Message.Parsing where
 
-import           Language.LSP.Protocol.Message.LspId
-import           Language.LSP.Protocol.Message.Types
-import           Language.LSP.Protocol.Message.Meta
-import           Language.LSP.Protocol.Message.Method
-import           Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Message.LspId
+import Language.LSP.Protocol.Message.Meta
+import Language.LSP.Protocol.Message.Method
+import Language.LSP.Protocol.Message.Types
 
-import           Data.Aeson
-import           Data.Aeson.Types
-import           Data.Function                     (on)
-import           Data.GADT.Compare
-import           Data.Kind
-import           Data.Proxy
-import           Data.Type.Equality
-import           GHC.TypeLits                      (sameSymbol)
+import Data.Aeson
+import Data.Aeson.Types
+import Data.Function (on)
+import Data.GADT.Compare
+import Data.Kind
+import Data.Proxy
+import Data.Type.Equality
+import GHC.TypeLits (sameSymbol)
 
 -- ---------------------------------------------------------------------
 -- Working with arbitrary messages
@@ -27,7 +24,7 @@
 
 data FromServerMessage' a where
   FromServerMess :: forall t (m :: Method ServerToClient t) a. SMethod m -> TMessage m -> FromServerMessage' a
-  FromServerRsp  :: forall (m :: Method ClientToServer Request) a. a m -> TResponseMessage m -> FromServerMessage' a
+  FromServerRsp :: forall (m :: Method ClientToServer Request) a. a m -> TResponseMessage m -> FromServerMessage' a
 
 type FromServerMessage = FromServerMessage' SMethod
 
@@ -38,33 +35,45 @@
 
 instance ToJSON FromServerMessage where
   toJSON (FromServerMess m p) = serverMethodJSON m (toJSON p)
-  toJSON (FromServerRsp m p)  = clientResponseJSON m (toJSON p)
+  toJSON (FromServerRsp m p) = clientResponseJSON m (toJSON p)
 
-fromServerNot :: forall (m :: Method ServerToClient Notification).
-  TMessage m ~ TNotificationMessage m => TNotificationMessage m -> FromServerMessage
-fromServerNot m@TNotificationMessage{_method=meth} = FromServerMess meth m
+fromServerNot ::
+  forall (m :: Method ServerToClient Notification).
+  TMessage m ~ TNotificationMessage m =>
+  TNotificationMessage m ->
+  FromServerMessage
+fromServerNot m@TNotificationMessage{_method = meth} = FromServerMess meth m
 
-fromServerReq :: forall (m :: Method ServerToClient Request).
-  TMessage m ~ TRequestMessage m => TRequestMessage m -> FromServerMessage
-fromServerReq m@TRequestMessage{_method=meth} = FromServerMess meth m
+fromServerReq ::
+  forall (m :: Method ServerToClient Request).
+  TMessage m ~ TRequestMessage m =>
+  TRequestMessage m ->
+  FromServerMessage
+fromServerReq m@TRequestMessage{_method = meth} = FromServerMess meth m
 
 data FromClientMessage' a where
-  FromClientMess :: forall t (m :: Method ClientToServer t) a . SMethod m -> TMessage m -> FromClientMessage' a
-  FromClientRsp  :: forall (m :: Method ServerToClient Request) a . a m -> TResponseMessage m -> FromClientMessage' a
+  FromClientMess :: forall t (m :: Method ClientToServer t) a. SMethod m -> TMessage m -> FromClientMessage' a
+  FromClientRsp :: forall (m :: Method ServerToClient Request) a. a m -> TResponseMessage m -> FromClientMessage' a
 
 type FromClientMessage = FromClientMessage' SMethod
 
 instance ToJSON FromClientMessage where
   toJSON (FromClientMess m p) = clientMethodJSON m (toJSON p)
-  toJSON (FromClientRsp m p)  = serverResponseJSON m (toJSON p)
+  toJSON (FromClientRsp m p) = serverResponseJSON m (toJSON p)
 
-fromClientNot :: forall (m :: Method ClientToServer Notification).
-  TMessage m ~ TNotificationMessage m => TNotificationMessage m -> FromClientMessage
-fromClientNot m@TNotificationMessage{_method=meth} = FromClientMess meth m
+fromClientNot ::
+  forall (m :: Method ClientToServer Notification).
+  TMessage m ~ TNotificationMessage m =>
+  TNotificationMessage m ->
+  FromClientMessage
+fromClientNot m@TNotificationMessage{_method = meth} = FromClientMess meth m
 
-fromClientReq :: forall (m :: Method ClientToServer Request).
-  TMessage m ~ TRequestMessage m => TRequestMessage m -> FromClientMessage
-fromClientReq m@TRequestMessage{_method=meth} = FromClientMess meth m
+fromClientReq ::
+  forall (m :: Method ClientToServer Request).
+  TMessage m ~ TRequestMessage m =>
+  TRequestMessage m ->
+  FromClientMessage
+fromClientReq m@TRequestMessage{_method = meth} = FromClientMess meth m
 
 -- ---------------------------------------------------------------------
 -- Parsing
@@ -96,18 +105,18 @@
             -- Request
             Just _ ->
               let m' = (SMethod_CustomMethod p :: SMethod (Method_CustomMethod s' :: Method ServerToClient Request))
-              in FromServerMess m' <$> parseJSON v
+               in FromServerMess m' <$> parseJSON v
             Nothing ->
               let m' = (SMethod_CustomMethod p :: SMethod (Method_CustomMethod s' :: Method ServerToClient Notification))
-              in FromServerMess m' <$> parseJSON v
+               in FromServerMess m' <$> parseJSON v
     Nothing -> do
       case idMaybe of
         Just i -> do
           case lookupId i of
-            Just (m,res) -> clientResponseJSON m $ FromServerRsp res <$> parseJSON v
+            Just (m, res) -> clientResponseJSON m $ FromServerRsp res <$> parseJSON v
             Nothing -> fail $ unwords ["Failed in looking up response type of", show v]
         Nothing -> fail $ unwords ["Got unexpected message without method or id"]
-parseServerMessage _ v = fail $ unwords ["parseServerMessage expected object, got:",show v]
+parseServerMessage _ v = fail $ unwords ["parseServerMessage expected object, got:", show v]
 
 {-# INLINE parseClientMessage #-}
 parseClientMessage :: LookupFunc ServerToClient a -> Value -> Parser (FromClientMessage' a)
@@ -125,18 +134,18 @@
             -- Request
             Just _ ->
               let m' = (SMethod_CustomMethod p :: SMethod (Method_CustomMethod s' :: Method ClientToServer Request))
-              in FromClientMess m' <$> parseJSON v
+               in FromClientMess m' <$> parseJSON v
             Nothing ->
               let m' = (SMethod_CustomMethod p :: SMethod (Method_CustomMethod s' :: Method ClientToServer Notification))
-              in FromClientMess m' <$> parseJSON v
+               in FromClientMess m' <$> parseJSON v
     Nothing -> do
       case idMaybe of
         Just i -> do
           case lookupId i of
-            Just (m,res) -> serverResponseJSON m $ FromClientRsp res <$> parseJSON v
+            Just (m, res) -> serverResponseJSON m $ FromClientRsp res <$> parseJSON v
             Nothing -> fail $ unwords ["Failed in looking up response type of", show v]
         Nothing -> fail $ unwords ["Got unexpected message without method or id"]
-parseClientMessage _ v = fail $ unwords ["parseClientMessage expected object, got:",show v]
+parseClientMessage _ v = fail $ unwords ["parseClientMessage expected object, got:", show v]
 
 -- ---------------------------------------------------------------------
 -- Helper Utilities
@@ -145,179 +154,184 @@
 {-# INLINE clientResponseJSON #-}
 clientResponseJSON :: SClientMethod m -> (HasJSON (TResponseMessage m) => x) -> x
 clientResponseJSON m x = case splitClientMethod m of
-  IsClientReq    -> x
+  IsClientReq -> x
   IsClientEither -> x
 
 {-# INLINE serverResponseJSON #-}
 serverResponseJSON :: SServerMethod m -> (HasJSON (TResponseMessage m) => x) -> x
 serverResponseJSON m x = case splitServerMethod m of
-  IsServerReq    -> x
+  IsServerReq -> x
   IsServerEither -> x
 
-{-# INLINE clientMethodJSON#-}
+{-# INLINE clientMethodJSON #-}
 clientMethodJSON :: SClientMethod m -> (ToJSON (TClientMessage m) => x) -> x
 clientMethodJSON m x =
   case splitClientMethod m of
-    IsClientNot    -> x
-    IsClientReq    -> x
+    IsClientNot -> x
+    IsClientReq -> x
     IsClientEither -> x
 
 {-# INLINE serverMethodJSON #-}
 serverMethodJSON :: SServerMethod m -> (ToJSON (TServerMessage m) => x) -> x
 serverMethodJSON m x =
   case splitServerMethod m of
-    IsServerNot    -> x
-    IsServerReq    -> x
+    IsServerNot -> x
+    IsServerReq -> x
     IsServerEither -> x
 
-type HasJSON a = (ToJSON a,FromJSON a,Eq a)
+type HasJSON a = (ToJSON a, FromJSON a, Eq a)
 
 -- Reify universal properties about Client/Server Messages
 
-type ClientNotOrReq :: forall t . Method ClientToServer t -> Type
+type ClientNotOrReq :: forall t. Method ClientToServer t -> Type
 data ClientNotOrReq m where
-  IsClientNot
-    :: ( HasJSON (TClientMessage m)
-       , TMessage m ~ TNotificationMessage m)
-    => ClientNotOrReq (m :: Method ClientToServer Notification)
-  IsClientReq
-    :: forall (m :: Method ClientToServer Request).
+  IsClientNot ::
     ( HasJSON (TClientMessage m)
+    , TMessage m ~ TNotificationMessage m
+    ) =>
+    ClientNotOrReq (m :: Method ClientToServer Notification)
+  IsClientReq ::
+    forall (m :: Method ClientToServer Request).
+    ( HasJSON (TClientMessage m)
     , HasJSON (TResponseMessage m)
-    , TMessage m ~ TRequestMessage m)
-    => ClientNotOrReq m
-  IsClientEither
-    :: ClientNotOrReq (Method_CustomMethod s)
+    , TMessage m ~ TRequestMessage m
+    ) =>
+    ClientNotOrReq m
+  IsClientEither ::
+    ClientNotOrReq (Method_CustomMethod s)
 
-type ServerNotOrReq :: forall t . Method ServerToClient t -> Type
+type ServerNotOrReq :: forall t. Method ServerToClient t -> Type
 data ServerNotOrReq m where
-  IsServerNot
-    :: ( HasJSON (TServerMessage m)
-       , TMessage m ~ TNotificationMessage m)
-    => ServerNotOrReq (m :: Method ServerToClient Notification)
-  IsServerReq
-    :: forall (m :: Method ServerToClient Request).
+  IsServerNot ::
     ( HasJSON (TServerMessage m)
+    , TMessage m ~ TNotificationMessage m
+    ) =>
+    ServerNotOrReq (m :: Method ServerToClient Notification)
+  IsServerReq ::
+    forall (m :: Method ServerToClient Request).
+    ( HasJSON (TServerMessage m)
     , HasJSON (TResponseMessage m)
-    , TMessage m ~ TRequestMessage m)
-    => ServerNotOrReq m
-  IsServerEither
-    :: ServerNotOrReq (Method_CustomMethod s)
+    , TMessage m ~ TRequestMessage m
+    ) =>
+    ServerNotOrReq m
+  IsServerEither ::
+    ServerNotOrReq (Method_CustomMethod s)
 
 {-# INLINE splitClientMethod #-}
 splitClientMethod :: SClientMethod m -> ClientNotOrReq m
 splitClientMethod = \case
-  SMethod_Initialize                          -> IsClientReq
-  SMethod_Initialized                         -> IsClientNot
-  SMethod_Shutdown                            -> IsClientReq
-  SMethod_Exit                                -> IsClientNot
-  SMethod_WorkspaceDidChangeWorkspaceFolders  -> IsClientNot
-  SMethod_WorkspaceDidChangeConfiguration     -> IsClientNot
-  SMethod_WorkspaceDidChangeWatchedFiles      -> IsClientNot
-  SMethod_WorkspaceSymbol                     -> IsClientReq
-  SMethod_WorkspaceExecuteCommand             -> IsClientReq
-  SMethod_WindowWorkDoneProgressCancel        -> IsClientNot
-  SMethod_TextDocumentDidOpen                 -> IsClientNot
-  SMethod_TextDocumentDidChange               -> IsClientNot
-  SMethod_TextDocumentWillSave                -> IsClientNot
-  SMethod_TextDocumentWillSaveWaitUntil       -> IsClientReq
-  SMethod_TextDocumentDidSave                 -> IsClientNot
-  SMethod_TextDocumentDidClose                -> IsClientNot
-  SMethod_TextDocumentCompletion              -> IsClientReq
-  SMethod_TextDocumentHover                   -> IsClientReq
-  SMethod_TextDocumentSignatureHelp           -> IsClientReq
-  SMethod_TextDocumentDeclaration             -> IsClientReq
-  SMethod_TextDocumentDefinition              -> IsClientReq
-  SMethod_TextDocumentTypeDefinition          -> IsClientReq
-  SMethod_TextDocumentImplementation          -> IsClientReq
-  SMethod_TextDocumentReferences              -> IsClientReq
-  SMethod_TextDocumentDocumentHighlight       -> IsClientReq
-  SMethod_TextDocumentDocumentSymbol          -> IsClientReq
-  SMethod_TextDocumentCodeAction              -> IsClientReq
-  SMethod_TextDocumentCodeLens                -> IsClientReq
-  SMethod_TextDocumentDocumentLink            -> IsClientReq
-  SMethod_TextDocumentDocumentColor           -> IsClientReq
-  SMethod_TextDocumentColorPresentation       -> IsClientReq
-  SMethod_TextDocumentFormatting              -> IsClientReq
-  SMethod_TextDocumentRangeFormatting         -> IsClientReq
-  SMethod_TextDocumentOnTypeFormatting        -> IsClientReq
-  SMethod_TextDocumentRename                  -> IsClientReq
-  SMethod_TextDocumentPrepareRename           -> IsClientReq
-  SMethod_TextDocumentFoldingRange            -> IsClientReq
-  SMethod_TextDocumentSelectionRange          -> IsClientReq
-  SMethod_TextDocumentPrepareCallHierarchy    -> IsClientReq
-  SMethod_TextDocumentLinkedEditingRange      -> IsClientReq
-  SMethod_CallHierarchyIncomingCalls          -> IsClientReq
-  SMethod_CallHierarchyOutgoingCalls          -> IsClientReq
-  SMethod_TextDocumentSemanticTokensFull      -> IsClientReq
+  SMethod_Initialize -> IsClientReq
+  SMethod_Initialized -> IsClientNot
+  SMethod_Shutdown -> IsClientReq
+  SMethod_Exit -> IsClientNot
+  SMethod_WorkspaceDidChangeWorkspaceFolders -> IsClientNot
+  SMethod_WorkspaceDidChangeConfiguration -> IsClientNot
+  SMethod_WorkspaceDidChangeWatchedFiles -> IsClientNot
+  SMethod_WorkspaceSymbol -> IsClientReq
+  SMethod_WorkspaceExecuteCommand -> IsClientReq
+  SMethod_WindowWorkDoneProgressCancel -> IsClientNot
+  SMethod_TextDocumentDidOpen -> IsClientNot
+  SMethod_TextDocumentDidChange -> IsClientNot
+  SMethod_TextDocumentWillSave -> IsClientNot
+  SMethod_TextDocumentWillSaveWaitUntil -> IsClientReq
+  SMethod_TextDocumentDidSave -> IsClientNot
+  SMethod_TextDocumentDidClose -> IsClientNot
+  SMethod_TextDocumentCompletion -> IsClientReq
+  SMethod_TextDocumentHover -> IsClientReq
+  SMethod_TextDocumentSignatureHelp -> IsClientReq
+  SMethod_TextDocumentDeclaration -> IsClientReq
+  SMethod_TextDocumentDefinition -> IsClientReq
+  SMethod_TextDocumentTypeDefinition -> IsClientReq
+  SMethod_TextDocumentImplementation -> IsClientReq
+  SMethod_TextDocumentReferences -> IsClientReq
+  SMethod_TextDocumentDocumentHighlight -> IsClientReq
+  SMethod_TextDocumentDocumentSymbol -> IsClientReq
+  SMethod_TextDocumentCodeAction -> IsClientReq
+  SMethod_TextDocumentCodeLens -> IsClientReq
+  SMethod_TextDocumentDocumentLink -> IsClientReq
+  SMethod_TextDocumentDocumentColor -> IsClientReq
+  SMethod_TextDocumentColorPresentation -> IsClientReq
+  SMethod_TextDocumentFormatting -> IsClientReq
+  SMethod_TextDocumentRangeFormatting -> IsClientReq
+  SMethod_TextDocumentOnTypeFormatting -> IsClientReq
+  SMethod_TextDocumentRename -> IsClientReq
+  SMethod_TextDocumentPrepareRename -> IsClientReq
+  SMethod_TextDocumentFoldingRange -> IsClientReq
+  SMethod_TextDocumentSelectionRange -> IsClientReq
+  SMethod_TextDocumentPrepareCallHierarchy -> IsClientReq
+  SMethod_TextDocumentLinkedEditingRange -> IsClientReq
+  SMethod_CallHierarchyIncomingCalls -> IsClientReq
+  SMethod_CallHierarchyOutgoingCalls -> IsClientReq
+  SMethod_TextDocumentSemanticTokensFull -> IsClientReq
   SMethod_TextDocumentSemanticTokensFullDelta -> IsClientReq
-  SMethod_TextDocumentSemanticTokensRange     -> IsClientReq
-  SMethod_WorkspaceWillCreateFiles            -> IsClientReq
-  SMethod_WorkspaceWillDeleteFiles            -> IsClientReq
-  SMethod_WorkspaceWillRenameFiles            -> IsClientReq
-  SMethod_WorkspaceDidCreateFiles             -> IsClientNot
-  SMethod_WorkspaceDidDeleteFiles             -> IsClientNot
-  SMethod_WorkspaceDidRenameFiles             -> IsClientNot
-  SMethod_TextDocumentMoniker                 -> IsClientReq
-  SMethod_TextDocumentPrepareTypeHierarchy    -> IsClientReq
-  SMethod_TypeHierarchySubtypes               -> IsClientReq
-  SMethod_TypeHierarchySupertypes             -> IsClientReq
-  SMethod_TextDocumentInlineValue             -> IsClientReq
-  SMethod_TextDocumentInlayHint               -> IsClientReq
-  SMethod_TextDocumentDiagnostic              -> IsClientReq
-  SMethod_WorkspaceDiagnostic                 -> IsClientReq
-  SMethod_CodeLensResolve                     -> IsClientReq
-  SMethod_InlayHintResolve                    -> IsClientReq
-  SMethod_CodeActionResolve                   -> IsClientReq
-  SMethod_DocumentLinkResolve                 -> IsClientReq
-  SMethod_CompletionItemResolve               -> IsClientReq
-  SMethod_WorkspaceSymbolResolve              -> IsClientReq
-  SMethod_NotebookDocumentDidChange           -> IsClientNot
-  SMethod_NotebookDocumentDidClose            -> IsClientNot
-  SMethod_NotebookDocumentDidOpen             -> IsClientNot
-  SMethod_NotebookDocumentDidSave             -> IsClientNot
-  SMethod_SetTrace                            -> IsClientNot
-  SMethod_Progress                            -> IsClientNot
-  SMethod_CancelRequest                       -> IsClientNot
-  (SMethod_CustomMethod _)                    -> IsClientEither
+  SMethod_TextDocumentSemanticTokensRange -> IsClientReq
+  SMethod_WorkspaceWillCreateFiles -> IsClientReq
+  SMethod_WorkspaceWillDeleteFiles -> IsClientReq
+  SMethod_WorkspaceWillRenameFiles -> IsClientReq
+  SMethod_WorkspaceDidCreateFiles -> IsClientNot
+  SMethod_WorkspaceDidDeleteFiles -> IsClientNot
+  SMethod_WorkspaceDidRenameFiles -> IsClientNot
+  SMethod_TextDocumentMoniker -> IsClientReq
+  SMethod_TextDocumentPrepareTypeHierarchy -> IsClientReq
+  SMethod_TypeHierarchySubtypes -> IsClientReq
+  SMethod_TypeHierarchySupertypes -> IsClientReq
+  SMethod_TextDocumentInlineValue -> IsClientReq
+  SMethod_TextDocumentInlayHint -> IsClientReq
+  SMethod_TextDocumentDiagnostic -> IsClientReq
+  SMethod_WorkspaceDiagnostic -> IsClientReq
+  SMethod_CodeLensResolve -> IsClientReq
+  SMethod_InlayHintResolve -> IsClientReq
+  SMethod_CodeActionResolve -> IsClientReq
+  SMethod_DocumentLinkResolve -> IsClientReq
+  SMethod_CompletionItemResolve -> IsClientReq
+  SMethod_WorkspaceSymbolResolve -> IsClientReq
+  SMethod_NotebookDocumentDidChange -> IsClientNot
+  SMethod_NotebookDocumentDidClose -> IsClientNot
+  SMethod_NotebookDocumentDidOpen -> IsClientNot
+  SMethod_NotebookDocumentDidSave -> IsClientNot
+  SMethod_SetTrace -> IsClientNot
+  SMethod_Progress -> IsClientNot
+  SMethod_CancelRequest -> IsClientNot
+  (SMethod_CustomMethod _) -> IsClientEither
 
 {-# INLINE splitServerMethod #-}
 splitServerMethod :: SServerMethod m -> ServerNotOrReq m
 splitServerMethod = \case
-  SMethod_WindowShowMessage              -> IsServerNot
-  SMethod_WindowShowMessageRequest       -> IsServerReq
-  SMethod_WindowShowDocument             -> IsServerReq
-  SMethod_WindowLogMessage               -> IsServerNot
-  SMethod_WindowWorkDoneProgressCreate   -> IsServerReq
-  SMethod_Progress                       -> IsServerNot
-  SMethod_TelemetryEvent                 -> IsServerNot
-  SMethod_ClientRegisterCapability       -> IsServerReq
-  SMethod_ClientUnregisterCapability     -> IsServerReq
-  SMethod_WorkspaceWorkspaceFolders      -> IsServerReq
-  SMethod_WorkspaceConfiguration         -> IsServerReq
-  SMethod_WorkspaceApplyEdit             -> IsServerReq
+  SMethod_WindowShowMessage -> IsServerNot
+  SMethod_WindowShowMessageRequest -> IsServerReq
+  SMethod_WindowShowDocument -> IsServerReq
+  SMethod_WindowLogMessage -> IsServerNot
+  SMethod_WindowWorkDoneProgressCreate -> IsServerReq
+  SMethod_Progress -> IsServerNot
+  SMethod_TelemetryEvent -> IsServerNot
+  SMethod_ClientRegisterCapability -> IsServerReq
+  SMethod_ClientUnregisterCapability -> IsServerReq
+  SMethod_WorkspaceWorkspaceFolders -> IsServerReq
+  SMethod_WorkspaceConfiguration -> IsServerReq
+  SMethod_WorkspaceApplyEdit -> IsServerReq
   SMethod_TextDocumentPublishDiagnostics -> IsServerNot
-  SMethod_LogTrace                       -> IsServerNot
-  SMethod_CancelRequest                  -> IsServerNot
-  SMethod_WorkspaceCodeLensRefresh       -> IsServerReq
+  SMethod_LogTrace -> IsServerNot
+  SMethod_CancelRequest -> IsServerNot
+  SMethod_WorkspaceCodeLensRefresh -> IsServerReq
   SMethod_WorkspaceSemanticTokensRefresh -> IsServerReq
-  SMethod_WorkspaceInlineValueRefresh         -> IsServerReq
-  SMethod_WorkspaceInlayHintRefresh           -> IsServerReq
-  SMethod_WorkspaceDiagnosticRefresh          -> IsServerReq
-  (SMethod_CustomMethod _)               -> IsServerEither
+  SMethod_WorkspaceInlineValueRefresh -> IsServerReq
+  SMethod_WorkspaceInlayHintRefresh -> IsServerReq
+  SMethod_WorkspaceDiagnosticRefresh -> IsServerReq
+  (SMethod_CustomMethod _) -> IsServerEither
 
 -- | Given a witness that two custom methods are of the same type, produce a witness that the methods are the same
 data CustomEq m1 m2 where
-  CustomEq
-    :: (m1 ~ (Method_CustomMethod s :: Method f t1), m2 ~ (Method_CustomMethod s :: Method f t2))
-    => { runCustomEq :: (t1 ~ t2 => m1 :~~: m2) }
-    -> CustomEq m1 m2
+  CustomEq ::
+    (m1 ~ (Method_CustomMethod s :: Method f t1), m2 ~ (Method_CustomMethod s :: Method f t2)) =>
+    {runCustomEq :: (t1 ~ t2 => m1 :~~: m2)} ->
+    CustomEq m1 m2
 
-runEq :: (t1 ~ t2)
-      => (SMethod m1 -> SMethod m2 -> Maybe (Either (CustomEq m1 m2) (m1 :~~: m2)))
-      -> SMethod (m1 :: Method f t1)
-      -> SMethod (m2 :: Method f t2)
-      -> Maybe (m1 :~~: m2)
+runEq ::
+  (t1 ~ t2) =>
+  (SMethod m1 -> SMethod m2 -> Maybe (Either (CustomEq m1 m2) (m1 :~~: m2))) ->
+  SMethod (m1 :: Method f t1) ->
+  SMethod (m2 :: Method f t2) ->
+  Maybe (m1 :~~: m2)
 runEq f m1 m2 = do
   res <- f m1 m2
   pure $ case res of
@@ -327,35 +341,35 @@
 -- | Heterogeneous equality on singleton server methods
 mEqServer :: SServerMethod m1 -> SServerMethod m2 -> Maybe (Either (CustomEq m1 m2) (m1 :~~: m2))
 mEqServer m1 m2 = go (splitServerMethod m1) (splitServerMethod m2)
-  where
-    go IsServerNot IsServerNot = do
-      Refl <- geq m1 m2
-      pure $ Right HRefl
-    go IsServerReq IsServerReq = do
-      Refl <- geq m1 m2
-      pure $ Right HRefl
-    go IsServerEither IsServerEither
-      | SMethod_CustomMethod p1 <- m1
-      , SMethod_CustomMethod p2 <- m2
-      = case sameSymbol p1 p2 of
+ where
+  go IsServerNot IsServerNot = do
+    Refl <- geq m1 m2
+    pure $ Right HRefl
+  go IsServerReq IsServerReq = do
+    Refl <- geq m1 m2
+    pure $ Right HRefl
+  go IsServerEither IsServerEither
+    | SMethod_CustomMethod p1 <- m1
+    , SMethod_CustomMethod p2 <- m2 =
+        case sameSymbol p1 p2 of
           Just Refl -> Just $ Left $ CustomEq HRefl
-          _         -> Nothing
-    go _ _ = Nothing
+          _ -> Nothing
+  go _ _ = Nothing
 
 -- | Heterogeneous equality on singleton client methods
 mEqClient :: SClientMethod m1 -> SClientMethod m2 -> Maybe (Either (CustomEq m1 m2) (m1 :~~: m2))
 mEqClient m1 m2 = go (splitClientMethod m1) (splitClientMethod m2)
-  where
-    go IsClientNot IsClientNot = do
-      Refl <- geq m1 m2
-      pure $ Right HRefl
-    go IsClientReq IsClientReq = do
-      Refl <- geq m1 m2
-      pure $ Right HRefl
-    go IsClientEither IsClientEither
-      | SMethod_CustomMethod p1 <- m1
-      , SMethod_CustomMethod p2 <- m2
-      = case sameSymbol p1 p2 of
+ where
+  go IsClientNot IsClientNot = do
+    Refl <- geq m1 m2
+    pure $ Right HRefl
+  go IsClientReq IsClientReq = do
+    Refl <- geq m1 m2
+    pure $ Right HRefl
+  go IsClientEither IsClientEither
+    | SMethod_CustomMethod p1 <- m1
+    , SMethod_CustomMethod p2 <- m2 =
+        case sameSymbol p1 p2 of
           Just Refl -> Just $ Left $ CustomEq HRefl
-          _         -> Nothing
-    go _ _ = Nothing
+          _ -> Nothing
+  go _ _ = Nothing
diff --git a/src/Language/LSP/Protocol/Message/Registration.hs b/src/Language/LSP/Protocol/Message/Registration.hs
--- a/src/Language/LSP/Protocol/Message/Registration.hs
+++ b/src/Language/LSP/Protocol/Message/Registration.hs
@@ -1,40 +1,35 @@
-{-# LANGUAGE DeriveAnyClass            #-}
-{-# LANGUAGE DeriveGeneric             #-}
-{-# LANGUAGE DuplicateRecordFields     #-}
-{-# LANGUAGE ExistentialQuantification #-}
-{-# LANGUAGE FlexibleContexts          #-}
-{-# LANGUAGE FlexibleInstances         #-}
-{-# LANGUAGE RankNTypes                #-}
-{-# LANGUAGE TemplateHaskell           #-}
-{-# LANGUAGE TypeInType                #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE DeriveAnyClass #-}
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE LambdaCase #-}
+{-# LANGUAGE TemplateHaskell #-}
 
 module Language.LSP.Protocol.Message.Registration where
 
-import           Language.LSP.Protocol.Types
-import           Language.LSP.Protocol.Internal.Method
-import           Language.LSP.Protocol.Message.Meta
-import           Language.LSP.Protocol.Message.Method
-import           Language.LSP.Protocol.Utils.Misc
+import Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Message.Meta
+import Language.LSP.Protocol.Message.Method
+import Language.LSP.Protocol.Types
+import Language.LSP.Protocol.Utils.Misc
 
-import           Data.Aeson
-import           Data.Text                         (Text)
-import qualified Data.Text                         as T
-import           GHC.Generics
-import           Prettyprinter
+import Data.Aeson
+import Data.Text (Text)
+import Data.Text qualified as T
+import GHC.Generics
+import Prettyprinter
 
--- | Typed registration type, with correct options.
-data TRegistration (m :: Method ClientToServer t) =
-  TRegistration
-    { -- | The id used to register the request. The id can be used to deregister
-      -- the request again.
-      _id              :: Text
-      -- | The method / capability to register for.
-    , _method          :: SClientMethod m
-      -- | Options necessary for the registration.
-      -- Make this strict to aid the pattern matching exhaustiveness checker
-    , _registerOptions :: !(Maybe (RegistrationOptions m))
-    }
-  deriving stock Generic
+-- | Typed dynamic registration type, with correct options.
+data TRegistration (m :: Method ClientToServer t) = TRegistration
+  { _id :: Text
+  -- ^ The id used to register the request. The id can be used to deregister
+  -- the request again.
+  , _method :: SClientMethod m
+  -- ^ The method / capability to register for.
+  , _registerOptions :: !(Maybe (RegistrationOptions m))
+  -- ^ Options necessary for the registration.
+  -- Make this strict to aid the pattern matching exhaustiveness checker
+  }
+  deriving stock (Generic)
 
 deriving stock instance Eq (RegistrationOptions m) => Eq (TRegistration m)
 deriving stock instance Show (RegistrationOptions m) => Show (TRegistration m)
@@ -76,21 +71,21 @@
 toSomeRegistration :: Registration -> Maybe SomeRegistration
 toSomeRegistration r =
   let v = toJSON r
-  in case fromJSON v of
-    Success r' -> Just r'
-    _          -> Nothing
+   in case fromJSON v of
+        Success r' -> Just r'
+        _ -> Nothing
 
 -- ---------------------------------------------------------------------
 
--- | Typed unregistration type.
-data TUnregistration (m :: Method ClientToServer t) =
-  TUnregistration
-    { -- | The id used to unregister the request or notification. Usually an id
-      -- provided during the register request.
-      _id     :: Text
-      -- | The method / capability to unregister for.
-    , _method :: SMethod m
-    } deriving stock Generic
+-- | Typed dynamic unregistration type.
+data TUnregistration (m :: Method ClientToServer t) = TUnregistration
+  { _id :: Text
+  -- ^ The id used to unregister the request or notification. Usually an id
+  -- provided during the register request.
+  , _method :: SMethod m
+  -- ^ The method / capability to unregister for.
+  }
+  deriving stock (Generic)
 
 deriving stock instance Eq (TUnregistration m)
 deriving stock instance Show (TUnregistration m)
@@ -119,7 +114,6 @@
 toSomeUnregistration :: Unregistration -> Maybe SomeUnregistration
 toSomeUnregistration r =
   let v = toJSON r
-  in case fromJSON v of
-    Success r' -> Just r'
-    _          -> Nothing
-
+   in case fromJSON v of
+        Success r' -> Just r'
+        _ -> Nothing
diff --git a/src/Language/LSP/Protocol/Message/Types.hs b/src/Language/LSP/Protocol/Message/Types.hs
--- a/src/Language/LSP/Protocol/Message/Types.hs
+++ b/src/Language/LSP/Protocol/Message/Types.hs
@@ -1,64 +1,61 @@
-{-# LANGUAGE ConstraintKinds  #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE RankNTypes       #-}
-{-# LANGUAGE TemplateHaskell  #-}
-{-# LANGUAGE TupleSections    #-}
-{-# LANGUAGE TypeInType       #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE TemplateHaskell #-}
 
 module Language.LSP.Protocol.Message.Types where
 
-import           Language.LSP.Protocol.Types.Common
-import           Language.LSP.Protocol.Internal.Method
-import           Language.LSP.Protocol.Types
-import           Language.LSP.Protocol.Message.LspId
-import           Language.LSP.Protocol.Message.Meta
-import           Language.LSP.Protocol.Message.Method ()
-import           Language.LSP.Protocol.Utils.Misc
+import Language.LSP.Protocol.Internal.Method
+import Language.LSP.Protocol.Message.LspId
+import Language.LSP.Protocol.Message.Meta
+import Language.LSP.Protocol.Message.Method ()
+import Language.LSP.Protocol.Types
+import Language.LSP.Protocol.Utils.Misc
 
-import           Data.Aeson                         hiding (Null)
-import qualified Data.Aeson                         as J
-import           Data.Aeson.TH
-import           Data.Kind
-import           Data.String                        (IsString (..))
-import           Data.Text                          (Text)
-import           GHC.Generics
-import           GHC.TypeLits                       (KnownSymbol)
-import           Prettyprinter
+import Data.Aeson hiding (Null)
+import Data.Aeson qualified as J
+import Data.Aeson.TH
+import Data.Kind
+import Data.String (IsString (..))
+import Data.Text (Text)
+import GHC.Generics
+import GHC.TypeLits (KnownSymbol)
+import Prettyprinter
 
 -- 'RequestMessage', 'ResponseMessage', 'ResponseError', and 'NotificationMessage'
 -- aren't present in the metamodel, although they should be.
 -- https://github.com/microsoft/vscode-languageserver-node/issues/1079
 
 -- | Notification message type as defined in the spec.
-data NotificationMessage =
-  NotificationMessage
-    { _jsonrpc :: Text
-    , _method  :: Text
-    , _params  :: Maybe Value
-    } deriving stock (Show, Eq, Generic)
+data NotificationMessage = NotificationMessage
+  { _jsonrpc :: Text
+  , _method :: Text
+  , _params :: Maybe Value
+  }
+  deriving stock (Show, Eq, Generic)
 
 deriveJSON lspOptions ''NotificationMessage
 deriving via ViaJSON NotificationMessage instance Pretty NotificationMessage
 
 -- This isn't present in the metamodel.
+
 -- | Request message type as defined in the spec.
 data RequestMessage = RequestMessage
-    { _jsonrpc :: Text
-    , _id      :: Int32 |? Text
-    , _method  :: Text
-    , _params  :: Maybe Value
-    } deriving stock (Show, Eq, Generic)
+  { _jsonrpc :: Text
+  , _id :: Int32 |? Text
+  , _method :: Text
+  , _params :: Maybe Value
+  }
+  deriving stock (Show, Eq, Generic)
 
 deriveJSON lspOptions ''RequestMessage
 deriving via ViaJSON RequestMessage instance Pretty RequestMessage
 
 -- | Response error type as defined in the spec.
-data ResponseError =
-  ResponseError
-    { _code    :: LSPErrorCodes |? ErrorCodes
-    , _message :: Text
-    , _xdata   :: Maybe Value
-    } deriving stock (Show, Eq, Generic)
+data ResponseError = ResponseError
+  { _code :: LSPErrorCodes |? ErrorCodes
+  , _message :: Text
+  , _xdata :: Maybe Value
+  }
+  deriving stock (Show, Eq, Generic)
 
 {- Note [ErrorCodes and LSPErrorCodes]
 
@@ -77,42 +74,45 @@
 -}
 deriveToJSON lspOptions ''ResponseError
 instance FromJSON ResponseError where
-    parseJSON = 
-      let errorCode = withObject "ResponseError" $ \v -> ResponseError
-                        <$> v .: "code"
-                        <*> v .: "message"
-                        <*> v .:? "data"
-      in fmap go . errorCode
-      where go :: ResponseError -> ResponseError
-            go x@(ResponseError (InL (LSPErrorCodes_Custom n)) _ _) = 
-              x{_code = InR (fromOpenEnumBaseType n)}
-            go x = x
+  parseJSON =
+    let errorCode = withObject "ResponseError" $ \v ->
+          ResponseError
+            <$> v .: "code"
+            <*> v .: "message"
+            <*> v .:!? "data"
+     in fmap go . errorCode
+   where
+    go :: ResponseError -> ResponseError
+    go x@(ResponseError (InL (LSPErrorCodes_Custom n)) _ _) =
+      x{_code = InR (fromOpenEnumBaseType n)}
+    go x = x
 
 deriving via ViaJSON ResponseError instance Pretty ResponseError
 
 -- | Response message type as defined in the spec.
-data ResponseMessage =
-  ResponseMessage
-    { _jsonrpc :: Text
-    , _id      :: Int32 |? Text |? Null
-    , _result  :: Maybe Value
-    , _error   :: Maybe ResponseError
-    } deriving stock (Show, Eq, Generic)
+data ResponseMessage = ResponseMessage
+  { _jsonrpc :: Text
+  , _id :: Int32 |? Text |? Null
+  , _result :: Maybe Value
+  , _error :: Maybe ResponseError
+  }
+  deriving stock (Show, Eq, Generic)
 
 deriveJSON lspOptions ''ResponseMessage
 
 deriving via ViaJSON ResponseMessage instance Pretty ResponseMessage
 
 -----
+
 -- | Typed notification message, containing the correct parameter payload.
-data TNotificationMessage (m :: Method f Notification) =
-  TNotificationMessage
-    { _jsonrpc :: Text
-    , _method  :: SMethod m
-    , _params  :: MessageParams m
-    } deriving stock Generic
+data TNotificationMessage (m :: Method f Notification) = TNotificationMessage
+  { _jsonrpc :: Text
+  , _method :: SMethod m
+  , _params :: MessageParams m
+  }
+  deriving stock (Generic)
 
-deriving stock instance Eq   (MessageParams m) => Eq (TNotificationMessage m)
+deriving stock instance Eq (MessageParams m) => Eq (TNotificationMessage m)
 deriving stock instance Show (MessageParams m) => Show (TNotificationMessage m)
 
 {- Note [Missing 'params']
@@ -129,54 +129,57 @@
   -- See Note [Missing 'params']
   parseJSON = genericParseJSON lspOptions . addNullField "params"
 instance (ToJSON (MessageParams m)) => ToJSON (TNotificationMessage m) where
-  toJSON     = genericToJSON lspOptions
+  toJSON = genericToJSON lspOptions
   toEncoding = genericToEncoding lspOptions
 
 deriving via ViaJSON (TNotificationMessage m) instance (ToJSON (MessageParams m)) => Pretty (TNotificationMessage m)
 
 -- | Typed request message, containing the correct parameter payload.
 data TRequestMessage (m :: Method f Request) = TRequestMessage
-    { _jsonrpc :: Text
-    , _id      :: LspId m
-    , _method  :: SMethod m
-    , _params  :: MessageParams m
-    } deriving stock Generic
+  { _jsonrpc :: Text
+  , _id :: LspId m
+  , _method :: SMethod m
+  , _params :: MessageParams m
+  }
+  deriving stock (Generic)
 
-deriving stock instance Eq   (MessageParams m) => Eq (TRequestMessage m)
+deriving stock instance Eq (MessageParams m) => Eq (TRequestMessage m)
 deriving stock instance Show (MessageParams m) => Show (TRequestMessage m)
 
 instance (FromJSON (MessageParams m), FromJSON (SMethod m)) => FromJSON (TRequestMessage m) where
   -- See Note [Missing 'params']
   parseJSON = genericParseJSON lspOptions . addNullField "params"
 instance (ToJSON (MessageParams m)) => ToJSON (TRequestMessage m) where
-  toJSON     = genericToJSON lspOptions
+  toJSON = genericToJSON lspOptions
   toEncoding = genericToEncoding lspOptions
 
 deriving via ViaJSON (TRequestMessage m) instance (ToJSON (MessageParams m)) => Pretty (TRequestMessage m)
 
-data TResponseError (m :: Method f Request) =
-  TResponseError
-    { _code    :: LSPErrorCodes |? ErrorCodes
-    , _message :: Text
-    , _xdata   :: Maybe (ErrorData m)
-    } deriving stock Generic
+data TResponseError (m :: Method f Request) = TResponseError
+  { _code :: LSPErrorCodes |? ErrorCodes
+  , _message :: Text
+  , _xdata :: Maybe (ErrorData m)
+  }
+  deriving stock (Generic)
 
-deriving stock instance Eq   (ErrorData m) => Eq (TResponseError m)
+deriving stock instance Eq (ErrorData m) => Eq (TResponseError m)
 deriving stock instance Show (ErrorData m) => Show (TResponseError m)
 
 instance (FromJSON (ErrorData m)) => FromJSON (TResponseError m) where
-  parseJSON = 
-    let errorCode = withObject "ResponseError" $ \v -> TResponseError
-                      <$> v .: "code"
-                      <*> v .: "message"
-                      <*> v .:? "data"
-    in fmap go . errorCode
-    where go :: TResponseError m -> TResponseError m
-          go x@(TResponseError (InL (LSPErrorCodes_Custom n)) _ _) = 
-            x{_code = InR (fromOpenEnumBaseType n)}
-          go x = x
+  parseJSON =
+    let errorCode = withObject "ResponseError" $ \v ->
+          TResponseError
+            <$> v .: "code"
+            <*> v .: "message"
+            <*> v .:!? "data"
+     in fmap go . errorCode
+   where
+    go :: TResponseError m -> TResponseError m
+    go x@(TResponseError (InL (LSPErrorCodes_Custom n)) _ _) =
+      x{_code = InR (fromOpenEnumBaseType n)}
+    go x = x
 instance (ToJSON (ErrorData m)) => ToJSON (TResponseError m) where
-  toJSON     = genericToJSON lspOptions
+  toJSON = genericToJSON lspOptions
   toEncoding = genericToEncoding lspOptions
 
 deriving via ViaJSON (TResponseError m) instance (ToJSON (ErrorData m)) => Pretty (TResponseError m)
@@ -186,35 +189,33 @@
 toUntypedResponseError (TResponseError c m d) = ResponseError c m (fmap toJSON d)
 
 -- | A typed response message with a correct result payload.
-data TResponseMessage (m :: Method f Request) =
-  TResponseMessage
-    { _jsonrpc :: Text
-    , _id      :: Maybe (LspId m)
-    -- TODO: use `TResponseError m` for the error type, this will require quite a lot of adaptation downstream
-    , _result  :: Either ResponseError (MessageResult m)
-    } deriving stock Generic
+data TResponseMessage (m :: Method f Request) = TResponseMessage
+  { _jsonrpc :: Text
+  , _id :: Maybe (LspId m)
+  , _result :: Either (TResponseError m) (MessageResult m)
+  }
+  deriving stock (Generic)
 
-deriving stock instance (Eq   (MessageResult m), Eq (ErrorData m)) => Eq (TResponseMessage m)
+deriving stock instance (Eq (MessageResult m), Eq (ErrorData m)) => Eq (TResponseMessage m)
 deriving stock instance (Show (MessageResult m), Show (ErrorData m)) => Show (TResponseMessage m)
 
 instance (ToJSON (MessageResult m), ToJSON (ErrorData m)) => ToJSON (TResponseMessage m) where
-  toJSON TResponseMessage { _jsonrpc = jsonrpc, _id = lspid, _result = result }
-    = object
+  toJSON TResponseMessage{_jsonrpc = jsonrpc, _id = lspid, _result = result} =
+    object
       [ "jsonrpc" .= jsonrpc
       , "id" .= lspid
       , case result of
-        Left  err -> "error" .= err
-        Right a   -> "result" .= a
+          Left err -> "error" .= err
+          Right a -> "result" .= a
       ]
 
 instance (FromJSON (MessageResult a), FromJSON (ErrorData a)) => FromJSON (TResponseMessage a) where
   parseJSON = withObject "Response" $ \o -> do
     _jsonrpc <- o .: "jsonrpc"
-    _id      <- o .: "id"
-    -- It is important to use .:! so that "result = null" (without error) gets decoded as Just Null
-    _result  <- o .:! "result"
-    _error   <- o .:? "error"
-    result   <- case (_error, _result) of
+    _id <- o .: "id"
+    _result <- o .:!? "result"
+    _error <- o .:!? "error"
+    result <- case (_error, _result) of
       (Just err, Nothing) -> pure $ Left err
       (Nothing, Just res) -> pure $ Right res
       (Just _err, Just _res) -> fail $ "both error and result cannot be present: " ++ show o
@@ -223,8 +224,9 @@
 
 deriving via ViaJSON (TResponseMessage m) instance (ToJSON (MessageResult m), ToJSON (ErrorData m)) => Pretty (TResponseMessage m)
 
--- | A typed custom message. A special data type is needed to distinguish between
--- notifications and requests, since a CustomMethod can be both!
+{- | A typed custom message. A special data type is needed to distinguish between
+ notifications and requests, since a CustomMethod can be both!
+-}
 data TCustomMessage s f t where
   ReqMess :: TRequestMessage (Method_CustomMethod s :: Method f Request) -> TCustomMessage s f Request
   NotMess :: TNotificationMessage (Method_CustomMethod s :: Method f Notification) -> TCustomMessage s f Notification
@@ -246,9 +248,10 @@
 -- Helper Type Families
 -- ---------------------------------------------------------------------
 
--- | Map a method to the Request/Notification type with the correct
--- payload.
-type TMessage :: forall f t . Method f t -> Type
+{- | Map a method to the Request/Notification type with the correct
+ payload.
+-}
+type TMessage :: forall f t. Method f t -> Type
 type family TMessage m where
   TMessage (Method_CustomMethod s :: Method f t) = TCustomMessage s f t
   TMessage (m :: Method f Request) = TRequestMessage m
@@ -258,10 +261,10 @@
 type TClientMessage (m :: Method ClientToServer t) = TMessage m
 type TServerMessage (m :: Method ServerToClient t) = TMessage m
 
--- | Replace a missing field in an object with a null field, to simplify parsing
--- This is a hack to allow other types than Maybe to work like Maybe in allowing the field to be missing.
--- See also this issue: https://github.com/haskell/aeson/issues/646
+{- | Replace a missing field in an object with a null field, to simplify parsing
+ This is a hack to allow other types than Maybe to work like Maybe in allowing the field to be missing.
+ See also this issue: https://github.com/haskell/aeson/issues/646
+-}
 addNullField :: String -> Value -> Value
 addNullField s (Object o) = Object $ o <> fromString s .= J.Null
-addNullField _ v          = v
-
+addNullField _ v = v
diff --git a/src/Language/LSP/Protocol/Meta.hs b/src/Language/LSP/Protocol/Meta.hs
new file mode 100644
--- /dev/null
+++ b/src/Language/LSP/Protocol/Meta.hs
@@ -0,0 +1,3 @@
+module Language.LSP.Protocol.Meta (module Export) where
+
+import Language.LSP.Protocol.Internal.Meta as Export
diff --git a/src/Language/LSP/Protocol/Types.hs b/src/Language/LSP/Protocol/Types.hs
--- a/src/Language/LSP/Protocol/Types.hs
+++ b/src/Language/LSP/Protocol/Types.hs
@@ -1,44 +1,57 @@
 -- The OSPath import sometimes looks unused
 {-# OPTIONS_GHC -Wno-unused-imports #-}
+
 module Language.LSP.Protocol.Types (
   -- * Basic types and functions
-  module Common
+  module Common,
+
   -- ** URIs
-  , module Uri
+  module Uri,
+
   -- ** Locations
-  , module Locations
+  module Locations,
+
   -- ** LSP enumerations
-  , module LspEnum
+  module LspEnum,
+
   -- ** Singleton types
-  , module Singletons
+  module Singletons,
+
   -- * Helpers for working with LSP types
+
   -- ** Edits
-  , module Edits
+  module Edits,
+
   -- ** Markup
-  , module Markup
+  module Markup,
+
   -- ** Code actions
-  , module CodeAction
+  module CodeAction,
+
   -- ** Progress
-  , module Progress
+  module Progress,
+
   -- ** Semantic tokens
-  , module SemanticTokens
+  module SemanticTokens,
+
   -- ** WatchKinds
-  , module WatchKinds
+  module WatchKinds,
+
   -- * Main LSP types and functions
-  , module Generated
-  ) where
+  module Generated,
+) where
 
 import Language.LSP.Protocol.Internal.Types as Generated
 import Language.LSP.Protocol.Types.CodeAction as CodeAction
 import Language.LSP.Protocol.Types.Common as Common
+import Language.LSP.Protocol.Types.Edit as Edits
 import Language.LSP.Protocol.Types.Location as Locations
 import Language.LSP.Protocol.Types.LspEnum as LspEnum
 import Language.LSP.Protocol.Types.MarkupContent as Markup
+import Language.LSP.Protocol.Types.Orphans ()
 import Language.LSP.Protocol.Types.Progress as Progress
 import Language.LSP.Protocol.Types.SemanticTokens as SemanticTokens
 import Language.LSP.Protocol.Types.Singletons as Singletons
 import Language.LSP.Protocol.Types.Uri as Uri
 import Language.LSP.Protocol.Types.Uri.OsPath as Uri
-import Language.LSP.Protocol.Types.Edit as Edits
-import Language.LSP.Protocol.Types.Orphans ()
 import Language.LSP.Protocol.Types.WatchKinds as WatchKinds
diff --git a/src/Language/LSP/Protocol/Types/CodeAction.hs b/src/Language/LSP/Protocol/Types/CodeAction.hs
--- a/src/Language/LSP/Protocol/Types/CodeAction.hs
+++ b/src/Language/LSP/Protocol/Types/CodeAction.hs
@@ -1,8 +1,8 @@
 module Language.LSP.Protocol.Types.CodeAction where
 
-import           Language.LSP.Protocol.Types.LspEnum
-import           Language.LSP.Protocol.Internal.Types
-import qualified Data.Text as T
+import Data.Text qualified as T
+import Language.LSP.Protocol.Internal.Types
+import Language.LSP.Protocol.Types.LspEnum
 
 -- | Does the first 'CodeActionKind' subsume the other one, hierarchically. Reflexive.
 codeActionKindSubsumes :: CodeActionKind -> CodeActionKind -> Bool
diff --git a/src/Language/LSP/Protocol/Types/Common.hs b/src/Language/LSP/Protocol/Types/Common.hs
--- a/src/Language/LSP/Protocol/Types/Common.hs
+++ b/src/Language/LSP/Protocol/Types/Common.hs
@@ -1,52 +1,48 @@
-{-# LANGUAGE CPP                  #-}
-{-# LANGUAGE DataKinds                  #-}
-{-# LANGUAGE DeriveAnyClass             #-}
-{-# LANGUAGE DeriveGeneric              #-}
-{-# LANGUAGE DeriveTraversable          #-}
-{-# LANGUAGE DerivingStrategies         #-}
-{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-{-# LANGUAGE LambdaCase                 #-}
-{-# LANGUAGE TypeOperators              #-}
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE DeriveAnyClass #-}
+{-# LANGUAGE DerivingStrategies #-}
+{-# LANGUAGE LambdaCase #-}
 
 -- | Common types that aren't in the specification
 module Language.LSP.Protocol.Types.Common (
-    type (|?) (..)
-  , toEither
-  , _L
-  , _R
-  , Int32
-  , UInt
-  , Null (..)
-  , absorbNull
-  , nullToMaybe
-  , maybeToNull
-  , (.=?)
+  type (|?) (..),
+  toEither,
+  _L,
+  _R,
+  Int32,
+  UInt,
+  Null (..),
+  absorbNull,
+  nullToMaybe,
+  maybeToNull,
+  (.=?),
+  (.:!?),
 ) where
 
-import           Control.DeepSeq
-import           Control.Lens
-import           Data.Aeson          hiding (Null)
-import qualified Data.Aeson          as J
-#if MIN_VERSION_aeson(2,0,0)
-import qualified Data.Aeson.KeyMap   as KM
-#else
-import qualified Data.HashMap.Strict   as KM
-#endif
-import           Data.Hashable
-import           Data.Set            as Set
-import           Data.String         (fromString)
-import           Data.Int            (Int32)
-import           Data.Mod.Word
-import           Language.LSP.Protocol.Utils.Misc
-import           GHC.Generics        hiding (UInt)
-import           GHC.TypeNats        hiding (Mod)
-import           Text.Read           (Read (readPrec))
-import           Prettyprinter
+import Control.Applicative
+import Control.DeepSeq
+import Control.Lens
+import Data.Aeson hiding (Null)
+import Data.Aeson qualified as J
+import Data.Aeson.KeyMap qualified as KM
+import Data.Aeson.Types qualified as J
+import Data.Hashable
+import Data.Int (Int32)
+import Data.Mod.Word
+import Data.Set as Set
+import Data.String (fromString)
+import GHC.Generics hiding (UInt)
+import GHC.TypeNats hiding (Mod)
+import Language.LSP.Protocol.Utils.Misc
+import Prettyprinter
+import Text.Read (Read (readPrec))
 
--- | The "uinteger" type in the LSP spec.
---
--- Unusually, this is a **31**-bit unsigned integer, not a 32-bit one.
-newtype UInt = UInt (Mod (2^31))
+{- | The "uinteger" type in the LSP spec.
+
+ Unusually, this is a **31**-bit unsigned integer, not a 32-bit one.
+-}
+newtype UInt = UInt (Mod (2 ^ 31))
   deriving newtype (Num, Bounded, Enum, Eq, Ord)
   deriving stock (Generic)
   deriving anyclass (NFData)
@@ -75,17 +71,20 @@
 instance FromJSON UInt where
   parseJSON v = fromInteger <$> parseJSON v
 
--- | An alternative type (isomorphic to 'Either'), but which
--- is encoded into JSON without a tag for the alternative.
---
--- This corresponds to @a | b@ types in the LSP specification.
-data a |? b = InL a
-            | InR b
+{- | An alternative type (isomorphic to 'Either'), but which
+ is encoded into JSON without a tag for the alternative.
+
+ This corresponds to @a | b@ types in the LSP specification.
+-}
+data a |? b
+  = InL a
+  | InR b
   deriving stock (Read, Show, Eq, Ord, Generic)
   deriving anyclass (NFData, Hashable)
-  deriving Pretty via (ViaJSON (a |? b))
-infixr |?
+  deriving (Pretty) via (ViaJSON (a |? b))
 
+infixr 9 |?
+
 -- | Prism for the left-hand side of an '(|?)'.
 _L :: Prism' (a |? b) a
 _L = prism' InL $ \case
@@ -126,32 +125,35 @@
       (Success a, Success b) -> case (toJSON a, toJSON b) of
         -- Both sides encode to the same thing, just pick one arbitrarily
         (l, r) | l == r -> pure $ InL a
-        (Object oa, Object ob) -> 
+        (Object oa, Object ob) ->
           let ka = Set.fromList $ KM.keys oa
               kb = Set.fromList $ KM.keys ob
-          in if kb `Set.isSubsetOf` ka
-          then pure $ InL a
-          else if ka `Set.isSubsetOf` kb
-          then pure $ InR b
-          else fail $ "Could not decide which type of value to produce, left encodes to an object with keys: " ++ show ka ++ "; right has keys " ++ show kb
+           in if kb `Set.isSubsetOf` ka
+                then pure $ InL a
+                else
+                  if ka `Set.isSubsetOf` kb
+                    then pure $ InR b
+                    else fail $ "Could not decide which type of value to produce, left encodes to an object with keys: " ++ show ka ++ "; right has keys " ++ show kb
         (l, r) -> fail $ "Could not decide which type of value to produce, left encodes to: " ++ show l ++ "; right encodes to: " ++ show r
 
 -- We could use 'Proxy' for this, as aeson also serializes it to/from null,
 -- but this is more explicit.
--- | A type for that is precisely null and nothing else.
---
--- This is useful since the LSP specification often includes types like @a | null@
--- as distinct from an optional value of type @a@.
+
+{- | A type for that is precisely null and nothing else.
+
+ This is useful since the LSP specification often includes types like @a | null@
+ as distinct from an optional value of type @a@.
+-}
 data Null = Null
   deriving stock (Eq, Ord, Show, Generic)
   deriving anyclass (NFData, Hashable)
-  deriving Pretty via (ViaJSON Null)
+  deriving (Pretty) via (ViaJSON Null)
 
 instance ToJSON Null where
   toJSON Null = J.Null
 instance FromJSON Null where
   parseJSON J.Null = pure Null
-  parseJSON _      = fail "expected 'null'"
+  parseJSON _ = fail "expected 'null'"
 
 absorbNull :: Monoid a => a |? Null -> a
 absorbNull (InL a) = a
@@ -163,7 +165,7 @@
 
 maybeToNull :: Maybe a -> a |? Null
 maybeToNull (Just x) = InL x
-maybeToNull Nothing  = InR Null
+maybeToNull Nothing = InR Null
 
 -- This is equivalent to the instance for 'Maybe s'
 instance Semigroup s => Semigroup (s |? Null) where
@@ -172,10 +174,42 @@
   InR _ <> InL x = InL x
   InR _ <> InR y = InR y
 
-  -- We use String so we can use fromString on it to get a key that works
-  -- in both aeson-1 and aeson-2
+-- We use String so we can use fromString on it to get a key that works
+-- in both aeson-1 and aeson-2
+
 -- | Include a value in an JSON object optionally, omitting it if it is 'Nothing'.
+#if MIN_VERSION_aeson(2,2,0)
+(.=?) :: (J.KeyValue e kv, J.ToJSON v) => String -> Maybe v -> [kv]
+#else
 (.=?) :: (J.KeyValue kv, J.ToJSON v) => String -> Maybe v -> [kv]
+#endif
 k .=? v = case v of
   Just v' -> [fromString k J..= v']
   Nothing -> mempty
+
+{- |
+Parse a value optionally. This behaves similarly to 'J..:!' and
+'J..:?', but differs in how it handles 'Null':
+
+    * If 'Null' can be converted to the desired type...
+        * 'J.:?': the result is success with 'Nothing'
+        * 'J.:!': the result is success with 'Just <value>'
+        * '.:!?': the result is success with 'Just <value>'
+    * If 'Null' cannot be converted to the desired type...
+        * 'J.:?': the result is success with 'Nothing'
+        * 'J.:!': the result is failure
+        * '.:!?': the result is success with 'Nothing'
+
+That is, we allow 'Null' to mean either 'Nothing' or 'Just <value>',
+with the latter taking priority.
+-}
+(.:!?) :: (J.FromJSON v) => Object -> Key -> J.Parser (Maybe v)
+o .:!? k =
+  -- If 'Null' can be converted to the desired type this succeeds
+  -- with Just the converted value
+  o J..:! k
+    -- otherwise...
+    <|>
+    -- If 'Null' cannot be converted to the desired type this succeeds
+    -- with Nothing
+    o J..:? k
diff --git a/src/Language/LSP/Protocol/Types/Edit.hs b/src/Language/LSP/Protocol/Types/Edit.hs
--- a/src/Language/LSP/Protocol/Types/Edit.hs
+++ b/src/Language/LSP/Protocol/Types/Edit.hs
@@ -1,58 +1,59 @@
 {-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE OverloadedStrings     #-}
-{-# LANGUAGE TypeOperators         #-}
+{-# LANGUAGE OverloadedStrings #-}
 
 module Language.LSP.Protocol.Types.Edit where
 
-import           Data.Text                         (Text)
-import qualified Data.Text                         as T
+import Data.Text (Text)
+import Data.Text qualified as T
 
-import           Control.Lens                      hiding (index)
-import           Language.LSP.Protocol.Types.Common
-import           Language.LSP.Protocol.Internal.Types
+import Control.Lens hiding (index)
+import Language.LSP.Protocol.Internal.Types
+import Language.LSP.Protocol.Types.Common
 
 -- | Convenience alias for the type in the 'WorkspaceEdit._documentChanges' field.
 type DocumentChange = TextDocumentEdit |? CreateFile |? RenameFile |? DeleteFile
 
 -- TODO: get rid of this in favour of the more correct things in VFS
--- | Applies a 'TextEdit' to some 'Text'.
---
--- >>> applyTextEdit (TextEdit (Range (Position 0 1) (Position 0 2)) "i") "foo"
--- "fio"
+
+{- | Applies a 'TextEdit' to some 'Text'.
+
+ >>> applyTextEdit (TextEdit (Range (Position 0 1) (Position 0 2)) "i") "foo"
+ "fio"
+-}
 applyTextEdit :: TextEdit -> Text -> Text
 applyTextEdit (TextEdit (Range sp ep) newText) oldText =
   let (_, afterEnd) = splitAtPos ep oldText
       (beforeStart, _) = splitAtPos sp oldText
-    in mconcat [beforeStart, newText, afterEnd]
-  where
-    splitAtPos :: Position -> Text -> (Text, Text)
-    splitAtPos (Position sl sc) t =
-      -- If we are looking for a line beyond the end of the text, this will give us an index
-      -- past the end. Fortunately, T.splitAt is fine with this, and just gives us the whole
-      -- string and an empty string, which is what we want.
-      let index = sc + startLineIndex sl t
-        in T.splitAt (fromIntegral index) t
+   in mconcat [beforeStart, newText, afterEnd]
+ where
+  splitAtPos :: Position -> Text -> (Text, Text)
+  splitAtPos (Position sl sc) t =
+    -- If we are looking for a line beyond the end of the text, this will give us an index
+    -- past the end. Fortunately, T.splitAt is fine with this, and just gives us the whole
+    -- string and an empty string, which is what we want.
+    let index = sc + startLineIndex sl t
+     in T.splitAt (fromIntegral index) t
 
-    -- The index of the first character of line 'line'
-    startLineIndex :: UInt -> Text -> UInt
-    startLineIndex 0 _ = 0
-    startLineIndex line t' =
-      case T.findIndex (== '\n') t' of
-        Just i -> fromIntegral i + 1 + startLineIndex (line - 1) (T.drop (i + 1) t')
-        -- i != 0, and there are no newlines, so this is a line beyond the end of the text.
-        -- In this case give the "start index" as the end, so we will at least append the text.
-        Nothing -> fromIntegral $ T.length t'
+  -- The index of the first character of line 'line'
+  startLineIndex :: UInt -> Text -> UInt
+  startLineIndex 0 _ = 0
+  startLineIndex line t' =
+    case T.findIndex (== '\n') t' of
+      Just i -> fromIntegral i + 1 + startLineIndex (line - 1) (T.drop (i + 1) t')
+      -- i != 0, and there are no newlines, so this is a line beyond the end of the text.
+      -- In this case give the "start index" as the end, so we will at least append the text.
+      Nothing -> fromIntegral $ T.length t'
 
 -- | 'editTextEdit' @outer@ @inner@ applies @inner@ to the text inside @outer@.
 editTextEdit :: TextEdit -> TextEdit -> TextEdit
 editTextEdit (TextEdit origRange origText) innerEdit =
   let newText = applyTextEdit innerEdit origText
-    in TextEdit origRange newText
+   in TextEdit origRange newText
 
 -- | Conversion between 'OptionalVersionedTextDocumentIdentifier' and 'VersionedTextDocumentIdentifier'.
 _versionedTextDocumentIdentifier :: Prism' OptionalVersionedTextDocumentIdentifier VersionedTextDocumentIdentifier
 _versionedTextDocumentIdentifier = prism down up
-  where
-    down (VersionedTextDocumentIdentifier uri v) = OptionalVersionedTextDocumentIdentifier uri (InL v)
-    up (OptionalVersionedTextDocumentIdentifier uri (InL v)) = Right $ VersionedTextDocumentIdentifier uri v
-    up i@(OptionalVersionedTextDocumentIdentifier _ (InR _)) = Left i
+ where
+  down (VersionedTextDocumentIdentifier uri v) = OptionalVersionedTextDocumentIdentifier uri (InL v)
+  up (OptionalVersionedTextDocumentIdentifier uri (InL v)) = Right $ VersionedTextDocumentIdentifier uri v
+  up i@(OptionalVersionedTextDocumentIdentifier _ (InR _)) = Left i
diff --git a/src/Language/LSP/Protocol/Types/Lens.hs b/src/Language/LSP/Protocol/Types/Lens.hs
--- a/src/Language/LSP/Protocol/Types/Lens.hs
+++ b/src/Language/LSP/Protocol/Types/Lens.hs
@@ -1,11 +1,10 @@
-{-#LANGUAGE TemplateHaskell #-}
+{-# LANGUAGE TemplateHaskell #-}
 {-# OPTIONS_GHC -Wno-orphans #-}
 
 module Language.LSP.Protocol.Types.Lens where
 
-import Language.LSP.Protocol.Internal.Lens
+import Language.LSP.Protocol.Internal.Meta
 import Language.LSP.Protocol.Types.SemanticTokens
-import           Control.Lens.TH
+import Language.LSP.Protocol.Utils.Misc
 
-makeFieldsNoPrefix ''SemanticTokenAbsolute
-makeFieldsNoPrefix ''SemanticTokenRelative
+$(genLenses (structNames ++ [''SemanticTokenAbsolute, ''SemanticTokenRelative]))
diff --git a/src/Language/LSP/Protocol/Types/Location.hs b/src/Language/LSP/Protocol/Types/Location.hs
--- a/src/Language/LSP/Protocol/Types/Location.hs
+++ b/src/Language/LSP/Protocol/Types/Location.hs
@@ -1,12 +1,13 @@
 -- | Additional and utilities for 'Position' and 'Range'.
 module Language.LSP.Protocol.Types.Location where
 
-import           Language.LSP.Protocol.Types.Common
-import           Language.LSP.Protocol.Internal.Types.Position
-import           Language.LSP.Protocol.Internal.Types.Range
+import Language.LSP.Protocol.Internal.Types.Position
+import Language.LSP.Protocol.Internal.Types.Range
+import Language.LSP.Protocol.Types.Common
 
--- | A helper function for creating ranges.
--- prop> mkRange l c l' c' = Range (Position l c) (Position l' c')
+{- | A helper function for creating ranges.
+ prop> mkRange l c l' c' = Range (Position l c) (Position l' c')
+-}
 mkRange :: UInt -> UInt -> UInt -> UInt -> Range
 mkRange l c l' c' = Range (Position l c) (Position l' c')
 
diff --git a/src/Language/LSP/Protocol/Types/LspEnum.hs b/src/Language/LSP/Protocol/Types/LspEnum.hs
--- a/src/Language/LSP/Protocol/Types/LspEnum.hs
+++ b/src/Language/LSP/Protocol/Types/LspEnum.hs
@@ -1,17 +1,19 @@
 {-# LANGUAGE DefaultSignatures #-}
-{-# LANGUAGE TypeFamilies      #-}
+{-# LANGUAGE TypeFamilies #-}
+
 module Language.LSP.Protocol.Types.LspEnum where
 
-import qualified Data.Aeson  as Aeson
-import           Data.Kind
-import qualified Data.Set    as Set
-import           Data.String (IsString (..))
-import qualified Data.Text   as Text
+import Data.Aeson qualified as Aeson
+import Data.Kind
+import Data.Set qualified as Set
+import Data.String (IsString (..))
+import Data.Text qualified as Text
 
--- | A class for types that represent a LSP enum type.
---
--- This class carries conversion functions to and from the 'base type' of the enum.
--- Not all base type values may have corresponding enum values.
+{- | A class for types that represent a LSP enum type.
+
+ This class carries conversion functions to and from the 'base type' of the enum.
+ Not all base type values may have corresponding enum values.
+-}
 class LspEnum a where
   -- | The base type of the enum.
   type EnumBaseType a :: Type
@@ -29,26 +31,28 @@
   default fromEnumBaseType :: (LspOpenEnum a) => EnumBaseType a -> Maybe a
   fromEnumBaseType = Just . fromOpenEnumBaseType
 
--- | A class for types that represent a LSP open enum type.
---
--- Open enum types allow any base type value to be used as a 'custom' enum value.
+{- | A class for types that represent a LSP open enum type.
+
+ Open enum types allow any base type value to be used as a 'custom' enum value.
+-}
 class LspEnum a => LspOpenEnum a where
   -- | Convert a base type to an enum value. All base type values can be converted this way.
   fromOpenEnumBaseType :: EnumBaseType a -> a
 
--- | Newtype for @deriving via@ to get standard JSON and 'IsString' instances in terms of the 'LspEnum'
--- class methods.
-newtype AsLspEnum a b = AsLspEnum a
+{- | Newtype for @deriving via@ to get standard JSON and 'IsString' instances in terms of the 'LspEnum'
+ class methods.
+-}
+newtype AsLspEnum a = AsLspEnum a
 
-instance (LspEnum a, EnumBaseType a ~ b, Aeson.ToJSON b) => Aeson.ToJSON (AsLspEnum a b) where
+instance (LspEnum a, EnumBaseType a ~ b, Aeson.ToJSON b) => Aeson.ToJSON (AsLspEnum a) where
   toJSON (AsLspEnum e) = Aeson.toJSON (toEnumBaseType e)
 
-instance (LspEnum a, EnumBaseType a ~ b, Aeson.FromJSON b, Show b) => Aeson.FromJSON (AsLspEnum a b) where
+instance (LspEnum a, EnumBaseType a ~ b, Aeson.FromJSON b, Show b) => Aeson.FromJSON (AsLspEnum a) where
   parseJSON val = do
     v <- Aeson.parseJSON val
     case fromEnumBaseType v of
-      Just x  -> pure $ AsLspEnum x
+      Just x -> pure $ AsLspEnum x
       Nothing -> fail $ "unrecognized enum value " ++ show v
 
-instance (LspOpenEnum a, EnumBaseType a ~ b, b ~ Text.Text) => IsString (AsLspEnum a b) where
+instance (LspOpenEnum a, EnumBaseType a ~ b, b ~ Text.Text) => IsString (AsLspEnum a) where
   fromString s = AsLspEnum $ fromOpenEnumBaseType (Text.pack s)
diff --git a/src/Language/LSP/Protocol/Types/MarkupContent.hs b/src/Language/LSP/Protocol/Types/MarkupContent.hs
--- a/src/Language/LSP/Protocol/Types/MarkupContent.hs
+++ b/src/Language/LSP/Protocol/Types/MarkupContent.hs
@@ -1,12 +1,13 @@
 {-# OPTIONS_GHC -Wno-orphans #-}
+
 -- | Additional instances and utilities for 'MarkupContent'.
 module Language.LSP.Protocol.Types.MarkupContent where
 
-import           Data.String
-import           Data.Text                                       (Text)
-import qualified Data.Text                                       as T
-import           Language.LSP.Protocol.Internal.Types.MarkupContent
-import           Language.LSP.Protocol.Internal.Types.MarkupKind
+import Data.String
+import Data.Text (Text)
+import Data.Text qualified as T
+import Language.LSP.Protocol.Internal.Types.MarkupContent
+import Language.LSP.Protocol.Internal.Types.MarkupKind
 
 -- | Create a 'MarkupContent' containing plain text.
 mkPlainText :: Text -> MarkupContent
@@ -18,15 +19,16 @@
 
 -- | Create a 'MarkupContent' containing a language-annotated code block only.
 mkMarkdownCodeBlock :: Text -> Text -> MarkupContent
-mkMarkdownCodeBlock lang quote
- = MarkupContent MarkupKind_Markdown ("\n```" <> lang <> "\n" <> quote <> "\n```\n")
+mkMarkdownCodeBlock lang quote =
+  MarkupContent MarkupKind_Markdown ("\n```" <> lang <> "\n" <> quote <> "\n```\n")
 
 -- | Markdown for a section separator in Markdown, being a horizontal line.
 sectionSeparator :: Text
 sectionSeparator = "* * *\n"
 
--- | Given some plaintext, convert it into some equivalent markdown text.
--- This is not *quite* the identity function.
+{- | Given some plaintext, convert it into some equivalent markdown text.
+ This is not *quite* the identity function.
+-}
 plainTextToMarkdown :: Text -> Text
 -- Line breaks in markdown paragraphs are ignored unless the line ends with two spaces.
 -- In order to respect the line breaks in the original plaintext, we stick two spaces on the end of every line.
@@ -34,9 +36,9 @@
 
 instance Semigroup MarkupContent where
   MarkupContent MarkupKind_PlainText s1 <> MarkupContent MarkupKind_PlainText s2 = MarkupContent MarkupKind_PlainText (s1 `mappend` s2)
-  MarkupContent MarkupKind_Markdown s1 <> MarkupContent MarkupKind_Markdown s2 = MarkupContent MarkupKind_Markdown  (s1 `mappend` s2)
-  MarkupContent MarkupKind_PlainText s1 <> MarkupContent MarkupKind_Markdown s2 = MarkupContent MarkupKind_Markdown  (plainTextToMarkdown s1 `mappend` s2)
-  MarkupContent MarkupKind_Markdown s1 <> MarkupContent MarkupKind_PlainText s2 = MarkupContent MarkupKind_Markdown  (s1 `mappend` plainTextToMarkdown s2)
+  MarkupContent MarkupKind_Markdown s1 <> MarkupContent MarkupKind_Markdown s2 = MarkupContent MarkupKind_Markdown (s1 `mappend` s2)
+  MarkupContent MarkupKind_PlainText s1 <> MarkupContent MarkupKind_Markdown s2 = MarkupContent MarkupKind_Markdown (plainTextToMarkdown s1 `mappend` s2)
+  MarkupContent MarkupKind_Markdown s1 <> MarkupContent MarkupKind_PlainText s2 = MarkupContent MarkupKind_Markdown (s1 `mappend` plainTextToMarkdown s2)
 
 instance Monoid MarkupContent where
   mempty = MarkupContent MarkupKind_PlainText ""
diff --git a/src/Language/LSP/Protocol/Types/Orphans.hs b/src/Language/LSP/Protocol/Types/Orphans.hs
--- a/src/Language/LSP/Protocol/Types/Orphans.hs
+++ b/src/Language/LSP/Protocol/Types/Orphans.hs
@@ -1,9 +1,10 @@
 {-# OPTIONS_GHC -Wno-orphans #-}
+
 module Language.LSP.Protocol.Types.Orphans where
 
-import           Language.LSP.Protocol.Internal.Types
-import           Data.Default
-import           Data.Semigroup                ()
+import Data.Default
+import Data.Semigroup ()
+import Language.LSP.Protocol.Internal.Types
 
 instance Semigroup WorkspaceEdit where
   (WorkspaceEdit a b c) <> (WorkspaceEdit a' b' c') = WorkspaceEdit (a <> a') (b <> b') (c <> c')
@@ -11,10 +12,10 @@
   mempty = WorkspaceEdit Nothing Nothing Nothing
 
 instance Default ClientCapabilities where
-    def = ClientCapabilities def def def def def Nothing
+  def = ClientCapabilities def def def def def Nothing
 instance Default WorkspaceClientCapabilities
 instance Default TextDocumentClientCapabilities
-instance Default NotebookDocumentClientCapabilities where
+instance Default NotebookDocumentClientCapabilities
 instance Default NotebookDocumentSyncClientCapabilities
 instance Default WindowClientCapabilities
 instance Default GeneralClientCapabilities
diff --git a/src/Language/LSP/Protocol/Types/Progress.hs b/src/Language/LSP/Protocol/Types/Progress.hs
--- a/src/Language/LSP/Protocol/Types/Progress.hs
+++ b/src/Language/LSP/Protocol/Types/Progress.hs
@@ -1,22 +1,22 @@
-module Language.LSP.Protocol.Types.Progress
-  ( _workDoneProgressBegin
-  , _workDoneProgressEnd
-  , _workDoneProgressReport
-  )
-  where
+module Language.LSP.Protocol.Types.Progress (
+  _workDoneProgressBegin,
+  _workDoneProgressEnd,
+  _workDoneProgressReport,
+)
+where
 
-import           Control.Lens
-import           Data.Aeson
+import Control.Lens
+import Data.Aeson
 
-import           Language.LSP.Protocol.Internal.Types.WorkDoneProgressBegin
-import           Language.LSP.Protocol.Internal.Types.WorkDoneProgressEnd
-import           Language.LSP.Protocol.Internal.Types.WorkDoneProgressReport
+import Language.LSP.Protocol.Internal.Types.WorkDoneProgressBegin
+import Language.LSP.Protocol.Internal.Types.WorkDoneProgressEnd
+import Language.LSP.Protocol.Internal.Types.WorkDoneProgressReport
 
 -- From lens-aeson
 _JSON :: (ToJSON a, FromJSON a) => Prism' Value a
 _JSON = prism toJSON $ \x -> case fromJSON x of
-    Success y -> Right y;
-    _         -> Left x
+  Success y -> Right y
+  _ -> Left x
 
 -- | Prism for extracting the 'WorkDoneProgressBegin' case from the unstructured 'value' field of 'ProgressParams'.
 _workDoneProgressBegin :: Prism' Value WorkDoneProgressBegin
diff --git a/src/Language/LSP/Protocol/Types/SemanticTokens.hs b/src/Language/LSP/Protocol/Types/SemanticTokens.hs
--- a/src/Language/LSP/Protocol/Types/SemanticTokens.hs
+++ b/src/Language/LSP/Protocol/Types/SemanticTokens.hs
@@ -1,162 +1,175 @@
 {-# LANGUAGE DuplicateRecordFields #-}
-{-# LANGUAGE OverloadedLists       #-}
-{-# LANGUAGE OverloadedStrings     #-}
-{-# LANGUAGE ScopedTypeVariables   #-}
+{-# LANGUAGE OverloadedLists #-}
+{-# LANGUAGE OverloadedStrings #-}
+
 module Language.LSP.Protocol.Types.SemanticTokens where
 
-import           Data.Text                                                (Text)
+import Data.Text (Text)
 
-import           Control.Monad.Except
+import Control.Monad.Except
 
-import           Language.LSP.Protocol.Types.Common
-import           Language.LSP.Protocol.Internal.Types.SemanticTokenModifiers
-import           Language.LSP.Protocol.Internal.Types.SemanticTokens
-import           Language.LSP.Protocol.Internal.Types.SemanticTokensDelta
-import           Language.LSP.Protocol.Internal.Types.SemanticTokensEdit
-import           Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
-import           Language.LSP.Protocol.Internal.Types.SemanticTokenTypes
-import           Language.LSP.Protocol.Types.LspEnum
+import Language.LSP.Protocol.Internal.Types.SemanticTokenModifiers
+import Language.LSP.Protocol.Internal.Types.SemanticTokenTypes
+import Language.LSP.Protocol.Internal.Types.SemanticTokens
+import Language.LSP.Protocol.Internal.Types.SemanticTokensDelta
+import Language.LSP.Protocol.Internal.Types.SemanticTokensEdit
+import Language.LSP.Protocol.Internal.Types.SemanticTokensLegend
+import Language.LSP.Protocol.Types.Common
+import Language.LSP.Protocol.Types.LspEnum
 
-import qualified Data.Algorithm.Diff                                      as Diff
-import qualified Data.Bits                                                as Bits
-import qualified Data.DList                                               as DList
-import           Data.Foldable                                            hiding
-                                                                          (length)
-import qualified Data.Map                                                 as Map
-import           Data.Maybe                                               (fromMaybe,
-                                                                           maybeToList)
-import           Data.String
+import Data.Algorithm.Diff qualified as Diff
+import Data.Bits qualified as Bits
+import Data.DList qualified as DList
+import Data.Foldable hiding (
+  length,
+ )
+import Data.Map qualified as Map
+import Data.Maybe (
+  fromMaybe,
+  maybeToList,
+ )
+import Data.String
 
 defaultSemanticTokensLegend :: SemanticTokensLegend
-defaultSemanticTokensLegend = SemanticTokensLegend
-  (fmap toEnumBaseType . toList $ knownValues @SemanticTokenTypes)
-  (fmap toEnumBaseType . toList $ knownValues @SemanticTokenModifiers)
+defaultSemanticTokensLegend =
+  SemanticTokensLegend
+    (fmap toEnumBaseType . toList $ knownValues @SemanticTokenTypes)
+    (fmap toEnumBaseType . toList $ knownValues @SemanticTokenModifiers)
 
 ----------------------------------------------------------
 -- Tools for working with semantic tokens.
 ----------------------------------------------------------
 
--- | A single 'semantic token' as described in the LSP specification, using absolute positions.
--- This is the kind of token that is usually easiest for editors to produce.
-data SemanticTokenAbsolute = SemanticTokenAbsolute {
-  _line           :: UInt,
-  _startChar      :: UInt,
-  _length         :: UInt,
-  _tokenType      :: SemanticTokenTypes,
-  _tokenModifiers :: [SemanticTokenModifiers]
-} deriving stock (Show, Eq, Ord)
+{- | A single 'semantic token' as described in the LSP specification, using absolute positions.
+ This is the kind of token that is usually easiest for editors to produce.
+-}
+data SemanticTokenAbsolute = SemanticTokenAbsolute
+  { _line :: UInt
+  , _startChar :: UInt
+  , _length :: UInt
+  , _tokenType :: SemanticTokenTypes
+  , _tokenModifiers :: [SemanticTokenModifiers]
+  }
+  deriving stock (Show, Eq, Ord)
+
 -- Note: we want the Ord instance to sort the tokens textually: this is achieved due to the
 -- order of the constructors
 
 -- | A single 'semantic token' as described in the LSP specification, using relative positions.
-data SemanticTokenRelative = SemanticTokenRelative {
-  _deltaLine      :: UInt,
-  _deltaStartChar :: UInt,
-  _length         :: UInt,
-  _tokenType      :: SemanticTokenTypes,
-  _tokenModifiers :: [SemanticTokenModifiers]
-} deriving stock (Show, Eq, Ord)
+data SemanticTokenRelative = SemanticTokenRelative
+  { _deltaLine :: UInt
+  , _deltaStartChar :: UInt
+  , _length :: UInt
+  , _tokenType :: SemanticTokenTypes
+  , _tokenModifiers :: [SemanticTokenModifiers]
+  }
+  deriving stock (Show, Eq, Ord)
+
 -- Note: we want the Ord instance to sort the tokens textually: this is achieved due to the
 -- order of the constructors
 
--- | Turn a list of absolutely-positioned tokens into a list of relatively-positioned tokens. The tokens are assumed to be in the
--- order that they appear in the document!
+{- | Turn a list of absolutely-positioned tokens into a list of relatively-positioned tokens. The tokens are assumed to be in the
+ order that they appear in the document!
+-}
 relativizeTokens :: [SemanticTokenAbsolute] -> [SemanticTokenRelative]
 relativizeTokens xs = DList.toList $ go 0 0 xs mempty
-  where
-    -- Pass an accumulator to make this tail-recursive
-    go :: UInt -> UInt -> [SemanticTokenAbsolute] -> DList.DList SemanticTokenRelative -> DList.DList SemanticTokenRelative
-    go _ _ [] acc = acc
-    go lastLine lastChar (SemanticTokenAbsolute l c len ty mods:ts) acc =
-      let
-        lastCharInLine = if l == lastLine then lastChar else 0
-        dl = l - lastLine
-        dc = c - lastCharInLine
-      in go l c ts (DList.snoc acc (SemanticTokenRelative dl dc len ty mods))
+ where
+  -- Pass an accumulator to make this tail-recursive
+  go :: UInt -> UInt -> [SemanticTokenAbsolute] -> DList.DList SemanticTokenRelative -> DList.DList SemanticTokenRelative
+  go _ _ [] acc = acc
+  go lastLine lastChar (SemanticTokenAbsolute l c len ty mods : ts) acc =
+    let
+      lastCharInLine = if l == lastLine then lastChar else 0
+      dl = l - lastLine
+      dc = c - lastCharInLine
+     in
+      go l c ts (DList.snoc acc (SemanticTokenRelative dl dc len ty mods))
 
--- | Turn a list of relatively-positioned tokens into a list of absolutely-positioned tokens. The tokens are assumed to be in the
--- order that they appear in the document!
+{- | Turn a list of relatively-positioned tokens into a list of absolutely-positioned tokens. The tokens are assumed to be in the
+ order that they appear in the document!
+-}
 absolutizeTokens :: [SemanticTokenRelative] -> [SemanticTokenAbsolute]
 absolutizeTokens xs = DList.toList $ go 0 0 xs mempty
-  where
-    -- Pass an accumulator to make this tail-recursive
-    go :: UInt -> UInt -> [SemanticTokenRelative] -> DList.DList SemanticTokenAbsolute -> DList.DList SemanticTokenAbsolute
-    go _ _ [] acc = acc
-    go lastLine lastChar (SemanticTokenRelative dl dc len ty mods:ts) acc =
-      let
-        lastCharInLine = if dl == 0 then lastChar else 0
-        l = lastLine + dl
-        c = lastCharInLine + dc
-      in go l c ts (DList.snoc acc (SemanticTokenAbsolute l c len ty mods))
+ where
+  -- Pass an accumulator to make this tail-recursive
+  go :: UInt -> UInt -> [SemanticTokenRelative] -> DList.DList SemanticTokenAbsolute -> DList.DList SemanticTokenAbsolute
+  go _ _ [] acc = acc
+  go lastLine lastChar (SemanticTokenRelative dl dc len ty mods : ts) acc =
+    let
+      lastCharInLine = if dl == 0 then lastChar else 0
+      l = lastLine + dl
+      c = lastCharInLine + dc
+     in
+      go l c ts (DList.snoc acc (SemanticTokenAbsolute l c len ty mods))
 
 -- | Encode a series of relatively-positioned semantic tokens into an integer array following the given legend.
 encodeTokens :: SemanticTokensLegend -> [SemanticTokenRelative] -> Either Text [UInt]
-encodeTokens SemanticTokensLegend{_tokenTypes=tts,_tokenModifiers=tms} sts =
+encodeTokens SemanticTokensLegend{_tokenTypes = tts, _tokenModifiers = tms} sts =
   DList.toList . DList.concat <$> traverse encodeToken sts
-  where
-    -- Note that there's no "fast" version of these (e.g. backed by an IntMap or similar)
-    -- in general, due to the possibility  of unknown token types which are only identified by strings.
-    tyMap :: Map.Map SemanticTokenTypes UInt
-    tyMap = Map.fromList $ zip (fmap fromOpenEnumBaseType tts) [0..]
-    modMap :: Map.Map SemanticTokenModifiers Int
-    modMap = Map.fromList $ zip (fmap fromOpenEnumBaseType tms) [0..]
+ where
+  -- Note that there's no "fast" version of these (e.g. backed by an IntMap or similar)
+  -- in general, due to the possibility  of unknown token types which are only identified by strings.
+  tyMap :: Map.Map SemanticTokenTypes UInt
+  tyMap = Map.fromList $ zip (fmap fromOpenEnumBaseType tts) [0 ..]
+  modMap :: Map.Map SemanticTokenModifiers Int
+  modMap = Map.fromList $ zip (fmap fromOpenEnumBaseType tms) [0 ..]
 
-    lookupTy :: SemanticTokenTypes -> Either Text UInt
-    lookupTy ty = case Map.lookup ty tyMap of
-        Just tycode -> pure tycode
-        Nothing -> throwError $ "Semantic token type " <> fromString (show ty) <> " did not appear in the legend"
-    lookupMod :: SemanticTokenModifiers -> Either Text Int
-    lookupMod modifier = case Map.lookup modifier modMap of
-        Just modcode -> pure modcode
-        Nothing -> throwError $ "Semantic token modifier " <> fromString (show modifier) <> " did not appear in the legend"
+  lookupTy :: SemanticTokenTypes -> Either Text UInt
+  lookupTy ty = case Map.lookup ty tyMap of
+    Just tycode -> pure tycode
+    Nothing -> throwError $ "Semantic token type " <> fromString (show ty) <> " did not appear in the legend"
+  lookupMod :: SemanticTokenModifiers -> Either Text Int
+  lookupMod modifier = case Map.lookup modifier modMap of
+    Just modcode -> pure modcode
+    Nothing -> throwError $ "Semantic token modifier " <> fromString (show modifier) <> " did not appear in the legend"
 
-    -- Use a DList here for better efficiency when concatenating all these together
-    encodeToken :: SemanticTokenRelative -> Either Text (DList.DList UInt)
-    encodeToken (SemanticTokenRelative dl dc len ty mods) = do
-      tycode <- lookupTy ty
-      modcodes <- traverse lookupMod mods
-      let combinedModcode :: Int = foldl' Bits.setBit Bits.zeroBits modcodes
+  -- Use a DList here for better efficiency when concatenating all these together
+  encodeToken :: SemanticTokenRelative -> Either Text (DList.DList UInt)
+  encodeToken (SemanticTokenRelative dl dc len ty mods) = do
+    tycode <- lookupTy ty
+    modcodes <- traverse lookupMod mods
+    let combinedModcode :: Int = foldl' Bits.setBit Bits.zeroBits modcodes
 
-      pure [dl, dc, len, tycode, fromIntegral combinedModcode ]
+    pure [dl, dc, len, tycode, fromIntegral combinedModcode]
 
 -- This is basically 'SemanticTokensEdit', but slightly easier to work with.
+
 -- | An edit to a buffer of items.
-data Edit a = Edit { editStart :: UInt, editDeleteCount :: UInt, editInsertions :: [a] }
+data Edit a = Edit {editStart :: UInt, editDeleteCount :: UInt, editInsertions :: [a]}
   deriving stock (Read, Show, Eq, Ord)
 
 -- | Compute a list of edits that will turn the first list into the second list.
 computeEdits :: Eq a => [a] -> [a] -> [Edit a]
 computeEdits l r = DList.toList $ go 0 Nothing (Diff.getGroupedDiff l r) mempty
-  where
-    {-
-    Strategy: traverse the list of diffs, keeping the current index and (maybe) an in-progress 'Edit'.
-    Whenever we see a 'Diff' that's only one side or the other, we can bundle that in to our in-progress
-    'Edit'. We only have to stop if we see a 'Diff' that's on both sides (i.e. unchanged), then we
-    dump the 'Edit' into the accumulator.
-    We need the index, because 'Edit's need to say where they start.
-    -}
-    go :: UInt -> Maybe (Edit a) -> [Diff.Diff [a]] -> DList.DList (Edit a) -> DList.DList (Edit a)
-    -- No more diffs: append the current edit if there is one and return
-    go _ e [] acc = acc <> DList.fromList (maybeToList e)
-
-    -- Items only on the left (i.e. deletions): increment the current index, and record the count of deletions,
-    -- starting a new edit if necessary.
-    go ix e (Diff.First ds : rest) acc =
-      let
-        deleteCount = fromIntegral $ Prelude.length ds
-        edit = fromMaybe (Edit ix 0 []) e
-      in go (ix + deleteCount) (Just (edit{editDeleteCount=editDeleteCount edit + deleteCount})) rest acc
-    -- Items only on the right (i.e. insertions): don't increment the current index, and record the insertions,
-    -- starting a new edit if necessary.
-    go ix e (Diff.Second as : rest) acc =
-      let edit = fromMaybe (Edit ix 0 []) e
-      in go ix (Just (edit{editInsertions=editInsertions edit <> as})) rest acc
-
-    -- Items on both sides: increment the current index appropriately (since the items appear on the left),
-    -- and append the current edit (if there is one) to our list of edits (since we can't continue it with a break).
-    go ix e (Diff.Both bs _bs : rest) acc =
-      let bothCount = fromIntegral $ Prelude.length bs
-      in go (ix + bothCount) Nothing rest (acc <> DList.fromList (maybeToList e))
+ where
+  {-
+  Strategy: traverse the list of diffs, keeping the current index and (maybe) an in-progress 'Edit'.
+  Whenever we see a 'Diff' that's only one side or the other, we can bundle that in to our in-progress
+  'Edit'. We only have to stop if we see a 'Diff' that's on both sides (i.e. unchanged), then we
+  dump the 'Edit' into the accumulator.
+  We need the index, because 'Edit's need to say where they start.
+  -}
+  go :: UInt -> Maybe (Edit a) -> [Diff.Diff [a]] -> DList.DList (Edit a) -> DList.DList (Edit a)
+  -- No more diffs: append the current edit if there is one and return
+  go _ e [] acc = acc <> DList.fromList (maybeToList e)
+  -- Items only on the left (i.e. deletions): increment the current index, and record the count of deletions,
+  -- starting a new edit if necessary.
+  go ix e (Diff.First ds : rest) acc =
+    let
+      deleteCount = fromIntegral $ Prelude.length ds
+      edit = fromMaybe (Edit ix 0 []) e
+     in
+      go (ix + deleteCount) (Just (edit{editDeleteCount = editDeleteCount edit + deleteCount})) rest acc
+  -- Items only on the right (i.e. insertions): don't increment the current index, and record the insertions,
+  -- starting a new edit if necessary.
+  go ix e (Diff.Second as : rest) acc =
+    let edit = fromMaybe (Edit ix 0 []) e
+     in go ix (Just (edit{editInsertions = editInsertions edit <> as})) rest acc
+  -- Items on both sides: increment the current index appropriately (since the items appear on the left),
+  -- and append the current edit (if there is one) to our list of edits (since we can't continue it with a break).
+  go ix e (Diff.Both bs _bs : rest) acc =
+    let bothCount = fromIntegral $ Prelude.length bs
+     in go (ix + bothCount) Nothing rest (acc <> DList.fromList (maybeToList e))
 
 -- | Convenience method for making a 'SemanticTokens' from a list of 'SemanticTokenAbsolute's. An error may be returned if
 
@@ -166,10 +179,11 @@
   encoded <- encodeTokens legend $ relativizeTokens sts
   pure $ SemanticTokens Nothing encoded
 
--- | Convenience function for making a 'SemanticTokensDelta' from a previous and current 'SemanticTokens'.
--- The resulting 'SemanticTokensDelta' lacks a result ID, which must be set separately if you are using that.
+{- | Convenience function for making a 'SemanticTokensDelta' from a previous and current 'SemanticTokens'.
+ The resulting 'SemanticTokensDelta' lacks a result ID, which must be set separately if you are using that.
+-}
 makeSemanticTokensDelta :: SemanticTokens -> SemanticTokens -> SemanticTokensDelta
-makeSemanticTokensDelta SemanticTokens{_data_=prevTokens} SemanticTokens{_data_=curTokens} =
+makeSemanticTokensDelta SemanticTokens{_data_ = prevTokens} SemanticTokens{_data_ = curTokens} =
   let edits = computeEdits prevTokens curTokens
       stEdits = fmap (\(Edit s ds as) -> SemanticTokensEdit s ds (Just as)) edits
-  in SemanticTokensDelta Nothing stEdits
+   in SemanticTokensDelta Nothing stEdits
diff --git a/src/Language/LSP/Protocol/Types/Singletons.hs b/src/Language/LSP/Protocol/Types/Singletons.hs
--- a/src/Language/LSP/Protocol/Types/Singletons.hs
+++ b/src/Language/LSP/Protocol/Types/Singletons.hs
@@ -1,18 +1,25 @@
 module Language.LSP.Protocol.Types.Singletons where
 
-import           Data.Aeson
-import           Data.Hashable
-import           Data.Proxy
-import qualified Data.Text    as T
-import           Control.DeepSeq
-import           GHC.TypeLits (KnownNat, KnownSymbol, Nat, Symbol, natVal,
-                               symbolVal)
-import           Prettyprinter
+import Control.DeepSeq
+import Data.Aeson
+import Data.Hashable
+import Data.Proxy
+import Data.Text qualified as T
+import GHC.TypeLits (
+  KnownNat,
+  KnownSymbol,
+  Nat,
+  Symbol,
+  natVal,
+  symbolVal,
+ )
+import Prettyprinter
 
--- | A type whose only inhabitant is a single, statically-known string.
---
--- This corresponds to types like @"hello"@ in the LSP specification that
--- are exactly types with a single inhabitant.
+{- | A type whose only inhabitant is a single, statically-known string.
+
+ This corresponds to types like @"hello"@ in the LSP specification that
+ are exactly types with a single inhabitant.
+-}
 data AString (s :: Symbol) where
   AString :: KnownSymbol s => AString s
 
@@ -36,13 +43,14 @@
   parseJSON = withText "string literal type" $ \s -> do
     let sym = symbolVal (Proxy @s)
     if s == T.pack sym
-    then pure AString
-    else fail $ "wrong string, got: " <> show s <> " expected " <> sym
+      then pure AString
+      else fail $ "wrong string, got: " <> show s <> " expected " <> sym
 
--- | A type whose only inhabitant is a single, statically-known integer.
---
--- This corresponds to types like @1@ in the LSP specification that
--- are exactly types with a single inhabitant.
+{- | A type whose only inhabitant is a single, statically-known integer.
+
+ This corresponds to types like @1@ in the LSP specification that
+ are exactly types with a single inhabitant.
+-}
 data AnInteger (n :: Nat) where
   AnInteger :: KnownNat n => AnInteger n
 
@@ -66,5 +74,5 @@
   parseJSON = withScientific "integer literal type" $ \n -> do
     let nat = natVal (Proxy @n)
     if truncate n == nat
-    then pure AnInteger
-    else fail $ "wrong integer, got: " <> show n <> " expected " <> show nat
+      then pure AnInteger
+      else fail $ "wrong integer, got: " <> show n <> " expected " <> show nat
diff --git a/src/Language/LSP/Protocol/Types/Uri.hs b/src/Language/LSP/Protocol/Types/Uri.hs
--- a/src/Language/LSP/Protocol/Types/Uri.hs
+++ b/src/Language/LSP/Protocol/Types/Uri.hs
@@ -1,51 +1,47 @@
-{-# LANGUAGE DeriveGeneric              #-}
-{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-{-# LANGUAGE InstanceSigs               #-}
-{-# LANGUAGE OverloadedStrings          #-}
-{-# LANGUAGE RankNTypes                 #-}
-{-# LANGUAGE RecordWildCards            #-}
-{-# LANGUAGE TypeSynonymInstances       #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE RecordWildCards #-}
 
-module Language.LSP.Protocol.Types.Uri
-  ( Uri(..)
-  , uriToFilePath
-  , filePathToUri
-  , NormalizedUri(..)
-  , toNormalizedUri
-  , fromNormalizedUri
-  , NormalizedFilePath
-  , toNormalizedFilePath
-  , fromNormalizedFilePath
-  , normalizedFilePathToUri
-  , uriToNormalizedFilePath
-  , emptyNormalizedFilePath
+module Language.LSP.Protocol.Types.Uri (
+  Uri (..),
+  uriToFilePath,
+  filePathToUri,
+  NormalizedUri (..),
+  toNormalizedUri,
+  fromNormalizedUri,
+  NormalizedFilePath,
+  toNormalizedFilePath,
+  fromNormalizedFilePath,
+  normalizedFilePathToUri,
+  uriToNormalizedFilePath,
+  emptyNormalizedFilePath,
+  emptyNormalizedUri,
   -- Private functions
-  , platformAwareUriToFilePath
-  , platformAwareFilePathToUri
-  )
-  where
+  platformAwareUriToFilePath,
+  platformAwareFilePathToUri,
+)
+where
 
-import           Control.DeepSeq
-import qualified Data.Aeson              as A
-import           Data.Binary             (Binary, Get, get, put)
-import           Data.Hashable
-import           Data.List               (stripPrefix)
-import           Data.String             (IsString (fromString))
-import           Data.Text               (Text)
-import qualified Data.Text               as T
-import           GHC.Generics
-import           Network.URI             hiding (authority)
-import           Safe                    (tailMay)
-import qualified System.FilePath         as FP
-import qualified System.FilePath.Posix   as FPP
-import qualified System.FilePath.Windows as FPW
-import qualified System.Info
-import           Prettyprinter
+import Control.DeepSeq
+import Data.Aeson qualified as A
+import Data.Binary (Binary, Get, get, put)
+import Data.Hashable
+import Data.List (stripPrefix)
+import Data.String (IsString (fromString))
+import Data.Text (Text)
+import Data.Text qualified as T
+import GHC.Generics
+import Network.URI hiding (authority)
+import Prettyprinter
+import Safe (tailMay)
+import System.FilePath qualified as FP
+import System.FilePath.Posix qualified as FPP
+import System.FilePath.Windows qualified as FPW
+import System.Info qualified
 
 -- | The @Uri@ type in the LSP specification.
-newtype Uri = Uri { getUri :: Text }
-  deriving stock (Eq,Ord,Read,Show,Generic)
-  deriving newtype (A.FromJSON,A.ToJSON,Hashable,A.ToJSONKey,A.FromJSONKey, Pretty)
+newtype Uri = Uri {getUri :: Text}
+  deriving stock (Eq, Ord, Read, Show, Generic)
+  deriving newtype (A.FromJSON, A.ToJSON, Hashable, A.ToJSONKey, A.FromJSONKey, Pretty)
 
 instance NFData Uri
 
@@ -58,7 +54,7 @@
 'NormalizedUri' has a cached hash in order to make it especially fast in a hash map.
 -}
 data NormalizedUri = NormalizedUri !Int !Text
-  deriving stock (Read,Show,Generic, Eq)
+  deriving stock (Read, Show, Generic, Eq)
 
 -- Slow but compares paths alphabetically as you would expect.
 instance Ord NormalizedUri where
@@ -75,21 +71,23 @@
 
 isUnescapedInUriPath :: SystemOS -> Char -> Bool
 isUnescapedInUriPath systemOS c
-   | systemOS == windowsOS = isUnreserved c || c `elem` [':', '\\', '/']
-   | otherwise = isUnreserved c || c == '/'
+  | systemOS == windowsOS = isUnreserved c || c `elem` [':', '\\', '/']
+  | otherwise = isUnreserved c || c == '/'
 
 normalizeUriEscaping :: String -> String
 normalizeUriEscaping uri =
   case stripPrefix (fileScheme ++ "//") uri of
-    Just p  -> fileScheme ++ "//" ++ escapeURIPath (unEscapeString p)
+    Just p -> fileScheme ++ "//" ++ escapeURIPath (unEscapeString p)
     Nothing -> escapeURIString isUnescapedInURI $ unEscapeString uri
-  where escapeURIPath = escapeURIString (isUnescapedInUriPath System.Info.os)
+ where
+  escapeURIPath = escapeURIString (isUnescapedInUriPath System.Info.os)
 
 toNormalizedUri :: Uri -> NormalizedUri
 toNormalizedUri uri = NormalizedUri (hash norm) norm
-  where (Uri t) = maybe uri filePathToUri (uriToFilePath uri)
-        -- To ensure all `Uri`s have the file path normalized
-        norm = T.pack (normalizeUriEscaping (T.unpack t))
+ where
+  (Uri t) = maybe uri filePathToUri (uriToFilePath uri)
+  -- To ensure all `Uri`s have the file path normalized
+  norm = T.pack (normalizeUriEscaping (T.unpack t))
 
 fromNormalizedUri :: NormalizedUri -> Uri
 fromNormalizedUri (NormalizedUri _ t) = Uri t
@@ -110,63 +108,72 @@
 platformAwareUriToFilePath systemOS (Uri uri) = do
   URI{..} <- parseURI $ T.unpack uri
   if uriScheme == fileScheme
-    then return $
-      platformAdjustFromUriPath systemOS (uriRegName <$> uriAuthority) $ unEscapeString uriPath
+    then
+      return $
+        platformAdjustFromUriPath systemOS (uriRegName <$> uriAuthority) $
+          unEscapeString uriPath
     else Nothing
 
--- | We pull in the authority because in relative file paths the Uri likes to put everything before the slash
---   into the authority field
-platformAdjustFromUriPath :: SystemOS
-                          -> Maybe String -- ^ authority
-                          -> String -- ^ path
-                          -> FilePath
+{- | We pull in the authority because in relative file paths the Uri likes to put everything before the slash
+   into the authority field
+-}
+platformAdjustFromUriPath ::
+  SystemOS ->
+  -- | authority
+  Maybe String ->
+  -- | path
+  String ->
+  FilePath
 platformAdjustFromUriPath systemOS authority srcPath =
   maybe id (++) authority $
-  if systemOS /= windowsOS
-  then srcPath
-  else case FPP.splitDirectories <$> tailMay srcPath of
-      Just (firstSegment:rest) -> -- Drop leading '/' for absolute Windows paths
-        let drive = if FPW.isDrive firstSegment
-                    then FPW.addTrailingPathSeparator firstSegment
-                    else firstSegment
-         in FPW.joinDrive drive $ FPW.joinPath rest
-      _ -> srcPath
+    if systemOS /= windowsOS
+      then srcPath
+      else case FPP.splitDirectories <$> tailMay srcPath of
+        Just (firstSegment : rest) ->
+          -- Drop leading '/' for absolute Windows paths
+          let drive =
+                if FPW.isDrive firstSegment
+                  then FPW.addTrailingPathSeparator firstSegment
+                  else firstSegment
+           in FPW.joinDrive drive $ FPW.joinPath rest
+        _ -> srcPath
 
 filePathToUri :: FilePath -> Uri
 filePathToUri = platformAwareFilePathToUri System.Info.os . FP.normalise
 
 {-# WARNING platformAwareFilePathToUri "This function is considered private. Use normalizedUriToFilePath instead." #-}
 platformAwareFilePathToUri :: SystemOS -> FilePath -> Uri
-platformAwareFilePathToUri systemOS fp = Uri . T.pack . show $ URI
-  { uriScheme = fileScheme
-  , uriAuthority = Just $ URIAuth "" "" ""
-  , uriPath = platformAdjustToUriPath systemOS fp
-  , uriQuery = ""
-  , uriFragment = ""
-  }
+platformAwareFilePathToUri systemOS fp =
+  Uri . T.pack . show $
+    URI
+      { uriScheme = fileScheme
+      , uriAuthority = Just $ URIAuth "" "" ""
+      , uriPath = platformAdjustToUriPath systemOS fp
+      , uriQuery = ""
+      , uriFragment = ""
+      }
 
 platformAdjustToUriPath :: SystemOS -> FilePath -> String
 platformAdjustToUriPath systemOS srcPath
   | systemOS == windowsOS = '/' : escapedPath
   | otherwise = escapedPath
-  where
-    (splitDirectories, splitDrive)
-      | systemOS == windowsOS =
-          (FPW.splitDirectories, FPW.splitDrive)
-      | otherwise =
-          (FPP.splitDirectories, FPP.splitDrive)
-    escapedPath =
-        case splitDrive srcPath of
-            (drv, rest) ->
-                convertDrive drv `FPP.joinDrive`
-                FPP.joinPath (map (escapeURIString (isUnescapedInUriPath systemOS)) $ splitDirectories rest)
-    -- splitDirectories does not remove the path separator after the drive so
-    -- we do a final replacement of \ to /
-    convertDrive drv
-      | systemOS == windowsOS && FPW.hasTrailingPathSeparator drv =
-          FPP.addTrailingPathSeparator (init drv)
-      | otherwise = drv
-
+ where
+  (splitDirectories, splitDrive)
+    | systemOS == windowsOS =
+        (FPW.splitDirectories, FPW.splitDrive)
+    | otherwise =
+        (FPP.splitDirectories, FPP.splitDrive)
+  escapedPath =
+    case splitDrive srcPath of
+      (drv, rest) ->
+        convertDrive drv
+          `FPP.joinDrive` FPP.joinPath (map (escapeURIString (isUnescapedInUriPath systemOS)) $ splitDirectories rest)
+  -- splitDirectories does not remove the path separator after the drive so
+  -- we do a final replacement of \ to /
+  convertDrive drv
+    | systemOS == windowsOS && FPW.hasTrailingPathSeparator drv =
+        FPP.addTrailingPathSeparator (init drv)
+    | otherwise = drv
 
 {- Note [Adoption Plan of OsPath]
 Currently we store 'Text' in 'NormalizedFilePath'. We may change it to OsPath in the future if
@@ -182,17 +189,17 @@
 See [#453](https://github.com/haskell/lsp/pull/453) and [#446](https://github.com/haskell/lsp/pull/446)
 for more discussions on this topic.
 -}
-{-| A file path that is already normalized.
 
+{- | A file path that is already normalized.
+
 The 'NormalizedUri' is cached to avoided
 repeated normalisation when we need to compute them (which is a lot).
 
 This is one of the most performance critical parts of HLS, do not
 modify it without profiling.
-
 -}
 data NormalizedFilePath = NormalizedFilePath !NormalizedUri {-# UNPACK #-} !Text
-    deriving stock (Generic, Eq, Ord)
+  deriving stock (Generic, Eq, Ord)
 
 instance NFData NormalizedFilePath
 
@@ -202,15 +209,16 @@
     v <- Data.Binary.get :: Get Text
     return (NormalizedFilePath (internalNormalizedFilePathToUri (T.unpack v)) v)
 
--- | Internal helper that takes a file path that is assumed to
--- already be normalized to a URI. It is up to the caller
--- to ensure normalization.
+{- | Internal helper that takes a file path that is assumed to
+ already be normalized to a URI. It is up to the caller
+ to ensure normalization.
+-}
 internalNormalizedFilePathToUri :: FilePath -> NormalizedUri
 internalNormalizedFilePathToUri fp = nuri
-  where
-    uriPath = platformAdjustToUriPath System.Info.os fp
-    nuriStr = T.pack $ fileScheme <> "//" <> uriPath
-    nuri = NormalizedUri (hash nuriStr) nuriStr
+ where
+  uriPath = platformAdjustToUriPath System.Info.os fp
+  nuriStr = T.pack $ fileScheme <> "//" <> uriPath
+  nuri = NormalizedUri (hash nuriStr) nuriStr
 
 instance Show NormalizedFilePath where
   show (NormalizedFilePath _ fp) = "NormalizedFilePath " ++ show fp
@@ -220,14 +228,14 @@
   hashWithSalt salt (NormalizedFilePath uri _) = hashWithSalt salt uri
 
 instance IsString NormalizedFilePath where
-    fromString :: String -> NormalizedFilePath
-    fromString = toNormalizedFilePath
+  fromString :: String -> NormalizedFilePath
+  fromString = toNormalizedFilePath
 
 toNormalizedFilePath :: FilePath -> NormalizedFilePath
 toNormalizedFilePath fp = NormalizedFilePath nuri . T.pack $ nfp
-  where
-    nfp = FP.normalise fp
-    nuri = internalNormalizedFilePathToUri nfp
+ where
+  nfp = FP.normalise fp
+  nuri = internalNormalizedFilePathToUri nfp
 
 -- | Extracts 'FilePath' from 'NormalizedFilePath'.
 fromNormalizedFilePath :: NormalizedFilePath -> FilePath
@@ -238,14 +246,14 @@
 
 uriToNormalizedFilePath :: NormalizedUri -> Maybe NormalizedFilePath
 uriToNormalizedFilePath nuri = fmap (NormalizedFilePath nuri . T.pack) mbFilePath
-  where mbFilePath = platformAwareUriToFilePath System.Info.os (fromNormalizedUri nuri)
+ where
+  mbFilePath = platformAwareUriToFilePath System.Info.os (fromNormalizedUri nuri)
 
 emptyNormalizedUri :: NormalizedUri
 emptyNormalizedUri =
-    let s = "file://"
-    in NormalizedUri (hash s) s
+  let s = "file://"
+   in NormalizedUri (hash s) s
 
 -- | 'NormalizedFilePath' that contains an empty file path
 emptyNormalizedFilePath :: NormalizedFilePath
 emptyNormalizedFilePath = NormalizedFilePath emptyNormalizedUri ""
-
diff --git a/src/Language/LSP/Protocol/Types/Uri/OsPath.hs b/src/Language/LSP/Protocol/Types/Uri/OsPath.hs
--- a/src/Language/LSP/Protocol/Types/Uri/OsPath.hs
+++ b/src/Language/LSP/Protocol/Types/Uri/OsPath.hs
@@ -1,5 +1,6 @@
+{- ORMOLU_DISABLE -}
+
 {-# LANGUAGE CPP                 #-}
-{-# LANGUAGE ScopedTypeVariables #-}
 
 #if MIN_VERSION_filepath(1,4,100)
 #define OS_PATH 1
diff --git a/src/Language/LSP/Protocol/Types/WatchKinds.hs b/src/Language/LSP/Protocol/Types/WatchKinds.hs
--- a/src/Language/LSP/Protocol/Types/WatchKinds.hs
+++ b/src/Language/LSP/Protocol/Types/WatchKinds.hs
@@ -1,13 +1,13 @@
 module Language.LSP.Protocol.Types.WatchKinds where
 
-import           Language.LSP.Protocol.Internal.Types (WatchKind(..))
-import           Language.LSP.Protocol.Types.LspEnum (toEnumBaseType, fromOpenEnumBaseType)
-import           Data.Set (toList, Set)
+import Data.Set (Set, toList)
+import Language.LSP.Protocol.Internal.Types (WatchKind (..))
+import Language.LSP.Protocol.Types.LspEnum (fromOpenEnumBaseType, toEnumBaseType)
 
 -- WatchKind is better represented as a Set than as enum. As the lsp spec
 -- defines them as an enum, these helper functions help bridge the difference.
 
--- |Tests whether `WatchKind_Create` is contained in the provided WatchKind enum
+-- | Tests whether `WatchKind_Create` is contained in the provided WatchKind enum
 containsCreate :: WatchKind -> Bool
 containsCreate WatchKind_Create = True
 containsCreate (WatchKind_Custom 3) = True
@@ -15,7 +15,7 @@
 containsCreate (WatchKind_Custom 7) = True
 containsCreate _ = False
 
--- |Tests whether `WatchKind_Change` is contained in the provided WatchKind enum
+-- | Tests whether `WatchKind_Change` is contained in the provided WatchKind enum
 containsChange :: WatchKind -> Bool
 containsChange WatchKind_Change = True
 containsChange (WatchKind_Custom 3) = True
@@ -23,7 +23,7 @@
 containsChange (WatchKind_Custom 7) = True
 containsChange _ = False
 
--- |Tests whether `WatchKind_Delete` is contained in the provided WatchKind enum
+-- | Tests whether `WatchKind_Delete` is contained in the provided WatchKind enum
 containsDelete :: WatchKind -> Bool
 containsDelete WatchKind_Delete = True
 containsDelete (WatchKind_Custom 5) = True
@@ -31,7 +31,8 @@
 containsDelete (WatchKind_Custom 7) = True
 containsDelete _ = False
 
--- |Combine a set of WatchKind types into a new WatchKind type that accurately
--- represents the set
+{- | Combine a set of WatchKind types into a new WatchKind type that accurately
+ represents the set
+-}
 combineWatchKinds :: Set WatchKind -> WatchKind
 combineWatchKinds s = fromOpenEnumBaseType $ sum $ toEnumBaseType <$> toList s
diff --git a/src/Language/LSP/Protocol/Utils/Misc.hs b/src/Language/LSP/Protocol/Utils/Misc.hs
--- a/src/Language/LSP/Protocol/Utils/Misc.hs
+++ b/src/Language/LSP/Protocol/Utils/Misc.hs
@@ -1,35 +1,40 @@
-{-# LANGUAGE LambdaCase      #-}
-{-# LANGUAGE RankNTypes      #-}
+{-# LANGUAGE LambdaCase #-}
 {-# LANGUAGE TemplateHaskell #-}
-module Language.LSP.Protocol.Utils.Misc
-  ( rdrop
-  , makeSingletonFromJSON
-  , makeRegHelper
-  , lspOptions
-  , lspOptionsUntagged
-  , prettyJSON
-  , ViaJSON (..)
-  ) where
 
-import           Control.Monad
-import           Data.Aeson    
-import           Data.Aeson.Text     as Aeson
-import qualified Data.Foldable       as F
-import qualified Data.Foldable.WithIndex as F
-import qualified Data.Functor.WithIndex.Instances ()
-import           Data.List           hiding (group)
-import           Data.Maybe          (mapMaybe)
-import           Language.Haskell.TH
-import           Prettyprinter
+module Language.LSP.Protocol.Utils.Misc (
+  rdrop,
+  makeSingletonFromJSON,
+  makeRegHelper,
+  lspOptions,
+  lspOptionsUntagged,
+  prettyJSON,
+  ViaJSON (..),
+  genLenses,
+) where
 
+import Control.Lens.Internal.FieldTH
+import Control.Lens.TH
+import Control.Monad
+import Control.Monad.State
+import Data.Aeson
+import Data.Aeson.Text as Aeson
+import Data.Foldable qualified as F
+import Data.Foldable.WithIndex qualified as F
+import Data.Functor.WithIndex.Instances qualified ()
+import Data.List hiding (group)
+import Data.Maybe (mapMaybe)
+import Language.Haskell.TH as TH
+import Prettyprinter
+
 -- ---------------------------------------------------------------------
 
 rdrop :: Int -> [a] -> [a]
 rdrop cnt = reverse . drop cnt . reverse
 
--- | Given a wrapper and a singleton GADT, construct FromJSON
--- instances for each constructor return type by invoking the
--- FromJSON instance for the wrapper and unwrapping
+{- | Given a wrapper and a singleton GADT, construct FromJSON
+ instances for each constructor return type by invoking the
+ FromJSON instance for the wrapper and unwrapping
+-}
 makeSingletonFromJSON :: Name -> Name -> [Name] -> Q [Dec]
 makeSingletonFromJSON wrap gadt skip = do
   TyConI (DataD _ _ _ _ cons _) <- reify gadt
@@ -47,10 +52,12 @@
   ns <- replicateM (length args) (newName "x")
   let wrappedPat = conP wrap [conP sConstructor (map varP ns)]
       unwrappedE = pure $ foldl' AppE (ConE sConstructor) (map VarE ns)
-  [d| instance FromJSON $(pure t) where
-        parseJSON = parseJSON >=> \case
+  [d|
+    instance FromJSON $(pure t) where
+      parseJSON =
+        parseJSON >=> \case
           $wrappedPat -> pure $unwrappedE
-          _           -> mempty
+          _ -> mempty
     |]
 makeInst wrap skip (ForallC _ _ con) = makeInst wrap skip con -- Cancel and Custom requests
 makeInst _ _ _ = Just $ fail "makeInst only defined for GADT constructors"
@@ -62,60 +69,66 @@
   TyConI (DataD _ _ _ _ allCons _) <- reify sMethodTypeName
 
   let isConsFromClient (GadtC _ _ (AppT _ method)) = isMethodFromClient method
-      isConsFromClient _                           = return False
+      isConsFromClient _ = return False
       isMethodFromClient :: Type -> Q Bool
       isMethodFromClient (PromotedT method) = do
         DataConI _ typ _ <- reify method
         case typ of
           AppT (AppT _ (PromotedT n)) _ -> return $ n == fromClientName
-          _                             -> return False
+          _ -> return False
       isMethodFromClient _ = fail "Didn't expect this type of Method!"
 
   cons <- filterM isConsFromClient allCons
 
-  let conNames = mapMaybe (\case { (GadtC [name] _ _) -> Just name; _ -> Nothing; }) cons
+  let conNames = mapMaybe (\case (GadtC [name] _ _) -> Just name; _ -> Nothing) cons
       helperName = mkName "regHelper"
       mkClause name = do
         x <- newName "x"
-        clause [ conP name [], varP x ]
-               (normalB (varE x))
-               []
+        clause
+          [conP name [], varP x]
+          (normalB (varE x))
+          []
       regOptTcon = conT regOptTypeName
   fun <- funD helperName (map mkClause conNames)
 
-  typSig <- sigD helperName $
-    [t| forall m x. $(conT sMethodTypeName) m
-        -> (Show ($regOptTcon m) => ToJSON ($regOptTcon m) => FromJSON ($regOptTcon m) => x)
-        -> x |]
+  typSig <-
+    sigD helperName $
+      [t|
+        forall m x.
+        $(conT sMethodTypeName) m ->
+        (Show ($regOptTcon m) => ToJSON ($regOptTcon m) => FromJSON ($regOptTcon m) => x) ->
+        x
+        |]
   return [typSig, fun]
 
--- | Standard options for use when generating JSON instances
--- NOTE: This needs to be in a separate file because of the TH stage restriction
+{- | Standard options for use when generating JSON instances
+ NOTE: This needs to be in a separate file because of the TH stage restriction
+-}
 lspOptions :: Options
-lspOptions = defaultOptions { omitNothingFields = True, fieldLabelModifier = modifier }
-  where
+lspOptions = defaultOptions{omitNothingFields = True, fieldLabelModifier = modifier}
+ where
   modifier :: String -> String
   -- For fields called data and type in the spec, we call them xdata and xtype
   -- in haskell-lsp-types to avoid it clashing with the Haskell keywords. This
   -- fixes up the json derivation
   modifier "_xdata" = "data"
   modifier "_xtype" = "type"
-  modifier xs       = drop 1 xs
+  modifier xs = drop 1 xs
 
 -- | Standard options for use when generating JSON instances for an untagged union
 lspOptionsUntagged :: Options
-lspOptionsUntagged = lspOptions { sumEncoding = UntaggedValue }
+lspOptionsUntagged = lspOptions{sumEncoding = UntaggedValue}
 
 prettyJSON :: Value -> Doc ann
 prettyJSON = \case
   Array vec ->
     let docs = fmap prettyJSON (F.toList vec)
         separator = ","
-    in group $ nest 2 ("[" <> line <> vsep (punctuate separator docs)) <> line <> "]"
+     in group $ nest 2 ("[" <> line <> vsep (punctuate separator docs)) <> line <> "]"
   Object km ->
     let docs = fmap (\(k, v) -> pretty (show k) <> ":" <+> prettyJSON v) (F.itoList km)
         separator = ","
-    in group $ nest 2 ("{" <> line <> vsep (punctuate separator docs)) <> line <> "}"
+     in group $ nest 2 ("{" <> line <> vsep (punctuate separator docs)) <> line <> "}"
   -- for atomic objects, piggyback off aeson's encoding
   v -> pretty $ Aeson.encodeToLazyText v
 
@@ -123,3 +136,18 @@
 
 instance ToJSON a => Pretty (ViaJSON a) where
   pretty (ViaJSON a) = prettyJSON $ toJSON a
+
+{- | Given a list of type names, make a splice that generates the lens typeclass declarations
+for all of them. Defined here to avoid stage restrictions.
+-}
+genLenses :: [TH.Name] -> TH.Q [TH.Dec]
+genLenses names = do
+  let
+    -- We need to use the internals of the lens TH machinery so that we can do this
+    -- in one go without generating duplicate classes.
+    opticMaker :: TH.Name -> HasFieldClasses [TH.Dec]
+    opticMaker n = do
+      (TH.TyConI d) <- lift $ TH.reify n
+      makeFieldOpticsForDec' classUnderscoreNoPrefixFields d
+  decss <- flip evalStateT mempty $ traverse opticMaker names
+  pure $ concat decss
diff --git a/src/Language/LSP/Protocol/Utils/SMethodMap.hs b/src/Language/LSP/Protocol/Utils/SMethodMap.hs
--- a/src/Language/LSP/Protocol/Utils/SMethodMap.hs
+++ b/src/Language/LSP/Protocol/Utils/SMethodMap.hs
@@ -1,42 +1,41 @@
-{-# LANGUAGE DataKinds  #-}
-{-# LANGUAGE GADTs      #-}
-{-# LANGUAGE MagicHash  #-}
-{-# LANGUAGE PolyKinds  #-}
-{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE GADTs #-}
+{-# LANGUAGE MagicHash #-}
 
-module Language.LSP.Protocol.Utils.SMethodMap
-  ( SMethodMap
-  , singleton
-  , insert
-  , delete
-  , member
-  , lookup
-  , map
-  ) where
+module Language.LSP.Protocol.Utils.SMethodMap (
+  SMethodMap,
+  singleton,
+  insert,
+  delete,
+  member,
+  lookup,
+  map,
+) where
 
-import           Data.IntMap                        (IntMap)
-import qualified Data.IntMap.Strict                 as IntMap
-import           Data.Kind                          (Type)
-import           Data.Map                           (Map)
-import qualified Data.Map.Strict                    as Map
-import           GHC.Exts                           (Any, Int (..), dataToTag#)
-import           Prelude                            hiding (lookup, map)
-import           Unsafe.Coerce                      (unsafeCoerce)
+import Data.IntMap (IntMap)
+import Data.IntMap.Strict qualified as IntMap
+import Data.Kind (Type)
+import Data.Map (Map)
+import Data.Map.Strict qualified as Map
+import GHC.Exts (Any, Int (..), dataToTag#)
+import Unsafe.Coerce (unsafeCoerce)
+import Prelude hiding (lookup, map)
 
-import           GHC.TypeLits                       (symbolVal)
-import           Language.LSP.Protocol.Message (Method (..), SMethod (..))
+import GHC.TypeLits (symbolVal)
+import Language.LSP.Protocol.Message (Method (..), SMethod (..))
 
 -- This type exists to avoid a dependency on 'dependent-map'. It is less
 -- safe (since we use 'unsafeCoerce') but much simpler and hence easier to include.
+
 -- | A specialized alternative to a full dependent map for use with 'SMethod'.
-data SMethodMap (v :: Method f t -> Type) =
-  -- This works by using an 'IntMap' indexed by constructor tag for the majority
-  -- of 'SMethod's, which have no parameters, and hence can only appear once as keys
-  -- in the map. We do not attempt to be truly dependent here, and instead exploit
-  -- 'usafeCoerce' to go to and from 'v Any'.
-  -- The sole exception is 'SCustomMethod', for which we keep a separate map from
-  -- its 'Text' parameter
-  SMethodMap !(IntMap (v Any)) !(Map String (v Any))
+data SMethodMap (v :: Method f t -> Type)
+  = -- This works by using an 'IntMap' indexed by constructor tag for the majority
+    -- of 'SMethod's, which have no parameters, and hence can only appear once as keys
+    -- in the map. We do not attempt to be truly dependent here, and instead exploit
+    -- 'usafeCoerce' to go to and from 'v Any'.
+    -- The sole exception is 'SCustomMethod', for which we keep a separate map from
+    -- its 'Text' parameter
+    SMethodMap !(IntMap (v Any)) !(Map String (v Any))
 
 toIx :: SMethod a -> Int
 toIx k = I# (dataToTag# k)
@@ -55,7 +54,7 @@
 
 member :: SMethod a -> SMethodMap v -> Bool
 member (SMethod_CustomMethod t) (SMethodMap _ ys) = Map.member (symbolVal t) ys
-member k (SMethodMap xs _)                        = IntMap.member (toIx k) xs
+member k (SMethodMap xs _) = IntMap.member (toIx k) xs
 
 lookup :: SMethod a -> SMethodMap v -> Maybe (v a)
 lookup (SMethod_CustomMethod t) (SMethodMap _ ys) = unsafeCoerce (Map.lookup (symbolVal t) ys)
diff --git a/test/CapabilitiesSpec.hs b/test/CapabilitiesSpec.hs
--- a/test/CapabilitiesSpec.hs
+++ b/test/CapabilitiesSpec.hs
@@ -1,19 +1,11 @@
-{-# LANGUAGE DuplicateRecordFields #-}
-
-{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
 module CapabilitiesSpec where
 
-import           Language.LSP.Protocol.Types
-import           Language.LSP.Protocol.Capabilities
-import           Test.Hspec
+import Language.LSP.Protocol.Capabilities
+import Prettyprinter
+import Test.Hspec
+import Test.Hspec.Golden
 
 spec :: Spec
 spec = describe "capabilities" $ do
-  it "gives 3.10 capabilities" $
-    let ClientCapabilities{_textDocument=Just tdcs} = capsForVersion (LSPVersion 3 10)
-        Just (DocumentSymbolClientCapabilities{_hierarchicalDocumentSymbolSupport=mHierarchical}) = _documentSymbol tdcs
-      in mHierarchical `shouldBe` Just True
-  it "gives pre 3.10 capabilities" $
-      let ClientCapabilities{_textDocument=Just tdcs} = capsForVersion (LSPVersion 3 9)
-          Just (DocumentSymbolClientCapabilities{_hierarchicalDocumentSymbolSupport=mHierarchical}) = _documentSymbol tdcs
-        in mHierarchical `shouldBe` Nothing
+  it "produces full latest client capabilities" $ defaultGolden "fullCaps" $ show $ pretty fullLatestClientCaps
+  it "produces pre-3.10 client capabilities" $ defaultGolden "oldCaps" $ show $ pretty $ fullClientCapsForVersion (LSPVersion 3 9)
diff --git a/test/JsonSpec.hs b/test/JsonSpec.hs
--- a/test/JsonSpec.hs
+++ b/test/JsonSpec.hs
@@ -1,96 +1,101 @@
-{-# LANGUAGE FlexibleContexts           #-}
-{-# LANGUAGE FlexibleInstances          #-}
-{-# LANGUAGE OverloadedStrings          #-}
-{-# LANGUAGE ScopedTypeVariables        #-}
-{-# LANGUAGE TypeApplications           #-}
-{-# LANGUAGE TypeInType                 #-}
-{-# LANGUAGE TypeFamilies               #-}
-{-# LANGUAGE UndecidableInstances       #-}
-{-# LANGUAGE DerivingStrategies         #-}
-{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-{-# LANGUAGE StandaloneDeriving         #-}
-{-# LANGUAGE TypeOperators              #-}
-
+{-# LANGUAGE DataKinds #-}
+{-# LANGUAGE DerivingStrategies #-}
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE TypeFamilies #-}
+{-# LANGUAGE UndecidableInstances #-}
 -- we're using some deprecated stuff from the LSP spec, that's fine
 {-# OPTIONS_GHC -fno-warn-deprecations #-}
-{-# OPTIONS_GHC -fno-warn-orphans #-}
+
 -- | Test for JSON serialization
 module JsonSpec where
 
-import           Language.LSP.Protocol.Types
-import           Language.LSP.Protocol.Message
+import Language.LSP.Protocol.Message
+import Language.LSP.Protocol.Types
 
-import qualified Data.Aeson                as J
-import           Data.List                 (isPrefixOf)
-import qualified Data.Row                  as R
-import qualified Data.Row.Records          as R
-import           Data.Void
-import           Test.Hspec
-import           Test.Hspec.QuickCheck
-import           Test.QuickCheck           hiding (Success)
-import           Test.QuickCheck.Instances ()
+import Language.LSP.Protocol.QuickCheck ()
 
--- import Debug.Trace
--- ---------------------------------------------------------------------
+import Data.Aeson qualified as J
+import Data.List (isPrefixOf)
+import Test.Hspec
+import Test.Hspec.QuickCheck
+import Test.QuickCheck hiding (Success)
+import Test.QuickCheck.Instances ()
 
-{-# ANN module ("HLint: ignore Redundant do"       :: String) #-}
+-- ---------------------------------------------------------------------
 
-main :: IO ()
-main = hspec spec
+{-# ANN module ("HLint: ignore Redundant do" :: String) #-}
 
 spec :: Spec
 spec = do
-  describe "dispatcher" jsonSpec
-  describe "RequestMessage" requestMessageSpec
-  describe "ResponseMessage" responseMessageSpec
-  describe "NotificationMesssage" notificationMessageSpec
+  describe "MarkedString" $ do
+    prop "roundtrip" (propertyJsonRoundtrip :: MarkedString -> Property)
 
--- ---------------------------------------------------------------------
+  describe "MarkupContent" $ do
+    prop "roundtrip" (propertyJsonRoundtrip :: MarkupContent -> Property)
 
-jsonSpec :: Spec
-jsonSpec = do
-  describe "General JSON instances round trip" $ do
-  -- DataTypesJSON
-    prop "MarkedString"   (propertyJsonRoundtrip :: MarkedString -> Property)
-    prop "MarkupContent"  (propertyJsonRoundtrip :: MarkupContent -> Property)
-    prop "TextDocumentContentChangeEvent"  (propertyJsonRoundtrip :: TextDocumentContentChangeEvent -> Property)
-    prop "WatchedFiles"   (propertyJsonRoundtrip :: DidChangeWatchedFilesRegistrationOptions -> Property)
-    prop "ResponseMessage Hover"
-         (propertyJsonRoundtrip :: TResponseMessage 'Method_TextDocumentHover -> Property)
-  describe "JSON decoding regressions" $
-    it "CompletionItem" $
+  describe "TextDocumentContentChangeEvent" $ do
+    prop "roundtrip" (propertyJsonRoundtrip :: TextDocumentContentChangeEvent -> Property)
+
+  describe "WatchedFiles" $ do
+    prop "roundtrip" (propertyJsonRoundtrip :: DidChangeWatchedFilesRegistrationOptions -> Property)
+
+  describe "Registration" $ do
+    -- Registration has a 'Maybe Value' field, so this test checks that 'Maybe Null' roundtrips properly
+    prop "roundtrip" (propertyJsonRoundtrip :: Registration -> Property)
+
+  describe "CompletionList" $ do
+    it "handles optional field set to null in record" $ do
+      J.eitherDecode "{ \"isIncomplete\" : true, \"itemDefaults\" : { \"data\" : null }, \"items\": [] }"
+        `shouldBe` Right
+          ( CompletionList
+              True
+              (Just (CompletionItemDefaults{_commitCharacters = Nothing, _editRange = Nothing, _insertTextFormat = Nothing, _insertTextMode = Nothing, _data_ = Just J.Null}))
+              mempty
+          )
+
+  describe "CompletionItem" $ do
+    it "example" $
       (J.decode "{\"jsonrpc\":\"2.0\",\"result\":[{\"label\":\"raisebox\"}],\"id\":1}" :: Maybe (TResponseMessage 'Method_TextDocumentCompletion))
         `shouldNotBe` Nothing
 
-
-requestMessageSpec :: Spec
-requestMessageSpec = do
-  describe "edge cases" $ do
+  describe "RequestMessage" $ do
     it "handles missing params field" $ do
       J.eitherDecode "{ \"jsonrpc\": \"2.0\", \"id\": 15, \"method\": \"shutdown\"}"
         `shouldBe` Right (TRequestMessage "2.0" (IdInt 15) SMethod_Shutdown Nothing)
+    -- The 'params' field on a RequestMessage is optional _and_ null is _not_ a valid value. Check that we correctly parse null as 'Nothing'
+    it "handles params field set to null" $ do
+      J.eitherDecode "{ \"jsonrpc\": \"2.0\", \"id\": 15, \"method\": \"shutdown\", \"params\": null }"
+        `shouldBe` Right (TRequestMessage "2.0" (IdInt 15) SMethod_Shutdown Nothing)
 
-responseMessageSpec :: Spec
-responseMessageSpec = do
-  describe "edge cases" $ do
-    it "decodes result = null" $ do
-      let input = "{\"jsonrpc\": \"2.0\", \"id\": 123, \"result\": null}"
-        in  J.decode input `shouldBe` Just
-              ((TResponseMessage "2.0" (Just (IdInt 123)) (Right $ InL J.Null)) :: TResponseMessage 'Method_WorkspaceExecuteCommand)
-  describe "invalid JSON" $ do
+  describe "ResponseMessage" $ do
+    prop
+      "Hover roundtrip"
+      (propertyJsonRoundtrip :: TResponseMessage 'Method_TextDocumentHover -> Property)
+    -- The 'data' field on a ResponseError is optional _and_ null is a valid value. Check that we correctly parse null as 'Just Null'
+    it "decodes error data = null" $ do
+      let input = "{\"jsonrpc\": \"2.0\", \"id\": 123, \"error\": { \"code\": -32700, \"message\": \"oh no\", \"data\": null }}"
+       in J.decode input
+            `shouldBe` Just
+              ( (TResponseMessage "2.0" (Just (IdInt 123)) (Left $ TResponseError (InR ErrorCodes_ParseError) "oh no" (Just J.Null))) ::
+                  TResponseMessage ('Method_CustomMethod "hello")
+              )
     it "throws if neither result nor error is present" $ do
       (J.eitherDecode "{\"jsonrpc\":\"2.0\",\"id\":1}" :: Either String (TResponseMessage 'Method_Initialize))
         `shouldBe` Left ("Error in $: both error and result cannot be Nothing")
     it "throws if both result and error are present" $ do
-      (J.eitherDecode
-        "{\"jsonrpc\":\"2.0\",\"id\": 1,\"result\":{\"capabilities\": {}},\"error\":{\"code\":-32700,\"message\":\"\",\"data\":{ \"retry\":false}}}"
-        :: Either String (TResponseMessage 'Method_Initialize))
-        `shouldSatisfy`
-          (either (\err -> "Error in $: both error and result cannot be present" `isPrefixOf` err) (\_ -> False))
+      ( J.eitherDecode
+          "{\"jsonrpc\":\"2.0\",\"id\": 1,\"result\":{\"capabilities\": {}},\"error\":{\"code\":-32700,\"message\":\"\",\"data\":{ \"retry\":false}}}" ::
+          Either String (TResponseMessage 'Method_Initialize)
+        )
+        `shouldSatisfy` (either (\err -> "Error in $: both error and result cannot be present" `isPrefixOf` err) (\_ -> False))
+    it "decodes result = null" $ do
+      let input = "{\"jsonrpc\": \"2.0\", \"id\": 123, \"result\": null}"
+       in J.decode input
+            `shouldBe` Just
+              ((TResponseMessage "2.0" (Just (IdInt 123)) (Right $ InL J.Null)) :: TResponseMessage 'Method_WorkspaceExecuteCommand)
 
-notificationMessageSpec :: Spec
-notificationMessageSpec = do
-  describe "edge cases" $ do
+  describe "NotificationMessage" $ do
     it "handles missing params field" $ do
       J.eitherDecode "{ \"jsonrpc\": \"2.0\", \"method\": \"exit\"}"
         `shouldBe` Right (TNotificationMessage "2.0" SMethod_Exit Nothing)
@@ -99,124 +104,3 @@
 
 propertyJsonRoundtrip :: (Eq a, Show a, J.ToJSON a, J.FromJSON a) => a -> Property
 propertyJsonRoundtrip a = J.Success a === J.fromJSON (J.toJSON a)
-
--- ---------------------------------------------------------------------
-
-instance (Arbitrary a, Arbitrary b) => Arbitrary (a |? b) where
-  arbitrary = oneof [InL <$> arbitrary, InR <$> arbitrary]
-  shrink = genericShrink
-
-instance Arbitrary Null where
-  arbitrary = pure Null
-
-instance (R.AllUniqueLabels r, R.Forall r Arbitrary) => Arbitrary (R.Rec r) where
-  arbitrary = R.fromLabelsA @Arbitrary $ \_l -> arbitrary
-  shrink record = R.traverse @Arbitrary @[] shrink record
-
-deriving newtype instance Arbitrary MarkedString
-
-instance Arbitrary MarkupContent where
-  arbitrary = MarkupContent <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary MarkupKind where
-  arbitrary = oneof [pure MarkupKind_PlainText,pure MarkupKind_Markdown]
-  shrink = genericShrink
-
-instance Arbitrary UInt where
-  arbitrary = fromInteger <$> arbitrary
-
-instance Arbitrary Uri where
-  arbitrary = Uri <$> arbitrary
-  shrink = genericShrink
-
---deriving newtype instance Arbitrary URI
-
-instance Arbitrary WorkspaceFolder where
-  arbitrary = WorkspaceFolder <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary RelativePattern where
-  arbitrary = RelativePattern <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-deriving newtype instance Arbitrary Pattern
-deriving newtype instance Arbitrary GlobPattern
-
-instance Arbitrary Position where
-  arbitrary = Position <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary Location where
-  arbitrary = Location <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary Range where
-  arbitrary = Range <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary Hover where
-  arbitrary = Hover <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance {-# OVERLAPPING #-} Arbitrary (Maybe Void) where
-  arbitrary = pure Nothing
-
-instance (ErrorData m ~ Maybe Void) => Arbitrary (TResponseError m) where
-  arbitrary = TResponseError <$> arbitrary <*> arbitrary <*> pure Nothing
-  shrink = genericShrink
-
-instance Arbitrary ResponseError where
-  arbitrary = ResponseError <$> arbitrary <*> arbitrary <*> pure Nothing
-  shrink = genericShrink
-
-instance (Arbitrary (MessageResult m), ErrorData m ~ Maybe Void) => Arbitrary (TResponseMessage m) where
-  arbitrary = TResponseMessage <$> arbitrary <*> arbitrary <*> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary (LspId m) where
-  arbitrary = oneof [IdInt <$> arbitrary, IdString <$> arbitrary]
-  shrink = genericShrink
-
-instance Arbitrary ErrorCodes where
-  arbitrary =
-    elements
-      [ ErrorCodes_ParseError
-      , ErrorCodes_InvalidRequest
-      , ErrorCodes_MethodNotFound
-      , ErrorCodes_InvalidParams
-      , ErrorCodes_InternalError
-      , ErrorCodes_ServerNotInitialized
-      , ErrorCodes_UnknownErrorCode
-      ]
-  shrink = genericShrink
-
-instance Arbitrary LSPErrorCodes where
-  arbitrary =
-    elements
-      [ LSPErrorCodes_RequestFailed
-      , LSPErrorCodes_ServerCancelled
-      , LSPErrorCodes_ContentModified
-      , LSPErrorCodes_RequestCancelled
-      ]
-  shrink = genericShrink
--- ---------------------------------------------------------------------
-
-instance Arbitrary DidChangeWatchedFilesRegistrationOptions where
-  arbitrary = DidChangeWatchedFilesRegistrationOptions <$> arbitrary
-  shrink = genericShrink
-
-instance Arbitrary FileSystemWatcher where
-  arbitrary = FileSystemWatcher <$> arbitrary <*> arbitrary
-  shrink = genericShrink
-
--- TODO: watchKind is weird
-instance Arbitrary WatchKind where
-  arbitrary = oneof [pure WatchKind_Change, pure WatchKind_Create, pure WatchKind_Delete]
-  shrink = genericShrink
-
--- ---------------------------------------------------------------------
---
-instance Arbitrary TextDocumentContentChangeEvent where
-  arbitrary = TextDocumentContentChangeEvent <$> arbitrary
-  shrink = genericShrink
diff --git a/test/LocationSpec.hs b/test/LocationSpec.hs
--- a/test/LocationSpec.hs
+++ b/test/LocationSpec.hs
@@ -2,8 +2,8 @@
 
 module LocationSpec where
 
-import           Language.LSP.Protocol.Types
-import           Test.Hspec
+import Language.LSP.Protocol.Types
+import Test.Hspec
 
 main :: IO ()
 main = hspec spec
diff --git a/test/Main.hs b/test/Main.hs
--- a/test/Main.hs
+++ b/test/Main.hs
@@ -1,7 +1,7 @@
 module Main where
 
-import qualified Spec
-import           Test.Hspec.Runner
+import Spec qualified
+import Test.Hspec.Runner
 
 main :: IO ()
 main = hspec Spec.spec
diff --git a/test/MethodSpec.hs b/test/MethodSpec.hs
--- a/test/MethodSpec.hs
+++ b/test/MethodSpec.hs
@@ -1,13 +1,13 @@
-{-# LANGUAGE DataKinds         #-}
+{-# LANGUAGE DataKinds #-}
 {-# LANGUAGE OverloadedStrings #-}
-module MethodSpec where
 
+module MethodSpec where
 
-import           Control.Monad
-import qualified Data.Aeson         as J
-import qualified Data.Text          as T
-import qualified Language.LSP.Protocol.Message as J
-import           Test.Hspec
+import Control.Monad
+import Data.Aeson qualified as J
+import Data.Text qualified as T
+import Language.LSP.Protocol.Message qualified as J
+import Test.Hspec
 
 -- ---------------------------------------------------------------------
 
@@ -20,69 +20,68 @@
 -- ---------------------------------------------------------------------
 
 clientMethods :: [T.Text]
-clientMethods = [
-  -- General
-   "initialize"
-  ,"initialized"
-  ,"shutdown"
-  ,"exit"
-  ,"$/cancelRequest"
- -- Workspace
-  ,"workspace/didChangeConfiguration"
-  ,"workspace/didChangeWatchedFiles"
-  ,"workspace/symbol"
-  ,"workspace/executeCommand"
- -- Document
-  ,"textDocument/didOpen"
-  ,"textDocument/didChange"
-  ,"textDocument/willSave"
-  ,"textDocument/willSaveWaitUntil"
-  ,"textDocument/didSave"
-  ,"textDocument/didClose"
-  ,"textDocument/completion"
-  ,"completionItem/resolve"
-  ,"textDocument/hover"
-  ,"textDocument/signatureHelp"
-  ,"textDocument/references"
-  ,"textDocument/documentHighlight"
-  ,"textDocument/documentSymbol"
-  ,"textDocument/formatting"
-  ,"textDocument/rangeFormatting"
-  ,"textDocument/onTypeFormatting"
-  ,"textDocument/definition"
-  ,"textDocument/codeAction"
-  ,"textDocument/codeLens"
-  ,"codeLens/resolve"
-  ,"textDocument/documentLink"
-  ,"documentLink/resolve"
-  ,"textDocument/rename"
-  ,"textDocument/prepareRename"
-  ,"textDocument/prepareCallHierarchy"
-  ,"callHierarchy/incomingCalls"
-  ,"callHierarchy/outgoingCalls"
-
-  -- FIXME: weird method
-  -- ,"textDocument/semanticTokens"
-  ,"textDocument/semanticTokens/full"
-  ,"textDocument/semanticTokens/full/delta"
-  ,"textDocument/semanticTokens/range"
+clientMethods =
+  [ -- General
+    "initialize"
+  , "initialized"
+  , "shutdown"
+  , "exit"
+  , "$/cancelRequest"
+  , -- Workspace
+    "workspace/didChangeConfiguration"
+  , "workspace/didChangeWatchedFiles"
+  , "workspace/symbol"
+  , "workspace/executeCommand"
+  , -- Document
+    "textDocument/didOpen"
+  , "textDocument/didChange"
+  , "textDocument/willSave"
+  , "textDocument/willSaveWaitUntil"
+  , "textDocument/didSave"
+  , "textDocument/didClose"
+  , "textDocument/completion"
+  , "completionItem/resolve"
+  , "textDocument/hover"
+  , "textDocument/signatureHelp"
+  , "textDocument/references"
+  , "textDocument/documentHighlight"
+  , "textDocument/documentSymbol"
+  , "textDocument/formatting"
+  , "textDocument/rangeFormatting"
+  , "textDocument/onTypeFormatting"
+  , "textDocument/definition"
+  , "textDocument/codeAction"
+  , "textDocument/codeLens"
+  , "codeLens/resolve"
+  , "textDocument/documentLink"
+  , "documentLink/resolve"
+  , "textDocument/rename"
+  , "textDocument/prepareRename"
+  , "textDocument/prepareCallHierarchy"
+  , "callHierarchy/incomingCalls"
+  , "callHierarchy/outgoingCalls"
+  , -- FIXME: weird method
+    -- ,"textDocument/semanticTokens"
+    "textDocument/semanticTokens/full"
+  , "textDocument/semanticTokens/full/delta"
+  , "textDocument/semanticTokens/range"
   ]
 
 serverMethods :: [T.Text]
-serverMethods = [
-  -- Window
-   "window/showMessage"
-  ,"window/showMessageRequest"
-  ,"window/logMessage"
-  ,"telemetry/event"
-  -- Client
-  ,"client/registerCapability"
-  ,"client/unregisterCapability"
-  -- Workspace
-  ,"workspace/applyEdit"
-  ,"workspace/semanticTokens/refresh"
-  -- Document
-  ,"textDocument/publishDiagnostics"
+serverMethods =
+  [ -- Window
+    "window/showMessage"
+  , "window/showMessageRequest"
+  , "window/logMessage"
+  , "telemetry/event"
+  , -- Client
+    "client/registerCapability"
+  , "client/unregisterCapability"
+  , -- Workspace
+    "workspace/applyEdit"
+  , "workspace/semanticTokens/refresh"
+  , -- Document
+    "textDocument/publishDiagnostics"
   ]
 
 diagnosticsSpec :: Spec
@@ -98,4 +97,4 @@
         (J.toJSON <$> (J.fromJSON (J.String m) :: J.Result (J.SomeServerMethod)))
           `shouldBe` (J.Success $ J.String m)
 
-    -- ---------------------------------
+-- ---------------------------------
diff --git a/test/SemanticTokensSpec.hs b/test/SemanticTokensSpec.hs
--- a/test/SemanticTokensSpec.hs
+++ b/test/SemanticTokensSpec.hs
@@ -1,48 +1,49 @@
 {-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE TypeApplications  #-}
+
 module SemanticTokensSpec where
 
-import           Data.Either        (isRight)
-import           Data.List          (unfoldr)
-import           Language.LSP.Protocol.Types
-import           Test.Hspec
+import Data.Either (isRight)
+import Data.List (unfoldr)
+import Language.LSP.Protocol.Types
+import Test.Hspec
 
 spec :: Spec
 spec = do
   let
-      allMods = [SemanticTokenModifiers_Abstract, SemanticTokenModifiers_Static]
-      exampleLegend = SemanticTokensLegend
+    allMods = [SemanticTokenModifiers_Abstract, SemanticTokenModifiers_Static]
+    exampleLegend =
+      SemanticTokensLegend
         (fmap toEnumBaseType [SemanticTokenTypes_Property, SemanticTokenTypes_Type, SemanticTokenTypes_Class])
         (fmap toEnumBaseType allMods)
-      exampleTokens1 = [
-        SemanticTokenAbsolute 2 5 3 SemanticTokenTypes_Property allMods
-        , SemanticTokenAbsolute 2 10 4 SemanticTokenTypes_Type []
-        , SemanticTokenAbsolute 5 2 7 SemanticTokenTypes_Class []
-        ]
-      exampleTokens2 = [
-        SemanticTokenAbsolute 3 5 3 SemanticTokenTypes_Property allMods
-        , SemanticTokenAbsolute 3 10 4 SemanticTokenTypes_Type []
-        , SemanticTokenAbsolute 6 2 7 SemanticTokenTypes_Class []
-        ]
+    exampleTokens1 =
+      [ SemanticTokenAbsolute 2 5 3 SemanticTokenTypes_Property allMods
+      , SemanticTokenAbsolute 2 10 4 SemanticTokenTypes_Type []
+      , SemanticTokenAbsolute 5 2 7 SemanticTokenTypes_Class []
+      ]
+    exampleTokens2 =
+      [ SemanticTokenAbsolute 3 5 3 SemanticTokenTypes_Property allMods
+      , SemanticTokenAbsolute 3 10 4 SemanticTokenTypes_Type []
+      , SemanticTokenAbsolute 6 2 7 SemanticTokenTypes_Class []
+      ]
 
-      bigNumber :: UInt
-      bigNumber = 100000
-      bigTokens =
-        unfoldr (\i -> if i == bigNumber then Nothing else Just (SemanticTokenAbsolute i 1 1 SemanticTokenTypes_Type allMods, i+1)) 0
-      -- Relativized version of bigTokens
-      bigTokensRel =
-        unfoldr (\i -> if i == bigNumber then Nothing else Just (SemanticTokenRelative (if i == 0 then 0 else 1) 1 1 SemanticTokenTypes_Type allMods, i+1)) 0
+    bigNumber :: UInt
+    bigNumber = 100000
+    bigTokens =
+      unfoldr (\i -> if i == bigNumber then Nothing else Just (SemanticTokenAbsolute i 1 1 SemanticTokenTypes_Type allMods, i + 1)) 0
+    -- Relativized version of bigTokens
+    bigTokensRel =
+      unfoldr (\i -> if i == bigNumber then Nothing else Just (SemanticTokenRelative (if i == 0 then 0 else 1) 1 1 SemanticTokenTypes_Type allMods, i + 1)) 0
 
-      -- One more order of magnitude makes diffing more-or-less hang - possibly we need a better diffing algorithm, since this is only ~= 200 tokens at 5 ints per token
-      -- (I checked and it is the diffing that's slow, not turning it into edits)
-      smallerBigNumber :: UInt
-      smallerBigNumber = 1000
-      bigInts :: [UInt]
-      bigInts =
-        unfoldr (\i -> if i == smallerBigNumber then Nothing else Just (1, i+1)) 0
-      bigInts2 :: [UInt]
-      bigInts2 =
-        unfoldr (\i -> if i == smallerBigNumber then Nothing else Just (if even i then 2 else 1, i+1)) 0
+    -- One more order of magnitude makes diffing more-or-less hang - possibly we need a better diffing algorithm, since this is only ~= 200 tokens at 5 ints per token
+    -- (I checked and it is the diffing that's slow, not turning it into edits)
+    smallerBigNumber :: UInt
+    smallerBigNumber = 1000
+    bigInts :: [UInt]
+    bigInts =
+      unfoldr (\i -> if i == smallerBigNumber then Nothing else Just (1, i + 1)) 0
+    bigInts2 :: [UInt]
+    bigInts2 =
+      unfoldr (\i -> if i == smallerBigNumber then Nothing else Just (if even i then 2 else 1, i + 1)) 0
 
   describe "relativize/absolutizeTokens" $ do
     it "round-trips" $ do
@@ -54,25 +55,25 @@
     context "when running the LSP examples" $ do
       it "encodes example 1 correctly" $
         let encoded = encodeTokens exampleLegend (relativizeTokens exampleTokens1)
-        in encoded `shouldBe` Right [{- token 1 -}2,5,3,0,3,{- token 2 -}0,5,4,1,0,{- token 3 -}3,2,7,2,0]
+         in encoded `shouldBe` Right [{- token 1 -} 2, 5, 3, 0, 3 {- token 2 -}, 0, 5, 4, 1, 0 {- token 3 -}, 3, 2, 7, 2, 0]
       it "encodes example 2 correctly" $
         let encoded = encodeTokens exampleLegend (relativizeTokens exampleTokens2)
-        in encoded `shouldBe` Right [{- token 1 -}3,5,3,0,3,{- token 2 -}0,5,4,1,0,{- token 3 -}3,2,7,2,0]
+         in encoded `shouldBe` Right [{- token 1 -} 3, 5, 3, 0, 3 {- token 2 -}, 0, 5, 4, 1, 0 {- token 3 -}, 3, 2, 7, 2, 0]
     it "handles big tokens" $ encodeTokens exampleLegend bigTokensRel `shouldSatisfy` isRight
 
   describe "computeEdits" $ do
     it "handles an edit in the middle" $
-      computeEdits @Int [1,2,3] [1,4,5,3] `shouldBe` [Edit 1 1 [4,5]]
+      computeEdits @Int [1, 2, 3] [1, 4, 5, 3] `shouldBe` [Edit 1 1 [4, 5]]
     it "handles an edit at the end" $
-      computeEdits @Int [1,2,3] [1,2,4,5] `shouldBe` [Edit 2 1 [4,5]]
+      computeEdits @Int [1, 2, 3] [1, 2, 4, 5] `shouldBe` [Edit 2 1 [4, 5]]
     it "handles an edit at the beginning" $
-      computeEdits @Int [1,2,3] [4,5,2,3] `shouldBe` [Edit 0 1 [4,5]]
+      computeEdits @Int [1, 2, 3] [4, 5, 2, 3] `shouldBe` [Edit 0 1 [4, 5]]
     it "handles an ambiguous edit" $
-      computeEdits @Int [1,2,3] [1,3,4,3] `shouldBe` [Edit 1 1 [], Edit 3 0 [4,3]]
+      computeEdits @Int [1, 2, 3] [1, 3, 4, 3] `shouldBe` [Edit 1 1 [], Edit 3 0 [4, 3]]
     it "handles a long edit" $
-      computeEdits @Int [1,2,3,4,5] [1,7,7,7,7,7,5] `shouldBe` [Edit 1 3 [7,7,7,7,7]]
+      computeEdits @Int [1, 2, 3, 4, 5] [1, 7, 7, 7, 7, 7, 5] `shouldBe` [Edit 1 3 [7, 7, 7, 7, 7]]
     it "handles multiple edits" $
-      computeEdits @Int [1,2,3,4,5] [1,6,3,7,7,5] `shouldBe` [Edit 1 1 [6], Edit 3 1 [7,7]]
+      computeEdits @Int [1, 2, 3, 4, 5] [1, 6, 3, 7, 7, 5] `shouldBe` [Edit 1 1 [6], Edit 3 1 [7, 7]]
     it "handles big tokens" $
       -- It's a little hard to specify a useful predicate here, the main point is that it should not take too long
       computeEdits @UInt bigInts bigInts2 `shouldSatisfy` (not . null)
diff --git a/test/ServerCapabilitiesSpec.hs b/test/ServerCapabilitiesSpec.hs
--- a/test/ServerCapabilitiesSpec.hs
+++ b/test/ServerCapabilitiesSpec.hs
@@ -1,16 +1,15 @@
-{-# LANGUAGE OverloadedLabels    #-}
-{-# LANGUAGE OverloadedStrings   #-}
-{-# LANGUAGE ScopedTypeVariables #-}
+{-# LANGUAGE DuplicateRecordFields #-}
+{-# LANGUAGE OverloadedStrings #-}
+
 module ServerCapabilitiesSpec where
 
-import           Control.Lens.Operators
-import           Data.Aeson             hiding (Null)
-import           Data.Row
-import           Data.Maybe (fromJust)
-import           Language.LSP.Protocol.Types
-import           Language.LSP.Protocol.Lens
-import           Language.LSP.Protocol.Message
-import           Test.Hspec
+import Control.Lens.Operators
+import Data.Aeson hiding (Null)
+import Data.Maybe (fromJust)
+import Language.LSP.Protocol.Lens
+import Language.LSP.Protocol.Message
+import Language.LSP.Protocol.Types
+import Test.Hspec
 
 spec :: Spec
 spec = describe "server capabilities" $ do
@@ -18,27 +17,31 @@
     describe "decodes" $ do
       it "just id" $
         let input = "{\"id\": \"abc123\", \"documentSelector\": null}"
-          in decode input `shouldBe` Just (FoldingRangeRegistrationOptions (InR Null) Nothing (Just "abc123"))
+         in decode input `shouldBe` Just (FoldingRangeRegistrationOptions (InR Null) Nothing (Just "abc123"))
       it "id and document selector" $
         let input = "{\"id\": \"foo\", \"documentSelector\": " <> documentFiltersJson <> "}"
-          in decode input `shouldBe` Just (FoldingRangeRegistrationOptions (InL documentFilters) Nothing (Just "foo"))
+         in decode input `shouldBe` Just (FoldingRangeRegistrationOptions (InL documentFilters) Nothing (Just "foo"))
       it "static boolean" $
         let input = "true"
-          in decode input `shouldBe` Just True
+         in decode input `shouldBe` Just True
     describe "encodes" $
       it "just id" $
         encode (FoldingRangeRegistrationOptions (InR Null) Nothing (Just "foo")) `shouldBe` "{\"documentSelector\":null,\"id\":\"foo\"}"
   it "decodes" $
     let input = "{\"hoverProvider\": true, \"colorProvider\": {\"id\": \"abc123\", \"documentSelector\": " <> documentFiltersJson <> "}}"
         caps :: ServerCapabilities = fromJust $ decode input
-      in caps ^. colorProvider `shouldBe` Just (InR $ InR $ DocumentColorRegistrationOptions (InL documentFilters) Nothing (Just "abc123"))
+     in caps ^. colorProvider `shouldBe` Just (InR $ InR $ DocumentColorRegistrationOptions (InL documentFilters) Nothing (Just "abc123"))
   describe "client/registerCapability" $
     it "allows empty registerOptions" $
       let input = "{\"registrations\":[{\"registerOptions\":{},\"method\":\"workspace/didChangeConfiguration\",\"id\":\"4a56f5ca-7188-4f4c-a366-652d6f9d63aa\"}]}"
           registrationParams :: RegistrationParams = fromJust $ decode input
-        in registrationParams ^. registrations `shouldBe`
-             [toUntypedRegistration $ TRegistration "4a56f5ca-7188-4f4c-a366-652d6f9d63aa"
-                                      SMethod_WorkspaceDidChangeConfiguration (Just $ DidChangeConfigurationRegistrationOptions Nothing)]
-  where
-    documentFilters = DocumentSelector [DocumentFilter $ InL $ TextDocumentFilter $ InL $ #language .== "haskell" .+ #scheme .== Nothing .+ #pattern .== Nothing]
-    documentFiltersJson = "[{\"language\": \"haskell\"}]"
+       in registrationParams ^. registrations
+            `shouldBe` [ toUntypedRegistration $
+                          TRegistration
+                            "4a56f5ca-7188-4f4c-a366-652d6f9d63aa"
+                            SMethod_WorkspaceDidChangeConfiguration
+                            (Just $ DidChangeConfigurationRegistrationOptions Nothing)
+                       ]
+ where
+  documentFilters = DocumentSelector [DocumentFilter $ InL $ TextDocumentFilter $ InL $ TextDocumentFilterLanguage{_language = "haskell", _scheme = Nothing, _pattern = Nothing}]
+  documentFiltersJson = "[{\"language\": \"haskell\"}]"
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -1,4 +1,5 @@
 {-# OPTIONS_GHC -F -pgmF hspec-discover -optF --module-name=Spec #-}
+
 {-
 
 See https://github.com/hspec/hspec/tree/master/hspec-discover#readme
diff --git a/test/TypesSpec.hs b/test/TypesSpec.hs
--- a/test/TypesSpec.hs
+++ b/test/TypesSpec.hs
@@ -1,8 +1,9 @@
 {-# LANGUAGE OverloadedStrings #-}
+
 module TypesSpec where
 
-import qualified Language.LSP.Protocol.Types as J
-import           Test.Hspec
+import Language.LSP.Protocol.Types qualified as J
+import Test.Hspec
 
 spec :: Spec
 spec = do
@@ -14,5 +15,5 @@
       J.mkMarkdownCodeBlock "haskell" "foo :: Int" <> J.mkPlainText "string2\nstring3\n"
         `shouldBe` J.MarkupContent J.MarkupKind_Markdown "\n```haskell\nfoo :: Int\n```\nstring2  \nstring3  \n"
     it "appends a plain string and a marked up string" $ do
-       J.mkPlainText "string2\n" <> J.mkMarkdownCodeBlock "haskell" "foo :: Int"
+      J.mkPlainText "string2\n" <> J.mkMarkdownCodeBlock "haskell" "foo :: Int"
         `shouldBe` J.MarkupContent J.MarkupKind_Markdown "string2  \n\n```haskell\nfoo :: Int\n```\n"
diff --git a/test/URIFilePathSpec.hs b/test/URIFilePathSpec.hs
--- a/test/URIFilePathSpec.hs
+++ b/test/URIFilePathSpec.hs
@@ -1,7 +1,5 @@
-{-# LANGUAGE CPP                 #-}
-{-# LANGUAGE OverloadedStrings   #-}
-{-# LANGUAGE ScopedTypeVariables #-}
-
+{-# LANGUAGE CPP #-}
+{-# LANGUAGE OverloadedStrings #-}
 -- We're testing our own deprecated function here!
 {-# OPTIONS_GHC -Wno-deprecations #-}
 {-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
@@ -15,23 +13,23 @@
 
 #ifdef OS_PATH
 import qualified System.OsPath           as OsPath
+import Control.Exception (throwIO)
+import Data.Maybe (fromJust)
 #endif
 
-import           Control.Monad           (when)
-import           Control.Exception       (throwIO)
-import           Data.List
-import           Data.Maybe              (fromJust)
-import           Data.Text               (Text, pack)
-import           Language.LSP.Protocol.Types
+import Control.Monad (when)
+import Data.List
+import Data.Text (Text, pack)
+import Language.LSP.Protocol.Types
 
-import           GHC.IO.Encoding         (setFileSystemEncoding)
-import           Network.URI
-import           System.FilePath         (normalise)
-import qualified System.FilePath.Windows as FPW
-import qualified System.Info
-import           System.IO
-import           Test.Hspec
-import           Test.QuickCheck
+import GHC.IO.Encoding (setFileSystemEncoding)
+import Network.URI
+import System.FilePath (normalise)
+import System.FilePath.Windows qualified as FPW
+import System.IO
+import System.Info qualified
+import Test.Hspec
+import Test.QuickCheck
 
 -- ---------------------------------------------------------------------
 
@@ -100,24 +98,25 @@
     let theFilePath = platformAwareFilePathToUri "posix" "./Functional.hs"
     theFilePath `shouldBe` Uri "file://./Functional.hs"
     let Just (URI scheme' auth' path' query' frag') = parseURI "file://./Functional.hs"
-    (scheme',auth',path',query',frag') `shouldBe`
-      ("file:"
-      ,Just (URIAuth {uriUserInfo = "", uriRegName = ".", uriPort = ""}) -- AZ: Seems odd
-      ,"/Functional.hs"
-      ,""
-      ,"")
+    (scheme', auth', path', query', frag')
+      `shouldBe` ( "file:"
+                 , Just (URIAuth{uriUserInfo = "", uriRegName = ".", uriPort = ""}) -- AZ: Seems odd
+                 , "/Functional.hs"
+                 , ""
+                 , ""
+                 )
     Just "./Functional.hs" `shouldBe` platformAwareUriToFilePath "posix" theFilePath
 
   it "converts a Posix file path to a URI and back" $ property $ forAll genPosixFilePath $ \fp -> do
-      let uri = platformAwareFilePathToUri "posix" fp
-      platformAwareUriToFilePath "posix" uri `shouldBe` Just fp
+    let uri = platformAwareFilePathToUri "posix" fp
+    platformAwareUriToFilePath "posix" uri `shouldBe` Just fp
 
   it "converts a Windows file path to a URI and back" $ property $ forAll genWindowsFilePath $ \fp -> do
-      let uri = platformAwareFilePathToUri windowsOS fp
-      -- We normalise to account for changes in the path separator.
-      -- But driver letters are *not* normalized so we skip them
-      when (not $ "c:" `isPrefixOf` fp) $
-        platformAwareUriToFilePath windowsOS uri `shouldBe` Just (FPW.normalise fp)
+    let uri = platformAwareFilePathToUri windowsOS fp
+    -- We normalise to account for changes in the path separator.
+    -- But driver letters are *not* normalized so we skip them
+    when (not $ "c:" `isPrefixOf` fp) $
+      platformAwareUriToFilePath windowsOS uri `shouldBe` Just (FPW.normalise fp)
 
   it "converts a relative POSIX file path to a URI and back" $ do
     let uri = platformAwareFilePathToUri "posix" relativePosixFilePath
@@ -125,52 +124,65 @@
     let back = platformAwareUriToFilePath "posix" uri
     back `shouldBe` Just relativePosixFilePath
 
-
 testUri :: Uri
-testUri | isWindows = Uri "file:///C:/Users/myself/example.hs"
-        | otherwise = Uri "file:///home/myself/example.hs"
+testUri
+  | isWindows = Uri "file:///C:/Users/myself/example.hs"
+  | otherwise = Uri "file:///home/myself/example.hs"
 
 testFilePath :: FilePath
-testFilePath | isWindows = "C:\\Users\\myself\\example.hs"
-             | otherwise = "/home/myself/example.hs"
+testFilePath
+  | isWindows = "C:\\Users\\myself\\example.hs"
+  | otherwise = "/home/myself/example.hs"
 
 withCurrentDirFilePath :: FilePath
-withCurrentDirFilePath | isWindows = "C:\\Users\\.\\myself\\.\\.\\example.hs"
-                       | otherwise = "/home/./myself/././example.hs"
+withCurrentDirFilePath
+  | isWindows = "C:\\Users\\.\\myself\\.\\.\\example.hs"
+  | otherwise = "/home/./myself/././example.hs"
 
 fromRelativefilePathUri :: Uri
-fromRelativefilePathUri | isWindows = Uri  "file:///myself/example.hs"
-                        | otherwise = Uri "file://myself/example.hs"
+fromRelativefilePathUri
+  | isWindows = Uri "file:///myself/example.hs"
+  | otherwise = Uri "file://myself/example.hs"
 
 relativeFilePath :: FilePath
-relativeFilePath | isWindows = "myself\\example.hs"
-                 | otherwise = "myself/example.hs"
+relativeFilePath
+  | isWindows = "myself\\example.hs"
+  | otherwise = "myself/example.hs"
 
 withLowerCaseDriveLetterFilePath :: FilePath
 withLowerCaseDriveLetterFilePath = "c:\\Users\\.\\myself\\.\\.\\example.hs"
 
 withInitialCurrentDirUriStr :: String
-withInitialCurrentDirUriStr | isWindows = "file:///Functional.hs"
-                            | otherwise = "file://Functional.hs"
+withInitialCurrentDirUriStr
+  | isWindows = "file:///Functional.hs"
+  | otherwise = "file://Functional.hs"
 
-withInitialCurrentDirUriParts :: (String, Maybe URIAuth,  String, String, String)
+withInitialCurrentDirUriParts :: (String, Maybe URIAuth, String, String, String)
 withInitialCurrentDirUriParts
   | isWindows =
-    ("file:"
-    ,Just (URIAuth {uriUserInfo = "", uriRegName = "", uriPort = ""}) -- JNS: And asymmetrical
-    ,"/Functional.hs","","")
+      ( "file:"
+      , Just (URIAuth{uriUserInfo = "", uriRegName = "", uriPort = ""}) -- JNS: And asymmetrical
+      , "/Functional.hs"
+      , ""
+      , ""
+      )
   | otherwise =
-     ("file:"
-    ,Just (URIAuth {uriUserInfo = "", uriRegName = "Functional.hs", uriPort = ""}) -- AZ: Seems odd
-    ,"","","")
+      ( "file:"
+      , Just (URIAuth{uriUserInfo = "", uriRegName = "Functional.hs", uriPort = ""}) -- AZ: Seems odd
+      , ""
+      , ""
+      , ""
+      )
 
 withInitialCurrentDirFilePath :: FilePath
-withInitialCurrentDirFilePath | isWindows = ".\\Functional.hs"
-                              | otherwise = "./Functional.hs"
+withInitialCurrentDirFilePath
+  | isWindows = ".\\Functional.hs"
+  | otherwise = "./Functional.hs"
 
 noNormalizedUriTxt :: Text
-noNormalizedUriTxt | isWindows = "file:///c:/Users/./myself/././example.hs"
-                   | otherwise = "file:///home/./myself/././example.hs"
+noNormalizedUriTxt
+  | isWindows = "file:///c:/Users/./myself/././example.hs"
+  | otherwise = "file:///home/./myself/././example.hs"
 
 noNormalizedUri :: Uri
 noNormalizedUri = Uri noNormalizedUriTxt
@@ -195,8 +207,8 @@
       theUri `shouldBe` testUri
 
   it "converts a file path to a URI and back" $ property $ forAll genFilePath $ \fp -> do
-      let uri = filePathToUri fp
-      uriToFilePath uri `shouldBe` Just (normalise fp)
+    let uri = filePathToUri fp
+    uriToFilePath uri `shouldBe` Just (normalise fp)
 
   it "converts a relative file path to a URI and back" $ do
     let uri = filePathToUri relativeFilePath
@@ -208,21 +220,20 @@
     let uri = filePathToUri withInitialCurrentDirFilePath
     uri `shouldBe` Uri (pack withInitialCurrentDirUriStr)
     let Just (URI scheme' auth' path' query' frag') = parseURI withInitialCurrentDirUriStr
-    (scheme',auth',path',query',frag') `shouldBe` withInitialCurrentDirUriParts
+    (scheme', auth', path', query', frag') `shouldBe` withInitialCurrentDirUriParts
     Just "Functional.hs" `shouldBe` uriToFilePath uri
 
 uriNormalizeSpec :: Spec
 uriNormalizeSpec = do
-
   it "ignores differences in percent-encoding" $ property $ \uri ->
-    toNormalizedUri (Uri $ pack $ escapeURIString isUnescapedInURI uri) `shouldBe`
-        toNormalizedUri (Uri $ pack $ escapeURIString (const False) uri)
+    toNormalizedUri (Uri $ pack $ escapeURIString isUnescapedInURI uri)
+      `shouldBe` toNormalizedUri (Uri $ pack $ escapeURIString (const False) uri)
 
   it "ignores differences in percent-encoding (examples)" $ do
-    toNormalizedUri (Uri $ pack "http://server/path%C3%B1?param=%C3%B1") `shouldBe`
-        toNormalizedUri (Uri $ pack "http://server/path%c3%b1?param=%c3%b1")
-    toNormalizedUri (Uri $ pack "file:///path%2A") `shouldBe`
-        toNormalizedUri (Uri $ pack "file:///path%2a")
+    toNormalizedUri (Uri $ pack "http://server/path%C3%B1?param=%C3%B1")
+      `shouldBe` toNormalizedUri (Uri $ pack "http://server/path%c3%b1?param=%c3%b1")
+    toNormalizedUri (Uri $ pack "file:///path%2A")
+      `shouldBe` toNormalizedUri (Uri $ pack "file:///path%2a")
 
   it "normalizes uri file path when converting from uri to normalized uri" $ do
     let (NormalizedUri _ uri) = toNormalizedUri noNormalizedUri
@@ -245,29 +256,33 @@
     let nuri = toNormalizedUri (filePathToUri fp)
     case uriToFilePath (fromNormalizedUri nuri) of
       Just nfp -> nfp `shouldBe` (normalise fp)
-      Nothing  -> return () -- Some unicode paths creates invalid uris, ignoring for now
+      Nothing -> return () -- Some unicode paths creates invalid uris, ignoring for now
 
 genFilePath :: Gen FilePath
-genFilePath | isWindows = genWindowsFilePath
-            | otherwise = genPosixFilePath
+genFilePath
+  | isWindows = genWindowsFilePath
+  | otherwise = genPosixFilePath
 
 genWindowsFilePath :: Gen FilePath
 genWindowsFilePath = do
-    segments <- listOf1 pathSegment
-    pathSep <- elements ['/', '\\']
-    driveLetter <- elements ["C:", "c:"]
-    pure (driveLetter <> [pathSep] <> intercalate [pathSep] segments)
-  where pathSegment = listOf1 (genValidUnicodeChar `suchThat` (`notElem` ['/', '\\', ':']))
+  segments <- listOf1 pathSegment
+  pathSep <- elements ['/', '\\']
+  driveLetter <- elements ["C:", "c:"]
+  pure (driveLetter <> [pathSep] <> intercalate [pathSep] segments)
+ where
+  pathSegment = listOf1 (genValidUnicodeChar `suchThat` (`notElem` ['/', '\\', ':']))
 
 genPosixFilePath :: Gen FilePath
 genPosixFilePath = do
-    segments <- listOf1 pathSegment
-    pure ("/" <> intercalate "/" segments)
-  where pathSegment = listOf1 (genValidUnicodeChar `suchThat` (`notElem` ['/']))
+  segments <- listOf1 pathSegment
+  pure ("/" <> intercalate "/" segments)
+ where
+  pathSegment = listOf1 (genValidUnicodeChar `suchThat` (`notElem` ['/']))
 
 genValidUnicodeChar :: Gen Char
 genValidUnicodeChar = arbitraryUnicodeChar `suchThat` isCharacter
-  where isCharacter x = x /= '\65534' && x /= '\65535'
+ where
+  isCharacter x = x /= '\65534' && x /= '\65535'
 
 normalizedFilePathSpec :: Spec
 normalizedFilePathSpec = beforeAll (setFileSystemEncoding utf8) $ do
@@ -279,8 +294,7 @@
     let nuri = normalizedFilePathToUri (toNormalizedFilePath fp)
     case uriToNormalizedFilePath nuri of
       Just nfp -> fromNormalizedFilePath nfp `shouldBe` (normalise fp)
-      Nothing  -> return () -- Some unicode paths creates invalid uris, ignoring for now
-
+      Nothing -> return () -- Some unicode paths creates invalid uris, ignoring for now
   it "converts a file path with reserved uri chars to a normalized URI and back" $ do
     let start = if isWindows then "C:\\" else "/"
     let fp = start ++ "path;part#fragmen?param=val"
diff --git a/test/WorkspaceEditSpec.hs b/test/WorkspaceEditSpec.hs
--- a/test/WorkspaceEditSpec.hs
+++ b/test/WorkspaceEditSpec.hs
@@ -1,28 +1,29 @@
 {-# LANGUAGE OverloadedStrings #-}
+
 module WorkspaceEditSpec where
 
-import           Language.LSP.Protocol.Types
-import           Test.Hspec
+import Language.LSP.Protocol.Types
+import Test.Hspec
 
 spec :: Spec
 spec = do
   describe "applyTextEdit" $ do
     it "inserts text" $
       let te = TextEdit (Range (Position 1 2) (Position 1 2)) "foo"
-        in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nipfoosum\ndolor"
+       in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nipfoosum\ndolor"
     it "deletes text" $
       let te = TextEdit (Range (Position 0 2) (Position 1 2)) ""
-        in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "losum\ndolor"
+       in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "losum\ndolor"
     it "edits a multiline text" $
       let te = TextEdit (Range (Position 1 0) (Position 2 0)) "slorem"
-        in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nsloremdolor"
+       in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nsloremdolor"
     it "inserts text past the last line" $
       let te = TextEdit (Range (Position 3 2) (Position 3 2)) "foo"
-        in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nipsum\ndolorfoo"
+       in applyTextEdit te "lorem\nipsum\ndolor" `shouldBe` "lorem\nipsum\ndolorfoo"
 
   describe "editTextEdit" $
     it "edits a multiline text edit" $
       let orig = TextEdit (Range (Position 1 1) (Position 2 2)) "hello\nworld"
           inner = TextEdit (Range (Position 0 3) (Position 1 3)) "ios\ngo"
           expected = TextEdit (Range (Position 1 1) (Position 2 2)) "helios\ngold"
-         in editTextEdit orig inner `shouldBe` expected
+       in editTextEdit orig inner `shouldBe` expected
