@codingame/monaco-vscode-api 28.3.0 → 28.3.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.
|
|
3
|
+
"version": "28.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-base-service-override": "28.3.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "28.3.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "28.3.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "28.3.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "28.3.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "28.3.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "28.3.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "28.3.1",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "28.3.1",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "28.3.1",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "28.3.1",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "28.3.1",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "28.3.1",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "28.3.1",
|
|
25
25
|
"@vscode/iconv-lite-umd": "0.7.1",
|
|
26
26
|
"dompurify": "3.3.3",
|
|
27
27
|
"jschardet": "3.1.4",
|
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-3b5f125b-468e-481d-849e-dbea82b8e761") {
|
|
430
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.111.0-3b5f125b-468e-481d-849e-dbea82b8e761"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
431
431
|
}
|
|
432
|
-
window.monacoVscodeApiBuildId = "1.111.0-
|
|
432
|
+
window.monacoVscodeApiBuildId = "1.111.0-3b5f125b-468e-481d-849e-dbea82b8e761";
|
|
433
433
|
function registerCommands(options) {
|
|
434
434
|
function asMenuId(menu) {
|
|
435
435
|
switch (menu) {
|
|
@@ -1267,21 +1267,38 @@ export interface IChatParticipantContribution {
|
|
|
1267
1267
|
id: string;
|
|
1268
1268
|
name: string;
|
|
1269
1269
|
fullName: string;
|
|
1270
|
+
when?: string;
|
|
1270
1271
|
description?: string;
|
|
1271
1272
|
isDefault?: boolean;
|
|
1273
|
+
isSticky?: boolean;
|
|
1274
|
+
sampleRequest?: string;
|
|
1272
1275
|
commands?: {
|
|
1273
1276
|
name: string;
|
|
1274
1277
|
}[];
|
|
1278
|
+
locations?: string[];
|
|
1275
1279
|
modes: string[];
|
|
1280
|
+
disambiguation?: {
|
|
1281
|
+
category: string;
|
|
1282
|
+
categoryName?: string /** Deprecated */;
|
|
1283
|
+
description: string;
|
|
1284
|
+
examples: string[];
|
|
1285
|
+
}[];
|
|
1276
1286
|
}
|
|
1277
1287
|
export interface IToolContribution {
|
|
1278
1288
|
name: string;
|
|
1279
1289
|
displayName: string;
|
|
1280
1290
|
modelDescription: string;
|
|
1281
|
-
userDescription?: string;
|
|
1282
1291
|
toolReferenceName?: string;
|
|
1292
|
+
legacyToolReferenceFullNames?: string[];
|
|
1293
|
+
icon?: string | {
|
|
1294
|
+
light: string;
|
|
1295
|
+
dark: string;
|
|
1296
|
+
};
|
|
1297
|
+
when?: string;
|
|
1298
|
+
tags?: string[];
|
|
1299
|
+
userDescription?: string;
|
|
1300
|
+
inputSchema?: IJSONSchema;
|
|
1283
1301
|
canBeReferencedInPrompt?: boolean;
|
|
1284
|
-
inputSchema?: object;
|
|
1285
1302
|
}
|
|
1286
1303
|
export interface IToolSetContribution {
|
|
1287
1304
|
name: string;
|