@depup/vscode-languageserver-protocol 3.18.3-depup.0 → 3.18.4-depup.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/README.md CHANGED
@@ -13,8 +13,8 @@ npm install @depup/vscode-languageserver-protocol
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [vscode-languageserver-protocol](https://www.npmjs.com/package/vscode-languageserver-protocol) @ 3.18.3 |
17
- | Processed | 2026-08-30 |
16
+ | Original | [vscode-languageserver-protocol](https://www.npmjs.com/package/vscode-languageserver-protocol) @ 3.18.4 |
17
+ | Processed | 2026-09-27 |
18
18
  | Smoke test | passed |
19
19
  | Deps updated | 0 |
20
20
 
package/changes.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "bumped": {},
3
- "timestamp": "2026-08-30T01:01:05.547Z",
3
+ "timestamp": "2026-09-27T01:04:58.900Z",
4
4
  "totalUpdated": 0
5
5
  }
@@ -1,7 +1,7 @@
1
1
  import { RequestHandler, RequestHandler0 } from 'vscode-jsonrpc';
2
2
  import { Range, TextDocumentIdentifier, InlayHint } from 'vscode-languageserver-types';
3
3
  import { CM, MessageDirection, ProtocolRequestType, ProtocolRequestType0 } from './messages';
4
- import { type StaticRegistrationOptions, type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type WorkDoneProgressParams } from './protocol';
4
+ import { type PartialResultParams, type StaticRegistrationOptions, type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type WorkDoneProgressParams } from './protocol';
5
5
  /**
6
6
  * @since 3.18.0
7
7
  */
@@ -67,7 +67,7 @@ export type InlayHintRegistrationOptions = InlayHintOptions & TextDocumentRegist
67
67
  *
68
68
  * @since 3.17.0
69
69
  */
70
- export type InlayHintParams = WorkDoneProgressParams & {
70
+ export type InlayHintParams = WorkDoneProgressParams & PartialResultParams & {
71
71
  /**
72
72
  * The text document.
73
73
  */
@@ -1,7 +1,7 @@
1
1
  import { InlineCompletionItem, InlineCompletionContext, InlineCompletionList } from 'vscode-languageserver-types';
2
2
  import { RequestHandler } from 'vscode-jsonrpc';
3
3
  import { CM, MessageDirection, ProtocolRequestType } from './messages';
4
- import { type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type StaticRegistrationOptions, type WorkDoneProgressParams, type TextDocumentPositionParams } from './protocol';
4
+ import { type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type StaticRegistrationOptions, type WorkDoneProgressParams, type TextDocumentPositionParams, type PartialResultParams } from './protocol';
5
5
  /**
6
6
  * Client capabilities specific to inline completions.
7
7
  *
@@ -30,7 +30,7 @@ export type InlineCompletionRegistrationOptions = InlineCompletionOptions & Text
30
30
  *
31
31
  * @since 3.18.0
32
32
  */
33
- export type InlineCompletionParams = WorkDoneProgressParams & TextDocumentPositionParams & {
33
+ export type InlineCompletionParams = WorkDoneProgressParams & TextDocumentPositionParams & PartialResultParams & {
34
34
  /**
35
35
  * Additional information about the context in which inline completions were
36
36
  * requested.
@@ -1,7 +1,7 @@
1
1
  import { TextDocumentIdentifier, Range, InlineValue, InlineValueContext } from 'vscode-languageserver-types';
2
2
  import { RequestHandler, RequestHandler0 } from 'vscode-jsonrpc';
3
3
  import { CM, MessageDirection, ProtocolRequestType, ProtocolRequestType0 } from './messages';
4
- import { type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type StaticRegistrationOptions, type WorkDoneProgressParams } from './protocol';
4
+ import { type TextDocumentRegistrationOptions, type WorkDoneProgressOptions, type StaticRegistrationOptions, type WorkDoneProgressParams, type PartialResultParams } from './protocol';
5
5
  /**
6
6
  * Client capabilities specific to inline values.
7
7
  *
@@ -47,7 +47,7 @@ export type InlineValueRegistrationOptions = InlineValueOptions & TextDocumentRe
47
47
  *
48
48
  * @since 3.17.0
49
49
  */
50
- export type InlineValueParams = WorkDoneProgressParams & {
50
+ export type InlineValueParams = WorkDoneProgressParams & PartialResultParams & {
51
51
  /**
52
52
  * The text document.
53
53
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@depup/vscode-languageserver-protocol",
3
3
  "description": "VSCode Language Server Protocol implementation (with updated dependencies)",
4
- "version": "3.18.3-depup.0",
4
+ "version": "3.18.4-depup.0",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -27,8 +27,8 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "vscode-jsonrpc": "9.0.2",
31
- "vscode-languageserver-types": "3.18.3"
30
+ "vscode-jsonrpc": "9.0.3",
31
+ "vscode-languageserver-types": "3.18.4"
32
32
  },
33
33
  "scripts": {
34
34
  "postpublish": "node ../build/npm/post-publish.js",
@@ -61,8 +61,8 @@
61
61
  "changes": {},
62
62
  "depsUpdated": 0,
63
63
  "originalPackage": "vscode-languageserver-protocol",
64
- "originalVersion": "3.18.3",
65
- "processedAt": "2026-08-30T01:01:06.341Z",
64
+ "originalVersion": "3.18.4",
65
+ "processedAt": "2026-09-27T01:04:59.704Z",
66
66
  "smokeTest": "passed"
67
67
  }
68
68
  }