Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-languageserver-protocol

Package Overview
Dependencies
Maintainers
11
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-languageserver-protocol - npm Package Compare versions

Comparing version 3.6.0 to 3.7.0

lib/protocol.colorProvider.proposed.d.ts

47

lib/protocol.d.ts

@@ -48,3 +48,3 @@ import { RequestType, RequestType0, NotificationType, NotificationType0 } from 'vscode-jsonrpc';

/**
* General paramters to to regsiter for an notification or to register a provider.
* General parameters to to register for an notification or to register a provider.
*/

@@ -413,2 +413,11 @@ export interface Registration {

};
/**
* Capabilities specific to `textDocument/publishDiagnostics`.
*/
publishDiagnostics?: {
/**
* Whether the clients accepts diagnostics with related information.
*/
relatedInformation?: boolean;
};
}

@@ -562,4 +571,4 @@ /**

/**
* Change notificatins are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
* and TextDocumentSyncKindIncremental.
* Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
* and TextDocumentSyncKind.Incremental.
*/

@@ -718,3 +727,3 @@ change?: TextDocumentSyncKind;

/**
* The result returned from an initilize request.
* The result returned from an initialize request.
*/

@@ -758,3 +767,3 @@ export interface InitializeResult {

/**
* The intialized notification is send from the client to the
* The intialized notification is sent from the client to the
* server after the client is fully initialized and the server

@@ -768,4 +777,4 @@ * is allowed to send requests from the server to the client.

* A shutdown request is sent from the client to the server.
* It is sent once when the client descides to shutdown the
* server. The only notification that is sent after a shudown request
* It is sent once when the client decides to shutdown the
* server. The only notification that is sent after a shutdown request
* is the exit event.

@@ -866,3 +875,3 @@ */

/**
* The show message request is sent from the server to the clinet to show a message
* The show message request is sent from the server to the client to show a message
* and a set of options actions to the user.

@@ -933,3 +942,3 @@ */

/**
* The actual content changes. The content changes descibe single state changes
* The actual content changes. The content changes describe single state changes
* to the document. So if there are two content changes c1 and c2 for a document

@@ -941,3 +950,3 @@ * in state S10 then c1 move the document to S11 and c2 to S12.

/**
* Descibe options to be used when registered for text document change events.
* Describe options to be used when registered for text document change events.
*/

@@ -973,3 +982,3 @@ export interface TextDocumentChangeRegistrationOptions extends TextDocumentRegistrationOptions {

* doesn't mean that the document was open in an editor before. A close
* notification requires a previous open notifaction to be sent.
* notification requires a previous open notification to be sent.
*/

@@ -989,3 +998,3 @@ export declare namespace DidCloseTextDocumentNotification {

* Optional the content when saved. Depends on the includeText value
* when the save notifcation was requested.
* when the save notification was requested.
*/

@@ -1039,6 +1048,6 @@ text?: string;

* The watched files notification is sent from the client to the server when
* the client detects changes to file watched by the lanaguage client.
* the client detects changes to file watched by the language client.
*/
export declare namespace DidChangeWatchedFilesNotification {
const type: NotificationType<DidChangeWatchedFilesParams, void>;
const type: NotificationType<DidChangeWatchedFilesParams, DidChangeWatchedFilesRegistrationOptions>;
}

@@ -1086,3 +1095,3 @@ /**

/**
* Descibe options to be used when registered for text document change events.
* Describe options to be used when registered for text document change events.
*/

@@ -1198,3 +1207,3 @@ export interface DidChangeWatchedFilesRegistrationOptions {

* and [`documentation`](#CompletionItem.documentation) properties to the `completionItem/resolve`
* request. However, properties that are needed for the inital sorting and filtering, like `sortText`,
* request. However, properties that are needed for the initial sorting and filtering, like `sortText`,
* `filterText`, `insertText`, and `textEdit`, must not be changed during resolve.

@@ -1230,3 +1239,3 @@ */

/**
* A request to resolve the defintion location of a symbol at a given text
* A request to resolve the definition location of a symbol at a given text
* document position. The request's parameter is of type [TextDocumentPosition]

@@ -1257,3 +1266,3 @@ * (#TextDocumentPosition) the response is of type [Definition](#Definition) or a

* text document position. The request's parameter is of type [TextDocumentPosition]
* (#TextDocumentPosition) the request reponse is of type [DocumentHighlight[]]
* (#TextDocumentPosition) the request response is of type [DocumentHighlight[]]
* (#DocumentHighlight) or a Thenable that resolves to such.

@@ -1481,3 +1490,3 @@ */

/**
* A reponse returned from the apply workspace edit request.
* A response returned from the apply workspace edit request.
*/

@@ -1484,0 +1493,0 @@ export interface ApplyWorkspaceEditResponse {

@@ -91,3 +91,3 @@ /* --------------------------------------------------------------------------------------------

/**
* The intialized notification is send from the client to the
* The intialized notification is sent from the client to the
* server after the client is fully initialized and the server

@@ -103,4 +103,4 @@ * is allowed to send requests from the server to the client.

* A shutdown request is sent from the client to the server.
* It is sent once when the client descides to shutdown the
* server. The only notification that is sent after a shudown request
* It is sent once when the client decides to shutdown the
* server. The only notification that is sent after a shutdown request
* is the exit event.

@@ -163,3 +163,3 @@ */

/**
* The show message request is sent from the server to the clinet to show a message
* The show message request is sent from the server to the client to show a message
* and a set of options actions to the user.

@@ -217,3 +217,3 @@ */

* doesn't mean that the document was open in an editor before. A close
* notification requires a previous open notifaction to be sent.
* notification requires a previous open notification to be sent.
*/

@@ -255,3 +255,3 @@ var DidCloseTextDocumentNotification;

* The watched files notification is sent from the client to the server when
* the client detects changes to file watched by the lanaguage client.
* the client detects changes to file watched by the language client.
*/

@@ -332,3 +332,3 @@ var DidChangeWatchedFilesNotification;

* and [`documentation`](#CompletionItem.documentation) properties to the `completionItem/resolve`
* request. However, properties that are needed for the inital sorting and filtering, like `sortText`,
* request. However, properties that are needed for the initial sorting and filtering, like `sortText`,
* `filterText`, `insertText`, and `textEdit`, must not be changed during resolve.

@@ -365,3 +365,3 @@ */

/**
* A request to resolve the defintion location of a symbol at a given text
* A request to resolve the definition location of a symbol at a given text
* document position. The request's parameter is of type [TextDocumentPosition]

@@ -389,3 +389,3 @@ * (#TextDocumentPosition) the response is of type [Definition](#Definition) or a

* text document position. The request's parameter is of type [TextDocumentPosition]
* (#TextDocumentPosition) the request reponse is of type [DocumentHighlight[]]
* (#TextDocumentPosition) the request response is of type [DocumentHighlight[]]
* (#DocumentHighlight) or a Thenable that resolves to such.

@@ -392,0 +392,0 @@ */

{
"name": "vscode-languageserver-protocol",
"description": "VSCode Language Server Protocol implementation",
"version": "3.6.0",
"version": "3.7.0",
"author": "Microsoft Corporation",

@@ -18,3 +18,3 @@ "license": "MIT",

"vscode-jsonrpc": "^3.6.0",
"vscode-languageserver-types": "^3.6.0"
"vscode-languageserver-types": "^3.7.0"
},

@@ -21,0 +21,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc