devsense-php-ls-node 1.0.17841 → 1.0.17849
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.
- package/dist/protocol.d.ts +3 -0
- package/dist/protocol.js +1 -0
- package/package.json +1 -1
package/dist/protocol.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ export declare namespace Devsense.LanguageServer.Protocol {
|
|
|
18
18
|
diagnostics: Diagnostic[];
|
|
19
19
|
}[], any>;
|
|
20
20
|
const isBlacklisted: rpc.RequestType<string, boolean, any>;
|
|
21
|
+
const devsenseListProjectFiles: rpc.RequestType<any, {
|
|
22
|
+
uri: string;
|
|
23
|
+
}[], any>;
|
|
21
24
|
const initialize: rpc.RequestType<any, any, any>;
|
|
22
25
|
const windowShowMessage: rpc.NotificationType<{
|
|
23
26
|
message: string;
|
package/dist/protocol.js
CHANGED
|
@@ -11,6 +11,7 @@ var Devsense;
|
|
|
11
11
|
Protocol.devsenseLoadStatus = new rpc.NotificationType('devsense/loadStatus');
|
|
12
12
|
Protocol.workspaceDiagnostics = new rpc.RequestType('workspace/diagnostics');
|
|
13
13
|
Protocol.isBlacklisted = new rpc.RequestType('devsense/license/isblacklisted');
|
|
14
|
+
Protocol.devsenseListProjectFiles = new rpc.RequestType('devsense/project/listDocuments');
|
|
14
15
|
Protocol.initialize = new rpc.RequestType('initialize');
|
|
15
16
|
Protocol.windowShowMessage = new rpc.NotificationType('window/showMessage');
|
|
16
17
|
Protocol.windowLogMessage = new rpc.NotificationType('window/logMessage');
|