@adminide-stack/extension-api 1.1.3-alpha.5 → 1.1.3-alpha.56
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/lib/connections/jsonrpc2/connection.js +10 -10
- package/lib/connections/jsonrpc2/connection.js.map +1 -1
- package/lib/connections/jsonrpc2/connection.test.js +98 -98
- package/lib/connections/jsonrpc2/connection.test.js.map +1 -1
- package/lib/connections/jsonrpc2/index.js +5 -1
- package/lib/connections/jsonrpc2/index.js.map +1 -1
- package/lib/connections/proxy/index.js +5 -1
- package/lib/connections/proxy/index.js.map +1 -1
- package/lib/connections/proxy/proxy.test.js +6 -6
- package/lib/connections/proxy/proxy.test.js.map +1 -1
- package/lib/connections/remote-rpc/browser-remote-rpc.js +4 -4
- package/lib/connections/remote-rpc/browser-remote-rpc.js.map +1 -1
- package/lib/connections/remote-rpc/browser-server-rpc.test.js +28 -28
- package/lib/connections/remote-rpc/browser-server-rpc.test.js.map +1 -1
- package/lib/connections/remote-rpc/index.js +5 -1
- package/lib/connections/remote-rpc/index.js.map +1 -1
- package/lib/connections/remote-rpc/old-browser-remote-rpc.js +1 -1
- package/lib/connections/remote-rpc/old-browser-remote-rpc.js.map +1 -1
- package/lib/constants/index.js +5 -1
- package/lib/constants/index.js.map +1 -1
- package/lib/core/expr/evaluator.test.js +1 -1
- package/lib/core/expr/evaluator.test.js.map +1 -1
- package/lib/core/expr/index.js +5 -1
- package/lib/core/expr/index.js.map +1 -1
- package/lib/core/index.js +5 -1
- package/lib/core/index.js.map +1 -1
- package/lib/core/types/ext-host-types.js +2 -2
- package/lib/core/types/ext-host-types.js.map +1 -1
- package/lib/core/types/index.js +5 -1
- package/lib/core/types/index.js.map +1 -1
- package/lib/errors/index.js +5 -1
- package/lib/errors/index.js.map +1 -1
- package/lib/index.js +5 -1
- package/lib/index.js.map +1 -1
- package/lib/interfaces/contributions/index.js +5 -1
- package/lib/interfaces/contributions/index.js.map +1 -1
- package/lib/interfaces/ext-services/index.js +5 -1
- package/lib/interfaces/ext-services/index.js.map +1 -1
- package/lib/interfaces/generated-models.d.ts +331 -407
- package/lib/interfaces/generated-models.js +14 -14
- package/lib/interfaces/generated-models.js.map +1 -1
- package/lib/interfaces/index.js +5 -1
- package/lib/interfaces/index.js.map +1 -1
- package/lib/interfaces/react-props/index.js +5 -1
- package/lib/interfaces/react-props/index.js.map +1 -1
- package/lib/interfaces/text-document.js +2 -2
- package/lib/interfaces/text-document.js.map +1 -1
- package/lib/interfaces/webview/index.js +5 -1
- package/lib/interfaces/webview/index.js.map +1 -1
- package/lib/protocol/client.protocol.js +1 -1
- package/lib/protocol/client.protocol.js.map +1 -1
- package/lib/protocol/index.js +5 -1
- package/lib/protocol/index.js.map +1 -1
- package/lib/protocol/proxy-identifier.js +2 -2
- package/lib/protocol/proxy-identifier.js.map +1 -1
- package/lib/protocol/rpc-protocol.d.ts +1 -0
- package/lib/protocol/rpc-protocol.js +57 -57
- package/lib/protocol/rpc-protocol.js.map +1 -1
- package/lib/protocol/server.protocol.d.ts +4 -1
- package/lib/protocol/server.protocol.js +10 -10
- package/lib/protocol/server.protocol.js.map +1 -1
- package/lib/protocol/shared/editor.js +2 -2
- package/lib/protocol/shared/editor.js.map +1 -1
- package/lib/protocol/utils/index.js +5 -1
- package/lib/protocol/utils/index.js.map +1 -1
- package/lib/protocol/utils/lazy-promise.js +2 -1
- package/lib/protocol/utils/lazy-promise.js.map +1 -1
- package/lib/utils/extensions.js +1 -1
- package/lib/utils/extensions.js.map +1 -1
- package/lib/utils/index.js +5 -1
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/rxjs/combineLatestOrDefault.js +4 -4
- package/lib/utils/rxjs/combineLatestOrDefault.js.map +1 -1
- package/lib/utils/rxjs/combineLatestOrDefault.test.js +9 -9
- package/lib/utils/rxjs/combineLatestOrDefault.test.js.map +1 -1
- package/lib/utils/rxjs/index.js +5 -1
- package/lib/utils/rxjs/index.js.map +1 -1
- package/lib/utils/util.js +1 -1
- package/lib/utils/util.js.map +1 -1
- package/lib/worker-lib/index.js +5 -1
- package/lib/worker-lib/index.js.map +1 -1
- package/lib/worker-lib/webWorkerLink.js +3 -3
- package/lib/worker-lib/webWorkerLink.js.map +1 -1
- package/lib/worker-lib/workerUtils.js +8 -8
- package/lib/worker-lib/workerUtils.js.map +1 -1
- package/package.json +4 -4
|
@@ -27,13 +27,13 @@ export declare type Scalars = {
|
|
|
27
27
|
Int: number;
|
|
28
28
|
Float: number;
|
|
29
29
|
AnyObject: any;
|
|
30
|
-
JSON: any;
|
|
31
|
-
URI: URI;
|
|
32
|
-
Observable: any;
|
|
33
30
|
Date: any;
|
|
34
31
|
DateTime: any;
|
|
32
|
+
JSON: any;
|
|
35
33
|
JSONObject: any;
|
|
34
|
+
Observable: any;
|
|
36
35
|
Time: any;
|
|
36
|
+
URI: URI;
|
|
37
37
|
URIInput: URI | UriComponents;
|
|
38
38
|
};
|
|
39
39
|
export declare type IAdminIdeSettings = {
|
|
@@ -95,16 +95,16 @@ export declare type ICommandHandlerDescriptionType = {
|
|
|
95
95
|
args?: Maybe<Array<Maybe<IArgsType>>>;
|
|
96
96
|
returns?: Maybe<Scalars['String']>;
|
|
97
97
|
};
|
|
98
|
-
export declare type ICommandsType = {
|
|
99
|
-
__typename?: 'CommandsType';
|
|
100
|
-
commands?: Maybe<Array<Maybe<ICommandType>>>;
|
|
101
|
-
};
|
|
102
98
|
export declare type ICommandType = {
|
|
103
99
|
__typename?: 'CommandType';
|
|
104
100
|
id?: Maybe<Scalars['String']>;
|
|
105
101
|
handler?: Maybe<Scalars['AnyObject']>;
|
|
106
102
|
description?: Maybe<ICommandHandlerDescriptionType>;
|
|
107
103
|
};
|
|
104
|
+
export declare type ICommandsType = {
|
|
105
|
+
__typename?: 'CommandsType';
|
|
106
|
+
commands?: Maybe<Array<Maybe<ICommandType>>>;
|
|
107
|
+
};
|
|
108
108
|
export declare type IContextMenu = {
|
|
109
109
|
__typename?: 'ContextMenu';
|
|
110
110
|
id?: Maybe<Scalars['String']>;
|
|
@@ -134,16 +134,6 @@ export declare type IContributionAction = {
|
|
|
134
134
|
radio?: Maybe<Scalars['Boolean']>;
|
|
135
135
|
run?: Maybe<IContributionActionRun>;
|
|
136
136
|
};
|
|
137
|
-
export declare type IContributionAction_input = {
|
|
138
|
-
id?: Maybe<Scalars['String']>;
|
|
139
|
-
label?: Maybe<Scalars['String']>;
|
|
140
|
-
tooltip?: Maybe<Scalars['String']>;
|
|
141
|
-
class?: Maybe<Scalars['String']>;
|
|
142
|
-
enabled?: Maybe<Scalars['Boolean']>;
|
|
143
|
-
checked?: Maybe<Scalars['Boolean']>;
|
|
144
|
-
radio?: Maybe<Scalars['Boolean']>;
|
|
145
|
-
run?: Maybe<IContributionActionRun_input>;
|
|
146
|
-
};
|
|
147
137
|
export declare type IContributionActionItem = {
|
|
148
138
|
__typename?: 'ContributionActionItem';
|
|
149
139
|
label?: Maybe<Scalars['String']>;
|
|
@@ -160,6 +150,16 @@ export declare type IContributionActionRun_input = {
|
|
|
160
150
|
document?: Maybe<Scalars['AnyObject']>;
|
|
161
151
|
variables?: Maybe<Scalars['AnyObject']>;
|
|
162
152
|
};
|
|
153
|
+
export declare type IContributionAction_input = {
|
|
154
|
+
id?: Maybe<Scalars['String']>;
|
|
155
|
+
label?: Maybe<Scalars['String']>;
|
|
156
|
+
tooltip?: Maybe<Scalars['String']>;
|
|
157
|
+
class?: Maybe<Scalars['String']>;
|
|
158
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
159
|
+
checked?: Maybe<Scalars['Boolean']>;
|
|
160
|
+
radio?: Maybe<Scalars['Boolean']>;
|
|
161
|
+
run?: Maybe<IContributionActionRun_input>;
|
|
162
|
+
};
|
|
163
163
|
export declare type IContributionActions = {
|
|
164
164
|
__typename?: 'ContributionActions';
|
|
165
165
|
id?: Maybe<Scalars['String']>;
|
|
@@ -277,9 +277,7 @@ export declare type IExtensionContributions = {
|
|
|
277
277
|
* commands with their `category`, allowing for easy grouping. However, the Command Pallette doesn't show icons nor disabled
|
|
278
278
|
* commands. The editor context menu, on the other hand, show disabled items but doesn't show the category label.
|
|
279
279
|
*
|
|
280
|
-
* Note: When a command is invoked (from a key binding, from the Command Palette,
|
|
281
|
-
* any other menu, or programmatically), VS Code will emit an activationEvent
|
|
282
|
-
* onCommand:${command}.
|
|
280
|
+
* Note: When a command is invoked (from a key binding, from the Command Palette, any other menu, or programmatically), VS Code will emit an activationEvent onCommand:${command}.
|
|
283
281
|
*
|
|
284
282
|
* @example
|
|
285
283
|
* ```
|
|
@@ -295,16 +293,11 @@ export declare type IExtensionContributions = {
|
|
|
295
293
|
commands?: Maybe<Array<Maybe<IContributionActions>>>;
|
|
296
294
|
/**
|
|
297
295
|
* @title contributes.configuration
|
|
298
|
-
* @description Contribute configuration keys that will be exposed to the user.
|
|
299
|
-
*
|
|
300
|
-
* Settings or from the Workspace Settings.
|
|
301
|
-
* When contributing configuration keys, a JSON schema describing these keys is
|
|
302
|
-
* actually contributed. This ensures the user gets great tooling support when
|
|
303
|
-
* authoring VS Code settings files.
|
|
296
|
+
* @description Contribute configuration keys that will be exposed to the user. The user will be able to set these configuration options either from User Settings or from the Workspace Settings.
|
|
297
|
+
* When contributing configuration keys, a JSON schema describing these keys is actually contributed. This ensures the user gets great tooling support when authoring VS Code settings files.
|
|
304
298
|
* You can read these values from your extension using vscode.workspace.getConfiguration('myExtension').
|
|
305
299
|
*
|
|
306
|
-
* Note: If you use markdownDescription instead of description, your setting
|
|
307
|
-
* description will be rendered as Markdown in the settings UI.
|
|
300
|
+
* Note: If you use markdownDescription instead of description, your setting description will be rendered as Markdown in the settings UI.
|
|
308
301
|
*
|
|
309
302
|
* @example
|
|
310
303
|
* ```
|
|
@@ -332,12 +325,9 @@ export declare type IExtensionContributions = {
|
|
|
332
325
|
debuggers?: Maybe<Array<Maybe<IDebugger>>>;
|
|
333
326
|
/**
|
|
334
327
|
* @title contributes.grammars
|
|
335
|
-
* @description Contribute a TextMate grammar to a language. You must provide
|
|
336
|
-
* the language this grammar applies to, the TextMate scopeName for the grammar
|
|
337
|
-
* and the file path.
|
|
328
|
+
* @description Contribute a TextMate grammar to a language. You must provide the language this grammar applies to, the TextMate scopeName for the grammar and the file path.
|
|
338
329
|
*
|
|
339
|
-
* Note: The file containing the grammar can be in JSON (filenames ending in
|
|
340
|
-
* .json) or in XML plist format (all other files).
|
|
330
|
+
* Note: The file containing the grammar can be in JSON (filenames ending in .json) or in XML plist format (all other files).
|
|
341
331
|
*
|
|
342
332
|
* @example
|
|
343
333
|
* ```json
|
|
@@ -357,9 +347,7 @@ export declare type IExtensionContributions = {
|
|
|
357
347
|
grammars?: Maybe<Array<Maybe<IGrammar>>>;
|
|
358
348
|
/**
|
|
359
349
|
* @title contributes.jsonValidation
|
|
360
|
-
* @description Contribute a validation schema for a specific type of json file.
|
|
361
|
-
* The url value can be either a local path to a schema file included in the
|
|
362
|
-
* extension or a remote server URL such as a json schema store.
|
|
350
|
+
* @description Contribute a validation schema for a specific type of json file. The url value can be either a local path to a schema file included in the extension or a remote server URL such as a json schema store.
|
|
363
351
|
*
|
|
364
352
|
* @example
|
|
365
353
|
* "contributes": {
|
|
@@ -372,21 +360,13 @@ export declare type IExtensionContributions = {
|
|
|
372
360
|
jsonValidation?: Maybe<Array<Maybe<IExtensionJSONValidation>>>;
|
|
373
361
|
/**
|
|
374
362
|
* @title contributes.keybindings
|
|
375
|
-
* @description Contribute a key binding rule defining what command should be
|
|
376
|
-
* invoked when the user presses a key combination. See the Key Bindings topic
|
|
377
|
-
* where key bindings are explained in detail.
|
|
363
|
+
* @description Contribute a key binding rule defining what command should be invoked when the user presses a key combination. See the Key Bindings topic where key bindings are explained in detail.
|
|
378
364
|
*
|
|
379
|
-
* Contributing a key binding will cause the Default Keyboard Shortcuts to
|
|
380
|
-
* display your rule, and every UI representation of the command will now show
|
|
381
|
-
* the key binding you have added. And, of course, when the user presses the key
|
|
382
|
-
* combination the command will be invoked.
|
|
365
|
+
* Contributing a key binding will cause the Default Keyboard Shortcuts to display your rule, and every UI representation of the command will now show the key binding you have added. And, of course, when the user presses the key combination the command will be invoked.
|
|
383
366
|
*
|
|
384
|
-
* Note: Because VS Code runs on Windows, macOS and Linux, where modifiers
|
|
385
|
-
* differ, you can use "key" to set the default key combination and overwrite it
|
|
386
|
-
* with a specific platform.
|
|
367
|
+
* Note: Because VS Code runs on Windows, macOS and Linux, where modifiers differ, you can use "key" to set the default key combination and overwrite it with a specific platform.
|
|
387
368
|
*
|
|
388
|
-
* Note: When a command is invoked (from a key binding or from the Command
|
|
389
|
-
* Palette), VS Code will emit an activationEvent onCommand:${command}.
|
|
369
|
+
* Note: When a command is invoked (from a key binding or from the Command Palette), VS Code will emit an activationEvent onCommand:${command}.
|
|
390
370
|
*
|
|
391
371
|
* @example
|
|
392
372
|
* Defining that Ctrl+F1 under Windows and Linux and Cmd+F1 under macOS trigger the "extension.sayHello" command:
|
|
@@ -405,20 +385,14 @@ export declare type IExtensionContributions = {
|
|
|
405
385
|
keybindings?: Maybe<Array<Maybe<IKeyBinding>>>;
|
|
406
386
|
/**
|
|
407
387
|
* @title contributes.languages
|
|
408
|
-
* @description Contribute definition of a language. This will introduce a new
|
|
409
|
-
* language or enrich the knowledge VS Code has about a language.
|
|
388
|
+
* @description Contribute definition of a language. This will introduce a new language or enrich the knowledge VS Code has about a language.
|
|
410
389
|
*
|
|
411
390
|
* The main effects of contributes.languages are:
|
|
412
391
|
*
|
|
413
|
-
* Define a languageId that can be reused in other parts of VS Code API, such as
|
|
414
|
-
*
|
|
415
|
-
*
|
|
416
|
-
* the
|
|
417
|
-
* Associate file name extensions, file name patterns, files that begin with a
|
|
418
|
-
* specific line (such as hashbang), mimetypes to that languageId.
|
|
419
|
-
* Contribute a set of Declarative Language Features for the contributed
|
|
420
|
-
* language. Learn more about the configurable editing features in the Language
|
|
421
|
-
* Configuration Guide.
|
|
392
|
+
* Define a languageId that can be reused in other parts of VS Code API, such as vscode.TextDocument.getLanguageId() and the onLanguage Activation Events.
|
|
393
|
+
* You can contribute a human-readable using the aliases field. The first item in the list will be used as the human-readable label.
|
|
394
|
+
* Associate file name extensions, file name patterns, files that begin with a specific line (such as hashbang), mimetypes to that languageId.
|
|
395
|
+
* Contribute a set of Declarative Language Features for the contributed language. Learn more about the configurable editing features in the Language Configuration Guide.
|
|
422
396
|
*
|
|
423
397
|
* @example
|
|
424
398
|
* ```
|
|
@@ -437,21 +411,13 @@ export declare type IExtensionContributions = {
|
|
|
437
411
|
languages?: Maybe<Array<Maybe<IExtensionLanguage>>>;
|
|
438
412
|
/**
|
|
439
413
|
* @title contributes.menus
|
|
440
|
-
* @description Contribute a menu item for a command to the editor or Explorer.
|
|
441
|
-
* The menu item definition contains the command that should be invoked when
|
|
442
|
-
* selected and the condition under which the item should show. The latter is
|
|
443
|
-
* defined with the when clause, which uses the key bindings when clause contexts.
|
|
414
|
+
* @description Contribute a menu item for a command to the editor or Explorer. The menu item definition contains the command that should be invoked when selected and the condition under which the item should show. The latter is defined with the when clause, which uses the key bindings when clause contexts.
|
|
444
415
|
*
|
|
445
|
-
* In addition to the mandatory command property, an alternative command can be
|
|
446
|
-
* defined using the alt-property. It will be shown and invoked when pressing Alt
|
|
447
|
-
* while opening a menu.
|
|
416
|
+
* In addition to the mandatory command property, an alternative command can be defined using the alt-property. It will be shown and invoked when pressing Alt while opening a menu.
|
|
448
417
|
*
|
|
449
|
-
* Last, a group property defines sorting and grouping of menu items. The
|
|
450
|
-
* navigation group is special as it will always be sorted to the top/beginning of a menu.
|
|
418
|
+
* Last, a group property defines sorting and grouping of menu items. The navigation group is special as it will always be sorted to the top/beginning of a menu.
|
|
451
419
|
*
|
|
452
|
-
* Note that when clauses apply to menus and enablement clauses to commands. The
|
|
453
|
-
* enablement applies to all menus and even keybindings while the when only
|
|
454
|
-
* applies to a single menu.
|
|
420
|
+
* Note that when clauses apply to menus and enablement clauses to commands. The enablement applies to all menus and even keybindings while the when only applies to a single menu.
|
|
455
421
|
*
|
|
456
422
|
* Currently extension writers can contribute to:
|
|
457
423
|
*
|
|
@@ -473,10 +439,7 @@ export declare type IExtensionContributions = {
|
|
|
473
439
|
* The comment thread actions - comments/commentThread/context
|
|
474
440
|
* The comment title - comments/comment/title
|
|
475
441
|
* The comment actions - comments/comment/context
|
|
476
|
-
* Note: When a command is invoked from a (context) menu, VS Code tries to infer
|
|
477
|
-
* the currently selected resource and passes that as a parameter when invoking
|
|
478
|
-
* the command. For instance, a menu item inside the Explorer is passed the URI
|
|
479
|
-
* of the selected resource and a menu item inside an editor is passed the URI of the document.
|
|
442
|
+
* Note: When a command is invoked from a (context) menu, VS Code tries to infer the currently selected resource and passes that as a parameter when invoking the command. For instance, a menu item inside the Explorer is passed the URI of the selected resource and a menu item inside an editor is passed the URI of the document.
|
|
480
443
|
*
|
|
481
444
|
* In addition to a title, commands can also define icons which VS Code will show in the editor title menu bar.
|
|
482
445
|
*
|
|
@@ -495,9 +458,7 @@ export declare type IExtensionContributions = {
|
|
|
495
458
|
menus?: Maybe<IMenus>;
|
|
496
459
|
/**
|
|
497
460
|
* @title contributes.snippets
|
|
498
|
-
* @description Contribute snippets for a specific language. The language
|
|
499
|
-
* attribute is the language identifier and the path is the relative path to the
|
|
500
|
-
* snippet file, which defines snippets in the VS Code snippet format.
|
|
461
|
+
* @description Contribute snippets for a specific language. The language attribute is the language identifier and the path is the relative path to the snippet file, which defines snippets in the VS Code snippet format.
|
|
501
462
|
*
|
|
502
463
|
* @example
|
|
503
464
|
*
|
|
@@ -513,9 +474,7 @@ export declare type IExtensionContributions = {
|
|
|
513
474
|
snippets?: Maybe<Array<Maybe<ISnippet>>>;
|
|
514
475
|
/**
|
|
515
476
|
* @title contributes.themes
|
|
516
|
-
* @description Contribute a TextMate theme to VS Code. You must specify a label,
|
|
517
|
-
* whether the theme is a dark theme or a light theme (such that the rest of VS
|
|
518
|
-
* Code changes to match your theme) and the path to the file (XML plist format).
|
|
477
|
+
* @description Contribute a TextMate theme to VS Code. You must specify a label, whether the theme is a dark theme or a light theme (such that the rest of VS Code changes to match your theme) and the path to the file (XML plist format).
|
|
519
478
|
*
|
|
520
479
|
* @example
|
|
521
480
|
* ```json
|
|
@@ -532,11 +491,7 @@ export declare type IExtensionContributions = {
|
|
|
532
491
|
iconThemes?: Maybe<Array<Maybe<IThemeLabel>>>;
|
|
533
492
|
/**
|
|
534
493
|
* @title contributes.viewsContainers
|
|
535
|
-
* @description Contribute a view container into which Custom views can be
|
|
536
|
-
* contributed. You must specify an identifier, title, and an icon for the view
|
|
537
|
-
* container. At present, you can contribute them to the Activity Bar
|
|
538
|
-
* (activitybar) only. Below example shows how the Package Explorer view
|
|
539
|
-
* container is contributed to the Activity Bar and how views are contributed to it.
|
|
494
|
+
* @description Contribute a view container into which Custom views can be contributed. You must specify an identifier, title, and an icon for the view container. At present, you can contribute them to the Activity Bar (activitybar) only. Below example shows how the Package Explorer view container is contributed to the Activity Bar and how views are contributed to it.
|
|
540
495
|
*
|
|
541
496
|
* @example
|
|
542
497
|
* ```json
|
|
@@ -568,11 +523,7 @@ export declare type IExtensionContributions = {
|
|
|
568
523
|
viewsContainers?: Maybe<Scalars['JSON']>;
|
|
569
524
|
/**
|
|
570
525
|
* @title contributes.viewsContainers
|
|
571
|
-
* @description Contribute a view container into which Custom views can be
|
|
572
|
-
* contributed. You must specify an identifier, title, and an icon for the view
|
|
573
|
-
* container. At present, you can contribute them to the Activity Bar
|
|
574
|
-
* (activitybar) only. Below example shows how the Package Explorer view
|
|
575
|
-
* container is contributed to the Activity Bar and how views are contributed to it.
|
|
526
|
+
* @description Contribute a view container into which Custom views can be contributed. You must specify an identifier, title, and an icon for the view container. At present, you can contribute them to the Activity Bar (activitybar) only. Below example shows how the Package Explorer view container is contributed to the Activity Bar and how views are contributed to it.
|
|
576
527
|
*
|
|
577
528
|
* @example
|
|
578
529
|
* ```json
|
|
@@ -604,10 +555,7 @@ export declare type IExtensionContributions = {
|
|
|
604
555
|
views?: Maybe<Scalars['JSON']>;
|
|
605
556
|
/**
|
|
606
557
|
* @title contributes.colors
|
|
607
|
-
* @description Contributes new themable colors. These colors can be used by the
|
|
608
|
-
* extension in editor decorators and in the status bar. Once defined, users can
|
|
609
|
-
* customize the color in the workspace.colorCustomization setting and user
|
|
610
|
-
* themes can set the color value.
|
|
558
|
+
* @description Contributes new themable colors. These colors can be used by the extension in editor decorators and in the status bar. Once defined, users can customize the color in the workspace.colorCustomization setting and user themes can set the color value.
|
|
611
559
|
*
|
|
612
560
|
* @example
|
|
613
561
|
* ```json
|
|
@@ -623,8 +571,7 @@ export declare type IExtensionContributions = {
|
|
|
623
571
|
* }]
|
|
624
572
|
* }
|
|
625
573
|
* ```
|
|
626
|
-
* Color default values can be defined for light, dark and high contrast theme
|
|
627
|
-
* and can either be a reference to an existing color or a Color Hex Value.
|
|
574
|
+
* Color default values can be defined for light, dark and high contrast theme and can either be a reference to an existing color or a Color Hex Value.
|
|
628
575
|
*/
|
|
629
576
|
colors?: Maybe<Array<Maybe<IExtensionColor>>>;
|
|
630
577
|
localizations?: Maybe<Array<Maybe<ILocalization>>>;
|
|
@@ -682,20 +629,11 @@ export declare type IExtensionManifest = {
|
|
|
682
629
|
version?: Maybe<Scalars['String']>;
|
|
683
630
|
/** The entry point to your extension */
|
|
684
631
|
main?: Maybe<Scalars['String']>;
|
|
685
|
-
/**
|
|
686
|
-
* Array of approved badges to display in the sidebar of the Marketplace's
|
|
687
|
-
* extension page. Each badge is an object containing 3 properties: url for the
|
|
688
|
-
* badge's image URL, href for the link users will follow when clicking the badge
|
|
689
|
-
* and description.
|
|
690
|
-
*/
|
|
632
|
+
/** Array of approved badges to display in the sidebar of the Marketplace's extension page. Each badge is an object containing 3 properties: url for the badge's image URL, href for the link users will follow when clicking the badge and description. */
|
|
691
633
|
badges?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
692
634
|
/** Sets the extension to be flagged as a Preview in the Marketplace. */
|
|
693
635
|
preview?: Maybe<Scalars['Boolean']>;
|
|
694
|
-
/**
|
|
695
|
-
* An array of keywords to make it easier to find the extension. These are
|
|
696
|
-
* included with other extension Tags on the Marketplace. This list is currently
|
|
697
|
-
* limited to 5 keywords.
|
|
698
|
-
*/
|
|
636
|
+
/** An array of keywords to make it easier to find the extension. These are included with other extension Tags on the Marketplace. This list is currently limited to 5 keywords. */
|
|
699
637
|
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
700
638
|
/**
|
|
701
639
|
* Refer to npm's documentation. If you do have a LICENSE file in the root of
|
|
@@ -705,11 +643,7 @@ export declare type IExtensionManifest = {
|
|
|
705
643
|
homepage?: Maybe<Scalars['String']>;
|
|
706
644
|
/** The publisher name */
|
|
707
645
|
publisher?: Maybe<Scalars['String']>;
|
|
708
|
-
/**
|
|
709
|
-
* the categories you want to use for the extensions allowed values: [Programming
|
|
710
|
-
* Languages, Snippets, Linters, Themes, Debuggers, Formatters, Keymaps, SCM
|
|
711
|
-
* Providers, Other, Extension Packs, Language Packs]
|
|
712
|
-
*/
|
|
646
|
+
/** the categories you want to use for the extensions allowed values: [Programming Languages, Snippets, Linters, Themes, Debuggers, Formatters, Keymaps, SCM Providers, Other, Extension Packs, Language Packs] */
|
|
713
647
|
categories?: Maybe<Scalars['String']>;
|
|
714
648
|
/** A short description of what your extension is and does. */
|
|
715
649
|
description?: Maybe<Scalars['String']>;
|
|
@@ -721,18 +655,14 @@ export declare type IExtensionManifest = {
|
|
|
721
655
|
/** Any development Node.js dependencies your extension needs. Exactly the same as npm's devDependencies. */
|
|
722
656
|
devDependencies?: Maybe<Scalars['JSON']>;
|
|
723
657
|
/**
|
|
724
|
-
* An array with the ids of extensions bundled with this extension. These other
|
|
725
|
-
* extensions will be installed when the primary extension is installed. The id
|
|
726
|
-
* of an extension is always
|
|
658
|
+
* An array with the ids of extensions bundled with this extension. These other extensions will be installed when the primary extension is installed. The id of an extension is always
|
|
727
659
|
* `${publisher}.${name}`. For example: vscode.csharp.
|
|
728
660
|
*/
|
|
729
661
|
extensionPack?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
730
662
|
/** An extension can be of 'ui' | 'workspace' */
|
|
731
663
|
extensionKind?: Maybe<IExtensionKind>;
|
|
732
664
|
/**
|
|
733
|
-
* An array with the ids of extensions that this extension depends on. These
|
|
734
|
-
* other extensions will be installed when the primary extension is installed.
|
|
735
|
-
* The id of an extension is always
|
|
665
|
+
* An array with the ids of extensions that this extension depends on. These other extensions will be installed when the primary extension is installed. The id of an extension is always
|
|
736
666
|
* `${publisher}.${name}`. For example: vscode.csharp.
|
|
737
667
|
*/
|
|
738
668
|
extensionDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -758,11 +688,7 @@ export declare type IExtensionManifest = {
|
|
|
758
688
|
engines?: Maybe<IEngines>;
|
|
759
689
|
/** Controls the Markdown rendering engine used in the Marketplace. Either github (default) or standard. */
|
|
760
690
|
makrdown?: Maybe<Scalars['String']>;
|
|
761
|
-
/**
|
|
762
|
-
* Controls the Q & A link in the Marketplace. Set to marketplace to enable the
|
|
763
|
-
* default Marketplace Q & A site. Set to a string to provide the URL of a custom
|
|
764
|
-
* Q & A site. Set to false to disable Q & A altogether.
|
|
765
|
-
*/
|
|
691
|
+
/** 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. */
|
|
766
692
|
qna?: Maybe<Scalars['String']>;
|
|
767
693
|
author?: Maybe<IAuthor>;
|
|
768
694
|
/** Helps format the Marketplace header to match your icon. See details below. */
|
|
@@ -815,8 +741,7 @@ export declare type IExtensionRegistry = {
|
|
|
815
741
|
/** To find an extension by its GraphQL ID, use Query.node */
|
|
816
742
|
extension?: Maybe<IRegistryExtension>;
|
|
817
743
|
/**
|
|
818
|
-
* Find an extension by its extension ID (which is the concatenation of the
|
|
819
|
-
* publisher naem, a slash ("/"), and the extension name).
|
|
744
|
+
* Find an extension by its extension ID (which is the concatenation of the publisher naem, a slash ("/"), and the extension name).
|
|
820
745
|
*
|
|
821
746
|
* To find an extension by its GraphQL ID, use Query.node
|
|
822
747
|
* extension(extensionID: String!): RegistryExtension
|
|
@@ -1036,12 +961,6 @@ export declare type IIModelInput = {
|
|
|
1036
961
|
roots?: Maybe<IIWorkspaceRootInput>;
|
|
1037
962
|
visibleViewComponents?: Maybe<Array<Maybe<IIViewComponentDataInput>>>;
|
|
1038
963
|
};
|
|
1039
|
-
export declare type IInstalledExtension = {
|
|
1040
|
-
__typename?: 'InstalledExtension';
|
|
1041
|
-
extension?: Maybe<IGalleryExtension>;
|
|
1042
|
-
identifier?: Maybe<IExtensionIdentifier>;
|
|
1043
|
-
galleryIdentifier?: Maybe<IExtensionIdentifier>;
|
|
1044
|
-
};
|
|
1045
964
|
export declare type IIObservableResult = {
|
|
1046
965
|
__typename?: 'IObservableResult';
|
|
1047
966
|
closed?: Maybe<Scalars['Boolean']>;
|
|
@@ -1097,6 +1016,12 @@ export declare type IIWorkspaceRoot = {
|
|
|
1097
1016
|
export declare type IIWorkspaceRootInput = {
|
|
1098
1017
|
url?: Maybe<Scalars['String']>;
|
|
1099
1018
|
};
|
|
1019
|
+
export declare type IInstalledExtension = {
|
|
1020
|
+
__typename?: 'InstalledExtension';
|
|
1021
|
+
extension?: Maybe<IGalleryExtension>;
|
|
1022
|
+
identifier?: Maybe<IExtensionIdentifier>;
|
|
1023
|
+
galleryIdentifier?: Maybe<IExtensionIdentifier>;
|
|
1024
|
+
};
|
|
1100
1025
|
export declare type IKeyBinding = {
|
|
1101
1026
|
__typename?: 'KeyBinding';
|
|
1102
1027
|
command?: Maybe<Scalars['String']>;
|
|
@@ -1176,12 +1101,6 @@ export declare type IMenuItem = {
|
|
|
1176
1101
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
1177
1102
|
run?: Maybe<IContributionActionRun>;
|
|
1178
1103
|
};
|
|
1179
|
-
export declare type IMenuItem_input = {
|
|
1180
|
-
id?: Maybe<Scalars['String']>;
|
|
1181
|
-
label?: Maybe<Scalars['String']>;
|
|
1182
|
-
enabled?: Maybe<Scalars['Boolean']>;
|
|
1183
|
-
run?: Maybe<IContributionActionRun_input>;
|
|
1184
|
-
};
|
|
1185
1104
|
export declare type IMenuItemAction = {
|
|
1186
1105
|
__typename?: 'MenuItemAction';
|
|
1187
1106
|
action?: Maybe<Scalars['String']>;
|
|
@@ -1226,6 +1145,12 @@ export declare type IMenuItemActionView = {
|
|
|
1226
1145
|
/** The contributed view item context menu */
|
|
1227
1146
|
item?: Maybe<IMenuItemActionContext>;
|
|
1228
1147
|
};
|
|
1148
|
+
export declare type IMenuItem_input = {
|
|
1149
|
+
id?: Maybe<Scalars['String']>;
|
|
1150
|
+
label?: Maybe<Scalars['String']>;
|
|
1151
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
1152
|
+
run?: Maybe<IContributionActionRun_input>;
|
|
1153
|
+
};
|
|
1229
1154
|
export declare type IMenus = {
|
|
1230
1155
|
__typename?: 'Menus';
|
|
1231
1156
|
/** The Command Palette */
|
|
@@ -1451,13 +1376,6 @@ export declare type INotification = {
|
|
|
1451
1376
|
*/
|
|
1452
1377
|
sticky?: Maybe<Scalars['Boolean']>;
|
|
1453
1378
|
};
|
|
1454
|
-
export declare type INotification_input = {
|
|
1455
|
-
severity?: Maybe<INotificationSeverity>;
|
|
1456
|
-
message?: Maybe<INotificationMessage_input>;
|
|
1457
|
-
source?: Maybe<Scalars['String']>;
|
|
1458
|
-
actions?: Maybe<INotificationActions_input>;
|
|
1459
|
-
sticky?: Maybe<Scalars['Boolean']>;
|
|
1460
|
-
};
|
|
1461
1379
|
export declare type INotificationActions = {
|
|
1462
1380
|
__typename?: 'NotificationActions';
|
|
1463
1381
|
/**
|
|
@@ -1503,10 +1421,6 @@ export declare type INotificationMessage_input = {
|
|
|
1503
1421
|
value?: Maybe<Scalars['String']>;
|
|
1504
1422
|
links?: Maybe<Array<Maybe<IMessageLink_input>>>;
|
|
1505
1423
|
};
|
|
1506
|
-
export declare type INotifications = {
|
|
1507
|
-
__typename?: 'Notifications';
|
|
1508
|
-
notifications?: Maybe<Array<Maybe<INotification>>>;
|
|
1509
|
-
};
|
|
1510
1424
|
export declare const enum INotificationSeverity {
|
|
1511
1425
|
Ignore = "Ignore",
|
|
1512
1426
|
Info = "Info",
|
|
@@ -1546,6 +1460,17 @@ export declare type INotificationViewItemProgressState = {
|
|
|
1546
1460
|
/** Indicate that the long running operation is done. */
|
|
1547
1461
|
done?: Maybe<Scalars['Boolean']>;
|
|
1548
1462
|
};
|
|
1463
|
+
export declare type INotification_input = {
|
|
1464
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1465
|
+
message?: Maybe<INotificationMessage_input>;
|
|
1466
|
+
source?: Maybe<Scalars['String']>;
|
|
1467
|
+
actions?: Maybe<INotificationActions_input>;
|
|
1468
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1469
|
+
};
|
|
1470
|
+
export declare type INotifications = {
|
|
1471
|
+
__typename?: 'Notifications';
|
|
1472
|
+
notifications?: Maybe<Array<Maybe<INotification>>>;
|
|
1473
|
+
};
|
|
1549
1474
|
export declare type IOpenDocumentParamsInput = {
|
|
1550
1475
|
textDocument?: Maybe<IOpenDocumentTextParamsInput>;
|
|
1551
1476
|
};
|
|
@@ -1579,8 +1504,7 @@ export declare type IPosition = {
|
|
|
1579
1504
|
column?: Maybe<Scalars['Int']>;
|
|
1580
1505
|
/**
|
|
1581
1506
|
* @lsp - Line position in a document (zero-based).
|
|
1582
|
-
* If a line number is greater than the number of lines in a document, it
|
|
1583
|
-
* defaults back to the number of lines in the document.
|
|
1507
|
+
* If a line number is greater than the number of lines in a document, it defaults back to the number of lines in the document.
|
|
1584
1508
|
* If a line number is negative, it defaults to 0.
|
|
1585
1509
|
*/
|
|
1586
1510
|
line?: Maybe<Scalars['Int']>;
|
|
@@ -1605,6 +1529,11 @@ export declare type IProcessMonitoring = {
|
|
|
1605
1529
|
cpu?: Maybe<Scalars['Float']>;
|
|
1606
1530
|
memory?: Maybe<Scalars['Float']>;
|
|
1607
1531
|
};
|
|
1532
|
+
export declare type IPromptChoiceRun = {
|
|
1533
|
+
type?: Maybe<IGraphqlCallType>;
|
|
1534
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
1535
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
1536
|
+
};
|
|
1608
1537
|
export declare type IPromptChoice_input = {
|
|
1609
1538
|
/** Label to show for the choice to the user. */
|
|
1610
1539
|
label?: Maybe<Scalars['String']>;
|
|
@@ -1621,7 +1550,7 @@ export declare type IPromptChoice_input = {
|
|
|
1621
1550
|
/** Triggered when the user selects the choice. */
|
|
1622
1551
|
run?: Maybe<IPromptChoiceRun>;
|
|
1623
1552
|
};
|
|
1624
|
-
export declare type
|
|
1553
|
+
export declare type IPromptOptionsCancel = {
|
|
1625
1554
|
type?: Maybe<IGraphqlCallType>;
|
|
1626
1555
|
document?: Maybe<Scalars['AnyObject']>;
|
|
1627
1556
|
variables?: Maybe<Scalars['AnyObject']>;
|
|
@@ -1645,11 +1574,6 @@ export declare type IPromptOptions_input = {
|
|
|
1645
1574
|
*/
|
|
1646
1575
|
onCancel?: Maybe<IPromptOptionsCancel>;
|
|
1647
1576
|
};
|
|
1648
|
-
export declare type IPromptOptionsCancel = {
|
|
1649
|
-
type?: Maybe<IGraphqlCallType>;
|
|
1650
|
-
document?: Maybe<Scalars['AnyObject']>;
|
|
1651
|
-
variables?: Maybe<Scalars['AnyObject']>;
|
|
1652
|
-
};
|
|
1653
1577
|
export declare type IProvideTextDocumentLocationSignature = ITextDocumentPositionParams & ILocation & {
|
|
1654
1578
|
__typename?: 'ProvideTextDocumentLocationSignature';
|
|
1655
1579
|
textDocument?: Maybe<ITextDocumentIdentifier>;
|
|
@@ -2493,327 +2417,327 @@ export declare type NextResolverFn<T> = () => Promise<T>;
|
|
|
2493
2417
|
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
2494
2418
|
/** Mapping between all available schema types and the resolvers types */
|
|
2495
2419
|
export declare type IResolversTypes = {
|
|
2496
|
-
|
|
2497
|
-
ContextMenu: ResolverTypeWrapper<IContextMenu>;
|
|
2498
|
-
String: ResolverTypeWrapper<Scalars['String']>;
|
|
2499
|
-
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
2500
|
-
Anchor: ResolverTypeWrapper<IAnchor>;
|
|
2420
|
+
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
2501
2421
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
GraphqlCallType: IGraphqlCallType;
|
|
2422
|
+
Anchor: ResolverTypeWrapper<IAnchor>;
|
|
2423
|
+
Anchor_input: IAnchor_input;
|
|
2505
2424
|
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
Node: IResolversTypes['RegistryExtension'];
|
|
2509
|
-
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
2510
|
-
RegistryPublisher: ResolverTypeWrapper<IRegistryPublisher>;
|
|
2511
|
-
ExtensionManifest: ResolverTypeWrapper<IExtensionManifest>;
|
|
2512
|
-
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
2513
|
-
ExtensionKind: IExtensionKind;
|
|
2425
|
+
ArgsType: ResolverTypeWrapper<IArgsType>;
|
|
2426
|
+
String: ResolverTypeWrapper<Scalars['String']>;
|
|
2514
2427
|
Assets: ResolverTypeWrapper<IAssets>;
|
|
2515
|
-
Scripts: ResolverTypeWrapper<IScripts>;
|
|
2516
|
-
Bundles: ResolverTypeWrapper<IBundles>;
|
|
2517
|
-
ExtensionPackageType: ResolverTypeWrapper<IExtensionPackageType>;
|
|
2518
|
-
Engines: ResolverTypeWrapper<IEngines>;
|
|
2519
2428
|
Author: ResolverTypeWrapper<IAuthor>;
|
|
2520
|
-
GalleryBanner: ResolverTypeWrapper<IGalleryBanner>;
|
|
2521
|
-
ExtensionContributions: ResolverTypeWrapper<IExtensionContributions>;
|
|
2522
|
-
ContributionActions: ResolverTypeWrapper<IContributionActions>;
|
|
2523
|
-
ContributionActionItem: ResolverTypeWrapper<IContributionActionItem>;
|
|
2524
|
-
ExtensionConfiguration: ResolverTypeWrapper<IExtensionConfiguration>;
|
|
2525
|
-
Debugger: ResolverTypeWrapper<IDebugger>;
|
|
2526
|
-
Grammar: ResolverTypeWrapper<IGrammar>;
|
|
2527
|
-
ExtensionJSONValidation: ResolverTypeWrapper<IExtensionJSONValidation>;
|
|
2528
|
-
KeyBinding: ResolverTypeWrapper<IKeyBinding>;
|
|
2529
|
-
ExtensionLanguage: ResolverTypeWrapper<IExtensionLanguage>;
|
|
2530
|
-
Menus: ResolverTypeWrapper<IMenus>;
|
|
2531
|
-
MenuItemAction: ResolverTypeWrapper<IMenuItemAction>;
|
|
2532
|
-
MenuItemActionContext: ResolverTypeWrapper<IMenuItemActionContext>;
|
|
2533
|
-
MenuItemActionEditor: ResolverTypeWrapper<IMenuItemActionEditor>;
|
|
2534
|
-
MenuItemActionEditorTitle: ResolverTypeWrapper<IMenuItemActionEditorTitle>;
|
|
2535
|
-
MenuItemActionDebug: ResolverTypeWrapper<IMenuItemActionDebug>;
|
|
2536
|
-
MenuItemActionScm: ResolverTypeWrapper<IMenuItemActionScm>;
|
|
2537
|
-
MenuItemActionScmChange: ResolverTypeWrapper<IMenuItemActionScmChange>;
|
|
2538
|
-
MenuItemActionView: ResolverTypeWrapper<IMenuItemActionView>;
|
|
2539
|
-
Snippet: ResolverTypeWrapper<ISnippet>;
|
|
2540
|
-
ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
|
|
2541
|
-
ExtensionColor: ResolverTypeWrapper<IExtensionColor>;
|
|
2542
|
-
ExtensionColorTypes: ResolverTypeWrapper<IExtensionColorTypes>;
|
|
2543
|
-
Localization: ResolverTypeWrapper<ILocalization>;
|
|
2544
|
-
LocalizationTranslation: ResolverTypeWrapper<ILocalizationTranslation>;
|
|
2545
|
-
ExtensionManifestBugs: ResolverTypeWrapper<IExtensionManifestBugs>;
|
|
2546
|
-
ExtensionManifestRepository: ResolverTypeWrapper<IExtensionManifestRepository>;
|
|
2547
|
-
ExtensionRelease: ResolverTypeWrapper<IExtensionRelease>;
|
|
2548
|
-
ExtensionRegistry: ResolverTypeWrapper<IExtensionRegistry>;
|
|
2549
|
-
RegistryExtensionConnection: ResolverTypeWrapper<IRegistryExtensionConnection>;
|
|
2550
|
-
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
|
2551
|
-
RegistryPublisherConnection: ResolverTypeWrapper<IRegistryPublisherConnection>;
|
|
2552
|
-
GalleryQuery: IGalleryQuery;
|
|
2553
|
-
GalleryPager: ResolverTypeWrapper<IGalleryPager>;
|
|
2554
|
-
GalleryExtension: ResolverTypeWrapper<IGalleryExtension>;
|
|
2555
|
-
ExtensionIdentifier: ResolverTypeWrapper<IExtensionIdentifier>;
|
|
2556
|
-
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
2557
|
-
GalleryExtensionAssets: ResolverTypeWrapper<IGalleryExtensionAssets>;
|
|
2558
|
-
GalleryExtensionAsset: ResolverTypeWrapper<IGalleryExtensionAsset>;
|
|
2559
|
-
GalleryExtensionProperties: ResolverTypeWrapper<IGalleryExtensionProperties>;
|
|
2560
|
-
GalleryExtensionResources: ResolverTypeWrapper<IGalleryExtensionResources>;
|
|
2561
|
-
InstalledExtension: ResolverTypeWrapper<IInstalledExtension>;
|
|
2562
|
-
ExtensionInstance: ResolverTypeWrapper<IExtensionInstance>;
|
|
2563
|
-
ProcessMonitoring: ResolverTypeWrapper<IProcessMonitoring>;
|
|
2564
|
-
Notifications: ResolverTypeWrapper<INotifications>;
|
|
2565
|
-
Notification: ResolverTypeWrapper<INotification>;
|
|
2566
|
-
NotificationSeverity: INotificationSeverity;
|
|
2567
|
-
NotificationActions: ResolverTypeWrapper<INotificationActions>;
|
|
2568
|
-
ContributionAction: ResolverTypeWrapper<IContributionAction>;
|
|
2569
|
-
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2570
|
-
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2571
|
-
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2572
|
-
URI: ResolverTypeWrapper<Scalars['URI']>;
|
|
2573
|
-
PositionInput: IPositionInput;
|
|
2574
|
-
Notification_input: INotification_input;
|
|
2575
|
-
NotificationMessage_input: INotificationMessage_input;
|
|
2576
|
-
MessageLink_input: IMessageLink_input;
|
|
2577
|
-
NotificationActions_input: INotificationActions_input;
|
|
2578
|
-
ContributionAction_input: IContributionAction_input;
|
|
2579
|
-
ContributionActionRun_input: IContributionActionRun_input;
|
|
2580
|
-
Mutation: ResolverTypeWrapper<{}>;
|
|
2581
|
-
IActivationRequest: IIActivationRequest;
|
|
2582
|
-
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2583
|
-
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
|
2584
|
-
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
|
2585
|
-
PromptChoice_input: IPromptChoice_input;
|
|
2586
|
-
PromptChoiceRun: IPromptChoiceRun;
|
|
2587
|
-
PromptOptions_input: IPromptOptions_input;
|
|
2588
|
-
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2589
|
-
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2590
|
-
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2591
|
-
ExtensionRegistryPublishExtensionResult: ResolverTypeWrapper<IExtensionRegistryPublishExtensionResult>;
|
|
2592
|
-
ContextMenu_input: IContextMenu_input;
|
|
2593
|
-
Anchor_input: IAnchor_input;
|
|
2594
|
-
MenuItem_input: IMenuItem_input;
|
|
2595
|
-
IModelInput: IIModelInput;
|
|
2596
|
-
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2597
|
-
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2598
|
-
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2599
|
-
Subscription: ResolverTypeWrapper<{}>;
|
|
2600
|
-
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
2601
|
-
ArgsType: ResolverTypeWrapper<IArgsType>;
|
|
2602
2429
|
BaseExtension: ResolverTypeWrapper<IBaseExtension>;
|
|
2603
|
-
|
|
2430
|
+
Bundles: ResolverTypeWrapper<IBundles>;
|
|
2604
2431
|
CacheControlScope: ICacheControlScope;
|
|
2605
2432
|
ClientContainerService: IClientContainerService;
|
|
2606
2433
|
CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
|
|
2607
2434
|
CommandType: ResolverTypeWrapper<ICommandType>;
|
|
2608
2435
|
CommandsType: ResolverTypeWrapper<ICommandsType>;
|
|
2436
|
+
ContextMenu: ResolverTypeWrapper<IContextMenu>;
|
|
2437
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
2438
|
+
ContextMenu_input: IContextMenu_input;
|
|
2609
2439
|
Contributes: ResolverTypeWrapper<IContributes>;
|
|
2440
|
+
ContributionAction: ResolverTypeWrapper<IContributionAction>;
|
|
2441
|
+
ContributionActionItem: ResolverTypeWrapper<IContributionActionItem>;
|
|
2442
|
+
ContributionActionRun: ResolverTypeWrapper<IContributionActionRun>;
|
|
2443
|
+
ContributionActionRun_input: IContributionActionRun_input;
|
|
2444
|
+
ContributionAction_input: IContributionAction_input;
|
|
2445
|
+
ContributionActions: ResolverTypeWrapper<IContributionActions>;
|
|
2610
2446
|
ContributionView: ResolverTypeWrapper<IContributionView>;
|
|
2447
|
+
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
2611
2448
|
Date: ResolverTypeWrapper<Scalars['Date']>;
|
|
2612
2449
|
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
|
2450
|
+
Debugger: ResolverTypeWrapper<IDebugger>;
|
|
2451
|
+
DocSitePage: ResolverTypeWrapper<IDocSitePage>;
|
|
2613
2452
|
DocumentFilter: ResolverTypeWrapper<IDocumentFilter>;
|
|
2453
|
+
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
|
2454
|
+
Engines: ResolverTypeWrapper<IEngines>;
|
|
2614
2455
|
Environment: ResolverTypeWrapper<IEnvironment>;
|
|
2615
|
-
EnvironmentSync: IEnvironmentSync;
|
|
2616
2456
|
EnvironmentPayload: IEnvironmentPayload;
|
|
2457
|
+
EnvironmentSync: IEnvironmentSync;
|
|
2458
|
+
ExtensionColor: ResolverTypeWrapper<IExtensionColor>;
|
|
2459
|
+
ExtensionColorTypes: ResolverTypeWrapper<IExtensionColorTypes>;
|
|
2460
|
+
ExtensionConfiguration: ResolverTypeWrapper<IExtensionConfiguration>;
|
|
2617
2461
|
ExtensionConfigurationProperty: ResolverTypeWrapper<IExtensionConfigurationProperty>;
|
|
2462
|
+
ExtensionContributions: ResolverTypeWrapper<IExtensionContributions>;
|
|
2463
|
+
ExtensionIdentifier: ResolverTypeWrapper<IExtensionIdentifier>;
|
|
2464
|
+
ExtensionInstance: ResolverTypeWrapper<IExtensionInstance>;
|
|
2465
|
+
ExtensionJSONValidation: ResolverTypeWrapper<IExtensionJSONValidation>;
|
|
2466
|
+
ExtensionKind: IExtensionKind;
|
|
2467
|
+
ExtensionLanguage: ResolverTypeWrapper<IExtensionLanguage>;
|
|
2468
|
+
ExtensionManifest: ResolverTypeWrapper<IExtensionManifest>;
|
|
2469
|
+
ExtensionManifestBugs: ResolverTypeWrapper<IExtensionManifestBugs>;
|
|
2470
|
+
ExtensionManifestRepository: ResolverTypeWrapper<IExtensionManifestRepository>;
|
|
2471
|
+
ExtensionPackageType: ResolverTypeWrapper<IExtensionPackageType>;
|
|
2472
|
+
ExtensionRegistry: ResolverTypeWrapper<IExtensionRegistry>;
|
|
2618
2473
|
ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
|
|
2474
|
+
ExtensionRegistryPublishExtensionResult: ResolverTypeWrapper<IExtensionRegistryPublishExtensionResult>;
|
|
2619
2475
|
ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
|
|
2476
|
+
ExtensionRelease: ResolverTypeWrapper<IExtensionRelease>;
|
|
2477
|
+
ExtensionType: IExtensionType;
|
|
2620
2478
|
FieldError: ResolverTypeWrapper<IFieldError>;
|
|
2479
|
+
GalleryBanner: ResolverTypeWrapper<IGalleryBanner>;
|
|
2480
|
+
GalleryExtension: ResolverTypeWrapper<IGalleryExtension>;
|
|
2481
|
+
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
2482
|
+
GalleryExtensionAsset: ResolverTypeWrapper<IGalleryExtensionAsset>;
|
|
2483
|
+
GalleryExtensionAssets: ResolverTypeWrapper<IGalleryExtensionAssets>;
|
|
2484
|
+
GalleryExtensionProperties: ResolverTypeWrapper<IGalleryExtensionProperties>;
|
|
2485
|
+
GalleryExtensionResources: ResolverTypeWrapper<IGalleryExtensionResources>;
|
|
2621
2486
|
GalleryFilter: IGalleryFilter;
|
|
2487
|
+
GalleryPager: ResolverTypeWrapper<IGalleryPager>;
|
|
2488
|
+
GalleryQuery: IGalleryQuery;
|
|
2622
2489
|
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
|
2490
|
+
Grammar: ResolverTypeWrapper<IGrammar>;
|
|
2491
|
+
GraphqlCallType: IGraphqlCallType;
|
|
2623
2492
|
Hover: never;
|
|
2624
|
-
|
|
2625
|
-
MarkupKind: IMarkupKind;
|
|
2626
|
-
Range: ResolverTypeWrapper<IRange>;
|
|
2627
|
-
Position: ResolverTypeWrapper<IPosition>;
|
|
2493
|
+
IActivationRequest: IIActivationRequest;
|
|
2628
2494
|
IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
|
|
2629
2495
|
IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
|
|
2630
|
-
IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
|
|
2631
2496
|
IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
|
|
2632
|
-
|
|
2497
|
+
IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
|
|
2633
2498
|
IModel: ResolverTypeWrapper<IIModel>;
|
|
2634
|
-
|
|
2635
|
-
IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
|
|
2636
|
-
TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
|
|
2637
|
-
ITextDocumentIdentifier: IResolversTypes['TextDocumentItem'] | IResolversTypes['TextDocumentIdentifier'];
|
|
2499
|
+
IModelInput: IIModelInput;
|
|
2638
2500
|
IObservableResult: ResolverTypeWrapper<IIObservableResult>;
|
|
2639
|
-
ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
|
|
2640
2501
|
IResourceUtilizationSettings: never;
|
|
2502
|
+
ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
|
|
2503
|
+
ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
|
|
2504
|
+
ITextDocumentIdentifier: IResolversTypes['TextDocumentIdentifier'] | IResolversTypes['TextDocumentItem'];
|
|
2505
|
+
IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
|
|
2506
|
+
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2507
|
+
IWorkspaceRoot: ResolverTypeWrapper<IIWorkspaceRoot>;
|
|
2508
|
+
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2509
|
+
InstalledExtension: ResolverTypeWrapper<IInstalledExtension>;
|
|
2510
|
+
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
2641
2511
|
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
|
2512
|
+
KeyBinding: ResolverTypeWrapper<IKeyBinding>;
|
|
2513
|
+
Localization: ResolverTypeWrapper<ILocalization>;
|
|
2514
|
+
LocalizationTranslation: ResolverTypeWrapper<ILocalizationTranslation>;
|
|
2642
2515
|
Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
|
|
2516
|
+
MarkupContent: never;
|
|
2517
|
+
MarkupKind: IMarkupKind;
|
|
2643
2518
|
MenuId: IMenuId;
|
|
2519
|
+
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
|
2520
|
+
MenuItemAction: ResolverTypeWrapper<IMenuItemAction>;
|
|
2521
|
+
MenuItemActionContext: ResolverTypeWrapper<IMenuItemActionContext>;
|
|
2522
|
+
MenuItemActionDebug: ResolverTypeWrapper<IMenuItemActionDebug>;
|
|
2523
|
+
MenuItemActionEditor: ResolverTypeWrapper<IMenuItemActionEditor>;
|
|
2524
|
+
MenuItemActionEditorTitle: ResolverTypeWrapper<IMenuItemActionEditorTitle>;
|
|
2525
|
+
MenuItemActionScm: ResolverTypeWrapper<IMenuItemActionScm>;
|
|
2526
|
+
MenuItemActionScmChange: ResolverTypeWrapper<IMenuItemActionScmChange>;
|
|
2527
|
+
MenuItemActionView: ResolverTypeWrapper<IMenuItemActionView>;
|
|
2528
|
+
MenuItem_input: IMenuItem_input;
|
|
2529
|
+
Menus: ResolverTypeWrapper<IMenus>;
|
|
2644
2530
|
MessageLink: ResolverTypeWrapper<IMessageLink>;
|
|
2531
|
+
MessageLink_input: IMessageLink_input;
|
|
2645
2532
|
MoleculerServiceName: IMoleculerServiceName;
|
|
2533
|
+
Mutation: ResolverTypeWrapper<{}>;
|
|
2534
|
+
Node: IResolversTypes['RegistryExtension'];
|
|
2535
|
+
Notification: ResolverTypeWrapper<INotification>;
|
|
2536
|
+
NotificationActions: ResolverTypeWrapper<INotificationActions>;
|
|
2537
|
+
NotificationActions_input: INotificationActions_input;
|
|
2646
2538
|
NotificationChangeEvent: ResolverTypeWrapper<INotificationChangeEvent>;
|
|
2647
|
-
|
|
2539
|
+
NotificationChangeType: INotificationChangeType;
|
|
2648
2540
|
NotificationMessage: ResolverTypeWrapper<INotificationMessage>;
|
|
2541
|
+
NotificationMessage_input: INotificationMessage_input;
|
|
2542
|
+
NotificationSeverity: INotificationSeverity;
|
|
2543
|
+
NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
|
|
2544
|
+
NotificationViewItemLabelKind: INotificationViewItemLabelKind;
|
|
2649
2545
|
NotificationViewItemProgress: ResolverTypeWrapper<INotificationViewItemProgress>;
|
|
2650
2546
|
NotificationViewItemProgressState: ResolverTypeWrapper<INotificationViewItemProgressState>;
|
|
2651
|
-
|
|
2652
|
-
|
|
2547
|
+
Notification_input: INotification_input;
|
|
2548
|
+
Notifications: ResolverTypeWrapper<INotifications>;
|
|
2549
|
+
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
|
2550
|
+
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2551
|
+
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2552
|
+
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
|
2553
|
+
Position: ResolverTypeWrapper<IPosition>;
|
|
2554
|
+
PositionInput: IPositionInput;
|
|
2555
|
+
ProcessMonitoring: ResolverTypeWrapper<IProcessMonitoring>;
|
|
2556
|
+
PromptChoiceRun: IPromptChoiceRun;
|
|
2557
|
+
PromptChoice_input: IPromptChoice_input;
|
|
2558
|
+
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2559
|
+
PromptOptions_input: IPromptOptions_input;
|
|
2653
2560
|
ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
|
|
2654
|
-
|
|
2655
|
-
|
|
2561
|
+
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2562
|
+
Query: ResolverTypeWrapper<{}>;
|
|
2563
|
+
Range: ResolverTypeWrapper<IRange>;
|
|
2656
2564
|
RangeInput: IRangeInput;
|
|
2657
2565
|
RegistryEntry: ResolverTypeWrapper<IRegistryEntry>;
|
|
2566
|
+
RegistryExtension: ResolverTypeWrapper<IRegistryExtension>;
|
|
2567
|
+
RegistryExtensionConnection: ResolverTypeWrapper<IRegistryExtensionConnection>;
|
|
2568
|
+
RegistryPublisher: ResolverTypeWrapper<IRegistryPublisher>;
|
|
2569
|
+
RegistryPublisherConnection: ResolverTypeWrapper<IRegistryPublisherConnection>;
|
|
2570
|
+
Scripts: ResolverTypeWrapper<IScripts>;
|
|
2571
|
+
Snippet: ResolverTypeWrapper<ISnippet>;
|
|
2572
|
+
Subscription: ResolverTypeWrapper<{}>;
|
|
2573
|
+
TextDocumentIdentifier: ResolverTypeWrapper<ITextDocumentIdentifier>;
|
|
2574
|
+
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2575
|
+
TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
|
|
2576
|
+
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2577
|
+
TextDocumentPositionParams: IResolversTypes['ProvideTextDocumentLocationSignature'];
|
|
2578
|
+
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2658
2579
|
TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
|
|
2580
|
+
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2581
|
+
ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
|
|
2659
2582
|
Time: ResolverTypeWrapper<Scalars['Time']>;
|
|
2583
|
+
URI: ResolverTypeWrapper<Scalars['URI']>;
|
|
2660
2584
|
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
|
2661
2585
|
ViewContainer: ResolverTypeWrapper<IViewContainer>;
|
|
2662
2586
|
};
|
|
2663
2587
|
/** Mapping between all available schema types and the resolvers parents */
|
|
2664
2588
|
export declare type IResolversParentTypes = {
|
|
2665
|
-
|
|
2666
|
-
ContextMenu: IContextMenu;
|
|
2667
|
-
String: Scalars['String'];
|
|
2668
|
-
Boolean: Scalars['Boolean'];
|
|
2669
|
-
Anchor: IAnchor;
|
|
2589
|
+
AdminIdeSettings: IAdminIdeSettings;
|
|
2670
2590
|
Int: Scalars['Int'];
|
|
2671
|
-
|
|
2672
|
-
|
|
2591
|
+
Anchor: IAnchor;
|
|
2592
|
+
Anchor_input: IAnchor_input;
|
|
2673
2593
|
AnyObject: Scalars['AnyObject'];
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
Node: IResolversParentTypes['RegistryExtension'];
|
|
2677
|
-
ID: Scalars['ID'];
|
|
2678
|
-
RegistryPublisher: IRegistryPublisher;
|
|
2679
|
-
ExtensionManifest: IExtensionManifest;
|
|
2680
|
-
JSON: Scalars['JSON'];
|
|
2594
|
+
ArgsType: IArgsType;
|
|
2595
|
+
String: Scalars['String'];
|
|
2681
2596
|
Assets: IAssets;
|
|
2682
|
-
Scripts: IScripts;
|
|
2683
|
-
Bundles: IBundles;
|
|
2684
|
-
ExtensionPackageType: IExtensionPackageType;
|
|
2685
|
-
Engines: IEngines;
|
|
2686
2597
|
Author: IAuthor;
|
|
2687
|
-
GalleryBanner: IGalleryBanner;
|
|
2688
|
-
ExtensionContributions: IExtensionContributions;
|
|
2689
|
-
ContributionActions: IContributionActions;
|
|
2690
|
-
ContributionActionItem: IContributionActionItem;
|
|
2691
|
-
ExtensionConfiguration: IExtensionConfiguration;
|
|
2692
|
-
Debugger: IDebugger;
|
|
2693
|
-
Grammar: IGrammar;
|
|
2694
|
-
ExtensionJSONValidation: IExtensionJSONValidation;
|
|
2695
|
-
KeyBinding: IKeyBinding;
|
|
2696
|
-
ExtensionLanguage: IExtensionLanguage;
|
|
2697
|
-
Menus: IMenus;
|
|
2698
|
-
MenuItemAction: IMenuItemAction;
|
|
2699
|
-
MenuItemActionContext: IMenuItemActionContext;
|
|
2700
|
-
MenuItemActionEditor: IMenuItemActionEditor;
|
|
2701
|
-
MenuItemActionEditorTitle: IMenuItemActionEditorTitle;
|
|
2702
|
-
MenuItemActionDebug: IMenuItemActionDebug;
|
|
2703
|
-
MenuItemActionScm: IMenuItemActionScm;
|
|
2704
|
-
MenuItemActionScmChange: IMenuItemActionScmChange;
|
|
2705
|
-
MenuItemActionView: IMenuItemActionView;
|
|
2706
|
-
Snippet: ISnippet;
|
|
2707
|
-
ThemeLabel: IThemeLabel;
|
|
2708
|
-
ExtensionColor: IExtensionColor;
|
|
2709
|
-
ExtensionColorTypes: IExtensionColorTypes;
|
|
2710
|
-
Localization: ILocalization;
|
|
2711
|
-
LocalizationTranslation: ILocalizationTranslation;
|
|
2712
|
-
ExtensionManifestBugs: IExtensionManifestBugs;
|
|
2713
|
-
ExtensionManifestRepository: IExtensionManifestRepository;
|
|
2714
|
-
ExtensionRelease: IExtensionRelease;
|
|
2715
|
-
ExtensionRegistry: IExtensionRegistry;
|
|
2716
|
-
RegistryExtensionConnection: IRegistryExtensionConnection;
|
|
2717
|
-
PageInfo: IPageInfo;
|
|
2718
|
-
RegistryPublisherConnection: IRegistryPublisherConnection;
|
|
2719
|
-
GalleryQuery: IGalleryQuery;
|
|
2720
|
-
GalleryPager: IGalleryPager;
|
|
2721
|
-
GalleryExtension: IGalleryExtension;
|
|
2722
|
-
ExtensionIdentifier: IExtensionIdentifier;
|
|
2723
|
-
Float: Scalars['Float'];
|
|
2724
|
-
GalleryExtensionAssets: IGalleryExtensionAssets;
|
|
2725
|
-
GalleryExtensionAsset: IGalleryExtensionAsset;
|
|
2726
|
-
GalleryExtensionProperties: IGalleryExtensionProperties;
|
|
2727
|
-
GalleryExtensionResources: IGalleryExtensionResources;
|
|
2728
|
-
InstalledExtension: IInstalledExtension;
|
|
2729
|
-
ExtensionInstance: IExtensionInstance;
|
|
2730
|
-
ProcessMonitoring: IProcessMonitoring;
|
|
2731
|
-
Notifications: INotifications;
|
|
2732
|
-
Notification: INotification;
|
|
2733
|
-
NotificationActions: INotificationActions;
|
|
2734
|
-
ContributionAction: IContributionAction;
|
|
2735
|
-
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2736
|
-
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2737
|
-
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2738
|
-
URI: Scalars['URI'];
|
|
2739
|
-
PositionInput: IPositionInput;
|
|
2740
|
-
Notification_input: INotification_input;
|
|
2741
|
-
NotificationMessage_input: INotificationMessage_input;
|
|
2742
|
-
MessageLink_input: IMessageLink_input;
|
|
2743
|
-
NotificationActions_input: INotificationActions_input;
|
|
2744
|
-
ContributionAction_input: IContributionAction_input;
|
|
2745
|
-
ContributionActionRun_input: IContributionActionRun_input;
|
|
2746
|
-
Mutation: {};
|
|
2747
|
-
IActivationRequest: IIActivationRequest;
|
|
2748
|
-
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2749
|
-
Observable: Scalars['Observable'];
|
|
2750
|
-
EmptyResponse: IEmptyResponse;
|
|
2751
|
-
PromptChoice_input: IPromptChoice_input;
|
|
2752
|
-
PromptChoiceRun: IPromptChoiceRun;
|
|
2753
|
-
PromptOptions_input: IPromptOptions_input;
|
|
2754
|
-
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2755
|
-
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2756
|
-
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2757
|
-
ExtensionRegistryPublishExtensionResult: IExtensionRegistryPublishExtensionResult;
|
|
2758
|
-
ContextMenu_input: IContextMenu_input;
|
|
2759
|
-
Anchor_input: IAnchor_input;
|
|
2760
|
-
MenuItem_input: IMenuItem_input;
|
|
2761
|
-
IModelInput: IIModelInput;
|
|
2762
|
-
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2763
|
-
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2764
|
-
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2765
|
-
Subscription: {};
|
|
2766
|
-
AdminIdeSettings: IAdminIdeSettings;
|
|
2767
|
-
ArgsType: IArgsType;
|
|
2768
2598
|
BaseExtension: IBaseExtension;
|
|
2599
|
+
Bundles: IBundles;
|
|
2769
2600
|
CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
|
|
2770
2601
|
CommandType: ICommandType;
|
|
2771
2602
|
CommandsType: ICommandsType;
|
|
2603
|
+
ContextMenu: IContextMenu;
|
|
2604
|
+
Boolean: Scalars['Boolean'];
|
|
2605
|
+
ContextMenu_input: IContextMenu_input;
|
|
2772
2606
|
Contributes: IContributes;
|
|
2607
|
+
ContributionAction: IContributionAction;
|
|
2608
|
+
ContributionActionItem: IContributionActionItem;
|
|
2609
|
+
ContributionActionRun: IContributionActionRun;
|
|
2610
|
+
ContributionActionRun_input: IContributionActionRun_input;
|
|
2611
|
+
ContributionAction_input: IContributionAction_input;
|
|
2612
|
+
ContributionActions: IContributionActions;
|
|
2773
2613
|
ContributionView: IContributionView;
|
|
2614
|
+
ID: Scalars['ID'];
|
|
2774
2615
|
Date: Scalars['Date'];
|
|
2775
2616
|
DateTime: Scalars['DateTime'];
|
|
2617
|
+
Debugger: IDebugger;
|
|
2618
|
+
DocSitePage: IDocSitePage;
|
|
2776
2619
|
DocumentFilter: IDocumentFilter;
|
|
2620
|
+
EmptyResponse: IEmptyResponse;
|
|
2621
|
+
Engines: IEngines;
|
|
2777
2622
|
Environment: IEnvironment;
|
|
2778
2623
|
EnvironmentPayload: IEnvironmentPayload;
|
|
2624
|
+
ExtensionColor: IExtensionColor;
|
|
2625
|
+
ExtensionColorTypes: IExtensionColorTypes;
|
|
2626
|
+
ExtensionConfiguration: IExtensionConfiguration;
|
|
2779
2627
|
ExtensionConfigurationProperty: IExtensionConfigurationProperty;
|
|
2628
|
+
ExtensionContributions: IExtensionContributions;
|
|
2629
|
+
ExtensionIdentifier: IExtensionIdentifier;
|
|
2630
|
+
ExtensionInstance: IExtensionInstance;
|
|
2631
|
+
ExtensionJSONValidation: IExtensionJSONValidation;
|
|
2632
|
+
ExtensionLanguage: IExtensionLanguage;
|
|
2633
|
+
ExtensionManifest: IExtensionManifest;
|
|
2634
|
+
ExtensionManifestBugs: IExtensionManifestBugs;
|
|
2635
|
+
ExtensionManifestRepository: IExtensionManifestRepository;
|
|
2636
|
+
ExtensionPackageType: IExtensionPackageType;
|
|
2637
|
+
ExtensionRegistry: IExtensionRegistry;
|
|
2780
2638
|
ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
|
|
2639
|
+
ExtensionRegistryPublishExtensionResult: IExtensionRegistryPublishExtensionResult;
|
|
2781
2640
|
ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
|
|
2641
|
+
ExtensionRelease: IExtensionRelease;
|
|
2782
2642
|
FieldError: IFieldError;
|
|
2643
|
+
GalleryBanner: IGalleryBanner;
|
|
2644
|
+
GalleryExtension: IGalleryExtension;
|
|
2645
|
+
Float: Scalars['Float'];
|
|
2646
|
+
GalleryExtensionAsset: IGalleryExtensionAsset;
|
|
2647
|
+
GalleryExtensionAssets: IGalleryExtensionAssets;
|
|
2648
|
+
GalleryExtensionProperties: IGalleryExtensionProperties;
|
|
2649
|
+
GalleryExtensionResources: IGalleryExtensionResources;
|
|
2783
2650
|
GalleryFilter: IGalleryFilter;
|
|
2651
|
+
GalleryPager: IGalleryPager;
|
|
2652
|
+
GalleryQuery: IGalleryQuery;
|
|
2784
2653
|
GeoLocation: IGeoLocation;
|
|
2654
|
+
Grammar: IGrammar;
|
|
2785
2655
|
Hover: never;
|
|
2786
|
-
|
|
2787
|
-
Range: IRange;
|
|
2788
|
-
Position: IPosition;
|
|
2656
|
+
IActivationRequest: IIActivationRequest;
|
|
2789
2657
|
IBehaviorSubject: IIBehaviorSubject;
|
|
2790
2658
|
IBehaviorSubjectValue: IIBehaviorSubjectValue;
|
|
2791
|
-
IDocumentSelector: IIDocumentSelector;
|
|
2792
2659
|
IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
|
|
2793
|
-
|
|
2660
|
+
IDocumentSelector: IIDocumentSelector;
|
|
2794
2661
|
IModel: IIModel;
|
|
2795
|
-
|
|
2796
|
-
IViewComponentData: IIViewComponentData;
|
|
2797
|
-
TextDocumentItem: ITextDocumentItem;
|
|
2798
|
-
ITextDocumentIdentifier: IResolversParentTypes['TextDocumentItem'] | IResolversParentTypes['TextDocumentIdentifier'];
|
|
2662
|
+
IModelInput: IIModelInput;
|
|
2799
2663
|
IObservableResult: IIObservableResult;
|
|
2800
|
-
ISourceAnonymousSubject: IISourceAnonymousSubject;
|
|
2801
2664
|
IResourceUtilizationSettings: never;
|
|
2665
|
+
ISourceAnonymousSubject: IISourceAnonymousSubject;
|
|
2666
|
+
ISwitchMapOperator: IISwitchMapOperator;
|
|
2667
|
+
ITextDocumentIdentifier: IResolversParentTypes['TextDocumentIdentifier'] | IResolversParentTypes['TextDocumentItem'];
|
|
2668
|
+
IViewComponentData: IIViewComponentData;
|
|
2669
|
+
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2670
|
+
IWorkspaceRoot: IIWorkspaceRoot;
|
|
2671
|
+
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2672
|
+
InstalledExtension: IInstalledExtension;
|
|
2673
|
+
JSON: Scalars['JSON'];
|
|
2802
2674
|
JSONObject: Scalars['JSONObject'];
|
|
2675
|
+
KeyBinding: IKeyBinding;
|
|
2676
|
+
Localization: ILocalization;
|
|
2677
|
+
LocalizationTranslation: ILocalizationTranslation;
|
|
2803
2678
|
Location: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
|
|
2679
|
+
MarkupContent: never;
|
|
2680
|
+
MenuItem: IMenuItem;
|
|
2681
|
+
MenuItemAction: IMenuItemAction;
|
|
2682
|
+
MenuItemActionContext: IMenuItemActionContext;
|
|
2683
|
+
MenuItemActionDebug: IMenuItemActionDebug;
|
|
2684
|
+
MenuItemActionEditor: IMenuItemActionEditor;
|
|
2685
|
+
MenuItemActionEditorTitle: IMenuItemActionEditorTitle;
|
|
2686
|
+
MenuItemActionScm: IMenuItemActionScm;
|
|
2687
|
+
MenuItemActionScmChange: IMenuItemActionScmChange;
|
|
2688
|
+
MenuItemActionView: IMenuItemActionView;
|
|
2689
|
+
MenuItem_input: IMenuItem_input;
|
|
2690
|
+
Menus: IMenus;
|
|
2804
2691
|
MessageLink: IMessageLink;
|
|
2692
|
+
MessageLink_input: IMessageLink_input;
|
|
2693
|
+
Mutation: {};
|
|
2694
|
+
Node: IResolversParentTypes['RegistryExtension'];
|
|
2695
|
+
Notification: INotification;
|
|
2696
|
+
NotificationActions: INotificationActions;
|
|
2697
|
+
NotificationActions_input: INotificationActions_input;
|
|
2805
2698
|
NotificationChangeEvent: INotificationChangeEvent;
|
|
2806
|
-
NotificationViewItem: INotificationViewItem;
|
|
2807
2699
|
NotificationMessage: INotificationMessage;
|
|
2700
|
+
NotificationMessage_input: INotificationMessage_input;
|
|
2701
|
+
NotificationViewItem: INotificationViewItem;
|
|
2808
2702
|
NotificationViewItemProgress: INotificationViewItemProgress;
|
|
2809
2703
|
NotificationViewItemProgressState: INotificationViewItemProgressState;
|
|
2704
|
+
Notification_input: INotification_input;
|
|
2705
|
+
Notifications: INotifications;
|
|
2706
|
+
Observable: Scalars['Observable'];
|
|
2707
|
+
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2708
|
+
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2709
|
+
PageInfo: IPageInfo;
|
|
2710
|
+
Position: IPosition;
|
|
2711
|
+
PositionInput: IPositionInput;
|
|
2712
|
+
ProcessMonitoring: IProcessMonitoring;
|
|
2713
|
+
PromptChoiceRun: IPromptChoiceRun;
|
|
2714
|
+
PromptChoice_input: IPromptChoice_input;
|
|
2715
|
+
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2716
|
+
PromptOptions_input: IPromptOptions_input;
|
|
2810
2717
|
ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
|
|
2811
|
-
|
|
2812
|
-
|
|
2718
|
+
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2719
|
+
Query: {};
|
|
2720
|
+
Range: IRange;
|
|
2813
2721
|
RangeInput: IRangeInput;
|
|
2814
2722
|
RegistryEntry: IRegistryEntry;
|
|
2723
|
+
RegistryExtension: IRegistryExtension;
|
|
2724
|
+
RegistryExtensionConnection: IRegistryExtensionConnection;
|
|
2725
|
+
RegistryPublisher: IRegistryPublisher;
|
|
2726
|
+
RegistryPublisherConnection: IRegistryPublisherConnection;
|
|
2727
|
+
Scripts: IScripts;
|
|
2728
|
+
Snippet: ISnippet;
|
|
2729
|
+
Subscription: {};
|
|
2730
|
+
TextDocumentIdentifier: ITextDocumentIdentifier;
|
|
2731
|
+
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2732
|
+
TextDocumentItem: ITextDocumentItem;
|
|
2733
|
+
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2734
|
+
TextDocumentPositionParams: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
|
|
2735
|
+
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2815
2736
|
TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
|
|
2737
|
+
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2738
|
+
ThemeLabel: IThemeLabel;
|
|
2816
2739
|
Time: Scalars['Time'];
|
|
2740
|
+
URI: Scalars['URI'];
|
|
2817
2741
|
URIInput: Scalars['URIInput'];
|
|
2818
2742
|
ViewContainer: IViewContainer;
|
|
2819
2743
|
};
|
|
@@ -2870,16 +2794,16 @@ export declare type ICommandHandlerDescriptionTypeResolvers<ContextType = MyCont
|
|
|
2870
2794
|
returns?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2871
2795
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2872
2796
|
};
|
|
2873
|
-
export declare type ICommandsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandsType'] = IResolversParentTypes['CommandsType']> = {
|
|
2874
|
-
commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['CommandType']>>>, ParentType, ContextType>;
|
|
2875
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2876
|
-
};
|
|
2877
2797
|
export declare type ICommandTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandType'] = IResolversParentTypes['CommandType']> = {
|
|
2878
2798
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2879
2799
|
handler?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
2880
2800
|
description?: Resolver<Maybe<IResolversTypes['CommandHandlerDescriptionType']>, ParentType, ContextType>;
|
|
2881
2801
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2882
2802
|
};
|
|
2803
|
+
export declare type ICommandsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandsType'] = IResolversParentTypes['CommandsType']> = {
|
|
2804
|
+
commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['CommandType']>>>, ParentType, ContextType>;
|
|
2805
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2806
|
+
};
|
|
2883
2807
|
export declare type IContextMenuResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContextMenu'] = IResolversParentTypes['ContextMenu']> = {
|
|
2884
2808
|
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2885
2809
|
isShow?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -3258,12 +3182,6 @@ export declare type IIModelResolvers<ContextType = MyContext, ParentType extends
|
|
|
3258
3182
|
visibleViewComponents?: Resolver<Maybe<Array<Maybe<IResolversTypes['IViewComponentData']>>>, ParentType, ContextType>;
|
|
3259
3183
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3260
3184
|
};
|
|
3261
|
-
export declare type IInstalledExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InstalledExtension'] = IResolversParentTypes['InstalledExtension']> = {
|
|
3262
|
-
extension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType>;
|
|
3263
|
-
identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3264
|
-
galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3265
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3266
|
-
};
|
|
3267
3185
|
export declare type IIObservableResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IObservableResult'] = IResolversParentTypes['IObservableResult']> = {
|
|
3268
3186
|
closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3269
3187
|
destination?: Resolver<Maybe<IResolversTypes['IDestinationAnonymousSubject']>, ParentType, ContextType>;
|
|
@@ -3298,7 +3216,7 @@ export declare type IISwitchMapOperatorResolvers<ContextType = MyContext, Parent
|
|
|
3298
3216
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3299
3217
|
};
|
|
3300
3218
|
export declare type IITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITextDocumentIdentifier'] = IResolversParentTypes['ITextDocumentIdentifier']> = {
|
|
3301
|
-
__resolveType: TypeResolveFn<'
|
|
3219
|
+
__resolveType: TypeResolveFn<'TextDocumentIdentifier' | 'TextDocumentItem', ParentType, ContextType>;
|
|
3302
3220
|
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
3303
3221
|
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3304
3222
|
};
|
|
@@ -3312,6 +3230,12 @@ export declare type IIWorkspaceRootResolvers<ContextType = MyContext, ParentType
|
|
|
3312
3230
|
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3313
3231
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3314
3232
|
};
|
|
3233
|
+
export declare type IInstalledExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InstalledExtension'] = IResolversParentTypes['InstalledExtension']> = {
|
|
3234
|
+
extension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType>;
|
|
3235
|
+
identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3236
|
+
galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3237
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3238
|
+
};
|
|
3315
3239
|
export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
|
3316
3240
|
name: 'JSON';
|
|
3317
3241
|
}
|
|
@@ -3481,10 +3405,6 @@ export declare type INotificationMessageResolvers<ContextType = MyContext, Paren
|
|
|
3481
3405
|
links?: Resolver<Maybe<Array<Maybe<IResolversTypes['MessageLink']>>>, ParentType, ContextType>;
|
|
3482
3406
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3483
3407
|
};
|
|
3484
|
-
export declare type INotificationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notifications'] = IResolversParentTypes['Notifications']> = {
|
|
3485
|
-
notifications?: Resolver<Maybe<Array<Maybe<IResolversTypes['Notification']>>>, ParentType, ContextType>;
|
|
3486
|
-
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3487
|
-
};
|
|
3488
3408
|
export declare type INotificationViewItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItem'] = IResolversParentTypes['NotificationViewItem']> = {
|
|
3489
3409
|
severity?: Resolver<Maybe<IResolversTypes['NotificationSeverity']>, ParentType, ContextType>;
|
|
3490
3410
|
sticky?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -3508,6 +3428,10 @@ export declare type INotificationViewItemProgressStateResolvers<ContextType = My
|
|
|
3508
3428
|
done?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3509
3429
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3510
3430
|
};
|
|
3431
|
+
export declare type INotificationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notifications'] = IResolversParentTypes['Notifications']> = {
|
|
3432
|
+
notifications?: Resolver<Maybe<Array<Maybe<IResolversTypes['Notification']>>>, ParentType, ContextType>;
|
|
3433
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3434
|
+
};
|
|
3511
3435
|
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
|
3512
3436
|
name: 'Observable';
|
|
3513
3437
|
}
|
|
@@ -3664,8 +3588,8 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
|
3664
3588
|
BaseExtension?: IBaseExtensionResolvers<ContextType>;
|
|
3665
3589
|
Bundles?: IBundlesResolvers<ContextType>;
|
|
3666
3590
|
CommandHandlerDescriptionType?: ICommandHandlerDescriptionTypeResolvers<ContextType>;
|
|
3667
|
-
CommandsType?: ICommandsTypeResolvers<ContextType>;
|
|
3668
3591
|
CommandType?: ICommandTypeResolvers<ContextType>;
|
|
3592
|
+
CommandsType?: ICommandsTypeResolvers<ContextType>;
|
|
3669
3593
|
ContextMenu?: IContextMenuResolvers<ContextType>;
|
|
3670
3594
|
Contributes?: IContributesResolvers<ContextType>;
|
|
3671
3595
|
ContributionAction?: IContributionActionResolvers<ContextType>;
|
|
@@ -3715,7 +3639,6 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
|
3715
3639
|
IDestinationAnonymousSubject?: IIDestinationAnonymousSubjectResolvers<ContextType>;
|
|
3716
3640
|
IDocumentSelector?: IIDocumentSelectorResolvers<ContextType>;
|
|
3717
3641
|
IModel?: IIModelResolvers<ContextType>;
|
|
3718
|
-
InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
|
|
3719
3642
|
IObservableResult?: IIObservableResultResolvers<ContextType>;
|
|
3720
3643
|
IResourceUtilizationSettings?: IIResourceUtilizationSettingsResolvers<ContextType>;
|
|
3721
3644
|
ISourceAnonymousSubject?: IISourceAnonymousSubjectResolvers<ContextType>;
|
|
@@ -3723,6 +3646,7 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
|
3723
3646
|
ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers<ContextType>;
|
|
3724
3647
|
IViewComponentData?: IIViewComponentDataResolvers<ContextType>;
|
|
3725
3648
|
IWorkspaceRoot?: IIWorkspaceRootResolvers<ContextType>;
|
|
3649
|
+
InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
|
|
3726
3650
|
JSON?: GraphQLScalarType;
|
|
3727
3651
|
JSONObject?: GraphQLScalarType;
|
|
3728
3652
|
KeyBinding?: IKeyBindingResolvers<ContextType>;
|
|
@@ -3747,10 +3671,10 @@ export declare type IResolvers<ContextType = MyContext> = {
|
|
|
3747
3671
|
NotificationActions?: INotificationActionsResolvers<ContextType>;
|
|
3748
3672
|
NotificationChangeEvent?: INotificationChangeEventResolvers<ContextType>;
|
|
3749
3673
|
NotificationMessage?: INotificationMessageResolvers<ContextType>;
|
|
3750
|
-
Notifications?: INotificationsResolvers<ContextType>;
|
|
3751
3674
|
NotificationViewItem?: INotificationViewItemResolvers<ContextType>;
|
|
3752
3675
|
NotificationViewItemProgress?: INotificationViewItemProgressResolvers<ContextType>;
|
|
3753
3676
|
NotificationViewItemProgressState?: INotificationViewItemProgressStateResolvers<ContextType>;
|
|
3677
|
+
Notifications?: INotificationsResolvers<ContextType>;
|
|
3754
3678
|
Observable?: GraphQLScalarType;
|
|
3755
3679
|
PageInfo?: IPageInfoResolvers<ContextType>;
|
|
3756
3680
|
Position?: IPositionResolvers<ContextType>;
|