vscode-languageserver-protocol 3.17.2-next.3 → 3.17.2-next.6

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.
@@ -720,7 +720,7 @@ export interface ClientCapabilities {
720
720
  /**
721
721
  * Experimental client capabilities.
722
722
  */
723
- experimental?: object;
723
+ experimental?: LSPAny;
724
724
  }
725
725
  /**
726
726
  * Static registration options to be returned in the initialize
@@ -785,7 +785,7 @@ export declare namespace WorkDoneProgressOptions {
785
785
  * Defines the capabilities provided by a language
786
786
  * server.
787
787
  */
788
- export interface ServerCapabilities<T = any> {
788
+ export interface ServerCapabilities<T = LSPAny> {
789
789
  /**
790
790
  * The position encoding the server picked from the encodings offered
791
791
  * by the client via the client capability `general.positionEncodings`.
@@ -177,7 +177,8 @@
177
177
  "name": {
178
178
  "enum": [
179
179
  "string",
180
- "integer"
180
+ "integer",
181
+ "uinteger"
181
182
  ],
182
183
  "type": "string"
183
184
  }
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.2-next.3",
4
+ "version": "3.17.2-next.6",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -22,7 +22,7 @@
22
22
  "vscode-languageserver-types": "3.17.2-next.2"
23
23
  },
24
24
  "scripts": {
25
- "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test",
25
+ "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile && npm test && cd .. && npm run generate:metaModel && npm run generate:metaModelSchema && cd ./protocol",
26
26
  "postpublish": "node ../build/npm/post-publish.js",
27
27
  "preversion": "npm test",
28
28
  "compile": "node ../build/bin/tsc -b ./tsconfig.json",