@codingame/monaco-vscode-api 28.0.0 → 28.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-api",
3
- "version": "28.0.0",
3
+ "version": "28.1.1",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor",
6
6
  "keywords": [],
@@ -15,15 +15,15 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-base-service-override": "28.0.0",
19
- "@codingame/monaco-vscode-environment-service-override": "28.0.0",
20
- "@codingame/monaco-vscode-extensions-service-override": "28.0.0",
21
- "@codingame/monaco-vscode-files-service-override": "28.0.0",
22
- "@codingame/monaco-vscode-host-service-override": "28.0.0",
23
- "@codingame/monaco-vscode-layout-service-override": "28.0.0",
24
- "@codingame/monaco-vscode-quickaccess-service-override": "28.0.0",
18
+ "@codingame/monaco-vscode-base-service-override": "28.1.1",
19
+ "@codingame/monaco-vscode-environment-service-override": "28.1.1",
20
+ "@codingame/monaco-vscode-extensions-service-override": "28.1.1",
21
+ "@codingame/monaco-vscode-files-service-override": "28.1.1",
22
+ "@codingame/monaco-vscode-host-service-override": "28.1.1",
23
+ "@codingame/monaco-vscode-layout-service-override": "28.1.1",
24
+ "@codingame/monaco-vscode-quickaccess-service-override": "28.1.1",
25
25
  "@vscode/iconv-lite-umd": "0.7.1",
26
- "dompurify": "3.3.2",
26
+ "dompurify": "3.3.3",
27
27
  "jschardet": "3.1.4",
28
28
  "marked": "14.0.0"
29
29
  },
package/services.js CHANGED
@@ -426,10 +426,10 @@ export { IGitService } from './vscode/src/vs/workbench/contrib/git/common/gitSer
426
426
  export { IWorkbenchMcpGatewayService } from './vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.js';
427
427
  export { IMcpSandboxService } from './vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.service.js';
428
428
 
429
- if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.111.0-b9bb8632-9784-4440-a964-b9579601bc05") {
430
- throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.111.0-b9bb8632-9784-4440-a964-b9579601bc05"}, ${window.monacoVscodeApiBuildId} is already loaded`);
429
+ if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.111.0-103b66ac-4d8d-47bd-9b51-cdf0ea46020a") {
430
+ throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.111.0-103b66ac-4d8d-47bd-9b51-cdf0ea46020a"}, ${window.monacoVscodeApiBuildId} is already loaded`);
431
431
  }
432
- window.monacoVscodeApiBuildId = "1.111.0-b9bb8632-9784-4440-a964-b9579601bc05";
432
+ window.monacoVscodeApiBuildId = "1.111.0-103b66ac-4d8d-47bd-9b51-cdf0ea46020a";
433
433
  function registerCommands(options) {
434
434
  function asMenuId(menu) {
435
435
  switch (menu) {
@@ -1272,12 +1272,16 @@ export interface IChatParticipantContribution {
1272
1272
  commands?: {
1273
1273
  name: string;
1274
1274
  }[];
1275
+ modes: string[];
1275
1276
  }
1276
1277
  export interface IToolContribution {
1277
1278
  name: string;
1278
1279
  displayName: string;
1279
1280
  modelDescription: string;
1280
1281
  userDescription?: string;
1282
+ toolReferenceName?: string;
1283
+ canBeReferencedInPrompt?: boolean;
1284
+ inputSchema?: object;
1281
1285
  }
1282
1286
  export interface IToolSetContribution {
1283
1287
  name: string;
@@ -1297,6 +1301,10 @@ export interface IChatFileContribution {
1297
1301
  readonly description?: string;
1298
1302
  readonly when?: string;
1299
1303
  }
1304
+ export interface ILanguageModelChatProvider {
1305
+ vendor: string;
1306
+ displayName?: string;
1307
+ }
1300
1308
  export interface IExtensionContributions {
1301
1309
  /**
1302
1310
  * Contributes terminal functionality.
@@ -1412,6 +1420,7 @@ export interface IExtensionContributions {
1412
1420
  readonly languageModelToolSets?: ReadonlyArray<IToolSetContribution>;
1413
1421
  readonly mcpServerDefinitionProviders?: ReadonlyArray<IMcpCollectionContribution>;
1414
1422
  readonly modelContextServerCollections?: ReadonlyArray<IMcpCollectionContribution>;
1423
+ readonly languageModelChatProviders?: ReadonlyArray<ILanguageModelChatProvider>;
1415
1424
  /**
1416
1425
  * Contributes notebook preloads.
1417
1426
  */
@@ -6,7 +6,7 @@ var product = {
6
6
  quality: 'stable',
7
7
  version: '1.111.0',
8
8
  commit: 'ce099c1ed25d9eb3076c11e4a280f3eb52b4fbeb',
9
- date: '2026-03-09T18:12:43.282Z',
9
+ date: '2026-03-17T13:41:25.565Z',
10
10
  ...(globalThis._VSCODE_PRODUCT_JSON ?? {})
11
11
  };
12
12