@codingame/monaco-vscode-api 28.0.1 → 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.
|
|
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.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "28.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "28.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "28.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "28.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "28.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "28.
|
|
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.
|
|
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-
|
|
430
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.111.0-
|
|
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-
|
|
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
|
*/
|