@adminide-stack/extension-api 0.0.20-alpha.98 → 1.0.201-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/lib/connections/jsonrpc2/connection.js +10 -10
  2. package/lib/connections/jsonrpc2/connection.js.map +1 -1
  3. package/lib/connections/jsonrpc2/connection.test.d.ts +1 -0
  4. package/lib/connections/jsonrpc2/connection.test.js +452 -0
  5. package/lib/connections/jsonrpc2/connection.test.js.map +1 -0
  6. package/lib/connections/jsonrpc2/index.js +5 -1
  7. package/lib/connections/jsonrpc2/index.js.map +1 -1
  8. package/lib/connections/jsonrpc2/linkedMap.test.d.ts +1 -0
  9. package/lib/connections/jsonrpc2/linkedMap.test.js +62 -0
  10. package/lib/connections/jsonrpc2/linkedMap.test.js.map +1 -0
  11. package/lib/connections/proxy/index.js +5 -1
  12. package/lib/connections/proxy/index.js.map +1 -1
  13. package/lib/connections/proxy/proxy.js +0 -1
  14. package/lib/connections/proxy/proxy.js.map +1 -1
  15. package/lib/connections/proxy/proxy.test.d.ts +1 -0
  16. package/lib/connections/proxy/proxy.test.js +64 -0
  17. package/lib/connections/proxy/proxy.test.js.map +1 -0
  18. package/lib/connections/remote-rpc/browser-remote-rpc.js +4 -4
  19. package/lib/connections/remote-rpc/browser-remote-rpc.js.map +1 -1
  20. package/lib/connections/remote-rpc/browser-server-rpc.test.d.ts +1 -0
  21. package/lib/connections/remote-rpc/browser-server-rpc.test.js +323 -0
  22. package/lib/connections/remote-rpc/browser-server-rpc.test.js.map +1 -0
  23. package/lib/connections/remote-rpc/index.js +5 -1
  24. package/lib/connections/remote-rpc/index.js.map +1 -1
  25. package/lib/connections/remote-rpc/old-browser-remote-rpc.js +1 -1
  26. package/lib/connections/remote-rpc/old-browser-remote-rpc.js.map +1 -1
  27. package/lib/constants/index.js +5 -1
  28. package/lib/constants/index.js.map +1 -1
  29. package/lib/core/expr/evaluator.test.d.ts +1 -0
  30. package/lib/core/expr/evaluator.test.js +52 -0
  31. package/lib/core/expr/evaluator.test.js.map +1 -0
  32. package/lib/core/expr/index.js +5 -1
  33. package/lib/core/expr/index.js.map +1 -1
  34. package/lib/core/index.js +5 -1
  35. package/lib/core/index.js.map +1 -1
  36. package/lib/core/types/ext-host-types.js +2 -2
  37. package/lib/core/types/ext-host-types.js.map +1 -1
  38. package/lib/core/types/index.js +5 -1
  39. package/lib/core/types/index.js.map +1 -1
  40. package/lib/errors/index.js +5 -1
  41. package/lib/errors/index.js.map +1 -1
  42. package/lib/index.js +5 -1
  43. package/lib/index.js.map +1 -1
  44. package/lib/interfaces/context.d.ts +1 -1
  45. package/lib/interfaces/contributions/index.js +5 -1
  46. package/lib/interfaces/contributions/index.js.map +1 -1
  47. package/lib/interfaces/ext-services/index.js +5 -1
  48. package/lib/interfaces/ext-services/index.js.map +1 -1
  49. package/lib/interfaces/ext-services/panel-view-registry.d.ts +1 -0
  50. package/lib/interfaces/generated-models.d.ts +910 -605
  51. package/lib/interfaces/generated-models.js +356 -16
  52. package/lib/interfaces/generated-models.js.map +1 -1
  53. package/lib/interfaces/graphql.d.ts +1 -1
  54. package/lib/interfaces/index.js +5 -1
  55. package/lib/interfaces/index.js.map +1 -1
  56. package/lib/interfaces/platform-context.d.ts +1 -1
  57. package/lib/interfaces/react-props/index.js +5 -1
  58. package/lib/interfaces/react-props/index.js.map +1 -1
  59. package/lib/interfaces/text-document.js +2 -2
  60. package/lib/interfaces/text-document.js.map +1 -1
  61. package/lib/interfaces/webview/index.js +5 -1
  62. package/lib/interfaces/webview/index.js.map +1 -1
  63. package/lib/protocol/client.protocol.js +1 -1
  64. package/lib/protocol/client.protocol.js.map +1 -1
  65. package/lib/protocol/index.js +5 -1
  66. package/lib/protocol/index.js.map +1 -1
  67. package/lib/protocol/proxy-identifier.js +2 -2
  68. package/lib/protocol/proxy-identifier.js.map +1 -1
  69. package/lib/protocol/rpc-protocol.d.ts +1 -0
  70. package/lib/protocol/rpc-protocol.js +57 -57
  71. package/lib/protocol/rpc-protocol.js.map +1 -1
  72. package/lib/protocol/rpc-protocol.test.d.ts +1 -0
  73. package/lib/protocol/rpc-protocol.test.js +171 -0
  74. package/lib/protocol/rpc-protocol.test.js.map +1 -0
  75. package/lib/protocol/server.protocol.d.ts +1 -0
  76. package/lib/protocol/server.protocol.js +10 -10
  77. package/lib/protocol/server.protocol.js.map +1 -1
  78. package/lib/protocol/shared/editor.js +2 -2
  79. package/lib/protocol/shared/editor.js.map +1 -1
  80. package/lib/protocol/utils/index.js +5 -1
  81. package/lib/protocol/utils/index.js.map +1 -1
  82. package/lib/protocol/utils/lazy-promise.js +2 -1
  83. package/lib/protocol/utils/lazy-promise.js.map +1 -1
  84. package/lib/utils/extensions.js +1 -1
  85. package/lib/utils/extensions.js.map +1 -1
  86. package/lib/utils/index.js +5 -1
  87. package/lib/utils/index.js.map +1 -1
  88. package/lib/utils/rxjs/combineLatestOrDefault.js +8 -8
  89. package/lib/utils/rxjs/combineLatestOrDefault.js.map +1 -1
  90. package/lib/utils/rxjs/combineLatestOrDefault.test.d.ts +1 -0
  91. package/lib/utils/rxjs/combineLatestOrDefault.test.js +52 -0
  92. package/lib/utils/rxjs/combineLatestOrDefault.test.js.map +1 -0
  93. package/lib/utils/rxjs/index.js +5 -1
  94. package/lib/utils/rxjs/index.js.map +1 -1
  95. package/lib/utils/util.js +1 -1
  96. package/lib/utils/util.js.map +1 -1
  97. package/lib/worker-lib/index.js +5 -1
  98. package/lib/worker-lib/index.js.map +1 -1
  99. package/lib/worker-lib/webWorkerLink.d.ts +2 -1
  100. package/lib/worker-lib/webWorkerLink.js +7 -7
  101. package/lib/worker-lib/webWorkerLink.js.map +1 -1
  102. package/lib/worker-lib/workerUtils.js +8 -8
  103. package/lib/worker-lib/workerUtils.js.map +1 -1
  104. package/package.json +28 -24
@@ -1,8 +1,19 @@
1
1
  import { URI, UriComponents } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
2
  import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
3
3
  import { MyContext } from '@adminide-stack/core';
4
- import * as ApolloReactCommon from '@apollo/react-common';
4
+ import * as Apollo from '@apollo/client';
5
5
  export declare type Maybe<T> = T | null;
6
+ export declare type Exact<T extends {
7
+ [key: string]: unknown;
8
+ }> = {
9
+ [K in keyof T]: T[K];
10
+ };
11
+ export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
12
+ [SubKey in K]?: Maybe<T[SubKey]>;
13
+ };
14
+ export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
15
+ [SubKey in K]: Maybe<T[SubKey]>;
16
+ };
6
17
  export declare type RequireFields<T, K extends keyof T> = {
7
18
  [X in Exclude<keyof T, K>]?: T[X];
8
19
  } & {
@@ -16,14 +27,14 @@ export declare type Scalars = {
16
27
  Int: number;
17
28
  Float: number;
18
29
  AnyObject: any;
30
+ Date: any;
31
+ DateTime: any;
19
32
  JSON: any;
20
- URI: URI;
33
+ JSONObject: any;
21
34
  Observable: any;
22
- Date: any;
23
35
  Time: any;
24
- DateTime: any;
36
+ URI: URI;
25
37
  URIInput: URI | UriComponents;
26
- JSONObject: any;
27
38
  };
28
39
  export declare type IAdminIdeSettings = {
29
40
  __typename?: 'AdminIdeSettings';
@@ -75,22 +86,25 @@ export declare const enum ICacheControlScope {
75
86
  PUBLIC = "PUBLIC",
76
87
  PRIVATE = "PRIVATE"
77
88
  }
89
+ export declare const enum IClientContainerService {
90
+ ExtensionController = "ExtensionController"
91
+ }
78
92
  export declare type ICommandHandlerDescriptionType = {
79
93
  __typename?: 'CommandHandlerDescriptionType';
80
94
  description?: Maybe<Scalars['String']>;
81
95
  args?: Maybe<Array<Maybe<IArgsType>>>;
82
96
  returns?: Maybe<Scalars['String']>;
83
97
  };
84
- export declare type ICommandsType = {
85
- __typename?: 'CommandsType';
86
- commands?: Maybe<Array<Maybe<ICommandType>>>;
87
- };
88
98
  export declare type ICommandType = {
89
99
  __typename?: 'CommandType';
90
100
  id?: Maybe<Scalars['String']>;
91
101
  handler?: Maybe<Scalars['AnyObject']>;
92
102
  description?: Maybe<ICommandHandlerDescriptionType>;
93
103
  };
104
+ export declare type ICommandsType = {
105
+ __typename?: 'CommandsType';
106
+ commands?: Maybe<Array<Maybe<ICommandType>>>;
107
+ };
94
108
  export declare type IContextMenu = {
95
109
  __typename?: 'ContextMenu';
96
110
  id?: Maybe<Scalars['String']>;
@@ -120,16 +134,6 @@ export declare type IContributionAction = {
120
134
  radio?: Maybe<Scalars['Boolean']>;
121
135
  run?: Maybe<IContributionActionRun>;
122
136
  };
123
- export declare type IContributionAction_input = {
124
- id?: Maybe<Scalars['String']>;
125
- label?: Maybe<Scalars['String']>;
126
- tooltip?: Maybe<Scalars['String']>;
127
- class?: Maybe<Scalars['String']>;
128
- enabled?: Maybe<Scalars['Boolean']>;
129
- checked?: Maybe<Scalars['Boolean']>;
130
- radio?: Maybe<Scalars['Boolean']>;
131
- run?: Maybe<IContributionActionRun_input>;
132
- };
133
137
  export declare type IContributionActionItem = {
134
138
  __typename?: 'ContributionActionItem';
135
139
  label?: Maybe<Scalars['String']>;
@@ -146,6 +150,16 @@ export declare type IContributionActionRun_input = {
146
150
  document?: Maybe<Scalars['AnyObject']>;
147
151
  variables?: Maybe<Scalars['AnyObject']>;
148
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
+ };
149
163
  export declare type IContributionActions = {
150
164
  __typename?: 'ContributionActions';
151
165
  id?: Maybe<Scalars['String']>;
@@ -263,9 +277,7 @@ export declare type IExtensionContributions = {
263
277
  * commands with their `category`, allowing for easy grouping. However, the Command Pallette doesn't show icons nor disabled
264
278
  * commands. The editor context menu, on the other hand, show disabled items but doesn't show the category label.
265
279
  *
266
- * Note: When a command is invoked (from a key binding, from the Command Palette,
267
- * any other menu, or programmatically), VS Code will emit an activationEvent
268
- * 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}.
269
281
  *
270
282
  * @example
271
283
  * ```
@@ -281,16 +293,11 @@ export declare type IExtensionContributions = {
281
293
  commands?: Maybe<Array<Maybe<IContributionActions>>>;
282
294
  /**
283
295
  * @title contributes.configuration
284
- * @description Contribute configuration keys that will be exposed to the user.
285
- * The user will be able to set these configuration options either from User
286
- * Settings or from the Workspace Settings.
287
- * When contributing configuration keys, a JSON schema describing these keys is
288
- * actually contributed. This ensures the user gets great tooling support when
289
- * 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.
290
298
  * You can read these values from your extension using vscode.workspace.getConfiguration('myExtension').
291
299
  *
292
- * Note: If you use markdownDescription instead of description, your setting
293
- * 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.
294
301
  *
295
302
  * @example
296
303
  * ```
@@ -318,12 +325,9 @@ export declare type IExtensionContributions = {
318
325
  debuggers?: Maybe<Array<Maybe<IDebugger>>>;
319
326
  /**
320
327
  * @title contributes.grammars
321
- * @description Contribute a TextMate grammar to a language. You must provide
322
- * the language this grammar applies to, the TextMate scopeName for the grammar
323
- * 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.
324
329
  *
325
- * Note: The file containing the grammar can be in JSON (filenames ending in
326
- * .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).
327
331
  *
328
332
  * @example
329
333
  * ```json
@@ -343,9 +347,7 @@ export declare type IExtensionContributions = {
343
347
  grammars?: Maybe<Array<Maybe<IGrammar>>>;
344
348
  /**
345
349
  * @title contributes.jsonValidation
346
- * @description Contribute a validation schema for a specific type of json file.
347
- * The url value can be either a local path to a schema file included in the
348
- * 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.
349
351
  *
350
352
  * @example
351
353
  * "contributes": {
@@ -358,21 +360,13 @@ export declare type IExtensionContributions = {
358
360
  jsonValidation?: Maybe<Array<Maybe<IExtensionJSONValidation>>>;
359
361
  /**
360
362
  * @title contributes.keybindings
361
- * @description Contribute a key binding rule defining what command should be
362
- * invoked when the user presses a key combination. See the Key Bindings topic
363
- * 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.
364
364
  *
365
- * Contributing a key binding will cause the Default Keyboard Shortcuts to
366
- * display your rule, and every UI representation of the command will now show
367
- * the key binding you have added. And, of course, when the user presses the key
368
- * 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.
369
366
  *
370
- * Note: Because VS Code runs on Windows, macOS and Linux, where modifiers
371
- * differ, you can use "key" to set the default key combination and overwrite it
372
- * 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.
373
368
  *
374
- * Note: When a command is invoked (from a key binding or from the Command
375
- * 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}.
376
370
  *
377
371
  * @example
378
372
  * Defining that Ctrl+F1 under Windows and Linux and Cmd+F1 under macOS trigger the "extension.sayHello" command:
@@ -391,20 +385,14 @@ export declare type IExtensionContributions = {
391
385
  keybindings?: Maybe<Array<Maybe<IKeyBinding>>>;
392
386
  /**
393
387
  * @title contributes.languages
394
- * @description Contribute definition of a language. This will introduce a new
395
- * 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.
396
389
  *
397
390
  * The main effects of contributes.languages are:
398
391
  *
399
- * Define a languageId that can be reused in other parts of VS Code API, such as
400
- * vscode.TextDocument.getLanguageId() and the onLanguage Activation Events.
401
- * You can contribute a human-readable using the aliases field. The first item in
402
- * the list will be used as the human-readable label.
403
- * Associate file name extensions, file name patterns, files that begin with a
404
- * specific line (such as hashbang), mimetypes to that languageId.
405
- * Contribute a set of Declarative Language Features for the contributed
406
- * language. Learn more about the configurable editing features in the Language
407
- * 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.
408
396
  *
409
397
  * @example
410
398
  * ```
@@ -423,21 +411,13 @@ export declare type IExtensionContributions = {
423
411
  languages?: Maybe<Array<Maybe<IExtensionLanguage>>>;
424
412
  /**
425
413
  * @title contributes.menus
426
- * @description Contribute a menu item for a command to the editor or Explorer.
427
- * The menu item definition contains the command that should be invoked when
428
- * selected and the condition under which the item should show. The latter is
429
- * 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.
430
415
  *
431
- * In addition to the mandatory command property, an alternative command can be
432
- * defined using the alt-property. It will be shown and invoked when pressing Alt
433
- * 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.
434
417
  *
435
- * Last, a group property defines sorting and grouping of menu items. The
436
- * 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.
437
419
  *
438
- * Note that when clauses apply to menus and enablement clauses to commands. The
439
- * enablement applies to all menus and even keybindings while the when only
440
- * 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.
441
421
  *
442
422
  * Currently extension writers can contribute to:
443
423
  *
@@ -459,10 +439,7 @@ export declare type IExtensionContributions = {
459
439
  * The comment thread actions - comments/commentThread/context
460
440
  * The comment title - comments/comment/title
461
441
  * The comment actions - comments/comment/context
462
- * Note: When a command is invoked from a (context) menu, VS Code tries to infer
463
- * the currently selected resource and passes that as a parameter when invoking
464
- * the command. For instance, a menu item inside the Explorer is passed the URI
465
- * 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.
466
443
  *
467
444
  * In addition to a title, commands can also define icons which VS Code will show in the editor title menu bar.
468
445
  *
@@ -481,9 +458,7 @@ export declare type IExtensionContributions = {
481
458
  menus?: Maybe<IMenus>;
482
459
  /**
483
460
  * @title contributes.snippets
484
- * @description Contribute snippets for a specific language. The language
485
- * attribute is the language identifier and the path is the relative path to the
486
- * 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.
487
462
  *
488
463
  * @example
489
464
  *
@@ -499,9 +474,7 @@ export declare type IExtensionContributions = {
499
474
  snippets?: Maybe<Array<Maybe<ISnippet>>>;
500
475
  /**
501
476
  * @title contributes.themes
502
- * @description Contribute a TextMate theme to VS Code. You must specify a label,
503
- * whether the theme is a dark theme or a light theme (such that the rest of VS
504
- * 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).
505
478
  *
506
479
  * @example
507
480
  * ```json
@@ -518,11 +491,7 @@ export declare type IExtensionContributions = {
518
491
  iconThemes?: Maybe<Array<Maybe<IThemeLabel>>>;
519
492
  /**
520
493
  * @title contributes.viewsContainers
521
- * @description Contribute a view container into which Custom views can be
522
- * contributed. You must specify an identifier, title, and an icon for the view
523
- * container. At present, you can contribute them to the Activity Bar
524
- * (activitybar) only. Below example shows how the Package Explorer view
525
- * 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.
526
495
  *
527
496
  * @example
528
497
  * ```json
@@ -554,11 +523,7 @@ export declare type IExtensionContributions = {
554
523
  viewsContainers?: Maybe<Scalars['JSON']>;
555
524
  /**
556
525
  * @title contributes.viewsContainers
557
- * @description Contribute a view container into which Custom views can be
558
- * contributed. You must specify an identifier, title, and an icon for the view
559
- * container. At present, you can contribute them to the Activity Bar
560
- * (activitybar) only. Below example shows how the Package Explorer view
561
- * 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.
562
527
  *
563
528
  * @example
564
529
  * ```json
@@ -590,10 +555,7 @@ export declare type IExtensionContributions = {
590
555
  views?: Maybe<Scalars['JSON']>;
591
556
  /**
592
557
  * @title contributes.colors
593
- * @description Contributes new themable colors. These colors can be used by the
594
- * extension in editor decorators and in the status bar. Once defined, users can
595
- * customize the color in the workspace.colorCustomization setting and user
596
- * 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.
597
559
  *
598
560
  * @example
599
561
  * ```json
@@ -609,8 +571,7 @@ export declare type IExtensionContributions = {
609
571
  * }]
610
572
  * }
611
573
  * ```
612
- * Color default values can be defined for light, dark and high contrast theme
613
- * 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.
614
575
  */
615
576
  colors?: Maybe<Array<Maybe<IExtensionColor>>>;
616
577
  localizations?: Maybe<Array<Maybe<ILocalization>>>;
@@ -668,20 +629,11 @@ export declare type IExtensionManifest = {
668
629
  version?: Maybe<Scalars['String']>;
669
630
  /** The entry point to your extension */
670
631
  main?: Maybe<Scalars['String']>;
671
- /**
672
- * Array of approved badges to display in the sidebar of the Marketplace's
673
- * extension page. Each badge is an object containing 3 properties: url for the
674
- * badge's image URL, href for the link users will follow when clicking the badge
675
- * and description.
676
- */
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. */
677
633
  badges?: Maybe<Array<Maybe<Scalars['String']>>>;
678
634
  /** Sets the extension to be flagged as a Preview in the Marketplace. */
679
635
  preview?: Maybe<Scalars['Boolean']>;
680
- /**
681
- * An array of keywords to make it easier to find the extension. These are
682
- * included with other extension Tags on the Marketplace. This list is currently
683
- * limited to 5 keywords.
684
- */
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. */
685
637
  keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
686
638
  /**
687
639
  * Refer to npm's documentation. If you do have a LICENSE file in the root of
@@ -691,11 +643,7 @@ export declare type IExtensionManifest = {
691
643
  homepage?: Maybe<Scalars['String']>;
692
644
  /** The publisher name */
693
645
  publisher?: Maybe<Scalars['String']>;
694
- /**
695
- * the categories you want to use for the extensions allowed values: [Programming
696
- * Languages, Snippets, Linters, Themes, Debuggers, Formatters, Keymaps, SCM
697
- * Providers, Other, Extension Packs, Language Packs]
698
- */
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] */
699
647
  categories?: Maybe<Scalars['String']>;
700
648
  /** A short description of what your extension is and does. */
701
649
  description?: Maybe<Scalars['String']>;
@@ -707,18 +655,14 @@ export declare type IExtensionManifest = {
707
655
  /** Any development Node.js dependencies your extension needs. Exactly the same as npm's devDependencies. */
708
656
  devDependencies?: Maybe<Scalars['JSON']>;
709
657
  /**
710
- * An array with the ids of extensions bundled with this extension. These other
711
- * extensions will be installed when the primary extension is installed. The id
712
- * 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
713
659
  * `${publisher}.${name}`. For example: vscode.csharp.
714
660
  */
715
661
  extensionPack?: Maybe<Array<Maybe<Scalars['String']>>>;
716
662
  /** An extension can be of 'ui' | 'workspace' */
717
663
  extensionKind?: Maybe<IExtensionKind>;
718
664
  /**
719
- * An array with the ids of extensions that this extension depends on. These
720
- * other extensions will be installed when the primary extension is installed.
721
- * 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
722
666
  * `${publisher}.${name}`. For example: vscode.csharp.
723
667
  */
724
668
  extensionDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -744,11 +688,7 @@ export declare type IExtensionManifest = {
744
688
  engines?: Maybe<IEngines>;
745
689
  /** Controls the Markdown rendering engine used in the Marketplace. Either github (default) or standard. */
746
690
  makrdown?: Maybe<Scalars['String']>;
747
- /**
748
- * Controls the Q & A link in the Marketplace. Set to marketplace to enable the
749
- * default Marketplace Q & A site. Set to a string to provide the URL of a custom
750
- * Q & A site. Set to false to disable Q & A altogether.
751
- */
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. */
752
692
  qna?: Maybe<Scalars['String']>;
753
693
  author?: Maybe<IAuthor>;
754
694
  /** Helps format the Marketplace header to match your icon. See details below. */
@@ -801,8 +741,7 @@ export declare type IExtensionRegistry = {
801
741
  /** To find an extension by its GraphQL ID, use Query.node */
802
742
  extension?: Maybe<IRegistryExtension>;
803
743
  /**
804
- * Find an extension by its extension ID (which is the concatenation of the
805
- * 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).
806
745
  *
807
746
  * To find an extension by its GraphQL ID, use Query.node
808
747
  * extension(extensionID: String!): RegistryExtension
@@ -962,6 +901,10 @@ export declare type IGalleryQuery = {
962
901
  sortOrder?: Maybe<Scalars['Int']>;
963
902
  source?: Maybe<Scalars['String']>;
964
903
  };
904
+ export declare type IGeoLocation = {
905
+ __typename?: 'GeoLocation';
906
+ coordinates?: Maybe<Array<Maybe<Scalars['Float']>>>;
907
+ };
965
908
  export declare type IGrammar = {
966
909
  __typename?: 'Grammar';
967
910
  language?: Maybe<Scalars['String']>;
@@ -970,6 +913,10 @@ export declare const enum IGraphqlCallType {
970
913
  mutation = "mutation",
971
914
  query = "query"
972
915
  }
916
+ export declare type IHover = {
917
+ contents?: Maybe<IMarkupContent>;
918
+ range?: Maybe<IRange>;
919
+ };
973
920
  export declare type IIActivationRequest = {
974
921
  env?: Maybe<Array<Maybe<Scalars['String']>>>;
975
922
  extensionID: Scalars['ID'];
@@ -1014,12 +961,6 @@ export declare type IIModelInput = {
1014
961
  roots?: Maybe<IIWorkspaceRootInput>;
1015
962
  visibleViewComponents?: Maybe<Array<Maybe<IIViewComponentDataInput>>>;
1016
963
  };
1017
- export declare type IInstalledExtension = {
1018
- __typename?: 'InstalledExtension';
1019
- extension?: Maybe<IGalleryExtension>;
1020
- identifier?: Maybe<IExtensionIdentifier>;
1021
- galleryIdentifier?: Maybe<IExtensionIdentifier>;
1022
- };
1023
964
  export declare type IIObservableResult = {
1024
965
  __typename?: 'IObservableResult';
1025
966
  closed?: Maybe<Scalars['Boolean']>;
@@ -1032,6 +973,10 @@ export declare type IIObservableResult = {
1032
973
  thrownError?: Maybe<Scalars['String']>;
1033
974
  _isScalar?: Maybe<Scalars['Boolean']>;
1034
975
  };
976
+ export declare type IIResourceUtilizationSettings = {
977
+ subTopic?: Maybe<Scalars['String']>;
978
+ adminApiNamespace?: Maybe<Scalars['String']>;
979
+ };
1035
980
  export declare type IISourceAnonymousSubject = {
1036
981
  __typename?: 'ISourceAnonymousSubject';
1037
982
  closed?: Maybe<Scalars['Boolean']>;
@@ -1071,6 +1016,12 @@ export declare type IIWorkspaceRoot = {
1071
1016
  export declare type IIWorkspaceRootInput = {
1072
1017
  url?: Maybe<Scalars['String']>;
1073
1018
  };
1019
+ export declare type IInstalledExtension = {
1020
+ __typename?: 'InstalledExtension';
1021
+ extension?: Maybe<IGalleryExtension>;
1022
+ identifier?: Maybe<IExtensionIdentifier>;
1023
+ galleryIdentifier?: Maybe<IExtensionIdentifier>;
1024
+ };
1074
1025
  export declare type IKeyBinding = {
1075
1026
  __typename?: 'KeyBinding';
1076
1027
  command?: Maybe<Scalars['String']>;
@@ -1103,6 +1054,10 @@ export declare type ILocation = {
1103
1054
  range?: Maybe<IPosition>;
1104
1055
  uri?: Maybe<Scalars['String']>;
1105
1056
  };
1057
+ export declare type IMarkupContent = {
1058
+ value?: Maybe<Scalars['String']>;
1059
+ kind?: Maybe<IMarkupKind>;
1060
+ };
1106
1061
  export declare const enum IMarkupKind {
1107
1062
  plaintext = "plaintext",
1108
1063
  markdown = "markdown"
@@ -1146,12 +1101,6 @@ export declare type IMenuItem = {
1146
1101
  enabled?: Maybe<Scalars['Boolean']>;
1147
1102
  run?: Maybe<IContributionActionRun>;
1148
1103
  };
1149
- export declare type IMenuItem_input = {
1150
- id?: Maybe<Scalars['String']>;
1151
- label?: Maybe<Scalars['String']>;
1152
- enabled?: Maybe<Scalars['Boolean']>;
1153
- run?: Maybe<IContributionActionRun_input>;
1154
- };
1155
1104
  export declare type IMenuItemAction = {
1156
1105
  __typename?: 'MenuItemAction';
1157
1106
  action?: Maybe<Scalars['String']>;
@@ -1196,6 +1145,12 @@ export declare type IMenuItemActionView = {
1196
1145
  /** The contributed view item context menu */
1197
1146
  item?: Maybe<IMenuItemActionContext>;
1198
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
+ };
1199
1154
  export declare type IMenus = {
1200
1155
  __typename?: 'Menus';
1201
1156
  /** The Command Palette */
@@ -1421,13 +1376,6 @@ export declare type INotification = {
1421
1376
  */
1422
1377
  sticky?: Maybe<Scalars['Boolean']>;
1423
1378
  };
1424
- export declare type INotification_input = {
1425
- severity?: Maybe<INotificationSeverity>;
1426
- message?: Maybe<INotificationMessage_input>;
1427
- source?: Maybe<Scalars['String']>;
1428
- actions?: Maybe<INotificationActions_input>;
1429
- sticky?: Maybe<Scalars['Boolean']>;
1430
- };
1431
1379
  export declare type INotificationActions = {
1432
1380
  __typename?: 'NotificationActions';
1433
1381
  /**
@@ -1473,10 +1421,6 @@ export declare type INotificationMessage_input = {
1473
1421
  value?: Maybe<Scalars['String']>;
1474
1422
  links?: Maybe<Array<Maybe<IMessageLink_input>>>;
1475
1423
  };
1476
- export declare type INotifications = {
1477
- __typename?: 'Notifications';
1478
- notifications?: Maybe<Array<Maybe<INotification>>>;
1479
- };
1480
1424
  export declare const enum INotificationSeverity {
1481
1425
  Ignore = "Ignore",
1482
1426
  Info = "Info",
@@ -1516,6 +1460,17 @@ export declare type INotificationViewItemProgressState = {
1516
1460
  /** Indicate that the long running operation is done. */
1517
1461
  done?: Maybe<Scalars['Boolean']>;
1518
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
+ };
1519
1474
  export declare type IOpenDocumentParamsInput = {
1520
1475
  textDocument?: Maybe<IOpenDocumentTextParamsInput>;
1521
1476
  };
@@ -1549,8 +1504,7 @@ export declare type IPosition = {
1549
1504
  column?: Maybe<Scalars['Int']>;
1550
1505
  /**
1551
1506
  * @lsp - Line position in a document (zero-based).
1552
- * If a line number is greater than the number of lines in a document, it
1553
- * 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.
1554
1508
  * If a line number is negative, it defaults to 0.
1555
1509
  */
1556
1510
  line?: Maybe<Scalars['Int']>;
@@ -1575,6 +1529,11 @@ export declare type IProcessMonitoring = {
1575
1529
  cpu?: Maybe<Scalars['Float']>;
1576
1530
  memory?: Maybe<Scalars['Float']>;
1577
1531
  };
1532
+ export declare type IPromptChoiceRun = {
1533
+ type?: Maybe<IGraphqlCallType>;
1534
+ document?: Maybe<Scalars['AnyObject']>;
1535
+ variables?: Maybe<Scalars['AnyObject']>;
1536
+ };
1578
1537
  export declare type IPromptChoice_input = {
1579
1538
  /** Label to show for the choice to the user. */
1580
1539
  label?: Maybe<Scalars['String']>;
@@ -1591,7 +1550,7 @@ export declare type IPromptChoice_input = {
1591
1550
  /** Triggered when the user selects the choice. */
1592
1551
  run?: Maybe<IPromptChoiceRun>;
1593
1552
  };
1594
- export declare type IPromptChoiceRun = {
1553
+ export declare type IPromptOptionsCancel = {
1595
1554
  type?: Maybe<IGraphqlCallType>;
1596
1555
  document?: Maybe<Scalars['AnyObject']>;
1597
1556
  variables?: Maybe<Scalars['AnyObject']>;
@@ -1615,11 +1574,6 @@ export declare type IPromptOptions_input = {
1615
1574
  */
1616
1575
  onCancel?: Maybe<IPromptOptionsCancel>;
1617
1576
  };
1618
- export declare type IPromptOptionsCancel = {
1619
- type?: Maybe<IGraphqlCallType>;
1620
- document?: Maybe<Scalars['AnyObject']>;
1621
- variables?: Maybe<Scalars['AnyObject']>;
1622
- };
1623
1577
  export declare type IProvideTextDocumentLocationSignature = ITextDocumentPositionParams & ILocation & {
1624
1578
  __typename?: 'ProvideTextDocumentLocationSignature';
1625
1579
  textDocument?: Maybe<ITextDocumentIdentifier>;
@@ -1885,31 +1839,33 @@ export declare type IViewContainer = {
1885
1839
  id?: Maybe<Scalars['ID']>;
1886
1840
  title?: Maybe<Scalars['String']>;
1887
1841
  };
1888
- export declare type ICopyMutationVariables = {
1842
+ export declare type ICopyMutationVariables = Exact<{
1889
1843
  value?: Maybe<Scalars['String']>;
1890
- };
1844
+ }>;
1891
1845
  export declare type ICopyMutation = ({
1892
1846
  __typename?: 'Mutation';
1893
1847
  } & Pick<IMutation, 'copy'>);
1894
- export declare type IRunMenuActionMutationVariables = {
1848
+ export declare type IRunMenuActionMutationVariables = Exact<{
1895
1849
  argument?: Maybe<IContributionActionRun_input>;
1896
- };
1850
+ }>;
1897
1851
  export declare type IRunMenuActionMutation = ({
1898
1852
  __typename?: 'Mutation';
1899
1853
  } & Pick<IMutation, 'runMenuAction'>);
1900
- export declare type IHideContextMenuMutationVariables = {};
1854
+ export declare type IHideContextMenuMutationVariables = Exact<{
1855
+ [key: string]: never;
1856
+ }>;
1901
1857
  export declare type IHideContextMenuMutation = ({
1902
1858
  __typename?: 'Mutation';
1903
1859
  } & Pick<IMutation, 'hideContextMenu'>);
1904
- export declare type IShowContextMenuMutationVariables = {
1860
+ export declare type IShowContextMenuMutationVariables = Exact<{
1905
1861
  delegate?: Maybe<IContextMenu_input>;
1906
- };
1862
+ }>;
1907
1863
  export declare type IShowContextMenuMutation = ({
1908
1864
  __typename?: 'Mutation';
1909
1865
  } & Pick<IMutation, 'showContextMenu'>);
1910
- export declare type IinstallMutationVariables = {
1866
+ export declare type IinstallMutationVariables = Exact<{
1911
1867
  vsix: Scalars['String'];
1912
- };
1868
+ }>;
1913
1869
  export declare type IinstallMutation = ({
1914
1870
  __typename?: 'Mutation';
1915
1871
  } & {
@@ -1917,19 +1873,21 @@ export declare type IinstallMutation = ({
1917
1873
  __typename?: 'ExtensionIdentifier';
1918
1874
  } & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
1919
1875
  });
1920
- export declare type IproviderDefinitionMutationVariables = {
1876
+ export declare type IproviderDefinitionMutationVariables = Exact<{
1921
1877
  params?: Maybe<ITextDocumentPositionParamsInput>;
1922
- };
1878
+ }>;
1923
1879
  export declare type IproviderDefinitionMutation = ({
1924
1880
  __typename?: 'Mutation';
1925
1881
  } & Pick<IMutation, 'hoverProviderDefinition'>);
1926
- export declare type IremoveMutationVariables = {
1882
+ export declare type IremoveMutationVariables = Exact<{
1927
1883
  id: Scalars['String'];
1928
- };
1884
+ }>;
1929
1885
  export declare type IremoveMutation = ({
1930
1886
  __typename?: 'Mutation';
1931
1887
  } & Pick<IMutation, 'removeExtension'>);
1932
- export declare type IContextMenuQueryVariables = {};
1888
+ export declare type IContextMenuQueryVariables = Exact<{
1889
+ [key: string]: never;
1890
+ }>;
1933
1891
  export declare type IContextMenuQuery = ({
1934
1892
  __typename?: 'Query';
1935
1893
  } & {
@@ -1948,9 +1906,9 @@ export declare type IContextMenuQuery = ({
1948
1906
  })>>>;
1949
1907
  })>;
1950
1908
  });
1951
- export declare type IgalleryExtensionQueryVariables = {
1909
+ export declare type IgalleryExtensionQueryVariables = Exact<{
1952
1910
  extensionID: Scalars['String'];
1953
- };
1911
+ }>;
1954
1912
  export declare type IgalleryExtensionQuery = ({
1955
1913
  __typename?: 'Query';
1956
1914
  } & {
@@ -1969,10 +1927,10 @@ export declare type IgalleryExtensionQuery = ({
1969
1927
  } & Pick<IGalleryExtensionResources, 'icon' | 'readme' | 'manifest' | 'changelog'>)>;
1970
1928
  })>;
1971
1929
  });
1972
- export declare type IExtensionsByLimitQueryVariables = {
1930
+ export declare type IExtensionsByLimitQueryVariables = Exact<{
1973
1931
  first: Scalars['Int'];
1974
- prioritizeExtensionIDs: Array<Scalars['String']>;
1975
- };
1932
+ prioritizeExtensionIDs: Array<Scalars['String']> | Scalars['String'];
1933
+ }>;
1976
1934
  export declare type IExtensionsByLimitQuery = ({
1977
1935
  __typename?: 'Query';
1978
1936
  } & {
@@ -1988,9 +1946,9 @@ export declare type IExtensionsByLimitQuery = ({
1988
1946
  })>;
1989
1947
  });
1990
1948
  });
1991
- export declare type IgalleryQueryVariables = {
1949
+ export declare type IgalleryQueryVariables = Exact<{
1992
1950
  query?: Maybe<IGalleryQuery>;
1993
- };
1951
+ }>;
1994
1952
  export declare type IgalleryQuery = ({
1995
1953
  __typename?: 'Query';
1996
1954
  } & {
@@ -2010,7 +1968,9 @@ export declare type IgalleryQuery = ({
2010
1968
  })>>>;
2011
1969
  })>;
2012
1970
  });
2013
- export declare type IinstalledExtensionsQueryVariables = {};
1971
+ export declare type IinstalledExtensionsQueryVariables = Exact<{
1972
+ [key: string]: never;
1973
+ }>;
2014
1974
  export declare type IinstalledExtensionsQuery = ({
2015
1975
  __typename?: 'Query';
2016
1976
  } & {
@@ -2032,7 +1992,9 @@ export declare type IinstalledExtensionsQuery = ({
2032
1992
  })>;
2033
1993
  })>>>;
2034
1994
  });
2035
- export declare type INotificationsQueryVariables = {};
1995
+ export declare type INotificationsQueryVariables = Exact<{
1996
+ [key: string]: never;
1997
+ }>;
2036
1998
  export declare type INotificationsQuery = ({
2037
1999
  __typename?: 'Query';
2038
2000
  } & {
@@ -2063,53 +2025,375 @@ export declare type INotificationsQuery = ({
2063
2025
  })>>>;
2064
2026
  })>;
2065
2027
  });
2066
- export declare type IshowNotificationQueryVariables = {
2028
+ export declare type IshowNotificationQueryVariables = Exact<{
2067
2029
  notification?: Maybe<INotification_input>;
2068
- };
2030
+ }>;
2069
2031
  export declare type IshowNotificationQuery = ({
2070
2032
  __typename?: 'Query';
2071
2033
  } & Pick<IQuery, 'showNotification'>);
2072
- export declare const CopyDocument: import("graphql").DocumentNode;
2073
- export declare type CopyMutationResult = ApolloReactCommon.MutationResult<ICopyMutation>;
2074
- export declare type CopyMutationOptions = ApolloReactCommon.BaseMutationOptions<ICopyMutation, ICopyMutationVariables>;
2075
- export declare const RunMenuActionDocument: import("graphql").DocumentNode;
2076
- export declare type RunMenuActionMutationResult = ApolloReactCommon.MutationResult<IRunMenuActionMutation>;
2077
- export declare type RunMenuActionMutationOptions = ApolloReactCommon.BaseMutationOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>;
2078
- export declare const HideContextMenuDocument: import("graphql").DocumentNode;
2079
- export declare type HideContextMenuMutationResult = ApolloReactCommon.MutationResult<IHideContextMenuMutation>;
2080
- export declare type HideContextMenuMutationOptions = ApolloReactCommon.BaseMutationOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>;
2081
- export declare const ShowContextMenuDocument: import("graphql").DocumentNode;
2082
- export declare type ShowContextMenuMutationResult = ApolloReactCommon.MutationResult<IShowContextMenuMutation>;
2083
- export declare type ShowContextMenuMutationOptions = ApolloReactCommon.BaseMutationOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>;
2084
- export declare const installDocument: import("graphql").DocumentNode;
2085
- export declare type installMutationResult = ApolloReactCommon.MutationResult<IinstallMutation>;
2086
- export declare type installMutationOptions = ApolloReactCommon.BaseMutationOptions<IinstallMutation, IinstallMutationVariables>;
2087
- export declare const providerDefinitionDocument: import("graphql").DocumentNode;
2088
- export declare type providerDefinitionMutationResult = ApolloReactCommon.MutationResult<IproviderDefinitionMutation>;
2089
- export declare type providerDefinitionMutationOptions = ApolloReactCommon.BaseMutationOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>;
2090
- export declare const removeDocument: import("graphql").DocumentNode;
2091
- export declare type removeMutationResult = ApolloReactCommon.MutationResult<IremoveMutation>;
2092
- export declare type removeMutationOptions = ApolloReactCommon.BaseMutationOptions<IremoveMutation, IremoveMutationVariables>;
2093
- export declare const ContextMenuDocument: import("graphql").DocumentNode;
2094
- export declare type ContextMenuQueryResult = ApolloReactCommon.QueryResult<IContextMenuQuery, IContextMenuQueryVariables>;
2095
- export declare const galleryExtensionDocument: import("graphql").DocumentNode;
2096
- export declare type galleryExtensionQueryResult = ApolloReactCommon.QueryResult<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>;
2097
- export declare const ExtensionsByLimitDocument: import("graphql").DocumentNode;
2098
- export declare type ExtensionsByLimitQueryResult = ApolloReactCommon.QueryResult<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>;
2099
- export declare const galleryDocument: import("graphql").DocumentNode;
2100
- export declare type galleryQueryResult = ApolloReactCommon.QueryResult<IgalleryQuery, IgalleryQueryVariables>;
2101
- export declare const installedExtensionsDocument: import("graphql").DocumentNode;
2102
- export declare type installedExtensionsQueryResult = ApolloReactCommon.QueryResult<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>;
2103
- export declare const NotificationsDocument: import("graphql").DocumentNode;
2104
- export declare type NotificationsQueryResult = ApolloReactCommon.QueryResult<INotificationsQuery, INotificationsQueryVariables>;
2105
- export declare const showNotificationDocument: import("graphql").DocumentNode;
2106
- export declare type showNotificationQueryResult = ApolloReactCommon.QueryResult<IshowNotificationQuery, IshowNotificationQueryVariables>;
2034
+ export declare const CopyDocument: Apollo.DocumentNode;
2035
+ /**
2036
+ * __useCopyMutation__
2037
+ *
2038
+ * To run a mutation, you first call `useCopyMutation` within a React component and pass it any options that fit your needs.
2039
+ * When your component renders, `useCopyMutation` returns a tuple that includes:
2040
+ * - A mutate function that you can call at any time to execute the mutation
2041
+ * - An object with fields that represent the current status of the mutation's execution
2042
+ *
2043
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2044
+ *
2045
+ * @example
2046
+ * const [copyMutation, { data, loading, error }] = useCopyMutation({
2047
+ * variables: {
2048
+ * value: // value for 'value'
2049
+ * },
2050
+ * });
2051
+ */
2052
+ export declare function useCopyMutation(baseOptions?: Apollo.MutationHookOptions<ICopyMutation, ICopyMutationVariables>): Apollo.MutationTuple<ICopyMutation, Exact<{
2053
+ value?: string;
2054
+ }>>;
2055
+ export declare type CopyMutationHookResult = ReturnType<typeof useCopyMutation>;
2056
+ export declare type CopyMutationResult = Apollo.MutationResult<ICopyMutation>;
2057
+ export declare type CopyMutationOptions = Apollo.BaseMutationOptions<ICopyMutation, ICopyMutationVariables>;
2058
+ export declare const RunMenuActionDocument: Apollo.DocumentNode;
2059
+ /**
2060
+ * __useRunMenuActionMutation__
2061
+ *
2062
+ * To run a mutation, you first call `useRunMenuActionMutation` within a React component and pass it any options that fit your needs.
2063
+ * When your component renders, `useRunMenuActionMutation` returns a tuple that includes:
2064
+ * - A mutate function that you can call at any time to execute the mutation
2065
+ * - An object with fields that represent the current status of the mutation's execution
2066
+ *
2067
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2068
+ *
2069
+ * @example
2070
+ * const [runMenuActionMutation, { data, loading, error }] = useRunMenuActionMutation({
2071
+ * variables: {
2072
+ * argument: // value for 'argument'
2073
+ * },
2074
+ * });
2075
+ */
2076
+ export declare function useRunMenuActionMutation(baseOptions?: Apollo.MutationHookOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>): Apollo.MutationTuple<IRunMenuActionMutation, Exact<{
2077
+ argument?: IContributionActionRun_input;
2078
+ }>>;
2079
+ export declare type RunMenuActionMutationHookResult = ReturnType<typeof useRunMenuActionMutation>;
2080
+ export declare type RunMenuActionMutationResult = Apollo.MutationResult<IRunMenuActionMutation>;
2081
+ export declare type RunMenuActionMutationOptions = Apollo.BaseMutationOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>;
2082
+ export declare const HideContextMenuDocument: Apollo.DocumentNode;
2083
+ /**
2084
+ * __useHideContextMenuMutation__
2085
+ *
2086
+ * To run a mutation, you first call `useHideContextMenuMutation` within a React component and pass it any options that fit your needs.
2087
+ * When your component renders, `useHideContextMenuMutation` returns a tuple that includes:
2088
+ * - A mutate function that you can call at any time to execute the mutation
2089
+ * - An object with fields that represent the current status of the mutation's execution
2090
+ *
2091
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2092
+ *
2093
+ * @example
2094
+ * const [hideContextMenuMutation, { data, loading, error }] = useHideContextMenuMutation({
2095
+ * variables: {
2096
+ * },
2097
+ * });
2098
+ */
2099
+ export declare function useHideContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>): Apollo.MutationTuple<IHideContextMenuMutation, Exact<{
2100
+ [key: string]: never;
2101
+ }>>;
2102
+ export declare type HideContextMenuMutationHookResult = ReturnType<typeof useHideContextMenuMutation>;
2103
+ export declare type HideContextMenuMutationResult = Apollo.MutationResult<IHideContextMenuMutation>;
2104
+ export declare type HideContextMenuMutationOptions = Apollo.BaseMutationOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>;
2105
+ export declare const ShowContextMenuDocument: Apollo.DocumentNode;
2106
+ /**
2107
+ * __useShowContextMenuMutation__
2108
+ *
2109
+ * To run a mutation, you first call `useShowContextMenuMutation` within a React component and pass it any options that fit your needs.
2110
+ * When your component renders, `useShowContextMenuMutation` returns a tuple that includes:
2111
+ * - A mutate function that you can call at any time to execute the mutation
2112
+ * - An object with fields that represent the current status of the mutation's execution
2113
+ *
2114
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2115
+ *
2116
+ * @example
2117
+ * const [showContextMenuMutation, { data, loading, error }] = useShowContextMenuMutation({
2118
+ * variables: {
2119
+ * delegate: // value for 'delegate'
2120
+ * },
2121
+ * });
2122
+ */
2123
+ export declare function useShowContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>): Apollo.MutationTuple<IShowContextMenuMutation, Exact<{
2124
+ delegate?: IContextMenu_input;
2125
+ }>>;
2126
+ export declare type ShowContextMenuMutationHookResult = ReturnType<typeof useShowContextMenuMutation>;
2127
+ export declare type ShowContextMenuMutationResult = Apollo.MutationResult<IShowContextMenuMutation>;
2128
+ export declare type ShowContextMenuMutationOptions = Apollo.BaseMutationOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>;
2129
+ export declare const installDocument: Apollo.DocumentNode;
2130
+ /**
2131
+ * __useinstallMutation__
2132
+ *
2133
+ * To run a mutation, you first call `useinstallMutation` within a React component and pass it any options that fit your needs.
2134
+ * When your component renders, `useinstallMutation` returns a tuple that includes:
2135
+ * - A mutate function that you can call at any time to execute the mutation
2136
+ * - An object with fields that represent the current status of the mutation's execution
2137
+ *
2138
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2139
+ *
2140
+ * @example
2141
+ * const [installMutation, { data, loading, error }] = useinstallMutation({
2142
+ * variables: {
2143
+ * vsix: // value for 'vsix'
2144
+ * },
2145
+ * });
2146
+ */
2147
+ export declare function useinstallMutation(baseOptions?: Apollo.MutationHookOptions<IinstallMutation, IinstallMutationVariables>): Apollo.MutationTuple<IinstallMutation, Exact<{
2148
+ vsix: string;
2149
+ }>>;
2150
+ export declare type installMutationHookResult = ReturnType<typeof useinstallMutation>;
2151
+ export declare type installMutationResult = Apollo.MutationResult<IinstallMutation>;
2152
+ export declare type installMutationOptions = Apollo.BaseMutationOptions<IinstallMutation, IinstallMutationVariables>;
2153
+ export declare const providerDefinitionDocument: Apollo.DocumentNode;
2154
+ /**
2155
+ * __useproviderDefinitionMutation__
2156
+ *
2157
+ * To run a mutation, you first call `useproviderDefinitionMutation` within a React component and pass it any options that fit your needs.
2158
+ * When your component renders, `useproviderDefinitionMutation` returns a tuple that includes:
2159
+ * - A mutate function that you can call at any time to execute the mutation
2160
+ * - An object with fields that represent the current status of the mutation's execution
2161
+ *
2162
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2163
+ *
2164
+ * @example
2165
+ * const [providerDefinitionMutation, { data, loading, error }] = useproviderDefinitionMutation({
2166
+ * variables: {
2167
+ * params: // value for 'params'
2168
+ * },
2169
+ * });
2170
+ */
2171
+ export declare function useproviderDefinitionMutation(baseOptions?: Apollo.MutationHookOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>): Apollo.MutationTuple<IproviderDefinitionMutation, Exact<{
2172
+ params?: ITextDocumentPositionParamsInput;
2173
+ }>>;
2174
+ export declare type providerDefinitionMutationHookResult = ReturnType<typeof useproviderDefinitionMutation>;
2175
+ export declare type providerDefinitionMutationResult = Apollo.MutationResult<IproviderDefinitionMutation>;
2176
+ export declare type providerDefinitionMutationOptions = Apollo.BaseMutationOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>;
2177
+ export declare const removeDocument: Apollo.DocumentNode;
2178
+ /**
2179
+ * __useremoveMutation__
2180
+ *
2181
+ * To run a mutation, you first call `useremoveMutation` within a React component and pass it any options that fit your needs.
2182
+ * When your component renders, `useremoveMutation` returns a tuple that includes:
2183
+ * - A mutate function that you can call at any time to execute the mutation
2184
+ * - An object with fields that represent the current status of the mutation's execution
2185
+ *
2186
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2187
+ *
2188
+ * @example
2189
+ * const [removeMutation, { data, loading, error }] = useremoveMutation({
2190
+ * variables: {
2191
+ * id: // value for 'id'
2192
+ * },
2193
+ * });
2194
+ */
2195
+ export declare function useremoveMutation(baseOptions?: Apollo.MutationHookOptions<IremoveMutation, IremoveMutationVariables>): Apollo.MutationTuple<IremoveMutation, Exact<{
2196
+ id: string;
2197
+ }>>;
2198
+ export declare type removeMutationHookResult = ReturnType<typeof useremoveMutation>;
2199
+ export declare type removeMutationResult = Apollo.MutationResult<IremoveMutation>;
2200
+ export declare type removeMutationOptions = Apollo.BaseMutationOptions<IremoveMutation, IremoveMutationVariables>;
2201
+ export declare const ContextMenuDocument: Apollo.DocumentNode;
2202
+ /**
2203
+ * __useContextMenuQuery__
2204
+ *
2205
+ * To run a query within a React component, call `useContextMenuQuery` and pass it any options that fit your needs.
2206
+ * When your component renders, `useContextMenuQuery` returns an object from Apollo Client that contains loading, error, and data properties
2207
+ * you can use to render your UI.
2208
+ *
2209
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2210
+ *
2211
+ * @example
2212
+ * const { data, loading, error } = useContextMenuQuery({
2213
+ * variables: {
2214
+ * },
2215
+ * });
2216
+ */
2217
+ export declare function useContextMenuQuery(baseOptions?: Apollo.QueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.QueryResult<IContextMenuQuery, Exact<{
2218
+ [key: string]: never;
2219
+ }>>;
2220
+ export declare function useContextMenuLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.QueryTuple<IContextMenuQuery, Exact<{
2221
+ [key: string]: never;
2222
+ }>>;
2223
+ export declare type ContextMenuQueryHookResult = ReturnType<typeof useContextMenuQuery>;
2224
+ export declare type ContextMenuLazyQueryHookResult = ReturnType<typeof useContextMenuLazyQuery>;
2225
+ export declare type ContextMenuQueryResult = Apollo.QueryResult<IContextMenuQuery, IContextMenuQueryVariables>;
2226
+ export declare const galleryExtensionDocument: Apollo.DocumentNode;
2227
+ /**
2228
+ * __usegalleryExtensionQuery__
2229
+ *
2230
+ * To run a query within a React component, call `usegalleryExtensionQuery` and pass it any options that fit your needs.
2231
+ * When your component renders, `usegalleryExtensionQuery` returns an object from Apollo Client that contains loading, error, and data properties
2232
+ * you can use to render your UI.
2233
+ *
2234
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2235
+ *
2236
+ * @example
2237
+ * const { data, loading, error } = usegalleryExtensionQuery({
2238
+ * variables: {
2239
+ * extensionID: // value for 'extensionID'
2240
+ * },
2241
+ * });
2242
+ */
2243
+ export declare function usegalleryExtensionQuery(baseOptions: Apollo.QueryHookOptions<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>): Apollo.QueryResult<IgalleryExtensionQuery, Exact<{
2244
+ extensionID: string;
2245
+ }>>;
2246
+ export declare function usegalleryExtensionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>): Apollo.QueryTuple<IgalleryExtensionQuery, Exact<{
2247
+ extensionID: string;
2248
+ }>>;
2249
+ export declare type galleryExtensionQueryHookResult = ReturnType<typeof usegalleryExtensionQuery>;
2250
+ export declare type galleryExtensionLazyQueryHookResult = ReturnType<typeof usegalleryExtensionLazyQuery>;
2251
+ export declare type galleryExtensionQueryResult = Apollo.QueryResult<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>;
2252
+ export declare const ExtensionsByLimitDocument: Apollo.DocumentNode;
2253
+ /**
2254
+ * __useExtensionsByLimitQuery__
2255
+ *
2256
+ * To run a query within a React component, call `useExtensionsByLimitQuery` and pass it any options that fit your needs.
2257
+ * When your component renders, `useExtensionsByLimitQuery` returns an object from Apollo Client that contains loading, error, and data properties
2258
+ * you can use to render your UI.
2259
+ *
2260
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2261
+ *
2262
+ * @example
2263
+ * const { data, loading, error } = useExtensionsByLimitQuery({
2264
+ * variables: {
2265
+ * first: // value for 'first'
2266
+ * prioritizeExtensionIDs: // value for 'prioritizeExtensionIDs'
2267
+ * },
2268
+ * });
2269
+ */
2270
+ export declare function useExtensionsByLimitQuery(baseOptions: Apollo.QueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.QueryResult<IExtensionsByLimitQuery, Exact<{
2271
+ first: number;
2272
+ prioritizeExtensionIDs: string | string[];
2273
+ }>>;
2274
+ export declare function useExtensionsByLimitLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.QueryTuple<IExtensionsByLimitQuery, Exact<{
2275
+ first: number;
2276
+ prioritizeExtensionIDs: string | string[];
2277
+ }>>;
2278
+ export declare type ExtensionsByLimitQueryHookResult = ReturnType<typeof useExtensionsByLimitQuery>;
2279
+ export declare type ExtensionsByLimitLazyQueryHookResult = ReturnType<typeof useExtensionsByLimitLazyQuery>;
2280
+ export declare type ExtensionsByLimitQueryResult = Apollo.QueryResult<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>;
2281
+ export declare const galleryDocument: Apollo.DocumentNode;
2282
+ /**
2283
+ * __usegalleryQuery__
2284
+ *
2285
+ * To run a query within a React component, call `usegalleryQuery` and pass it any options that fit your needs.
2286
+ * When your component renders, `usegalleryQuery` returns an object from Apollo Client that contains loading, error, and data properties
2287
+ * you can use to render your UI.
2288
+ *
2289
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2290
+ *
2291
+ * @example
2292
+ * const { data, loading, error } = usegalleryQuery({
2293
+ * variables: {
2294
+ * query: // value for 'query'
2295
+ * },
2296
+ * });
2297
+ */
2298
+ export declare function usegalleryQuery(baseOptions?: Apollo.QueryHookOptions<IgalleryQuery, IgalleryQueryVariables>): Apollo.QueryResult<IgalleryQuery, Exact<{
2299
+ query?: IGalleryQuery;
2300
+ }>>;
2301
+ export declare function usegalleryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IgalleryQuery, IgalleryQueryVariables>): Apollo.QueryTuple<IgalleryQuery, Exact<{
2302
+ query?: IGalleryQuery;
2303
+ }>>;
2304
+ export declare type galleryQueryHookResult = ReturnType<typeof usegalleryQuery>;
2305
+ export declare type galleryLazyQueryHookResult = ReturnType<typeof usegalleryLazyQuery>;
2306
+ export declare type galleryQueryResult = Apollo.QueryResult<IgalleryQuery, IgalleryQueryVariables>;
2307
+ export declare const installedExtensionsDocument: Apollo.DocumentNode;
2308
+ /**
2309
+ * __useinstalledExtensionsQuery__
2310
+ *
2311
+ * To run a query within a React component, call `useinstalledExtensionsQuery` and pass it any options that fit your needs.
2312
+ * When your component renders, `useinstalledExtensionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2313
+ * you can use to render your UI.
2314
+ *
2315
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2316
+ *
2317
+ * @example
2318
+ * const { data, loading, error } = useinstalledExtensionsQuery({
2319
+ * variables: {
2320
+ * },
2321
+ * });
2322
+ */
2323
+ export declare function useinstalledExtensionsQuery(baseOptions?: Apollo.QueryHookOptions<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>): Apollo.QueryResult<IinstalledExtensionsQuery, Exact<{
2324
+ [key: string]: never;
2325
+ }>>;
2326
+ export declare function useinstalledExtensionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>): Apollo.QueryTuple<IinstalledExtensionsQuery, Exact<{
2327
+ [key: string]: never;
2328
+ }>>;
2329
+ export declare type installedExtensionsQueryHookResult = ReturnType<typeof useinstalledExtensionsQuery>;
2330
+ export declare type installedExtensionsLazyQueryHookResult = ReturnType<typeof useinstalledExtensionsLazyQuery>;
2331
+ export declare type installedExtensionsQueryResult = Apollo.QueryResult<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>;
2332
+ export declare const NotificationsDocument: Apollo.DocumentNode;
2333
+ /**
2334
+ * __useNotificationsQuery__
2335
+ *
2336
+ * To run a query within a React component, call `useNotificationsQuery` and pass it any options that fit your needs.
2337
+ * When your component renders, `useNotificationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2338
+ * you can use to render your UI.
2339
+ *
2340
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2341
+ *
2342
+ * @example
2343
+ * const { data, loading, error } = useNotificationsQuery({
2344
+ * variables: {
2345
+ * },
2346
+ * });
2347
+ */
2348
+ export declare function useNotificationsQuery(baseOptions?: Apollo.QueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.QueryResult<INotificationsQuery, Exact<{
2349
+ [key: string]: never;
2350
+ }>>;
2351
+ export declare function useNotificationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.QueryTuple<INotificationsQuery, Exact<{
2352
+ [key: string]: never;
2353
+ }>>;
2354
+ export declare type NotificationsQueryHookResult = ReturnType<typeof useNotificationsQuery>;
2355
+ export declare type NotificationsLazyQueryHookResult = ReturnType<typeof useNotificationsLazyQuery>;
2356
+ export declare type NotificationsQueryResult = Apollo.QueryResult<INotificationsQuery, INotificationsQueryVariables>;
2357
+ export declare const showNotificationDocument: Apollo.DocumentNode;
2358
+ /**
2359
+ * __useshowNotificationQuery__
2360
+ *
2361
+ * To run a query within a React component, call `useshowNotificationQuery` and pass it any options that fit your needs.
2362
+ * When your component renders, `useshowNotificationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2363
+ * you can use to render your UI.
2364
+ *
2365
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2366
+ *
2367
+ * @example
2368
+ * const { data, loading, error } = useshowNotificationQuery({
2369
+ * variables: {
2370
+ * notification: // value for 'notification'
2371
+ * },
2372
+ * });
2373
+ */
2374
+ export declare function useshowNotificationQuery(baseOptions?: Apollo.QueryHookOptions<IshowNotificationQuery, IshowNotificationQueryVariables>): Apollo.QueryResult<IshowNotificationQuery, Exact<{
2375
+ notification?: INotification_input;
2376
+ }>>;
2377
+ export declare function useshowNotificationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IshowNotificationQuery, IshowNotificationQueryVariables>): Apollo.QueryTuple<IshowNotificationQuery, Exact<{
2378
+ notification?: INotification_input;
2379
+ }>>;
2380
+ export declare type showNotificationQueryHookResult = ReturnType<typeof useshowNotificationQuery>;
2381
+ export declare type showNotificationLazyQueryHookResult = ReturnType<typeof useshowNotificationLazyQuery>;
2382
+ export declare type showNotificationQueryResult = Apollo.QueryResult<IshowNotificationQuery, IshowNotificationQueryVariables>;
2107
2383
  export declare type ResolverTypeWrapper<T> = Promise<T> | T;
2108
- export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = {
2384
+ export declare type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
2385
+ resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2386
+ };
2387
+ export declare type LegacyStitchingResolver<TResult, TParent, TContext, TArgs> = {
2109
2388
  fragment: string;
2110
2389
  resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2111
2390
  };
2112
- export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
2391
+ export declare type NewStitchingResolver<TResult, TParent, TContext, TArgs> = {
2392
+ selectionSet: string;
2393
+ resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2394
+ };
2395
+ export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = LegacyStitchingResolver<TResult, TParent, TContext, TArgs> | NewStitchingResolver<TResult, TParent, TContext, TArgs>;
2396
+ export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
2113
2397
  export declare type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
2114
2398
  export declare type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterator<TResult> | Promise<AsyncIterator<TResult>>;
2115
2399
  export declare type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
@@ -2128,336 +2412,334 @@ export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
2128
2412
  export declare type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
2129
2413
  export declare type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
2130
2414
  export declare type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
2131
- export declare type isTypeOfResolverFn<T = {}> = (obj: T, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
2415
+ export declare type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
2132
2416
  export declare type NextResolverFn<T> = () => Promise<T>;
2133
2417
  export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
2134
2418
  /** Mapping between all available schema types and the resolvers types */
2135
2419
  export declare type IResolversTypes = {
2136
- Query: ResolverTypeWrapper<{}>;
2137
- ContextMenu: ResolverTypeWrapper<IContextMenu>;
2138
- String: ResolverTypeWrapper<Scalars['String']>;
2139
- Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
2140
- Anchor: ResolverTypeWrapper<IAnchor>;
2420
+ AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
2141
2421
  Int: ResolverTypeWrapper<Scalars['Int']>;
2142
- MenuItem: ResolverTypeWrapper<IMenuItem>;
2143
- ContributionActionRun: ResolverTypeWrapper<IContributionActionRun>;
2144
- GraphqlCallType: IGraphqlCallType;
2422
+ Anchor: ResolverTypeWrapper<IAnchor>;
2423
+ Anchor_input: IAnchor_input;
2145
2424
  AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
2146
- DocSitePage: ResolverTypeWrapper<IDocSitePage>;
2147
- RegistryExtension: ResolverTypeWrapper<IRegistryExtension>;
2148
- Node: IResolversTypes['RegistryExtension'];
2149
- ID: ResolverTypeWrapper<Scalars['ID']>;
2150
- RegistryPublisher: ResolverTypeWrapper<IRegistryPublisher>;
2151
- ExtensionManifest: ResolverTypeWrapper<IExtensionManifest>;
2152
- JSON: ResolverTypeWrapper<Scalars['JSON']>;
2153
- ExtensionKind: IExtensionKind;
2425
+ ArgsType: ResolverTypeWrapper<IArgsType>;
2426
+ String: ResolverTypeWrapper<Scalars['String']>;
2154
2427
  Assets: ResolverTypeWrapper<IAssets>;
2155
- Scripts: ResolverTypeWrapper<IScripts>;
2156
- Bundles: ResolverTypeWrapper<IBundles>;
2157
- ExtensionPackageType: ResolverTypeWrapper<IExtensionPackageType>;
2158
- Engines: ResolverTypeWrapper<IEngines>;
2159
2428
  Author: ResolverTypeWrapper<IAuthor>;
2160
- GalleryBanner: ResolverTypeWrapper<IGalleryBanner>;
2161
- ExtensionContributions: ResolverTypeWrapper<IExtensionContributions>;
2162
- ContributionActions: ResolverTypeWrapper<IContributionActions>;
2429
+ BaseExtension: ResolverTypeWrapper<IBaseExtension>;
2430
+ Bundles: ResolverTypeWrapper<IBundles>;
2431
+ CacheControlScope: ICacheControlScope;
2432
+ ClientContainerService: IClientContainerService;
2433
+ CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
2434
+ CommandType: ResolverTypeWrapper<ICommandType>;
2435
+ CommandsType: ResolverTypeWrapper<ICommandsType>;
2436
+ ContextMenu: ResolverTypeWrapper<IContextMenu>;
2437
+ Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
2438
+ ContextMenu_input: IContextMenu_input;
2439
+ Contributes: ResolverTypeWrapper<IContributes>;
2440
+ ContributionAction: ResolverTypeWrapper<IContributionAction>;
2163
2441
  ContributionActionItem: ResolverTypeWrapper<IContributionActionItem>;
2164
- ExtensionConfiguration: ResolverTypeWrapper<IExtensionConfiguration>;
2442
+ ContributionActionRun: ResolverTypeWrapper<IContributionActionRun>;
2443
+ ContributionActionRun_input: IContributionActionRun_input;
2444
+ ContributionAction_input: IContributionAction_input;
2445
+ ContributionActions: ResolverTypeWrapper<IContributionActions>;
2446
+ ContributionView: ResolverTypeWrapper<IContributionView>;
2447
+ ID: ResolverTypeWrapper<Scalars['ID']>;
2448
+ Date: ResolverTypeWrapper<Scalars['Date']>;
2449
+ DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
2165
2450
  Debugger: ResolverTypeWrapper<IDebugger>;
2166
- Grammar: ResolverTypeWrapper<IGrammar>;
2167
- ExtensionJSONValidation: ResolverTypeWrapper<IExtensionJSONValidation>;
2168
- KeyBinding: ResolverTypeWrapper<IKeyBinding>;
2169
- ExtensionLanguage: ResolverTypeWrapper<IExtensionLanguage>;
2170
- Menus: ResolverTypeWrapper<IMenus>;
2171
- MenuItemAction: ResolverTypeWrapper<IMenuItemAction>;
2172
- MenuItemActionContext: ResolverTypeWrapper<IMenuItemActionContext>;
2173
- MenuItemActionEditor: ResolverTypeWrapper<IMenuItemActionEditor>;
2174
- MenuItemActionEditorTitle: ResolverTypeWrapper<IMenuItemActionEditorTitle>;
2175
- MenuItemActionDebug: ResolverTypeWrapper<IMenuItemActionDebug>;
2176
- MenuItemActionScm: ResolverTypeWrapper<IMenuItemActionScm>;
2177
- MenuItemActionScmChange: ResolverTypeWrapper<IMenuItemActionScmChange>;
2178
- MenuItemActionView: ResolverTypeWrapper<IMenuItemActionView>;
2179
- Snippet: ResolverTypeWrapper<ISnippet>;
2180
- ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
2451
+ DocSitePage: ResolverTypeWrapper<IDocSitePage>;
2452
+ DocumentFilter: ResolverTypeWrapper<IDocumentFilter>;
2453
+ EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
2454
+ Engines: ResolverTypeWrapper<IEngines>;
2455
+ Environment: ResolverTypeWrapper<IEnvironment>;
2456
+ EnvironmentPayload: IEnvironmentPayload;
2457
+ EnvironmentSync: IEnvironmentSync;
2181
2458
  ExtensionColor: ResolverTypeWrapper<IExtensionColor>;
2182
2459
  ExtensionColorTypes: ResolverTypeWrapper<IExtensionColorTypes>;
2183
- Localization: ResolverTypeWrapper<ILocalization>;
2184
- LocalizationTranslation: ResolverTypeWrapper<ILocalizationTranslation>;
2460
+ ExtensionConfiguration: ResolverTypeWrapper<IExtensionConfiguration>;
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>;
2185
2469
  ExtensionManifestBugs: ResolverTypeWrapper<IExtensionManifestBugs>;
2186
2470
  ExtensionManifestRepository: ResolverTypeWrapper<IExtensionManifestRepository>;
2187
- ExtensionRelease: ResolverTypeWrapper<IExtensionRelease>;
2471
+ ExtensionPackageType: ResolverTypeWrapper<IExtensionPackageType>;
2188
2472
  ExtensionRegistry: ResolverTypeWrapper<IExtensionRegistry>;
2189
- RegistryExtensionConnection: ResolverTypeWrapper<IRegistryExtensionConnection>;
2190
- PageInfo: ResolverTypeWrapper<IPageInfo>;
2191
- RegistryPublisherConnection: ResolverTypeWrapper<IRegistryPublisherConnection>;
2192
- GalleryQuery: IGalleryQuery;
2193
- GalleryPager: ResolverTypeWrapper<IGalleryPager>;
2473
+ ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
2474
+ ExtensionRegistryPublishExtensionResult: ResolverTypeWrapper<IExtensionRegistryPublishExtensionResult>;
2475
+ ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
2476
+ ExtensionRelease: ResolverTypeWrapper<IExtensionRelease>;
2477
+ ExtensionType: IExtensionType;
2478
+ FieldError: ResolverTypeWrapper<IFieldError>;
2479
+ GalleryBanner: ResolverTypeWrapper<IGalleryBanner>;
2194
2480
  GalleryExtension: ResolverTypeWrapper<IGalleryExtension>;
2195
- ExtensionIdentifier: ResolverTypeWrapper<IExtensionIdentifier>;
2196
2481
  Float: ResolverTypeWrapper<Scalars['Float']>;
2197
- GalleryExtensionAssets: ResolverTypeWrapper<IGalleryExtensionAssets>;
2198
2482
  GalleryExtensionAsset: ResolverTypeWrapper<IGalleryExtensionAsset>;
2483
+ GalleryExtensionAssets: ResolverTypeWrapper<IGalleryExtensionAssets>;
2199
2484
  GalleryExtensionProperties: ResolverTypeWrapper<IGalleryExtensionProperties>;
2200
2485
  GalleryExtensionResources: ResolverTypeWrapper<IGalleryExtensionResources>;
2201
- InstalledExtension: ResolverTypeWrapper<IInstalledExtension>;
2202
- ExtensionInstance: ResolverTypeWrapper<IExtensionInstance>;
2203
- ProcessMonitoring: ResolverTypeWrapper<IProcessMonitoring>;
2204
- Notifications: ResolverTypeWrapper<INotifications>;
2205
- Notification: ResolverTypeWrapper<INotification>;
2206
- NotificationSeverity: INotificationSeverity;
2207
- NotificationActions: ResolverTypeWrapper<INotificationActions>;
2208
- ContributionAction: ResolverTypeWrapper<IContributionAction>;
2209
- TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
2210
- ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
2211
- TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
2212
- URI: ResolverTypeWrapper<Scalars['URI']>;
2213
- PositionInput: IPositionInput;
2214
- Notification_input: INotification_input;
2215
- NotificationMessage_input: INotificationMessage_input;
2216
- MessageLink_input: IMessageLink_input;
2217
- NotificationActions_input: INotificationActions_input;
2218
- ContributionAction_input: IContributionAction_input;
2219
- ContributionActionRun_input: IContributionActionRun_input;
2220
- Mutation: ResolverTypeWrapper<{}>;
2486
+ GalleryFilter: IGalleryFilter;
2487
+ GalleryPager: ResolverTypeWrapper<IGalleryPager>;
2488
+ GalleryQuery: IGalleryQuery;
2489
+ GeoLocation: ResolverTypeWrapper<IGeoLocation>;
2490
+ Grammar: ResolverTypeWrapper<IGrammar>;
2491
+ GraphqlCallType: IGraphqlCallType;
2492
+ Hover: never;
2221
2493
  IActivationRequest: IIActivationRequest;
2222
- TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
2223
- Observable: ResolverTypeWrapper<Scalars['Observable']>;
2224
- EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
2225
- PromptChoice_input: IPromptChoice_input;
2226
- PromptChoiceRun: IPromptChoiceRun;
2227
- PromptOptions_input: IPromptOptions_input;
2228
- PromptOptionsCancel: IPromptOptionsCancel;
2229
- OpenDocumentParamsInput: IOpenDocumentParamsInput;
2230
- OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
2231
- ExtensionRegistryPublishExtensionResult: ResolverTypeWrapper<IExtensionRegistryPublishExtensionResult>;
2232
- ContextMenu_input: IContextMenu_input;
2233
- Anchor_input: IAnchor_input;
2234
- MenuItem_input: IMenuItem_input;
2494
+ IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
2495
+ IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
2496
+ IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
2497
+ IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
2498
+ IModel: ResolverTypeWrapper<IIModel>;
2235
2499
  IModelInput: IIModelInput;
2236
- IWorkspaceRootInput: IIWorkspaceRootInput;
2237
- IViewComponentDataInput: IIViewComponentDataInput;
2238
- TextDocumentItemInput: ITextDocumentItemInput;
2239
- Subscription: ResolverTypeWrapper<{}>;
2240
- CommandType: ResolverTypeWrapper<ICommandType>;
2241
- CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
2242
- ArgsType: ResolverTypeWrapper<IArgsType>;
2243
- CommandsType: ResolverTypeWrapper<ICommandsType>;
2244
- RegistryEntry: ResolverTypeWrapper<IRegistryEntry>;
2245
- TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
2246
- DocumentFilter: ResolverTypeWrapper<IDocumentFilter>;
2500
+ IObservableResult: ResolverTypeWrapper<IIObservableResult>;
2501
+ IResourceUtilizationSettings: never;
2502
+ ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
2503
+ ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
2247
2504
  ITextDocumentIdentifier: IResolversTypes['TextDocumentIdentifier'] | IResolversTypes['TextDocumentItem'];
2248
- TextDocumentIdentifier: ResolverTypeWrapper<ITextDocumentIdentifier>;
2249
- ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
2250
- TextDocumentPositionParams: IResolversTypes['ProvideTextDocumentLocationSignature'];
2251
- Position: ResolverTypeWrapper<IPosition>;
2252
- Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
2253
- MarkupKind: IMarkupKind;
2254
- Range: ResolverTypeWrapper<IRange>;
2255
2505
  IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
2256
- TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
2506
+ IViewComponentDataInput: IIViewComponentDataInput;
2257
2507
  IWorkspaceRoot: ResolverTypeWrapper<IIWorkspaceRoot>;
2258
- IModel: ResolverTypeWrapper<IIModel>;
2259
- ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
2260
- IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
2261
- IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
2262
- IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
2263
- IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
2264
- ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
2265
- IObservableResult: ResolverTypeWrapper<IIObservableResult>;
2266
- Environment: ResolverTypeWrapper<IEnvironment>;
2267
- EnvironmentSync: IEnvironmentSync;
2268
- EnvironmentPayload: IEnvironmentPayload;
2269
- ViewContainer: ResolverTypeWrapper<IViewContainer>;
2270
- ContributionView: ResolverTypeWrapper<IContributionView>;
2271
- RangeInput: IRangeInput;
2272
- ExtensionType: IExtensionType;
2273
- BaseExtension: ResolverTypeWrapper<IBaseExtension>;
2274
- ExtensionConfigurationProperty: ResolverTypeWrapper<IExtensionConfigurationProperty>;
2275
- Contributes: ResolverTypeWrapper<IContributes>;
2276
- GalleryFilter: IGalleryFilter;
2508
+ IWorkspaceRootInput: IIWorkspaceRootInput;
2509
+ InstalledExtension: ResolverTypeWrapper<IInstalledExtension>;
2510
+ JSON: ResolverTypeWrapper<Scalars['JSON']>;
2511
+ JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
2512
+ KeyBinding: ResolverTypeWrapper<IKeyBinding>;
2513
+ Localization: ResolverTypeWrapper<ILocalization>;
2514
+ LocalizationTranslation: ResolverTypeWrapper<ILocalizationTranslation>;
2515
+ Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
2516
+ MarkupContent: never;
2517
+ MarkupKind: IMarkupKind;
2277
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>;
2278
2530
  MessageLink: ResolverTypeWrapper<IMessageLink>;
2279
- NotificationChangeType: INotificationChangeType;
2531
+ MessageLink_input: IMessageLink_input;
2532
+ MoleculerServiceName: IMoleculerServiceName;
2533
+ Mutation: ResolverTypeWrapper<{}>;
2534
+ Node: IResolversTypes['RegistryExtension'];
2535
+ Notification: ResolverTypeWrapper<INotification>;
2536
+ NotificationActions: ResolverTypeWrapper<INotificationActions>;
2537
+ NotificationActions_input: INotificationActions_input;
2280
2538
  NotificationChangeEvent: ResolverTypeWrapper<INotificationChangeEvent>;
2281
- NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
2539
+ NotificationChangeType: INotificationChangeType;
2282
2540
  NotificationMessage: ResolverTypeWrapper<INotificationMessage>;
2541
+ NotificationMessage_input: INotificationMessage_input;
2542
+ NotificationSeverity: INotificationSeverity;
2543
+ NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
2544
+ NotificationViewItemLabelKind: INotificationViewItemLabelKind;
2283
2545
  NotificationViewItemProgress: ResolverTypeWrapper<INotificationViewItemProgress>;
2284
2546
  NotificationViewItemProgressState: ResolverTypeWrapper<INotificationViewItemProgressState>;
2285
- NotificationViewItemLabelKind: INotificationViewItemLabelKind;
2286
- ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
2287
- ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
2288
- Date: ResolverTypeWrapper<Scalars['Date']>;
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;
2560
+ ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
2561
+ ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
2562
+ Query: ResolverTypeWrapper<{}>;
2563
+ Range: ResolverTypeWrapper<IRange>;
2564
+ RangeInput: IRangeInput;
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;
2579
+ TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
2580
+ TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
2581
+ ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
2289
2582
  Time: ResolverTypeWrapper<Scalars['Time']>;
2290
- DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
2583
+ URI: ResolverTypeWrapper<Scalars['URI']>;
2291
2584
  URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
2292
- JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
2293
- CacheControlScope: ICacheControlScope;
2294
- FieldError: ResolverTypeWrapper<IFieldError>;
2295
- AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
2296
- MoleculerServiceName: IMoleculerServiceName;
2585
+ ViewContainer: ResolverTypeWrapper<IViewContainer>;
2297
2586
  };
2298
2587
  /** Mapping between all available schema types and the resolvers parents */
2299
2588
  export declare type IResolversParentTypes = {
2300
- Query: {};
2301
- ContextMenu: IContextMenu;
2302
- String: Scalars['String'];
2303
- Boolean: Scalars['Boolean'];
2304
- Anchor: IAnchor;
2589
+ AdminIdeSettings: IAdminIdeSettings;
2305
2590
  Int: Scalars['Int'];
2306
- MenuItem: IMenuItem;
2307
- ContributionActionRun: IContributionActionRun;
2308
- GraphqlCallType: IGraphqlCallType;
2591
+ Anchor: IAnchor;
2592
+ Anchor_input: IAnchor_input;
2309
2593
  AnyObject: Scalars['AnyObject'];
2310
- DocSitePage: IDocSitePage;
2311
- RegistryExtension: IRegistryExtension;
2312
- Node: IResolversParentTypes['RegistryExtension'];
2313
- ID: Scalars['ID'];
2314
- RegistryPublisher: IRegistryPublisher;
2315
- ExtensionManifest: IExtensionManifest;
2316
- JSON: Scalars['JSON'];
2317
- ExtensionKind: IExtensionKind;
2594
+ ArgsType: IArgsType;
2595
+ String: Scalars['String'];
2318
2596
  Assets: IAssets;
2319
- Scripts: IScripts;
2320
- Bundles: IBundles;
2321
- ExtensionPackageType: IExtensionPackageType;
2322
- Engines: IEngines;
2323
2597
  Author: IAuthor;
2324
- GalleryBanner: IGalleryBanner;
2325
- ExtensionContributions: IExtensionContributions;
2326
- ContributionActions: IContributionActions;
2598
+ BaseExtension: IBaseExtension;
2599
+ Bundles: IBundles;
2600
+ CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
2601
+ CommandType: ICommandType;
2602
+ CommandsType: ICommandsType;
2603
+ ContextMenu: IContextMenu;
2604
+ Boolean: Scalars['Boolean'];
2605
+ ContextMenu_input: IContextMenu_input;
2606
+ Contributes: IContributes;
2607
+ ContributionAction: IContributionAction;
2327
2608
  ContributionActionItem: IContributionActionItem;
2328
- ExtensionConfiguration: IExtensionConfiguration;
2609
+ ContributionActionRun: IContributionActionRun;
2610
+ ContributionActionRun_input: IContributionActionRun_input;
2611
+ ContributionAction_input: IContributionAction_input;
2612
+ ContributionActions: IContributionActions;
2613
+ ContributionView: IContributionView;
2614
+ ID: Scalars['ID'];
2615
+ Date: Scalars['Date'];
2616
+ DateTime: Scalars['DateTime'];
2329
2617
  Debugger: IDebugger;
2330
- Grammar: IGrammar;
2331
- ExtensionJSONValidation: IExtensionJSONValidation;
2332
- KeyBinding: IKeyBinding;
2333
- ExtensionLanguage: IExtensionLanguage;
2334
- Menus: IMenus;
2335
- MenuItemAction: IMenuItemAction;
2336
- MenuItemActionContext: IMenuItemActionContext;
2337
- MenuItemActionEditor: IMenuItemActionEditor;
2338
- MenuItemActionEditorTitle: IMenuItemActionEditorTitle;
2339
- MenuItemActionDebug: IMenuItemActionDebug;
2340
- MenuItemActionScm: IMenuItemActionScm;
2341
- MenuItemActionScmChange: IMenuItemActionScmChange;
2342
- MenuItemActionView: IMenuItemActionView;
2343
- Snippet: ISnippet;
2344
- ThemeLabel: IThemeLabel;
2618
+ DocSitePage: IDocSitePage;
2619
+ DocumentFilter: IDocumentFilter;
2620
+ EmptyResponse: IEmptyResponse;
2621
+ Engines: IEngines;
2622
+ Environment: IEnvironment;
2623
+ EnvironmentPayload: IEnvironmentPayload;
2345
2624
  ExtensionColor: IExtensionColor;
2346
2625
  ExtensionColorTypes: IExtensionColorTypes;
2347
- Localization: ILocalization;
2348
- LocalizationTranslation: ILocalizationTranslation;
2626
+ ExtensionConfiguration: IExtensionConfiguration;
2627
+ ExtensionConfigurationProperty: IExtensionConfigurationProperty;
2628
+ ExtensionContributions: IExtensionContributions;
2629
+ ExtensionIdentifier: IExtensionIdentifier;
2630
+ ExtensionInstance: IExtensionInstance;
2631
+ ExtensionJSONValidation: IExtensionJSONValidation;
2632
+ ExtensionLanguage: IExtensionLanguage;
2633
+ ExtensionManifest: IExtensionManifest;
2349
2634
  ExtensionManifestBugs: IExtensionManifestBugs;
2350
2635
  ExtensionManifestRepository: IExtensionManifestRepository;
2351
- ExtensionRelease: IExtensionRelease;
2636
+ ExtensionPackageType: IExtensionPackageType;
2352
2637
  ExtensionRegistry: IExtensionRegistry;
2353
- RegistryExtensionConnection: IRegistryExtensionConnection;
2354
- PageInfo: IPageInfo;
2355
- RegistryPublisherConnection: IRegistryPublisherConnection;
2356
- GalleryQuery: IGalleryQuery;
2357
- GalleryPager: IGalleryPager;
2638
+ ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
2639
+ ExtensionRegistryPublishExtensionResult: IExtensionRegistryPublishExtensionResult;
2640
+ ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
2641
+ ExtensionRelease: IExtensionRelease;
2642
+ FieldError: IFieldError;
2643
+ GalleryBanner: IGalleryBanner;
2358
2644
  GalleryExtension: IGalleryExtension;
2359
- ExtensionIdentifier: IExtensionIdentifier;
2360
2645
  Float: Scalars['Float'];
2361
- GalleryExtensionAssets: IGalleryExtensionAssets;
2362
2646
  GalleryExtensionAsset: IGalleryExtensionAsset;
2647
+ GalleryExtensionAssets: IGalleryExtensionAssets;
2363
2648
  GalleryExtensionProperties: IGalleryExtensionProperties;
2364
2649
  GalleryExtensionResources: IGalleryExtensionResources;
2365
- InstalledExtension: IInstalledExtension;
2366
- ExtensionInstance: IExtensionInstance;
2367
- ProcessMonitoring: IProcessMonitoring;
2368
- Notifications: INotifications;
2369
- Notification: INotification;
2370
- NotificationSeverity: INotificationSeverity;
2371
- NotificationActions: INotificationActions;
2372
- ContributionAction: IContributionAction;
2373
- TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
2374
- ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
2375
- TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
2376
- URI: Scalars['URI'];
2377
- PositionInput: IPositionInput;
2378
- Notification_input: INotification_input;
2379
- NotificationMessage_input: INotificationMessage_input;
2380
- MessageLink_input: IMessageLink_input;
2381
- NotificationActions_input: INotificationActions_input;
2382
- ContributionAction_input: IContributionAction_input;
2383
- ContributionActionRun_input: IContributionActionRun_input;
2384
- Mutation: {};
2650
+ GalleryFilter: IGalleryFilter;
2651
+ GalleryPager: IGalleryPager;
2652
+ GalleryQuery: IGalleryQuery;
2653
+ GeoLocation: IGeoLocation;
2654
+ Grammar: IGrammar;
2655
+ Hover: never;
2385
2656
  IActivationRequest: IIActivationRequest;
2386
- TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
2387
- Observable: Scalars['Observable'];
2388
- EmptyResponse: IEmptyResponse;
2389
- PromptChoice_input: IPromptChoice_input;
2390
- PromptChoiceRun: IPromptChoiceRun;
2391
- PromptOptions_input: IPromptOptions_input;
2392
- PromptOptionsCancel: IPromptOptionsCancel;
2393
- OpenDocumentParamsInput: IOpenDocumentParamsInput;
2394
- OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
2395
- ExtensionRegistryPublishExtensionResult: IExtensionRegistryPublishExtensionResult;
2396
- ContextMenu_input: IContextMenu_input;
2397
- Anchor_input: IAnchor_input;
2398
- MenuItem_input: IMenuItem_input;
2657
+ IBehaviorSubject: IIBehaviorSubject;
2658
+ IBehaviorSubjectValue: IIBehaviorSubjectValue;
2659
+ IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
2660
+ IDocumentSelector: IIDocumentSelector;
2661
+ IModel: IIModel;
2399
2662
  IModelInput: IIModelInput;
2400
- IWorkspaceRootInput: IIWorkspaceRootInput;
2401
- IViewComponentDataInput: IIViewComponentDataInput;
2402
- TextDocumentItemInput: ITextDocumentItemInput;
2403
- Subscription: {};
2404
- CommandType: ICommandType;
2405
- CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
2406
- ArgsType: IArgsType;
2407
- CommandsType: ICommandsType;
2408
- RegistryEntry: IRegistryEntry;
2409
- TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
2410
- DocumentFilter: IDocumentFilter;
2663
+ IObservableResult: IIObservableResult;
2664
+ IResourceUtilizationSettings: never;
2665
+ ISourceAnonymousSubject: IISourceAnonymousSubject;
2666
+ ISwitchMapOperator: IISwitchMapOperator;
2411
2667
  ITextDocumentIdentifier: IResolversParentTypes['TextDocumentIdentifier'] | IResolversParentTypes['TextDocumentItem'];
2412
- TextDocumentIdentifier: ITextDocumentIdentifier;
2413
- ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
2414
- TextDocumentPositionParams: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2415
- Position: IPosition;
2416
- Location: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2417
- MarkupKind: IMarkupKind;
2418
- Range: IRange;
2419
2668
  IViewComponentData: IIViewComponentData;
2420
- TextDocumentItem: ITextDocumentItem;
2669
+ IViewComponentDataInput: IIViewComponentDataInput;
2421
2670
  IWorkspaceRoot: IIWorkspaceRoot;
2422
- IModel: IIModel;
2423
- ISwitchMapOperator: IISwitchMapOperator;
2424
- IDocumentSelector: IIDocumentSelector;
2425
- IBehaviorSubjectValue: IIBehaviorSubjectValue;
2426
- IBehaviorSubject: IIBehaviorSubject;
2427
- IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
2428
- ISourceAnonymousSubject: IISourceAnonymousSubject;
2429
- IObservableResult: IIObservableResult;
2430
- Environment: IEnvironment;
2431
- EnvironmentSync: IEnvironmentSync;
2432
- EnvironmentPayload: IEnvironmentPayload;
2433
- ViewContainer: IViewContainer;
2434
- ContributionView: IContributionView;
2435
- RangeInput: IRangeInput;
2436
- ExtensionType: IExtensionType;
2437
- BaseExtension: IBaseExtension;
2438
- ExtensionConfigurationProperty: IExtensionConfigurationProperty;
2439
- Contributes: IContributes;
2440
- GalleryFilter: IGalleryFilter;
2441
- MenuId: IMenuId;
2671
+ IWorkspaceRootInput: IIWorkspaceRootInput;
2672
+ InstalledExtension: IInstalledExtension;
2673
+ JSON: Scalars['JSON'];
2674
+ JSONObject: Scalars['JSONObject'];
2675
+ KeyBinding: IKeyBinding;
2676
+ Localization: ILocalization;
2677
+ LocalizationTranslation: ILocalizationTranslation;
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;
2442
2691
  MessageLink: IMessageLink;
2443
- NotificationChangeType: INotificationChangeType;
2692
+ MessageLink_input: IMessageLink_input;
2693
+ Mutation: {};
2694
+ Node: IResolversParentTypes['RegistryExtension'];
2695
+ Notification: INotification;
2696
+ NotificationActions: INotificationActions;
2697
+ NotificationActions_input: INotificationActions_input;
2444
2698
  NotificationChangeEvent: INotificationChangeEvent;
2445
- NotificationViewItem: INotificationViewItem;
2446
2699
  NotificationMessage: INotificationMessage;
2700
+ NotificationMessage_input: INotificationMessage_input;
2701
+ NotificationViewItem: INotificationViewItem;
2447
2702
  NotificationViewItemProgress: INotificationViewItemProgress;
2448
2703
  NotificationViewItemProgressState: INotificationViewItemProgressState;
2449
- NotificationViewItemLabelKind: INotificationViewItemLabelKind;
2450
- ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
2451
- ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
2452
- Date: Scalars['Date'];
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;
2717
+ ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
2718
+ ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
2719
+ Query: {};
2720
+ Range: IRange;
2721
+ RangeInput: IRangeInput;
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;
2736
+ TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
2737
+ TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
2738
+ ThemeLabel: IThemeLabel;
2453
2739
  Time: Scalars['Time'];
2454
- DateTime: Scalars['DateTime'];
2740
+ URI: Scalars['URI'];
2455
2741
  URIInput: Scalars['URIInput'];
2456
- JSONObject: Scalars['JSONObject'];
2457
- CacheControlScope: ICacheControlScope;
2458
- FieldError: IFieldError;
2459
- AdminIdeSettings: IAdminIdeSettings;
2460
- MoleculerServiceName: IMoleculerServiceName;
2742
+ ViewContainer: IViewContainer;
2461
2743
  };
2462
2744
  export declare type IcacheControlDirectiveArgs = {
2463
2745
  maxAge?: Maybe<Scalars['Int']>;
@@ -2466,14 +2748,14 @@ export declare type IcacheControlDirectiveArgs = {
2466
2748
  export declare type IcacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IcacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
2467
2749
  export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
2468
2750
  dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2469
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2751
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2470
2752
  };
2471
2753
  export declare type IAnchorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Anchor'] = IResolversParentTypes['Anchor']> = {
2472
2754
  x?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2473
2755
  y?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2474
2756
  height?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2475
2757
  width?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2476
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2758
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2477
2759
  };
2478
2760
  export interface IAnyObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['AnyObject'], any> {
2479
2761
  name: 'AnyObject';
@@ -2482,16 +2764,16 @@ export declare type IArgsTypeResolvers<ContextType = MyContext, ParentType exten
2482
2764
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2483
2765
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2484
2766
  constraint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2485
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2767
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2486
2768
  };
2487
2769
  export declare type IAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Assets'] = IResolversParentTypes['Assets']> = {
2488
2770
  Type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2489
2771
  Content?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2490
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2772
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2491
2773
  };
2492
2774
  export declare type IAuthorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Author'] = IResolversParentTypes['Author']> = {
2493
2775
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2494
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2776
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2495
2777
  };
2496
2778
  export declare type IBaseExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseExtension'] = IResolversParentTypes['BaseExtension']> = {
2497
2779
  type?: Resolver<Maybe<IResolversTypes['ExtensionType']>, ParentType, ContextType>;
@@ -2499,40 +2781,40 @@ export declare type IBaseExtensionResolvers<ContextType = MyContext, ParentType
2499
2781
  galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2500
2782
  manifest?: Resolver<Maybe<IResolversTypes['ExtensionManifest']>, ParentType, ContextType>;
2501
2783
  location?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2502
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2784
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2503
2785
  };
2504
2786
  export declare type IBundlesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Bundles'] = IResolversParentTypes['Bundles']> = {
2505
2787
  server?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2506
2788
  browser?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2507
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2789
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2508
2790
  };
2509
2791
  export declare type ICommandHandlerDescriptionTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandHandlerDescriptionType'] = IResolversParentTypes['CommandHandlerDescriptionType']> = {
2510
2792
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2511
2793
  args?: Resolver<Maybe<Array<Maybe<IResolversTypes['ArgsType']>>>, ParentType, ContextType>;
2512
2794
  returns?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2513
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2514
- };
2515
- export declare type ICommandsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandsType'] = IResolversParentTypes['CommandsType']> = {
2516
- commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['CommandType']>>>, ParentType, ContextType>;
2517
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2795
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2518
2796
  };
2519
2797
  export declare type ICommandTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandType'] = IResolversParentTypes['CommandType']> = {
2520
2798
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2521
2799
  handler?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2522
2800
  description?: Resolver<Maybe<IResolversTypes['CommandHandlerDescriptionType']>, ParentType, ContextType>;
2523
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2801
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
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>;
2524
2806
  };
2525
2807
  export declare type IContextMenuResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContextMenu'] = IResolversParentTypes['ContextMenu']> = {
2526
2808
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2527
2809
  isShow?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2528
2810
  anchor?: Resolver<Maybe<IResolversTypes['Anchor']>, ParentType, ContextType>;
2529
2811
  menuItems?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItem']>>>, ParentType, ContextType>;
2530
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2812
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2531
2813
  };
2532
2814
  export declare type IContributesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Contributes'] = IResolversParentTypes['Contributes']> = {
2533
2815
  menus?: Resolver<Maybe<IResolversTypes['Menus']>, ParentType, ContextType>;
2534
2816
  actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
2535
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2817
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2536
2818
  };
2537
2819
  export declare type IContributionActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionAction'] = IResolversParentTypes['ContributionAction']> = {
2538
2820
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2543,18 +2825,18 @@ export declare type IContributionActionResolvers<ContextType = MyContext, Parent
2543
2825
  checked?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2544
2826
  radio?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2545
2827
  run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
2546
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2828
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2547
2829
  };
2548
2830
  export declare type IContributionActionItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionItem'] = IResolversParentTypes['ContributionActionItem']> = {
2549
2831
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2550
2832
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2551
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2833
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2552
2834
  };
2553
2835
  export declare type IContributionActionRunResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionRun'] = IResolversParentTypes['ContributionActionRun']> = {
2554
2836
  type?: Resolver<Maybe<IResolversTypes['GraphqlCallType']>, ParentType, ContextType>;
2555
2837
  document?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2556
2838
  variables?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2557
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2839
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2558
2840
  };
2559
2841
  export declare type IContributionActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActions'] = IResolversParentTypes['ContributionActions']> = {
2560
2842
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2562,12 +2844,12 @@ export declare type IContributionActionsResolvers<ContextType = MyContext, Paren
2562
2844
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2563
2845
  category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2564
2846
  actionItem?: Resolver<Maybe<IResolversTypes['ContributionActionItem']>, ParentType, ContextType>;
2565
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2847
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2566
2848
  };
2567
2849
  export declare type IContributionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionView'] = IResolversParentTypes['ContributionView']> = {
2568
2850
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2569
2851
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2570
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2852
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2571
2853
  };
2572
2854
  export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
2573
2855
  name: 'Date';
@@ -2579,29 +2861,29 @@ export declare type IDebuggerResolvers<ContextType = MyContext, ParentType exten
2579
2861
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2580
2862
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2581
2863
  runtime?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2582
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2864
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2583
2865
  };
2584
2866
  export declare type IDocSitePageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocSitePage'] = IResolversParentTypes['DocSitePage']> = {
2585
2867
  title?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2586
2868
  contentHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2587
2869
  indexHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2588
2870
  filePath?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2589
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2871
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2590
2872
  };
2591
2873
  export declare type IDocumentFilterResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocumentFilter'] = IResolversParentTypes['DocumentFilter']> = {
2592
2874
  language?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2593
2875
  schema?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2594
2876
  pattern?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2595
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2877
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2596
2878
  };
2597
2879
  export declare type IEmptyResponseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['EmptyResponse'] = IResolversParentTypes['EmptyResponse']> = {
2598
2880
  alwaysNil?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2599
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2881
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2600
2882
  };
2601
2883
  export declare type IEnginesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Engines'] = IResolversParentTypes['Engines']> = {
2602
2884
  node?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2603
2885
  vscode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2604
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2886
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2605
2887
  };
2606
2888
  export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Environment'] = IResolversParentTypes['Environment']> = {
2607
2889
  extHostLogsPath?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
@@ -2620,29 +2902,29 @@ export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType ex
2620
2902
  webviewCspSource?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2621
2903
  webviewExternalEndpoint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2622
2904
  webviewResourceRoot?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2623
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2905
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2624
2906
  };
2625
2907
  export declare type IExtensionColorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColor'] = IResolversParentTypes['ExtensionColor']> = {
2626
2908
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2627
2909
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2628
2910
  defaults?: Resolver<Maybe<IResolversTypes['ExtensionColorTypes']>, ParentType, ContextType>;
2629
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2911
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2630
2912
  };
2631
2913
  export declare type IExtensionColorTypesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColorTypes'] = IResolversParentTypes['ExtensionColorTypes']> = {
2632
2914
  light?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2633
2915
  dark?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2634
2916
  highContrast?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2635
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2917
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2636
2918
  };
2637
2919
  export declare type IExtensionConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfiguration'] = IResolversParentTypes['ExtensionConfiguration']> = {
2638
2920
  properties?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2639
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2921
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2640
2922
  };
2641
2923
  export declare type IExtensionConfigurationPropertyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfigurationProperty'] = IResolversParentTypes['ExtensionConfigurationProperty']> = {
2642
2924
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2643
2925
  type?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2644
2926
  defaults?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2645
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2927
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2646
2928
  };
2647
2929
  export declare type IExtensionContributionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionContributions'] = IResolversParentTypes['ExtensionContributions']> = {
2648
2930
  actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
@@ -2661,12 +2943,12 @@ export declare type IExtensionContributionsResolvers<ContextType = MyContext, Pa
2661
2943
  views?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2662
2944
  colors?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionColor']>>>, ParentType, ContextType>;
2663
2945
  localizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Localization']>>>, ParentType, ContextType>;
2664
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2946
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2665
2947
  };
2666
2948
  export declare type IExtensionIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionIdentifier'] = IResolversParentTypes['ExtensionIdentifier']> = {
2667
2949
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2668
2950
  uuid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2669
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2951
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2670
2952
  };
2671
2953
  export declare type IExtensionInstanceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionInstance'] = IResolversParentTypes['ExtensionInstance']> = {
2672
2954
  pid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2676,18 +2958,18 @@ export declare type IExtensionInstanceResolvers<ContextType = MyContext, ParentT
2676
2958
  status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2677
2959
  extensionID?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2678
2960
  monit?: Resolver<Maybe<IResolversTypes['ProcessMonitoring']>, ParentType, ContextType>;
2679
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2961
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2680
2962
  };
2681
2963
  export declare type IExtensionJSONValidationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionJSONValidation'] = IResolversParentTypes['ExtensionJSONValidation']> = {
2682
2964
  fileMatch?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2683
2965
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2684
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2966
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2685
2967
  };
2686
2968
  export declare type IExtensionLanguageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionLanguage'] = IResolversParentTypes['ExtensionLanguage']> = {
2687
2969
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2688
2970
  extensions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2689
2971
  aliases?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2690
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2972
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2691
2973
  };
2692
2974
  export declare type IExtensionManifestResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifest'] = IResolversParentTypes['ExtensionManifest']> = {
2693
2975
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2730,21 +3012,21 @@ export declare type IExtensionManifestResolvers<ContextType = MyContext, ParentT
2730
3012
  repository?: Resolver<Maybe<IResolversTypes['ExtensionManifestRepository']>, ParentType, ContextType>;
2731
3013
  enableProposedApi?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2732
3014
  api?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2733
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3015
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2734
3016
  };
2735
3017
  export declare type IExtensionManifestBugsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestBugs'] = IResolversParentTypes['ExtensionManifestBugs']> = {
2736
3018
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2737
3019
  email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2738
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3020
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2739
3021
  };
2740
3022
  export declare type IExtensionManifestRepositoryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestRepository'] = IResolversParentTypes['ExtensionManifestRepository']> = {
2741
3023
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2742
3024
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2743
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3025
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2744
3026
  };
2745
3027
  export declare type IExtensionPackageTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionPackageType'] = IResolversParentTypes['ExtensionPackageType']> = {
2746
3028
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2747
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3029
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2748
3030
  };
2749
3031
  export declare type IExtensionRegistryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistry'] = IResolversParentTypes['ExtensionRegistry']> = {
2750
3032
  extension?: Resolver<Maybe<IResolversTypes['RegistryExtension']>, ParentType, ContextType, RequireFields<IExtensionRegistryextensionArgs, 'extensionID'>>;
@@ -2753,19 +3035,19 @@ export declare type IExtensionRegistryResolvers<ContextType = MyContext, ParentT
2753
3035
  publishers?: Resolver<IResolversTypes['RegistryPublisherConnection'], ParentType, ContextType, RequireFields<IExtensionRegistrypublishersArgs, never>>;
2754
3036
  viewerPublishers?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
2755
3037
  localExtensionIDPrefix?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2756
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3038
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2757
3039
  };
2758
3040
  export declare type IExtensionRegistryCreateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryCreateExtensionResult'] = IResolversParentTypes['ExtensionRegistryCreateExtensionResult']> = {
2759
3041
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2760
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3042
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2761
3043
  };
2762
3044
  export declare type IExtensionRegistryPublishExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryPublishExtensionResult'] = IResolversParentTypes['ExtensionRegistryPublishExtensionResult']> = {
2763
3045
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2764
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3046
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2765
3047
  };
2766
3048
  export declare type IExtensionRegistryUpdateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryUpdateExtensionResult'] = IResolversParentTypes['ExtensionRegistryUpdateExtensionResult']> = {
2767
3049
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2768
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3050
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2769
3051
  };
2770
3052
  export declare type IExtensionReleaseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRelease'] = IResolversParentTypes['ExtensionRelease']> = {
2771
3053
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
@@ -2778,17 +3060,17 @@ export declare type IExtensionReleaseResolvers<ContextType = MyContext, ParentTy
2778
3060
  creatorUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2779
3061
  releaseVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2780
3062
  activationEvents?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2781
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3063
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2782
3064
  };
2783
3065
  export declare type IFieldErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['FieldError'] = IResolversParentTypes['FieldError']> = {
2784
3066
  field?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2785
3067
  message?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2786
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3068
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2787
3069
  };
2788
3070
  export declare type IGalleryBannerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryBanner'] = IResolversParentTypes['GalleryBanner']> = {
2789
3071
  color?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2790
3072
  theme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2791
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3073
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2792
3074
  };
2793
3075
  export declare type IGalleryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtension'] = IResolversParentTypes['GalleryExtension']> = {
2794
3076
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2809,12 +3091,12 @@ export declare type IGalleryExtensionResolvers<ContextType = MyContext, ParentTy
2809
3091
  properties?: Resolver<Maybe<IResolversTypes['GalleryExtensionProperties']>, ParentType, ContextType>;
2810
3092
  preview?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2811
3093
  resources?: Resolver<Maybe<IResolversTypes['GalleryExtensionResources']>, ParentType, ContextType>;
2812
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3094
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2813
3095
  };
2814
3096
  export declare type IGalleryExtensionAssetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAsset'] = IResolversParentTypes['GalleryExtensionAsset']> = {
2815
3097
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2816
3098
  fallbackUri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2817
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3099
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2818
3100
  };
2819
3101
  export declare type IGalleryExtensionAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAssets'] = IResolversParentTypes['GalleryExtensionAssets']> = {
2820
3102
  manifest?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
@@ -2825,14 +3107,14 @@ export declare type IGalleryExtensionAssetsResolvers<ContextType = MyContext, Pa
2825
3107
  license?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
2826
3108
  repository?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
2827
3109
  coreTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2828
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3110
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2829
3111
  };
2830
3112
  export declare type IGalleryExtensionPropertiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionProperties'] = IResolversParentTypes['GalleryExtensionProperties']> = {
2831
3113
  engine?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2832
3114
  dependencies?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2833
3115
  extensionPack?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2834
3116
  localizedLanguages?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2835
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3117
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2836
3118
  };
2837
3119
  export declare type IGalleryExtensionResourcesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionResources'] = IResolversParentTypes['GalleryExtensionResources']> = {
2838
3120
  manifest?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2842,18 +3124,27 @@ export declare type IGalleryExtensionResourcesResolvers<ContextType = MyContext,
2842
3124
  icon?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2843
3125
  license?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2844
3126
  repository?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2845
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3127
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2846
3128
  };
2847
3129
  export declare type IGalleryPagerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryPager'] = IResolversParentTypes['GalleryPager']> = {
2848
3130
  page?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2849
3131
  total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2850
3132
  pageSize?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2851
3133
  firstPage?: Resolver<Maybe<Array<Maybe<IResolversTypes['GalleryExtension']>>>, ParentType, ContextType>;
2852
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3134
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3135
+ };
3136
+ export declare type IGeoLocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
3137
+ coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
3138
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2853
3139
  };
2854
3140
  export declare type IGrammarResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Grammar'] = IResolversParentTypes['Grammar']> = {
2855
3141
  language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2856
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3142
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3143
+ };
3144
+ export declare type IHoverResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Hover'] = IResolversParentTypes['Hover']> = {
3145
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3146
+ contents?: Resolver<Maybe<IResolversTypes['MarkupContent']>, ParentType, ContextType>;
3147
+ range?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
2857
3148
  };
2858
3149
  export declare type IIBehaviorSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubject'] = IResolversParentTypes['IBehaviorSubject']> = {
2859
3150
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2863,12 +3154,12 @@ export declare type IIBehaviorSubjectResolvers<ContextType = MyContext, ParentTy
2863
3154
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2864
3155
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2865
3156
  value?: Resolver<Maybe<Array<Maybe<IResolversTypes['IBehaviorSubjectValue']>>>, ParentType, ContextType>;
2866
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3157
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2867
3158
  };
2868
3159
  export declare type IIBehaviorSubjectValueResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubjectValue'] = IResolversParentTypes['IBehaviorSubjectValue']> = {
2869
3160
  provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2870
3161
  registrationOptions?: Resolver<Maybe<IResolversTypes['IDocumentSelector']>, ParentType, ContextType>;
2871
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3162
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2872
3163
  };
2873
3164
  export declare type IIDestinationAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDestinationAnonymousSubject'] = IResolversParentTypes['IDestinationAnonymousSubject']> = {
2874
3165
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2880,22 +3171,16 @@ export declare type IIDestinationAnonymousSubjectResolvers<ContextType = MyConte
2880
3171
  source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
2881
3172
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2882
3173
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2883
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3174
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2884
3175
  };
2885
3176
  export declare type IIDocumentSelectorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDocumentSelector'] = IResolversParentTypes['IDocumentSelector']> = {
2886
3177
  documentSelector?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2887
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3178
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2888
3179
  };
2889
3180
  export declare type IIModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IModel'] = IResolversParentTypes['IModel']> = {
2890
3181
  roots?: Resolver<Maybe<IResolversTypes['IWorkspaceRoot']>, ParentType, ContextType>;
2891
3182
  visibleViewComponents?: Resolver<Maybe<Array<Maybe<IResolversTypes['IViewComponentData']>>>, ParentType, ContextType>;
2892
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2893
- };
2894
- export declare type IInstalledExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InstalledExtension'] = IResolversParentTypes['InstalledExtension']> = {
2895
- extension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType>;
2896
- identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2897
- galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2898
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3183
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2899
3184
  };
2900
3185
  export declare type IIObservableResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IObservableResult'] = IResolversParentTypes['IObservableResult']> = {
2901
3186
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2907,7 +3192,12 @@ export declare type IIObservableResultResolvers<ContextType = MyContext, ParentT
2907
3192
  source?: Resolver<Maybe<IResolversTypes['ISourceAnonymousSubject']>, ParentType, ContextType>;
2908
3193
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2909
3194
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2910
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3195
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3196
+ };
3197
+ export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
3198
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3199
+ subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3200
+ adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2911
3201
  };
2912
3202
  export declare type IISourceAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISourceAnonymousSubject'] = IResolversParentTypes['ISourceAnonymousSubject']> = {
2913
3203
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2919,11 +3209,11 @@ export declare type IISourceAnonymousSubjectResolvers<ContextType = MyContext, P
2919
3209
  source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
2920
3210
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2921
3211
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2922
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3212
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2923
3213
  };
2924
3214
  export declare type IISwitchMapOperatorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISwitchMapOperator'] = IResolversParentTypes['ISwitchMapOperator']> = {
2925
3215
  project?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2926
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3216
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2927
3217
  };
2928
3218
  export declare type IITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITextDocumentIdentifier'] = IResolversParentTypes['ITextDocumentIdentifier']> = {
2929
3219
  __resolveType: TypeResolveFn<'TextDocumentIdentifier' | 'TextDocumentItem', ParentType, ContextType>;
@@ -2934,11 +3224,17 @@ export declare type IIViewComponentDataResolvers<ContextType = MyContext, Parent
2934
3224
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2935
3225
  item?: Resolver<Maybe<IResolversTypes['TextDocumentItem']>, ParentType, ContextType>;
2936
3226
  isActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2937
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3227
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2938
3228
  };
2939
3229
  export declare type IIWorkspaceRootResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IWorkspaceRoot'] = IResolversParentTypes['IWorkspaceRoot']> = {
2940
3230
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2941
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3231
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
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>;
2942
3238
  };
2943
3239
  export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
2944
3240
  name: 'JSON';
@@ -2953,7 +3249,7 @@ export declare type IKeyBindingResolvers<ContextType = MyContext, ParentType ext
2953
3249
  mac?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2954
3250
  linux?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2955
3251
  win?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2956
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3252
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2957
3253
  };
2958
3254
  export declare type ILocalizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Localization'] = IResolversParentTypes['Localization']> = {
2959
3255
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2961,12 +3257,12 @@ export declare type ILocalizationResolvers<ContextType = MyContext, ParentType e
2961
3257
  localizedLanguageName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2962
3258
  translations?: Resolver<Maybe<Array<Maybe<IResolversTypes['LocalizationTranslation']>>>, ParentType, ContextType>;
2963
3259
  minimalTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2964
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3260
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2965
3261
  };
2966
3262
  export declare type ILocalizationTranslationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LocalizationTranslation'] = IResolversParentTypes['LocalizationTranslation']> = {
2967
3263
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2968
3264
  path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2969
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3265
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2970
3266
  };
2971
3267
  export declare type ILocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Location'] = IResolversParentTypes['Location']> = {
2972
3268
  __resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
@@ -2975,52 +3271,57 @@ export declare type ILocationResolvers<ContextType = MyContext, ParentType exten
2975
3271
  range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
2976
3272
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2977
3273
  };
3274
+ export declare type IMarkupContentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MarkupContent'] = IResolversParentTypes['MarkupContent']> = {
3275
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3276
+ value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3277
+ kind?: Resolver<Maybe<IResolversTypes['MarkupKind']>, ParentType, ContextType>;
3278
+ };
2978
3279
  export declare type IMenuItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItem'] = IResolversParentTypes['MenuItem']> = {
2979
3280
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2980
3281
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2981
3282
  enabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2982
3283
  run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
2983
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3284
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2984
3285
  };
2985
3286
  export declare type IMenuItemActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemAction'] = IResolversParentTypes['MenuItemAction']> = {
2986
3287
  action?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2987
3288
  when?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2988
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3289
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2989
3290
  };
2990
3291
  export declare type IMenuItemActionContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionContext'] = IResolversParentTypes['MenuItemActionContext']> = {
2991
3292
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
2992
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3293
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2993
3294
  };
2994
3295
  export declare type IMenuItemActionDebugResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionDebug'] = IResolversParentTypes['MenuItemActionDebug']> = {
2995
3296
  callstack?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
2996
3297
  toolbar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
2997
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3298
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2998
3299
  };
2999
3300
  export declare type IMenuItemActionEditorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditor'] = IResolversParentTypes['MenuItemActionEditor']> = {
3000
3301
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3001
3302
  title?: Resolver<Maybe<IResolversTypes['MenuItemActionEditorTitle']>, ParentType, ContextType>;
3002
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3303
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3003
3304
  };
3004
3305
  export declare type IMenuItemActionEditorTitleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditorTitle'] = IResolversParentTypes['MenuItemActionEditorTitle']> = {
3005
3306
  own?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3006
3307
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3007
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3308
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3008
3309
  };
3009
3310
  export declare type IMenuItemActionScmResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScm'] = IResolversParentTypes['MenuItemActionScm']> = {
3010
3311
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3011
3312
  resourceGroup?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3012
3313
  resource?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3013
3314
  change?: Resolver<Maybe<IResolversTypes['MenuItemActionScmChange']>, ParentType, ContextType>;
3014
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3315
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3015
3316
  };
3016
3317
  export declare type IMenuItemActionScmChangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScmChange'] = IResolversParentTypes['MenuItemActionScmChange']> = {
3017
3318
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3018
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3319
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3019
3320
  };
3020
3321
  export declare type IMenuItemActionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionView'] = IResolversParentTypes['MenuItemActionView']> = {
3021
3322
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3022
3323
  item?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3023
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3324
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3024
3325
  };
3025
3326
  export declare type IMenusResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Menus'] = IResolversParentTypes['Menus']> = {
3026
3327
  commandPalette?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
@@ -3030,14 +3331,14 @@ export declare type IMenusResolvers<ContextType = MyContext, ParentType extends
3030
3331
  scm?: Resolver<Maybe<IResolversTypes['MenuItemActionScm']>, ParentType, ContextType>;
3031
3332
  view?: Resolver<Maybe<IResolversTypes['MenuItemActionView']>, ParentType, ContextType>;
3032
3333
  touchBar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3033
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3334
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3034
3335
  };
3035
3336
  export declare type IMessageLinkResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MessageLink'] = IResolversParentTypes['MessageLink']> = {
3036
3337
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3037
3338
  href?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3038
3339
  offset?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3039
3340
  length?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3040
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3341
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3041
3342
  };
3042
3343
  export declare type IMutationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
3043
3344
  activate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationactivateArgs, 'request'>>;
@@ -3084,29 +3385,25 @@ export declare type INotificationResolvers<ContextType = MyContext, ParentType e
3084
3385
  source?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3085
3386
  actions?: Resolver<Maybe<IResolversTypes['NotificationActions']>, ParentType, ContextType>;
3086
3387
  sticky?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3087
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3388
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3088
3389
  };
3089
3390
  export declare type INotificationActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationActions'] = IResolversParentTypes['NotificationActions']> = {
3090
3391
  primary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
3091
3392
  secondary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
3092
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3393
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3093
3394
  };
3094
3395
  export declare type INotificationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationChangeEvent'] = IResolversParentTypes['NotificationChangeEvent']> = {
3095
3396
  index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3096
3397
  item?: Resolver<Maybe<IResolversTypes['NotificationViewItem']>, ParentType, ContextType>;
3097
3398
  kind?: Resolver<Maybe<IResolversTypes['NotificationChangeType']>, ParentType, ContextType>;
3098
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3399
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3099
3400
  };
3100
3401
  export declare type INotificationMessageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationMessage'] = IResolversParentTypes['NotificationMessage']> = {
3101
3402
  raw?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3102
3403
  original?: Resolver<Maybe<IResolversTypes['NotificationMessage']>, ParentType, ContextType>;
3103
3404
  value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3104
3405
  links?: Resolver<Maybe<Array<Maybe<IResolversTypes['MessageLink']>>>, ParentType, ContextType>;
3105
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3106
- };
3107
- export declare type INotificationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notifications'] = IResolversParentTypes['Notifications']> = {
3108
- notifications?: Resolver<Maybe<Array<Maybe<IResolversTypes['Notification']>>>, ParentType, ContextType>;
3109
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3406
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3110
3407
  };
3111
3408
  export declare type INotificationViewItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItem'] = IResolversParentTypes['NotificationViewItem']> = {
3112
3409
  severity?: Resolver<Maybe<IResolversTypes['NotificationSeverity']>, ParentType, ContextType>;
@@ -3118,37 +3415,41 @@ export declare type INotificationViewItemResolvers<ContextType = MyContext, Pare
3118
3415
  progress?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgress']>, ParentType, ContextType>;
3119
3416
  expanded?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3120
3417
  canCollapse?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3121
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3418
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3122
3419
  };
3123
3420
  export declare type INotificationViewItemProgressResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgress'] = IResolversParentTypes['NotificationViewItemProgress']> = {
3124
3421
  state?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgressState']>, ParentType, ContextType>;
3125
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3422
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3126
3423
  };
3127
3424
  export declare type INotificationViewItemProgressStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgressState'] = IResolversParentTypes['NotificationViewItemProgressState']> = {
3128
3425
  infinite?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3129
3426
  total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3130
3427
  worked?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3131
3428
  done?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3132
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3429
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
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>;
3133
3434
  };
3134
3435
  export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
3135
3436
  name: 'Observable';
3136
3437
  }
3137
3438
  export declare type IPageInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageInfo'] = IResolversParentTypes['PageInfo']> = {
3138
3439
  hasNextPage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
3139
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3440
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3140
3441
  };
3141
3442
  export declare type IPositionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
3142
3443
  lineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3143
3444
  column?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3144
3445
  line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3145
3446
  character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3146
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3447
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3147
3448
  };
3148
3449
  export declare type IProcessMonitoringResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProcessMonitoring'] = IResolversParentTypes['ProcessMonitoring']> = {
3149
3450
  cpu?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
3150
3451
  memory?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
3151
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3452
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3152
3453
  };
3153
3454
  export declare type IProvideTextDocumentLocationSignatureResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProvideTextDocumentLocationSignature'] = IResolversParentTypes['ProvideTextDocumentLocationSignature']> = {
3154
3455
  textDocument?: Resolver<Maybe<IResolversTypes['TextDocumentIdentifier']>, ParentType, ContextType>;
@@ -3157,7 +3458,7 @@ export declare type IProvideTextDocumentLocationSignatureResolvers<ContextType =
3157
3458
  uriRangeOrPosition?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3158
3459
  range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
3159
3460
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3160
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3461
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3161
3462
  };
3162
3463
  export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
3163
3464
  contextMenu?: Resolver<Maybe<IResolversTypes['ContextMenu']>, ParentType, ContextType>;
@@ -3182,12 +3483,12 @@ export declare type IRangeResolvers<ContextType = MyContext, ParentType extends
3182
3483
  startColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3183
3484
  endLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3184
3485
  endColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3185
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3486
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3186
3487
  };
3187
3488
  export declare type IRegistryEntryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryEntry'] = IResolversParentTypes['RegistryEntry']> = {
3188
3489
  registrationOptions?: Resolver<Maybe<IResolversTypes['TextDocumentRegistrationOptions']>, ParentType, ContextType>;
3189
3490
  provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3190
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3491
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3191
3492
  };
3192
3493
  export declare type IRegistryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtension'] = IResolversParentTypes['RegistryExtension']> = {
3193
3494
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
@@ -3205,7 +3506,7 @@ export declare type IRegistryExtensionResolvers<ContextType = MyContext, ParentT
3205
3506
  isLocal?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3206
3507
  viewerCanAdminister?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3207
3508
  releases?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionRelease']>>>, ParentType, ContextType>;
3208
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3509
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3209
3510
  };
3210
3511
  export declare type IRegistryExtensionConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtensionConnection'] = IResolversParentTypes['RegistryExtensionConnection']> = {
3211
3512
  nodes?: Resolver<Array<IResolversTypes['RegistryExtension']>, ParentType, ContextType>;
@@ -3213,26 +3514,26 @@ export declare type IRegistryExtensionConnectionResolvers<ContextType = MyContex
3213
3514
  pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
3214
3515
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3215
3516
  error?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3216
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3517
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3217
3518
  };
3218
3519
  export declare type IRegistryPublisherResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisher'] = IResolversParentTypes['RegistryPublisher']> = {
3219
3520
  UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3220
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3521
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3221
3522
  };
3222
3523
  export declare type IRegistryPublisherConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisherConnection'] = IResolversParentTypes['RegistryPublisherConnection']> = {
3223
3524
  nodes?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
3224
3525
  totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
3225
3526
  pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
3226
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3527
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3227
3528
  };
3228
3529
  export declare type IScriptsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Scripts'] = IResolversParentTypes['Scripts']> = {
3229
3530
  cdebasebuild?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3230
3531
  cdebasepublish?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3231
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3532
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3232
3533
  };
3233
3534
  export declare type ISnippetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Snippet'] = IResolversParentTypes['Snippet']> = {
3234
3535
  language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3235
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3536
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3236
3537
  };
3237
3538
  export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
3238
3539
  dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, "dummy", ParentType, ContextType>;
@@ -3240,13 +3541,13 @@ export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType e
3240
3541
  export declare type ITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentIdentifier'] = IResolversParentTypes['TextDocumentIdentifier']> = {
3241
3542
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
3242
3543
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3243
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3544
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3244
3545
  };
3245
3546
  export declare type ITextDocumentItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentItem'] = IResolversParentTypes['TextDocumentItem']> = {
3246
3547
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
3247
3548
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3248
3549
  text?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3249
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3550
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3250
3551
  };
3251
3552
  export declare type ITextDocumentPositionParamsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentPositionParams'] = IResolversParentTypes['TextDocumentPositionParams']> = {
3252
3553
  __resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
@@ -3255,13 +3556,13 @@ export declare type ITextDocumentPositionParamsResolvers<ContextType = MyContext
3255
3556
  };
3256
3557
  export declare type ITextDocumentRegistrationOptionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentRegistrationOptions'] = IResolversParentTypes['TextDocumentRegistrationOptions']> = {
3257
3558
  documentSelector?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
3258
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3559
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3259
3560
  };
3260
3561
  export declare type IThemeLabelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThemeLabel'] = IResolversParentTypes['ThemeLabel']> = {
3261
3562
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3262
3563
  uiTheme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3263
3564
  path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3264
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3565
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3265
3566
  };
3266
3567
  export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
3267
3568
  name: 'Time';
@@ -3275,7 +3576,7 @@ export interface IURIInputScalarConfig extends GraphQLScalarTypeConfig<IResolver
3275
3576
  export declare type IViewContainerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewContainer'] = IResolversParentTypes['ViewContainer']> = {
3276
3577
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
3277
3578
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3278
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3579
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3279
3580
  };
3280
3581
  export declare type IResolvers<ContextType = MyContext> = {
3281
3582
  AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
@@ -3287,8 +3588,8 @@ export declare type IResolvers<ContextType = MyContext> = {
3287
3588
  BaseExtension?: IBaseExtensionResolvers<ContextType>;
3288
3589
  Bundles?: IBundlesResolvers<ContextType>;
3289
3590
  CommandHandlerDescriptionType?: ICommandHandlerDescriptionTypeResolvers<ContextType>;
3290
- CommandsType?: ICommandsTypeResolvers<ContextType>;
3291
3591
  CommandType?: ICommandTypeResolvers<ContextType>;
3592
+ CommandsType?: ICommandsTypeResolvers<ContextType>;
3292
3593
  ContextMenu?: IContextMenuResolvers<ContextType>;
3293
3594
  Contributes?: IContributesResolvers<ContextType>;
3294
3595
  ContributionAction?: IContributionActionResolvers<ContextType>;
@@ -3330,25 +3631,29 @@ export declare type IResolvers<ContextType = MyContext> = {
3330
3631
  GalleryExtensionProperties?: IGalleryExtensionPropertiesResolvers<ContextType>;
3331
3632
  GalleryExtensionResources?: IGalleryExtensionResourcesResolvers<ContextType>;
3332
3633
  GalleryPager?: IGalleryPagerResolvers<ContextType>;
3634
+ GeoLocation?: IGeoLocationResolvers<ContextType>;
3333
3635
  Grammar?: IGrammarResolvers<ContextType>;
3636
+ Hover?: IHoverResolvers<ContextType>;
3334
3637
  IBehaviorSubject?: IIBehaviorSubjectResolvers<ContextType>;
3335
3638
  IBehaviorSubjectValue?: IIBehaviorSubjectValueResolvers<ContextType>;
3336
3639
  IDestinationAnonymousSubject?: IIDestinationAnonymousSubjectResolvers<ContextType>;
3337
3640
  IDocumentSelector?: IIDocumentSelectorResolvers<ContextType>;
3338
3641
  IModel?: IIModelResolvers<ContextType>;
3339
- InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
3340
3642
  IObservableResult?: IIObservableResultResolvers<ContextType>;
3643
+ IResourceUtilizationSettings?: IIResourceUtilizationSettingsResolvers<ContextType>;
3341
3644
  ISourceAnonymousSubject?: IISourceAnonymousSubjectResolvers<ContextType>;
3342
3645
  ISwitchMapOperator?: IISwitchMapOperatorResolvers<ContextType>;
3343
- ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers;
3646
+ ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers<ContextType>;
3344
3647
  IViewComponentData?: IIViewComponentDataResolvers<ContextType>;
3345
3648
  IWorkspaceRoot?: IIWorkspaceRootResolvers<ContextType>;
3649
+ InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
3346
3650
  JSON?: GraphQLScalarType;
3347
3651
  JSONObject?: GraphQLScalarType;
3348
3652
  KeyBinding?: IKeyBindingResolvers<ContextType>;
3349
3653
  Localization?: ILocalizationResolvers<ContextType>;
3350
3654
  LocalizationTranslation?: ILocalizationTranslationResolvers<ContextType>;
3351
- Location?: ILocationResolvers;
3655
+ Location?: ILocationResolvers<ContextType>;
3656
+ MarkupContent?: IMarkupContentResolvers<ContextType>;
3352
3657
  MenuItem?: IMenuItemResolvers<ContextType>;
3353
3658
  MenuItemAction?: IMenuItemActionResolvers<ContextType>;
3354
3659
  MenuItemActionContext?: IMenuItemActionContextResolvers<ContextType>;
@@ -3361,15 +3666,15 @@ export declare type IResolvers<ContextType = MyContext> = {
3361
3666
  Menus?: IMenusResolvers<ContextType>;
3362
3667
  MessageLink?: IMessageLinkResolvers<ContextType>;
3363
3668
  Mutation?: IMutationResolvers<ContextType>;
3364
- Node?: INodeResolvers;
3669
+ Node?: INodeResolvers<ContextType>;
3365
3670
  Notification?: INotificationResolvers<ContextType>;
3366
3671
  NotificationActions?: INotificationActionsResolvers<ContextType>;
3367
3672
  NotificationChangeEvent?: INotificationChangeEventResolvers<ContextType>;
3368
3673
  NotificationMessage?: INotificationMessageResolvers<ContextType>;
3369
- Notifications?: INotificationsResolvers<ContextType>;
3370
3674
  NotificationViewItem?: INotificationViewItemResolvers<ContextType>;
3371
3675
  NotificationViewItemProgress?: INotificationViewItemProgressResolvers<ContextType>;
3372
3676
  NotificationViewItemProgressState?: INotificationViewItemProgressStateResolvers<ContextType>;
3677
+ Notifications?: INotificationsResolvers<ContextType>;
3373
3678
  Observable?: GraphQLScalarType;
3374
3679
  PageInfo?: IPageInfoResolvers<ContextType>;
3375
3680
  Position?: IPositionResolvers<ContextType>;
@@ -3387,7 +3692,7 @@ export declare type IResolvers<ContextType = MyContext> = {
3387
3692
  Subscription?: ISubscriptionResolvers<ContextType>;
3388
3693
  TextDocumentIdentifier?: ITextDocumentIdentifierResolvers<ContextType>;
3389
3694
  TextDocumentItem?: ITextDocumentItemResolvers<ContextType>;
3390
- TextDocumentPositionParams?: ITextDocumentPositionParamsResolvers;
3695
+ TextDocumentPositionParams?: ITextDocumentPositionParamsResolvers<ContextType>;
3391
3696
  TextDocumentRegistrationOptions?: ITextDocumentRegistrationOptionsResolvers<ContextType>;
3392
3697
  ThemeLabel?: IThemeLabelResolvers<ContextType>;
3393
3698
  Time?: GraphQLScalarType;