@jupyterlab/lsp 4.0.0-alpha.21 → 4.0.0-beta.0

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/lib/schema.d.ts CHANGED
@@ -147,6 +147,7 @@ export interface ServerSpecProperties {
147
147
  troubleshoot?: Troubleshooting;
148
148
  urls?: URLs;
149
149
  version?: SpecSchemaVersion;
150
+ workspace_configuration?: WorkspaceConfiguration;
150
151
  [k: string]: any;
151
152
  }
152
153
  /**
@@ -173,6 +174,12 @@ export interface Installation1 {
173
174
  export interface URLs {
174
175
  [k: string]: string;
175
176
  }
177
+ /**
178
+ * default values to include in the client `workspace/configuration` reply (also known as `serverSettings`). User may override these defaults. The keys should be fully qualified (dotted) names of settings (nested specification is not supported).
179
+ */
180
+ export interface WorkspaceConfiguration {
181
+ [k: string]: any;
182
+ }
176
183
  /**
177
184
  * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
178
185
  * via the `definition` "servers-response".
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/lsp",
3
- "version": "4.0.0-alpha.21",
3
+ "version": "4.0.0-beta.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -44,27 +44,28 @@
44
44
  "vscode-languageserver-protocol": "^3.17.0"
45
45
  },
46
46
  "dependencies": {
47
- "@jupyterlab/apputils": "^4.0.0-alpha.21",
48
- "@jupyterlab/codeeditor": "^4.0.0-alpha.21",
49
- "@jupyterlab/coreutils": "^6.0.0-alpha.21",
50
- "@jupyterlab/docregistry": "^4.0.0-alpha.21",
51
- "@jupyterlab/services": "^7.0.0-alpha.21",
52
- "@jupyterlab/translation": "^4.0.0-alpha.21",
53
- "@lumino/coreutils": "^2.0.0-rc.1",
54
- "@lumino/disposable": "^2.0.0-rc.1",
55
- "@lumino/signaling": "^2.0.0-rc.1",
47
+ "@jupyterlab/apputils": "^4.0.0-beta.0",
48
+ "@jupyterlab/codeeditor": "^4.0.0-beta.0",
49
+ "@jupyterlab/coreutils": "^6.0.0-beta.0",
50
+ "@jupyterlab/docregistry": "^4.0.0-beta.0",
51
+ "@jupyterlab/services": "^7.0.0-beta.0",
52
+ "@jupyterlab/translation": "^4.0.0-beta.0",
53
+ "@lumino/coreutils": "^2.0.0",
54
+ "@lumino/disposable": "^2.0.0",
55
+ "@lumino/signaling": "^2.0.0",
56
56
  "lodash.mergewith": "^4.6.1",
57
57
  "vscode-jsonrpc": "^6.0.0",
58
58
  "vscode-languageserver-protocol": "^3.17.0",
59
59
  "vscode-ws-jsonrpc": "~1.0.2"
60
60
  },
61
61
  "devDependencies": {
62
- "@jupyterlab/testing": "^4.0.0-alpha.21",
62
+ "@jupyterlab/testing": "^4.0.0-beta.0",
63
63
  "@types/jest": "^29.2.0",
64
64
  "@types/lodash.mergewith": "^4.6.1",
65
+ "jest": "^29.2.0",
65
66
  "json-schema-to-typescript": "^8.0.0",
66
67
  "rimraf": "~3.0.0",
67
- "typescript": "~5.0.1-rc"
68
+ "typescript": "~5.0.2"
68
69
  },
69
70
  "publishConfig": {
70
71
  "access": "public"
package/src/schema.ts CHANGED
@@ -155,6 +155,7 @@ export interface ServerSpecProperties {
155
155
  troubleshoot?: Troubleshooting;
156
156
  urls?: URLs;
157
157
  version?: SpecSchemaVersion;
158
+ workspace_configuration?: WorkspaceConfiguration;
158
159
  [k: string]: any;
159
160
  }
160
161
  /**
@@ -183,6 +184,12 @@ export interface Installation1 {
183
184
  export interface URLs {
184
185
  [k: string]: string;
185
186
  }
187
+ /**
188
+ * default values to include in the client `workspace/configuration` reply (also known as `serverSettings`). User may override these defaults. The keys should be fully qualified (dotted) names of settings (nested specification is not supported).
189
+ */
190
+ export interface WorkspaceConfiguration {
191
+ [k: string]: any;
192
+ }
186
193
  /**
187
194
  * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
188
195
  * via the `definition` "servers-response".