@codingame/monaco-vscode-mcp-service-override 22.1.8 → 22.1.9

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-mcp-service-override",
3
- "version": "22.1.8",
3
+ "version": "22.1.9",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - mcp service-override",
6
6
  "keywords": [],
@@ -15,21 +15,21 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-2673c6e2-17c1-5710-b169-46f3d4a28696-common": "22.1.8",
19
- "@codingame/monaco-vscode-37b3b402-09f5-5f69-89ef-ce30559f63cc-common": "22.1.8",
20
- "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "22.1.8",
21
- "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "22.1.8",
22
- "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "22.1.8",
23
- "@codingame/monaco-vscode-62190c26-af1c-5f7a-a364-e05a59cfb7c7-common": "22.1.8",
24
- "@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "22.1.8",
25
- "@codingame/monaco-vscode-api": "22.1.8",
26
- "@codingame/monaco-vscode-b994942c-360d-5b68-8a33-77d4bde6b714-common": "22.1.8",
27
- "@codingame/monaco-vscode-c2deffc4-ad68-5e63-8f95-9b89e0fc6898-common": "22.1.8",
28
- "@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common": "22.1.8",
29
- "@codingame/monaco-vscode-cf77987b-b1b7-5359-aaf8-a259c63d9f03-common": "22.1.8",
30
- "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "22.1.8",
31
- "@codingame/monaco-vscode-dc3fa21d-a483-5b99-a7ab-173235644a34-common": "22.1.8",
32
- "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "22.1.8"
18
+ "@codingame/monaco-vscode-2673c6e2-17c1-5710-b169-46f3d4a28696-common": "22.1.9",
19
+ "@codingame/monaco-vscode-37b3b402-09f5-5f69-89ef-ce30559f63cc-common": "22.1.9",
20
+ "@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "22.1.9",
21
+ "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "22.1.9",
22
+ "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "22.1.9",
23
+ "@codingame/monaco-vscode-62190c26-af1c-5f7a-a364-e05a59cfb7c7-common": "22.1.9",
24
+ "@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "22.1.9",
25
+ "@codingame/monaco-vscode-api": "22.1.9",
26
+ "@codingame/monaco-vscode-b994942c-360d-5b68-8a33-77d4bde6b714-common": "22.1.9",
27
+ "@codingame/monaco-vscode-c2deffc4-ad68-5e63-8f95-9b89e0fc6898-common": "22.1.9",
28
+ "@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common": "22.1.9",
29
+ "@codingame/monaco-vscode-cf77987b-b1b7-5359-aaf8-a259c63d9f03-common": "22.1.9",
30
+ "@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "22.1.9",
31
+ "@codingame/monaco-vscode-dc3fa21d-a483-5b99-a7ab-173235644a34-common": "22.1.9",
32
+ "@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common": "22.1.9"
33
33
  },
34
34
  "main": "index.js",
35
35
  "module": "index.js",
@@ -112,7 +112,7 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
112
112
  numberOfRequests += ( Object.keys(accessRequest)).length;
113
113
  });
114
114
  if (numberOfRequests > 0) {
115
- const badge = ( new NumberBadge(numberOfRequests, () => ( localize(13191, "Sign in requested"))));
115
+ const badge = ( new NumberBadge(numberOfRequests, () => ( localize(13208, "Sign in requested"))));
116
116
  this._accountBadgeDisposable.value = this.activityService.showAccountsActivity({ badge });
117
117
  }
118
118
  }
@@ -173,7 +173,7 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
173
173
  const { result } = await this.dialogService.prompt({
174
174
  type: Severity.Info,
175
175
  message: ( localize(
176
- 13192,
176
+ 13209,
177
177
  "The MCP server '{0}' wants to access the {1} account '{2}'.",
178
178
  mcpServerName,
179
179
  provider.label,
@@ -181,11 +181,11 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
181
181
  )),
182
182
  buttons: [
183
183
  {
184
- label: ( localize(13193, "&&Allow")),
184
+ label: ( localize(13210, "&&Allow")),
185
185
  run: () => SessionPromptChoice.Allow
186
186
  },
187
187
  {
188
- label: ( localize(13194, "&&Deny")),
188
+ label: ( localize(13211, "&&Deny")),
189
189
  run: () => SessionPromptChoice.Deny
190
190
  }
191
191
  ],
@@ -221,16 +221,16 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
221
221
  items.push({ label: account.label, account });
222
222
  }
223
223
  });
224
- items.push({ label: ( localize(13195, "Sign in to another account")) });
224
+ items.push({ label: ( localize(13212, "Sign in to another account")) });
225
225
  quickPick.items = items;
226
226
  quickPick.title = ( localize(
227
- 13196,
227
+ 13213,
228
228
  "The MCP server '{0}' wants to access a {1} account",
229
229
  mcpServerName,
230
230
  this._authenticationService.getProvider(providerId).label
231
231
  ));
232
232
  quickPick.placeholder = ( localize(
233
- 13197,
233
+ 13214,
234
234
  "Select an account for '{0}' to use or Esc to cancel",
235
235
  mcpServerName
236
236
  ));
@@ -302,7 +302,7 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
302
302
  group: '3_accessRequests',
303
303
  command: {
304
304
  id: `${providerId}${mcpServerId}Access`,
305
- title: ( localize(13198, "Grant access to {0} for {1}... (1)", provider.label, mcpServerName))
305
+ title: ( localize(13215, "Grant access to {0} for {1}... (1)", provider.label, mcpServerName))
306
306
  }
307
307
  }));
308
308
  const accessCommand = CommandsRegistry.registerCommand({
@@ -346,7 +346,7 @@ let AuthenticationMcpService = class AuthenticationMcpService extends Disposable
346
346
  group: '2_signInRequests',
347
347
  command: {
348
348
  id: commandId,
349
- title: ( localize(13199, "Sign in with {0} to use {1} (1)", provider.label, mcpServerName))
349
+ title: ( localize(13216, "Sign in with {0} to use {1} (1)", provider.label, mcpServerName))
350
350
  }
351
351
  }));
352
352
  const signInCommand = CommandsRegistry.registerCommand({