@jupyterlab/lsp 4.6.0 → 4.6.1

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/plugin.d.ts CHANGED
@@ -6,7 +6,7 @@
6
6
  /**
7
7
  * Enable or disable the language server services.
8
8
  */
9
- export type Activate = Off | On;
9
+ export type Activate = (Off | On) & string;
10
10
  export type Off = 'off';
11
11
  export type On = 'on';
12
12
  /**
@@ -16,7 +16,7 @@ export type RankOfTheServer = number;
16
16
  /**
17
17
  * Whether to ask server to send logs with execution trace (for debugging). Accepted values are: "off", "messages", "verbose". Servers are allowed to ignore this request.
18
18
  */
19
- export type AskServersToSendTraceNotifications = Off1 | Messages | Verbose;
19
+ export type AskServersToSendTraceNotifications = (Off1 | Messages | Verbose) & string;
20
20
  export type Off1 = 'off';
21
21
  export type Messages = 'messages';
22
22
  export type Verbose = 'verbose';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/lsp",
3
- "version": "4.6.0",
3
+ "version": "4.6.1",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,13 +41,13 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/apputils": "^4.7.0",
45
- "@jupyterlab/codeeditor": "^4.6.0",
46
- "@jupyterlab/codemirror": "^4.6.0",
47
- "@jupyterlab/coreutils": "^6.6.0",
48
- "@jupyterlab/docregistry": "^4.6.0",
49
- "@jupyterlab/services": "^7.6.0",
50
- "@jupyterlab/translation": "^4.6.0",
44
+ "@jupyterlab/apputils": "^4.7.1",
45
+ "@jupyterlab/codeeditor": "^4.6.1",
46
+ "@jupyterlab/codemirror": "^4.6.1",
47
+ "@jupyterlab/coreutils": "^6.6.1",
48
+ "@jupyterlab/docregistry": "^4.6.1",
49
+ "@jupyterlab/services": "^7.6.1",
50
+ "@jupyterlab/translation": "^4.6.1",
51
51
  "@lumino/coreutils": "^2.2.2",
52
52
  "@lumino/disposable": "^2.1.5",
53
53
  "@lumino/signaling": "^2.1.5",
@@ -58,7 +58,7 @@
58
58
  "vscode-ws-jsonrpc": "~1.0.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@jupyterlab/testing": "^4.6.0",
61
+ "@jupyterlab/testing": "^4.6.1",
62
62
  "@types/jest": "^29.2.0",
63
63
  "@types/lodash.mergewith": "^4.6.1",
64
64
  "jest": "^29.2.0",
package/src/plugin.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  /**
12
12
  * Enable or disable the language server services.
13
13
  */
14
- export type Activate = Off | On;
14
+ export type Activate = (Off | On) & string;
15
15
  export type Off = 'off';
16
16
  export type On = 'on';
17
17
  /**
@@ -21,7 +21,8 @@ export type RankOfTheServer = number;
21
21
  /**
22
22
  * Whether to ask server to send logs with execution trace (for debugging). Accepted values are: "off", "messages", "verbose". Servers are allowed to ignore this request.
23
23
  */
24
- export type AskServersToSendTraceNotifications = Off1 | Messages | Verbose;
24
+ export type AskServersToSendTraceNotifications = (Off1 | Messages | Verbose) &
25
+ string;
25
26
  export type Off1 = 'off';
26
27
  export type Messages = 'messages';
27
28
  export type Verbose = 'verbose';