@codingame/monaco-vscode-api 22.1.4 → 22.1.6
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/missing-services.js +28 -28
- package/package.json +8 -8
- package/services.js +3 -3
- package/vscode/src/vs/platform/product/common/product.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSourceFactory.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSourceFactory.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +9 -9
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +87 -87
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
|
@@ -107,11 +107,11 @@ const extensionKindSchema = {
|
|
|
107
107
|
],
|
|
108
108
|
enumDescriptions: [
|
|
109
109
|
( localize(
|
|
110
|
-
|
|
110
|
+
13474,
|
|
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
|
-
|
|
114
|
+
13475,
|
|
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(
|
|
124
|
+
description: ( localize(13476, "Engine compatibility.")),
|
|
125
125
|
properties: {
|
|
126
126
|
'vscode': {
|
|
127
127
|
type: 'string',
|
|
128
128
|
description: ( localize(
|
|
129
|
-
|
|
129
|
+
13477,
|
|
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(
|
|
137
|
+
description: ( localize(13478, 'The publisher of the VS Code extension.')),
|
|
138
138
|
type: 'string'
|
|
139
139
|
},
|
|
140
140
|
displayName: {
|
|
141
|
-
description: ( localize(
|
|
141
|
+
description: ( localize(13479, '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
|
-
|
|
146
|
+
13480,
|
|
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(
|
|
159
|
+
deprecationMessage: ( localize(13481, 'Use \'Programming Languages\' instead')),
|
|
160
160
|
}]
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
galleryBanner: {
|
|
164
164
|
type: 'object',
|
|
165
|
-
description: ( localize(
|
|
165
|
+
description: ( localize(13482, 'Banner used in the VS Code marketplace.')),
|
|
166
166
|
properties: {
|
|
167
167
|
color: {
|
|
168
|
-
description: ( localize(
|
|
168
|
+
description: ( localize(13483, 'The banner color on the VS Code marketplace page header.')),
|
|
169
169
|
type: 'string'
|
|
170
170
|
},
|
|
171
171
|
theme: {
|
|
172
|
-
description: ( localize(
|
|
172
|
+
description: ( localize(13484, '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
|
-
|
|
180
|
+
13485,
|
|
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(
|
|
190
|
+
description: ( localize(13486, 'Sets the extension to be flagged as a Preview in the Marketplace.')),
|
|
191
191
|
},
|
|
192
192
|
enableProposedApi: {
|
|
193
193
|
type: 'boolean',
|
|
194
|
-
deprecationMessage: ( localize(
|
|
194
|
+
deprecationMessage: ( localize(13487, 'Use `enabledApiProposals` instead.')),
|
|
195
195
|
},
|
|
196
196
|
enabledApiProposals: {
|
|
197
197
|
markdownDescription: ( localize(
|
|
198
|
-
|
|
198
|
+
13488,
|
|
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
|
-
|
|
211
|
+
13489,
|
|
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
|
-
|
|
218
|
+
13490,
|
|
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(
|
|
224
|
+
description: ( localize(13491, '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
|
-
|
|
232
|
+
13492,
|
|
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
|
-
|
|
240
|
+
13493,
|
|
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
|
-
|
|
248
|
+
13494,
|
|
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
|
-
|
|
256
|
+
13495,
|
|
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
|
-
|
|
264
|
+
13496,
|
|
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
|
-
|
|
272
|
+
13497,
|
|
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
|
-
|
|
280
|
+
13498,
|
|
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
|
-
|
|
288
|
+
13499,
|
|
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
|
-
|
|
296
|
+
13500,
|
|
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
|
-
|
|
304
|
+
13501,
|
|
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
|
-
|
|
312
|
+
13502,
|
|
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
|
-
|
|
320
|
+
13503,
|
|
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
|
-
|
|
328
|
+
13504,
|
|
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
|
-
|
|
336
|
+
13505,
|
|
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
|
-
|
|
345
|
+
13506,
|
|
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
|
-
|
|
353
|
+
13507,
|
|
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
|
-
|
|
361
|
+
13508,
|
|
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
|
-
|
|
369
|
+
13509,
|
|
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
|
-
|
|
377
|
+
13510,
|
|
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
|
-
|
|
385
|
+
13511,
|
|
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
|
-
|
|
392
|
+
13512,
|
|
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
|
-
|
|
401
|
+
13513,
|
|
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
|
-
|
|
409
|
+
13514,
|
|
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
|
-
|
|
417
|
+
13515,
|
|
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(
|
|
424
|
+
description: ( localize(13516, '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
|
-
|
|
430
|
+
13517,
|
|
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: 'onLanguageModelChatProvider',
|
|
436
436
|
body: 'onLanguageModelChatProvider:${1:vendor}',
|
|
437
437
|
description: ( localize(
|
|
438
|
-
|
|
438
|
+
13518,
|
|
439
439
|
'An activation event emitted when a chat model provider for the given vendor is requested.'
|
|
440
440
|
)),
|
|
441
441
|
},
|
|
@@ -443,7 +443,7 @@ const schema = {
|
|
|
443
443
|
label: 'onLanguageModelTool',
|
|
444
444
|
body: 'onLanguageModelTool:${1:toolId}',
|
|
445
445
|
description: ( localize(
|
|
446
|
-
|
|
446
|
+
13519,
|
|
447
447
|
'An activation event emitted when the specified language model tool is invoked.'
|
|
448
448
|
)),
|
|
449
449
|
},
|
|
@@ -451,7 +451,7 @@ const schema = {
|
|
|
451
451
|
label: 'onTerminal',
|
|
452
452
|
body: 'onTerminal:{1:shellType}',
|
|
453
453
|
description: ( localize(
|
|
454
|
-
|
|
454
|
+
13520,
|
|
455
455
|
'An activation event emitted when a terminal of the given shell type is opened.'
|
|
456
456
|
)),
|
|
457
457
|
},
|
|
@@ -459,7 +459,7 @@ const schema = {
|
|
|
459
459
|
label: 'onTerminalCompletionsRequested',
|
|
460
460
|
body: 'onTerminalCompletionsRequested',
|
|
461
461
|
description: ( localize(
|
|
462
|
-
|
|
462
|
+
13521,
|
|
463
463
|
'An activation event emitted when terminal completions are requested.'
|
|
464
464
|
)),
|
|
465
465
|
},
|
|
@@ -467,14 +467,14 @@ const schema = {
|
|
|
467
467
|
label: 'onTerminalShellIntegration',
|
|
468
468
|
body: 'onTerminalShellIntegration:${1:shellType}',
|
|
469
469
|
description: ( localize(
|
|
470
|
-
|
|
470
|
+
13522,
|
|
471
471
|
'An activation event emitted when terminal shell integration is activated for the given shell type.'
|
|
472
472
|
)),
|
|
473
473
|
},
|
|
474
474
|
{
|
|
475
475
|
label: 'onMcpCollection',
|
|
476
476
|
description: ( localize(
|
|
477
|
-
|
|
477
|
+
13523,
|
|
478
478
|
'An activation event emitted whenver a tool from the MCP server is requested.'
|
|
479
479
|
)),
|
|
480
480
|
body: 'onMcpCollection:${2:collectionId}',
|
|
@@ -482,7 +482,7 @@ const schema = {
|
|
|
482
482
|
{
|
|
483
483
|
label: '*',
|
|
484
484
|
description: ( localize(
|
|
485
|
-
|
|
485
|
+
13524,
|
|
486
486
|
'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.'
|
|
487
487
|
)),
|
|
488
488
|
body: '*'
|
|
@@ -493,7 +493,7 @@ const schema = {
|
|
|
493
493
|
badges: {
|
|
494
494
|
type: 'array',
|
|
495
495
|
description: ( localize(
|
|
496
|
-
|
|
496
|
+
13525,
|
|
497
497
|
'Array of badges to display in the sidebar of the Marketplace\'s extension page.'
|
|
498
498
|
)),
|
|
499
499
|
items: {
|
|
@@ -502,15 +502,15 @@ const schema = {
|
|
|
502
502
|
properties: {
|
|
503
503
|
url: {
|
|
504
504
|
type: 'string',
|
|
505
|
-
description: ( localize(
|
|
505
|
+
description: ( localize(13526, 'Badge image URL.'))
|
|
506
506
|
},
|
|
507
507
|
href: {
|
|
508
508
|
type: 'string',
|
|
509
|
-
description: ( localize(
|
|
509
|
+
description: ( localize(13527, 'Badge link.'))
|
|
510
510
|
},
|
|
511
511
|
description: {
|
|
512
512
|
type: 'string',
|
|
513
|
-
description: ( localize(
|
|
513
|
+
description: ( localize(13528, 'Badge description.'))
|
|
514
514
|
}
|
|
515
515
|
}
|
|
516
516
|
}
|
|
@@ -518,7 +518,7 @@ const schema = {
|
|
|
518
518
|
markdown: {
|
|
519
519
|
type: 'string',
|
|
520
520
|
description: ( localize(
|
|
521
|
-
|
|
521
|
+
13529,
|
|
522
522
|
"Controls the Markdown rendering engine used in the Marketplace. Either github (default) or standard."
|
|
523
523
|
)),
|
|
524
524
|
enum: ['github', 'standard'],
|
|
@@ -527,7 +527,7 @@ const schema = {
|
|
|
527
527
|
qna: {
|
|
528
528
|
default: 'marketplace',
|
|
529
529
|
description: ( localize(
|
|
530
|
-
|
|
530
|
+
13530,
|
|
531
531
|
"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."
|
|
532
532
|
)),
|
|
533
533
|
anyOf: [
|
|
@@ -542,7 +542,7 @@ const schema = {
|
|
|
542
542
|
},
|
|
543
543
|
extensionDependencies: {
|
|
544
544
|
description: ( localize(
|
|
545
|
-
|
|
545
|
+
13531,
|
|
546
546
|
'Dependencies to other extensions. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp.'
|
|
547
547
|
)),
|
|
548
548
|
type: 'array',
|
|
@@ -554,7 +554,7 @@ const schema = {
|
|
|
554
554
|
},
|
|
555
555
|
extensionPack: {
|
|
556
556
|
description: ( localize(
|
|
557
|
-
|
|
557
|
+
13532,
|
|
558
558
|
"A set of extensions that can be installed together. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp."
|
|
559
559
|
)),
|
|
560
560
|
type: 'array',
|
|
@@ -566,7 +566,7 @@ const schema = {
|
|
|
566
566
|
},
|
|
567
567
|
extensionKind: {
|
|
568
568
|
description: ( localize(
|
|
569
|
-
|
|
569
|
+
13533,
|
|
570
570
|
"Define the kind of an extension. `ui` extensions are installed and run on the local machine while `workspace` extensions run on the remote."
|
|
571
571
|
)),
|
|
572
572
|
type: 'array',
|
|
@@ -576,47 +576,47 @@ const schema = {
|
|
|
576
576
|
{
|
|
577
577
|
body: ['ui'],
|
|
578
578
|
description: ( localize(
|
|
579
|
-
|
|
579
|
+
13534,
|
|
580
580
|
"Define an extension which can run only on the local machine when connected to remote window."
|
|
581
581
|
))
|
|
582
582
|
},
|
|
583
583
|
{
|
|
584
584
|
body: ['workspace'],
|
|
585
585
|
description: ( localize(
|
|
586
|
-
|
|
586
|
+
13535,
|
|
587
587
|
"Define an extension which can run only on the remote machine when connected remote window."
|
|
588
588
|
))
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
body: ['ui', 'workspace'],
|
|
592
592
|
description: ( localize(
|
|
593
|
-
|
|
593
|
+
13536,
|
|
594
594
|
"Define an extension which can run on either side, with a preference towards running on the local machine."
|
|
595
595
|
))
|
|
596
596
|
},
|
|
597
597
|
{
|
|
598
598
|
body: ['workspace', 'ui'],
|
|
599
599
|
description: ( localize(
|
|
600
|
-
|
|
600
|
+
13537,
|
|
601
601
|
"Define an extension which can run on either side, with a preference towards running on the remote machine."
|
|
602
602
|
))
|
|
603
603
|
},
|
|
604
604
|
{
|
|
605
605
|
body: [],
|
|
606
606
|
description: ( localize(
|
|
607
|
-
|
|
607
|
+
13538,
|
|
608
608
|
"Define an extension which cannot run in a remote context, neither on the local, nor on the remote machine."
|
|
609
609
|
))
|
|
610
610
|
}
|
|
611
611
|
]
|
|
612
612
|
},
|
|
613
613
|
capabilities: {
|
|
614
|
-
description: ( localize(
|
|
614
|
+
description: ( localize(13539, "Declare the set of supported capabilities by the extension.")),
|
|
615
615
|
type: 'object',
|
|
616
616
|
properties: {
|
|
617
617
|
virtualWorkspaces: {
|
|
618
618
|
description: ( localize(
|
|
619
|
-
|
|
619
|
+
13540,
|
|
620
620
|
"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."
|
|
621
621
|
)),
|
|
622
622
|
type: ['boolean', 'object'],
|
|
@@ -628,27 +628,27 @@ const schema = {
|
|
|
628
628
|
properties: {
|
|
629
629
|
supported: {
|
|
630
630
|
markdownDescription: ( localize(
|
|
631
|
-
|
|
631
|
+
13541,
|
|
632
632
|
"Declares the level of support for virtual workspaces by the extension."
|
|
633
633
|
)),
|
|
634
634
|
type: ['string', 'boolean'],
|
|
635
635
|
enum: ['limited', true, false],
|
|
636
636
|
enumDescriptions: [
|
|
637
637
|
( localize(
|
|
638
|
-
|
|
638
|
+
13542,
|
|
639
639
|
"The extension will be enabled in virtual workspaces with some functionality disabled."
|
|
640
640
|
)),
|
|
641
641
|
( localize(
|
|
642
|
-
|
|
642
|
+
13543,
|
|
643
643
|
"The extension will be enabled in virtual workspaces with all functionality enabled."
|
|
644
644
|
)),
|
|
645
|
-
( localize(
|
|
645
|
+
( localize(13544, "The extension will not be enabled in virtual workspaces.")),
|
|
646
646
|
]
|
|
647
647
|
},
|
|
648
648
|
description: {
|
|
649
649
|
type: 'string',
|
|
650
650
|
markdownDescription: ( localize(
|
|
651
|
-
|
|
651
|
+
13545,
|
|
652
652
|
"A description of how virtual workspaces affects the extensions behavior and why it is needed. This only applies when `supported` is not `true`."
|
|
653
653
|
)),
|
|
654
654
|
}
|
|
@@ -656,7 +656,7 @@ const schema = {
|
|
|
656
656
|
},
|
|
657
657
|
untrustedWorkspaces: {
|
|
658
658
|
description: ( localize(
|
|
659
|
-
|
|
659
|
+
13546,
|
|
660
660
|
'Declares how the extension should be handled in untrusted workspaces.'
|
|
661
661
|
)),
|
|
662
662
|
type: 'object',
|
|
@@ -667,26 +667,26 @@ const schema = {
|
|
|
667
667
|
properties: {
|
|
668
668
|
supported: {
|
|
669
669
|
markdownDescription: ( localize(
|
|
670
|
-
|
|
670
|
+
13547,
|
|
671
671
|
"Declares the level of support for untrusted workspaces by the extension."
|
|
672
672
|
)),
|
|
673
673
|
type: ['string', 'boolean'],
|
|
674
674
|
enum: ['limited', true, false],
|
|
675
675
|
enumDescriptions: [
|
|
676
676
|
( localize(
|
|
677
|
-
|
|
677
|
+
13548,
|
|
678
678
|
"The extension will be enabled in untrusted workspaces with some functionality disabled."
|
|
679
679
|
)),
|
|
680
680
|
( localize(
|
|
681
|
-
|
|
681
|
+
13549,
|
|
682
682
|
"The extension will be enabled in untrusted workspaces with all functionality enabled."
|
|
683
683
|
)),
|
|
684
|
-
( localize(
|
|
684
|
+
( localize(13550, "The extension will not be enabled in untrusted workspaces.")),
|
|
685
685
|
]
|
|
686
686
|
},
|
|
687
687
|
restrictedConfigurations: {
|
|
688
688
|
description: ( localize(
|
|
689
|
-
|
|
689
|
+
13551,
|
|
690
690
|
"A list of configuration keys contributed by the extension that should not use workspace values in untrusted workspaces."
|
|
691
691
|
)),
|
|
692
692
|
type: 'array',
|
|
@@ -697,7 +697,7 @@ const schema = {
|
|
|
697
697
|
description: {
|
|
698
698
|
type: 'string',
|
|
699
699
|
markdownDescription: ( localize(
|
|
700
|
-
|
|
700
|
+
13552,
|
|
701
701
|
"A description of how workspace trust affects the extensions behavior and why it is needed. This only applies when `supported` is not `true`."
|
|
702
702
|
)),
|
|
703
703
|
}
|
|
@@ -706,7 +706,7 @@ const schema = {
|
|
|
706
706
|
}
|
|
707
707
|
},
|
|
708
708
|
sponsor: {
|
|
709
|
-
description: ( localize(
|
|
709
|
+
description: ( localize(13553, "Specify the location from where users can sponsor your extension.")),
|
|
710
710
|
type: 'object',
|
|
711
711
|
defaultSnippets: [
|
|
712
712
|
{ body: { url: '${1:https:}' } },
|
|
@@ -714,7 +714,7 @@ const schema = {
|
|
|
714
714
|
properties: {
|
|
715
715
|
'url': {
|
|
716
716
|
description: ( localize(
|
|
717
|
-
|
|
717
|
+
13554,
|
|
718
718
|
"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"
|
|
719
719
|
)),
|
|
720
720
|
type: 'string',
|
|
@@ -726,14 +726,14 @@ const schema = {
|
|
|
726
726
|
properties: {
|
|
727
727
|
'vscode:prepublish': {
|
|
728
728
|
description: ( localize(
|
|
729
|
-
|
|
729
|
+
13555,
|
|
730
730
|
'Script executed before the package is published as a VS Code extension.'
|
|
731
731
|
)),
|
|
732
732
|
type: 'string'
|
|
733
733
|
},
|
|
734
734
|
'vscode:uninstall': {
|
|
735
735
|
description: ( localize(
|
|
736
|
-
|
|
736
|
+
13556,
|
|
737
737
|
'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.'
|
|
738
738
|
)),
|
|
739
739
|
type: 'string'
|
|
@@ -742,19 +742,19 @@ const schema = {
|
|
|
742
742
|
},
|
|
743
743
|
icon: {
|
|
744
744
|
type: 'string',
|
|
745
|
-
description: ( localize(
|
|
745
|
+
description: ( localize(13557, 'The path to a 128x128 pixel icon.'))
|
|
746
746
|
},
|
|
747
747
|
l10n: {
|
|
748
748
|
type: 'string',
|
|
749
749
|
description: ( localize(
|
|
750
|
-
|
|
750
|
+
13558,
|
|
751
751
|
'The relative path to a folder containing localization (bundle.l10n.*.json) files. Must be specified if you are using the vscode.l10n API.'
|
|
752
752
|
))
|
|
753
753
|
},
|
|
754
754
|
pricing: {
|
|
755
755
|
type: 'string',
|
|
756
756
|
markdownDescription: ( localize(
|
|
757
|
-
|
|
757
|
+
13559,
|
|
758
758
|
'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'
|
|
759
759
|
)),
|
|
760
760
|
enum: ['Free', 'Trial'],
|
|
@@ -792,7 +792,7 @@ schemaRegistry.registerSchema(schemaId, schema);
|
|
|
792
792
|
schemaRegistry.registerSchema(productSchemaId, {
|
|
793
793
|
properties: {
|
|
794
794
|
extensionEnabledApiProposals: {
|
|
795
|
-
description: ( localize(
|
|
795
|
+
description: ( localize(13560, "API proposals that the respective extensions can freely use.")),
|
|
796
796
|
type: 'object',
|
|
797
797
|
properties: {},
|
|
798
798
|
additionalProperties: {
|