@adminide-stack/extension-api 0.0.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +39 -0
- package/README.md +9 -0
- package/lib/connections/jsonrpc2/connection.d.ts +55 -0
- package/lib/connections/jsonrpc2/connection.js +575 -0
- package/lib/connections/jsonrpc2/connection.js.map +1 -0
- package/lib/connections/jsonrpc2/connection.test.d.ts +1 -0
- package/lib/connections/jsonrpc2/connection.test.js +443 -0
- package/lib/connections/jsonrpc2/connection.test.js.map +1 -0
- package/lib/connections/jsonrpc2/events.d.ts +24 -0
- package/lib/connections/jsonrpc2/events.js +117 -0
- package/lib/connections/jsonrpc2/events.js.map +1 -0
- package/lib/connections/jsonrpc2/index.d.ts +5 -0
- package/lib/connections/jsonrpc2/index.js +24 -0
- package/lib/connections/jsonrpc2/index.js.map +1 -0
- package/lib/connections/jsonrpc2/linkedMap.d.ts +29 -0
- package/lib/connections/jsonrpc2/linkedMap.js +254 -0
- package/lib/connections/jsonrpc2/linkedMap.js.map +1 -0
- package/lib/connections/jsonrpc2/linkedMap.test.d.ts +1 -0
- package/lib/connections/jsonrpc2/linkedMap.test.js +62 -0
- package/lib/connections/jsonrpc2/linkedMap.test.js.map +1 -0
- package/lib/connections/jsonrpc2/messages.d.ts +117 -0
- package/lib/connections/jsonrpc2/messages.js +72 -0
- package/lib/connections/jsonrpc2/messages.js.map +1 -0
- package/lib/connections/jsonrpc2/test-helper.d.ts +8 -0
- package/lib/connections/jsonrpc2/test-helper.js +36 -0
- package/lib/connections/jsonrpc2/test-helper.js.map +1 -0
- package/lib/connections/jsonrpc2/trace.d.ts +30 -0
- package/lib/connections/jsonrpc2/trace.js +96 -0
- package/lib/connections/jsonrpc2/trace.js.map +1 -0
- package/lib/connections/jsonrpc2/transport.d.ts +36 -0
- package/lib/connections/jsonrpc2/transport.js +66 -0
- package/lib/connections/jsonrpc2/transport.js.map +1 -0
- package/lib/connections/jsonrpc2/transports/browser-websocket.d.ts +0 -0
- package/lib/connections/jsonrpc2/transports/browser-websocket.js +189 -0
- package/lib/connections/jsonrpc2/transports/browser-websocket.js.map +1 -0
- package/lib/connections/jsonrpc2/transports/merged.d.ts +0 -0
- package/lib/connections/jsonrpc2/transports/merged.js +239 -0
- package/lib/connections/jsonrpc2/transports/merged.js.map +1 -0
- package/lib/connections/jsonrpc2/transports/webSocket.d.ts +0 -0
- package/lib/connections/jsonrpc2/transports/webSocket.js +138 -0
- package/lib/connections/jsonrpc2/transports/webSocket.js.map +1 -0
- package/lib/connections/jsonrpc2/transports/webWorker.d.ts +22 -0
- package/lib/connections/jsonrpc2/transports/webWorker.js +111 -0
- package/lib/connections/jsonrpc2/transports/webWorker.js.map +1 -0
- package/lib/connections/proxy/index.d.ts +1 -0
- package/lib/connections/proxy/index.js +18 -0
- package/lib/connections/proxy/index.js.map +1 -0
- package/lib/connections/proxy/proxy.d.ts +49 -0
- package/lib/connections/proxy/proxy.js +108 -0
- package/lib/connections/proxy/proxy.js.map +1 -0
- package/lib/connections/proxy/proxy.test.d.ts +1 -0
- package/lib/connections/proxy/proxy.test.js +55 -0
- package/lib/connections/proxy/proxy.test.js.map +1 -0
- package/lib/connections/remote-rpc/browser-remote-rpc.d.ts +12 -0
- package/lib/connections/remote-rpc/browser-remote-rpc.js +62 -0
- package/lib/connections/remote-rpc/browser-remote-rpc.js.map +1 -0
- package/lib/connections/remote-rpc/browser-server-rpc.test.d.ts +0 -0
- package/lib/connections/remote-rpc/browser-server-rpc.test.js +317 -0
- package/lib/connections/remote-rpc/browser-server-rpc.test.js.map +1 -0
- package/lib/connections/remote-rpc/index.d.ts +1 -0
- package/lib/connections/remote-rpc/index.js +18 -0
- package/lib/connections/remote-rpc/index.js.map +1 -0
- package/lib/connections/remote-rpc/old-browser-remote-rpc.d.ts +12 -0
- package/lib/connections/remote-rpc/old-browser-remote-rpc.js +41 -0
- package/lib/connections/remote-rpc/old-browser-remote-rpc.js.map +1 -0
- package/lib/connections/remote-rpc/rxjs-websockets.d.ts +18 -0
- package/lib/connections/remote-rpc/rxjs-websockets.js +80 -0
- package/lib/connections/remote-rpc/rxjs-websockets.js.map +1 -0
- package/lib/constants/action-types.d.ts +30 -0
- package/lib/constants/action-types.js +38 -0
- package/lib/constants/action-types.js.map +1 -0
- package/lib/constants/index.d.ts +2 -0
- package/lib/constants/index.js +19 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/types.d.ts +8 -0
- package/lib/constants/types.js +12 -0
- package/lib/constants/types.js.map +1 -0
- package/lib/core/expr/evaluator.d.ts +27 -0
- package/lib/core/expr/evaluator.js +144 -0
- package/lib/core/expr/evaluator.js.map +1 -0
- package/lib/core/expr/evaluator.test.d.ts +1 -0
- package/lib/core/expr/evaluator.test.js +52 -0
- package/lib/core/expr/evaluator.test.js.map +1 -0
- package/lib/core/expr/index.d.ts +3 -0
- package/lib/core/expr/index.js +20 -0
- package/lib/core/expr/index.js.map +1 -0
- package/lib/core/expr/lexer.d.ts +114 -0
- package/lib/core/expr/lexer.js +418 -0
- package/lib/core/expr/lexer.js.map +1 -0
- package/lib/core/expr/parser.d.ts +52 -0
- package/lib/core/expr/parser.js +242 -0
- package/lib/core/expr/parser.js.map +1 -0
- package/lib/core/index.d.ts +2 -0
- package/lib/core/index.js +19 -0
- package/lib/core/index.js.map +1 -0
- package/lib/core/types/ext-host-types-bk.d.ts +0 -0
- package/lib/core/types/ext-host-types-bk.js +1275 -0
- package/lib/core/types/ext-host-types-bk.js.map +1 -0
- package/lib/core/types/ext-host-types.d.ts +32 -0
- package/lib/core/types/ext-host-types.js +71 -0
- package/lib/core/types/ext-host-types.js.map +1 -0
- package/lib/core/types/index.d.ts +1 -0
- package/lib/core/types/index.js +18 -0
- package/lib/core/types/index.js.map +1 -0
- package/lib/errors/errors.d.ts +1 -0
- package/lib/errors/errors.js +13 -0
- package/lib/errors/errors.js.map +1 -0
- package/lib/errors/index.d.ts +1 -0
- package/lib/errors/index.js +18 -0
- package/lib/errors/index.js.map +1 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.js +24 -0
- package/lib/index.js.map +1 -0
- package/lib/interfaces/command.d.ts +28 -0
- package/lib/interfaces/command.js +3 -0
- package/lib/interfaces/command.js.map +1 -0
- package/lib/interfaces/configuration.d.ts +36 -0
- package/lib/interfaces/configuration.js +3 -0
- package/lib/interfaces/configuration.js.map +1 -0
- package/lib/interfaces/connection.d.ts +12 -0
- package/lib/interfaces/connection.js +3 -0
- package/lib/interfaces/connection.js.map +1 -0
- package/lib/interfaces/context.d.ts +12 -0
- package/lib/interfaces/context.js +3 -0
- package/lib/interfaces/context.js.map +1 -0
- package/lib/interfaces/contributions/contribution-service.d.ts +20 -0
- package/lib/interfaces/contributions/contribution-service.js +3 -0
- package/lib/interfaces/contributions/contribution-service.js.map +1 -0
- package/lib/interfaces/contributions/contribution.d.ts +383 -0
- package/lib/interfaces/contributions/contribution.js +49 -0
- package/lib/interfaces/contributions/contribution.js.map +1 -0
- package/lib/interfaces/contributions/index.d.ts +2 -0
- package/lib/interfaces/contributions/index.js +19 -0
- package/lib/interfaces/contributions/index.js.map +1 -0
- package/lib/interfaces/controller.d.ts +30 -0
- package/lib/interfaces/controller.js +3 -0
- package/lib/interfaces/controller.js.map +1 -0
- package/lib/interfaces/errors.d.ts +5 -0
- package/lib/interfaces/errors.js +3 -0
- package/lib/interfaces/errors.js.map +1 -0
- package/lib/interfaces/ext-services/contributon-registry.d.ts +45 -0
- package/lib/interfaces/ext-services/contributon-registry.js +3 -0
- package/lib/interfaces/ext-services/contributon-registry.js.map +1 -0
- package/lib/interfaces/ext-services/ext-services.d.ts +23 -0
- package/lib/interfaces/ext-services/ext-services.js +3 -0
- package/lib/interfaces/ext-services/ext-services.js.map +1 -0
- package/lib/interfaces/ext-services/extension-service.d.ts +8 -0
- package/lib/interfaces/ext-services/extension-service.js +3 -0
- package/lib/interfaces/ext-services/extension-service.js.map +1 -0
- package/lib/interfaces/ext-services/index.d.ts +8 -0
- package/lib/interfaces/ext-services/index.js +25 -0
- package/lib/interfaces/ext-services/index.js.map +1 -0
- package/lib/interfaces/ext-services/model-service.d.ts +89 -0
- package/lib/interfaces/ext-services/model-service.js +3 -0
- package/lib/interfaces/ext-services/model-service.js.map +1 -0
- package/lib/interfaces/ext-services/panel-view-registry.d.ts +21 -0
- package/lib/interfaces/ext-services/panel-view-registry.js +3 -0
- package/lib/interfaces/ext-services/panel-view-registry.js.map +1 -0
- package/lib/interfaces/ext-services/settings-service.d.ts +18 -0
- package/lib/interfaces/ext-services/settings-service.js +3 -0
- package/lib/interfaces/ext-services/settings-service.js.map +1 -0
- package/lib/interfaces/ext-services/view-service.d.ts +65 -0
- package/lib/interfaces/ext-services/view-service.js +4 -0
- package/lib/interfaces/ext-services/view-service.js.map +1 -0
- package/lib/interfaces/ext-services/viewer-service.d.ts +125 -0
- package/lib/interfaces/ext-services/viewer-service.js +5 -0
- package/lib/interfaces/ext-services/viewer-service.js.map +1 -0
- package/lib/interfaces/extension-manifest.d.ts +8 -0
- package/lib/interfaces/extension-manifest.js +3 -0
- package/lib/interfaces/extension-manifest.js.map +1 -0
- package/lib/interfaces/extension.d.ts +72 -0
- package/lib/interfaces/extension.js +3 -0
- package/lib/interfaces/extension.js.map +1 -0
- package/lib/interfaces/generated-models.d.ts +3716 -0
- package/lib/interfaces/generated-models.js +648 -0
- package/lib/interfaces/generated-models.js.map +1 -0
- package/lib/interfaces/graphql.d.ts +17 -0
- package/lib/interfaces/graphql.js +5 -0
- package/lib/interfaces/graphql.js.map +1 -0
- package/lib/interfaces/index.d.ts +21 -0
- package/lib/interfaces/index.js +38 -0
- package/lib/interfaces/index.js.map +1 -0
- package/lib/interfaces/languages-types.d.ts +65 -0
- package/lib/interfaces/languages-types.js +3 -0
- package/lib/interfaces/languages-types.js.map +1 -0
- package/lib/interfaces/model.d.ts +51 -0
- package/lib/interfaces/model.js +9 -0
- package/lib/interfaces/model.js.map +1 -0
- package/lib/interfaces/plain-types.d.ts +4 -0
- package/lib/interfaces/plain-types.js +6 -0
- package/lib/interfaces/plain-types.js.map +1 -0
- package/lib/interfaces/plainTypes.d.ts +68 -0
- package/lib/interfaces/plainTypes.js +3 -0
- package/lib/interfaces/plainTypes.js.map +1 -0
- package/lib/interfaces/platform-context.d.ts +82 -0
- package/lib/interfaces/platform-context.js +3 -0
- package/lib/interfaces/platform-context.js.map +1 -0
- package/lib/interfaces/react-props/action-item.d.ts +20 -0
- package/lib/interfaces/react-props/action-item.js +3 -0
- package/lib/interfaces/react-props/action-item.js.map +1 -0
- package/lib/interfaces/react-props/extension-controller.d.ts +11 -0
- package/lib/interfaces/react-props/extension-controller.js +3 -0
- package/lib/interfaces/react-props/extension-controller.js.map +1 -0
- package/lib/interfaces/react-props/index.d.ts +3 -0
- package/lib/interfaces/react-props/index.js +20 -0
- package/lib/interfaces/react-props/index.js.map +1 -0
- package/lib/interfaces/react-props/platform-context.d.ts +7 -0
- package/lib/interfaces/react-props/platform-context.js +3 -0
- package/lib/interfaces/react-props/platform-context.js.map +1 -0
- package/lib/interfaces/registry-extension.d.ts +21 -0
- package/lib/interfaces/registry-extension.js +3 -0
- package/lib/interfaces/registry-extension.js.map +1 -0
- package/lib/interfaces/settings.d.ts +51 -0
- package/lib/interfaces/settings.js +3 -0
- package/lib/interfaces/settings.js.map +1 -0
- package/lib/interfaces/text-document.d.ts +57 -0
- package/lib/interfaces/text-document.js +119 -0
- package/lib/interfaces/text-document.js.map +1 -0
- package/lib/interfaces/webview/index.d.ts +3 -0
- package/lib/interfaces/webview/index.js +20 -0
- package/lib/interfaces/webview/index.js.map +1 -0
- package/lib/interfaces/webview/webview-manager-service.d.ts +22 -0
- package/lib/interfaces/webview/webview-manager-service.js +3 -0
- package/lib/interfaces/webview/webview-manager-service.js.map +1 -0
- package/lib/interfaces/webview/webview-port-mapping.d.ts +4 -0
- package/lib/interfaces/webview/webview-port-mapping.js +3 -0
- package/lib/interfaces/webview/webview-port-mapping.js.map +1 -0
- package/lib/interfaces/webview/webview.d.ts +99 -0
- package/lib/interfaces/webview/webview.js +9 -0
- package/lib/interfaces/webview/webview.js.map +1 -0
- package/lib/main.d.ts +0 -0
- package/lib/main.js +3 -0
- package/lib/main.js.map +1 -0
- package/lib/protocol/client.protocol.d.ts +99 -0
- package/lib/protocol/client.protocol.js +8 -0
- package/lib/protocol/client.protocol.js.map +1 -0
- package/lib/protocol/common.protocol.d.ts +289 -0
- package/lib/protocol/common.protocol.js +68 -0
- package/lib/protocol/common.protocol.js.map +1 -0
- package/lib/protocol/editor-missing-types.d.ts +87 -0
- package/lib/protocol/editor-missing-types.js +10 -0
- package/lib/protocol/editor-missing-types.js.map +1 -0
- package/lib/protocol/index.d.ts +6 -0
- package/lib/protocol/index.js +24 -0
- package/lib/protocol/index.js.map +1 -0
- package/lib/protocol/proxy-identifier.d.ts +51 -0
- package/lib/protocol/proxy-identifier.js +59 -0
- package/lib/protocol/proxy-identifier.js.map +1 -0
- package/lib/protocol/rpc-logger.d.ts +8 -0
- package/lib/protocol/rpc-logger.js +60 -0
- package/lib/protocol/rpc-logger.js.map +1 -0
- package/lib/protocol/rpc-protocol.d.ts +148 -0
- package/lib/protocol/rpc-protocol.js +750 -0
- package/lib/protocol/rpc-protocol.js.map +1 -0
- package/lib/protocol/rpc-protocol.test.d.ts +1 -0
- package/lib/protocol/rpc-protocol.test.js +171 -0
- package/lib/protocol/rpc-protocol.test.js.map +1 -0
- package/lib/protocol/server.protocol-bk.d.ts +0 -0
- package/lib/protocol/server.protocol-bk.js +719 -0
- package/lib/protocol/server.protocol-bk.js.map +1 -0
- package/lib/protocol/server.protocol.d.ts +91 -0
- package/lib/protocol/server.protocol.js +31 -0
- package/lib/protocol/server.protocol.js.map +1 -0
- package/lib/protocol/shared/editor.d.ts +4 -0
- package/lib/protocol/shared/editor.js +28 -0
- package/lib/protocol/shared/editor.js.map +1 -0
- package/lib/protocol/shared/tasks.d.ts +104 -0
- package/lib/protocol/shared/tasks.js +4 -0
- package/lib/protocol/shared/tasks.js.map +1 -0
- package/lib/protocol/temporary-types.d.ts +198 -0
- package/lib/protocol/temporary-types.js +30 -0
- package/lib/protocol/temporary-types.js.map +1 -0
- package/lib/protocol/utils/index.d.ts +1 -0
- package/lib/protocol/utils/index.js +18 -0
- package/lib/protocol/utils/index.js.map +1 -0
- package/lib/protocol/utils/lazy-promise.d.ts +18 -0
- package/lib/protocol/utils/lazy-promise.js +69 -0
- package/lib/protocol/utils/lazy-promise.js.map +1 -0
- package/lib/utils/errors.d.ts +6 -0
- package/lib/utils/errors.js +19 -0
- package/lib/utils/errors.js.map +1 -0
- package/lib/utils/extensions.d.ts +9 -0
- package/lib/utils/extensions.js +25 -0
- package/lib/utils/extensions.js.map +1 -0
- package/lib/utils/helper.test.d.ts +9 -0
- package/lib/utils/helper.test.js +15 -0
- package/lib/utils/helper.test.js.map +1 -0
- package/lib/utils/index.d.ts +7 -0
- package/lib/utils/index.js +25 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/paths-util.d.ts +27 -0
- package/lib/utils/paths-util.js +127 -0
- package/lib/utils/paths-util.js.map +1 -0
- package/lib/utils/rxjs/combineLatestOrDefault.d.ts +28 -0
- package/lib/utils/rxjs/combineLatestOrDefault.js +111 -0
- package/lib/utils/rxjs/combineLatestOrDefault.js.map +1 -0
- package/lib/utils/rxjs/combineLatestOrDefault.test.d.ts +1 -0
- package/lib/utils/rxjs/combineLatestOrDefault.test.js +52 -0
- package/lib/utils/rxjs/combineLatestOrDefault.test.js.map +1 -0
- package/lib/utils/rxjs/index.d.ts +1 -0
- package/lib/utils/rxjs/index.js +18 -0
- package/lib/utils/rxjs/index.js.map +1 -0
- package/lib/utils/util.d.ts +19 -0
- package/lib/utils/util.js +57 -0
- package/lib/utils/util.js.map +1 -0
- package/lib/worker-lib/MessageTypes.d.ts +5 -0
- package/lib/worker-lib/MessageTypes.js +9 -0
- package/lib/worker-lib/MessageTypes.js.map +1 -0
- package/lib/worker-lib/index.d.ts +2 -0
- package/lib/worker-lib/index.js +19 -0
- package/lib/worker-lib/index.js.map +1 -0
- package/lib/worker-lib/webWorkerLink.d.ts +12 -0
- package/lib/worker-lib/webWorkerLink.js +96 -0
- package/lib/worker-lib/webWorkerLink.js.map +1 -0
- package/lib/worker-lib/workerUtils.d.ts +11 -0
- package/lib/worker-lib/workerUtils.js +178 -0
- package/lib/worker-lib/workerUtils.js.map +1 -0
- package/package.json +60 -0
|
@@ -0,0 +1,3716 @@
|
|
|
1
|
+
import { URI, UriComponents } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
|
|
2
|
+
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
|
|
3
|
+
import { MyContext } from '@adminide-stack/core';
|
|
4
|
+
import * as Apollo from '@apollo/client';
|
|
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
|
+
};
|
|
17
|
+
export declare type RequireFields<T, K extends keyof T> = {
|
|
18
|
+
[X in Exclude<keyof T, K>]?: T[X];
|
|
19
|
+
} & {
|
|
20
|
+
[P in K]-?: NonNullable<T[P]>;
|
|
21
|
+
};
|
|
22
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
23
|
+
export declare type Scalars = {
|
|
24
|
+
ID: string;
|
|
25
|
+
String: string;
|
|
26
|
+
Boolean: boolean;
|
|
27
|
+
Int: number;
|
|
28
|
+
Float: number;
|
|
29
|
+
AnyObject: any;
|
|
30
|
+
Date: any;
|
|
31
|
+
DateTime: any;
|
|
32
|
+
JSON: any;
|
|
33
|
+
JSONObject: any;
|
|
34
|
+
Observable: any;
|
|
35
|
+
Time: any;
|
|
36
|
+
URI: URI;
|
|
37
|
+
URIInput: URI | UriComponents;
|
|
38
|
+
};
|
|
39
|
+
export declare type IAdminIdeSettings = {
|
|
40
|
+
__typename?: 'AdminIdeSettings';
|
|
41
|
+
dummy?: Maybe<Scalars['Int']>;
|
|
42
|
+
};
|
|
43
|
+
export declare type IAnchor = {
|
|
44
|
+
__typename?: 'Anchor';
|
|
45
|
+
x?: Maybe<Scalars['Int']>;
|
|
46
|
+
y?: Maybe<Scalars['Int']>;
|
|
47
|
+
height?: Maybe<Scalars['Int']>;
|
|
48
|
+
width?: Maybe<Scalars['Int']>;
|
|
49
|
+
};
|
|
50
|
+
export declare type IAnchorInput = {
|
|
51
|
+
x?: Maybe<Scalars['Int']>;
|
|
52
|
+
y?: Maybe<Scalars['Int']>;
|
|
53
|
+
height?: Maybe<Scalars['Int']>;
|
|
54
|
+
width?: Maybe<Scalars['Int']>;
|
|
55
|
+
};
|
|
56
|
+
export declare type IArgsType = {
|
|
57
|
+
__typename?: 'ArgsType';
|
|
58
|
+
name?: Maybe<Scalars['String']>;
|
|
59
|
+
description?: Maybe<Scalars['String']>;
|
|
60
|
+
constraint?: Maybe<Scalars['String']>;
|
|
61
|
+
};
|
|
62
|
+
export declare type IAssets = {
|
|
63
|
+
__typename?: 'Assets';
|
|
64
|
+
Type?: Maybe<Scalars['String']>;
|
|
65
|
+
Content?: Maybe<Scalars['String']>;
|
|
66
|
+
};
|
|
67
|
+
export declare type IAuthor = {
|
|
68
|
+
__typename?: 'Author';
|
|
69
|
+
name?: Maybe<Scalars['String']>;
|
|
70
|
+
};
|
|
71
|
+
export declare type IBaseExtension = {
|
|
72
|
+
__typename?: 'BaseExtension';
|
|
73
|
+
type?: Maybe<IExtensionType>;
|
|
74
|
+
identifier?: Maybe<IExtensionIdentifier>;
|
|
75
|
+
/** @deprecated */
|
|
76
|
+
galleryIdentifier?: Maybe<IExtensionIdentifier>;
|
|
77
|
+
manifest?: Maybe<IExtensionManifest>;
|
|
78
|
+
location?: Maybe<Scalars['URI']>;
|
|
79
|
+
};
|
|
80
|
+
export declare type IBundles = {
|
|
81
|
+
__typename?: 'Bundles';
|
|
82
|
+
server?: Maybe<Scalars['String']>;
|
|
83
|
+
browser?: Maybe<Scalars['String']>;
|
|
84
|
+
};
|
|
85
|
+
export declare enum ICacheControlScope {
|
|
86
|
+
Public = "PUBLIC",
|
|
87
|
+
Private = "PRIVATE"
|
|
88
|
+
}
|
|
89
|
+
export declare enum IClientContainerService {
|
|
90
|
+
ExtensionController = "ExtensionController"
|
|
91
|
+
}
|
|
92
|
+
export declare type ICommandHandlerDescriptionType = {
|
|
93
|
+
__typename?: 'CommandHandlerDescriptionType';
|
|
94
|
+
description?: Maybe<Scalars['String']>;
|
|
95
|
+
args?: Maybe<Array<Maybe<IArgsType>>>;
|
|
96
|
+
returns?: Maybe<Scalars['String']>;
|
|
97
|
+
};
|
|
98
|
+
export declare type ICommandType = {
|
|
99
|
+
__typename?: 'CommandType';
|
|
100
|
+
id?: Maybe<Scalars['String']>;
|
|
101
|
+
handler?: Maybe<Scalars['AnyObject']>;
|
|
102
|
+
description?: Maybe<ICommandHandlerDescriptionType>;
|
|
103
|
+
};
|
|
104
|
+
export declare type ICommandsType = {
|
|
105
|
+
__typename?: 'CommandsType';
|
|
106
|
+
commands?: Maybe<Array<Maybe<ICommandType>>>;
|
|
107
|
+
};
|
|
108
|
+
export declare type IContextMenu = {
|
|
109
|
+
__typename?: 'ContextMenu';
|
|
110
|
+
id?: Maybe<Scalars['String']>;
|
|
111
|
+
isShow?: Maybe<Scalars['Boolean']>;
|
|
112
|
+
anchor?: Maybe<IAnchor>;
|
|
113
|
+
menuItems?: Maybe<Array<Maybe<IMenuItem>>>;
|
|
114
|
+
};
|
|
115
|
+
export declare type IContextMenuInput = {
|
|
116
|
+
isShow?: Maybe<Scalars['Boolean']>;
|
|
117
|
+
anchor?: Maybe<IAnchorInput>;
|
|
118
|
+
menuItems?: Maybe<Array<Maybe<IMenuItemInput>>>;
|
|
119
|
+
};
|
|
120
|
+
/** @deprecated use IExtensionContributions */
|
|
121
|
+
export declare type IContributes = {
|
|
122
|
+
__typename?: 'Contributes';
|
|
123
|
+
menus?: Maybe<IMenus>;
|
|
124
|
+
actions?: Maybe<Array<Maybe<IContributionActions>>>;
|
|
125
|
+
};
|
|
126
|
+
export declare type IContributionAction = {
|
|
127
|
+
__typename?: 'ContributionAction';
|
|
128
|
+
id?: Maybe<Scalars['String']>;
|
|
129
|
+
label?: Maybe<Scalars['String']>;
|
|
130
|
+
tooltip?: Maybe<Scalars['String']>;
|
|
131
|
+
class?: Maybe<Scalars['String']>;
|
|
132
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
133
|
+
checked?: Maybe<Scalars['Boolean']>;
|
|
134
|
+
radio?: Maybe<Scalars['Boolean']>;
|
|
135
|
+
run?: Maybe<IContributionActionRun>;
|
|
136
|
+
};
|
|
137
|
+
export declare type IContributionActionInput = {
|
|
138
|
+
id?: Maybe<Scalars['String']>;
|
|
139
|
+
label?: Maybe<Scalars['String']>;
|
|
140
|
+
tooltip?: Maybe<Scalars['String']>;
|
|
141
|
+
class?: Maybe<Scalars['String']>;
|
|
142
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
143
|
+
checked?: Maybe<Scalars['Boolean']>;
|
|
144
|
+
radio?: Maybe<Scalars['Boolean']>;
|
|
145
|
+
run?: Maybe<IContributionActionRunInput>;
|
|
146
|
+
};
|
|
147
|
+
export declare type IContributionActionItem = {
|
|
148
|
+
__typename?: 'ContributionActionItem';
|
|
149
|
+
label?: Maybe<Scalars['String']>;
|
|
150
|
+
description?: Maybe<Scalars['String']>;
|
|
151
|
+
};
|
|
152
|
+
export declare type IContributionActionRun = {
|
|
153
|
+
__typename?: 'ContributionActionRun';
|
|
154
|
+
type?: Maybe<IGraphqlCallType>;
|
|
155
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
156
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
157
|
+
};
|
|
158
|
+
export declare type IContributionActionRunInput = {
|
|
159
|
+
type?: Maybe<IGraphqlCallType>;
|
|
160
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
161
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
162
|
+
};
|
|
163
|
+
export declare type IContributionActions = {
|
|
164
|
+
__typename?: 'ContributionActions';
|
|
165
|
+
id?: Maybe<Scalars['String']>;
|
|
166
|
+
command?: Maybe<Scalars['String']>;
|
|
167
|
+
title?: Maybe<Scalars['String']>;
|
|
168
|
+
category?: Maybe<Scalars['String']>;
|
|
169
|
+
actionItem?: Maybe<IContributionActionItem>;
|
|
170
|
+
};
|
|
171
|
+
export declare type IContributionView = {
|
|
172
|
+
__typename?: 'ContributionView';
|
|
173
|
+
id?: Maybe<Scalars['ID']>;
|
|
174
|
+
name?: Maybe<Scalars['String']>;
|
|
175
|
+
};
|
|
176
|
+
export declare type IDebugger = {
|
|
177
|
+
__typename?: 'Debugger';
|
|
178
|
+
label?: Maybe<Scalars['String']>;
|
|
179
|
+
type?: Maybe<Scalars['String']>;
|
|
180
|
+
runtime?: Maybe<Scalars['String']>;
|
|
181
|
+
};
|
|
182
|
+
/** A CDECode product documentation page. */
|
|
183
|
+
export declare type IDocSitePage = {
|
|
184
|
+
__typename?: 'DocSitePage';
|
|
185
|
+
/** The title of this page. */
|
|
186
|
+
title: Scalars['String'];
|
|
187
|
+
/** The content, as Markdown-rendered HTML. */
|
|
188
|
+
contentHTML: Scalars['String'];
|
|
189
|
+
/** The page index, as rendered HTML. */
|
|
190
|
+
indexHTML: Scalars['String'];
|
|
191
|
+
/** The filename of the file containing this page's content. */
|
|
192
|
+
filePath: Scalars['String'];
|
|
193
|
+
};
|
|
194
|
+
export declare type IDocumentFilter = {
|
|
195
|
+
__typename?: 'DocumentFilter';
|
|
196
|
+
language: Scalars['String'];
|
|
197
|
+
schema?: Maybe<Scalars['String']>;
|
|
198
|
+
pattern?: Maybe<Scalars['String']>;
|
|
199
|
+
};
|
|
200
|
+
/** Represents a null return value. */
|
|
201
|
+
export declare type IEmptyResponse = {
|
|
202
|
+
__typename?: 'EmptyResponse';
|
|
203
|
+
alwaysNil?: Maybe<Scalars['String']>;
|
|
204
|
+
};
|
|
205
|
+
export declare type IEngines = {
|
|
206
|
+
__typename?: 'Engines';
|
|
207
|
+
node?: Maybe<Scalars['String']>;
|
|
208
|
+
vscode?: Maybe<Scalars['String']>;
|
|
209
|
+
};
|
|
210
|
+
export declare type IEnvironment = {
|
|
211
|
+
__typename?: 'Environment';
|
|
212
|
+
extHostLogsPath?: Maybe<Scalars['URI']>;
|
|
213
|
+
extensionDevelopmentLocationURI?: Maybe<Array<Maybe<Scalars['URI']>>>;
|
|
214
|
+
extensionEnabledProposedApi?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
215
|
+
extensionTestsLocationURI?: Maybe<Scalars['URI']>;
|
|
216
|
+
isExtensionDevelopment?: Maybe<Scalars['Boolean']>;
|
|
217
|
+
logExtensionHostCommunication?: Maybe<Scalars['Boolean']>;
|
|
218
|
+
logsPath?: Maybe<Scalars['String']>;
|
|
219
|
+
remoteAuthority?: Maybe<Scalars['String']>;
|
|
220
|
+
sessionId?: Maybe<Scalars['String']>;
|
|
221
|
+
sync?: Maybe<IEnvironmentSync>;
|
|
222
|
+
userDataPath?: Maybe<Scalars['String']>;
|
|
223
|
+
/** Settings Sync */
|
|
224
|
+
userDataSyncHome?: Maybe<Scalars['URI']>;
|
|
225
|
+
userDataSyncLogResource?: Maybe<Scalars['URI']>;
|
|
226
|
+
webviewCspSource?: Maybe<Scalars['String']>;
|
|
227
|
+
webviewExternalEndpoint?: Maybe<Scalars['String']>;
|
|
228
|
+
webviewResourceRoot?: Maybe<Scalars['String']>;
|
|
229
|
+
};
|
|
230
|
+
export declare type IEnvironmentPayload = {
|
|
231
|
+
sessionId?: Maybe<Scalars['String']>;
|
|
232
|
+
isExtensionDevelopment?: Maybe<Scalars['Boolean']>;
|
|
233
|
+
extensionDevelopmentLocationURI?: Maybe<Array<Maybe<Scalars['URI']>>>;
|
|
234
|
+
extensionTestsLocationURI?: Maybe<Scalars['URI']>;
|
|
235
|
+
extensionEnabledProposedApi?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
236
|
+
webviewResourceRoot?: Maybe<Scalars['String']>;
|
|
237
|
+
webviewCspSource?: Maybe<Scalars['String']>;
|
|
238
|
+
};
|
|
239
|
+
export declare enum IEnvironmentSync {
|
|
240
|
+
On = "on",
|
|
241
|
+
Off = "off",
|
|
242
|
+
Unset = "unset"
|
|
243
|
+
}
|
|
244
|
+
export declare type IExtensionColor = {
|
|
245
|
+
__typename?: 'ExtensionColor';
|
|
246
|
+
id?: Maybe<Scalars['ID']>;
|
|
247
|
+
description?: Maybe<Scalars['String']>;
|
|
248
|
+
defaults?: Maybe<IExtensionColorTypes>;
|
|
249
|
+
};
|
|
250
|
+
export declare type IExtensionColorTypes = {
|
|
251
|
+
__typename?: 'ExtensionColorTypes';
|
|
252
|
+
light?: Maybe<Scalars['String']>;
|
|
253
|
+
dark?: Maybe<Scalars['String']>;
|
|
254
|
+
highContrast?: Maybe<Scalars['String']>;
|
|
255
|
+
};
|
|
256
|
+
export declare type IExtensionConfiguration = {
|
|
257
|
+
__typename?: 'ExtensionConfiguration';
|
|
258
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
259
|
+
};
|
|
260
|
+
export declare type IExtensionConfigurationProperty = {
|
|
261
|
+
__typename?: 'ExtensionConfigurationProperty';
|
|
262
|
+
description?: Maybe<Scalars['String']>;
|
|
263
|
+
type?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
264
|
+
defaults?: Maybe<Scalars['JSON']>;
|
|
265
|
+
};
|
|
266
|
+
export declare type IExtensionContributions = {
|
|
267
|
+
__typename?: 'ExtensionContributions';
|
|
268
|
+
/** @deprecated use commands */
|
|
269
|
+
actions?: Maybe<Array<Maybe<IContributionActions>>>;
|
|
270
|
+
/**
|
|
271
|
+
* @title contributes.commands
|
|
272
|
+
* @description Contribute the UI for a command consisting of a title and (optionally) an icon, category,
|
|
273
|
+
* and enabled state. Enablement is expressed with `when` clauses. By default, commands show in the
|
|
274
|
+
* Command Pallette but they can also show in other menus.
|
|
275
|
+
*
|
|
276
|
+
* Presentation of contributed commands depends on the containing menu. The Command Pallette, for instance, prefixes
|
|
277
|
+
* commands with their `category`, allowing for easy grouping. However, the Command Pallette doesn't show icons nor disabled
|
|
278
|
+
* commands. The editor context menu, on the other hand, show disabled items but doesn't show the category label.
|
|
279
|
+
*
|
|
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}.
|
|
281
|
+
*
|
|
282
|
+
* @example
|
|
283
|
+
* ```
|
|
284
|
+
* "contributes": {
|
|
285
|
+
* "commands": [{
|
|
286
|
+
* "command": "extension.sayHello",
|
|
287
|
+
* "title": "Hello World",
|
|
288
|
+
* "category": "Hello"
|
|
289
|
+
* }]
|
|
290
|
+
* }
|
|
291
|
+
* ```
|
|
292
|
+
*/
|
|
293
|
+
commands?: Maybe<Array<Maybe<IContributionActions>>>;
|
|
294
|
+
/**
|
|
295
|
+
* @title contributes.configuration
|
|
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.
|
|
298
|
+
* You can read these values from your extension using vscode.workspace.getConfiguration('myExtension').
|
|
299
|
+
*
|
|
300
|
+
* Note: If you use markdownDescription instead of description, your setting description will be rendered as Markdown in the settings UI.
|
|
301
|
+
*
|
|
302
|
+
* @example
|
|
303
|
+
* ```
|
|
304
|
+
* "contributes": {
|
|
305
|
+
* "configuration": {
|
|
306
|
+
* "type": "object",
|
|
307
|
+
* "title": "TypeScript configuration",
|
|
308
|
+
* "properties": {
|
|
309
|
+
* "typescript.useCodeSnippetsOnMethodSuggest": {
|
|
310
|
+
* "type": "boolean",
|
|
311
|
+
* "default": false,
|
|
312
|
+
* "description": "Complete functions with their parameter signature."
|
|
313
|
+
* },
|
|
314
|
+
* "typescript.tsdk": {
|
|
315
|
+
* "type": ["string", "null"],
|
|
316
|
+
* "default": null,
|
|
317
|
+
* "description": "Specifies the folder path containing the tsserver and lib*.d.ts files to use."
|
|
318
|
+
* }
|
|
319
|
+
* }
|
|
320
|
+
* }
|
|
321
|
+
* }
|
|
322
|
+
* ```
|
|
323
|
+
*/
|
|
324
|
+
configuration?: Maybe<Array<Maybe<IExtensionConfiguration>>>;
|
|
325
|
+
debuggers?: Maybe<Array<Maybe<IDebugger>>>;
|
|
326
|
+
/**
|
|
327
|
+
* @title contributes.grammars
|
|
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.
|
|
329
|
+
*
|
|
330
|
+
* Note: The file containing the grammar can be in JSON (filenames ending in .json) or in XML plist format (all other files).
|
|
331
|
+
*
|
|
332
|
+
* @example
|
|
333
|
+
* ```json
|
|
334
|
+
* "contributes": {
|
|
335
|
+
* "grammars": [{
|
|
336
|
+
* "language": "markdown",
|
|
337
|
+
* "scopeName": "text.html.markdown",
|
|
338
|
+
* "path": "./syntaxes/markdown.tmLanguage.json",
|
|
339
|
+
* "embeddedLanguages": {
|
|
340
|
+
* "meta.embedded.block.frontmatter": "yaml",
|
|
341
|
+
* ...
|
|
342
|
+
* }
|
|
343
|
+
* }]
|
|
344
|
+
* }
|
|
345
|
+
* ```
|
|
346
|
+
*/
|
|
347
|
+
grammars?: Maybe<Array<Maybe<IGrammar>>>;
|
|
348
|
+
/**
|
|
349
|
+
* @title contributes.jsonValidation
|
|
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.
|
|
351
|
+
*
|
|
352
|
+
* @example
|
|
353
|
+
* "contributes": {
|
|
354
|
+
* "jsonValidation": [{
|
|
355
|
+
* "fileMatch": ".jshintrc",
|
|
356
|
+
* "url": "http://json.schemastore.org/jshintrc"
|
|
357
|
+
* }]
|
|
358
|
+
* }
|
|
359
|
+
*/
|
|
360
|
+
jsonValidation?: Maybe<Array<Maybe<IExtensionJsonValidation>>>;
|
|
361
|
+
/**
|
|
362
|
+
* @title contributes.keybindings
|
|
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
|
+
*
|
|
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.
|
|
366
|
+
*
|
|
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.
|
|
368
|
+
*
|
|
369
|
+
* Note: When a command is invoked (from a key binding or from the Command Palette), VS Code will emit an activationEvent onCommand:${command}.
|
|
370
|
+
*
|
|
371
|
+
* @example
|
|
372
|
+
* Defining that Ctrl+F1 under Windows and Linux and Cmd+F1 under macOS trigger the "extension.sayHello" command:
|
|
373
|
+
*
|
|
374
|
+
* ```json
|
|
375
|
+
* "contributes": {
|
|
376
|
+
* "keybindings": [{
|
|
377
|
+
* "command": "extension.sayHello",
|
|
378
|
+
* "key": "ctrl+f1",
|
|
379
|
+
* "mac": "cmd+f1",
|
|
380
|
+
* "when": "editorTextFocus"
|
|
381
|
+
* }]
|
|
382
|
+
* }
|
|
383
|
+
* ```
|
|
384
|
+
*/
|
|
385
|
+
keybindings?: Maybe<Array<Maybe<IKeyBinding>>>;
|
|
386
|
+
/**
|
|
387
|
+
* @title contributes.languages
|
|
388
|
+
* @description Contribute definition of a language. This will introduce a new language or enrich the knowledge VS Code has about a language.
|
|
389
|
+
*
|
|
390
|
+
* The main effects of contributes.languages are:
|
|
391
|
+
*
|
|
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.
|
|
396
|
+
*
|
|
397
|
+
* @example
|
|
398
|
+
* ```
|
|
399
|
+
* "contributes": {
|
|
400
|
+
* "languages": [{
|
|
401
|
+
* "id": "python",
|
|
402
|
+
* "extensions": [ ".py" ],
|
|
403
|
+
* "aliases": [ "Python", "py" ],
|
|
404
|
+
* "filenames": [ ... ],
|
|
405
|
+
* "firstLine": "^#!/.*\\bpython[0-9.-]*\\b",
|
|
406
|
+
* "configuration": "./language-configuration.json"
|
|
407
|
+
* }]
|
|
408
|
+
* }
|
|
409
|
+
* ```
|
|
410
|
+
*/
|
|
411
|
+
languages?: Maybe<Array<Maybe<IExtensionLanguage>>>;
|
|
412
|
+
/**
|
|
413
|
+
* @title contributes.menus
|
|
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.
|
|
415
|
+
*
|
|
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.
|
|
417
|
+
*
|
|
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.
|
|
419
|
+
*
|
|
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.
|
|
421
|
+
*
|
|
422
|
+
* Currently extension writers can contribute to:
|
|
423
|
+
*
|
|
424
|
+
* The global Command Palette - commandPalette
|
|
425
|
+
* The Explorer context menu - explorer/context
|
|
426
|
+
* The editor context menu - editor/context
|
|
427
|
+
* The editor title menu bar - editor/title
|
|
428
|
+
* The editor title context menu - editor/title/context
|
|
429
|
+
* The debug callstack view context menu - debug/callstack/context
|
|
430
|
+
* The debug toolbar - debug/toolbar
|
|
431
|
+
* The SCM title menu - scm/title
|
|
432
|
+
* SCM resource groups menus - scm/resourceGroup/context
|
|
433
|
+
* SCM resources menus - scm/resource/context
|
|
434
|
+
* SCM change title menus - scm/change/title
|
|
435
|
+
* The View title menu - view/title
|
|
436
|
+
* The View item menu - view/item/context
|
|
437
|
+
* The macOS Touch Bar - touchBar
|
|
438
|
+
* The comment thread title - comments/commentThread/title
|
|
439
|
+
* The comment thread actions - comments/commentThread/context
|
|
440
|
+
* The comment title - comments/comment/title
|
|
441
|
+
* The comment actions - comments/comment/context
|
|
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.
|
|
443
|
+
*
|
|
444
|
+
* In addition to a title, commands can also define icons which VS Code will show in the editor title menu bar.
|
|
445
|
+
*
|
|
446
|
+
* @example
|
|
447
|
+
* "contributes": {
|
|
448
|
+
* "menus": {
|
|
449
|
+
* "editor/title": [{
|
|
450
|
+
* "when": "resourceLangId == markdown",
|
|
451
|
+
* "command": "markdown.showPreview",
|
|
452
|
+
* "alt": "markdown.showPreviewToSide",
|
|
453
|
+
* "group": "navigation"
|
|
454
|
+
* }]
|
|
455
|
+
* }
|
|
456
|
+
* }
|
|
457
|
+
*/
|
|
458
|
+
menus?: Maybe<IMenus>;
|
|
459
|
+
/**
|
|
460
|
+
* @title contributes.snippets
|
|
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.
|
|
462
|
+
*
|
|
463
|
+
* @example
|
|
464
|
+
*
|
|
465
|
+
* ```json
|
|
466
|
+
* "contributes": {
|
|
467
|
+
* "snippets": [{
|
|
468
|
+
* "language": "go",
|
|
469
|
+
* "path": "./snippets/go.json"
|
|
470
|
+
* }]
|
|
471
|
+
* }
|
|
472
|
+
* ```
|
|
473
|
+
*/
|
|
474
|
+
snippets?: Maybe<Array<Maybe<ISnippet>>>;
|
|
475
|
+
/**
|
|
476
|
+
* @title contributes.themes
|
|
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).
|
|
478
|
+
*
|
|
479
|
+
* @example
|
|
480
|
+
* ```json
|
|
481
|
+
* "contributes": {
|
|
482
|
+
* "themes": [{
|
|
483
|
+
* "label": "Monokai",
|
|
484
|
+
* "uiTheme": "vs-dark",
|
|
485
|
+
* "path": "./themes/Monokai.tmTheme"
|
|
486
|
+
* }]
|
|
487
|
+
* }
|
|
488
|
+
* ```
|
|
489
|
+
*/
|
|
490
|
+
themes?: Maybe<Array<Maybe<IThemeLabel>>>;
|
|
491
|
+
iconThemes?: Maybe<Array<Maybe<IThemeLabel>>>;
|
|
492
|
+
/**
|
|
493
|
+
* @title contributes.viewsContainers
|
|
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.
|
|
495
|
+
*
|
|
496
|
+
* @example
|
|
497
|
+
* ```json
|
|
498
|
+
* "contributes": {
|
|
499
|
+
* "viewsContainers": {
|
|
500
|
+
* "activitybar": [
|
|
501
|
+
* {
|
|
502
|
+
* "id": "package-explorer",
|
|
503
|
+
* "title": "Package Explorer",
|
|
504
|
+
* "icon": "resources/package-explorer.svg"
|
|
505
|
+
* }
|
|
506
|
+
* ]
|
|
507
|
+
* },
|
|
508
|
+
* "views": {
|
|
509
|
+
* "package-explorer": [
|
|
510
|
+
* {
|
|
511
|
+
* "id": "package-dependencies",
|
|
512
|
+
* "name": "Dependencies"
|
|
513
|
+
* },
|
|
514
|
+
* {
|
|
515
|
+
* "id": "package-outline",
|
|
516
|
+
* "name": "Outline"
|
|
517
|
+
* }
|
|
518
|
+
* ]
|
|
519
|
+
* }
|
|
520
|
+
* }
|
|
521
|
+
* ```
|
|
522
|
+
*/
|
|
523
|
+
viewsContainers?: Maybe<Scalars['JSON']>;
|
|
524
|
+
/**
|
|
525
|
+
* @title contributes.viewsContainers
|
|
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.
|
|
527
|
+
*
|
|
528
|
+
* @example
|
|
529
|
+
* ```json
|
|
530
|
+
* "contributes": {
|
|
531
|
+
* "viewsContainers": {
|
|
532
|
+
* "activitybar": [
|
|
533
|
+
* {
|
|
534
|
+
* "id": "package-explorer",
|
|
535
|
+
* "title": "Package Explorer",
|
|
536
|
+
* "icon": "resources/package-explorer.svg"
|
|
537
|
+
* }
|
|
538
|
+
* ]
|
|
539
|
+
* },
|
|
540
|
+
* "views": {
|
|
541
|
+
* "package-explorer": [
|
|
542
|
+
* {
|
|
543
|
+
* "id": "package-dependencies",
|
|
544
|
+
* "name": "Dependencies"
|
|
545
|
+
* },
|
|
546
|
+
* {
|
|
547
|
+
* "id": "package-outline",
|
|
548
|
+
* "name": "Outline"
|
|
549
|
+
* }
|
|
550
|
+
* ]
|
|
551
|
+
* }
|
|
552
|
+
* }
|
|
553
|
+
* ```
|
|
554
|
+
*/
|
|
555
|
+
views?: Maybe<Scalars['JSON']>;
|
|
556
|
+
/**
|
|
557
|
+
* @title contributes.colors
|
|
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.
|
|
559
|
+
*
|
|
560
|
+
* @example
|
|
561
|
+
* ```json
|
|
562
|
+
* "contributes": {
|
|
563
|
+
* "colors": [{
|
|
564
|
+
* "id": "superstatus.error",
|
|
565
|
+
* "description": "Color for error message in the status bar.",
|
|
566
|
+
* "defaults": {
|
|
567
|
+
* "dark": "errorForeground",
|
|
568
|
+
* "light": "errorForeground",
|
|
569
|
+
* "highContrast": "#010203"
|
|
570
|
+
* }
|
|
571
|
+
* }]
|
|
572
|
+
* }
|
|
573
|
+
* ```
|
|
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.
|
|
575
|
+
*/
|
|
576
|
+
colors?: Maybe<Array<Maybe<IExtensionColor>>>;
|
|
577
|
+
localizations?: Maybe<Array<Maybe<ILocalization>>>;
|
|
578
|
+
};
|
|
579
|
+
/**
|
|
580
|
+
* **!Do not construct directly!**
|
|
581
|
+
* **!Only static methods because it gets serialized!**
|
|
582
|
+
*
|
|
583
|
+
* This represents the "canonical" version for an extension identifier. Exntension ids
|
|
584
|
+
* have to be case-insensitive (due to the marketplace), but we must ensure case
|
|
585
|
+
* preservation because the extension API is already public at this time.
|
|
586
|
+
*
|
|
587
|
+
* For example, given an extension with the publisher `"Hello` and the name `"World"`,
|
|
588
|
+
* its canonical extension identifier is `"Hello.World"`. This extension could be
|
|
589
|
+
* referenced in some other extension's dependencies using the string `"hello.world"`.
|
|
590
|
+
*
|
|
591
|
+
* To make matter more complicated, an extension can optionally have an UUID. When two
|
|
592
|
+
* extensions have the same UUID, they are considered equal even if their identifier is different.
|
|
593
|
+
*/
|
|
594
|
+
export declare type IExtensionIdentifier = {
|
|
595
|
+
__typename?: 'ExtensionIdentifier';
|
|
596
|
+
id?: Maybe<Scalars['String']>;
|
|
597
|
+
uuid?: Maybe<Scalars['String']>;
|
|
598
|
+
};
|
|
599
|
+
export declare type IExtensionInstance = {
|
|
600
|
+
__typename?: 'ExtensionInstance';
|
|
601
|
+
pid?: Maybe<Scalars['String']>;
|
|
602
|
+
name?: Maybe<Scalars['String']>;
|
|
603
|
+
path?: Maybe<Scalars['String']>;
|
|
604
|
+
env?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
605
|
+
status?: Maybe<Scalars['String']>;
|
|
606
|
+
extensionID?: Maybe<Scalars['ID']>;
|
|
607
|
+
monit?: Maybe<IProcessMonitoring>;
|
|
608
|
+
};
|
|
609
|
+
export declare type IExtensionJsonValidation = {
|
|
610
|
+
__typename?: 'ExtensionJSONValidation';
|
|
611
|
+
fileMatch?: Maybe<Scalars['String']>;
|
|
612
|
+
url?: Maybe<Scalars['String']>;
|
|
613
|
+
};
|
|
614
|
+
export declare enum IExtensionKind {
|
|
615
|
+
Ui = "ui",
|
|
616
|
+
Workspace = "workspace"
|
|
617
|
+
}
|
|
618
|
+
export declare type IExtensionLanguage = {
|
|
619
|
+
__typename?: 'ExtensionLanguage';
|
|
620
|
+
id?: Maybe<Scalars['ID']>;
|
|
621
|
+
extensions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
622
|
+
aliases?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
623
|
+
};
|
|
624
|
+
export declare type IExtensionManifest = {
|
|
625
|
+
__typename?: 'ExtensionManifest';
|
|
626
|
+
/** The name of the extension - should be all lowercase with no spaces */
|
|
627
|
+
name?: Maybe<Scalars['String']>;
|
|
628
|
+
/** SemVer compatible version. */
|
|
629
|
+
version?: Maybe<Scalars['String']>;
|
|
630
|
+
/** The entry point to your extension */
|
|
631
|
+
main?: Maybe<Scalars['String']>;
|
|
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. */
|
|
633
|
+
badges?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
634
|
+
/** Sets the extension to be flagged as a Preview in the Marketplace. */
|
|
635
|
+
preview?: Maybe<Scalars['Boolean']>;
|
|
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. */
|
|
637
|
+
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
638
|
+
/**
|
|
639
|
+
* Refer to npm's documentation. If you do have a LICENSE file in the root of
|
|
640
|
+
* your extension, the value for license should be "SEE LICENSE IN <filename>".
|
|
641
|
+
*/
|
|
642
|
+
license?: Maybe<Scalars['String']>;
|
|
643
|
+
homepage?: Maybe<Scalars['String']>;
|
|
644
|
+
/** The publisher name */
|
|
645
|
+
publisher?: Maybe<Scalars['String']>;
|
|
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] */
|
|
647
|
+
categories?: Maybe<Scalars['String']>;
|
|
648
|
+
/** A short description of what your extension is and does. */
|
|
649
|
+
description?: Maybe<Scalars['String']>;
|
|
650
|
+
extensionID?: Maybe<Scalars['String']>;
|
|
651
|
+
/** The display name for the extension used in the Marketplace. */
|
|
652
|
+
displayName?: Maybe<Scalars['String']>;
|
|
653
|
+
/** Any runtime Node.js dependencies your extensions needs. Exactly the same as npm's dependencies. */
|
|
654
|
+
dependencies?: Maybe<Scalars['JSON']>;
|
|
655
|
+
/** Any development Node.js dependencies your extension needs. Exactly the same as npm's devDependencies. */
|
|
656
|
+
devDependencies?: Maybe<Scalars['JSON']>;
|
|
657
|
+
/**
|
|
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
|
|
659
|
+
* `${publisher}.${name}`. For example: vscode.csharp.
|
|
660
|
+
*/
|
|
661
|
+
extensionPack?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
662
|
+
/** An extension can be of 'ui' | 'workspace' */
|
|
663
|
+
extensionKind?: Maybe<IExtensionKind>;
|
|
664
|
+
/**
|
|
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
|
|
666
|
+
* `${publisher}.${name}`. For example: vscode.csharp.
|
|
667
|
+
*/
|
|
668
|
+
extensionDependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
669
|
+
bundle?: Maybe<Scalars['String']>;
|
|
670
|
+
/** The raw JSON contents of the manifest. */
|
|
671
|
+
raw?: Maybe<Scalars['String']>;
|
|
672
|
+
/** Readme */
|
|
673
|
+
readme?: Maybe<Scalars['String']>;
|
|
674
|
+
assets?: Maybe<Array<Maybe<IAssets>>>;
|
|
675
|
+
/** Exactly the same as npm's scripts but with extra VS Code specific fields such as vscode:prepublish or vscode:uninstall. */
|
|
676
|
+
scripts?: Maybe<IScripts>;
|
|
677
|
+
bundles?: Maybe<IBundles>;
|
|
678
|
+
bundleURL?: Maybe<Scalars['String']>;
|
|
679
|
+
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
680
|
+
url?: Maybe<Scalars['String']>;
|
|
681
|
+
extension?: Maybe<IExtensionPackageType>;
|
|
682
|
+
/**
|
|
683
|
+
* An object containing at least the vscode key matching
|
|
684
|
+
* the versions of VS Code that the extension
|
|
685
|
+
* is compatible with. Cannot be *.
|
|
686
|
+
* For example: ^0.10.5 indicates compatibility with a minimum VS Code version of 0.10.5.
|
|
687
|
+
*/
|
|
688
|
+
engines?: Maybe<IEngines>;
|
|
689
|
+
/** Controls the Markdown rendering engine used in the Marketplace. Either github (default) or standard. */
|
|
690
|
+
makrdown?: Maybe<Scalars['String']>;
|
|
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. */
|
|
692
|
+
qna?: Maybe<Scalars['String']>;
|
|
693
|
+
author?: Maybe<IAuthor>;
|
|
694
|
+
/** Helps format the Marketplace header to match your icon. See details below. */
|
|
695
|
+
galleryBanner?: Maybe<IGalleryBanner>;
|
|
696
|
+
/** An array of the activation events for this extension. */
|
|
697
|
+
activationEvents?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
698
|
+
/** An object describing the extension's contributions. */
|
|
699
|
+
contributes?: Maybe<IExtensionContributions>;
|
|
700
|
+
/** The path to the icon of at least 128x128 pixels (256x256 for Retina screens). */
|
|
701
|
+
icon?: Maybe<Scalars['String']>;
|
|
702
|
+
/**
|
|
703
|
+
* @description Any development Node.js bugs reporting location of your extension.
|
|
704
|
+
* @example
|
|
705
|
+
* "bugs": {
|
|
706
|
+
* "url": "https://github.com/Microsoft/vscode-wordcount/issues",
|
|
707
|
+
* "email": "smcbreen@microsoft.com"
|
|
708
|
+
* },
|
|
709
|
+
*/
|
|
710
|
+
bugs?: Maybe<IExtensionManifestBugs>;
|
|
711
|
+
/**
|
|
712
|
+
* Any development Node.js repository location of your extension.
|
|
713
|
+
* @example
|
|
714
|
+
* "repository": {
|
|
715
|
+
* "type": "git",
|
|
716
|
+
* "url": "https://github.com/Microsoft/vscode-wordcount.git"
|
|
717
|
+
* }
|
|
718
|
+
*/
|
|
719
|
+
repository?: Maybe<IExtensionManifestRepository>;
|
|
720
|
+
/** To enable proposed Api's */
|
|
721
|
+
enableProposedApi?: Maybe<Scalars['Boolean']>;
|
|
722
|
+
/** Add support for api:none */
|
|
723
|
+
api?: Maybe<Scalars['String']>;
|
|
724
|
+
};
|
|
725
|
+
export declare type IExtensionManifestBugs = {
|
|
726
|
+
__typename?: 'ExtensionManifestBugs';
|
|
727
|
+
url?: Maybe<Scalars['String']>;
|
|
728
|
+
email?: Maybe<Scalars['String']>;
|
|
729
|
+
};
|
|
730
|
+
export declare type IExtensionManifestRepository = {
|
|
731
|
+
__typename?: 'ExtensionManifestRepository';
|
|
732
|
+
type?: Maybe<Scalars['String']>;
|
|
733
|
+
url?: Maybe<Scalars['String']>;
|
|
734
|
+
};
|
|
735
|
+
export declare type IExtensionPackageType = {
|
|
736
|
+
__typename?: 'ExtensionPackageType';
|
|
737
|
+
type?: Maybe<Scalars['String']>;
|
|
738
|
+
};
|
|
739
|
+
export declare type IExtensionRegistry = {
|
|
740
|
+
__typename?: 'ExtensionRegistry';
|
|
741
|
+
/** To find an extension by its GraphQL ID, use Query.node */
|
|
742
|
+
extension?: Maybe<IRegistryExtension>;
|
|
743
|
+
/**
|
|
744
|
+
* Find an extension by its extension ID (which is the concatenation of the publisher naem, a slash ("/"), and the extension name).
|
|
745
|
+
*
|
|
746
|
+
* To find an extension by its GraphQL ID, use Query.node
|
|
747
|
+
* extension(extensionID: String!): RegistryExtension
|
|
748
|
+
* A list of extensions published in the extension registry.
|
|
749
|
+
*/
|
|
750
|
+
extensions: IRegistryExtensionConnection;
|
|
751
|
+
/** List of extension releases */
|
|
752
|
+
releases?: Maybe<Array<Maybe<IExtensionRelease>>>;
|
|
753
|
+
/** A list of publishers with at least 1 extension in the registry. */
|
|
754
|
+
publishers: IRegistryPublisherConnection;
|
|
755
|
+
/** A list of publishers that the viewer may publish extensions as. */
|
|
756
|
+
viewerPublishers: Array<IRegistryPublisher>;
|
|
757
|
+
/**
|
|
758
|
+
* The extension ID prefix for extensions that are published in the local extension registry. This is the
|
|
759
|
+
* hostname ( and port, if non-default HTTP/HTTPS) of the CDEBase "appURL" site configuration property.
|
|
760
|
+
*
|
|
761
|
+
* It is null if extensions published on this CDEBase site do not have an extension ID prefix.
|
|
762
|
+
*
|
|
763
|
+
* Examples: "cdebase.example.com/", "cdebase.example.com:1234/"
|
|
764
|
+
*/
|
|
765
|
+
localExtensionIDPrefix?: Maybe<Scalars['String']>;
|
|
766
|
+
};
|
|
767
|
+
export declare type IExtensionRegistryExtensionArgs = {
|
|
768
|
+
extensionID: Scalars['String'];
|
|
769
|
+
};
|
|
770
|
+
export declare type IExtensionRegistryExtensionsArgs = {
|
|
771
|
+
first?: Maybe<Scalars['Int']>;
|
|
772
|
+
publisher?: Maybe<Scalars['ID']>;
|
|
773
|
+
query?: Maybe<Scalars['String']>;
|
|
774
|
+
local?: Maybe<Scalars['Boolean']>;
|
|
775
|
+
remote?: Maybe<Scalars['Boolean']>;
|
|
776
|
+
prioritizeExtensionIDs?: Maybe<Array<Scalars['String']>>;
|
|
777
|
+
includeWIP?: Maybe<Scalars['Boolean']>;
|
|
778
|
+
};
|
|
779
|
+
export declare type IExtensionRegistryReleasesArgs = {
|
|
780
|
+
extensionID: Scalars['String'];
|
|
781
|
+
};
|
|
782
|
+
export declare type IExtensionRegistryPublishersArgs = {
|
|
783
|
+
first?: Maybe<Scalars['Int']>;
|
|
784
|
+
};
|
|
785
|
+
/** The result of Mutation.extensionRegistry.createExtension. */
|
|
786
|
+
export declare type IExtensionRegistryCreateExtensionResult = {
|
|
787
|
+
__typename?: 'ExtensionRegistryCreateExtensionResult';
|
|
788
|
+
/** The newly created extension. */
|
|
789
|
+
extension: IRegistryExtension;
|
|
790
|
+
};
|
|
791
|
+
/** The result of Mutation.extensionRegistry.publishExtension. */
|
|
792
|
+
export declare type IExtensionRegistryPublishExtensionResult = {
|
|
793
|
+
__typename?: 'ExtensionRegistryPublishExtensionResult';
|
|
794
|
+
/** The extension that was just published. */
|
|
795
|
+
extension: IRegistryExtension;
|
|
796
|
+
};
|
|
797
|
+
/** The result of Mutation.extensionRegistry.updateExtension. */
|
|
798
|
+
export declare type IExtensionRegistryUpdateExtensionResult = {
|
|
799
|
+
__typename?: 'ExtensionRegistryUpdateExtensionResult';
|
|
800
|
+
/** The newly updated extension. */
|
|
801
|
+
extension: IRegistryExtension;
|
|
802
|
+
};
|
|
803
|
+
export declare type IExtensionRelease = {
|
|
804
|
+
__typename?: 'ExtensionRelease';
|
|
805
|
+
id?: Maybe<Scalars['ID']>;
|
|
806
|
+
bundle?: Maybe<Scalars['String']>;
|
|
807
|
+
bundleURL?: Maybe<Scalars['String']>;
|
|
808
|
+
version?: Maybe<Scalars['String']>;
|
|
809
|
+
manifest: Scalars['String'];
|
|
810
|
+
sourceMap?: Maybe<Scalars['String']>;
|
|
811
|
+
extensionID?: Maybe<Scalars['String']>;
|
|
812
|
+
creatorUserId?: Maybe<Scalars['String']>;
|
|
813
|
+
releaseVersion?: Maybe<Scalars['String']>;
|
|
814
|
+
activationEvents?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
815
|
+
};
|
|
816
|
+
export declare enum IExtensionType {
|
|
817
|
+
System = "System",
|
|
818
|
+
User = "User"
|
|
819
|
+
}
|
|
820
|
+
export declare type IFieldError = {
|
|
821
|
+
__typename?: 'FieldError';
|
|
822
|
+
field: Scalars['String'];
|
|
823
|
+
message: Scalars['String'];
|
|
824
|
+
};
|
|
825
|
+
export declare type IGalleryBanner = {
|
|
826
|
+
__typename?: 'GalleryBanner';
|
|
827
|
+
color?: Maybe<Scalars['String']>;
|
|
828
|
+
theme?: Maybe<Scalars['String']>;
|
|
829
|
+
};
|
|
830
|
+
export declare type IGalleryExtension = {
|
|
831
|
+
__typename?: 'GalleryExtension';
|
|
832
|
+
id?: Maybe<Scalars['String']>;
|
|
833
|
+
name?: Maybe<Scalars['String']>;
|
|
834
|
+
identifier?: Maybe<IExtensionIdentifier>;
|
|
835
|
+
version?: Maybe<Scalars['String']>;
|
|
836
|
+
date?: Maybe<Scalars['String']>;
|
|
837
|
+
icon?: Maybe<Scalars['String']>;
|
|
838
|
+
displayName?: Maybe<Scalars['String']>;
|
|
839
|
+
publisherId?: Maybe<Scalars['String']>;
|
|
840
|
+
publisher?: Maybe<Scalars['String']>;
|
|
841
|
+
publisherDisplayName?: Maybe<Scalars['String']>;
|
|
842
|
+
description?: Maybe<Scalars['String']>;
|
|
843
|
+
installCount?: Maybe<Scalars['Int']>;
|
|
844
|
+
rating?: Maybe<Scalars['Float']>;
|
|
845
|
+
ratingCount?: Maybe<Scalars['Float']>;
|
|
846
|
+
assets?: Maybe<IGalleryExtensionAssets>;
|
|
847
|
+
properties?: Maybe<IGalleryExtensionProperties>;
|
|
848
|
+
preview?: Maybe<Scalars['Boolean']>;
|
|
849
|
+
resources?: Maybe<IGalleryExtensionResources>;
|
|
850
|
+
};
|
|
851
|
+
export declare type IGalleryExtensionAsset = {
|
|
852
|
+
__typename?: 'GalleryExtensionAsset';
|
|
853
|
+
uri?: Maybe<Scalars['String']>;
|
|
854
|
+
fallbackUri?: Maybe<Scalars['String']>;
|
|
855
|
+
};
|
|
856
|
+
export declare type IGalleryExtensionAssets = {
|
|
857
|
+
__typename?: 'GalleryExtensionAssets';
|
|
858
|
+
manifest?: Maybe<IGalleryExtensionAsset>;
|
|
859
|
+
readme?: Maybe<IGalleryExtensionAsset>;
|
|
860
|
+
changelog?: Maybe<IGalleryExtensionAsset>;
|
|
861
|
+
download?: Maybe<IGalleryExtensionAsset>;
|
|
862
|
+
icon?: Maybe<IGalleryExtensionAsset>;
|
|
863
|
+
license?: Maybe<IGalleryExtensionAsset>;
|
|
864
|
+
repository?: Maybe<IGalleryExtensionAsset>;
|
|
865
|
+
coreTranslations?: Maybe<Scalars['JSON']>;
|
|
866
|
+
};
|
|
867
|
+
export declare type IGalleryExtensionProperties = {
|
|
868
|
+
__typename?: 'GalleryExtensionProperties';
|
|
869
|
+
engine?: Maybe<Scalars['String']>;
|
|
870
|
+
dependencies?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
871
|
+
extensionPack?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
872
|
+
localizedLanguages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
873
|
+
};
|
|
874
|
+
export declare type IGalleryExtensionResources = {
|
|
875
|
+
__typename?: 'GalleryExtensionResources';
|
|
876
|
+
manifest?: Maybe<Scalars['String']>;
|
|
877
|
+
readme?: Maybe<Scalars['String']>;
|
|
878
|
+
changelog?: Maybe<Scalars['String']>;
|
|
879
|
+
download?: Maybe<Scalars['String']>;
|
|
880
|
+
icon?: Maybe<Scalars['String']>;
|
|
881
|
+
license?: Maybe<Scalars['String']>;
|
|
882
|
+
repository?: Maybe<Scalars['String']>;
|
|
883
|
+
};
|
|
884
|
+
export declare type IGalleryFilter = {
|
|
885
|
+
value?: Maybe<Scalars['String']>;
|
|
886
|
+
filterType?: Maybe<Scalars['String']>;
|
|
887
|
+
};
|
|
888
|
+
export declare type IGalleryPager = {
|
|
889
|
+
__typename?: 'GalleryPager';
|
|
890
|
+
page?: Maybe<Scalars['Int']>;
|
|
891
|
+
total?: Maybe<Scalars['Int']>;
|
|
892
|
+
pageSize?: Maybe<Scalars['Int']>;
|
|
893
|
+
firstPage?: Maybe<Array<Maybe<IGalleryExtension>>>;
|
|
894
|
+
};
|
|
895
|
+
export declare type IGalleryQueryInput = {
|
|
896
|
+
text?: Maybe<Scalars['String']>;
|
|
897
|
+
ids?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
898
|
+
names?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
899
|
+
pageSize?: Maybe<Scalars['Int']>;
|
|
900
|
+
sortBy?: Maybe<Scalars['Int']>;
|
|
901
|
+
sortOrder?: Maybe<Scalars['Int']>;
|
|
902
|
+
source?: Maybe<Scalars['String']>;
|
|
903
|
+
};
|
|
904
|
+
export declare type IGeoLocation = {
|
|
905
|
+
__typename?: 'GeoLocation';
|
|
906
|
+
coordinates?: Maybe<Array<Maybe<Scalars['Float']>>>;
|
|
907
|
+
};
|
|
908
|
+
export declare type IGrammar = {
|
|
909
|
+
__typename?: 'Grammar';
|
|
910
|
+
language?: Maybe<Scalars['String']>;
|
|
911
|
+
};
|
|
912
|
+
export declare enum IGraphqlCallType {
|
|
913
|
+
Mutation = "mutation",
|
|
914
|
+
Query = "query"
|
|
915
|
+
}
|
|
916
|
+
export declare type IHover = {
|
|
917
|
+
contents?: Maybe<IMarkupContent>;
|
|
918
|
+
range?: Maybe<IRange>;
|
|
919
|
+
};
|
|
920
|
+
export declare type IIActivationRequest = {
|
|
921
|
+
env?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
922
|
+
extensionID: Scalars['ID'];
|
|
923
|
+
};
|
|
924
|
+
export declare type IIBehaviorSubject = {
|
|
925
|
+
__typename?: 'IBehaviorSubject';
|
|
926
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
927
|
+
hasError?: Maybe<Scalars['Boolean']>;
|
|
928
|
+
isStopped?: Maybe<Scalars['Boolean']>;
|
|
929
|
+
observers?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
930
|
+
thrownError?: Maybe<Scalars['String']>;
|
|
931
|
+
_isScalar?: Maybe<Scalars['Boolean']>;
|
|
932
|
+
value?: Maybe<Array<Maybe<IIBehaviorSubjectValue>>>;
|
|
933
|
+
};
|
|
934
|
+
export declare type IIBehaviorSubjectValue = {
|
|
935
|
+
__typename?: 'IBehaviorSubjectValue';
|
|
936
|
+
provider?: Maybe<Scalars['String']>;
|
|
937
|
+
registrationOptions?: Maybe<IIDocumentSelector>;
|
|
938
|
+
};
|
|
939
|
+
export declare type IIDestinationAnonymousSubject = {
|
|
940
|
+
__typename?: 'IDestinationAnonymousSubject';
|
|
941
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
942
|
+
destination?: Maybe<Scalars['String']>;
|
|
943
|
+
hasError?: Maybe<Scalars['Boolean']>;
|
|
944
|
+
isStopped?: Maybe<Scalars['Boolean']>;
|
|
945
|
+
observers?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
946
|
+
operator?: Maybe<IISwitchMapOperator>;
|
|
947
|
+
source?: Maybe<IIBehaviorSubject>;
|
|
948
|
+
thrownError?: Maybe<Scalars['String']>;
|
|
949
|
+
_isScalar?: Maybe<Scalars['Boolean']>;
|
|
950
|
+
};
|
|
951
|
+
export declare type IIDocumentSelector = {
|
|
952
|
+
__typename?: 'IDocumentSelector';
|
|
953
|
+
documentSelector?: Maybe<Scalars['JSON']>;
|
|
954
|
+
};
|
|
955
|
+
export declare type IIModel = {
|
|
956
|
+
__typename?: 'IModel';
|
|
957
|
+
roots?: Maybe<IIWorkspaceRoot>;
|
|
958
|
+
visibleViewComponents?: Maybe<Array<Maybe<IIViewComponentData>>>;
|
|
959
|
+
};
|
|
960
|
+
export declare type IIModelInput = {
|
|
961
|
+
roots?: Maybe<IIWorkspaceRootInput>;
|
|
962
|
+
visibleViewComponents?: Maybe<Array<Maybe<IIViewComponentDataInput>>>;
|
|
963
|
+
};
|
|
964
|
+
export declare type IIObservableResult = {
|
|
965
|
+
__typename?: 'IObservableResult';
|
|
966
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
967
|
+
destination?: Maybe<IIDestinationAnonymousSubject>;
|
|
968
|
+
hasError?: Maybe<Scalars['Boolean']>;
|
|
969
|
+
isStopped?: Maybe<Scalars['Boolean']>;
|
|
970
|
+
observers?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
971
|
+
operator?: Maybe<IISwitchMapOperator>;
|
|
972
|
+
source?: Maybe<IISourceAnonymousSubject>;
|
|
973
|
+
thrownError?: Maybe<Scalars['String']>;
|
|
974
|
+
_isScalar?: Maybe<Scalars['Boolean']>;
|
|
975
|
+
};
|
|
976
|
+
export declare type IIResourceUtilizationSettings = {
|
|
977
|
+
subTopic?: Maybe<Scalars['String']>;
|
|
978
|
+
adminApiNamespace?: Maybe<Scalars['String']>;
|
|
979
|
+
};
|
|
980
|
+
export declare type IISourceAnonymousSubject = {
|
|
981
|
+
__typename?: 'ISourceAnonymousSubject';
|
|
982
|
+
closed?: Maybe<Scalars['Boolean']>;
|
|
983
|
+
destination?: Maybe<IIDestinationAnonymousSubject>;
|
|
984
|
+
hasError?: Maybe<Scalars['Boolean']>;
|
|
985
|
+
isStopped?: Maybe<Scalars['Boolean']>;
|
|
986
|
+
observers?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
987
|
+
operator?: Maybe<IISwitchMapOperator>;
|
|
988
|
+
source?: Maybe<IIBehaviorSubject>;
|
|
989
|
+
thrownError?: Maybe<Scalars['String']>;
|
|
990
|
+
_isScalar?: Maybe<Scalars['Boolean']>;
|
|
991
|
+
};
|
|
992
|
+
export declare type IISwitchMapOperator = {
|
|
993
|
+
__typename?: 'ISwitchMapOperator';
|
|
994
|
+
project?: Maybe<Scalars['String']>;
|
|
995
|
+
};
|
|
996
|
+
export declare type IITextDocumentIdentifier = {
|
|
997
|
+
uri?: Maybe<Scalars['URI']>;
|
|
998
|
+
/** just to statisfy few issues */
|
|
999
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1000
|
+
};
|
|
1001
|
+
export declare type IIViewComponentData = {
|
|
1002
|
+
__typename?: 'IViewComponentData';
|
|
1003
|
+
type?: Maybe<Scalars['String']>;
|
|
1004
|
+
item?: Maybe<ITextDocumentItem>;
|
|
1005
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
1006
|
+
};
|
|
1007
|
+
export declare type IIViewComponentDataInput = {
|
|
1008
|
+
type?: Maybe<Scalars['String']>;
|
|
1009
|
+
item?: Maybe<ITextDocumentItemInput>;
|
|
1010
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
1011
|
+
};
|
|
1012
|
+
export declare type IIWorkspaceRoot = {
|
|
1013
|
+
__typename?: 'IWorkspaceRoot';
|
|
1014
|
+
url?: Maybe<Scalars['String']>;
|
|
1015
|
+
};
|
|
1016
|
+
export declare type IIWorkspaceRootInput = {
|
|
1017
|
+
url?: Maybe<Scalars['String']>;
|
|
1018
|
+
};
|
|
1019
|
+
export declare type IInstalledExtension = {
|
|
1020
|
+
__typename?: 'InstalledExtension';
|
|
1021
|
+
extension?: Maybe<IGalleryExtension>;
|
|
1022
|
+
identifier?: Maybe<IExtensionIdentifier>;
|
|
1023
|
+
galleryIdentifier?: Maybe<IExtensionIdentifier>;
|
|
1024
|
+
};
|
|
1025
|
+
export declare type IKeyBinding = {
|
|
1026
|
+
__typename?: 'KeyBinding';
|
|
1027
|
+
command?: Maybe<Scalars['String']>;
|
|
1028
|
+
key?: Maybe<Scalars['String']>;
|
|
1029
|
+
when?: Maybe<Scalars['String']>;
|
|
1030
|
+
mac?: Maybe<Scalars['String']>;
|
|
1031
|
+
linux?: Maybe<Scalars['String']>;
|
|
1032
|
+
win?: Maybe<Scalars['String']>;
|
|
1033
|
+
};
|
|
1034
|
+
export declare type ILocalization = {
|
|
1035
|
+
__typename?: 'Localization';
|
|
1036
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1037
|
+
languageName?: Maybe<Scalars['String']>;
|
|
1038
|
+
localizedLanguageName?: Maybe<Scalars['String']>;
|
|
1039
|
+
translations?: Maybe<Array<Maybe<ILocalizationTranslation>>>;
|
|
1040
|
+
minimalTranslations?: Maybe<Scalars['JSON']>;
|
|
1041
|
+
};
|
|
1042
|
+
export declare type ILocalizationTranslation = {
|
|
1043
|
+
__typename?: 'LocalizationTranslation';
|
|
1044
|
+
id?: Maybe<Scalars['ID']>;
|
|
1045
|
+
path?: Maybe<Scalars['String']>;
|
|
1046
|
+
};
|
|
1047
|
+
/**
|
|
1048
|
+
* Represents a location inside a resource, such as a line
|
|
1049
|
+
* inside a text file.
|
|
1050
|
+
*/
|
|
1051
|
+
export declare type ILocation = {
|
|
1052
|
+
rangeOrUri?: Maybe<IPosition>;
|
|
1053
|
+
uriRangeOrPosition?: Maybe<Scalars['String']>;
|
|
1054
|
+
range?: Maybe<IPosition>;
|
|
1055
|
+
uri?: Maybe<Scalars['String']>;
|
|
1056
|
+
};
|
|
1057
|
+
export declare type IMarkupContent = {
|
|
1058
|
+
value?: Maybe<Scalars['String']>;
|
|
1059
|
+
kind?: Maybe<IMarkupKind>;
|
|
1060
|
+
};
|
|
1061
|
+
export declare enum IMarkupKind {
|
|
1062
|
+
Plaintext = "plaintext",
|
|
1063
|
+
Markdown = "markdown"
|
|
1064
|
+
}
|
|
1065
|
+
export declare enum IMenuId {
|
|
1066
|
+
CommandPalette = "CommandPalette",
|
|
1067
|
+
MenubarAppearanceMenu = "MenubarAppearanceMenu",
|
|
1068
|
+
MenubarDebugMenu = "MenubarDebugMenu",
|
|
1069
|
+
MenubarEditMenu = "MenubarEditMenu",
|
|
1070
|
+
MenubarFileMenu = "MenubarFileMenu",
|
|
1071
|
+
MenubarGoMenu = "MenubarGoMenu",
|
|
1072
|
+
MenubarNewBreakpointMenu = "MenubarNewBreakpointMenu",
|
|
1073
|
+
MenubarPreferencesMenu = "MenubarPreferencesMenu",
|
|
1074
|
+
MenubarRecentMenu = "MenubarRecentMenu",
|
|
1075
|
+
MenubarSelectionMenu = "MenubarSelectionMenu",
|
|
1076
|
+
MenubarSwitchEditorMenu = "MenubarSwitchEditorMenu",
|
|
1077
|
+
MenubarSwitchGroupMenu = "MenubarSwitchGroupMenu",
|
|
1078
|
+
MenubarTeamMenu = "MenubarTeamMenu",
|
|
1079
|
+
MenubarViewMenu = "MenubarViewMenu",
|
|
1080
|
+
OpenEditorContext = "OpenEditorContext",
|
|
1081
|
+
ProblemsPanelContext = "ProblemsPanelContext",
|
|
1082
|
+
ScmChangeContext = "SCMChangeContext",
|
|
1083
|
+
ScmResourceContext = "SCMResourceContext",
|
|
1084
|
+
ScmResourceGroupContext = "SCMResourceGroupContext",
|
|
1085
|
+
ScmResourceControl = "SCMResourceControl",
|
|
1086
|
+
ScmTitle = "SCMTitle",
|
|
1087
|
+
SearchContext = "SearchContext",
|
|
1088
|
+
StatusBarWindowIndicatorMenu = "StatusBarWindowIndicatorMenu",
|
|
1089
|
+
TouchBarContext = "TouchBarContext",
|
|
1090
|
+
ViewItemContext = "ViewItemContext",
|
|
1091
|
+
ViewTitle = "ViewTitle",
|
|
1092
|
+
CommentThreadTitle = "CommentThreadTitle",
|
|
1093
|
+
CommentThreadActions = "CommentThreadActions",
|
|
1094
|
+
CommentTitle = "CommentTitle",
|
|
1095
|
+
CommentActions = "CommentActions"
|
|
1096
|
+
}
|
|
1097
|
+
export declare type IMenuItem = {
|
|
1098
|
+
__typename?: 'MenuItem';
|
|
1099
|
+
id?: Maybe<Scalars['String']>;
|
|
1100
|
+
label?: Maybe<Scalars['String']>;
|
|
1101
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
1102
|
+
run?: Maybe<IContributionActionRun>;
|
|
1103
|
+
};
|
|
1104
|
+
export declare type IMenuItemAction = {
|
|
1105
|
+
__typename?: 'MenuItemAction';
|
|
1106
|
+
action?: Maybe<Scalars['String']>;
|
|
1107
|
+
when?: Maybe<Scalars['String']>;
|
|
1108
|
+
};
|
|
1109
|
+
export declare type IMenuItemActionContext = {
|
|
1110
|
+
__typename?: 'MenuItemActionContext';
|
|
1111
|
+
context?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1112
|
+
};
|
|
1113
|
+
export declare type IMenuItemActionDebug = {
|
|
1114
|
+
__typename?: 'MenuItemActionDebug';
|
|
1115
|
+
callstack?: Maybe<IMenuItemActionContext>;
|
|
1116
|
+
toolbar?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1117
|
+
};
|
|
1118
|
+
export declare type IMenuItemActionEditor = {
|
|
1119
|
+
__typename?: 'MenuItemActionEditor';
|
|
1120
|
+
context?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1121
|
+
title?: Maybe<IMenuItemActionEditorTitle>;
|
|
1122
|
+
};
|
|
1123
|
+
export declare type IMenuItemActionEditorTitle = {
|
|
1124
|
+
__typename?: 'MenuItemActionEditorTitle';
|
|
1125
|
+
own?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1126
|
+
context?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1127
|
+
};
|
|
1128
|
+
export declare type IMenuItemActionScm = {
|
|
1129
|
+
__typename?: 'MenuItemActionScm';
|
|
1130
|
+
/** The Source Control title menu */
|
|
1131
|
+
title?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1132
|
+
/** The Source Control resource group context menu */
|
|
1133
|
+
resourceGroup?: Maybe<IMenuItemActionContext>;
|
|
1134
|
+
resource?: Maybe<IMenuItemActionContext>;
|
|
1135
|
+
change?: Maybe<IMenuItemActionScmChange>;
|
|
1136
|
+
};
|
|
1137
|
+
export declare type IMenuItemActionScmChange = {
|
|
1138
|
+
__typename?: 'MenuItemActionScmChange';
|
|
1139
|
+
title?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1140
|
+
};
|
|
1141
|
+
export declare type IMenuItemActionView = {
|
|
1142
|
+
__typename?: 'MenuItemActionView';
|
|
1143
|
+
/** The contributed view title menu */
|
|
1144
|
+
title?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1145
|
+
/** The contributed view item context menu */
|
|
1146
|
+
item?: Maybe<IMenuItemActionContext>;
|
|
1147
|
+
};
|
|
1148
|
+
export declare type IMenuItemInput = {
|
|
1149
|
+
id?: Maybe<Scalars['String']>;
|
|
1150
|
+
label?: Maybe<Scalars['String']>;
|
|
1151
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
1152
|
+
run?: Maybe<IContributionActionRunInput>;
|
|
1153
|
+
};
|
|
1154
|
+
export declare type IMenus = {
|
|
1155
|
+
__typename?: 'Menus';
|
|
1156
|
+
/** The Command Palette */
|
|
1157
|
+
commandPalette?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1158
|
+
/** The file explorer */
|
|
1159
|
+
explorer?: Maybe<IMenuItemActionContext>;
|
|
1160
|
+
/** The editor */
|
|
1161
|
+
editor?: Maybe<IMenuItemActionEditor>;
|
|
1162
|
+
/** The debug */
|
|
1163
|
+
debug?: Maybe<IMenuItemActionDebug>;
|
|
1164
|
+
/** The Source Control */
|
|
1165
|
+
scm?: Maybe<IMenuItemActionScm>;
|
|
1166
|
+
/** The contributed view */
|
|
1167
|
+
view?: Maybe<IMenuItemActionView>;
|
|
1168
|
+
/** The touch bar (macOS only) */
|
|
1169
|
+
touchBar?: Maybe<Array<Maybe<IMenuItemAction>>>;
|
|
1170
|
+
};
|
|
1171
|
+
export declare type IMessageLink = {
|
|
1172
|
+
__typename?: 'MessageLink';
|
|
1173
|
+
name?: Maybe<Scalars['String']>;
|
|
1174
|
+
href?: Maybe<Scalars['String']>;
|
|
1175
|
+
offset?: Maybe<Scalars['Int']>;
|
|
1176
|
+
length?: Maybe<Scalars['Int']>;
|
|
1177
|
+
};
|
|
1178
|
+
export declare type IMessageLinkInput = {
|
|
1179
|
+
name?: Maybe<Scalars['String']>;
|
|
1180
|
+
href?: Maybe<Scalars['String']>;
|
|
1181
|
+
offset?: Maybe<Scalars['Int']>;
|
|
1182
|
+
length?: Maybe<Scalars['Int']>;
|
|
1183
|
+
};
|
|
1184
|
+
/** All Moleculer Topic names are extended from this. */
|
|
1185
|
+
export declare enum IMoleculerServiceName {
|
|
1186
|
+
Dummy = "dummy"
|
|
1187
|
+
}
|
|
1188
|
+
export declare type IMutation = {
|
|
1189
|
+
__typename?: 'Mutation';
|
|
1190
|
+
activate?: Maybe<Scalars['Boolean']>;
|
|
1191
|
+
addNotification?: Maybe<Scalars['Boolean']>;
|
|
1192
|
+
closeNotification?: Maybe<Scalars['Boolean']>;
|
|
1193
|
+
codeLenseProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1194
|
+
completionProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1195
|
+
copy?: Maybe<Scalars['Boolean']>;
|
|
1196
|
+
/** Create a new extension in the extension registry. */
|
|
1197
|
+
createExtension: IRegistryExtension;
|
|
1198
|
+
definitionDefinition?: Maybe<Scalars['Observable']>;
|
|
1199
|
+
/**
|
|
1200
|
+
* Delete an extension from the extension registry.
|
|
1201
|
+
*
|
|
1202
|
+
* Only authorized extension publishers may perform this mutation.
|
|
1203
|
+
*/
|
|
1204
|
+
deleteExtension: IEmptyResponse;
|
|
1205
|
+
documentFormattingProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1206
|
+
documentHighLightProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1207
|
+
documentSymbolDefinition?: Maybe<Scalars['Observable']>;
|
|
1208
|
+
dummy?: Maybe<Scalars['Int']>;
|
|
1209
|
+
handler?: Maybe<Scalars['Boolean']>;
|
|
1210
|
+
hideContextMenu?: Maybe<Scalars['Boolean']>;
|
|
1211
|
+
hoverProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1212
|
+
install?: Maybe<IExtensionIdentifier>;
|
|
1213
|
+
notify?: Maybe<Scalars['Boolean']>;
|
|
1214
|
+
notifyError?: Maybe<Scalars['Boolean']>;
|
|
1215
|
+
notifyInfo?: Maybe<Scalars['Boolean']>;
|
|
1216
|
+
notifyPrompt?: Maybe<Scalars['Boolean']>;
|
|
1217
|
+
notifyWarn?: Maybe<Scalars['Boolean']>;
|
|
1218
|
+
openLanguageDocument?: Maybe<Scalars['Observable']>;
|
|
1219
|
+
/**
|
|
1220
|
+
* Publish an extension in the extension registry, creating it (if it doesn't yet exist) or updating it (if it
|
|
1221
|
+
* does).
|
|
1222
|
+
*
|
|
1223
|
+
* This is a helper that wraps multiple other GraphQL mutations to expose a single API for publishing an
|
|
1224
|
+
* extension.
|
|
1225
|
+
*/
|
|
1226
|
+
publishExtension: IExtensionRegistryPublishExtensionResult;
|
|
1227
|
+
referenceProviderDefinition?: Maybe<Scalars['Observable']>;
|
|
1228
|
+
removeExtension?: Maybe<Scalars['Boolean']>;
|
|
1229
|
+
renameDefinition?: Maybe<Scalars['Observable']>;
|
|
1230
|
+
runMenuAction?: Maybe<Scalars['Boolean']>;
|
|
1231
|
+
showContextMenu?: Maybe<Scalars['Boolean']>;
|
|
1232
|
+
startExtensionHost?: Maybe<Scalars['Boolean']>;
|
|
1233
|
+
/**
|
|
1234
|
+
* Update an extension in the extension registry.
|
|
1235
|
+
*
|
|
1236
|
+
* Only authorized extension publishers may perform this mutation.
|
|
1237
|
+
*/
|
|
1238
|
+
updateExtension: IRegistryExtension;
|
|
1239
|
+
/** @deprecated need to remove */
|
|
1240
|
+
updateModel?: Maybe<Scalars['Boolean']>;
|
|
1241
|
+
};
|
|
1242
|
+
export declare type IMutationActivateArgs = {
|
|
1243
|
+
request: IIActivationRequest;
|
|
1244
|
+
};
|
|
1245
|
+
export declare type IMutationAddNotificationArgs = {
|
|
1246
|
+
notification?: Maybe<INotificationInput>;
|
|
1247
|
+
};
|
|
1248
|
+
export declare type IMutationCloseNotificationArgs = {
|
|
1249
|
+
index?: Maybe<Scalars['Int']>;
|
|
1250
|
+
};
|
|
1251
|
+
export declare type IMutationCodeLenseProviderDefinitionArgs = {
|
|
1252
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1253
|
+
};
|
|
1254
|
+
export declare type IMutationCompletionProviderDefinitionArgs = {
|
|
1255
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1256
|
+
};
|
|
1257
|
+
export declare type IMutationCopyArgs = {
|
|
1258
|
+
value?: Maybe<Scalars['String']>;
|
|
1259
|
+
};
|
|
1260
|
+
export declare type IMutationCreateExtensionArgs = {
|
|
1261
|
+
publisher: Scalars['ID'];
|
|
1262
|
+
name: Scalars['String'];
|
|
1263
|
+
};
|
|
1264
|
+
export declare type IMutationDefinitionDefinitionArgs = {
|
|
1265
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1266
|
+
};
|
|
1267
|
+
export declare type IMutationDeleteExtensionArgs = {
|
|
1268
|
+
extension: Scalars['ID'];
|
|
1269
|
+
};
|
|
1270
|
+
export declare type IMutationDocumentFormattingProviderDefinitionArgs = {
|
|
1271
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1272
|
+
};
|
|
1273
|
+
export declare type IMutationDocumentHighLightProviderDefinitionArgs = {
|
|
1274
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1275
|
+
};
|
|
1276
|
+
export declare type IMutationDocumentSymbolDefinitionArgs = {
|
|
1277
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1278
|
+
};
|
|
1279
|
+
export declare type IMutationHandlerArgs = {
|
|
1280
|
+
arg?: Maybe<IContributionActionRunInput>;
|
|
1281
|
+
};
|
|
1282
|
+
export declare type IMutationHoverProviderDefinitionArgs = {
|
|
1283
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1284
|
+
};
|
|
1285
|
+
export declare type IMutationInstallArgs = {
|
|
1286
|
+
vsix: Scalars['String'];
|
|
1287
|
+
};
|
|
1288
|
+
export declare type IMutationNotifyArgs = {
|
|
1289
|
+
notification?: Maybe<INotificationInput>;
|
|
1290
|
+
};
|
|
1291
|
+
export declare type IMutationNotifyErrorArgs = {
|
|
1292
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1293
|
+
};
|
|
1294
|
+
export declare type IMutationNotifyInfoArgs = {
|
|
1295
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1296
|
+
};
|
|
1297
|
+
export declare type IMutationNotifyPromptArgs = {
|
|
1298
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1299
|
+
message?: Maybe<Scalars['String']>;
|
|
1300
|
+
choices?: Maybe<Array<Maybe<IPromptChoiceInput>>>;
|
|
1301
|
+
options?: Maybe<IPromptOptionsInput>;
|
|
1302
|
+
};
|
|
1303
|
+
export declare type IMutationNotifyWarnArgs = {
|
|
1304
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1305
|
+
};
|
|
1306
|
+
export declare type IMutationOpenLanguageDocumentArgs = {
|
|
1307
|
+
params?: Maybe<IOpenDocumentParamsInput>;
|
|
1308
|
+
};
|
|
1309
|
+
export declare type IMutationPublishExtensionArgs = {
|
|
1310
|
+
name?: Maybe<Scalars['String']>;
|
|
1311
|
+
version?: Maybe<Scalars['String']>;
|
|
1312
|
+
extensionID: Scalars['String'];
|
|
1313
|
+
manifest: Scalars['String'];
|
|
1314
|
+
bundle?: Maybe<Scalars['String']>;
|
|
1315
|
+
sourceMap?: Maybe<Scalars['String']>;
|
|
1316
|
+
force?: Maybe<Scalars['Boolean']>;
|
|
1317
|
+
};
|
|
1318
|
+
export declare type IMutationReferenceProviderDefinitionArgs = {
|
|
1319
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1320
|
+
};
|
|
1321
|
+
export declare type IMutationRemoveExtensionArgs = {
|
|
1322
|
+
id: Scalars['String'];
|
|
1323
|
+
};
|
|
1324
|
+
export declare type IMutationRenameDefinitionArgs = {
|
|
1325
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1326
|
+
};
|
|
1327
|
+
export declare type IMutationRunMenuActionArgs = {
|
|
1328
|
+
argument?: Maybe<IContributionActionRunInput>;
|
|
1329
|
+
};
|
|
1330
|
+
export declare type IMutationShowContextMenuArgs = {
|
|
1331
|
+
delegate?: Maybe<IContextMenuInput>;
|
|
1332
|
+
};
|
|
1333
|
+
export declare type IMutationStartExtensionHostArgs = {
|
|
1334
|
+
request?: Maybe<Scalars['String']>;
|
|
1335
|
+
};
|
|
1336
|
+
export declare type IMutationUpdateExtensionArgs = {
|
|
1337
|
+
extension: Scalars['ID'];
|
|
1338
|
+
name?: Maybe<Scalars['String']>;
|
|
1339
|
+
};
|
|
1340
|
+
export declare type IMutationUpdateModelArgs = {
|
|
1341
|
+
model?: Maybe<IIModelInput>;
|
|
1342
|
+
};
|
|
1343
|
+
/** An object with an ID. */
|
|
1344
|
+
export declare type INode = {
|
|
1345
|
+
/** The ID of the node. */
|
|
1346
|
+
id: Scalars['ID'];
|
|
1347
|
+
};
|
|
1348
|
+
export declare type INotification = {
|
|
1349
|
+
__typename?: 'Notification';
|
|
1350
|
+
index?: Maybe<Scalars['Boolean']>;
|
|
1351
|
+
/** The severity of the notification. Either `Info`, `Warning` or `Error`. */
|
|
1352
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1353
|
+
/**
|
|
1354
|
+
* The message of the notification. This can either be a `string` or `Error`. Messages
|
|
1355
|
+
* can optionally include links in the format: `[text](link)`
|
|
1356
|
+
*/
|
|
1357
|
+
message?: Maybe<Scalars['String']>;
|
|
1358
|
+
/** The source of the notification appears as additional information. */
|
|
1359
|
+
source?: Maybe<Scalars['String']>;
|
|
1360
|
+
/**
|
|
1361
|
+
* ContributionActions to show as part of the notification. Primary actions show up as
|
|
1362
|
+
* buttons as part of the message and will clost the notification once clicked.
|
|
1363
|
+
*
|
|
1364
|
+
* Secondary actions are meant to provide additional configuration or context
|
|
1365
|
+
* for the notification and will show up less prominent. A notification does not
|
|
1366
|
+
* close automatically when invoking a secondary action.
|
|
1367
|
+
*
|
|
1368
|
+
* **Note:** If you intent is to show a message with actions to the user, consider
|
|
1369
|
+
* the `INotificationService.prompt()` method instead which are optimized for
|
|
1370
|
+
* this usecase and much easier to use!
|
|
1371
|
+
*/
|
|
1372
|
+
actions?: Maybe<INotificationActions>;
|
|
1373
|
+
/**
|
|
1374
|
+
* Sticky notifications are not automatically removed after a certain timeout. By
|
|
1375
|
+
* default, notifications with primary actions and severity error are always sticky.
|
|
1376
|
+
*/
|
|
1377
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1378
|
+
};
|
|
1379
|
+
export declare type INotificationActions = {
|
|
1380
|
+
__typename?: 'NotificationActions';
|
|
1381
|
+
/**
|
|
1382
|
+
* Primary actions show up as buttons as part of the message and will close
|
|
1383
|
+
* the notification once clicked.
|
|
1384
|
+
*/
|
|
1385
|
+
primary?: Maybe<Array<Maybe<IContributionAction>>>;
|
|
1386
|
+
/**
|
|
1387
|
+
* Secondary actions are meant to provide additional configuration or context
|
|
1388
|
+
* for the notification and will show up less prominent. A notification does not
|
|
1389
|
+
* close automatically when invoking a secondary action.
|
|
1390
|
+
*/
|
|
1391
|
+
secondary?: Maybe<Array<Maybe<IContributionAction>>>;
|
|
1392
|
+
};
|
|
1393
|
+
export declare type INotificationActionsInput = {
|
|
1394
|
+
primary?: Maybe<Array<Maybe<IContributionActionInput>>>;
|
|
1395
|
+
secondary?: Maybe<Array<Maybe<IContributionActionInput>>>;
|
|
1396
|
+
};
|
|
1397
|
+
export declare type INotificationChangeEvent = {
|
|
1398
|
+
__typename?: 'NotificationChangeEvent';
|
|
1399
|
+
/** The index this notification has in the list of notifications. */
|
|
1400
|
+
index?: Maybe<Scalars['Int']>;
|
|
1401
|
+
/** The notification this change is about. */
|
|
1402
|
+
item?: Maybe<INotificationViewItem>;
|
|
1403
|
+
/** The kind of notification change. */
|
|
1404
|
+
kind?: Maybe<INotificationChangeType>;
|
|
1405
|
+
};
|
|
1406
|
+
export declare enum INotificationChangeType {
|
|
1407
|
+
Add = "ADD",
|
|
1408
|
+
Change = "CHANGE",
|
|
1409
|
+
Remove = "REMOVE"
|
|
1410
|
+
}
|
|
1411
|
+
export declare type INotificationInput = {
|
|
1412
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1413
|
+
message?: Maybe<INotificationMessageInput>;
|
|
1414
|
+
source?: Maybe<Scalars['String']>;
|
|
1415
|
+
actions?: Maybe<INotificationActionsInput>;
|
|
1416
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1417
|
+
};
|
|
1418
|
+
export declare type INotificationMessage = {
|
|
1419
|
+
__typename?: 'NotificationMessage';
|
|
1420
|
+
raw?: Maybe<Scalars['String']>;
|
|
1421
|
+
original?: Maybe<INotificationMessage>;
|
|
1422
|
+
value?: Maybe<Scalars['String']>;
|
|
1423
|
+
links?: Maybe<Array<Maybe<IMessageLink>>>;
|
|
1424
|
+
};
|
|
1425
|
+
export declare type INotificationMessageInput = {
|
|
1426
|
+
raw?: Maybe<Scalars['String']>;
|
|
1427
|
+
original?: Maybe<INotificationMessageInput>;
|
|
1428
|
+
value?: Maybe<Scalars['String']>;
|
|
1429
|
+
links?: Maybe<Array<Maybe<IMessageLinkInput>>>;
|
|
1430
|
+
};
|
|
1431
|
+
export declare enum INotificationSeverity {
|
|
1432
|
+
Ignore = "Ignore",
|
|
1433
|
+
Info = "Info",
|
|
1434
|
+
Warning = "Warning",
|
|
1435
|
+
Error = "Error"
|
|
1436
|
+
}
|
|
1437
|
+
export declare type INotificationViewItem = {
|
|
1438
|
+
__typename?: 'NotificationViewItem';
|
|
1439
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1440
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1441
|
+
silent?: Maybe<Scalars['Boolean']>;
|
|
1442
|
+
message?: Maybe<INotificationMessage>;
|
|
1443
|
+
source?: Maybe<Scalars['String']>;
|
|
1444
|
+
action?: Maybe<INotificationActions>;
|
|
1445
|
+
progress?: Maybe<INotificationViewItemProgress>;
|
|
1446
|
+
expanded?: Maybe<Scalars['Boolean']>;
|
|
1447
|
+
canCollapse?: Maybe<Scalars['Boolean']>;
|
|
1448
|
+
};
|
|
1449
|
+
export declare enum INotificationViewItemLabelKind {
|
|
1450
|
+
Severity = "SEVERITY",
|
|
1451
|
+
Message = "MESSAGE",
|
|
1452
|
+
Actions = "ACTIONS",
|
|
1453
|
+
Progress = "PROGRESS"
|
|
1454
|
+
}
|
|
1455
|
+
export declare type INotificationViewItemProgress = {
|
|
1456
|
+
__typename?: 'NotificationViewItemProgress';
|
|
1457
|
+
state?: Maybe<INotificationViewItemProgressState>;
|
|
1458
|
+
};
|
|
1459
|
+
export declare type INotificationViewItemProgressState = {
|
|
1460
|
+
__typename?: 'NotificationViewItemProgressState';
|
|
1461
|
+
/** Causes the progress bar to spin infinitely. */
|
|
1462
|
+
infinite?: Maybe<Scalars['Boolean']>;
|
|
1463
|
+
/** Indicate the total amount of work. */
|
|
1464
|
+
total?: Maybe<Scalars['Int']>;
|
|
1465
|
+
/** Indicate that a specific chunk of work is done. */
|
|
1466
|
+
worked?: Maybe<Scalars['Int']>;
|
|
1467
|
+
/** Indicate that the long running operation is done. */
|
|
1468
|
+
done?: Maybe<Scalars['Boolean']>;
|
|
1469
|
+
};
|
|
1470
|
+
export declare type INotifications = {
|
|
1471
|
+
__typename?: 'Notifications';
|
|
1472
|
+
notifications?: Maybe<Array<Maybe<INotification>>>;
|
|
1473
|
+
};
|
|
1474
|
+
export declare type IOpenDocumentParamsInput = {
|
|
1475
|
+
textDocument?: Maybe<IOpenDocumentTextParamsInput>;
|
|
1476
|
+
};
|
|
1477
|
+
export declare type IOpenDocumentTextParamsInput = {
|
|
1478
|
+
uri?: Maybe<Scalars['String']>;
|
|
1479
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1480
|
+
version?: Maybe<Scalars['Int']>;
|
|
1481
|
+
text?: Maybe<Scalars['String']>;
|
|
1482
|
+
};
|
|
1483
|
+
export declare type IPageInfo = {
|
|
1484
|
+
__typename?: 'PageInfo';
|
|
1485
|
+
hasNextPage: Scalars['Boolean'];
|
|
1486
|
+
};
|
|
1487
|
+
/**
|
|
1488
|
+
* @lsp - Position in a text document expressed as zero-based line and character offset.
|
|
1489
|
+
* The offsets are based on UTF-16 string representation. So a string of the form
|
|
1490
|
+
* `a𐐀b` the character offset of b is 3 since `𐐀` is represented using two code
|
|
1491
|
+
* untis in UTF-16.
|
|
1492
|
+
*
|
|
1493
|
+
* Positions are line end character agnostic. So you can not specify a position that
|
|
1494
|
+
* denotes `\r|\n` or `\n"` where `|` represents the character offset.
|
|
1495
|
+
*
|
|
1496
|
+
*
|
|
1497
|
+
* @editor - A position in the editor.
|
|
1498
|
+
*/
|
|
1499
|
+
export declare type IPosition = {
|
|
1500
|
+
__typename?: 'Position';
|
|
1501
|
+
/** @editor - line number (starts at 1) */
|
|
1502
|
+
lineNumber?: Maybe<Scalars['Int']>;
|
|
1503
|
+
/** @editor - column (the first character in a line is between column 1 and column 2) */
|
|
1504
|
+
column?: Maybe<Scalars['Int']>;
|
|
1505
|
+
/**
|
|
1506
|
+
* @lsp - Line position in a document (zero-based).
|
|
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.
|
|
1508
|
+
* If a line number is negative, it defaults to 0.
|
|
1509
|
+
*/
|
|
1510
|
+
line?: Maybe<Scalars['Int']>;
|
|
1511
|
+
/**
|
|
1512
|
+
* @lsp - Character offset on a line in a document (zer-based). Assuming that the line is represented as a string, the
|
|
1513
|
+
* `character` value represents the gap between the `character` and `character+1`.
|
|
1514
|
+
*
|
|
1515
|
+
* If the character value is greater than the line length it defaults back to the
|
|
1516
|
+
* line length.
|
|
1517
|
+
* If a line number is negative, it defaults to 0.
|
|
1518
|
+
*/
|
|
1519
|
+
character?: Maybe<Scalars['Int']>;
|
|
1520
|
+
};
|
|
1521
|
+
export declare type IPositionInput = {
|
|
1522
|
+
line?: Maybe<Scalars['Int']>;
|
|
1523
|
+
character?: Maybe<Scalars['Int']>;
|
|
1524
|
+
lineNumber?: Maybe<Scalars['Int']>;
|
|
1525
|
+
column?: Maybe<Scalars['Int']>;
|
|
1526
|
+
};
|
|
1527
|
+
export declare type IProcessMonitoring = {
|
|
1528
|
+
__typename?: 'ProcessMonitoring';
|
|
1529
|
+
cpu?: Maybe<Scalars['Float']>;
|
|
1530
|
+
memory?: Maybe<Scalars['Float']>;
|
|
1531
|
+
};
|
|
1532
|
+
export declare type IPromptChoiceInput = {
|
|
1533
|
+
/** Label to show for the choice to the user. */
|
|
1534
|
+
label?: Maybe<Scalars['String']>;
|
|
1535
|
+
/**
|
|
1536
|
+
* Primary choices show up as buttons in the notification below the message.
|
|
1537
|
+
* Secondary choices show up under the gear icon in the header of the notification.
|
|
1538
|
+
*/
|
|
1539
|
+
isSecondary?: Maybe<Scalars['Boolean']>;
|
|
1540
|
+
/**
|
|
1541
|
+
* Whether to keep the notification open after the choice was selected
|
|
1542
|
+
* by the user. By default, will close the notification upon click.
|
|
1543
|
+
*/
|
|
1544
|
+
keepOpen?: Maybe<Scalars['Boolean']>;
|
|
1545
|
+
/** Triggered when the user selects the choice. */
|
|
1546
|
+
run?: Maybe<IPromptChoiceRun>;
|
|
1547
|
+
};
|
|
1548
|
+
export declare type IPromptChoiceRun = {
|
|
1549
|
+
type?: Maybe<IGraphqlCallType>;
|
|
1550
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
1551
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
1552
|
+
};
|
|
1553
|
+
export declare type IPromptOptionsCancel = {
|
|
1554
|
+
type?: Maybe<IGraphqlCallType>;
|
|
1555
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
1556
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
1557
|
+
};
|
|
1558
|
+
export declare type IPromptOptionsInput = {
|
|
1559
|
+
/**
|
|
1560
|
+
* Sticky prompts are not automatically removed after a certain timeout.
|
|
1561
|
+
*
|
|
1562
|
+
* Note: Prompts of severity ERROR are always sticky.
|
|
1563
|
+
*/
|
|
1564
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1565
|
+
/**
|
|
1566
|
+
* Silent notifications are not shown to the user unless the notification center is opened.
|
|
1567
|
+
* The status bar will still indicate all number of notifications to
|
|
1568
|
+
* catch some attention.
|
|
1569
|
+
*/
|
|
1570
|
+
silent?: Maybe<Scalars['Boolean']>;
|
|
1571
|
+
/**
|
|
1572
|
+
* Will be called if the user closed the notification without picking
|
|
1573
|
+
* any of the provided choices.
|
|
1574
|
+
*/
|
|
1575
|
+
onCancel?: Maybe<IPromptOptionsCancel>;
|
|
1576
|
+
};
|
|
1577
|
+
export declare type IProvideTextDocumentLocationSignature = ITextDocumentPositionParams & ILocation & {
|
|
1578
|
+
__typename?: 'ProvideTextDocumentLocationSignature';
|
|
1579
|
+
textDocument?: Maybe<ITextDocumentIdentifier>;
|
|
1580
|
+
position?: Maybe<IPosition>;
|
|
1581
|
+
rangeOrUri?: Maybe<IPosition>;
|
|
1582
|
+
uriRangeOrPosition?: Maybe<Scalars['String']>;
|
|
1583
|
+
range?: Maybe<IPosition>;
|
|
1584
|
+
uri?: Maybe<Scalars['String']>;
|
|
1585
|
+
};
|
|
1586
|
+
export declare type IProvideTextDocumentLocationSignatureInput = {
|
|
1587
|
+
textDocument?: Maybe<ITextDocumentIdentifierInput>;
|
|
1588
|
+
position?: Maybe<IPositionInput>;
|
|
1589
|
+
rangeOrUri?: Maybe<IPositionInput>;
|
|
1590
|
+
uriRangeOrPosition?: Maybe<Scalars['String']>;
|
|
1591
|
+
range?: Maybe<IPositionInput>;
|
|
1592
|
+
uri?: Maybe<Scalars['String']>;
|
|
1593
|
+
};
|
|
1594
|
+
export declare type IQuery = {
|
|
1595
|
+
__typename?: 'Query';
|
|
1596
|
+
contextMenu?: Maybe<IContextMenu>;
|
|
1597
|
+
/**
|
|
1598
|
+
* The CDECode documentation page for the given path, used to serve the content for help
|
|
1599
|
+
* pages under the URL path /help on the CDECode instance. If no page exists at the path,
|
|
1600
|
+
* null is returned.
|
|
1601
|
+
*/
|
|
1602
|
+
docSitePage?: Maybe<IDocSitePage>;
|
|
1603
|
+
extension?: Maybe<IRegistryExtension>;
|
|
1604
|
+
/** The extension registry. */
|
|
1605
|
+
extensionRegistry: IExtensionRegistry;
|
|
1606
|
+
extensions: IRegistryExtensionConnection;
|
|
1607
|
+
gallery?: Maybe<IGalleryPager>;
|
|
1608
|
+
galleryExtension?: Maybe<IGalleryExtension>;
|
|
1609
|
+
installed?: Maybe<Array<Maybe<IInstalledExtension>>>;
|
|
1610
|
+
instances?: Maybe<Array<Maybe<IExtensionInstance>>>;
|
|
1611
|
+
/** Looks up a node by ID. */
|
|
1612
|
+
node?: Maybe<INode>;
|
|
1613
|
+
notifications?: Maybe<INotifications>;
|
|
1614
|
+
registerProvider?: Maybe<Scalars['Boolean']>;
|
|
1615
|
+
releases?: Maybe<Array<Maybe<IExtensionRelease>>>;
|
|
1616
|
+
showNotification?: Maybe<Scalars['Boolean']>;
|
|
1617
|
+
};
|
|
1618
|
+
export declare type IQueryDocSitePageArgs = {
|
|
1619
|
+
path: Scalars['String'];
|
|
1620
|
+
};
|
|
1621
|
+
export declare type IQueryExtensionArgs = {
|
|
1622
|
+
extensionID: Scalars['String'];
|
|
1623
|
+
};
|
|
1624
|
+
export declare type IQueryExtensionsArgs = {
|
|
1625
|
+
first?: Maybe<Scalars['Int']>;
|
|
1626
|
+
query?: Maybe<Scalars['String']>;
|
|
1627
|
+
local?: Maybe<Scalars['Boolean']>;
|
|
1628
|
+
remote?: Maybe<Scalars['Boolean']>;
|
|
1629
|
+
prioritizeExtensionIDs?: Maybe<Array<Scalars['String']>>;
|
|
1630
|
+
includeWIP?: Maybe<Scalars['Boolean']>;
|
|
1631
|
+
};
|
|
1632
|
+
export declare type IQueryGalleryArgs = {
|
|
1633
|
+
query?: Maybe<IGalleryQueryInput>;
|
|
1634
|
+
};
|
|
1635
|
+
export declare type IQueryGalleryExtensionArgs = {
|
|
1636
|
+
extensionID: Scalars['String'];
|
|
1637
|
+
};
|
|
1638
|
+
export declare type IQueryNodeArgs = {
|
|
1639
|
+
id: Scalars['ID'];
|
|
1640
|
+
};
|
|
1641
|
+
export declare type IQueryRegisterProviderArgs = {
|
|
1642
|
+
registrationOptions?: Maybe<ITextDocumentRegistrationOptionsInput>;
|
|
1643
|
+
provider?: Maybe<IProvideTextDocumentLocationSignatureInput>;
|
|
1644
|
+
};
|
|
1645
|
+
export declare type IQueryReleasesArgs = {
|
|
1646
|
+
extensionID: Scalars['String'];
|
|
1647
|
+
};
|
|
1648
|
+
export declare type IQueryShowNotificationArgs = {
|
|
1649
|
+
notification?: Maybe<INotificationInput>;
|
|
1650
|
+
};
|
|
1651
|
+
/**
|
|
1652
|
+
* @lsp - A range in a text document expressed as (zero-based) start and end positions. A range is comparable to a
|
|
1653
|
+
* section in an editor. Therefore the end position is exclusive. If you want to specify a range that contains a line
|
|
1654
|
+
* including the line ending character(s) then use an end pisition denoting the start of the next line. For example:
|
|
1655
|
+
* ```
|
|
1656
|
+
* {
|
|
1657
|
+
* start: { line: 5, character: 23 },
|
|
1658
|
+
* end : { line 6, character : 0 }
|
|
1659
|
+
* }
|
|
1660
|
+
* ```
|
|
1661
|
+
*
|
|
1662
|
+
* @editor - A range in the editor. This interface is suitable for serialization.
|
|
1663
|
+
*/
|
|
1664
|
+
export declare type IRange = {
|
|
1665
|
+
__typename?: 'Range';
|
|
1666
|
+
/**
|
|
1667
|
+
* @lsp
|
|
1668
|
+
* The range's start position.
|
|
1669
|
+
*/
|
|
1670
|
+
start?: Maybe<IPosition>;
|
|
1671
|
+
/**
|
|
1672
|
+
* @lsp
|
|
1673
|
+
* The range's end position.
|
|
1674
|
+
*/
|
|
1675
|
+
end?: Maybe<IPosition>;
|
|
1676
|
+
/** @editor - Line number on which the range starts (starts at 1). */
|
|
1677
|
+
startLineNumber?: Maybe<Scalars['Int']>;
|
|
1678
|
+
/** @editor - Column on which the range starts in the line `startLineNumber` (starts at 1). */
|
|
1679
|
+
startColumn?: Maybe<Scalars['Int']>;
|
|
1680
|
+
/** @editor - Line number on which the range ends. */
|
|
1681
|
+
endLineNumber?: Maybe<Scalars['Int']>;
|
|
1682
|
+
/** @editor - Column on which the range ends in the line `endLineNumber` */
|
|
1683
|
+
endColumn?: Maybe<Scalars['Int']>;
|
|
1684
|
+
};
|
|
1685
|
+
export declare type IRangeInput = {
|
|
1686
|
+
endColumn?: Maybe<Scalars['Int']>;
|
|
1687
|
+
endLineNumber?: Maybe<Scalars['Int']>;
|
|
1688
|
+
startColumn?: Maybe<Scalars['Int']>;
|
|
1689
|
+
startLineNumber?: Maybe<Scalars['Int']>;
|
|
1690
|
+
};
|
|
1691
|
+
export declare type IRegistryEntry = {
|
|
1692
|
+
__typename?: 'RegistryEntry';
|
|
1693
|
+
registrationOptions?: Maybe<ITextDocumentRegistrationOptions>;
|
|
1694
|
+
provider?: Maybe<Scalars['String']>;
|
|
1695
|
+
};
|
|
1696
|
+
/** An extenion's listing in the extension registry. */
|
|
1697
|
+
export declare type IRegistryExtension = INode & {
|
|
1698
|
+
__typename?: 'RegistryExtension';
|
|
1699
|
+
/**
|
|
1700
|
+
* The unique, opaque, permanent ID of the extension. Do not display this ID to the user; display
|
|
1701
|
+
* RegistryExtension.extensionID instead (it is friendlier and still unique, but it can be renamed).
|
|
1702
|
+
*/
|
|
1703
|
+
id: Scalars['ID'];
|
|
1704
|
+
/**
|
|
1705
|
+
* The UUID of the extension. This identifies the extension externally (along with the origin). The UUID maps
|
|
1706
|
+
* 1-t0-1 to RegistryExtension.id.
|
|
1707
|
+
*/
|
|
1708
|
+
uuid: Scalars['String'];
|
|
1709
|
+
/** The publisher of the extension. If this extension is from a remote registry, the publisher may be null. */
|
|
1710
|
+
publisher?: Maybe<IRegistryPublisher>;
|
|
1711
|
+
/**
|
|
1712
|
+
* The qualified, unique name that refers to this extension, consisting of the registry name (if non-default),
|
|
1713
|
+
* publisher's name, and the extension's name, all joined by "/" (for example, "cdecode/my-extension-name").
|
|
1714
|
+
*/
|
|
1715
|
+
extensionID?: Maybe<Scalars['String']>;
|
|
1716
|
+
/** The extension ID without the registry name. */
|
|
1717
|
+
extensionIDWithoutRegistry?: Maybe<Scalars['String']>;
|
|
1718
|
+
/** The name of the extension (not including the publisher's name). */
|
|
1719
|
+
name: Scalars['String'];
|
|
1720
|
+
/** Latest Published version */
|
|
1721
|
+
version?: Maybe<Scalars['String']>;
|
|
1722
|
+
activationEvents?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1723
|
+
/** The extension manifest, or null if none is set. */
|
|
1724
|
+
manifest?: Maybe<IExtensionManifest>;
|
|
1725
|
+
/** The date when this extension was last updated on the registry. */
|
|
1726
|
+
updatedAt?: Maybe<Scalars['String']>;
|
|
1727
|
+
/** The URL to the extension on this CDECode site. */
|
|
1728
|
+
url?: Maybe<Scalars['String']>;
|
|
1729
|
+
/**
|
|
1730
|
+
* The URL to the extension on the extension registry where it lives (if this is a remote
|
|
1731
|
+
* extension). If this extension is local, then this field's value is null.
|
|
1732
|
+
*/
|
|
1733
|
+
remoteURL?: Maybe<Scalars['String']>;
|
|
1734
|
+
/** Whether the registry extension is published on this CDECode site. */
|
|
1735
|
+
isLocal?: Maybe<Scalars['Boolean']>;
|
|
1736
|
+
/** Whether the viewer has admin privileges on this registry extension. */
|
|
1737
|
+
viewerCanAdminister?: Maybe<Scalars['Boolean']>;
|
|
1738
|
+
/** Extension Releases */
|
|
1739
|
+
releases?: Maybe<Array<Maybe<IExtensionRelease>>>;
|
|
1740
|
+
};
|
|
1741
|
+
/** A list of registry extensions. */
|
|
1742
|
+
export declare type IRegistryExtensionConnection = {
|
|
1743
|
+
__typename?: 'RegistryExtensionConnection';
|
|
1744
|
+
/** A list of registry extensions. */
|
|
1745
|
+
nodes: Array<IRegistryExtension>;
|
|
1746
|
+
/**
|
|
1747
|
+
* The total count of registry extensions in the connection. This total cound may be larger than the number of
|
|
1748
|
+
* nodes in this object when the result is paginated.
|
|
1749
|
+
*/
|
|
1750
|
+
totalCount: Scalars['Int'];
|
|
1751
|
+
/** Pagination information */
|
|
1752
|
+
pageInfo: IPageInfo;
|
|
1753
|
+
/** location of the extension path for example: /extensions/<extension_user>/<extension_name> */
|
|
1754
|
+
url?: Maybe<Scalars['String']>;
|
|
1755
|
+
/**
|
|
1756
|
+
* Errors that occured while communicating with remote registries to obtain the list of extensions.
|
|
1757
|
+
*
|
|
1758
|
+
* In order to be able to return local extensions even when the remote registry is unreachable, errors are
|
|
1759
|
+
* recorded here instead of in the top-level GraphQL errors list.
|
|
1760
|
+
*/
|
|
1761
|
+
error?: Maybe<Scalars['String']>;
|
|
1762
|
+
};
|
|
1763
|
+
/** A publisher of a registry extension. */
|
|
1764
|
+
export declare type IRegistryPublisher = {
|
|
1765
|
+
__typename?: 'RegistryPublisher';
|
|
1766
|
+
UserId?: Maybe<Scalars['String']>;
|
|
1767
|
+
};
|
|
1768
|
+
/** A list of publishers of extensions in the registry. */
|
|
1769
|
+
export declare type IRegistryPublisherConnection = {
|
|
1770
|
+
__typename?: 'RegistryPublisherConnection';
|
|
1771
|
+
/** A list of publishers. */
|
|
1772
|
+
nodes: Array<IRegistryPublisher>;
|
|
1773
|
+
/**
|
|
1774
|
+
* The total count of publishers in the connection. This total count may be larger than the number of
|
|
1775
|
+
* nodes in the object when result is paginated.
|
|
1776
|
+
*/
|
|
1777
|
+
totalCount: Scalars['Int'];
|
|
1778
|
+
/** Pagination information. */
|
|
1779
|
+
pageInfo: IPageInfo;
|
|
1780
|
+
};
|
|
1781
|
+
export declare type IScripts = {
|
|
1782
|
+
__typename?: 'Scripts';
|
|
1783
|
+
cdebasebuild?: Maybe<Scalars['String']>;
|
|
1784
|
+
cdebasepublish?: Maybe<Scalars['String']>;
|
|
1785
|
+
};
|
|
1786
|
+
export declare type ISnippet = {
|
|
1787
|
+
__typename?: 'Snippet';
|
|
1788
|
+
language?: Maybe<Scalars['String']>;
|
|
1789
|
+
};
|
|
1790
|
+
export declare type ISort = {
|
|
1791
|
+
key: Scalars['String'];
|
|
1792
|
+
value: ISortEnum;
|
|
1793
|
+
};
|
|
1794
|
+
export declare enum ISortEnum {
|
|
1795
|
+
Asc = "ASC",
|
|
1796
|
+
Desc = "DESC"
|
|
1797
|
+
}
|
|
1798
|
+
export declare type ISubscription = {
|
|
1799
|
+
__typename?: 'Subscription';
|
|
1800
|
+
dummy?: Maybe<Scalars['Int']>;
|
|
1801
|
+
};
|
|
1802
|
+
export declare type ITextDocumentIdentifier = IITextDocumentIdentifier & {
|
|
1803
|
+
__typename?: 'TextDocumentIdentifier';
|
|
1804
|
+
uri?: Maybe<Scalars['URI']>;
|
|
1805
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1806
|
+
};
|
|
1807
|
+
export declare type ITextDocumentIdentifierInput = {
|
|
1808
|
+
uri?: Maybe<Scalars['URI']>;
|
|
1809
|
+
};
|
|
1810
|
+
/** An item to transfer a text document from the client to the server. */
|
|
1811
|
+
export declare type ITextDocumentItem = IITextDocumentIdentifier & {
|
|
1812
|
+
__typename?: 'TextDocumentItem';
|
|
1813
|
+
uri?: Maybe<Scalars['URI']>;
|
|
1814
|
+
/** The ID of the document's language. This is a well-defined string identifier such as "phython". */
|
|
1815
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1816
|
+
/** The document's text content. */
|
|
1817
|
+
text?: Maybe<Scalars['String']>;
|
|
1818
|
+
};
|
|
1819
|
+
export declare type ITextDocumentItemInput = {
|
|
1820
|
+
uri?: Maybe<Scalars['String']>;
|
|
1821
|
+
languageId?: Maybe<Scalars['String']>;
|
|
1822
|
+
text?: Maybe<Scalars['String']>;
|
|
1823
|
+
};
|
|
1824
|
+
export declare type ITextDocumentPositionParams = {
|
|
1825
|
+
textDocument?: Maybe<ITextDocumentIdentifier>;
|
|
1826
|
+
position?: Maybe<IPosition>;
|
|
1827
|
+
};
|
|
1828
|
+
export declare type ITextDocumentPositionParamsInput = {
|
|
1829
|
+
textDocument?: Maybe<ITextDocumentIdentifierInput>;
|
|
1830
|
+
position?: Maybe<IPositionInput>;
|
|
1831
|
+
};
|
|
1832
|
+
export declare type ITextDocumentRegistrationOptions = {
|
|
1833
|
+
__typename?: 'TextDocumentRegistrationOptions';
|
|
1834
|
+
documentSelector?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1835
|
+
};
|
|
1836
|
+
export declare type ITextDocumentRegistrationOptionsInput = {
|
|
1837
|
+
documentSelector?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
1838
|
+
};
|
|
1839
|
+
export declare type IThemeLabel = {
|
|
1840
|
+
__typename?: 'ThemeLabel';
|
|
1841
|
+
label?: Maybe<Scalars['String']>;
|
|
1842
|
+
uiTheme?: Maybe<Scalars['String']>;
|
|
1843
|
+
path?: Maybe<Scalars['String']>;
|
|
1844
|
+
};
|
|
1845
|
+
export declare type IViewContainer = {
|
|
1846
|
+
__typename?: 'ViewContainer';
|
|
1847
|
+
id?: Maybe<Scalars['ID']>;
|
|
1848
|
+
title?: Maybe<Scalars['String']>;
|
|
1849
|
+
};
|
|
1850
|
+
export declare type ICopyMutationVariables = Exact<{
|
|
1851
|
+
value?: Maybe<Scalars['String']>;
|
|
1852
|
+
}>;
|
|
1853
|
+
export declare type ICopyMutation = ({
|
|
1854
|
+
__typename?: 'Mutation';
|
|
1855
|
+
} & Pick<IMutation, 'copy'>);
|
|
1856
|
+
export declare type IRunMenuActionMutationVariables = Exact<{
|
|
1857
|
+
argument?: Maybe<IContributionActionRunInput>;
|
|
1858
|
+
}>;
|
|
1859
|
+
export declare type IRunMenuActionMutation = ({
|
|
1860
|
+
__typename?: 'Mutation';
|
|
1861
|
+
} & Pick<IMutation, 'runMenuAction'>);
|
|
1862
|
+
export declare type IHideContextMenuMutationVariables = Exact<{
|
|
1863
|
+
[key: string]: never;
|
|
1864
|
+
}>;
|
|
1865
|
+
export declare type IHideContextMenuMutation = ({
|
|
1866
|
+
__typename?: 'Mutation';
|
|
1867
|
+
} & Pick<IMutation, 'hideContextMenu'>);
|
|
1868
|
+
export declare type IShowContextMenuMutationVariables = Exact<{
|
|
1869
|
+
delegate?: Maybe<IContextMenuInput>;
|
|
1870
|
+
}>;
|
|
1871
|
+
export declare type IShowContextMenuMutation = ({
|
|
1872
|
+
__typename?: 'Mutation';
|
|
1873
|
+
} & Pick<IMutation, 'showContextMenu'>);
|
|
1874
|
+
export declare type IInstallMutationVariables = Exact<{
|
|
1875
|
+
vsix: Scalars['String'];
|
|
1876
|
+
}>;
|
|
1877
|
+
export declare type IInstallMutation = ({
|
|
1878
|
+
__typename?: 'Mutation';
|
|
1879
|
+
} & {
|
|
1880
|
+
install?: Maybe<({
|
|
1881
|
+
__typename?: 'ExtensionIdentifier';
|
|
1882
|
+
} & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
|
|
1883
|
+
});
|
|
1884
|
+
export declare type IProviderDefinitionMutationVariables = Exact<{
|
|
1885
|
+
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1886
|
+
}>;
|
|
1887
|
+
export declare type IProviderDefinitionMutation = ({
|
|
1888
|
+
__typename?: 'Mutation';
|
|
1889
|
+
} & Pick<IMutation, 'hoverProviderDefinition'>);
|
|
1890
|
+
export declare type IRemoveMutationVariables = Exact<{
|
|
1891
|
+
id: Scalars['String'];
|
|
1892
|
+
}>;
|
|
1893
|
+
export declare type IRemoveMutation = ({
|
|
1894
|
+
__typename?: 'Mutation';
|
|
1895
|
+
} & Pick<IMutation, 'removeExtension'>);
|
|
1896
|
+
export declare type IContextMenuQueryVariables = Exact<{
|
|
1897
|
+
[key: string]: never;
|
|
1898
|
+
}>;
|
|
1899
|
+
export declare type IContextMenuQuery = ({
|
|
1900
|
+
__typename?: 'Query';
|
|
1901
|
+
} & {
|
|
1902
|
+
contextMenu?: Maybe<({
|
|
1903
|
+
__typename?: 'ContextMenu';
|
|
1904
|
+
} & Pick<IContextMenu, 'id' | 'isShow'> & {
|
|
1905
|
+
anchor?: Maybe<({
|
|
1906
|
+
__typename?: 'Anchor';
|
|
1907
|
+
} & Pick<IAnchor, 'x' | 'y' | 'height' | 'width'>)>;
|
|
1908
|
+
menuItems?: Maybe<Array<Maybe<({
|
|
1909
|
+
__typename?: 'MenuItem';
|
|
1910
|
+
} & Pick<IMenuItem, 'id' | 'label' | 'enabled'> & {
|
|
1911
|
+
run?: Maybe<({
|
|
1912
|
+
__typename?: 'ContributionActionRun';
|
|
1913
|
+
} & Pick<IContributionActionRun, 'type' | 'document' | 'variables'>)>;
|
|
1914
|
+
})>>>;
|
|
1915
|
+
})>;
|
|
1916
|
+
});
|
|
1917
|
+
export declare type IGalleryExtensionQueryVariables = Exact<{
|
|
1918
|
+
extensionID: Scalars['String'];
|
|
1919
|
+
}>;
|
|
1920
|
+
export declare type IGalleryExtensionQuery = ({
|
|
1921
|
+
__typename?: 'Query';
|
|
1922
|
+
} & {
|
|
1923
|
+
galleryExtension?: Maybe<({
|
|
1924
|
+
__typename?: 'GalleryExtension';
|
|
1925
|
+
} & Pick<IGalleryExtension, 'id' | 'name' | 'icon' | 'version' | 'description' | 'publisher' | 'installCount' | 'publisherDisplayName' | 'rating' | 'ratingCount' | 'displayName'> & {
|
|
1926
|
+
assets?: Maybe<({
|
|
1927
|
+
__typename?: 'GalleryExtensionAssets';
|
|
1928
|
+
} & {
|
|
1929
|
+
download?: Maybe<({
|
|
1930
|
+
__typename?: 'GalleryExtensionAsset';
|
|
1931
|
+
} & Pick<IGalleryExtensionAsset, 'uri' | 'fallbackUri'>)>;
|
|
1932
|
+
})>;
|
|
1933
|
+
resources?: Maybe<({
|
|
1934
|
+
__typename?: 'GalleryExtensionResources';
|
|
1935
|
+
} & Pick<IGalleryExtensionResources, 'icon' | 'readme' | 'manifest' | 'changelog'>)>;
|
|
1936
|
+
})>;
|
|
1937
|
+
});
|
|
1938
|
+
export declare type IExtensionsByLimitQueryVariables = Exact<{
|
|
1939
|
+
first: Scalars['Int'];
|
|
1940
|
+
prioritizeExtensionIDs: Array<Scalars['String']> | Scalars['String'];
|
|
1941
|
+
}>;
|
|
1942
|
+
export declare type IExtensionsByLimitQuery = ({
|
|
1943
|
+
__typename?: 'Query';
|
|
1944
|
+
} & {
|
|
1945
|
+
extensions: ({
|
|
1946
|
+
__typename?: 'RegistryExtensionConnection';
|
|
1947
|
+
} & {
|
|
1948
|
+
nodes: Array<({
|
|
1949
|
+
__typename?: 'RegistryExtension';
|
|
1950
|
+
} & Pick<IRegistryExtension, 'id' | 'url' | 'extensionID' | 'viewerCanAdminister'> & {
|
|
1951
|
+
manifest?: Maybe<({
|
|
1952
|
+
__typename?: 'ExtensionManifest';
|
|
1953
|
+
} & Pick<IExtensionManifest, 'bundleURL' | 'raw' | 'name' | 'activationEvents'>)>;
|
|
1954
|
+
})>;
|
|
1955
|
+
});
|
|
1956
|
+
});
|
|
1957
|
+
export declare type IGalleryQueryVariables = Exact<{
|
|
1958
|
+
query?: Maybe<IGalleryQueryInput>;
|
|
1959
|
+
}>;
|
|
1960
|
+
export declare type IGalleryQuery = ({
|
|
1961
|
+
__typename?: 'Query';
|
|
1962
|
+
} & {
|
|
1963
|
+
gallery?: Maybe<({
|
|
1964
|
+
__typename?: 'GalleryPager';
|
|
1965
|
+
} & Pick<IGalleryPager, 'page'> & {
|
|
1966
|
+
firstPage?: Maybe<Array<Maybe<({
|
|
1967
|
+
__typename?: 'GalleryExtension';
|
|
1968
|
+
} & Pick<IGalleryExtension, 'id' | 'name' | 'icon' | 'version' | 'description' | 'publisher' | 'installCount' | 'publisherDisplayName' | 'rating' | 'ratingCount' | 'displayName'> & {
|
|
1969
|
+
assets?: Maybe<({
|
|
1970
|
+
__typename?: 'GalleryExtensionAssets';
|
|
1971
|
+
} & {
|
|
1972
|
+
download?: Maybe<({
|
|
1973
|
+
__typename?: 'GalleryExtensionAsset';
|
|
1974
|
+
} & Pick<IGalleryExtensionAsset, 'uri' | 'fallbackUri'>)>;
|
|
1975
|
+
})>;
|
|
1976
|
+
})>>>;
|
|
1977
|
+
})>;
|
|
1978
|
+
});
|
|
1979
|
+
export declare type IInstalledExtensionsQueryVariables = Exact<{
|
|
1980
|
+
[key: string]: never;
|
|
1981
|
+
}>;
|
|
1982
|
+
export declare type IInstalledExtensionsQuery = ({
|
|
1983
|
+
__typename?: 'Query';
|
|
1984
|
+
} & {
|
|
1985
|
+
installed?: Maybe<Array<Maybe<({
|
|
1986
|
+
__typename?: 'InstalledExtension';
|
|
1987
|
+
} & {
|
|
1988
|
+
identifier?: Maybe<({
|
|
1989
|
+
__typename?: 'ExtensionIdentifier';
|
|
1990
|
+
} & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
|
|
1991
|
+
galleryIdentifier?: Maybe<({
|
|
1992
|
+
__typename?: 'ExtensionIdentifier';
|
|
1993
|
+
} & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
|
|
1994
|
+
extension?: Maybe<({
|
|
1995
|
+
__typename?: 'GalleryExtension';
|
|
1996
|
+
} & Pick<IGalleryExtension, 'name' | 'id' | 'icon' | 'displayName' | 'installCount' | 'description' | 'version' | 'publisherDisplayName'> & {
|
|
1997
|
+
identifier?: Maybe<({
|
|
1998
|
+
__typename?: 'ExtensionIdentifier';
|
|
1999
|
+
} & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
|
|
2000
|
+
})>;
|
|
2001
|
+
})>>>;
|
|
2002
|
+
});
|
|
2003
|
+
export declare type INotificationsQueryVariables = Exact<{
|
|
2004
|
+
[key: string]: never;
|
|
2005
|
+
}>;
|
|
2006
|
+
export declare type INotificationsQuery = ({
|
|
2007
|
+
__typename?: 'Query';
|
|
2008
|
+
} & {
|
|
2009
|
+
notifications?: Maybe<({
|
|
2010
|
+
__typename?: 'Notifications';
|
|
2011
|
+
} & {
|
|
2012
|
+
notifications?: Maybe<Array<Maybe<({
|
|
2013
|
+
__typename?: 'Notification';
|
|
2014
|
+
} & Pick<INotification, 'index' | 'severity' | 'message' | 'sticky'> & {
|
|
2015
|
+
actions?: Maybe<({
|
|
2016
|
+
__typename?: 'NotificationActions';
|
|
2017
|
+
} & {
|
|
2018
|
+
primary?: Maybe<Array<Maybe<({
|
|
2019
|
+
__typename?: 'ContributionAction';
|
|
2020
|
+
} & Pick<IContributionAction, 'id' | 'label' | 'tooltip' | 'class' | 'enabled' | 'checked' | 'radio'> & {
|
|
2021
|
+
run?: Maybe<({
|
|
2022
|
+
__typename?: 'ContributionActionRun';
|
|
2023
|
+
} & Pick<IContributionActionRun, 'type' | 'document' | 'variables'>)>;
|
|
2024
|
+
})>>>;
|
|
2025
|
+
secondary?: Maybe<Array<Maybe<({
|
|
2026
|
+
__typename?: 'ContributionAction';
|
|
2027
|
+
} & Pick<IContributionAction, 'id' | 'label' | 'tooltip' | 'class' | 'enabled' | 'checked' | 'radio'> & {
|
|
2028
|
+
run?: Maybe<({
|
|
2029
|
+
__typename?: 'ContributionActionRun';
|
|
2030
|
+
} & Pick<IContributionActionRun, 'type' | 'document' | 'variables'>)>;
|
|
2031
|
+
})>>>;
|
|
2032
|
+
})>;
|
|
2033
|
+
})>>>;
|
|
2034
|
+
})>;
|
|
2035
|
+
});
|
|
2036
|
+
export declare type IShowNotificationQueryVariables = Exact<{
|
|
2037
|
+
notification?: Maybe<INotificationInput>;
|
|
2038
|
+
}>;
|
|
2039
|
+
export declare type IShowNotificationQuery = ({
|
|
2040
|
+
__typename?: 'Query';
|
|
2041
|
+
} & Pick<IQuery, 'showNotification'>);
|
|
2042
|
+
export declare const CopyDocument: Apollo.DocumentNode;
|
|
2043
|
+
/**
|
|
2044
|
+
* __useCopyMutation__
|
|
2045
|
+
*
|
|
2046
|
+
* To run a mutation, you first call `useCopyMutation` within a React component and pass it any options that fit your needs.
|
|
2047
|
+
* When your component renders, `useCopyMutation` returns a tuple that includes:
|
|
2048
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2049
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2050
|
+
*
|
|
2051
|
+
* @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;
|
|
2052
|
+
*
|
|
2053
|
+
* @example
|
|
2054
|
+
* const [copyMutation, { data, loading, error }] = useCopyMutation({
|
|
2055
|
+
* variables: {
|
|
2056
|
+
* value: // value for 'value'
|
|
2057
|
+
* },
|
|
2058
|
+
* });
|
|
2059
|
+
*/
|
|
2060
|
+
export declare function useCopyMutation(baseOptions?: Apollo.MutationHookOptions<ICopyMutation, ICopyMutationVariables>): Apollo.MutationTuple<ICopyMutation, Exact<{
|
|
2061
|
+
value?: string;
|
|
2062
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2063
|
+
export declare type CopyMutationHookResult = ReturnType<typeof useCopyMutation>;
|
|
2064
|
+
export declare type CopyMutationResult = Apollo.MutationResult<ICopyMutation>;
|
|
2065
|
+
export declare type CopyMutationOptions = Apollo.BaseMutationOptions<ICopyMutation, ICopyMutationVariables>;
|
|
2066
|
+
export declare const RunMenuActionDocument: Apollo.DocumentNode;
|
|
2067
|
+
/**
|
|
2068
|
+
* __useRunMenuActionMutation__
|
|
2069
|
+
*
|
|
2070
|
+
* To run a mutation, you first call `useRunMenuActionMutation` within a React component and pass it any options that fit your needs.
|
|
2071
|
+
* When your component renders, `useRunMenuActionMutation` returns a tuple that includes:
|
|
2072
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2073
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2074
|
+
*
|
|
2075
|
+
* @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;
|
|
2076
|
+
*
|
|
2077
|
+
* @example
|
|
2078
|
+
* const [runMenuActionMutation, { data, loading, error }] = useRunMenuActionMutation({
|
|
2079
|
+
* variables: {
|
|
2080
|
+
* argument: // value for 'argument'
|
|
2081
|
+
* },
|
|
2082
|
+
* });
|
|
2083
|
+
*/
|
|
2084
|
+
export declare function useRunMenuActionMutation(baseOptions?: Apollo.MutationHookOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>): Apollo.MutationTuple<IRunMenuActionMutation, Exact<{
|
|
2085
|
+
argument?: IContributionActionRunInput;
|
|
2086
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2087
|
+
export declare type RunMenuActionMutationHookResult = ReturnType<typeof useRunMenuActionMutation>;
|
|
2088
|
+
export declare type RunMenuActionMutationResult = Apollo.MutationResult<IRunMenuActionMutation>;
|
|
2089
|
+
export declare type RunMenuActionMutationOptions = Apollo.BaseMutationOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>;
|
|
2090
|
+
export declare const HideContextMenuDocument: Apollo.DocumentNode;
|
|
2091
|
+
/**
|
|
2092
|
+
* __useHideContextMenuMutation__
|
|
2093
|
+
*
|
|
2094
|
+
* To run a mutation, you first call `useHideContextMenuMutation` within a React component and pass it any options that fit your needs.
|
|
2095
|
+
* When your component renders, `useHideContextMenuMutation` returns a tuple that includes:
|
|
2096
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2097
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2098
|
+
*
|
|
2099
|
+
* @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;
|
|
2100
|
+
*
|
|
2101
|
+
* @example
|
|
2102
|
+
* const [hideContextMenuMutation, { data, loading, error }] = useHideContextMenuMutation({
|
|
2103
|
+
* variables: {
|
|
2104
|
+
* },
|
|
2105
|
+
* });
|
|
2106
|
+
*/
|
|
2107
|
+
export declare function useHideContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>): Apollo.MutationTuple<IHideContextMenuMutation, Exact<{
|
|
2108
|
+
[key: string]: never;
|
|
2109
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2110
|
+
export declare type HideContextMenuMutationHookResult = ReturnType<typeof useHideContextMenuMutation>;
|
|
2111
|
+
export declare type HideContextMenuMutationResult = Apollo.MutationResult<IHideContextMenuMutation>;
|
|
2112
|
+
export declare type HideContextMenuMutationOptions = Apollo.BaseMutationOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>;
|
|
2113
|
+
export declare const ShowContextMenuDocument: Apollo.DocumentNode;
|
|
2114
|
+
/**
|
|
2115
|
+
* __useShowContextMenuMutation__
|
|
2116
|
+
*
|
|
2117
|
+
* To run a mutation, you first call `useShowContextMenuMutation` within a React component and pass it any options that fit your needs.
|
|
2118
|
+
* When your component renders, `useShowContextMenuMutation` returns a tuple that includes:
|
|
2119
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2120
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2121
|
+
*
|
|
2122
|
+
* @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;
|
|
2123
|
+
*
|
|
2124
|
+
* @example
|
|
2125
|
+
* const [showContextMenuMutation, { data, loading, error }] = useShowContextMenuMutation({
|
|
2126
|
+
* variables: {
|
|
2127
|
+
* delegate: // value for 'delegate'
|
|
2128
|
+
* },
|
|
2129
|
+
* });
|
|
2130
|
+
*/
|
|
2131
|
+
export declare function useShowContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>): Apollo.MutationTuple<IShowContextMenuMutation, Exact<{
|
|
2132
|
+
delegate?: IContextMenuInput;
|
|
2133
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2134
|
+
export declare type ShowContextMenuMutationHookResult = ReturnType<typeof useShowContextMenuMutation>;
|
|
2135
|
+
export declare type ShowContextMenuMutationResult = Apollo.MutationResult<IShowContextMenuMutation>;
|
|
2136
|
+
export declare type ShowContextMenuMutationOptions = Apollo.BaseMutationOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>;
|
|
2137
|
+
export declare const InstallDocument: Apollo.DocumentNode;
|
|
2138
|
+
/**
|
|
2139
|
+
* __useInstallMutation__
|
|
2140
|
+
*
|
|
2141
|
+
* To run a mutation, you first call `useInstallMutation` within a React component and pass it any options that fit your needs.
|
|
2142
|
+
* When your component renders, `useInstallMutation` returns a tuple that includes:
|
|
2143
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2144
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2145
|
+
*
|
|
2146
|
+
* @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;
|
|
2147
|
+
*
|
|
2148
|
+
* @example
|
|
2149
|
+
* const [installMutation, { data, loading, error }] = useInstallMutation({
|
|
2150
|
+
* variables: {
|
|
2151
|
+
* vsix: // value for 'vsix'
|
|
2152
|
+
* },
|
|
2153
|
+
* });
|
|
2154
|
+
*/
|
|
2155
|
+
export declare function useInstallMutation(baseOptions?: Apollo.MutationHookOptions<IInstallMutation, IInstallMutationVariables>): Apollo.MutationTuple<IInstallMutation, Exact<{
|
|
2156
|
+
vsix: string;
|
|
2157
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2158
|
+
export declare type InstallMutationHookResult = ReturnType<typeof useInstallMutation>;
|
|
2159
|
+
export declare type InstallMutationResult = Apollo.MutationResult<IInstallMutation>;
|
|
2160
|
+
export declare type InstallMutationOptions = Apollo.BaseMutationOptions<IInstallMutation, IInstallMutationVariables>;
|
|
2161
|
+
export declare const ProviderDefinitionDocument: Apollo.DocumentNode;
|
|
2162
|
+
/**
|
|
2163
|
+
* __useProviderDefinitionMutation__
|
|
2164
|
+
*
|
|
2165
|
+
* To run a mutation, you first call `useProviderDefinitionMutation` within a React component and pass it any options that fit your needs.
|
|
2166
|
+
* When your component renders, `useProviderDefinitionMutation` returns a tuple that includes:
|
|
2167
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2168
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2169
|
+
*
|
|
2170
|
+
* @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;
|
|
2171
|
+
*
|
|
2172
|
+
* @example
|
|
2173
|
+
* const [providerDefinitionMutation, { data, loading, error }] = useProviderDefinitionMutation({
|
|
2174
|
+
* variables: {
|
|
2175
|
+
* params: // value for 'params'
|
|
2176
|
+
* },
|
|
2177
|
+
* });
|
|
2178
|
+
*/
|
|
2179
|
+
export declare function useProviderDefinitionMutation(baseOptions?: Apollo.MutationHookOptions<IProviderDefinitionMutation, IProviderDefinitionMutationVariables>): Apollo.MutationTuple<IProviderDefinitionMutation, Exact<{
|
|
2180
|
+
params?: ITextDocumentPositionParamsInput;
|
|
2181
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2182
|
+
export declare type ProviderDefinitionMutationHookResult = ReturnType<typeof useProviderDefinitionMutation>;
|
|
2183
|
+
export declare type ProviderDefinitionMutationResult = Apollo.MutationResult<IProviderDefinitionMutation>;
|
|
2184
|
+
export declare type ProviderDefinitionMutationOptions = Apollo.BaseMutationOptions<IProviderDefinitionMutation, IProviderDefinitionMutationVariables>;
|
|
2185
|
+
export declare const RemoveDocument: Apollo.DocumentNode;
|
|
2186
|
+
/**
|
|
2187
|
+
* __useRemoveMutation__
|
|
2188
|
+
*
|
|
2189
|
+
* To run a mutation, you first call `useRemoveMutation` within a React component and pass it any options that fit your needs.
|
|
2190
|
+
* When your component renders, `useRemoveMutation` returns a tuple that includes:
|
|
2191
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
2192
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
2193
|
+
*
|
|
2194
|
+
* @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;
|
|
2195
|
+
*
|
|
2196
|
+
* @example
|
|
2197
|
+
* const [removeMutation, { data, loading, error }] = useRemoveMutation({
|
|
2198
|
+
* variables: {
|
|
2199
|
+
* id: // value for 'id'
|
|
2200
|
+
* },
|
|
2201
|
+
* });
|
|
2202
|
+
*/
|
|
2203
|
+
export declare function useRemoveMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveMutation, IRemoveMutationVariables>): Apollo.MutationTuple<IRemoveMutation, Exact<{
|
|
2204
|
+
id: string;
|
|
2205
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2206
|
+
export declare type RemoveMutationHookResult = ReturnType<typeof useRemoveMutation>;
|
|
2207
|
+
export declare type RemoveMutationResult = Apollo.MutationResult<IRemoveMutation>;
|
|
2208
|
+
export declare type RemoveMutationOptions = Apollo.BaseMutationOptions<IRemoveMutation, IRemoveMutationVariables>;
|
|
2209
|
+
export declare const ContextMenuDocument: Apollo.DocumentNode;
|
|
2210
|
+
/**
|
|
2211
|
+
* __useContextMenuQuery__
|
|
2212
|
+
*
|
|
2213
|
+
* To run a query within a React component, call `useContextMenuQuery` and pass it any options that fit your needs.
|
|
2214
|
+
* When your component renders, `useContextMenuQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2215
|
+
* you can use to render your UI.
|
|
2216
|
+
*
|
|
2217
|
+
* @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;
|
|
2218
|
+
*
|
|
2219
|
+
* @example
|
|
2220
|
+
* const { data, loading, error } = useContextMenuQuery({
|
|
2221
|
+
* variables: {
|
|
2222
|
+
* },
|
|
2223
|
+
* });
|
|
2224
|
+
*/
|
|
2225
|
+
export declare function useContextMenuQuery(baseOptions?: Apollo.QueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.QueryResult<IContextMenuQuery, Exact<{
|
|
2226
|
+
[key: string]: never;
|
|
2227
|
+
}>>;
|
|
2228
|
+
export declare function useContextMenuLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.LazyQueryResultTuple<IContextMenuQuery, Exact<{
|
|
2229
|
+
[key: string]: never;
|
|
2230
|
+
}>>;
|
|
2231
|
+
export declare type ContextMenuQueryHookResult = ReturnType<typeof useContextMenuQuery>;
|
|
2232
|
+
export declare type ContextMenuLazyQueryHookResult = ReturnType<typeof useContextMenuLazyQuery>;
|
|
2233
|
+
export declare type ContextMenuQueryResult = Apollo.QueryResult<IContextMenuQuery, IContextMenuQueryVariables>;
|
|
2234
|
+
export declare const GalleryExtensionDocument: Apollo.DocumentNode;
|
|
2235
|
+
/**
|
|
2236
|
+
* __useGalleryExtensionQuery__
|
|
2237
|
+
*
|
|
2238
|
+
* To run a query within a React component, call `useGalleryExtensionQuery` and pass it any options that fit your needs.
|
|
2239
|
+
* When your component renders, `useGalleryExtensionQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2240
|
+
* you can use to render your UI.
|
|
2241
|
+
*
|
|
2242
|
+
* @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;
|
|
2243
|
+
*
|
|
2244
|
+
* @example
|
|
2245
|
+
* const { data, loading, error } = useGalleryExtensionQuery({
|
|
2246
|
+
* variables: {
|
|
2247
|
+
* extensionID: // value for 'extensionID'
|
|
2248
|
+
* },
|
|
2249
|
+
* });
|
|
2250
|
+
*/
|
|
2251
|
+
export declare function useGalleryExtensionQuery(baseOptions: Apollo.QueryHookOptions<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>): Apollo.QueryResult<IGalleryExtensionQuery, Exact<{
|
|
2252
|
+
extensionID: string;
|
|
2253
|
+
}>>;
|
|
2254
|
+
export declare function useGalleryExtensionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>): Apollo.LazyQueryResultTuple<IGalleryExtensionQuery, Exact<{
|
|
2255
|
+
extensionID: string;
|
|
2256
|
+
}>>;
|
|
2257
|
+
export declare type GalleryExtensionQueryHookResult = ReturnType<typeof useGalleryExtensionQuery>;
|
|
2258
|
+
export declare type GalleryExtensionLazyQueryHookResult = ReturnType<typeof useGalleryExtensionLazyQuery>;
|
|
2259
|
+
export declare type GalleryExtensionQueryResult = Apollo.QueryResult<IGalleryExtensionQuery, IGalleryExtensionQueryVariables>;
|
|
2260
|
+
export declare const ExtensionsByLimitDocument: Apollo.DocumentNode;
|
|
2261
|
+
/**
|
|
2262
|
+
* __useExtensionsByLimitQuery__
|
|
2263
|
+
*
|
|
2264
|
+
* To run a query within a React component, call `useExtensionsByLimitQuery` and pass it any options that fit your needs.
|
|
2265
|
+
* When your component renders, `useExtensionsByLimitQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2266
|
+
* you can use to render your UI.
|
|
2267
|
+
*
|
|
2268
|
+
* @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;
|
|
2269
|
+
*
|
|
2270
|
+
* @example
|
|
2271
|
+
* const { data, loading, error } = useExtensionsByLimitQuery({
|
|
2272
|
+
* variables: {
|
|
2273
|
+
* first: // value for 'first'
|
|
2274
|
+
* prioritizeExtensionIDs: // value for 'prioritizeExtensionIDs'
|
|
2275
|
+
* },
|
|
2276
|
+
* });
|
|
2277
|
+
*/
|
|
2278
|
+
export declare function useExtensionsByLimitQuery(baseOptions: Apollo.QueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.QueryResult<IExtensionsByLimitQuery, Exact<{
|
|
2279
|
+
first: number;
|
|
2280
|
+
prioritizeExtensionIDs: string | string[];
|
|
2281
|
+
}>>;
|
|
2282
|
+
export declare function useExtensionsByLimitLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.LazyQueryResultTuple<IExtensionsByLimitQuery, Exact<{
|
|
2283
|
+
first: number;
|
|
2284
|
+
prioritizeExtensionIDs: string | string[];
|
|
2285
|
+
}>>;
|
|
2286
|
+
export declare type ExtensionsByLimitQueryHookResult = ReturnType<typeof useExtensionsByLimitQuery>;
|
|
2287
|
+
export declare type ExtensionsByLimitLazyQueryHookResult = ReturnType<typeof useExtensionsByLimitLazyQuery>;
|
|
2288
|
+
export declare type ExtensionsByLimitQueryResult = Apollo.QueryResult<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>;
|
|
2289
|
+
export declare const GalleryDocument: Apollo.DocumentNode;
|
|
2290
|
+
/**
|
|
2291
|
+
* __useGalleryQuery__
|
|
2292
|
+
*
|
|
2293
|
+
* To run a query within a React component, call `useGalleryQuery` and pass it any options that fit your needs.
|
|
2294
|
+
* When your component renders, `useGalleryQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2295
|
+
* you can use to render your UI.
|
|
2296
|
+
*
|
|
2297
|
+
* @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;
|
|
2298
|
+
*
|
|
2299
|
+
* @example
|
|
2300
|
+
* const { data, loading, error } = useGalleryQuery({
|
|
2301
|
+
* variables: {
|
|
2302
|
+
* query: // value for 'query'
|
|
2303
|
+
* },
|
|
2304
|
+
* });
|
|
2305
|
+
*/
|
|
2306
|
+
export declare function useGalleryQuery(baseOptions?: Apollo.QueryHookOptions<IGalleryQuery, IGalleryQueryVariables>): Apollo.QueryResult<IGalleryQuery, Exact<{
|
|
2307
|
+
query?: IGalleryQueryInput;
|
|
2308
|
+
}>>;
|
|
2309
|
+
export declare function useGalleryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IGalleryQuery, IGalleryQueryVariables>): Apollo.LazyQueryResultTuple<IGalleryQuery, Exact<{
|
|
2310
|
+
query?: IGalleryQueryInput;
|
|
2311
|
+
}>>;
|
|
2312
|
+
export declare type GalleryQueryHookResult = ReturnType<typeof useGalleryQuery>;
|
|
2313
|
+
export declare type GalleryLazyQueryHookResult = ReturnType<typeof useGalleryLazyQuery>;
|
|
2314
|
+
export declare type GalleryQueryResult = Apollo.QueryResult<IGalleryQuery, IGalleryQueryVariables>;
|
|
2315
|
+
export declare const InstalledExtensionsDocument: Apollo.DocumentNode;
|
|
2316
|
+
/**
|
|
2317
|
+
* __useInstalledExtensionsQuery__
|
|
2318
|
+
*
|
|
2319
|
+
* To run a query within a React component, call `useInstalledExtensionsQuery` and pass it any options that fit your needs.
|
|
2320
|
+
* When your component renders, `useInstalledExtensionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2321
|
+
* you can use to render your UI.
|
|
2322
|
+
*
|
|
2323
|
+
* @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;
|
|
2324
|
+
*
|
|
2325
|
+
* @example
|
|
2326
|
+
* const { data, loading, error } = useInstalledExtensionsQuery({
|
|
2327
|
+
* variables: {
|
|
2328
|
+
* },
|
|
2329
|
+
* });
|
|
2330
|
+
*/
|
|
2331
|
+
export declare function useInstalledExtensionsQuery(baseOptions?: Apollo.QueryHookOptions<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>): Apollo.QueryResult<IInstalledExtensionsQuery, Exact<{
|
|
2332
|
+
[key: string]: never;
|
|
2333
|
+
}>>;
|
|
2334
|
+
export declare function useInstalledExtensionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>): Apollo.LazyQueryResultTuple<IInstalledExtensionsQuery, Exact<{
|
|
2335
|
+
[key: string]: never;
|
|
2336
|
+
}>>;
|
|
2337
|
+
export declare type InstalledExtensionsQueryHookResult = ReturnType<typeof useInstalledExtensionsQuery>;
|
|
2338
|
+
export declare type InstalledExtensionsLazyQueryHookResult = ReturnType<typeof useInstalledExtensionsLazyQuery>;
|
|
2339
|
+
export declare type InstalledExtensionsQueryResult = Apollo.QueryResult<IInstalledExtensionsQuery, IInstalledExtensionsQueryVariables>;
|
|
2340
|
+
export declare const NotificationsDocument: Apollo.DocumentNode;
|
|
2341
|
+
/**
|
|
2342
|
+
* __useNotificationsQuery__
|
|
2343
|
+
*
|
|
2344
|
+
* To run a query within a React component, call `useNotificationsQuery` and pass it any options that fit your needs.
|
|
2345
|
+
* When your component renders, `useNotificationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2346
|
+
* you can use to render your UI.
|
|
2347
|
+
*
|
|
2348
|
+
* @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;
|
|
2349
|
+
*
|
|
2350
|
+
* @example
|
|
2351
|
+
* const { data, loading, error } = useNotificationsQuery({
|
|
2352
|
+
* variables: {
|
|
2353
|
+
* },
|
|
2354
|
+
* });
|
|
2355
|
+
*/
|
|
2356
|
+
export declare function useNotificationsQuery(baseOptions?: Apollo.QueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.QueryResult<INotificationsQuery, Exact<{
|
|
2357
|
+
[key: string]: never;
|
|
2358
|
+
}>>;
|
|
2359
|
+
export declare function useNotificationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.LazyQueryResultTuple<INotificationsQuery, Exact<{
|
|
2360
|
+
[key: string]: never;
|
|
2361
|
+
}>>;
|
|
2362
|
+
export declare type NotificationsQueryHookResult = ReturnType<typeof useNotificationsQuery>;
|
|
2363
|
+
export declare type NotificationsLazyQueryHookResult = ReturnType<typeof useNotificationsLazyQuery>;
|
|
2364
|
+
export declare type NotificationsQueryResult = Apollo.QueryResult<INotificationsQuery, INotificationsQueryVariables>;
|
|
2365
|
+
export declare const ShowNotificationDocument: Apollo.DocumentNode;
|
|
2366
|
+
/**
|
|
2367
|
+
* __useShowNotificationQuery__
|
|
2368
|
+
*
|
|
2369
|
+
* To run a query within a React component, call `useShowNotificationQuery` and pass it any options that fit your needs.
|
|
2370
|
+
* When your component renders, `useShowNotificationQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2371
|
+
* you can use to render your UI.
|
|
2372
|
+
*
|
|
2373
|
+
* @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;
|
|
2374
|
+
*
|
|
2375
|
+
* @example
|
|
2376
|
+
* const { data, loading, error } = useShowNotificationQuery({
|
|
2377
|
+
* variables: {
|
|
2378
|
+
* notification: // value for 'notification'
|
|
2379
|
+
* },
|
|
2380
|
+
* });
|
|
2381
|
+
*/
|
|
2382
|
+
export declare function useShowNotificationQuery(baseOptions?: Apollo.QueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.QueryResult<IShowNotificationQuery, Exact<{
|
|
2383
|
+
notification?: INotificationInput;
|
|
2384
|
+
}>>;
|
|
2385
|
+
export declare function useShowNotificationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.LazyQueryResultTuple<IShowNotificationQuery, Exact<{
|
|
2386
|
+
notification?: INotificationInput;
|
|
2387
|
+
}>>;
|
|
2388
|
+
export declare type ShowNotificationQueryHookResult = ReturnType<typeof useShowNotificationQuery>;
|
|
2389
|
+
export declare type ShowNotificationLazyQueryHookResult = ReturnType<typeof useShowNotificationLazyQuery>;
|
|
2390
|
+
export declare type ShowNotificationQueryResult = Apollo.QueryResult<IShowNotificationQuery, IShowNotificationQueryVariables>;
|
|
2391
|
+
export declare type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
2392
|
+
export declare type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
|
|
2393
|
+
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
2394
|
+
};
|
|
2395
|
+
export declare type LegacyStitchingResolver<TResult, TParent, TContext, TArgs> = {
|
|
2396
|
+
fragment: string;
|
|
2397
|
+
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
2398
|
+
};
|
|
2399
|
+
export declare type NewStitchingResolver<TResult, TParent, TContext, TArgs> = {
|
|
2400
|
+
selectionSet: string;
|
|
2401
|
+
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
2402
|
+
};
|
|
2403
|
+
export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = LegacyStitchingResolver<TResult, TParent, TContext, TArgs> | NewStitchingResolver<TResult, TParent, TContext, TArgs>;
|
|
2404
|
+
export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
|
|
2405
|
+
export declare type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
|
|
2406
|
+
export declare type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterator<TResult> | Promise<AsyncIterator<TResult>>;
|
|
2407
|
+
export declare type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
2408
|
+
export interface SubscriptionSubscriberObject<TResult, TKey extends string, TParent, TContext, TArgs> {
|
|
2409
|
+
subscribe: SubscriptionSubscribeFn<{
|
|
2410
|
+
[key in TKey]: TResult;
|
|
2411
|
+
}, TParent, TContext, TArgs>;
|
|
2412
|
+
resolve?: SubscriptionResolveFn<TResult, {
|
|
2413
|
+
[key in TKey]: TResult;
|
|
2414
|
+
}, TContext, TArgs>;
|
|
2415
|
+
}
|
|
2416
|
+
export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
|
|
2417
|
+
subscribe: SubscriptionSubscribeFn<any, TParent, TContext, TArgs>;
|
|
2418
|
+
resolve: SubscriptionResolveFn<TResult, any, TContext, TArgs>;
|
|
2419
|
+
}
|
|
2420
|
+
export declare type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
|
|
2421
|
+
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>;
|
|
2422
|
+
export declare type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
|
|
2423
|
+
export declare type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
|
|
2424
|
+
export declare type NextResolverFn<T> = () => Promise<T>;
|
|
2425
|
+
export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
2426
|
+
/** Mapping between all available schema types and the resolvers types */
|
|
2427
|
+
export declare type IResolversTypes = {
|
|
2428
|
+
AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
|
|
2429
|
+
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
2430
|
+
Anchor: ResolverTypeWrapper<IAnchor>;
|
|
2431
|
+
AnchorInput: IAnchorInput;
|
|
2432
|
+
AnyObject: ResolverTypeWrapper<Scalars['AnyObject']>;
|
|
2433
|
+
ArgsType: ResolverTypeWrapper<IArgsType>;
|
|
2434
|
+
String: ResolverTypeWrapper<Scalars['String']>;
|
|
2435
|
+
Assets: ResolverTypeWrapper<IAssets>;
|
|
2436
|
+
Author: ResolverTypeWrapper<IAuthor>;
|
|
2437
|
+
BaseExtension: ResolverTypeWrapper<IBaseExtension>;
|
|
2438
|
+
Bundles: ResolverTypeWrapper<IBundles>;
|
|
2439
|
+
CacheControlScope: ICacheControlScope;
|
|
2440
|
+
ClientContainerService: IClientContainerService;
|
|
2441
|
+
CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
|
|
2442
|
+
CommandType: ResolverTypeWrapper<ICommandType>;
|
|
2443
|
+
CommandsType: ResolverTypeWrapper<ICommandsType>;
|
|
2444
|
+
ContextMenu: ResolverTypeWrapper<IContextMenu>;
|
|
2445
|
+
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
2446
|
+
ContextMenuInput: IContextMenuInput;
|
|
2447
|
+
Contributes: ResolverTypeWrapper<IContributes>;
|
|
2448
|
+
ContributionAction: ResolverTypeWrapper<IContributionAction>;
|
|
2449
|
+
ContributionActionInput: IContributionActionInput;
|
|
2450
|
+
ContributionActionItem: ResolverTypeWrapper<IContributionActionItem>;
|
|
2451
|
+
ContributionActionRun: ResolverTypeWrapper<IContributionActionRun>;
|
|
2452
|
+
ContributionActionRunInput: IContributionActionRunInput;
|
|
2453
|
+
ContributionActions: ResolverTypeWrapper<IContributionActions>;
|
|
2454
|
+
ContributionView: ResolverTypeWrapper<IContributionView>;
|
|
2455
|
+
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
2456
|
+
Date: ResolverTypeWrapper<Scalars['Date']>;
|
|
2457
|
+
DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
|
|
2458
|
+
Debugger: ResolverTypeWrapper<IDebugger>;
|
|
2459
|
+
DocSitePage: ResolverTypeWrapper<IDocSitePage>;
|
|
2460
|
+
DocumentFilter: ResolverTypeWrapper<IDocumentFilter>;
|
|
2461
|
+
EmptyResponse: ResolverTypeWrapper<IEmptyResponse>;
|
|
2462
|
+
Engines: ResolverTypeWrapper<IEngines>;
|
|
2463
|
+
Environment: ResolverTypeWrapper<IEnvironment>;
|
|
2464
|
+
EnvironmentPayload: IEnvironmentPayload;
|
|
2465
|
+
EnvironmentSync: IEnvironmentSync;
|
|
2466
|
+
ExtensionColor: ResolverTypeWrapper<IExtensionColor>;
|
|
2467
|
+
ExtensionColorTypes: ResolverTypeWrapper<IExtensionColorTypes>;
|
|
2468
|
+
ExtensionConfiguration: ResolverTypeWrapper<IExtensionConfiguration>;
|
|
2469
|
+
ExtensionConfigurationProperty: ResolverTypeWrapper<IExtensionConfigurationProperty>;
|
|
2470
|
+
ExtensionContributions: ResolverTypeWrapper<IExtensionContributions>;
|
|
2471
|
+
ExtensionIdentifier: ResolverTypeWrapper<IExtensionIdentifier>;
|
|
2472
|
+
ExtensionInstance: ResolverTypeWrapper<IExtensionInstance>;
|
|
2473
|
+
ExtensionJSONValidation: ResolverTypeWrapper<IExtensionJsonValidation>;
|
|
2474
|
+
ExtensionKind: IExtensionKind;
|
|
2475
|
+
ExtensionLanguage: ResolverTypeWrapper<IExtensionLanguage>;
|
|
2476
|
+
ExtensionManifest: ResolverTypeWrapper<IExtensionManifest>;
|
|
2477
|
+
ExtensionManifestBugs: ResolverTypeWrapper<IExtensionManifestBugs>;
|
|
2478
|
+
ExtensionManifestRepository: ResolverTypeWrapper<IExtensionManifestRepository>;
|
|
2479
|
+
ExtensionPackageType: ResolverTypeWrapper<IExtensionPackageType>;
|
|
2480
|
+
ExtensionRegistry: ResolverTypeWrapper<IExtensionRegistry>;
|
|
2481
|
+
ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
|
|
2482
|
+
ExtensionRegistryPublishExtensionResult: ResolverTypeWrapper<IExtensionRegistryPublishExtensionResult>;
|
|
2483
|
+
ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
|
|
2484
|
+
ExtensionRelease: ResolverTypeWrapper<IExtensionRelease>;
|
|
2485
|
+
ExtensionType: IExtensionType;
|
|
2486
|
+
FieldError: ResolverTypeWrapper<IFieldError>;
|
|
2487
|
+
GalleryBanner: ResolverTypeWrapper<IGalleryBanner>;
|
|
2488
|
+
GalleryExtension: ResolverTypeWrapper<IGalleryExtension>;
|
|
2489
|
+
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
2490
|
+
GalleryExtensionAsset: ResolverTypeWrapper<IGalleryExtensionAsset>;
|
|
2491
|
+
GalleryExtensionAssets: ResolverTypeWrapper<IGalleryExtensionAssets>;
|
|
2492
|
+
GalleryExtensionProperties: ResolverTypeWrapper<IGalleryExtensionProperties>;
|
|
2493
|
+
GalleryExtensionResources: ResolverTypeWrapper<IGalleryExtensionResources>;
|
|
2494
|
+
GalleryFilter: IGalleryFilter;
|
|
2495
|
+
GalleryPager: ResolverTypeWrapper<IGalleryPager>;
|
|
2496
|
+
GalleryQueryInput: IGalleryQueryInput;
|
|
2497
|
+
GeoLocation: ResolverTypeWrapper<IGeoLocation>;
|
|
2498
|
+
Grammar: ResolverTypeWrapper<IGrammar>;
|
|
2499
|
+
GraphqlCallType: IGraphqlCallType;
|
|
2500
|
+
Hover: never;
|
|
2501
|
+
IActivationRequest: IIActivationRequest;
|
|
2502
|
+
IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
|
|
2503
|
+
IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
|
|
2504
|
+
IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
|
|
2505
|
+
IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
|
|
2506
|
+
IModel: ResolverTypeWrapper<IIModel>;
|
|
2507
|
+
IModelInput: IIModelInput;
|
|
2508
|
+
IObservableResult: ResolverTypeWrapper<IIObservableResult>;
|
|
2509
|
+
IResourceUtilizationSettings: never;
|
|
2510
|
+
ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
|
|
2511
|
+
ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
|
|
2512
|
+
ITextDocumentIdentifier: IResolversTypes['TextDocumentIdentifier'] | IResolversTypes['TextDocumentItem'];
|
|
2513
|
+
IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
|
|
2514
|
+
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2515
|
+
IWorkspaceRoot: ResolverTypeWrapper<IIWorkspaceRoot>;
|
|
2516
|
+
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2517
|
+
InstalledExtension: ResolverTypeWrapper<IInstalledExtension>;
|
|
2518
|
+
JSON: ResolverTypeWrapper<Scalars['JSON']>;
|
|
2519
|
+
JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
|
|
2520
|
+
KeyBinding: ResolverTypeWrapper<IKeyBinding>;
|
|
2521
|
+
Localization: ResolverTypeWrapper<ILocalization>;
|
|
2522
|
+
LocalizationTranslation: ResolverTypeWrapper<ILocalizationTranslation>;
|
|
2523
|
+
Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
|
|
2524
|
+
MarkupContent: never;
|
|
2525
|
+
MarkupKind: IMarkupKind;
|
|
2526
|
+
MenuId: IMenuId;
|
|
2527
|
+
MenuItem: ResolverTypeWrapper<IMenuItem>;
|
|
2528
|
+
MenuItemAction: ResolverTypeWrapper<IMenuItemAction>;
|
|
2529
|
+
MenuItemActionContext: ResolverTypeWrapper<IMenuItemActionContext>;
|
|
2530
|
+
MenuItemActionDebug: ResolverTypeWrapper<IMenuItemActionDebug>;
|
|
2531
|
+
MenuItemActionEditor: ResolverTypeWrapper<IMenuItemActionEditor>;
|
|
2532
|
+
MenuItemActionEditorTitle: ResolverTypeWrapper<IMenuItemActionEditorTitle>;
|
|
2533
|
+
MenuItemActionScm: ResolverTypeWrapper<IMenuItemActionScm>;
|
|
2534
|
+
MenuItemActionScmChange: ResolverTypeWrapper<IMenuItemActionScmChange>;
|
|
2535
|
+
MenuItemActionView: ResolverTypeWrapper<IMenuItemActionView>;
|
|
2536
|
+
MenuItemInput: IMenuItemInput;
|
|
2537
|
+
Menus: ResolverTypeWrapper<IMenus>;
|
|
2538
|
+
MessageLink: ResolverTypeWrapper<IMessageLink>;
|
|
2539
|
+
MessageLinkInput: IMessageLinkInput;
|
|
2540
|
+
MoleculerServiceName: IMoleculerServiceName;
|
|
2541
|
+
Mutation: ResolverTypeWrapper<{}>;
|
|
2542
|
+
Node: IResolversTypes['RegistryExtension'];
|
|
2543
|
+
Notification: ResolverTypeWrapper<INotification>;
|
|
2544
|
+
NotificationActions: ResolverTypeWrapper<INotificationActions>;
|
|
2545
|
+
NotificationActionsInput: INotificationActionsInput;
|
|
2546
|
+
NotificationChangeEvent: ResolverTypeWrapper<INotificationChangeEvent>;
|
|
2547
|
+
NotificationChangeType: INotificationChangeType;
|
|
2548
|
+
NotificationInput: INotificationInput;
|
|
2549
|
+
NotificationMessage: ResolverTypeWrapper<INotificationMessage>;
|
|
2550
|
+
NotificationMessageInput: INotificationMessageInput;
|
|
2551
|
+
NotificationSeverity: INotificationSeverity;
|
|
2552
|
+
NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
|
|
2553
|
+
NotificationViewItemLabelKind: INotificationViewItemLabelKind;
|
|
2554
|
+
NotificationViewItemProgress: ResolverTypeWrapper<INotificationViewItemProgress>;
|
|
2555
|
+
NotificationViewItemProgressState: ResolverTypeWrapper<INotificationViewItemProgressState>;
|
|
2556
|
+
Notifications: ResolverTypeWrapper<INotifications>;
|
|
2557
|
+
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
|
2558
|
+
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2559
|
+
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2560
|
+
PageInfo: ResolverTypeWrapper<IPageInfo>;
|
|
2561
|
+
Position: ResolverTypeWrapper<IPosition>;
|
|
2562
|
+
PositionInput: IPositionInput;
|
|
2563
|
+
ProcessMonitoring: ResolverTypeWrapper<IProcessMonitoring>;
|
|
2564
|
+
PromptChoiceInput: IPromptChoiceInput;
|
|
2565
|
+
PromptChoiceRun: IPromptChoiceRun;
|
|
2566
|
+
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2567
|
+
PromptOptionsInput: IPromptOptionsInput;
|
|
2568
|
+
ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
|
|
2569
|
+
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2570
|
+
Query: ResolverTypeWrapper<{}>;
|
|
2571
|
+
Range: ResolverTypeWrapper<IRange>;
|
|
2572
|
+
RangeInput: IRangeInput;
|
|
2573
|
+
RegistryEntry: ResolverTypeWrapper<IRegistryEntry>;
|
|
2574
|
+
RegistryExtension: ResolverTypeWrapper<IRegistryExtension>;
|
|
2575
|
+
RegistryExtensionConnection: ResolverTypeWrapper<IRegistryExtensionConnection>;
|
|
2576
|
+
RegistryPublisher: ResolverTypeWrapper<IRegistryPublisher>;
|
|
2577
|
+
RegistryPublisherConnection: ResolverTypeWrapper<IRegistryPublisherConnection>;
|
|
2578
|
+
Scripts: ResolverTypeWrapper<IScripts>;
|
|
2579
|
+
Snippet: ResolverTypeWrapper<ISnippet>;
|
|
2580
|
+
Sort: ISort;
|
|
2581
|
+
SortEnum: ISortEnum;
|
|
2582
|
+
Subscription: ResolverTypeWrapper<{}>;
|
|
2583
|
+
TextDocumentIdentifier: ResolverTypeWrapper<ITextDocumentIdentifier>;
|
|
2584
|
+
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2585
|
+
TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
|
|
2586
|
+
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2587
|
+
TextDocumentPositionParams: IResolversTypes['ProvideTextDocumentLocationSignature'];
|
|
2588
|
+
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2589
|
+
TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
|
|
2590
|
+
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2591
|
+
ThemeLabel: ResolverTypeWrapper<IThemeLabel>;
|
|
2592
|
+
Time: ResolverTypeWrapper<Scalars['Time']>;
|
|
2593
|
+
URI: ResolverTypeWrapper<Scalars['URI']>;
|
|
2594
|
+
URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
|
|
2595
|
+
ViewContainer: ResolverTypeWrapper<IViewContainer>;
|
|
2596
|
+
};
|
|
2597
|
+
/** Mapping between all available schema types and the resolvers parents */
|
|
2598
|
+
export declare type IResolversParentTypes = {
|
|
2599
|
+
AdminIdeSettings: IAdminIdeSettings;
|
|
2600
|
+
Int: Scalars['Int'];
|
|
2601
|
+
Anchor: IAnchor;
|
|
2602
|
+
AnchorInput: IAnchorInput;
|
|
2603
|
+
AnyObject: Scalars['AnyObject'];
|
|
2604
|
+
ArgsType: IArgsType;
|
|
2605
|
+
String: Scalars['String'];
|
|
2606
|
+
Assets: IAssets;
|
|
2607
|
+
Author: IAuthor;
|
|
2608
|
+
BaseExtension: IBaseExtension;
|
|
2609
|
+
Bundles: IBundles;
|
|
2610
|
+
CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
|
|
2611
|
+
CommandType: ICommandType;
|
|
2612
|
+
CommandsType: ICommandsType;
|
|
2613
|
+
ContextMenu: IContextMenu;
|
|
2614
|
+
Boolean: Scalars['Boolean'];
|
|
2615
|
+
ContextMenuInput: IContextMenuInput;
|
|
2616
|
+
Contributes: IContributes;
|
|
2617
|
+
ContributionAction: IContributionAction;
|
|
2618
|
+
ContributionActionInput: IContributionActionInput;
|
|
2619
|
+
ContributionActionItem: IContributionActionItem;
|
|
2620
|
+
ContributionActionRun: IContributionActionRun;
|
|
2621
|
+
ContributionActionRunInput: IContributionActionRunInput;
|
|
2622
|
+
ContributionActions: IContributionActions;
|
|
2623
|
+
ContributionView: IContributionView;
|
|
2624
|
+
ID: Scalars['ID'];
|
|
2625
|
+
Date: Scalars['Date'];
|
|
2626
|
+
DateTime: Scalars['DateTime'];
|
|
2627
|
+
Debugger: IDebugger;
|
|
2628
|
+
DocSitePage: IDocSitePage;
|
|
2629
|
+
DocumentFilter: IDocumentFilter;
|
|
2630
|
+
EmptyResponse: IEmptyResponse;
|
|
2631
|
+
Engines: IEngines;
|
|
2632
|
+
Environment: IEnvironment;
|
|
2633
|
+
EnvironmentPayload: IEnvironmentPayload;
|
|
2634
|
+
ExtensionColor: IExtensionColor;
|
|
2635
|
+
ExtensionColorTypes: IExtensionColorTypes;
|
|
2636
|
+
ExtensionConfiguration: IExtensionConfiguration;
|
|
2637
|
+
ExtensionConfigurationProperty: IExtensionConfigurationProperty;
|
|
2638
|
+
ExtensionContributions: IExtensionContributions;
|
|
2639
|
+
ExtensionIdentifier: IExtensionIdentifier;
|
|
2640
|
+
ExtensionInstance: IExtensionInstance;
|
|
2641
|
+
ExtensionJSONValidation: IExtensionJsonValidation;
|
|
2642
|
+
ExtensionLanguage: IExtensionLanguage;
|
|
2643
|
+
ExtensionManifest: IExtensionManifest;
|
|
2644
|
+
ExtensionManifestBugs: IExtensionManifestBugs;
|
|
2645
|
+
ExtensionManifestRepository: IExtensionManifestRepository;
|
|
2646
|
+
ExtensionPackageType: IExtensionPackageType;
|
|
2647
|
+
ExtensionRegistry: IExtensionRegistry;
|
|
2648
|
+
ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
|
|
2649
|
+
ExtensionRegistryPublishExtensionResult: IExtensionRegistryPublishExtensionResult;
|
|
2650
|
+
ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
|
|
2651
|
+
ExtensionRelease: IExtensionRelease;
|
|
2652
|
+
FieldError: IFieldError;
|
|
2653
|
+
GalleryBanner: IGalleryBanner;
|
|
2654
|
+
GalleryExtension: IGalleryExtension;
|
|
2655
|
+
Float: Scalars['Float'];
|
|
2656
|
+
GalleryExtensionAsset: IGalleryExtensionAsset;
|
|
2657
|
+
GalleryExtensionAssets: IGalleryExtensionAssets;
|
|
2658
|
+
GalleryExtensionProperties: IGalleryExtensionProperties;
|
|
2659
|
+
GalleryExtensionResources: IGalleryExtensionResources;
|
|
2660
|
+
GalleryFilter: IGalleryFilter;
|
|
2661
|
+
GalleryPager: IGalleryPager;
|
|
2662
|
+
GalleryQueryInput: IGalleryQueryInput;
|
|
2663
|
+
GeoLocation: IGeoLocation;
|
|
2664
|
+
Grammar: IGrammar;
|
|
2665
|
+
Hover: never;
|
|
2666
|
+
IActivationRequest: IIActivationRequest;
|
|
2667
|
+
IBehaviorSubject: IIBehaviorSubject;
|
|
2668
|
+
IBehaviorSubjectValue: IIBehaviorSubjectValue;
|
|
2669
|
+
IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
|
|
2670
|
+
IDocumentSelector: IIDocumentSelector;
|
|
2671
|
+
IModel: IIModel;
|
|
2672
|
+
IModelInput: IIModelInput;
|
|
2673
|
+
IObservableResult: IIObservableResult;
|
|
2674
|
+
IResourceUtilizationSettings: never;
|
|
2675
|
+
ISourceAnonymousSubject: IISourceAnonymousSubject;
|
|
2676
|
+
ISwitchMapOperator: IISwitchMapOperator;
|
|
2677
|
+
ITextDocumentIdentifier: IResolversParentTypes['TextDocumentIdentifier'] | IResolversParentTypes['TextDocumentItem'];
|
|
2678
|
+
IViewComponentData: IIViewComponentData;
|
|
2679
|
+
IViewComponentDataInput: IIViewComponentDataInput;
|
|
2680
|
+
IWorkspaceRoot: IIWorkspaceRoot;
|
|
2681
|
+
IWorkspaceRootInput: IIWorkspaceRootInput;
|
|
2682
|
+
InstalledExtension: IInstalledExtension;
|
|
2683
|
+
JSON: Scalars['JSON'];
|
|
2684
|
+
JSONObject: Scalars['JSONObject'];
|
|
2685
|
+
KeyBinding: IKeyBinding;
|
|
2686
|
+
Localization: ILocalization;
|
|
2687
|
+
LocalizationTranslation: ILocalizationTranslation;
|
|
2688
|
+
Location: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
|
|
2689
|
+
MarkupContent: never;
|
|
2690
|
+
MenuItem: IMenuItem;
|
|
2691
|
+
MenuItemAction: IMenuItemAction;
|
|
2692
|
+
MenuItemActionContext: IMenuItemActionContext;
|
|
2693
|
+
MenuItemActionDebug: IMenuItemActionDebug;
|
|
2694
|
+
MenuItemActionEditor: IMenuItemActionEditor;
|
|
2695
|
+
MenuItemActionEditorTitle: IMenuItemActionEditorTitle;
|
|
2696
|
+
MenuItemActionScm: IMenuItemActionScm;
|
|
2697
|
+
MenuItemActionScmChange: IMenuItemActionScmChange;
|
|
2698
|
+
MenuItemActionView: IMenuItemActionView;
|
|
2699
|
+
MenuItemInput: IMenuItemInput;
|
|
2700
|
+
Menus: IMenus;
|
|
2701
|
+
MessageLink: IMessageLink;
|
|
2702
|
+
MessageLinkInput: IMessageLinkInput;
|
|
2703
|
+
Mutation: {};
|
|
2704
|
+
Node: IResolversParentTypes['RegistryExtension'];
|
|
2705
|
+
Notification: INotification;
|
|
2706
|
+
NotificationActions: INotificationActions;
|
|
2707
|
+
NotificationActionsInput: INotificationActionsInput;
|
|
2708
|
+
NotificationChangeEvent: INotificationChangeEvent;
|
|
2709
|
+
NotificationInput: INotificationInput;
|
|
2710
|
+
NotificationMessage: INotificationMessage;
|
|
2711
|
+
NotificationMessageInput: INotificationMessageInput;
|
|
2712
|
+
NotificationViewItem: INotificationViewItem;
|
|
2713
|
+
NotificationViewItemProgress: INotificationViewItemProgress;
|
|
2714
|
+
NotificationViewItemProgressState: INotificationViewItemProgressState;
|
|
2715
|
+
Notifications: INotifications;
|
|
2716
|
+
Observable: Scalars['Observable'];
|
|
2717
|
+
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
2718
|
+
OpenDocumentTextParamsInput: IOpenDocumentTextParamsInput;
|
|
2719
|
+
PageInfo: IPageInfo;
|
|
2720
|
+
Position: IPosition;
|
|
2721
|
+
PositionInput: IPositionInput;
|
|
2722
|
+
ProcessMonitoring: IProcessMonitoring;
|
|
2723
|
+
PromptChoiceInput: IPromptChoiceInput;
|
|
2724
|
+
PromptChoiceRun: IPromptChoiceRun;
|
|
2725
|
+
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2726
|
+
PromptOptionsInput: IPromptOptionsInput;
|
|
2727
|
+
ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
|
|
2728
|
+
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2729
|
+
Query: {};
|
|
2730
|
+
Range: IRange;
|
|
2731
|
+
RangeInput: IRangeInput;
|
|
2732
|
+
RegistryEntry: IRegistryEntry;
|
|
2733
|
+
RegistryExtension: IRegistryExtension;
|
|
2734
|
+
RegistryExtensionConnection: IRegistryExtensionConnection;
|
|
2735
|
+
RegistryPublisher: IRegistryPublisher;
|
|
2736
|
+
RegistryPublisherConnection: IRegistryPublisherConnection;
|
|
2737
|
+
Scripts: IScripts;
|
|
2738
|
+
Snippet: ISnippet;
|
|
2739
|
+
Sort: ISort;
|
|
2740
|
+
Subscription: {};
|
|
2741
|
+
TextDocumentIdentifier: ITextDocumentIdentifier;
|
|
2742
|
+
TextDocumentIdentifierInput: ITextDocumentIdentifierInput;
|
|
2743
|
+
TextDocumentItem: ITextDocumentItem;
|
|
2744
|
+
TextDocumentItemInput: ITextDocumentItemInput;
|
|
2745
|
+
TextDocumentPositionParams: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
|
|
2746
|
+
TextDocumentPositionParamsInput: ITextDocumentPositionParamsInput;
|
|
2747
|
+
TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
|
|
2748
|
+
TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
|
|
2749
|
+
ThemeLabel: IThemeLabel;
|
|
2750
|
+
Time: Scalars['Time'];
|
|
2751
|
+
URI: Scalars['URI'];
|
|
2752
|
+
URIInput: Scalars['URIInput'];
|
|
2753
|
+
ViewContainer: IViewContainer;
|
|
2754
|
+
};
|
|
2755
|
+
export declare type ICacheControlDirectiveArgs = {
|
|
2756
|
+
maxAge?: Maybe<Scalars['Int']>;
|
|
2757
|
+
scope?: Maybe<ICacheControlScope>;
|
|
2758
|
+
};
|
|
2759
|
+
export declare type ICacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = ICacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
2760
|
+
export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
|
|
2761
|
+
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2762
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2763
|
+
};
|
|
2764
|
+
export declare type IAnchorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Anchor'] = IResolversParentTypes['Anchor']> = {
|
|
2765
|
+
x?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2766
|
+
y?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2767
|
+
height?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2768
|
+
width?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
2769
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2770
|
+
};
|
|
2771
|
+
export interface IAnyObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['AnyObject'], any> {
|
|
2772
|
+
name: 'AnyObject';
|
|
2773
|
+
}
|
|
2774
|
+
export declare type IArgsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ArgsType'] = IResolversParentTypes['ArgsType']> = {
|
|
2775
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2776
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2777
|
+
constraint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2778
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2779
|
+
};
|
|
2780
|
+
export declare type IAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Assets'] = IResolversParentTypes['Assets']> = {
|
|
2781
|
+
Type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2782
|
+
Content?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2783
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2784
|
+
};
|
|
2785
|
+
export declare type IAuthorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Author'] = IResolversParentTypes['Author']> = {
|
|
2786
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2787
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2788
|
+
};
|
|
2789
|
+
export declare type IBaseExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseExtension'] = IResolversParentTypes['BaseExtension']> = {
|
|
2790
|
+
type?: Resolver<Maybe<IResolversTypes['ExtensionType']>, ParentType, ContextType>;
|
|
2791
|
+
identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
2792
|
+
galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
2793
|
+
manifest?: Resolver<Maybe<IResolversTypes['ExtensionManifest']>, ParentType, ContextType>;
|
|
2794
|
+
location?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
2795
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2796
|
+
};
|
|
2797
|
+
export declare type IBundlesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Bundles'] = IResolversParentTypes['Bundles']> = {
|
|
2798
|
+
server?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2799
|
+
browser?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2800
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2801
|
+
};
|
|
2802
|
+
export declare type ICommandHandlerDescriptionTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandHandlerDescriptionType'] = IResolversParentTypes['CommandHandlerDescriptionType']> = {
|
|
2803
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2804
|
+
args?: Resolver<Maybe<Array<Maybe<IResolversTypes['ArgsType']>>>, ParentType, ContextType>;
|
|
2805
|
+
returns?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2806
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2807
|
+
};
|
|
2808
|
+
export declare type ICommandTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandType'] = IResolversParentTypes['CommandType']> = {
|
|
2809
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2810
|
+
handler?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
2811
|
+
description?: Resolver<Maybe<IResolversTypes['CommandHandlerDescriptionType']>, ParentType, ContextType>;
|
|
2812
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2813
|
+
};
|
|
2814
|
+
export declare type ICommandsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandsType'] = IResolversParentTypes['CommandsType']> = {
|
|
2815
|
+
commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['CommandType']>>>, ParentType, ContextType>;
|
|
2816
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2817
|
+
};
|
|
2818
|
+
export declare type IContextMenuResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContextMenu'] = IResolversParentTypes['ContextMenu']> = {
|
|
2819
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2820
|
+
isShow?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2821
|
+
anchor?: Resolver<Maybe<IResolversTypes['Anchor']>, ParentType, ContextType>;
|
|
2822
|
+
menuItems?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItem']>>>, ParentType, ContextType>;
|
|
2823
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2824
|
+
};
|
|
2825
|
+
export declare type IContributesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Contributes'] = IResolversParentTypes['Contributes']> = {
|
|
2826
|
+
menus?: Resolver<Maybe<IResolversTypes['Menus']>, ParentType, ContextType>;
|
|
2827
|
+
actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
|
|
2828
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2829
|
+
};
|
|
2830
|
+
export declare type IContributionActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionAction'] = IResolversParentTypes['ContributionAction']> = {
|
|
2831
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2832
|
+
label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2833
|
+
tooltip?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2834
|
+
class?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2835
|
+
enabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2836
|
+
checked?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2837
|
+
radio?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2838
|
+
run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
|
|
2839
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2840
|
+
};
|
|
2841
|
+
export declare type IContributionActionItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionItem'] = IResolversParentTypes['ContributionActionItem']> = {
|
|
2842
|
+
label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2843
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2844
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2845
|
+
};
|
|
2846
|
+
export declare type IContributionActionRunResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionRun'] = IResolversParentTypes['ContributionActionRun']> = {
|
|
2847
|
+
type?: Resolver<Maybe<IResolversTypes['GraphqlCallType']>, ParentType, ContextType>;
|
|
2848
|
+
document?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
2849
|
+
variables?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
|
|
2850
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2851
|
+
};
|
|
2852
|
+
export declare type IContributionActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActions'] = IResolversParentTypes['ContributionActions']> = {
|
|
2853
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2854
|
+
command?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2855
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2856
|
+
category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2857
|
+
actionItem?: Resolver<Maybe<IResolversTypes['ContributionActionItem']>, ParentType, ContextType>;
|
|
2858
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2859
|
+
};
|
|
2860
|
+
export declare type IContributionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionView'] = IResolversParentTypes['ContributionView']> = {
|
|
2861
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
2862
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2863
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2864
|
+
};
|
|
2865
|
+
export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
|
|
2866
|
+
name: 'Date';
|
|
2867
|
+
}
|
|
2868
|
+
export interface IDateTimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['DateTime'], any> {
|
|
2869
|
+
name: 'DateTime';
|
|
2870
|
+
}
|
|
2871
|
+
export declare type IDebuggerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Debugger'] = IResolversParentTypes['Debugger']> = {
|
|
2872
|
+
label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2873
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2874
|
+
runtime?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2875
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2876
|
+
};
|
|
2877
|
+
export declare type IDocSitePageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocSitePage'] = IResolversParentTypes['DocSitePage']> = {
|
|
2878
|
+
title?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2879
|
+
contentHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2880
|
+
indexHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2881
|
+
filePath?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2882
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2883
|
+
};
|
|
2884
|
+
export declare type IDocumentFilterResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocumentFilter'] = IResolversParentTypes['DocumentFilter']> = {
|
|
2885
|
+
language?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2886
|
+
schema?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2887
|
+
pattern?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2888
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2889
|
+
};
|
|
2890
|
+
export declare type IEmptyResponseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['EmptyResponse'] = IResolversParentTypes['EmptyResponse']> = {
|
|
2891
|
+
alwaysNil?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2892
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2893
|
+
};
|
|
2894
|
+
export declare type IEnginesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Engines'] = IResolversParentTypes['Engines']> = {
|
|
2895
|
+
node?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2896
|
+
vscode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2897
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2898
|
+
};
|
|
2899
|
+
export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Environment'] = IResolversParentTypes['Environment']> = {
|
|
2900
|
+
extHostLogsPath?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
2901
|
+
extensionDevelopmentLocationURI?: Resolver<Maybe<Array<Maybe<IResolversTypes['URI']>>>, ParentType, ContextType>;
|
|
2902
|
+
extensionEnabledProposedApi?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2903
|
+
extensionTestsLocationURI?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
2904
|
+
isExtensionDevelopment?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2905
|
+
logExtensionHostCommunication?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2906
|
+
logsPath?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2907
|
+
remoteAuthority?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2908
|
+
sessionId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2909
|
+
sync?: Resolver<Maybe<IResolversTypes['EnvironmentSync']>, ParentType, ContextType>;
|
|
2910
|
+
userDataPath?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2911
|
+
userDataSyncHome?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
2912
|
+
userDataSyncLogResource?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
2913
|
+
webviewCspSource?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2914
|
+
webviewExternalEndpoint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2915
|
+
webviewResourceRoot?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2916
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2917
|
+
};
|
|
2918
|
+
export declare type IExtensionColorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColor'] = IResolversParentTypes['ExtensionColor']> = {
|
|
2919
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
2920
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2921
|
+
defaults?: Resolver<Maybe<IResolversTypes['ExtensionColorTypes']>, ParentType, ContextType>;
|
|
2922
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2923
|
+
};
|
|
2924
|
+
export declare type IExtensionColorTypesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColorTypes'] = IResolversParentTypes['ExtensionColorTypes']> = {
|
|
2925
|
+
light?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2926
|
+
dark?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2927
|
+
highContrast?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2928
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2929
|
+
};
|
|
2930
|
+
export declare type IExtensionConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfiguration'] = IResolversParentTypes['ExtensionConfiguration']> = {
|
|
2931
|
+
properties?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2932
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2933
|
+
};
|
|
2934
|
+
export declare type IExtensionConfigurationPropertyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfigurationProperty'] = IResolversParentTypes['ExtensionConfigurationProperty']> = {
|
|
2935
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2936
|
+
type?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2937
|
+
defaults?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2938
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2939
|
+
};
|
|
2940
|
+
export declare type IExtensionContributionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionContributions'] = IResolversParentTypes['ExtensionContributions']> = {
|
|
2941
|
+
actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
|
|
2942
|
+
commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
|
|
2943
|
+
configuration?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionConfiguration']>>>, ParentType, ContextType>;
|
|
2944
|
+
debuggers?: Resolver<Maybe<Array<Maybe<IResolversTypes['Debugger']>>>, ParentType, ContextType>;
|
|
2945
|
+
grammars?: Resolver<Maybe<Array<Maybe<IResolversTypes['Grammar']>>>, ParentType, ContextType>;
|
|
2946
|
+
jsonValidation?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionJSONValidation']>>>, ParentType, ContextType>;
|
|
2947
|
+
keybindings?: Resolver<Maybe<Array<Maybe<IResolversTypes['KeyBinding']>>>, ParentType, ContextType>;
|
|
2948
|
+
languages?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionLanguage']>>>, ParentType, ContextType>;
|
|
2949
|
+
menus?: Resolver<Maybe<IResolversTypes['Menus']>, ParentType, ContextType>;
|
|
2950
|
+
snippets?: Resolver<Maybe<Array<Maybe<IResolversTypes['Snippet']>>>, ParentType, ContextType>;
|
|
2951
|
+
themes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ThemeLabel']>>>, ParentType, ContextType>;
|
|
2952
|
+
iconThemes?: Resolver<Maybe<Array<Maybe<IResolversTypes['ThemeLabel']>>>, ParentType, ContextType>;
|
|
2953
|
+
viewsContainers?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2954
|
+
views?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
2955
|
+
colors?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionColor']>>>, ParentType, ContextType>;
|
|
2956
|
+
localizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Localization']>>>, ParentType, ContextType>;
|
|
2957
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2958
|
+
};
|
|
2959
|
+
export declare type IExtensionIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionIdentifier'] = IResolversParentTypes['ExtensionIdentifier']> = {
|
|
2960
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2961
|
+
uuid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2962
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2963
|
+
};
|
|
2964
|
+
export declare type IExtensionInstanceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionInstance'] = IResolversParentTypes['ExtensionInstance']> = {
|
|
2965
|
+
pid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2966
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2967
|
+
path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2968
|
+
env?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2969
|
+
status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2970
|
+
extensionID?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
2971
|
+
monit?: Resolver<Maybe<IResolversTypes['ProcessMonitoring']>, ParentType, ContextType>;
|
|
2972
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2973
|
+
};
|
|
2974
|
+
export declare type IExtensionJsonValidationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionJSONValidation'] = IResolversParentTypes['ExtensionJSONValidation']> = {
|
|
2975
|
+
fileMatch?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2976
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2977
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2978
|
+
};
|
|
2979
|
+
export declare type IExtensionLanguageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionLanguage'] = IResolversParentTypes['ExtensionLanguage']> = {
|
|
2980
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
2981
|
+
extensions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2982
|
+
aliases?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2983
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2984
|
+
};
|
|
2985
|
+
export declare type IExtensionManifestResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifest'] = IResolversParentTypes['ExtensionManifest']> = {
|
|
2986
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2987
|
+
version?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2988
|
+
main?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2989
|
+
badges?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2990
|
+
preview?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2991
|
+
keywords?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
2992
|
+
license?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2993
|
+
homepage?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2994
|
+
publisher?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2995
|
+
categories?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2996
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2997
|
+
extensionID?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2998
|
+
displayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2999
|
+
dependencies?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
3000
|
+
devDependencies?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
3001
|
+
extensionPack?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3002
|
+
extensionKind?: Resolver<Maybe<IResolversTypes['ExtensionKind']>, ParentType, ContextType>;
|
|
3003
|
+
extensionDependencies?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3004
|
+
bundle?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3005
|
+
raw?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3006
|
+
readme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3007
|
+
assets?: Resolver<Maybe<Array<Maybe<IResolversTypes['Assets']>>>, ParentType, ContextType>;
|
|
3008
|
+
scripts?: Resolver<Maybe<IResolversTypes['Scripts']>, ParentType, ContextType>;
|
|
3009
|
+
bundles?: Resolver<Maybe<IResolversTypes['Bundles']>, ParentType, ContextType>;
|
|
3010
|
+
bundleURL?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3011
|
+
tags?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3012
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3013
|
+
extension?: Resolver<Maybe<IResolversTypes['ExtensionPackageType']>, ParentType, ContextType>;
|
|
3014
|
+
engines?: Resolver<Maybe<IResolversTypes['Engines']>, ParentType, ContextType>;
|
|
3015
|
+
makrdown?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3016
|
+
qna?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3017
|
+
author?: Resolver<Maybe<IResolversTypes['Author']>, ParentType, ContextType>;
|
|
3018
|
+
galleryBanner?: Resolver<Maybe<IResolversTypes['GalleryBanner']>, ParentType, ContextType>;
|
|
3019
|
+
activationEvents?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3020
|
+
contributes?: Resolver<Maybe<IResolversTypes['ExtensionContributions']>, ParentType, ContextType>;
|
|
3021
|
+
icon?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3022
|
+
bugs?: Resolver<Maybe<IResolversTypes['ExtensionManifestBugs']>, ParentType, ContextType>;
|
|
3023
|
+
repository?: Resolver<Maybe<IResolversTypes['ExtensionManifestRepository']>, ParentType, ContextType>;
|
|
3024
|
+
enableProposedApi?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3025
|
+
api?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3026
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3027
|
+
};
|
|
3028
|
+
export declare type IExtensionManifestBugsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestBugs'] = IResolversParentTypes['ExtensionManifestBugs']> = {
|
|
3029
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3030
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3031
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3032
|
+
};
|
|
3033
|
+
export declare type IExtensionManifestRepositoryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestRepository'] = IResolversParentTypes['ExtensionManifestRepository']> = {
|
|
3034
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3035
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3036
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3037
|
+
};
|
|
3038
|
+
export declare type IExtensionPackageTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionPackageType'] = IResolversParentTypes['ExtensionPackageType']> = {
|
|
3039
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3040
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3041
|
+
};
|
|
3042
|
+
export declare type IExtensionRegistryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistry'] = IResolversParentTypes['ExtensionRegistry']> = {
|
|
3043
|
+
extension?: Resolver<Maybe<IResolversTypes['RegistryExtension']>, ParentType, ContextType, RequireFields<IExtensionRegistryExtensionArgs, 'extensionID'>>;
|
|
3044
|
+
extensions?: Resolver<IResolversTypes['RegistryExtensionConnection'], ParentType, ContextType, RequireFields<IExtensionRegistryExtensionsArgs, 'local' | 'remote' | 'includeWIP'>>;
|
|
3045
|
+
releases?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionRelease']>>>, ParentType, ContextType, RequireFields<IExtensionRegistryReleasesArgs, 'extensionID'>>;
|
|
3046
|
+
publishers?: Resolver<IResolversTypes['RegistryPublisherConnection'], ParentType, ContextType, RequireFields<IExtensionRegistryPublishersArgs, never>>;
|
|
3047
|
+
viewerPublishers?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
|
|
3048
|
+
localExtensionIDPrefix?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3049
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3050
|
+
};
|
|
3051
|
+
export declare type IExtensionRegistryCreateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryCreateExtensionResult'] = IResolversParentTypes['ExtensionRegistryCreateExtensionResult']> = {
|
|
3052
|
+
extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
|
|
3053
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3054
|
+
};
|
|
3055
|
+
export declare type IExtensionRegistryPublishExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryPublishExtensionResult'] = IResolversParentTypes['ExtensionRegistryPublishExtensionResult']> = {
|
|
3056
|
+
extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
|
|
3057
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3058
|
+
};
|
|
3059
|
+
export declare type IExtensionRegistryUpdateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryUpdateExtensionResult'] = IResolversParentTypes['ExtensionRegistryUpdateExtensionResult']> = {
|
|
3060
|
+
extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
|
|
3061
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3062
|
+
};
|
|
3063
|
+
export declare type IExtensionReleaseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRelease'] = IResolversParentTypes['ExtensionRelease']> = {
|
|
3064
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
3065
|
+
bundle?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3066
|
+
bundleURL?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3067
|
+
version?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3068
|
+
manifest?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3069
|
+
sourceMap?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3070
|
+
extensionID?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3071
|
+
creatorUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3072
|
+
releaseVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3073
|
+
activationEvents?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3074
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3075
|
+
};
|
|
3076
|
+
export declare type IFieldErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['FieldError'] = IResolversParentTypes['FieldError']> = {
|
|
3077
|
+
field?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3078
|
+
message?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3079
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3080
|
+
};
|
|
3081
|
+
export declare type IGalleryBannerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryBanner'] = IResolversParentTypes['GalleryBanner']> = {
|
|
3082
|
+
color?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3083
|
+
theme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3084
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3085
|
+
};
|
|
3086
|
+
export declare type IGalleryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtension'] = IResolversParentTypes['GalleryExtension']> = {
|
|
3087
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3088
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3089
|
+
identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3090
|
+
version?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3091
|
+
date?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3092
|
+
icon?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3093
|
+
displayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3094
|
+
publisherId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3095
|
+
publisher?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3096
|
+
publisherDisplayName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3097
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3098
|
+
installCount?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3099
|
+
rating?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
3100
|
+
ratingCount?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
3101
|
+
assets?: Resolver<Maybe<IResolversTypes['GalleryExtensionAssets']>, ParentType, ContextType>;
|
|
3102
|
+
properties?: Resolver<Maybe<IResolversTypes['GalleryExtensionProperties']>, ParentType, ContextType>;
|
|
3103
|
+
preview?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3104
|
+
resources?: Resolver<Maybe<IResolversTypes['GalleryExtensionResources']>, ParentType, ContextType>;
|
|
3105
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3106
|
+
};
|
|
3107
|
+
export declare type IGalleryExtensionAssetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAsset'] = IResolversParentTypes['GalleryExtensionAsset']> = {
|
|
3108
|
+
uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3109
|
+
fallbackUri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3110
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3111
|
+
};
|
|
3112
|
+
export declare type IGalleryExtensionAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAssets'] = IResolversParentTypes['GalleryExtensionAssets']> = {
|
|
3113
|
+
manifest?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3114
|
+
readme?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3115
|
+
changelog?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3116
|
+
download?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3117
|
+
icon?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3118
|
+
license?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3119
|
+
repository?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
|
|
3120
|
+
coreTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
3121
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3122
|
+
};
|
|
3123
|
+
export declare type IGalleryExtensionPropertiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionProperties'] = IResolversParentTypes['GalleryExtensionProperties']> = {
|
|
3124
|
+
engine?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3125
|
+
dependencies?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3126
|
+
extensionPack?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3127
|
+
localizedLanguages?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3128
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3129
|
+
};
|
|
3130
|
+
export declare type IGalleryExtensionResourcesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionResources'] = IResolversParentTypes['GalleryExtensionResources']> = {
|
|
3131
|
+
manifest?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3132
|
+
readme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3133
|
+
changelog?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3134
|
+
download?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3135
|
+
icon?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3136
|
+
license?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3137
|
+
repository?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3138
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3139
|
+
};
|
|
3140
|
+
export declare type IGalleryPagerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryPager'] = IResolversParentTypes['GalleryPager']> = {
|
|
3141
|
+
page?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3142
|
+
total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3143
|
+
pageSize?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3144
|
+
firstPage?: Resolver<Maybe<Array<Maybe<IResolversTypes['GalleryExtension']>>>, ParentType, ContextType>;
|
|
3145
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3146
|
+
};
|
|
3147
|
+
export declare type IGeoLocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
|
|
3148
|
+
coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
|
|
3149
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3150
|
+
};
|
|
3151
|
+
export declare type IGrammarResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Grammar'] = IResolversParentTypes['Grammar']> = {
|
|
3152
|
+
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3153
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3154
|
+
};
|
|
3155
|
+
export declare type IHoverResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Hover'] = IResolversParentTypes['Hover']> = {
|
|
3156
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
3157
|
+
contents?: Resolver<Maybe<IResolversTypes['MarkupContent']>, ParentType, ContextType>;
|
|
3158
|
+
range?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
|
|
3159
|
+
};
|
|
3160
|
+
export declare type IIBehaviorSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubject'] = IResolversParentTypes['IBehaviorSubject']> = {
|
|
3161
|
+
closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3162
|
+
hasError?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3163
|
+
isStopped?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3164
|
+
observers?: Resolver<Maybe<Array<Maybe<IResolversTypes['JSON']>>>, ParentType, ContextType>;
|
|
3165
|
+
thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3166
|
+
_isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3167
|
+
value?: Resolver<Maybe<Array<Maybe<IResolversTypes['IBehaviorSubjectValue']>>>, ParentType, ContextType>;
|
|
3168
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3169
|
+
};
|
|
3170
|
+
export declare type IIBehaviorSubjectValueResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubjectValue'] = IResolversParentTypes['IBehaviorSubjectValue']> = {
|
|
3171
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3172
|
+
registrationOptions?: Resolver<Maybe<IResolversTypes['IDocumentSelector']>, ParentType, ContextType>;
|
|
3173
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3174
|
+
};
|
|
3175
|
+
export declare type IIDestinationAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDestinationAnonymousSubject'] = IResolversParentTypes['IDestinationAnonymousSubject']> = {
|
|
3176
|
+
closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3177
|
+
destination?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3178
|
+
hasError?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3179
|
+
isStopped?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3180
|
+
observers?: Resolver<Maybe<Array<Maybe<IResolversTypes['JSON']>>>, ParentType, ContextType>;
|
|
3181
|
+
operator?: Resolver<Maybe<IResolversTypes['ISwitchMapOperator']>, ParentType, ContextType>;
|
|
3182
|
+
source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
|
|
3183
|
+
thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3184
|
+
_isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3185
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3186
|
+
};
|
|
3187
|
+
export declare type IIDocumentSelectorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDocumentSelector'] = IResolversParentTypes['IDocumentSelector']> = {
|
|
3188
|
+
documentSelector?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
3189
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3190
|
+
};
|
|
3191
|
+
export declare type IIModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IModel'] = IResolversParentTypes['IModel']> = {
|
|
3192
|
+
roots?: Resolver<Maybe<IResolversTypes['IWorkspaceRoot']>, ParentType, ContextType>;
|
|
3193
|
+
visibleViewComponents?: Resolver<Maybe<Array<Maybe<IResolversTypes['IViewComponentData']>>>, ParentType, ContextType>;
|
|
3194
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3195
|
+
};
|
|
3196
|
+
export declare type IIObservableResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IObservableResult'] = IResolversParentTypes['IObservableResult']> = {
|
|
3197
|
+
closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3198
|
+
destination?: Resolver<Maybe<IResolversTypes['IDestinationAnonymousSubject']>, ParentType, ContextType>;
|
|
3199
|
+
hasError?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3200
|
+
isStopped?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3201
|
+
observers?: Resolver<Maybe<Array<Maybe<IResolversTypes['JSON']>>>, ParentType, ContextType>;
|
|
3202
|
+
operator?: Resolver<Maybe<IResolversTypes['ISwitchMapOperator']>, ParentType, ContextType>;
|
|
3203
|
+
source?: Resolver<Maybe<IResolversTypes['ISourceAnonymousSubject']>, ParentType, ContextType>;
|
|
3204
|
+
thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3205
|
+
_isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3206
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3207
|
+
};
|
|
3208
|
+
export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
|
|
3209
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
3210
|
+
subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3211
|
+
adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3212
|
+
};
|
|
3213
|
+
export declare type IISourceAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISourceAnonymousSubject'] = IResolversParentTypes['ISourceAnonymousSubject']> = {
|
|
3214
|
+
closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3215
|
+
destination?: Resolver<Maybe<IResolversTypes['IDestinationAnonymousSubject']>, ParentType, ContextType>;
|
|
3216
|
+
hasError?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3217
|
+
isStopped?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3218
|
+
observers?: Resolver<Maybe<Array<Maybe<IResolversTypes['JSON']>>>, ParentType, ContextType>;
|
|
3219
|
+
operator?: Resolver<Maybe<IResolversTypes['ISwitchMapOperator']>, ParentType, ContextType>;
|
|
3220
|
+
source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
|
|
3221
|
+
thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3222
|
+
_isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3223
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3224
|
+
};
|
|
3225
|
+
export declare type IISwitchMapOperatorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISwitchMapOperator'] = IResolversParentTypes['ISwitchMapOperator']> = {
|
|
3226
|
+
project?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3227
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3228
|
+
};
|
|
3229
|
+
export declare type IITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITextDocumentIdentifier'] = IResolversParentTypes['ITextDocumentIdentifier']> = {
|
|
3230
|
+
__resolveType: TypeResolveFn<'TextDocumentIdentifier' | 'TextDocumentItem', ParentType, ContextType>;
|
|
3231
|
+
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
3232
|
+
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3233
|
+
};
|
|
3234
|
+
export declare type IIViewComponentDataResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IViewComponentData'] = IResolversParentTypes['IViewComponentData']> = {
|
|
3235
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3236
|
+
item?: Resolver<Maybe<IResolversTypes['TextDocumentItem']>, ParentType, ContextType>;
|
|
3237
|
+
isActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3238
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3239
|
+
};
|
|
3240
|
+
export declare type IIWorkspaceRootResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IWorkspaceRoot'] = IResolversParentTypes['IWorkspaceRoot']> = {
|
|
3241
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3242
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3243
|
+
};
|
|
3244
|
+
export declare type IInstalledExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InstalledExtension'] = IResolversParentTypes['InstalledExtension']> = {
|
|
3245
|
+
extension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType>;
|
|
3246
|
+
identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3247
|
+
galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
|
|
3248
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3249
|
+
};
|
|
3250
|
+
export interface IJsonScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
|
|
3251
|
+
name: 'JSON';
|
|
3252
|
+
}
|
|
3253
|
+
export interface IJsonObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSONObject'], any> {
|
|
3254
|
+
name: 'JSONObject';
|
|
3255
|
+
}
|
|
3256
|
+
export declare type IKeyBindingResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['KeyBinding'] = IResolversParentTypes['KeyBinding']> = {
|
|
3257
|
+
command?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3258
|
+
key?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3259
|
+
when?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3260
|
+
mac?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3261
|
+
linux?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3262
|
+
win?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3263
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3264
|
+
};
|
|
3265
|
+
export declare type ILocalizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Localization'] = IResolversParentTypes['Localization']> = {
|
|
3266
|
+
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3267
|
+
languageName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3268
|
+
localizedLanguageName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3269
|
+
translations?: Resolver<Maybe<Array<Maybe<IResolversTypes['LocalizationTranslation']>>>, ParentType, ContextType>;
|
|
3270
|
+
minimalTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
|
|
3271
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3272
|
+
};
|
|
3273
|
+
export declare type ILocalizationTranslationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LocalizationTranslation'] = IResolversParentTypes['LocalizationTranslation']> = {
|
|
3274
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
3275
|
+
path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3276
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3277
|
+
};
|
|
3278
|
+
export declare type ILocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Location'] = IResolversParentTypes['Location']> = {
|
|
3279
|
+
__resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
|
|
3280
|
+
rangeOrUri?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3281
|
+
uriRangeOrPosition?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3282
|
+
range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3283
|
+
uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3284
|
+
};
|
|
3285
|
+
export declare type IMarkupContentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MarkupContent'] = IResolversParentTypes['MarkupContent']> = {
|
|
3286
|
+
__resolveType: TypeResolveFn<null, ParentType, ContextType>;
|
|
3287
|
+
value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3288
|
+
kind?: Resolver<Maybe<IResolversTypes['MarkupKind']>, ParentType, ContextType>;
|
|
3289
|
+
};
|
|
3290
|
+
export declare type IMenuItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItem'] = IResolversParentTypes['MenuItem']> = {
|
|
3291
|
+
id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3292
|
+
label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3293
|
+
enabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3294
|
+
run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
|
|
3295
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3296
|
+
};
|
|
3297
|
+
export declare type IMenuItemActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemAction'] = IResolversParentTypes['MenuItemAction']> = {
|
|
3298
|
+
action?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3299
|
+
when?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3300
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3301
|
+
};
|
|
3302
|
+
export declare type IMenuItemActionContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionContext'] = IResolversParentTypes['MenuItemActionContext']> = {
|
|
3303
|
+
context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3304
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3305
|
+
};
|
|
3306
|
+
export declare type IMenuItemActionDebugResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionDebug'] = IResolversParentTypes['MenuItemActionDebug']> = {
|
|
3307
|
+
callstack?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
|
|
3308
|
+
toolbar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3309
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3310
|
+
};
|
|
3311
|
+
export declare type IMenuItemActionEditorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditor'] = IResolversParentTypes['MenuItemActionEditor']> = {
|
|
3312
|
+
context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3313
|
+
title?: Resolver<Maybe<IResolversTypes['MenuItemActionEditorTitle']>, ParentType, ContextType>;
|
|
3314
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3315
|
+
};
|
|
3316
|
+
export declare type IMenuItemActionEditorTitleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditorTitle'] = IResolversParentTypes['MenuItemActionEditorTitle']> = {
|
|
3317
|
+
own?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3318
|
+
context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3319
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3320
|
+
};
|
|
3321
|
+
export declare type IMenuItemActionScmResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScm'] = IResolversParentTypes['MenuItemActionScm']> = {
|
|
3322
|
+
title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3323
|
+
resourceGroup?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
|
|
3324
|
+
resource?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
|
|
3325
|
+
change?: Resolver<Maybe<IResolversTypes['MenuItemActionScmChange']>, ParentType, ContextType>;
|
|
3326
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3327
|
+
};
|
|
3328
|
+
export declare type IMenuItemActionScmChangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScmChange'] = IResolversParentTypes['MenuItemActionScmChange']> = {
|
|
3329
|
+
title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3330
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3331
|
+
};
|
|
3332
|
+
export declare type IMenuItemActionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionView'] = IResolversParentTypes['MenuItemActionView']> = {
|
|
3333
|
+
title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3334
|
+
item?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
|
|
3335
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3336
|
+
};
|
|
3337
|
+
export declare type IMenusResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Menus'] = IResolversParentTypes['Menus']> = {
|
|
3338
|
+
commandPalette?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3339
|
+
explorer?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
|
|
3340
|
+
editor?: Resolver<Maybe<IResolversTypes['MenuItemActionEditor']>, ParentType, ContextType>;
|
|
3341
|
+
debug?: Resolver<Maybe<IResolversTypes['MenuItemActionDebug']>, ParentType, ContextType>;
|
|
3342
|
+
scm?: Resolver<Maybe<IResolversTypes['MenuItemActionScm']>, ParentType, ContextType>;
|
|
3343
|
+
view?: Resolver<Maybe<IResolversTypes['MenuItemActionView']>, ParentType, ContextType>;
|
|
3344
|
+
touchBar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
|
|
3345
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3346
|
+
};
|
|
3347
|
+
export declare type IMessageLinkResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MessageLink'] = IResolversParentTypes['MessageLink']> = {
|
|
3348
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3349
|
+
href?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3350
|
+
offset?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3351
|
+
length?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3352
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3353
|
+
};
|
|
3354
|
+
export declare type IMutationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
3355
|
+
activate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationActivateArgs, 'request'>>;
|
|
3356
|
+
addNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationAddNotificationArgs, never>>;
|
|
3357
|
+
closeNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationCloseNotificationArgs, never>>;
|
|
3358
|
+
codeLenseProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationCodeLenseProviderDefinitionArgs, never>>;
|
|
3359
|
+
completionProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationCompletionProviderDefinitionArgs, never>>;
|
|
3360
|
+
copy?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationCopyArgs, never>>;
|
|
3361
|
+
createExtension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType, RequireFields<IMutationCreateExtensionArgs, 'publisher' | 'name'>>;
|
|
3362
|
+
definitionDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationDefinitionDefinitionArgs, never>>;
|
|
3363
|
+
deleteExtension?: Resolver<IResolversTypes['EmptyResponse'], ParentType, ContextType, RequireFields<IMutationDeleteExtensionArgs, 'extension'>>;
|
|
3364
|
+
documentFormattingProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationDocumentFormattingProviderDefinitionArgs, never>>;
|
|
3365
|
+
documentHighLightProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationDocumentHighLightProviderDefinitionArgs, never>>;
|
|
3366
|
+
documentSymbolDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationDocumentSymbolDefinitionArgs, never>>;
|
|
3367
|
+
dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3368
|
+
handler?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationHandlerArgs, never>>;
|
|
3369
|
+
hideContextMenu?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3370
|
+
hoverProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationHoverProviderDefinitionArgs, never>>;
|
|
3371
|
+
install?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType, RequireFields<IMutationInstallArgs, 'vsix'>>;
|
|
3372
|
+
notify?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationNotifyArgs, never>>;
|
|
3373
|
+
notifyError?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationNotifyErrorArgs, never>>;
|
|
3374
|
+
notifyInfo?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationNotifyInfoArgs, never>>;
|
|
3375
|
+
notifyPrompt?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationNotifyPromptArgs, never>>;
|
|
3376
|
+
notifyWarn?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationNotifyWarnArgs, never>>;
|
|
3377
|
+
openLanguageDocument?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationOpenLanguageDocumentArgs, never>>;
|
|
3378
|
+
publishExtension?: Resolver<IResolversTypes['ExtensionRegistryPublishExtensionResult'], ParentType, ContextType, RequireFields<IMutationPublishExtensionArgs, 'extensionID' | 'manifest' | 'force'>>;
|
|
3379
|
+
referenceProviderDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationReferenceProviderDefinitionArgs, never>>;
|
|
3380
|
+
removeExtension?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRemoveExtensionArgs, 'id'>>;
|
|
3381
|
+
renameDefinition?: Resolver<Maybe<IResolversTypes['Observable']>, ParentType, ContextType, RequireFields<IMutationRenameDefinitionArgs, never>>;
|
|
3382
|
+
runMenuAction?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationRunMenuActionArgs, never>>;
|
|
3383
|
+
showContextMenu?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationShowContextMenuArgs, never>>;
|
|
3384
|
+
startExtensionHost?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationStartExtensionHostArgs, never>>;
|
|
3385
|
+
updateExtension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType, RequireFields<IMutationUpdateExtensionArgs, 'extension'>>;
|
|
3386
|
+
updateModel?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationUpdateModelArgs, never>>;
|
|
3387
|
+
};
|
|
3388
|
+
export declare type INodeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Node'] = IResolversParentTypes['Node']> = {
|
|
3389
|
+
__resolveType: TypeResolveFn<'RegistryExtension', ParentType, ContextType>;
|
|
3390
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3391
|
+
};
|
|
3392
|
+
export declare type INotificationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notification'] = IResolversParentTypes['Notification']> = {
|
|
3393
|
+
index?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3394
|
+
severity?: Resolver<Maybe<IResolversTypes['NotificationSeverity']>, ParentType, ContextType>;
|
|
3395
|
+
message?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3396
|
+
source?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3397
|
+
actions?: Resolver<Maybe<IResolversTypes['NotificationActions']>, ParentType, ContextType>;
|
|
3398
|
+
sticky?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3399
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3400
|
+
};
|
|
3401
|
+
export declare type INotificationActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationActions'] = IResolversParentTypes['NotificationActions']> = {
|
|
3402
|
+
primary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
|
|
3403
|
+
secondary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
|
|
3404
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3405
|
+
};
|
|
3406
|
+
export declare type INotificationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationChangeEvent'] = IResolversParentTypes['NotificationChangeEvent']> = {
|
|
3407
|
+
index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3408
|
+
item?: Resolver<Maybe<IResolversTypes['NotificationViewItem']>, ParentType, ContextType>;
|
|
3409
|
+
kind?: Resolver<Maybe<IResolversTypes['NotificationChangeType']>, ParentType, ContextType>;
|
|
3410
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3411
|
+
};
|
|
3412
|
+
export declare type INotificationMessageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationMessage'] = IResolversParentTypes['NotificationMessage']> = {
|
|
3413
|
+
raw?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3414
|
+
original?: Resolver<Maybe<IResolversTypes['NotificationMessage']>, ParentType, ContextType>;
|
|
3415
|
+
value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3416
|
+
links?: Resolver<Maybe<Array<Maybe<IResolversTypes['MessageLink']>>>, ParentType, ContextType>;
|
|
3417
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3418
|
+
};
|
|
3419
|
+
export declare type INotificationViewItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItem'] = IResolversParentTypes['NotificationViewItem']> = {
|
|
3420
|
+
severity?: Resolver<Maybe<IResolversTypes['NotificationSeverity']>, ParentType, ContextType>;
|
|
3421
|
+
sticky?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3422
|
+
silent?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3423
|
+
message?: Resolver<Maybe<IResolversTypes['NotificationMessage']>, ParentType, ContextType>;
|
|
3424
|
+
source?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3425
|
+
action?: Resolver<Maybe<IResolversTypes['NotificationActions']>, ParentType, ContextType>;
|
|
3426
|
+
progress?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgress']>, ParentType, ContextType>;
|
|
3427
|
+
expanded?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3428
|
+
canCollapse?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3429
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3430
|
+
};
|
|
3431
|
+
export declare type INotificationViewItemProgressResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgress'] = IResolversParentTypes['NotificationViewItemProgress']> = {
|
|
3432
|
+
state?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgressState']>, ParentType, ContextType>;
|
|
3433
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3434
|
+
};
|
|
3435
|
+
export declare type INotificationViewItemProgressStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgressState'] = IResolversParentTypes['NotificationViewItemProgressState']> = {
|
|
3436
|
+
infinite?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3437
|
+
total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3438
|
+
worked?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3439
|
+
done?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3440
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3441
|
+
};
|
|
3442
|
+
export declare type INotificationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notifications'] = IResolversParentTypes['Notifications']> = {
|
|
3443
|
+
notifications?: Resolver<Maybe<Array<Maybe<IResolversTypes['Notification']>>>, ParentType, ContextType>;
|
|
3444
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3445
|
+
};
|
|
3446
|
+
export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
|
|
3447
|
+
name: 'Observable';
|
|
3448
|
+
}
|
|
3449
|
+
export declare type IPageInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageInfo'] = IResolversParentTypes['PageInfo']> = {
|
|
3450
|
+
hasNextPage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
3451
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3452
|
+
};
|
|
3453
|
+
export declare type IPositionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
|
|
3454
|
+
lineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3455
|
+
column?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3456
|
+
line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3457
|
+
character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3458
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3459
|
+
};
|
|
3460
|
+
export declare type IProcessMonitoringResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProcessMonitoring'] = IResolversParentTypes['ProcessMonitoring']> = {
|
|
3461
|
+
cpu?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
3462
|
+
memory?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
3463
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3464
|
+
};
|
|
3465
|
+
export declare type IProvideTextDocumentLocationSignatureResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProvideTextDocumentLocationSignature'] = IResolversParentTypes['ProvideTextDocumentLocationSignature']> = {
|
|
3466
|
+
textDocument?: Resolver<Maybe<IResolversTypes['TextDocumentIdentifier']>, ParentType, ContextType>;
|
|
3467
|
+
position?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3468
|
+
rangeOrUri?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3469
|
+
uriRangeOrPosition?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3470
|
+
range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3471
|
+
uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3472
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3473
|
+
};
|
|
3474
|
+
export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
3475
|
+
contextMenu?: Resolver<Maybe<IResolversTypes['ContextMenu']>, ParentType, ContextType>;
|
|
3476
|
+
docSitePage?: Resolver<Maybe<IResolversTypes['DocSitePage']>, ParentType, ContextType, RequireFields<IQueryDocSitePageArgs, 'path'>>;
|
|
3477
|
+
extension?: Resolver<Maybe<IResolversTypes['RegistryExtension']>, ParentType, ContextType, RequireFields<IQueryExtensionArgs, 'extensionID'>>;
|
|
3478
|
+
extensionRegistry?: Resolver<IResolversTypes['ExtensionRegistry'], ParentType, ContextType>;
|
|
3479
|
+
extensions?: Resolver<IResolversTypes['RegistryExtensionConnection'], ParentType, ContextType, RequireFields<IQueryExtensionsArgs, 'local' | 'remote' | 'includeWIP'>>;
|
|
3480
|
+
gallery?: Resolver<Maybe<IResolversTypes['GalleryPager']>, ParentType, ContextType, RequireFields<IQueryGalleryArgs, never>>;
|
|
3481
|
+
galleryExtension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType, RequireFields<IQueryGalleryExtensionArgs, 'extensionID'>>;
|
|
3482
|
+
installed?: Resolver<Maybe<Array<Maybe<IResolversTypes['InstalledExtension']>>>, ParentType, ContextType>;
|
|
3483
|
+
instances?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionInstance']>>>, ParentType, ContextType>;
|
|
3484
|
+
node?: Resolver<Maybe<IResolversTypes['Node']>, ParentType, ContextType, RequireFields<IQueryNodeArgs, 'id'>>;
|
|
3485
|
+
notifications?: Resolver<Maybe<IResolversTypes['Notifications']>, ParentType, ContextType>;
|
|
3486
|
+
registerProvider?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IQueryRegisterProviderArgs, never>>;
|
|
3487
|
+
releases?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionRelease']>>>, ParentType, ContextType, RequireFields<IQueryReleasesArgs, 'extensionID'>>;
|
|
3488
|
+
showNotification?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IQueryShowNotificationArgs, never>>;
|
|
3489
|
+
};
|
|
3490
|
+
export declare type IRangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Range'] = IResolversParentTypes['Range']> = {
|
|
3491
|
+
start?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3492
|
+
end?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3493
|
+
startLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3494
|
+
startColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3495
|
+
endLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3496
|
+
endColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
3497
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3498
|
+
};
|
|
3499
|
+
export declare type IRegistryEntryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryEntry'] = IResolversParentTypes['RegistryEntry']> = {
|
|
3500
|
+
registrationOptions?: Resolver<Maybe<IResolversTypes['TextDocumentRegistrationOptions']>, ParentType, ContextType>;
|
|
3501
|
+
provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3502
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3503
|
+
};
|
|
3504
|
+
export declare type IRegistryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtension'] = IResolversParentTypes['RegistryExtension']> = {
|
|
3505
|
+
id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3506
|
+
uuid?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3507
|
+
publisher?: Resolver<Maybe<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
|
|
3508
|
+
extensionID?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3509
|
+
extensionIDWithoutRegistry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3510
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3511
|
+
version?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3512
|
+
activationEvents?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3513
|
+
manifest?: Resolver<Maybe<IResolversTypes['ExtensionManifest']>, ParentType, ContextType>;
|
|
3514
|
+
updatedAt?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3515
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3516
|
+
remoteURL?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3517
|
+
isLocal?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3518
|
+
viewerCanAdminister?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
3519
|
+
releases?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionRelease']>>>, ParentType, ContextType>;
|
|
3520
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3521
|
+
};
|
|
3522
|
+
export declare type IRegistryExtensionConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtensionConnection'] = IResolversParentTypes['RegistryExtensionConnection']> = {
|
|
3523
|
+
nodes?: Resolver<Array<IResolversTypes['RegistryExtension']>, ParentType, ContextType>;
|
|
3524
|
+
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
3525
|
+
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
|
3526
|
+
url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3527
|
+
error?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3528
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3529
|
+
};
|
|
3530
|
+
export declare type IRegistryPublisherResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisher'] = IResolversParentTypes['RegistryPublisher']> = {
|
|
3531
|
+
UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3532
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3533
|
+
};
|
|
3534
|
+
export declare type IRegistryPublisherConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisherConnection'] = IResolversParentTypes['RegistryPublisherConnection']> = {
|
|
3535
|
+
nodes?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
|
|
3536
|
+
totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
3537
|
+
pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
|
|
3538
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3539
|
+
};
|
|
3540
|
+
export declare type IScriptsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Scripts'] = IResolversParentTypes['Scripts']> = {
|
|
3541
|
+
cdebasebuild?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3542
|
+
cdebasepublish?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3543
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3544
|
+
};
|
|
3545
|
+
export declare type ISnippetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Snippet'] = IResolversParentTypes['Snippet']> = {
|
|
3546
|
+
language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3547
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3548
|
+
};
|
|
3549
|
+
export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
|
|
3550
|
+
dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, "dummy", ParentType, ContextType>;
|
|
3551
|
+
};
|
|
3552
|
+
export declare type ITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentIdentifier'] = IResolversParentTypes['TextDocumentIdentifier']> = {
|
|
3553
|
+
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
3554
|
+
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3555
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3556
|
+
};
|
|
3557
|
+
export declare type ITextDocumentItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentItem'] = IResolversParentTypes['TextDocumentItem']> = {
|
|
3558
|
+
uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
|
|
3559
|
+
languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3560
|
+
text?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3561
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3562
|
+
};
|
|
3563
|
+
export declare type ITextDocumentPositionParamsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentPositionParams'] = IResolversParentTypes['TextDocumentPositionParams']> = {
|
|
3564
|
+
__resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
|
|
3565
|
+
textDocument?: Resolver<Maybe<IResolversTypes['TextDocumentIdentifier']>, ParentType, ContextType>;
|
|
3566
|
+
position?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
|
|
3567
|
+
};
|
|
3568
|
+
export declare type ITextDocumentRegistrationOptionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentRegistrationOptions'] = IResolversParentTypes['TextDocumentRegistrationOptions']> = {
|
|
3569
|
+
documentSelector?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
|
|
3570
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3571
|
+
};
|
|
3572
|
+
export declare type IThemeLabelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThemeLabel'] = IResolversParentTypes['ThemeLabel']> = {
|
|
3573
|
+
label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3574
|
+
uiTheme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3575
|
+
path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3576
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3577
|
+
};
|
|
3578
|
+
export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
|
|
3579
|
+
name: 'Time';
|
|
3580
|
+
}
|
|
3581
|
+
export interface IUriScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URI'], any> {
|
|
3582
|
+
name: 'URI';
|
|
3583
|
+
}
|
|
3584
|
+
export interface IUriInputScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['URIInput'], any> {
|
|
3585
|
+
name: 'URIInput';
|
|
3586
|
+
}
|
|
3587
|
+
export declare type IViewContainerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewContainer'] = IResolversParentTypes['ViewContainer']> = {
|
|
3588
|
+
id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
3589
|
+
title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3590
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3591
|
+
};
|
|
3592
|
+
export declare type IResolvers<ContextType = MyContext> = {
|
|
3593
|
+
AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
|
|
3594
|
+
Anchor?: IAnchorResolvers<ContextType>;
|
|
3595
|
+
AnyObject?: GraphQLScalarType;
|
|
3596
|
+
ArgsType?: IArgsTypeResolvers<ContextType>;
|
|
3597
|
+
Assets?: IAssetsResolvers<ContextType>;
|
|
3598
|
+
Author?: IAuthorResolvers<ContextType>;
|
|
3599
|
+
BaseExtension?: IBaseExtensionResolvers<ContextType>;
|
|
3600
|
+
Bundles?: IBundlesResolvers<ContextType>;
|
|
3601
|
+
CommandHandlerDescriptionType?: ICommandHandlerDescriptionTypeResolvers<ContextType>;
|
|
3602
|
+
CommandType?: ICommandTypeResolvers<ContextType>;
|
|
3603
|
+
CommandsType?: ICommandsTypeResolvers<ContextType>;
|
|
3604
|
+
ContextMenu?: IContextMenuResolvers<ContextType>;
|
|
3605
|
+
Contributes?: IContributesResolvers<ContextType>;
|
|
3606
|
+
ContributionAction?: IContributionActionResolvers<ContextType>;
|
|
3607
|
+
ContributionActionItem?: IContributionActionItemResolvers<ContextType>;
|
|
3608
|
+
ContributionActionRun?: IContributionActionRunResolvers<ContextType>;
|
|
3609
|
+
ContributionActions?: IContributionActionsResolvers<ContextType>;
|
|
3610
|
+
ContributionView?: IContributionViewResolvers<ContextType>;
|
|
3611
|
+
Date?: GraphQLScalarType;
|
|
3612
|
+
DateTime?: GraphQLScalarType;
|
|
3613
|
+
Debugger?: IDebuggerResolvers<ContextType>;
|
|
3614
|
+
DocSitePage?: IDocSitePageResolvers<ContextType>;
|
|
3615
|
+
DocumentFilter?: IDocumentFilterResolvers<ContextType>;
|
|
3616
|
+
EmptyResponse?: IEmptyResponseResolvers<ContextType>;
|
|
3617
|
+
Engines?: IEnginesResolvers<ContextType>;
|
|
3618
|
+
Environment?: IEnvironmentResolvers<ContextType>;
|
|
3619
|
+
ExtensionColor?: IExtensionColorResolvers<ContextType>;
|
|
3620
|
+
ExtensionColorTypes?: IExtensionColorTypesResolvers<ContextType>;
|
|
3621
|
+
ExtensionConfiguration?: IExtensionConfigurationResolvers<ContextType>;
|
|
3622
|
+
ExtensionConfigurationProperty?: IExtensionConfigurationPropertyResolvers<ContextType>;
|
|
3623
|
+
ExtensionContributions?: IExtensionContributionsResolvers<ContextType>;
|
|
3624
|
+
ExtensionIdentifier?: IExtensionIdentifierResolvers<ContextType>;
|
|
3625
|
+
ExtensionInstance?: IExtensionInstanceResolvers<ContextType>;
|
|
3626
|
+
ExtensionJSONValidation?: IExtensionJsonValidationResolvers<ContextType>;
|
|
3627
|
+
ExtensionLanguage?: IExtensionLanguageResolvers<ContextType>;
|
|
3628
|
+
ExtensionManifest?: IExtensionManifestResolvers<ContextType>;
|
|
3629
|
+
ExtensionManifestBugs?: IExtensionManifestBugsResolvers<ContextType>;
|
|
3630
|
+
ExtensionManifestRepository?: IExtensionManifestRepositoryResolvers<ContextType>;
|
|
3631
|
+
ExtensionPackageType?: IExtensionPackageTypeResolvers<ContextType>;
|
|
3632
|
+
ExtensionRegistry?: IExtensionRegistryResolvers<ContextType>;
|
|
3633
|
+
ExtensionRegistryCreateExtensionResult?: IExtensionRegistryCreateExtensionResultResolvers<ContextType>;
|
|
3634
|
+
ExtensionRegistryPublishExtensionResult?: IExtensionRegistryPublishExtensionResultResolvers<ContextType>;
|
|
3635
|
+
ExtensionRegistryUpdateExtensionResult?: IExtensionRegistryUpdateExtensionResultResolvers<ContextType>;
|
|
3636
|
+
ExtensionRelease?: IExtensionReleaseResolvers<ContextType>;
|
|
3637
|
+
FieldError?: IFieldErrorResolvers<ContextType>;
|
|
3638
|
+
GalleryBanner?: IGalleryBannerResolvers<ContextType>;
|
|
3639
|
+
GalleryExtension?: IGalleryExtensionResolvers<ContextType>;
|
|
3640
|
+
GalleryExtensionAsset?: IGalleryExtensionAssetResolvers<ContextType>;
|
|
3641
|
+
GalleryExtensionAssets?: IGalleryExtensionAssetsResolvers<ContextType>;
|
|
3642
|
+
GalleryExtensionProperties?: IGalleryExtensionPropertiesResolvers<ContextType>;
|
|
3643
|
+
GalleryExtensionResources?: IGalleryExtensionResourcesResolvers<ContextType>;
|
|
3644
|
+
GalleryPager?: IGalleryPagerResolvers<ContextType>;
|
|
3645
|
+
GeoLocation?: IGeoLocationResolvers<ContextType>;
|
|
3646
|
+
Grammar?: IGrammarResolvers<ContextType>;
|
|
3647
|
+
Hover?: IHoverResolvers<ContextType>;
|
|
3648
|
+
IBehaviorSubject?: IIBehaviorSubjectResolvers<ContextType>;
|
|
3649
|
+
IBehaviorSubjectValue?: IIBehaviorSubjectValueResolvers<ContextType>;
|
|
3650
|
+
IDestinationAnonymousSubject?: IIDestinationAnonymousSubjectResolvers<ContextType>;
|
|
3651
|
+
IDocumentSelector?: IIDocumentSelectorResolvers<ContextType>;
|
|
3652
|
+
IModel?: IIModelResolvers<ContextType>;
|
|
3653
|
+
IObservableResult?: IIObservableResultResolvers<ContextType>;
|
|
3654
|
+
IResourceUtilizationSettings?: IIResourceUtilizationSettingsResolvers<ContextType>;
|
|
3655
|
+
ISourceAnonymousSubject?: IISourceAnonymousSubjectResolvers<ContextType>;
|
|
3656
|
+
ISwitchMapOperator?: IISwitchMapOperatorResolvers<ContextType>;
|
|
3657
|
+
ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers<ContextType>;
|
|
3658
|
+
IViewComponentData?: IIViewComponentDataResolvers<ContextType>;
|
|
3659
|
+
IWorkspaceRoot?: IIWorkspaceRootResolvers<ContextType>;
|
|
3660
|
+
InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
|
|
3661
|
+
JSON?: GraphQLScalarType;
|
|
3662
|
+
JSONObject?: GraphQLScalarType;
|
|
3663
|
+
KeyBinding?: IKeyBindingResolvers<ContextType>;
|
|
3664
|
+
Localization?: ILocalizationResolvers<ContextType>;
|
|
3665
|
+
LocalizationTranslation?: ILocalizationTranslationResolvers<ContextType>;
|
|
3666
|
+
Location?: ILocationResolvers<ContextType>;
|
|
3667
|
+
MarkupContent?: IMarkupContentResolvers<ContextType>;
|
|
3668
|
+
MenuItem?: IMenuItemResolvers<ContextType>;
|
|
3669
|
+
MenuItemAction?: IMenuItemActionResolvers<ContextType>;
|
|
3670
|
+
MenuItemActionContext?: IMenuItemActionContextResolvers<ContextType>;
|
|
3671
|
+
MenuItemActionDebug?: IMenuItemActionDebugResolvers<ContextType>;
|
|
3672
|
+
MenuItemActionEditor?: IMenuItemActionEditorResolvers<ContextType>;
|
|
3673
|
+
MenuItemActionEditorTitle?: IMenuItemActionEditorTitleResolvers<ContextType>;
|
|
3674
|
+
MenuItemActionScm?: IMenuItemActionScmResolvers<ContextType>;
|
|
3675
|
+
MenuItemActionScmChange?: IMenuItemActionScmChangeResolvers<ContextType>;
|
|
3676
|
+
MenuItemActionView?: IMenuItemActionViewResolvers<ContextType>;
|
|
3677
|
+
Menus?: IMenusResolvers<ContextType>;
|
|
3678
|
+
MessageLink?: IMessageLinkResolvers<ContextType>;
|
|
3679
|
+
Mutation?: IMutationResolvers<ContextType>;
|
|
3680
|
+
Node?: INodeResolvers<ContextType>;
|
|
3681
|
+
Notification?: INotificationResolvers<ContextType>;
|
|
3682
|
+
NotificationActions?: INotificationActionsResolvers<ContextType>;
|
|
3683
|
+
NotificationChangeEvent?: INotificationChangeEventResolvers<ContextType>;
|
|
3684
|
+
NotificationMessage?: INotificationMessageResolvers<ContextType>;
|
|
3685
|
+
NotificationViewItem?: INotificationViewItemResolvers<ContextType>;
|
|
3686
|
+
NotificationViewItemProgress?: INotificationViewItemProgressResolvers<ContextType>;
|
|
3687
|
+
NotificationViewItemProgressState?: INotificationViewItemProgressStateResolvers<ContextType>;
|
|
3688
|
+
Notifications?: INotificationsResolvers<ContextType>;
|
|
3689
|
+
Observable?: GraphQLScalarType;
|
|
3690
|
+
PageInfo?: IPageInfoResolvers<ContextType>;
|
|
3691
|
+
Position?: IPositionResolvers<ContextType>;
|
|
3692
|
+
ProcessMonitoring?: IProcessMonitoringResolvers<ContextType>;
|
|
3693
|
+
ProvideTextDocumentLocationSignature?: IProvideTextDocumentLocationSignatureResolvers<ContextType>;
|
|
3694
|
+
Query?: IQueryResolvers<ContextType>;
|
|
3695
|
+
Range?: IRangeResolvers<ContextType>;
|
|
3696
|
+
RegistryEntry?: IRegistryEntryResolvers<ContextType>;
|
|
3697
|
+
RegistryExtension?: IRegistryExtensionResolvers<ContextType>;
|
|
3698
|
+
RegistryExtensionConnection?: IRegistryExtensionConnectionResolvers<ContextType>;
|
|
3699
|
+
RegistryPublisher?: IRegistryPublisherResolvers<ContextType>;
|
|
3700
|
+
RegistryPublisherConnection?: IRegistryPublisherConnectionResolvers<ContextType>;
|
|
3701
|
+
Scripts?: IScriptsResolvers<ContextType>;
|
|
3702
|
+
Snippet?: ISnippetResolvers<ContextType>;
|
|
3703
|
+
Subscription?: ISubscriptionResolvers<ContextType>;
|
|
3704
|
+
TextDocumentIdentifier?: ITextDocumentIdentifierResolvers<ContextType>;
|
|
3705
|
+
TextDocumentItem?: ITextDocumentItemResolvers<ContextType>;
|
|
3706
|
+
TextDocumentPositionParams?: ITextDocumentPositionParamsResolvers<ContextType>;
|
|
3707
|
+
TextDocumentRegistrationOptions?: ITextDocumentRegistrationOptionsResolvers<ContextType>;
|
|
3708
|
+
ThemeLabel?: IThemeLabelResolvers<ContextType>;
|
|
3709
|
+
Time?: GraphQLScalarType;
|
|
3710
|
+
URI?: GraphQLScalarType;
|
|
3711
|
+
URIInput?: GraphQLScalarType;
|
|
3712
|
+
ViewContainer?: IViewContainerResolvers<ContextType>;
|
|
3713
|
+
};
|
|
3714
|
+
export declare type IDirectiveResolvers<ContextType = MyContext> = {
|
|
3715
|
+
cacheControl?: ICacheControlDirectiveResolver<any, any, ContextType>;
|
|
3716
|
+
};
|