@codingame/monaco-vscode-api 14.0.2 → 14.0.4

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.
Files changed (66) hide show
  1. package/missing-services.js +2 -2
  2. package/package.json +8 -8
  3. package/services.d.ts +1 -1
  4. package/services.js +5 -5
  5. package/vscode/src/vs/base/common/labels.d.ts +5 -1
  6. package/vscode/src/vs/base/common/labels.js +12 -4
  7. package/vscode/src/vs/workbench/api/common/extHostVariableResolverService.js +2 -13
  8. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +24 -5
  9. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.js +11 -11
  10. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.js +6 -6
  11. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.js +7 -7
  13. package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.js +15 -15
  14. package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.js +1 -1
  15. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +31 -31
  16. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +3 -3
  18. package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
  19. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +6 -6
  20. package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +1 -1
  21. package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
  22. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
  23. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
  24. package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
  25. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
  26. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
  27. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
  28. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
  29. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
  30. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
  31. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
  32. package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
  33. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
  34. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
  35. package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
  36. package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
  37. package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
  38. package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
  39. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
  40. package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
  41. package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
  42. package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
  43. package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
  44. package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.js +1 -1
  46. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  47. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +9 -9
  48. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  49. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  50. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  51. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  52. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  53. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +3 -3
  54. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  55. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  56. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  57. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  58. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +83 -83
  59. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  60. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  61. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  62. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  63. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  64. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  65. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  66. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +11 -11
@@ -107,11 +107,11 @@ const extensionKindSchema = {
107
107
  ],
108
108
  enumDescriptions: [
109
109
  ( localize(
110
- 11720,
110
+ 11721,
111
111
  "UI extension kind. In a remote window, such extensions are enabled only when available on the local machine."
112
112
  )),
113
113
  ( localize(
114
- 11721,
114
+ 11722,
115
115
  "Workspace extension kind. In a remote window, such extensions are enabled only when available on the remote."
116
116
  )),
117
117
  ],
@@ -121,12 +121,12 @@ const schema = {
121
121
  properties: {
122
122
  engines: {
123
123
  type: 'object',
124
- description: ( localize(11722, "Engine compatibility.")),
124
+ description: ( localize(11723, "Engine compatibility.")),
125
125
  properties: {
126
126
  'vscode': {
127
127
  type: 'string',
128
128
  description: ( localize(
129
- 11723,
129
+ 11724,
130
130
  'For VS Code extensions, specifies the VS Code version that the extension is compatible with. Cannot be *. For example: ^0.10.5 indicates compatibility with a minimum VS Code version of 0.10.5.'
131
131
  )),
132
132
  default: '^1.22.0',
@@ -134,16 +134,16 @@ const schema = {
134
134
  }
135
135
  },
136
136
  publisher: {
137
- description: ( localize(11724, 'The publisher of the VS Code extension.')),
137
+ description: ( localize(11725, 'The publisher of the VS Code extension.')),
138
138
  type: 'string'
139
139
  },
140
140
  displayName: {
141
- description: ( localize(11725, 'The display name for the extension used in the VS Code gallery.')),
141
+ description: ( localize(11726, 'The display name for the extension used in the VS Code gallery.')),
142
142
  type: 'string'
143
143
  },
144
144
  categories: {
145
145
  description: ( localize(
146
- 11726,
146
+ 11727,
147
147
  'The categories used by the VS Code gallery to categorize the extension.'
148
148
  )),
149
149
  type: 'array',
@@ -156,20 +156,20 @@ const schema = {
156
156
  {
157
157
  type: 'string',
158
158
  const: 'Languages',
159
- deprecationMessage: ( localize(11727, 'Use \'Programming Languages\' instead')),
159
+ deprecationMessage: ( localize(11728, 'Use \'Programming Languages\' instead')),
160
160
  }]
161
161
  }
162
162
  },
163
163
  galleryBanner: {
164
164
  type: 'object',
165
- description: ( localize(11728, 'Banner used in the VS Code marketplace.')),
165
+ description: ( localize(11729, 'Banner used in the VS Code marketplace.')),
166
166
  properties: {
167
167
  color: {
168
- description: ( localize(11729, 'The banner color on the VS Code marketplace page header.')),
168
+ description: ( localize(11730, 'The banner color on the VS Code marketplace page header.')),
169
169
  type: 'string'
170
170
  },
171
171
  theme: {
172
- description: ( localize(11730, 'The color theme for the font used in the banner.')),
172
+ description: ( localize(11731, 'The color theme for the font used in the banner.')),
173
173
  type: 'string',
174
174
  enum: ['dark', 'light']
175
175
  }
@@ -177,7 +177,7 @@ const schema = {
177
177
  },
178
178
  contributes: {
179
179
  description: ( localize(
180
- 11731,
180
+ 11732,
181
181
  'All contributions of the VS Code extension represented by this package.'
182
182
  )),
183
183
  type: 'object',
@@ -187,15 +187,15 @@ const schema = {
187
187
  },
188
188
  preview: {
189
189
  type: 'boolean',
190
- description: ( localize(11732, 'Sets the extension to be flagged as a Preview in the Marketplace.')),
190
+ description: ( localize(11733, 'Sets the extension to be flagged as a Preview in the Marketplace.')),
191
191
  },
192
192
  enableProposedApi: {
193
193
  type: 'boolean',
194
- deprecationMessage: ( localize(11733, 'Use `enabledApiProposals` instead.')),
194
+ deprecationMessage: ( localize(11734, 'Use `enabledApiProposals` instead.')),
195
195
  },
196
196
  enabledApiProposals: {
197
197
  markdownDescription: ( localize(
198
- 11734,
198
+ 11735,
199
199
  'Enable API proposals to try them out. Only valid **during development**. Extensions **cannot be published** with this property. For more details visit: https://code.visualstudio.com/api/advanced-topics/using-proposed-api'
200
200
  )),
201
201
  type: 'array',
@@ -208,20 +208,20 @@ const schema = {
208
208
  },
209
209
  api: {
210
210
  markdownDescription: ( localize(
211
- 11735,
211
+ 11736,
212
212
  'Describe the API provided by this extension. For more details visit: https://code.visualstudio.com/api/advanced-topics/remote-extensions#handling-dependencies-with-remote-extensions'
213
213
  )),
214
214
  type: 'string',
215
215
  enum: ['none'],
216
216
  enumDescriptions: [
217
217
  ( localize(
218
- 11736,
218
+ 11737,
219
219
  "Give up entirely the ability to export any APIs. This allows other extensions that depend on this extension to run in a separate extension host process or in a remote machine."
220
220
  ))
221
221
  ]
222
222
  },
223
223
  activationEvents: {
224
- description: ( localize(11737, 'Activation events for the VS Code extension.')),
224
+ description: ( localize(11738, 'Activation events for the VS Code extension.')),
225
225
  type: 'array',
226
226
  items: {
227
227
  type: 'string',
@@ -229,7 +229,7 @@ const schema = {
229
229
  {
230
230
  label: 'onWebviewPanel',
231
231
  description: ( localize(
232
- 11738,
232
+ 11739,
233
233
  'An activation event emmited when a webview is loaded of a certain viewType'
234
234
  )),
235
235
  body: 'onWebviewPanel:viewType'
@@ -237,7 +237,7 @@ const schema = {
237
237
  {
238
238
  label: 'onLanguage',
239
239
  description: ( localize(
240
- 11739,
240
+ 11740,
241
241
  'An activation event emitted whenever a file that resolves to the specified language gets opened.'
242
242
  )),
243
243
  body: 'onLanguage:${1:languageId}'
@@ -245,7 +245,7 @@ const schema = {
245
245
  {
246
246
  label: 'onCommand',
247
247
  description: ( localize(
248
- 11740,
248
+ 11741,
249
249
  'An activation event emitted whenever the specified command gets invoked.'
250
250
  )),
251
251
  body: 'onCommand:${2:commandId}'
@@ -253,7 +253,7 @@ const schema = {
253
253
  {
254
254
  label: 'onDebug',
255
255
  description: ( localize(
256
- 11741,
256
+ 11742,
257
257
  'An activation event emitted whenever a user is about to start debugging or about to setup debug configurations.'
258
258
  )),
259
259
  body: 'onDebug'
@@ -261,7 +261,7 @@ const schema = {
261
261
  {
262
262
  label: 'onDebugInitialConfigurations',
263
263
  description: ( localize(
264
- 11742,
264
+ 11743,
265
265
  'An activation event emitted whenever a "launch.json" needs to be created (and all provideDebugConfigurations methods need to be called).'
266
266
  )),
267
267
  body: 'onDebugInitialConfigurations'
@@ -269,7 +269,7 @@ const schema = {
269
269
  {
270
270
  label: 'onDebugDynamicConfigurations',
271
271
  description: ( localize(
272
- 11743,
272
+ 11744,
273
273
  'An activation event emitted whenever a list of all debug configurations needs to be created (and all provideDebugConfigurations methods for the "dynamic" scope need to be called).'
274
274
  )),
275
275
  body: 'onDebugDynamicConfigurations'
@@ -277,7 +277,7 @@ const schema = {
277
277
  {
278
278
  label: 'onDebugResolve',
279
279
  description: ( localize(
280
- 11744,
280
+ 11745,
281
281
  'An activation event emitted whenever a debug session with the specific type is about to be launched (and a corresponding resolveDebugConfiguration method needs to be called).'
282
282
  )),
283
283
  body: 'onDebugResolve:${6:type}'
@@ -285,7 +285,7 @@ const schema = {
285
285
  {
286
286
  label: 'onDebugAdapterProtocolTracker',
287
287
  description: ( localize(
288
- 11745,
288
+ 11746,
289
289
  'An activation event emitted whenever a debug session with the specific type is about to be launched and a debug protocol tracker might be needed.'
290
290
  )),
291
291
  body: 'onDebugAdapterProtocolTracker:${6:type}'
@@ -293,7 +293,7 @@ const schema = {
293
293
  {
294
294
  label: 'workspaceContains',
295
295
  description: ( localize(
296
- 11746,
296
+ 11747,
297
297
  'An activation event emitted whenever a folder is opened that contains at least a file matching the specified glob pattern.'
298
298
  )),
299
299
  body: 'workspaceContains:${4:filePattern}'
@@ -301,7 +301,7 @@ const schema = {
301
301
  {
302
302
  label: 'onStartupFinished',
303
303
  description: ( localize(
304
- 11747,
304
+ 11748,
305
305
  'An activation event emitted after the start-up finished (after all `*` activated extensions have finished activating).'
306
306
  )),
307
307
  body: 'onStartupFinished'
@@ -309,7 +309,7 @@ const schema = {
309
309
  {
310
310
  label: 'onTaskType',
311
311
  description: ( localize(
312
- 11748,
312
+ 11749,
313
313
  'An activation event emitted whenever tasks of a certain type need to be listed or resolved.'
314
314
  )),
315
315
  body: 'onTaskType:${1:taskType}'
@@ -317,7 +317,7 @@ const schema = {
317
317
  {
318
318
  label: 'onFileSystem',
319
319
  description: ( localize(
320
- 11749,
320
+ 11750,
321
321
  'An activation event emitted whenever a file or folder is accessed with the given scheme.'
322
322
  )),
323
323
  body: 'onFileSystem:${1:scheme}'
@@ -325,7 +325,7 @@ const schema = {
325
325
  {
326
326
  label: 'onEditSession',
327
327
  description: ( localize(
328
- 11750,
328
+ 11751,
329
329
  'An activation event emitted whenever an edit session is accessed with the given scheme.'
330
330
  )),
331
331
  body: 'onEditSession:${1:scheme}'
@@ -333,7 +333,7 @@ const schema = {
333
333
  {
334
334
  label: 'onSearch',
335
335
  description: ( localize(
336
- 11751,
336
+ 11752,
337
337
  'An activation event emitted whenever a search is started in the folder with the given scheme.'
338
338
  )),
339
339
  body: 'onSearch:${7:scheme}'
@@ -342,7 +342,7 @@ const schema = {
342
342
  label: 'onView',
343
343
  body: 'onView:${5:viewId}',
344
344
  description: ( localize(
345
- 11752,
345
+ 11753,
346
346
  'An activation event emitted whenever the specified view is expanded.'
347
347
  )),
348
348
  },
@@ -350,7 +350,7 @@ const schema = {
350
350
  label: 'onUri',
351
351
  body: 'onUri',
352
352
  description: ( localize(
353
- 11753,
353
+ 11754,
354
354
  'An activation event emitted whenever a system-wide Uri directed towards this extension is open.'
355
355
  )),
356
356
  },
@@ -358,7 +358,7 @@ const schema = {
358
358
  label: 'onOpenExternalUri',
359
359
  body: 'onOpenExternalUri',
360
360
  description: ( localize(
361
- 11754,
361
+ 11755,
362
362
  'An activation event emitted whenever a external uri (such as an http or https link) is being opened.'
363
363
  )),
364
364
  },
@@ -366,7 +366,7 @@ const schema = {
366
366
  label: 'onCustomEditor',
367
367
  body: 'onCustomEditor:${9:viewType}',
368
368
  description: ( localize(
369
- 11755,
369
+ 11756,
370
370
  'An activation event emitted whenever the specified custom editor becomes visible.'
371
371
  )),
372
372
  },
@@ -374,7 +374,7 @@ const schema = {
374
374
  label: 'onNotebook',
375
375
  body: 'onNotebook:${1:type}',
376
376
  description: ( localize(
377
- 11756,
377
+ 11757,
378
378
  'An activation event emitted whenever the specified notebook document is opened.'
379
379
  )),
380
380
  },
@@ -382,14 +382,14 @@ const schema = {
382
382
  label: 'onAuthenticationRequest',
383
383
  body: 'onAuthenticationRequest:${11:authenticationProviderId}',
384
384
  description: ( localize(
385
- 11757,
385
+ 11758,
386
386
  'An activation event emitted whenever sessions are requested from the specified authentication provider.'
387
387
  ))
388
388
  },
389
389
  {
390
390
  label: 'onRenderer',
391
391
  description: ( localize(
392
- 11758,
392
+ 11759,
393
393
  'An activation event emitted whenever a notebook output renderer is used.'
394
394
  )),
395
395
  body: 'onRenderer:${11:rendererId}'
@@ -398,7 +398,7 @@ const schema = {
398
398
  label: 'onTerminalProfile',
399
399
  body: 'onTerminalProfile:${1:terminalId}',
400
400
  description: ( localize(
401
- 11759,
401
+ 11760,
402
402
  'An activation event emitted when a specific terminal profile is launched.'
403
403
  )),
404
404
  },
@@ -406,7 +406,7 @@ const schema = {
406
406
  label: 'onTerminalQuickFixRequest',
407
407
  body: 'onTerminalQuickFixRequest:${1:quickFixId}',
408
408
  description: ( localize(
409
- 11760,
409
+ 11761,
410
410
  'An activation event emitted when a command matches the selector associated with this ID'
411
411
  )),
412
412
  },
@@ -414,20 +414,20 @@ const schema = {
414
414
  label: 'onWalkthrough',
415
415
  body: 'onWalkthrough:${1:walkthroughID}',
416
416
  description: ( localize(
417
- 11761,
417
+ 11762,
418
418
  'An activation event emitted when a specified walkthrough is opened.'
419
419
  )),
420
420
  },
421
421
  {
422
422
  label: 'onIssueReporterOpened',
423
423
  body: 'onIssueReporterOpened',
424
- description: ( localize(11762, 'An activation event emitted when the issue reporter is opened.')),
424
+ description: ( localize(11763, 'An activation event emitted when the issue reporter is opened.')),
425
425
  },
426
426
  {
427
427
  label: 'onChatParticipant',
428
428
  body: 'onChatParticipant:${1:participantId}',
429
429
  description: ( localize(
430
- 11763,
430
+ 11764,
431
431
  'An activation event emitted when the specified chat participant is invoked.'
432
432
  )),
433
433
  },
@@ -435,7 +435,7 @@ const schema = {
435
435
  label: 'onLanguageModelTool',
436
436
  body: 'onLanguageModelTool:${1:toolId}',
437
437
  description: ( localize(
438
- 11764,
438
+ 11765,
439
439
  'An activation event emitted when the specified language model tool is invoked.'
440
440
  )),
441
441
  },
@@ -443,14 +443,14 @@ const schema = {
443
443
  label: 'onTerminalCompletionsRequested',
444
444
  body: 'onTerminalCompletionsRequested',
445
445
  description: ( localize(
446
- 11765,
446
+ 11766,
447
447
  'An activation event emitted when terminal completions are requested.'
448
448
  )),
449
449
  },
450
450
  {
451
451
  label: '*',
452
452
  description: ( localize(
453
- 11766,
453
+ 11767,
454
454
  'An activation event emitted on VS Code startup. To ensure a great end user experience, please use this activation event in your extension only when no other activation events combination works in your use-case.'
455
455
  )),
456
456
  body: '*'
@@ -461,7 +461,7 @@ const schema = {
461
461
  badges: {
462
462
  type: 'array',
463
463
  description: ( localize(
464
- 11767,
464
+ 11768,
465
465
  'Array of badges to display in the sidebar of the Marketplace\'s extension page.'
466
466
  )),
467
467
  items: {
@@ -470,15 +470,15 @@ const schema = {
470
470
  properties: {
471
471
  url: {
472
472
  type: 'string',
473
- description: ( localize(11768, 'Badge image URL.'))
473
+ description: ( localize(11769, 'Badge image URL.'))
474
474
  },
475
475
  href: {
476
476
  type: 'string',
477
- description: ( localize(11769, 'Badge link.'))
477
+ description: ( localize(11770, 'Badge link.'))
478
478
  },
479
479
  description: {
480
480
  type: 'string',
481
- description: ( localize(11770, 'Badge description.'))
481
+ description: ( localize(11771, 'Badge description.'))
482
482
  }
483
483
  }
484
484
  }
@@ -486,7 +486,7 @@ const schema = {
486
486
  markdown: {
487
487
  type: 'string',
488
488
  description: ( localize(
489
- 11771,
489
+ 11772,
490
490
  "Controls the Markdown rendering engine used in the Marketplace. Either github (default) or standard."
491
491
  )),
492
492
  enum: ['github', 'standard'],
@@ -495,7 +495,7 @@ const schema = {
495
495
  qna: {
496
496
  default: 'marketplace',
497
497
  description: ( localize(
498
- 11772,
498
+ 11773,
499
499
  "Controls the Q&A link in the Marketplace. Set to marketplace to enable the default Marketplace Q & A site. Set to a string to provide the URL of a custom Q & A site. Set to false to disable Q & A altogether."
500
500
  )),
501
501
  anyOf: [
@@ -510,7 +510,7 @@ const schema = {
510
510
  },
511
511
  extensionDependencies: {
512
512
  description: ( localize(
513
- 11773,
513
+ 11774,
514
514
  'Dependencies to other extensions. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp.'
515
515
  )),
516
516
  type: 'array',
@@ -522,7 +522,7 @@ const schema = {
522
522
  },
523
523
  extensionPack: {
524
524
  description: ( localize(
525
- 11774,
525
+ 11775,
526
526
  "A set of extensions that can be installed together. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp."
527
527
  )),
528
528
  type: 'array',
@@ -534,7 +534,7 @@ const schema = {
534
534
  },
535
535
  extensionKind: {
536
536
  description: ( localize(
537
- 11775,
537
+ 11776,
538
538
  "Define the kind of an extension. `ui` extensions are installed and run on the local machine while `workspace` extensions run on the remote."
539
539
  )),
540
540
  type: 'array',
@@ -544,47 +544,47 @@ const schema = {
544
544
  {
545
545
  body: ['ui'],
546
546
  description: ( localize(
547
- 11776,
547
+ 11777,
548
548
  "Define an extension which can run only on the local machine when connected to remote window."
549
549
  ))
550
550
  },
551
551
  {
552
552
  body: ['workspace'],
553
553
  description: ( localize(
554
- 11777,
554
+ 11778,
555
555
  "Define an extension which can run only on the remote machine when connected remote window."
556
556
  ))
557
557
  },
558
558
  {
559
559
  body: ['ui', 'workspace'],
560
560
  description: ( localize(
561
- 11778,
561
+ 11779,
562
562
  "Define an extension which can run on either side, with a preference towards running on the local machine."
563
563
  ))
564
564
  },
565
565
  {
566
566
  body: ['workspace', 'ui'],
567
567
  description: ( localize(
568
- 11779,
568
+ 11780,
569
569
  "Define an extension which can run on either side, with a preference towards running on the remote machine."
570
570
  ))
571
571
  },
572
572
  {
573
573
  body: [],
574
574
  description: ( localize(
575
- 11780,
575
+ 11781,
576
576
  "Define an extension which cannot run in a remote context, neither on the local, nor on the remote machine."
577
577
  ))
578
578
  }
579
579
  ]
580
580
  },
581
581
  capabilities: {
582
- description: ( localize(11781, "Declare the set of supported capabilities by the extension.")),
582
+ description: ( localize(11782, "Declare the set of supported capabilities by the extension.")),
583
583
  type: 'object',
584
584
  properties: {
585
585
  virtualWorkspaces: {
586
586
  description: ( localize(
587
- 11782,
587
+ 11783,
588
588
  "Declares whether the extension should be enabled in virtual workspaces. A virtual workspace is a workspace which is not backed by any on-disk resources. When false, this extension will be automatically disabled in virtual workspaces. Default is true."
589
589
  )),
590
590
  type: ['boolean', 'object'],
@@ -596,27 +596,27 @@ const schema = {
596
596
  properties: {
597
597
  supported: {
598
598
  markdownDescription: ( localize(
599
- 11783,
599
+ 11784,
600
600
  "Declares the level of support for virtual workspaces by the extension."
601
601
  )),
602
602
  type: ['string', 'boolean'],
603
603
  enum: ['limited', true, false],
604
604
  enumDescriptions: [
605
605
  ( localize(
606
- 11784,
606
+ 11785,
607
607
  "The extension will be enabled in virtual workspaces with some functionality disabled."
608
608
  )),
609
609
  ( localize(
610
- 11785,
610
+ 11786,
611
611
  "The extension will be enabled in virtual workspaces with all functionality enabled."
612
612
  )),
613
- ( localize(11786, "The extension will not be enabled in virtual workspaces.")),
613
+ ( localize(11787, "The extension will not be enabled in virtual workspaces.")),
614
614
  ]
615
615
  },
616
616
  description: {
617
617
  type: 'string',
618
618
  markdownDescription: ( localize(
619
- 11787,
619
+ 11788,
620
620
  "A description of how virtual workspaces affects the extensions behavior and why it is needed. This only applies when `supported` is not `true`."
621
621
  )),
622
622
  }
@@ -624,7 +624,7 @@ const schema = {
624
624
  },
625
625
  untrustedWorkspaces: {
626
626
  description: ( localize(
627
- 11788,
627
+ 11789,
628
628
  'Declares how the extension should be handled in untrusted workspaces.'
629
629
  )),
630
630
  type: 'object',
@@ -635,26 +635,26 @@ const schema = {
635
635
  properties: {
636
636
  supported: {
637
637
  markdownDescription: ( localize(
638
- 11789,
638
+ 11790,
639
639
  "Declares the level of support for untrusted workspaces by the extension."
640
640
  )),
641
641
  type: ['string', 'boolean'],
642
642
  enum: ['limited', true, false],
643
643
  enumDescriptions: [
644
644
  ( localize(
645
- 11790,
645
+ 11791,
646
646
  "The extension will be enabled in untrusted workspaces with some functionality disabled."
647
647
  )),
648
648
  ( localize(
649
- 11791,
649
+ 11792,
650
650
  "The extension will be enabled in untrusted workspaces with all functionality enabled."
651
651
  )),
652
- ( localize(11792, "The extension will not be enabled in untrusted workspaces.")),
652
+ ( localize(11793, "The extension will not be enabled in untrusted workspaces.")),
653
653
  ]
654
654
  },
655
655
  restrictedConfigurations: {
656
656
  description: ( localize(
657
- 11793,
657
+ 11794,
658
658
  "A list of configuration keys contributed by the extension that should not use workspace values in untrusted workspaces."
659
659
  )),
660
660
  type: 'array',
@@ -665,7 +665,7 @@ const schema = {
665
665
  description: {
666
666
  type: 'string',
667
667
  markdownDescription: ( localize(
668
- 11794,
668
+ 11795,
669
669
  "A description of how workspace trust affects the extensions behavior and why it is needed. This only applies when `supported` is not `true`."
670
670
  )),
671
671
  }
@@ -674,7 +674,7 @@ const schema = {
674
674
  }
675
675
  },
676
676
  sponsor: {
677
- description: ( localize(11795, "Specify the location from where users can sponsor your extension.")),
677
+ description: ( localize(11796, "Specify the location from where users can sponsor your extension.")),
678
678
  type: 'object',
679
679
  defaultSnippets: [
680
680
  { body: { url: '${1:https:}' } },
@@ -682,7 +682,7 @@ const schema = {
682
682
  properties: {
683
683
  'url': {
684
684
  description: ( localize(
685
- 11796,
685
+ 11797,
686
686
  "URL from where users can sponsor your extension. It must be a valid URL with a HTTP or HTTPS protocol. Example value: https://github.com/sponsors/nvaccess"
687
687
  )),
688
688
  type: 'string',
@@ -694,14 +694,14 @@ const schema = {
694
694
  properties: {
695
695
  'vscode:prepublish': {
696
696
  description: ( localize(
697
- 11797,
697
+ 11798,
698
698
  'Script executed before the package is published as a VS Code extension.'
699
699
  )),
700
700
  type: 'string'
701
701
  },
702
702
  'vscode:uninstall': {
703
703
  description: ( localize(
704
- 11798,
704
+ 11799,
705
705
  'Uninstall hook for VS Code extension. Script that gets executed when the extension is completely uninstalled from VS Code which is when VS Code is restarted (shutdown and start) after the extension is uninstalled. Only Node scripts are supported.'
706
706
  )),
707
707
  type: 'string'
@@ -710,19 +710,19 @@ const schema = {
710
710
  },
711
711
  icon: {
712
712
  type: 'string',
713
- description: ( localize(11799, 'The path to a 128x128 pixel icon.'))
713
+ description: ( localize(11800, 'The path to a 128x128 pixel icon.'))
714
714
  },
715
715
  l10n: {
716
716
  type: 'string',
717
717
  description: ( localize(
718
- 11800,
718
+ 11801,
719
719
  'The relative path to a folder containing localization (bundle.l10n.*.json) files. Must be specified if you are using the vscode.l10n API.'
720
720
  ))
721
721
  },
722
722
  pricing: {
723
723
  type: 'string',
724
724
  markdownDescription: ( localize(
725
- 11801,
725
+ 11802,
726
726
  'The pricing information for the extension. Can be Free (default) or Trial. For more details visit: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#extension-pricing-label'
727
727
  )),
728
728
  enum: ['Free', 'Trial'],
@@ -760,7 +760,7 @@ schemaRegistry.registerSchema(schemaId, schema);
760
760
  schemaRegistry.registerSchema(productSchemaId, {
761
761
  properties: {
762
762
  extensionEnabledApiProposals: {
763
- description: ( localize(11802, "API proposals that the respective extensions can freely use.")),
763
+ description: ( localize(11803, "API proposals that the respective extensions can freely use.")),
764
764
  type: 'object',
765
765
  properties: {},
766
766
  additionalProperties: {