vscode-languageserver-protocol 3.17.4 → 3.17.5
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RequestHandler, HandlerResult, CancellationToken } from 'vscode-jsonrpc';
|
|
2
|
-
import { LSPAny } from 'vscode-languageserver-types';
|
|
2
|
+
import { LSPAny, URI } from 'vscode-languageserver-types';
|
|
3
3
|
import { MessageDirection, ProtocolRequestType } from './messages';
|
|
4
4
|
/**
|
|
5
5
|
* The 'workspace/configuration' request is sent from the server to the client to fetch a certain
|
|
@@ -21,7 +21,7 @@ export interface ConfigurationItem {
|
|
|
21
21
|
/**
|
|
22
22
|
* The scope to get the configuration section for.
|
|
23
23
|
*/
|
|
24
|
-
scopeUri?:
|
|
24
|
+
scopeUri?: URI;
|
|
25
25
|
/**
|
|
26
26
|
* The configuration section asked for.
|
|
27
27
|
*/
|
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.
|
|
4
|
+
"version": "3.17.5",
|
|
5
5
|
"author": "Microsoft Corporation",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"typings": "./lib/common/api.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"vscode-jsonrpc": "8.2.0",
|
|
22
|
-
"vscode-languageserver-types": "3.17.
|
|
22
|
+
"vscode-languageserver-types": "3.17.5"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
|