vscode-languageserver-protocol 3.17.6-next.13 → 3.17.6-next.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -64,4 +64,5 @@ export declare namespace ColorPresentationRequest {
|
|
|
64
64
|
const messageDirection: MessageDirection;
|
|
65
65
|
const type: ProtocolRequestType<ColorPresentationParams, ColorPresentation[], ColorPresentation[], void, WorkDoneProgressOptions & TextDocumentRegistrationOptions>;
|
|
66
66
|
type HandlerSignature = RequestHandler<ColorPresentationParams, ColorPresentation[], void>;
|
|
67
|
+
const capabilities: CM<"textDocument.colorProvider", "colorProvider">;
|
|
67
68
|
}
|
|
@@ -30,4 +30,5 @@ var ColorPresentationRequest;
|
|
|
30
30
|
ColorPresentationRequest.method = 'textDocument/colorPresentation';
|
|
31
31
|
ColorPresentationRequest.messageDirection = messages_1.MessageDirection.clientToServer;
|
|
32
32
|
ColorPresentationRequest.type = new messages_1.ProtocolRequestType(ColorPresentationRequest.method);
|
|
33
|
+
ColorPresentationRequest.capabilities = messages_1.CM.create('textDocument.colorProvider', 'colorProvider');
|
|
33
34
|
})(ColorPresentationRequest || (exports.ColorPresentationRequest = ColorPresentationRequest = {}));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vscode-languageserver-protocol",
|
|
3
3
|
"description": "VSCode Language Server Protocol implementation",
|
|
4
|
-
"version": "3.17.6-next.
|
|
4
|
+
"version": "3.17.6-next.14",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"vscode-jsonrpc": "9.0.0-next.
|
|
30
|
+
"vscode-jsonrpc": "9.0.0-next.9",
|
|
31
31
|
"vscode-languageserver-types": "3.17.6-next.6"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|