@adminide-stack/extension-api 0.0.20-alpha.97 → 1.0.201-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/lib/connections/jsonrpc2/connection.test.d.ts +1 -0
  2. package/lib/connections/jsonrpc2/connection.test.js +452 -0
  3. package/lib/connections/jsonrpc2/connection.test.js.map +1 -0
  4. package/lib/connections/jsonrpc2/linkedMap.test.d.ts +1 -0
  5. package/lib/connections/jsonrpc2/linkedMap.test.js +62 -0
  6. package/lib/connections/jsonrpc2/linkedMap.test.js.map +1 -0
  7. package/lib/connections/proxy/proxy.js +0 -1
  8. package/lib/connections/proxy/proxy.js.map +1 -1
  9. package/lib/connections/proxy/proxy.test.d.ts +1 -0
  10. package/lib/connections/proxy/proxy.test.js +64 -0
  11. package/lib/connections/proxy/proxy.test.js.map +1 -0
  12. package/lib/connections/remote-rpc/browser-server-rpc.test.d.ts +1 -0
  13. package/lib/connections/remote-rpc/browser-server-rpc.test.js +323 -0
  14. package/lib/connections/remote-rpc/browser-server-rpc.test.js.map +1 -0
  15. package/lib/core/expr/evaluator.test.d.ts +1 -0
  16. package/lib/core/expr/evaluator.test.js +52 -0
  17. package/lib/core/expr/evaluator.test.js.map +1 -0
  18. package/lib/interfaces/context.d.ts +1 -1
  19. package/lib/interfaces/ext-services/panel-view-registry.d.ts +1 -0
  20. package/lib/interfaces/generated-models.d.ts +636 -255
  21. package/lib/interfaces/generated-models.js +356 -16
  22. package/lib/interfaces/generated-models.js.map +1 -1
  23. package/lib/interfaces/graphql.d.ts +1 -1
  24. package/lib/interfaces/platform-context.d.ts +1 -1
  25. package/lib/protocol/rpc-protocol.test.d.ts +1 -0
  26. package/lib/protocol/rpc-protocol.test.js +171 -0
  27. package/lib/protocol/rpc-protocol.test.js.map +1 -0
  28. package/lib/utils/rxjs/combineLatestOrDefault.js +4 -4
  29. package/lib/utils/rxjs/combineLatestOrDefault.js.map +1 -1
  30. package/lib/utils/rxjs/combineLatestOrDefault.test.d.ts +1 -0
  31. package/lib/utils/rxjs/combineLatestOrDefault.test.js +52 -0
  32. package/lib/utils/rxjs/combineLatestOrDefault.test.js.map +1 -0
  33. package/lib/worker-lib/webWorkerLink.d.ts +2 -1
  34. package/lib/worker-lib/webWorkerLink.js +4 -4
  35. package/lib/worker-lib/webWorkerLink.js.map +1 -1
  36. package/package.json +28 -24
@@ -1,8 +1,19 @@
1
1
  import { URI, UriComponents } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
2
  import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
3
3
  import { MyContext } from '@adminide-stack/core';
4
- import * as ApolloReactCommon from '@apollo/react-common';
4
+ import * as Apollo from '@apollo/client';
5
5
  export declare type Maybe<T> = T | null;
6
+ export declare type Exact<T extends {
7
+ [key: string]: unknown;
8
+ }> = {
9
+ [K in keyof T]: T[K];
10
+ };
11
+ export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
12
+ [SubKey in K]?: Maybe<T[SubKey]>;
13
+ };
14
+ export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
15
+ [SubKey in K]: Maybe<T[SubKey]>;
16
+ };
6
17
  export declare type RequireFields<T, K extends keyof T> = {
7
18
  [X in Exclude<keyof T, K>]?: T[X];
8
19
  } & {
@@ -20,10 +31,10 @@ export declare type Scalars = {
20
31
  URI: URI;
21
32
  Observable: any;
22
33
  Date: any;
23
- Time: any;
24
34
  DateTime: any;
25
- URIInput: URI | UriComponents;
26
35
  JSONObject: any;
36
+ Time: any;
37
+ URIInput: URI | UriComponents;
27
38
  };
28
39
  export declare type IAdminIdeSettings = {
29
40
  __typename?: 'AdminIdeSettings';
@@ -75,6 +86,9 @@ export declare const enum ICacheControlScope {
75
86
  PUBLIC = "PUBLIC",
76
87
  PRIVATE = "PRIVATE"
77
88
  }
89
+ export declare const enum IClientContainerService {
90
+ ExtensionController = "ExtensionController"
91
+ }
78
92
  export declare type ICommandHandlerDescriptionType = {
79
93
  __typename?: 'CommandHandlerDescriptionType';
80
94
  description?: Maybe<Scalars['String']>;
@@ -962,6 +976,10 @@ export declare type IGalleryQuery = {
962
976
  sortOrder?: Maybe<Scalars['Int']>;
963
977
  source?: Maybe<Scalars['String']>;
964
978
  };
979
+ export declare type IGeoLocation = {
980
+ __typename?: 'GeoLocation';
981
+ coordinates?: Maybe<Array<Maybe<Scalars['Float']>>>;
982
+ };
965
983
  export declare type IGrammar = {
966
984
  __typename?: 'Grammar';
967
985
  language?: Maybe<Scalars['String']>;
@@ -970,6 +988,10 @@ export declare const enum IGraphqlCallType {
970
988
  mutation = "mutation",
971
989
  query = "query"
972
990
  }
991
+ export declare type IHover = {
992
+ contents?: Maybe<IMarkupContent>;
993
+ range?: Maybe<IRange>;
994
+ };
973
995
  export declare type IIActivationRequest = {
974
996
  env?: Maybe<Array<Maybe<Scalars['String']>>>;
975
997
  extensionID: Scalars['ID'];
@@ -1032,6 +1054,10 @@ export declare type IIObservableResult = {
1032
1054
  thrownError?: Maybe<Scalars['String']>;
1033
1055
  _isScalar?: Maybe<Scalars['Boolean']>;
1034
1056
  };
1057
+ export declare type IIResourceUtilizationSettings = {
1058
+ subTopic?: Maybe<Scalars['String']>;
1059
+ adminApiNamespace?: Maybe<Scalars['String']>;
1060
+ };
1035
1061
  export declare type IISourceAnonymousSubject = {
1036
1062
  __typename?: 'ISourceAnonymousSubject';
1037
1063
  closed?: Maybe<Scalars['Boolean']>;
@@ -1103,6 +1129,10 @@ export declare type ILocation = {
1103
1129
  range?: Maybe<IPosition>;
1104
1130
  uri?: Maybe<Scalars['String']>;
1105
1131
  };
1132
+ export declare type IMarkupContent = {
1133
+ value?: Maybe<Scalars['String']>;
1134
+ kind?: Maybe<IMarkupKind>;
1135
+ };
1106
1136
  export declare const enum IMarkupKind {
1107
1137
  plaintext = "plaintext",
1108
1138
  markdown = "markdown"
@@ -1885,31 +1915,33 @@ export declare type IViewContainer = {
1885
1915
  id?: Maybe<Scalars['ID']>;
1886
1916
  title?: Maybe<Scalars['String']>;
1887
1917
  };
1888
- export declare type ICopyMutationVariables = {
1918
+ export declare type ICopyMutationVariables = Exact<{
1889
1919
  value?: Maybe<Scalars['String']>;
1890
- };
1920
+ }>;
1891
1921
  export declare type ICopyMutation = ({
1892
1922
  __typename?: 'Mutation';
1893
1923
  } & Pick<IMutation, 'copy'>);
1894
- export declare type IRunMenuActionMutationVariables = {
1924
+ export declare type IRunMenuActionMutationVariables = Exact<{
1895
1925
  argument?: Maybe<IContributionActionRun_input>;
1896
- };
1926
+ }>;
1897
1927
  export declare type IRunMenuActionMutation = ({
1898
1928
  __typename?: 'Mutation';
1899
1929
  } & Pick<IMutation, 'runMenuAction'>);
1900
- export declare type IHideContextMenuMutationVariables = {};
1930
+ export declare type IHideContextMenuMutationVariables = Exact<{
1931
+ [key: string]: never;
1932
+ }>;
1901
1933
  export declare type IHideContextMenuMutation = ({
1902
1934
  __typename?: 'Mutation';
1903
1935
  } & Pick<IMutation, 'hideContextMenu'>);
1904
- export declare type IShowContextMenuMutationVariables = {
1936
+ export declare type IShowContextMenuMutationVariables = Exact<{
1905
1937
  delegate?: Maybe<IContextMenu_input>;
1906
- };
1938
+ }>;
1907
1939
  export declare type IShowContextMenuMutation = ({
1908
1940
  __typename?: 'Mutation';
1909
1941
  } & Pick<IMutation, 'showContextMenu'>);
1910
- export declare type IinstallMutationVariables = {
1942
+ export declare type IinstallMutationVariables = Exact<{
1911
1943
  vsix: Scalars['String'];
1912
- };
1944
+ }>;
1913
1945
  export declare type IinstallMutation = ({
1914
1946
  __typename?: 'Mutation';
1915
1947
  } & {
@@ -1917,19 +1949,21 @@ export declare type IinstallMutation = ({
1917
1949
  __typename?: 'ExtensionIdentifier';
1918
1950
  } & Pick<IExtensionIdentifier, 'id' | 'uuid'>)>;
1919
1951
  });
1920
- export declare type IproviderDefinitionMutationVariables = {
1952
+ export declare type IproviderDefinitionMutationVariables = Exact<{
1921
1953
  params?: Maybe<ITextDocumentPositionParamsInput>;
1922
- };
1954
+ }>;
1923
1955
  export declare type IproviderDefinitionMutation = ({
1924
1956
  __typename?: 'Mutation';
1925
1957
  } & Pick<IMutation, 'hoverProviderDefinition'>);
1926
- export declare type IremoveMutationVariables = {
1958
+ export declare type IremoveMutationVariables = Exact<{
1927
1959
  id: Scalars['String'];
1928
- };
1960
+ }>;
1929
1961
  export declare type IremoveMutation = ({
1930
1962
  __typename?: 'Mutation';
1931
1963
  } & Pick<IMutation, 'removeExtension'>);
1932
- export declare type IContextMenuQueryVariables = {};
1964
+ export declare type IContextMenuQueryVariables = Exact<{
1965
+ [key: string]: never;
1966
+ }>;
1933
1967
  export declare type IContextMenuQuery = ({
1934
1968
  __typename?: 'Query';
1935
1969
  } & {
@@ -1948,9 +1982,9 @@ export declare type IContextMenuQuery = ({
1948
1982
  })>>>;
1949
1983
  })>;
1950
1984
  });
1951
- export declare type IgalleryExtensionQueryVariables = {
1985
+ export declare type IgalleryExtensionQueryVariables = Exact<{
1952
1986
  extensionID: Scalars['String'];
1953
- };
1987
+ }>;
1954
1988
  export declare type IgalleryExtensionQuery = ({
1955
1989
  __typename?: 'Query';
1956
1990
  } & {
@@ -1969,10 +2003,10 @@ export declare type IgalleryExtensionQuery = ({
1969
2003
  } & Pick<IGalleryExtensionResources, 'icon' | 'readme' | 'manifest' | 'changelog'>)>;
1970
2004
  })>;
1971
2005
  });
1972
- export declare type IExtensionsByLimitQueryVariables = {
2006
+ export declare type IExtensionsByLimitQueryVariables = Exact<{
1973
2007
  first: Scalars['Int'];
1974
- prioritizeExtensionIDs: Array<Scalars['String']>;
1975
- };
2008
+ prioritizeExtensionIDs: Array<Scalars['String']> | Scalars['String'];
2009
+ }>;
1976
2010
  export declare type IExtensionsByLimitQuery = ({
1977
2011
  __typename?: 'Query';
1978
2012
  } & {
@@ -1988,9 +2022,9 @@ export declare type IExtensionsByLimitQuery = ({
1988
2022
  })>;
1989
2023
  });
1990
2024
  });
1991
- export declare type IgalleryQueryVariables = {
2025
+ export declare type IgalleryQueryVariables = Exact<{
1992
2026
  query?: Maybe<IGalleryQuery>;
1993
- };
2027
+ }>;
1994
2028
  export declare type IgalleryQuery = ({
1995
2029
  __typename?: 'Query';
1996
2030
  } & {
@@ -2010,7 +2044,9 @@ export declare type IgalleryQuery = ({
2010
2044
  })>>>;
2011
2045
  })>;
2012
2046
  });
2013
- export declare type IinstalledExtensionsQueryVariables = {};
2047
+ export declare type IinstalledExtensionsQueryVariables = Exact<{
2048
+ [key: string]: never;
2049
+ }>;
2014
2050
  export declare type IinstalledExtensionsQuery = ({
2015
2051
  __typename?: 'Query';
2016
2052
  } & {
@@ -2032,7 +2068,9 @@ export declare type IinstalledExtensionsQuery = ({
2032
2068
  })>;
2033
2069
  })>>>;
2034
2070
  });
2035
- export declare type INotificationsQueryVariables = {};
2071
+ export declare type INotificationsQueryVariables = Exact<{
2072
+ [key: string]: never;
2073
+ }>;
2036
2074
  export declare type INotificationsQuery = ({
2037
2075
  __typename?: 'Query';
2038
2076
  } & {
@@ -2063,53 +2101,375 @@ export declare type INotificationsQuery = ({
2063
2101
  })>>>;
2064
2102
  })>;
2065
2103
  });
2066
- export declare type IshowNotificationQueryVariables = {
2104
+ export declare type IshowNotificationQueryVariables = Exact<{
2067
2105
  notification?: Maybe<INotification_input>;
2068
- };
2106
+ }>;
2069
2107
  export declare type IshowNotificationQuery = ({
2070
2108
  __typename?: 'Query';
2071
2109
  } & Pick<IQuery, 'showNotification'>);
2072
- export declare const CopyDocument: import("graphql").DocumentNode;
2073
- export declare type CopyMutationResult = ApolloReactCommon.MutationResult<ICopyMutation>;
2074
- export declare type CopyMutationOptions = ApolloReactCommon.BaseMutationOptions<ICopyMutation, ICopyMutationVariables>;
2075
- export declare const RunMenuActionDocument: import("graphql").DocumentNode;
2076
- export declare type RunMenuActionMutationResult = ApolloReactCommon.MutationResult<IRunMenuActionMutation>;
2077
- export declare type RunMenuActionMutationOptions = ApolloReactCommon.BaseMutationOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>;
2078
- export declare const HideContextMenuDocument: import("graphql").DocumentNode;
2079
- export declare type HideContextMenuMutationResult = ApolloReactCommon.MutationResult<IHideContextMenuMutation>;
2080
- export declare type HideContextMenuMutationOptions = ApolloReactCommon.BaseMutationOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>;
2081
- export declare const ShowContextMenuDocument: import("graphql").DocumentNode;
2082
- export declare type ShowContextMenuMutationResult = ApolloReactCommon.MutationResult<IShowContextMenuMutation>;
2083
- export declare type ShowContextMenuMutationOptions = ApolloReactCommon.BaseMutationOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>;
2084
- export declare const installDocument: import("graphql").DocumentNode;
2085
- export declare type installMutationResult = ApolloReactCommon.MutationResult<IinstallMutation>;
2086
- export declare type installMutationOptions = ApolloReactCommon.BaseMutationOptions<IinstallMutation, IinstallMutationVariables>;
2087
- export declare const providerDefinitionDocument: import("graphql").DocumentNode;
2088
- export declare type providerDefinitionMutationResult = ApolloReactCommon.MutationResult<IproviderDefinitionMutation>;
2089
- export declare type providerDefinitionMutationOptions = ApolloReactCommon.BaseMutationOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>;
2090
- export declare const removeDocument: import("graphql").DocumentNode;
2091
- export declare type removeMutationResult = ApolloReactCommon.MutationResult<IremoveMutation>;
2092
- export declare type removeMutationOptions = ApolloReactCommon.BaseMutationOptions<IremoveMutation, IremoveMutationVariables>;
2093
- export declare const ContextMenuDocument: import("graphql").DocumentNode;
2094
- export declare type ContextMenuQueryResult = ApolloReactCommon.QueryResult<IContextMenuQuery, IContextMenuQueryVariables>;
2095
- export declare const galleryExtensionDocument: import("graphql").DocumentNode;
2096
- export declare type galleryExtensionQueryResult = ApolloReactCommon.QueryResult<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>;
2097
- export declare const ExtensionsByLimitDocument: import("graphql").DocumentNode;
2098
- export declare type ExtensionsByLimitQueryResult = ApolloReactCommon.QueryResult<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>;
2099
- export declare const galleryDocument: import("graphql").DocumentNode;
2100
- export declare type galleryQueryResult = ApolloReactCommon.QueryResult<IgalleryQuery, IgalleryQueryVariables>;
2101
- export declare const installedExtensionsDocument: import("graphql").DocumentNode;
2102
- export declare type installedExtensionsQueryResult = ApolloReactCommon.QueryResult<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>;
2103
- export declare const NotificationsDocument: import("graphql").DocumentNode;
2104
- export declare type NotificationsQueryResult = ApolloReactCommon.QueryResult<INotificationsQuery, INotificationsQueryVariables>;
2105
- export declare const showNotificationDocument: import("graphql").DocumentNode;
2106
- export declare type showNotificationQueryResult = ApolloReactCommon.QueryResult<IshowNotificationQuery, IshowNotificationQueryVariables>;
2110
+ export declare const CopyDocument: Apollo.DocumentNode;
2111
+ /**
2112
+ * __useCopyMutation__
2113
+ *
2114
+ * To run a mutation, you first call `useCopyMutation` within a React component and pass it any options that fit your needs.
2115
+ * When your component renders, `useCopyMutation` returns a tuple that includes:
2116
+ * - A mutate function that you can call at any time to execute the mutation
2117
+ * - An object with fields that represent the current status of the mutation's execution
2118
+ *
2119
+ * @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;
2120
+ *
2121
+ * @example
2122
+ * const [copyMutation, { data, loading, error }] = useCopyMutation({
2123
+ * variables: {
2124
+ * value: // value for 'value'
2125
+ * },
2126
+ * });
2127
+ */
2128
+ export declare function useCopyMutation(baseOptions?: Apollo.MutationHookOptions<ICopyMutation, ICopyMutationVariables>): Apollo.MutationTuple<ICopyMutation, Exact<{
2129
+ value?: string;
2130
+ }>>;
2131
+ export declare type CopyMutationHookResult = ReturnType<typeof useCopyMutation>;
2132
+ export declare type CopyMutationResult = Apollo.MutationResult<ICopyMutation>;
2133
+ export declare type CopyMutationOptions = Apollo.BaseMutationOptions<ICopyMutation, ICopyMutationVariables>;
2134
+ export declare const RunMenuActionDocument: Apollo.DocumentNode;
2135
+ /**
2136
+ * __useRunMenuActionMutation__
2137
+ *
2138
+ * To run a mutation, you first call `useRunMenuActionMutation` within a React component and pass it any options that fit your needs.
2139
+ * When your component renders, `useRunMenuActionMutation` returns a tuple that includes:
2140
+ * - A mutate function that you can call at any time to execute the mutation
2141
+ * - An object with fields that represent the current status of the mutation's execution
2142
+ *
2143
+ * @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;
2144
+ *
2145
+ * @example
2146
+ * const [runMenuActionMutation, { data, loading, error }] = useRunMenuActionMutation({
2147
+ * variables: {
2148
+ * argument: // value for 'argument'
2149
+ * },
2150
+ * });
2151
+ */
2152
+ export declare function useRunMenuActionMutation(baseOptions?: Apollo.MutationHookOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>): Apollo.MutationTuple<IRunMenuActionMutation, Exact<{
2153
+ argument?: IContributionActionRun_input;
2154
+ }>>;
2155
+ export declare type RunMenuActionMutationHookResult = ReturnType<typeof useRunMenuActionMutation>;
2156
+ export declare type RunMenuActionMutationResult = Apollo.MutationResult<IRunMenuActionMutation>;
2157
+ export declare type RunMenuActionMutationOptions = Apollo.BaseMutationOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>;
2158
+ export declare const HideContextMenuDocument: Apollo.DocumentNode;
2159
+ /**
2160
+ * __useHideContextMenuMutation__
2161
+ *
2162
+ * To run a mutation, you first call `useHideContextMenuMutation` within a React component and pass it any options that fit your needs.
2163
+ * When your component renders, `useHideContextMenuMutation` returns a tuple that includes:
2164
+ * - A mutate function that you can call at any time to execute the mutation
2165
+ * - An object with fields that represent the current status of the mutation's execution
2166
+ *
2167
+ * @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;
2168
+ *
2169
+ * @example
2170
+ * const [hideContextMenuMutation, { data, loading, error }] = useHideContextMenuMutation({
2171
+ * variables: {
2172
+ * },
2173
+ * });
2174
+ */
2175
+ export declare function useHideContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>): Apollo.MutationTuple<IHideContextMenuMutation, Exact<{
2176
+ [key: string]: never;
2177
+ }>>;
2178
+ export declare type HideContextMenuMutationHookResult = ReturnType<typeof useHideContextMenuMutation>;
2179
+ export declare type HideContextMenuMutationResult = Apollo.MutationResult<IHideContextMenuMutation>;
2180
+ export declare type HideContextMenuMutationOptions = Apollo.BaseMutationOptions<IHideContextMenuMutation, IHideContextMenuMutationVariables>;
2181
+ export declare const ShowContextMenuDocument: Apollo.DocumentNode;
2182
+ /**
2183
+ * __useShowContextMenuMutation__
2184
+ *
2185
+ * To run a mutation, you first call `useShowContextMenuMutation` within a React component and pass it any options that fit your needs.
2186
+ * When your component renders, `useShowContextMenuMutation` returns a tuple that includes:
2187
+ * - A mutate function that you can call at any time to execute the mutation
2188
+ * - An object with fields that represent the current status of the mutation's execution
2189
+ *
2190
+ * @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;
2191
+ *
2192
+ * @example
2193
+ * const [showContextMenuMutation, { data, loading, error }] = useShowContextMenuMutation({
2194
+ * variables: {
2195
+ * delegate: // value for 'delegate'
2196
+ * },
2197
+ * });
2198
+ */
2199
+ export declare function useShowContextMenuMutation(baseOptions?: Apollo.MutationHookOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>): Apollo.MutationTuple<IShowContextMenuMutation, Exact<{
2200
+ delegate?: IContextMenu_input;
2201
+ }>>;
2202
+ export declare type ShowContextMenuMutationHookResult = ReturnType<typeof useShowContextMenuMutation>;
2203
+ export declare type ShowContextMenuMutationResult = Apollo.MutationResult<IShowContextMenuMutation>;
2204
+ export declare type ShowContextMenuMutationOptions = Apollo.BaseMutationOptions<IShowContextMenuMutation, IShowContextMenuMutationVariables>;
2205
+ export declare const installDocument: Apollo.DocumentNode;
2206
+ /**
2207
+ * __useinstallMutation__
2208
+ *
2209
+ * To run a mutation, you first call `useinstallMutation` within a React component and pass it any options that fit your needs.
2210
+ * When your component renders, `useinstallMutation` returns a tuple that includes:
2211
+ * - A mutate function that you can call at any time to execute the mutation
2212
+ * - An object with fields that represent the current status of the mutation's execution
2213
+ *
2214
+ * @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;
2215
+ *
2216
+ * @example
2217
+ * const [installMutation, { data, loading, error }] = useinstallMutation({
2218
+ * variables: {
2219
+ * vsix: // value for 'vsix'
2220
+ * },
2221
+ * });
2222
+ */
2223
+ export declare function useinstallMutation(baseOptions?: Apollo.MutationHookOptions<IinstallMutation, IinstallMutationVariables>): Apollo.MutationTuple<IinstallMutation, Exact<{
2224
+ vsix: string;
2225
+ }>>;
2226
+ export declare type installMutationHookResult = ReturnType<typeof useinstallMutation>;
2227
+ export declare type installMutationResult = Apollo.MutationResult<IinstallMutation>;
2228
+ export declare type installMutationOptions = Apollo.BaseMutationOptions<IinstallMutation, IinstallMutationVariables>;
2229
+ export declare const providerDefinitionDocument: Apollo.DocumentNode;
2230
+ /**
2231
+ * __useproviderDefinitionMutation__
2232
+ *
2233
+ * To run a mutation, you first call `useproviderDefinitionMutation` within a React component and pass it any options that fit your needs.
2234
+ * When your component renders, `useproviderDefinitionMutation` returns a tuple that includes:
2235
+ * - A mutate function that you can call at any time to execute the mutation
2236
+ * - An object with fields that represent the current status of the mutation's execution
2237
+ *
2238
+ * @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;
2239
+ *
2240
+ * @example
2241
+ * const [providerDefinitionMutation, { data, loading, error }] = useproviderDefinitionMutation({
2242
+ * variables: {
2243
+ * params: // value for 'params'
2244
+ * },
2245
+ * });
2246
+ */
2247
+ export declare function useproviderDefinitionMutation(baseOptions?: Apollo.MutationHookOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>): Apollo.MutationTuple<IproviderDefinitionMutation, Exact<{
2248
+ params?: ITextDocumentPositionParamsInput;
2249
+ }>>;
2250
+ export declare type providerDefinitionMutationHookResult = ReturnType<typeof useproviderDefinitionMutation>;
2251
+ export declare type providerDefinitionMutationResult = Apollo.MutationResult<IproviderDefinitionMutation>;
2252
+ export declare type providerDefinitionMutationOptions = Apollo.BaseMutationOptions<IproviderDefinitionMutation, IproviderDefinitionMutationVariables>;
2253
+ export declare const removeDocument: Apollo.DocumentNode;
2254
+ /**
2255
+ * __useremoveMutation__
2256
+ *
2257
+ * To run a mutation, you first call `useremoveMutation` within a React component and pass it any options that fit your needs.
2258
+ * When your component renders, `useremoveMutation` returns a tuple that includes:
2259
+ * - A mutate function that you can call at any time to execute the mutation
2260
+ * - An object with fields that represent the current status of the mutation's execution
2261
+ *
2262
+ * @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;
2263
+ *
2264
+ * @example
2265
+ * const [removeMutation, { data, loading, error }] = useremoveMutation({
2266
+ * variables: {
2267
+ * id: // value for 'id'
2268
+ * },
2269
+ * });
2270
+ */
2271
+ export declare function useremoveMutation(baseOptions?: Apollo.MutationHookOptions<IremoveMutation, IremoveMutationVariables>): Apollo.MutationTuple<IremoveMutation, Exact<{
2272
+ id: string;
2273
+ }>>;
2274
+ export declare type removeMutationHookResult = ReturnType<typeof useremoveMutation>;
2275
+ export declare type removeMutationResult = Apollo.MutationResult<IremoveMutation>;
2276
+ export declare type removeMutationOptions = Apollo.BaseMutationOptions<IremoveMutation, IremoveMutationVariables>;
2277
+ export declare const ContextMenuDocument: Apollo.DocumentNode;
2278
+ /**
2279
+ * __useContextMenuQuery__
2280
+ *
2281
+ * To run a query within a React component, call `useContextMenuQuery` and pass it any options that fit your needs.
2282
+ * When your component renders, `useContextMenuQuery` returns an object from Apollo Client that contains loading, error, and data properties
2283
+ * you can use to render your UI.
2284
+ *
2285
+ * @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;
2286
+ *
2287
+ * @example
2288
+ * const { data, loading, error } = useContextMenuQuery({
2289
+ * variables: {
2290
+ * },
2291
+ * });
2292
+ */
2293
+ export declare function useContextMenuQuery(baseOptions?: Apollo.QueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.QueryResult<IContextMenuQuery, Exact<{
2294
+ [key: string]: never;
2295
+ }>>;
2296
+ export declare function useContextMenuLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IContextMenuQuery, IContextMenuQueryVariables>): Apollo.QueryTuple<IContextMenuQuery, Exact<{
2297
+ [key: string]: never;
2298
+ }>>;
2299
+ export declare type ContextMenuQueryHookResult = ReturnType<typeof useContextMenuQuery>;
2300
+ export declare type ContextMenuLazyQueryHookResult = ReturnType<typeof useContextMenuLazyQuery>;
2301
+ export declare type ContextMenuQueryResult = Apollo.QueryResult<IContextMenuQuery, IContextMenuQueryVariables>;
2302
+ export declare const galleryExtensionDocument: Apollo.DocumentNode;
2303
+ /**
2304
+ * __usegalleryExtensionQuery__
2305
+ *
2306
+ * To run a query within a React component, call `usegalleryExtensionQuery` and pass it any options that fit your needs.
2307
+ * When your component renders, `usegalleryExtensionQuery` returns an object from Apollo Client that contains loading, error, and data properties
2308
+ * you can use to render your UI.
2309
+ *
2310
+ * @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;
2311
+ *
2312
+ * @example
2313
+ * const { data, loading, error } = usegalleryExtensionQuery({
2314
+ * variables: {
2315
+ * extensionID: // value for 'extensionID'
2316
+ * },
2317
+ * });
2318
+ */
2319
+ export declare function usegalleryExtensionQuery(baseOptions: Apollo.QueryHookOptions<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>): Apollo.QueryResult<IgalleryExtensionQuery, Exact<{
2320
+ extensionID: string;
2321
+ }>>;
2322
+ export declare function usegalleryExtensionLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>): Apollo.QueryTuple<IgalleryExtensionQuery, Exact<{
2323
+ extensionID: string;
2324
+ }>>;
2325
+ export declare type galleryExtensionQueryHookResult = ReturnType<typeof usegalleryExtensionQuery>;
2326
+ export declare type galleryExtensionLazyQueryHookResult = ReturnType<typeof usegalleryExtensionLazyQuery>;
2327
+ export declare type galleryExtensionQueryResult = Apollo.QueryResult<IgalleryExtensionQuery, IgalleryExtensionQueryVariables>;
2328
+ export declare const ExtensionsByLimitDocument: Apollo.DocumentNode;
2329
+ /**
2330
+ * __useExtensionsByLimitQuery__
2331
+ *
2332
+ * To run a query within a React component, call `useExtensionsByLimitQuery` and pass it any options that fit your needs.
2333
+ * When your component renders, `useExtensionsByLimitQuery` returns an object from Apollo Client that contains loading, error, and data properties
2334
+ * you can use to render your UI.
2335
+ *
2336
+ * @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;
2337
+ *
2338
+ * @example
2339
+ * const { data, loading, error } = useExtensionsByLimitQuery({
2340
+ * variables: {
2341
+ * first: // value for 'first'
2342
+ * prioritizeExtensionIDs: // value for 'prioritizeExtensionIDs'
2343
+ * },
2344
+ * });
2345
+ */
2346
+ export declare function useExtensionsByLimitQuery(baseOptions: Apollo.QueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.QueryResult<IExtensionsByLimitQuery, Exact<{
2347
+ first: number;
2348
+ prioritizeExtensionIDs: string | string[];
2349
+ }>>;
2350
+ export declare function useExtensionsByLimitLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>): Apollo.QueryTuple<IExtensionsByLimitQuery, Exact<{
2351
+ first: number;
2352
+ prioritizeExtensionIDs: string | string[];
2353
+ }>>;
2354
+ export declare type ExtensionsByLimitQueryHookResult = ReturnType<typeof useExtensionsByLimitQuery>;
2355
+ export declare type ExtensionsByLimitLazyQueryHookResult = ReturnType<typeof useExtensionsByLimitLazyQuery>;
2356
+ export declare type ExtensionsByLimitQueryResult = Apollo.QueryResult<IExtensionsByLimitQuery, IExtensionsByLimitQueryVariables>;
2357
+ export declare const galleryDocument: Apollo.DocumentNode;
2358
+ /**
2359
+ * __usegalleryQuery__
2360
+ *
2361
+ * To run a query within a React component, call `usegalleryQuery` and pass it any options that fit your needs.
2362
+ * When your component renders, `usegalleryQuery` returns an object from Apollo Client that contains loading, error, and data properties
2363
+ * you can use to render your UI.
2364
+ *
2365
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2366
+ *
2367
+ * @example
2368
+ * const { data, loading, error } = usegalleryQuery({
2369
+ * variables: {
2370
+ * query: // value for 'query'
2371
+ * },
2372
+ * });
2373
+ */
2374
+ export declare function usegalleryQuery(baseOptions?: Apollo.QueryHookOptions<IgalleryQuery, IgalleryQueryVariables>): Apollo.QueryResult<IgalleryQuery, Exact<{
2375
+ query?: IGalleryQuery;
2376
+ }>>;
2377
+ export declare function usegalleryLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IgalleryQuery, IgalleryQueryVariables>): Apollo.QueryTuple<IgalleryQuery, Exact<{
2378
+ query?: IGalleryQuery;
2379
+ }>>;
2380
+ export declare type galleryQueryHookResult = ReturnType<typeof usegalleryQuery>;
2381
+ export declare type galleryLazyQueryHookResult = ReturnType<typeof usegalleryLazyQuery>;
2382
+ export declare type galleryQueryResult = Apollo.QueryResult<IgalleryQuery, IgalleryQueryVariables>;
2383
+ export declare const installedExtensionsDocument: Apollo.DocumentNode;
2384
+ /**
2385
+ * __useinstalledExtensionsQuery__
2386
+ *
2387
+ * To run a query within a React component, call `useinstalledExtensionsQuery` and pass it any options that fit your needs.
2388
+ * When your component renders, `useinstalledExtensionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2389
+ * you can use to render your UI.
2390
+ *
2391
+ * @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;
2392
+ *
2393
+ * @example
2394
+ * const { data, loading, error } = useinstalledExtensionsQuery({
2395
+ * variables: {
2396
+ * },
2397
+ * });
2398
+ */
2399
+ export declare function useinstalledExtensionsQuery(baseOptions?: Apollo.QueryHookOptions<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>): Apollo.QueryResult<IinstalledExtensionsQuery, Exact<{
2400
+ [key: string]: never;
2401
+ }>>;
2402
+ export declare function useinstalledExtensionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>): Apollo.QueryTuple<IinstalledExtensionsQuery, Exact<{
2403
+ [key: string]: never;
2404
+ }>>;
2405
+ export declare type installedExtensionsQueryHookResult = ReturnType<typeof useinstalledExtensionsQuery>;
2406
+ export declare type installedExtensionsLazyQueryHookResult = ReturnType<typeof useinstalledExtensionsLazyQuery>;
2407
+ export declare type installedExtensionsQueryResult = Apollo.QueryResult<IinstalledExtensionsQuery, IinstalledExtensionsQueryVariables>;
2408
+ export declare const NotificationsDocument: Apollo.DocumentNode;
2409
+ /**
2410
+ * __useNotificationsQuery__
2411
+ *
2412
+ * To run a query within a React component, call `useNotificationsQuery` and pass it any options that fit your needs.
2413
+ * When your component renders, `useNotificationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2414
+ * you can use to render your UI.
2415
+ *
2416
+ * @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;
2417
+ *
2418
+ * @example
2419
+ * const { data, loading, error } = useNotificationsQuery({
2420
+ * variables: {
2421
+ * },
2422
+ * });
2423
+ */
2424
+ export declare function useNotificationsQuery(baseOptions?: Apollo.QueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.QueryResult<INotificationsQuery, Exact<{
2425
+ [key: string]: never;
2426
+ }>>;
2427
+ export declare function useNotificationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<INotificationsQuery, INotificationsQueryVariables>): Apollo.QueryTuple<INotificationsQuery, Exact<{
2428
+ [key: string]: never;
2429
+ }>>;
2430
+ export declare type NotificationsQueryHookResult = ReturnType<typeof useNotificationsQuery>;
2431
+ export declare type NotificationsLazyQueryHookResult = ReturnType<typeof useNotificationsLazyQuery>;
2432
+ export declare type NotificationsQueryResult = Apollo.QueryResult<INotificationsQuery, INotificationsQueryVariables>;
2433
+ export declare const showNotificationDocument: Apollo.DocumentNode;
2434
+ /**
2435
+ * __useshowNotificationQuery__
2436
+ *
2437
+ * To run a query within a React component, call `useshowNotificationQuery` and pass it any options that fit your needs.
2438
+ * When your component renders, `useshowNotificationQuery` returns an object from Apollo Client that contains loading, error, and data properties
2439
+ * you can use to render your UI.
2440
+ *
2441
+ * @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;
2442
+ *
2443
+ * @example
2444
+ * const { data, loading, error } = useshowNotificationQuery({
2445
+ * variables: {
2446
+ * notification: // value for 'notification'
2447
+ * },
2448
+ * });
2449
+ */
2450
+ export declare function useshowNotificationQuery(baseOptions?: Apollo.QueryHookOptions<IshowNotificationQuery, IshowNotificationQueryVariables>): Apollo.QueryResult<IshowNotificationQuery, Exact<{
2451
+ notification?: INotification_input;
2452
+ }>>;
2453
+ export declare function useshowNotificationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IshowNotificationQuery, IshowNotificationQueryVariables>): Apollo.QueryTuple<IshowNotificationQuery, Exact<{
2454
+ notification?: INotification_input;
2455
+ }>>;
2456
+ export declare type showNotificationQueryHookResult = ReturnType<typeof useshowNotificationQuery>;
2457
+ export declare type showNotificationLazyQueryHookResult = ReturnType<typeof useshowNotificationLazyQuery>;
2458
+ export declare type showNotificationQueryResult = Apollo.QueryResult<IshowNotificationQuery, IshowNotificationQueryVariables>;
2107
2459
  export declare type ResolverTypeWrapper<T> = Promise<T> | T;
2108
- export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = {
2460
+ export declare type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
2461
+ resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2462
+ };
2463
+ export declare type LegacyStitchingResolver<TResult, TParent, TContext, TArgs> = {
2109
2464
  fragment: string;
2110
2465
  resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2111
2466
  };
2112
- export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
2467
+ export declare type NewStitchingResolver<TResult, TParent, TContext, TArgs> = {
2468
+ selectionSet: string;
2469
+ resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
2470
+ };
2471
+ export declare type StitchingResolver<TResult, TParent, TContext, TArgs> = LegacyStitchingResolver<TResult, TParent, TContext, TArgs> | NewStitchingResolver<TResult, TParent, TContext, TArgs>;
2472
+ export declare type Resolver<TResult, TParent = {}, TContext = {}, TArgs = {}> = ResolverFn<TResult, TParent, TContext, TArgs> | ResolverWithResolve<TResult, TParent, TContext, TArgs> | StitchingResolver<TResult, TParent, TContext, TArgs>;
2113
2473
  export declare type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
2114
2474
  export declare type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterator<TResult> | Promise<AsyncIterator<TResult>>;
2115
2475
  export declare type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
@@ -2128,7 +2488,7 @@ export interface SubscriptionResolverObject<TResult, TParent, TContext, TArgs> {
2128
2488
  export declare type SubscriptionObject<TResult, TKey extends string, TParent, TContext, TArgs> = SubscriptionSubscriberObject<TResult, TKey, TParent, TContext, TArgs> | SubscriptionResolverObject<TResult, TParent, TContext, TArgs>;
2129
2489
  export declare type SubscriptionResolver<TResult, TKey extends string, TParent = {}, TContext = {}, TArgs = {}> = ((...args: any[]) => SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>) | SubscriptionObject<TResult, TKey, TParent, TContext, TArgs>;
2130
2490
  export declare type TypeResolveFn<TTypes, TParent = {}, TContext = {}> = (parent: TParent, context: TContext, info: GraphQLResolveInfo) => Maybe<TTypes> | Promise<Maybe<TTypes>>;
2131
- export declare type isTypeOfResolverFn<T = {}> = (obj: T, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
2491
+ export declare type IsTypeOfResolverFn<T = {}, TContext = {}> = (obj: T, context: TContext, info: GraphQLResolveInfo) => boolean | Promise<boolean>;
2132
2492
  export declare type NextResolverFn<T> = () => Promise<T>;
2133
2493
  export declare type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
2134
2494
  /** Mapping between all available schema types and the resolvers types */
@@ -2237,63 +2597,68 @@ export declare type IResolversTypes = {
2237
2597
  IViewComponentDataInput: IIViewComponentDataInput;
2238
2598
  TextDocumentItemInput: ITextDocumentItemInput;
2239
2599
  Subscription: ResolverTypeWrapper<{}>;
2240
- CommandType: ResolverTypeWrapper<ICommandType>;
2241
- CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
2600
+ AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
2242
2601
  ArgsType: ResolverTypeWrapper<IArgsType>;
2602
+ BaseExtension: ResolverTypeWrapper<IBaseExtension>;
2603
+ ExtensionType: IExtensionType;
2604
+ CacheControlScope: ICacheControlScope;
2605
+ ClientContainerService: IClientContainerService;
2606
+ CommandHandlerDescriptionType: ResolverTypeWrapper<ICommandHandlerDescriptionType>;
2607
+ CommandType: ResolverTypeWrapper<ICommandType>;
2243
2608
  CommandsType: ResolverTypeWrapper<ICommandsType>;
2244
- RegistryEntry: ResolverTypeWrapper<IRegistryEntry>;
2245
- TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
2609
+ Contributes: ResolverTypeWrapper<IContributes>;
2610
+ ContributionView: ResolverTypeWrapper<IContributionView>;
2611
+ Date: ResolverTypeWrapper<Scalars['Date']>;
2612
+ DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
2246
2613
  DocumentFilter: ResolverTypeWrapper<IDocumentFilter>;
2247
- ITextDocumentIdentifier: IResolversTypes['TextDocumentIdentifier'] | IResolversTypes['TextDocumentItem'];
2248
- TextDocumentIdentifier: ResolverTypeWrapper<ITextDocumentIdentifier>;
2249
- ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
2250
- TextDocumentPositionParams: IResolversTypes['ProvideTextDocumentLocationSignature'];
2251
- Position: ResolverTypeWrapper<IPosition>;
2252
- Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
2253
- MarkupKind: IMarkupKind;
2254
- Range: ResolverTypeWrapper<IRange>;
2255
- IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
2256
- TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
2257
- IWorkspaceRoot: ResolverTypeWrapper<IIWorkspaceRoot>;
2258
- IModel: ResolverTypeWrapper<IIModel>;
2259
- ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
2260
- IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
2261
- IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
2262
- IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
2263
- IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
2264
- ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
2265
- IObservableResult: ResolverTypeWrapper<IIObservableResult>;
2266
2614
  Environment: ResolverTypeWrapper<IEnvironment>;
2267
2615
  EnvironmentSync: IEnvironmentSync;
2268
2616
  EnvironmentPayload: IEnvironmentPayload;
2269
- ViewContainer: ResolverTypeWrapper<IViewContainer>;
2270
- ContributionView: ResolverTypeWrapper<IContributionView>;
2271
- RangeInput: IRangeInput;
2272
- ExtensionType: IExtensionType;
2273
- BaseExtension: ResolverTypeWrapper<IBaseExtension>;
2274
2617
  ExtensionConfigurationProperty: ResolverTypeWrapper<IExtensionConfigurationProperty>;
2275
- Contributes: ResolverTypeWrapper<IContributes>;
2618
+ ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
2619
+ ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
2620
+ FieldError: ResolverTypeWrapper<IFieldError>;
2276
2621
  GalleryFilter: IGalleryFilter;
2622
+ GeoLocation: ResolverTypeWrapper<IGeoLocation>;
2623
+ Hover: never;
2624
+ MarkupContent: never;
2625
+ MarkupKind: IMarkupKind;
2626
+ Range: ResolverTypeWrapper<IRange>;
2627
+ Position: ResolverTypeWrapper<IPosition>;
2628
+ IBehaviorSubject: ResolverTypeWrapper<IIBehaviorSubject>;
2629
+ IBehaviorSubjectValue: ResolverTypeWrapper<IIBehaviorSubjectValue>;
2630
+ IDocumentSelector: ResolverTypeWrapper<IIDocumentSelector>;
2631
+ IDestinationAnonymousSubject: ResolverTypeWrapper<IIDestinationAnonymousSubject>;
2632
+ ISwitchMapOperator: ResolverTypeWrapper<IISwitchMapOperator>;
2633
+ IModel: ResolverTypeWrapper<IIModel>;
2634
+ IWorkspaceRoot: ResolverTypeWrapper<IIWorkspaceRoot>;
2635
+ IViewComponentData: ResolverTypeWrapper<IIViewComponentData>;
2636
+ TextDocumentItem: ResolverTypeWrapper<ITextDocumentItem>;
2637
+ ITextDocumentIdentifier: IResolversTypes['TextDocumentItem'] | IResolversTypes['TextDocumentIdentifier'];
2638
+ IObservableResult: ResolverTypeWrapper<IIObservableResult>;
2639
+ ISourceAnonymousSubject: ResolverTypeWrapper<IISourceAnonymousSubject>;
2640
+ IResourceUtilizationSettings: never;
2641
+ JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
2642
+ Location: IResolversTypes['ProvideTextDocumentLocationSignature'];
2277
2643
  MenuId: IMenuId;
2278
2644
  MessageLink: ResolverTypeWrapper<IMessageLink>;
2279
- NotificationChangeType: INotificationChangeType;
2645
+ MoleculerServiceName: IMoleculerServiceName;
2280
2646
  NotificationChangeEvent: ResolverTypeWrapper<INotificationChangeEvent>;
2281
2647
  NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
2282
2648
  NotificationMessage: ResolverTypeWrapper<INotificationMessage>;
2283
2649
  NotificationViewItemProgress: ResolverTypeWrapper<INotificationViewItemProgress>;
2284
2650
  NotificationViewItemProgressState: ResolverTypeWrapper<INotificationViewItemProgressState>;
2651
+ NotificationChangeType: INotificationChangeType;
2285
2652
  NotificationViewItemLabelKind: INotificationViewItemLabelKind;
2286
- ExtensionRegistryCreateExtensionResult: ResolverTypeWrapper<IExtensionRegistryCreateExtensionResult>;
2287
- ExtensionRegistryUpdateExtensionResult: ResolverTypeWrapper<IExtensionRegistryUpdateExtensionResult>;
2288
- Date: ResolverTypeWrapper<Scalars['Date']>;
2653
+ ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
2654
+ TextDocumentPositionParams: IResolversTypes['ProvideTextDocumentLocationSignature'];
2655
+ TextDocumentIdentifier: ResolverTypeWrapper<ITextDocumentIdentifier>;
2656
+ RangeInput: IRangeInput;
2657
+ RegistryEntry: ResolverTypeWrapper<IRegistryEntry>;
2658
+ TextDocumentRegistrationOptions: ResolverTypeWrapper<ITextDocumentRegistrationOptions>;
2289
2659
  Time: ResolverTypeWrapper<Scalars['Time']>;
2290
- DateTime: ResolverTypeWrapper<Scalars['DateTime']>;
2291
2660
  URIInput: ResolverTypeWrapper<Scalars['URIInput']>;
2292
- JSONObject: ResolverTypeWrapper<Scalars['JSONObject']>;
2293
- CacheControlScope: ICacheControlScope;
2294
- FieldError: ResolverTypeWrapper<IFieldError>;
2295
- AdminIdeSettings: ResolverTypeWrapper<IAdminIdeSettings>;
2296
- MoleculerServiceName: IMoleculerServiceName;
2661
+ ViewContainer: ResolverTypeWrapper<IViewContainer>;
2297
2662
  };
2298
2663
  /** Mapping between all available schema types and the resolvers parents */
2299
2664
  export declare type IResolversParentTypes = {
@@ -2305,7 +2670,6 @@ export declare type IResolversParentTypes = {
2305
2670
  Int: Scalars['Int'];
2306
2671
  MenuItem: IMenuItem;
2307
2672
  ContributionActionRun: IContributionActionRun;
2308
- GraphqlCallType: IGraphqlCallType;
2309
2673
  AnyObject: Scalars['AnyObject'];
2310
2674
  DocSitePage: IDocSitePage;
2311
2675
  RegistryExtension: IRegistryExtension;
@@ -2314,7 +2678,6 @@ export declare type IResolversParentTypes = {
2314
2678
  RegistryPublisher: IRegistryPublisher;
2315
2679
  ExtensionManifest: IExtensionManifest;
2316
2680
  JSON: Scalars['JSON'];
2317
- ExtensionKind: IExtensionKind;
2318
2681
  Assets: IAssets;
2319
2682
  Scripts: IScripts;
2320
2683
  Bundles: IBundles;
@@ -2367,7 +2730,6 @@ export declare type IResolversParentTypes = {
2367
2730
  ProcessMonitoring: IProcessMonitoring;
2368
2731
  Notifications: INotifications;
2369
2732
  Notification: INotification;
2370
- NotificationSeverity: INotificationSeverity;
2371
2733
  NotificationActions: INotificationActions;
2372
2734
  ContributionAction: IContributionAction;
2373
2735
  TextDocumentRegistrationOptionsInput: ITextDocumentRegistrationOptionsInput;
@@ -2401,63 +2763,59 @@ export declare type IResolversParentTypes = {
2401
2763
  IViewComponentDataInput: IIViewComponentDataInput;
2402
2764
  TextDocumentItemInput: ITextDocumentItemInput;
2403
2765
  Subscription: {};
2404
- CommandType: ICommandType;
2405
- CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
2766
+ AdminIdeSettings: IAdminIdeSettings;
2406
2767
  ArgsType: IArgsType;
2768
+ BaseExtension: IBaseExtension;
2769
+ CommandHandlerDescriptionType: ICommandHandlerDescriptionType;
2770
+ CommandType: ICommandType;
2407
2771
  CommandsType: ICommandsType;
2408
- RegistryEntry: IRegistryEntry;
2409
- TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
2772
+ Contributes: IContributes;
2773
+ ContributionView: IContributionView;
2774
+ Date: Scalars['Date'];
2775
+ DateTime: Scalars['DateTime'];
2410
2776
  DocumentFilter: IDocumentFilter;
2411
- ITextDocumentIdentifier: IResolversParentTypes['TextDocumentIdentifier'] | IResolversParentTypes['TextDocumentItem'];
2412
- TextDocumentIdentifier: ITextDocumentIdentifier;
2413
- ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
2414
- TextDocumentPositionParams: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2415
- Position: IPosition;
2416
- Location: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2417
- MarkupKind: IMarkupKind;
2418
- Range: IRange;
2419
- IViewComponentData: IIViewComponentData;
2420
- TextDocumentItem: ITextDocumentItem;
2421
- IWorkspaceRoot: IIWorkspaceRoot;
2422
- IModel: IIModel;
2423
- ISwitchMapOperator: IISwitchMapOperator;
2424
- IDocumentSelector: IIDocumentSelector;
2425
- IBehaviorSubjectValue: IIBehaviorSubjectValue;
2426
- IBehaviorSubject: IIBehaviorSubject;
2427
- IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
2428
- ISourceAnonymousSubject: IISourceAnonymousSubject;
2429
- IObservableResult: IIObservableResult;
2430
2777
  Environment: IEnvironment;
2431
- EnvironmentSync: IEnvironmentSync;
2432
2778
  EnvironmentPayload: IEnvironmentPayload;
2433
- ViewContainer: IViewContainer;
2434
- ContributionView: IContributionView;
2435
- RangeInput: IRangeInput;
2436
- ExtensionType: IExtensionType;
2437
- BaseExtension: IBaseExtension;
2438
2779
  ExtensionConfigurationProperty: IExtensionConfigurationProperty;
2439
- Contributes: IContributes;
2780
+ ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
2781
+ ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
2782
+ FieldError: IFieldError;
2440
2783
  GalleryFilter: IGalleryFilter;
2441
- MenuId: IMenuId;
2784
+ GeoLocation: IGeoLocation;
2785
+ Hover: never;
2786
+ MarkupContent: never;
2787
+ Range: IRange;
2788
+ Position: IPosition;
2789
+ IBehaviorSubject: IIBehaviorSubject;
2790
+ IBehaviorSubjectValue: IIBehaviorSubjectValue;
2791
+ IDocumentSelector: IIDocumentSelector;
2792
+ IDestinationAnonymousSubject: IIDestinationAnonymousSubject;
2793
+ ISwitchMapOperator: IISwitchMapOperator;
2794
+ IModel: IIModel;
2795
+ IWorkspaceRoot: IIWorkspaceRoot;
2796
+ IViewComponentData: IIViewComponentData;
2797
+ TextDocumentItem: ITextDocumentItem;
2798
+ ITextDocumentIdentifier: IResolversParentTypes['TextDocumentItem'] | IResolversParentTypes['TextDocumentIdentifier'];
2799
+ IObservableResult: IIObservableResult;
2800
+ ISourceAnonymousSubject: IISourceAnonymousSubject;
2801
+ IResourceUtilizationSettings: never;
2802
+ JSONObject: Scalars['JSONObject'];
2803
+ Location: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2442
2804
  MessageLink: IMessageLink;
2443
- NotificationChangeType: INotificationChangeType;
2444
2805
  NotificationChangeEvent: INotificationChangeEvent;
2445
2806
  NotificationViewItem: INotificationViewItem;
2446
2807
  NotificationMessage: INotificationMessage;
2447
2808
  NotificationViewItemProgress: INotificationViewItemProgress;
2448
2809
  NotificationViewItemProgressState: INotificationViewItemProgressState;
2449
- NotificationViewItemLabelKind: INotificationViewItemLabelKind;
2450
- ExtensionRegistryCreateExtensionResult: IExtensionRegistryCreateExtensionResult;
2451
- ExtensionRegistryUpdateExtensionResult: IExtensionRegistryUpdateExtensionResult;
2452
- Date: Scalars['Date'];
2810
+ ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
2811
+ TextDocumentPositionParams: IResolversParentTypes['ProvideTextDocumentLocationSignature'];
2812
+ TextDocumentIdentifier: ITextDocumentIdentifier;
2813
+ RangeInput: IRangeInput;
2814
+ RegistryEntry: IRegistryEntry;
2815
+ TextDocumentRegistrationOptions: ITextDocumentRegistrationOptions;
2453
2816
  Time: Scalars['Time'];
2454
- DateTime: Scalars['DateTime'];
2455
2817
  URIInput: Scalars['URIInput'];
2456
- JSONObject: Scalars['JSONObject'];
2457
- CacheControlScope: ICacheControlScope;
2458
- FieldError: IFieldError;
2459
- AdminIdeSettings: IAdminIdeSettings;
2460
- MoleculerServiceName: IMoleculerServiceName;
2818
+ ViewContainer: IViewContainer;
2461
2819
  };
2462
2820
  export declare type IcacheControlDirectiveArgs = {
2463
2821
  maxAge?: Maybe<Scalars['Int']>;
@@ -2466,14 +2824,14 @@ export declare type IcacheControlDirectiveArgs = {
2466
2824
  export declare type IcacheControlDirectiveResolver<Result, Parent, ContextType = MyContext, Args = IcacheControlDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
2467
2825
  export declare type IAdminIdeSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['AdminIdeSettings'] = IResolversParentTypes['AdminIdeSettings']> = {
2468
2826
  dummy?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2469
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2827
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2470
2828
  };
2471
2829
  export declare type IAnchorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Anchor'] = IResolversParentTypes['Anchor']> = {
2472
2830
  x?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2473
2831
  y?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2474
2832
  height?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2475
2833
  width?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2476
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2834
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2477
2835
  };
2478
2836
  export interface IAnyObjectScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['AnyObject'], any> {
2479
2837
  name: 'AnyObject';
@@ -2482,16 +2840,16 @@ export declare type IArgsTypeResolvers<ContextType = MyContext, ParentType exten
2482
2840
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2483
2841
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2484
2842
  constraint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2485
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2843
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2486
2844
  };
2487
2845
  export declare type IAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Assets'] = IResolversParentTypes['Assets']> = {
2488
2846
  Type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2489
2847
  Content?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2490
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2848
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2491
2849
  };
2492
2850
  export declare type IAuthorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Author'] = IResolversParentTypes['Author']> = {
2493
2851
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2494
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2852
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2495
2853
  };
2496
2854
  export declare type IBaseExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['BaseExtension'] = IResolversParentTypes['BaseExtension']> = {
2497
2855
  type?: Resolver<Maybe<IResolversTypes['ExtensionType']>, ParentType, ContextType>;
@@ -2499,40 +2857,40 @@ export declare type IBaseExtensionResolvers<ContextType = MyContext, ParentType
2499
2857
  galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2500
2858
  manifest?: Resolver<Maybe<IResolversTypes['ExtensionManifest']>, ParentType, ContextType>;
2501
2859
  location?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2502
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2860
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2503
2861
  };
2504
2862
  export declare type IBundlesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Bundles'] = IResolversParentTypes['Bundles']> = {
2505
2863
  server?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2506
2864
  browser?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2507
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2865
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2508
2866
  };
2509
2867
  export declare type ICommandHandlerDescriptionTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandHandlerDescriptionType'] = IResolversParentTypes['CommandHandlerDescriptionType']> = {
2510
2868
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2511
2869
  args?: Resolver<Maybe<Array<Maybe<IResolversTypes['ArgsType']>>>, ParentType, ContextType>;
2512
2870
  returns?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2513
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2871
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2514
2872
  };
2515
2873
  export declare type ICommandsTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandsType'] = IResolversParentTypes['CommandsType']> = {
2516
2874
  commands?: Resolver<Maybe<Array<Maybe<IResolversTypes['CommandType']>>>, ParentType, ContextType>;
2517
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2875
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2518
2876
  };
2519
2877
  export declare type ICommandTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['CommandType'] = IResolversParentTypes['CommandType']> = {
2520
2878
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2521
2879
  handler?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2522
2880
  description?: Resolver<Maybe<IResolversTypes['CommandHandlerDescriptionType']>, ParentType, ContextType>;
2523
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2881
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2524
2882
  };
2525
2883
  export declare type IContextMenuResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContextMenu'] = IResolversParentTypes['ContextMenu']> = {
2526
2884
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2527
2885
  isShow?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2528
2886
  anchor?: Resolver<Maybe<IResolversTypes['Anchor']>, ParentType, ContextType>;
2529
2887
  menuItems?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItem']>>>, ParentType, ContextType>;
2530
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2888
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2531
2889
  };
2532
2890
  export declare type IContributesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Contributes'] = IResolversParentTypes['Contributes']> = {
2533
2891
  menus?: Resolver<Maybe<IResolversTypes['Menus']>, ParentType, ContextType>;
2534
2892
  actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
2535
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2893
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2536
2894
  };
2537
2895
  export declare type IContributionActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionAction'] = IResolversParentTypes['ContributionAction']> = {
2538
2896
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2543,18 +2901,18 @@ export declare type IContributionActionResolvers<ContextType = MyContext, Parent
2543
2901
  checked?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2544
2902
  radio?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2545
2903
  run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
2546
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2904
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2547
2905
  };
2548
2906
  export declare type IContributionActionItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionItem'] = IResolversParentTypes['ContributionActionItem']> = {
2549
2907
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2550
2908
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2551
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2909
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2552
2910
  };
2553
2911
  export declare type IContributionActionRunResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActionRun'] = IResolversParentTypes['ContributionActionRun']> = {
2554
2912
  type?: Resolver<Maybe<IResolversTypes['GraphqlCallType']>, ParentType, ContextType>;
2555
2913
  document?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2556
2914
  variables?: Resolver<Maybe<IResolversTypes['AnyObject']>, ParentType, ContextType>;
2557
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2915
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2558
2916
  };
2559
2917
  export declare type IContributionActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionActions'] = IResolversParentTypes['ContributionActions']> = {
2560
2918
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2562,12 +2920,12 @@ export declare type IContributionActionsResolvers<ContextType = MyContext, Paren
2562
2920
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2563
2921
  category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2564
2922
  actionItem?: Resolver<Maybe<IResolversTypes['ContributionActionItem']>, ParentType, ContextType>;
2565
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2923
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2566
2924
  };
2567
2925
  export declare type IContributionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ContributionView'] = IResolversParentTypes['ContributionView']> = {
2568
2926
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2569
2927
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2570
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2928
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2571
2929
  };
2572
2930
  export interface IDateScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Date'], any> {
2573
2931
  name: 'Date';
@@ -2579,29 +2937,29 @@ export declare type IDebuggerResolvers<ContextType = MyContext, ParentType exten
2579
2937
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2580
2938
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2581
2939
  runtime?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2582
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2940
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2583
2941
  };
2584
2942
  export declare type IDocSitePageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocSitePage'] = IResolversParentTypes['DocSitePage']> = {
2585
2943
  title?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2586
2944
  contentHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2587
2945
  indexHTML?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2588
2946
  filePath?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2589
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2947
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2590
2948
  };
2591
2949
  export declare type IDocumentFilterResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['DocumentFilter'] = IResolversParentTypes['DocumentFilter']> = {
2592
2950
  language?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2593
2951
  schema?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2594
2952
  pattern?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2595
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2953
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2596
2954
  };
2597
2955
  export declare type IEmptyResponseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['EmptyResponse'] = IResolversParentTypes['EmptyResponse']> = {
2598
2956
  alwaysNil?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2599
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2957
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2600
2958
  };
2601
2959
  export declare type IEnginesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Engines'] = IResolversParentTypes['Engines']> = {
2602
2960
  node?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2603
2961
  vscode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2604
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2962
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2605
2963
  };
2606
2964
  export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Environment'] = IResolversParentTypes['Environment']> = {
2607
2965
  extHostLogsPath?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
@@ -2620,29 +2978,29 @@ export declare type IEnvironmentResolvers<ContextType = MyContext, ParentType ex
2620
2978
  webviewCspSource?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2621
2979
  webviewExternalEndpoint?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2622
2980
  webviewResourceRoot?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2623
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2981
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2624
2982
  };
2625
2983
  export declare type IExtensionColorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColor'] = IResolversParentTypes['ExtensionColor']> = {
2626
2984
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2627
2985
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2628
2986
  defaults?: Resolver<Maybe<IResolversTypes['ExtensionColorTypes']>, ParentType, ContextType>;
2629
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2987
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2630
2988
  };
2631
2989
  export declare type IExtensionColorTypesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionColorTypes'] = IResolversParentTypes['ExtensionColorTypes']> = {
2632
2990
  light?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2633
2991
  dark?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2634
2992
  highContrast?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2635
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2993
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2636
2994
  };
2637
2995
  export declare type IExtensionConfigurationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfiguration'] = IResolversParentTypes['ExtensionConfiguration']> = {
2638
2996
  properties?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2639
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
2997
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2640
2998
  };
2641
2999
  export declare type IExtensionConfigurationPropertyResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionConfigurationProperty'] = IResolversParentTypes['ExtensionConfigurationProperty']> = {
2642
3000
  description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2643
3001
  type?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2644
3002
  defaults?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2645
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3003
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2646
3004
  };
2647
3005
  export declare type IExtensionContributionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionContributions'] = IResolversParentTypes['ExtensionContributions']> = {
2648
3006
  actions?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionActions']>>>, ParentType, ContextType>;
@@ -2661,12 +3019,12 @@ export declare type IExtensionContributionsResolvers<ContextType = MyContext, Pa
2661
3019
  views?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2662
3020
  colors?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionColor']>>>, ParentType, ContextType>;
2663
3021
  localizations?: Resolver<Maybe<Array<Maybe<IResolversTypes['Localization']>>>, ParentType, ContextType>;
2664
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3022
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2665
3023
  };
2666
3024
  export declare type IExtensionIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionIdentifier'] = IResolversParentTypes['ExtensionIdentifier']> = {
2667
3025
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2668
3026
  uuid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2669
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3027
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2670
3028
  };
2671
3029
  export declare type IExtensionInstanceResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionInstance'] = IResolversParentTypes['ExtensionInstance']> = {
2672
3030
  pid?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2676,18 +3034,18 @@ export declare type IExtensionInstanceResolvers<ContextType = MyContext, ParentT
2676
3034
  status?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2677
3035
  extensionID?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2678
3036
  monit?: Resolver<Maybe<IResolversTypes['ProcessMonitoring']>, ParentType, ContextType>;
2679
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3037
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2680
3038
  };
2681
3039
  export declare type IExtensionJSONValidationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionJSONValidation'] = IResolversParentTypes['ExtensionJSONValidation']> = {
2682
3040
  fileMatch?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2683
3041
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2684
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3042
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2685
3043
  };
2686
3044
  export declare type IExtensionLanguageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionLanguage'] = IResolversParentTypes['ExtensionLanguage']> = {
2687
3045
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2688
3046
  extensions?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2689
3047
  aliases?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2690
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3048
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2691
3049
  };
2692
3050
  export declare type IExtensionManifestResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifest'] = IResolversParentTypes['ExtensionManifest']> = {
2693
3051
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2730,21 +3088,21 @@ export declare type IExtensionManifestResolvers<ContextType = MyContext, ParentT
2730
3088
  repository?: Resolver<Maybe<IResolversTypes['ExtensionManifestRepository']>, ParentType, ContextType>;
2731
3089
  enableProposedApi?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2732
3090
  api?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2733
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3091
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2734
3092
  };
2735
3093
  export declare type IExtensionManifestBugsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestBugs'] = IResolversParentTypes['ExtensionManifestBugs']> = {
2736
3094
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2737
3095
  email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2738
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3096
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2739
3097
  };
2740
3098
  export declare type IExtensionManifestRepositoryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionManifestRepository'] = IResolversParentTypes['ExtensionManifestRepository']> = {
2741
3099
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2742
3100
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2743
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3101
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2744
3102
  };
2745
3103
  export declare type IExtensionPackageTypeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionPackageType'] = IResolversParentTypes['ExtensionPackageType']> = {
2746
3104
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2747
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3105
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2748
3106
  };
2749
3107
  export declare type IExtensionRegistryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistry'] = IResolversParentTypes['ExtensionRegistry']> = {
2750
3108
  extension?: Resolver<Maybe<IResolversTypes['RegistryExtension']>, ParentType, ContextType, RequireFields<IExtensionRegistryextensionArgs, 'extensionID'>>;
@@ -2753,19 +3111,19 @@ export declare type IExtensionRegistryResolvers<ContextType = MyContext, ParentT
2753
3111
  publishers?: Resolver<IResolversTypes['RegistryPublisherConnection'], ParentType, ContextType, RequireFields<IExtensionRegistrypublishersArgs, never>>;
2754
3112
  viewerPublishers?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
2755
3113
  localExtensionIDPrefix?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2756
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3114
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2757
3115
  };
2758
3116
  export declare type IExtensionRegistryCreateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryCreateExtensionResult'] = IResolversParentTypes['ExtensionRegistryCreateExtensionResult']> = {
2759
3117
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2760
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3118
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2761
3119
  };
2762
3120
  export declare type IExtensionRegistryPublishExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryPublishExtensionResult'] = IResolversParentTypes['ExtensionRegistryPublishExtensionResult']> = {
2763
3121
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2764
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3122
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2765
3123
  };
2766
3124
  export declare type IExtensionRegistryUpdateExtensionResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRegistryUpdateExtensionResult'] = IResolversParentTypes['ExtensionRegistryUpdateExtensionResult']> = {
2767
3125
  extension?: Resolver<IResolversTypes['RegistryExtension'], ParentType, ContextType>;
2768
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3126
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2769
3127
  };
2770
3128
  export declare type IExtensionReleaseResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ExtensionRelease'] = IResolversParentTypes['ExtensionRelease']> = {
2771
3129
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
@@ -2778,17 +3136,17 @@ export declare type IExtensionReleaseResolvers<ContextType = MyContext, ParentTy
2778
3136
  creatorUserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2779
3137
  releaseVersion?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2780
3138
  activationEvents?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2781
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3139
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2782
3140
  };
2783
3141
  export declare type IFieldErrorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['FieldError'] = IResolversParentTypes['FieldError']> = {
2784
3142
  field?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2785
3143
  message?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
2786
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3144
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2787
3145
  };
2788
3146
  export declare type IGalleryBannerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryBanner'] = IResolversParentTypes['GalleryBanner']> = {
2789
3147
  color?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2790
3148
  theme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2791
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3149
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2792
3150
  };
2793
3151
  export declare type IGalleryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtension'] = IResolversParentTypes['GalleryExtension']> = {
2794
3152
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2809,12 +3167,12 @@ export declare type IGalleryExtensionResolvers<ContextType = MyContext, ParentTy
2809
3167
  properties?: Resolver<Maybe<IResolversTypes['GalleryExtensionProperties']>, ParentType, ContextType>;
2810
3168
  preview?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2811
3169
  resources?: Resolver<Maybe<IResolversTypes['GalleryExtensionResources']>, ParentType, ContextType>;
2812
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3170
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2813
3171
  };
2814
3172
  export declare type IGalleryExtensionAssetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAsset'] = IResolversParentTypes['GalleryExtensionAsset']> = {
2815
3173
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2816
3174
  fallbackUri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2817
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3175
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2818
3176
  };
2819
3177
  export declare type IGalleryExtensionAssetsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionAssets'] = IResolversParentTypes['GalleryExtensionAssets']> = {
2820
3178
  manifest?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
@@ -2825,14 +3183,14 @@ export declare type IGalleryExtensionAssetsResolvers<ContextType = MyContext, Pa
2825
3183
  license?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
2826
3184
  repository?: Resolver<Maybe<IResolversTypes['GalleryExtensionAsset']>, ParentType, ContextType>;
2827
3185
  coreTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2828
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3186
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2829
3187
  };
2830
3188
  export declare type IGalleryExtensionPropertiesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionProperties'] = IResolversParentTypes['GalleryExtensionProperties']> = {
2831
3189
  engine?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2832
3190
  dependencies?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2833
3191
  extensionPack?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2834
3192
  localizedLanguages?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
2835
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3193
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2836
3194
  };
2837
3195
  export declare type IGalleryExtensionResourcesResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryExtensionResources'] = IResolversParentTypes['GalleryExtensionResources']> = {
2838
3196
  manifest?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2842,18 +3200,27 @@ export declare type IGalleryExtensionResourcesResolvers<ContextType = MyContext,
2842
3200
  icon?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2843
3201
  license?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2844
3202
  repository?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2845
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3203
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2846
3204
  };
2847
3205
  export declare type IGalleryPagerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GalleryPager'] = IResolversParentTypes['GalleryPager']> = {
2848
3206
  page?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2849
3207
  total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2850
3208
  pageSize?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
2851
3209
  firstPage?: Resolver<Maybe<Array<Maybe<IResolversTypes['GalleryExtension']>>>, ParentType, ContextType>;
2852
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3210
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3211
+ };
3212
+ export declare type IGeoLocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['GeoLocation'] = IResolversParentTypes['GeoLocation']> = {
3213
+ coordinates?: Resolver<Maybe<Array<Maybe<IResolversTypes['Float']>>>, ParentType, ContextType>;
3214
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2853
3215
  };
2854
3216
  export declare type IGrammarResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Grammar'] = IResolversParentTypes['Grammar']> = {
2855
3217
  language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2856
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3218
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3219
+ };
3220
+ export declare type IHoverResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Hover'] = IResolversParentTypes['Hover']> = {
3221
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3222
+ contents?: Resolver<Maybe<IResolversTypes['MarkupContent']>, ParentType, ContextType>;
3223
+ range?: Resolver<Maybe<IResolversTypes['Range']>, ParentType, ContextType>;
2857
3224
  };
2858
3225
  export declare type IIBehaviorSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubject'] = IResolversParentTypes['IBehaviorSubject']> = {
2859
3226
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2863,12 +3230,12 @@ export declare type IIBehaviorSubjectResolvers<ContextType = MyContext, ParentTy
2863
3230
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2864
3231
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2865
3232
  value?: Resolver<Maybe<Array<Maybe<IResolversTypes['IBehaviorSubjectValue']>>>, ParentType, ContextType>;
2866
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3233
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2867
3234
  };
2868
3235
  export declare type IIBehaviorSubjectValueResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IBehaviorSubjectValue'] = IResolversParentTypes['IBehaviorSubjectValue']> = {
2869
3236
  provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2870
3237
  registrationOptions?: Resolver<Maybe<IResolversTypes['IDocumentSelector']>, ParentType, ContextType>;
2871
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3238
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2872
3239
  };
2873
3240
  export declare type IIDestinationAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDestinationAnonymousSubject'] = IResolversParentTypes['IDestinationAnonymousSubject']> = {
2874
3241
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2880,22 +3247,22 @@ export declare type IIDestinationAnonymousSubjectResolvers<ContextType = MyConte
2880
3247
  source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
2881
3248
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2882
3249
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2883
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3250
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2884
3251
  };
2885
3252
  export declare type IIDocumentSelectorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IDocumentSelector'] = IResolversParentTypes['IDocumentSelector']> = {
2886
3253
  documentSelector?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2887
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3254
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2888
3255
  };
2889
3256
  export declare type IIModelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IModel'] = IResolversParentTypes['IModel']> = {
2890
3257
  roots?: Resolver<Maybe<IResolversTypes['IWorkspaceRoot']>, ParentType, ContextType>;
2891
3258
  visibleViewComponents?: Resolver<Maybe<Array<Maybe<IResolversTypes['IViewComponentData']>>>, ParentType, ContextType>;
2892
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3259
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2893
3260
  };
2894
3261
  export declare type IInstalledExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['InstalledExtension'] = IResolversParentTypes['InstalledExtension']> = {
2895
3262
  extension?: Resolver<Maybe<IResolversTypes['GalleryExtension']>, ParentType, ContextType>;
2896
3263
  identifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2897
3264
  galleryIdentifier?: Resolver<Maybe<IResolversTypes['ExtensionIdentifier']>, ParentType, ContextType>;
2898
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3265
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2899
3266
  };
2900
3267
  export declare type IIObservableResultResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IObservableResult'] = IResolversParentTypes['IObservableResult']> = {
2901
3268
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2907,7 +3274,12 @@ export declare type IIObservableResultResolvers<ContextType = MyContext, ParentT
2907
3274
  source?: Resolver<Maybe<IResolversTypes['ISourceAnonymousSubject']>, ParentType, ContextType>;
2908
3275
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2909
3276
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2910
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3277
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3278
+ };
3279
+ export declare type IIResourceUtilizationSettingsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IResourceUtilizationSettings'] = IResolversParentTypes['IResourceUtilizationSettings']> = {
3280
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3281
+ subTopic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3282
+ adminApiNamespace?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2911
3283
  };
2912
3284
  export declare type IISourceAnonymousSubjectResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISourceAnonymousSubject'] = IResolversParentTypes['ISourceAnonymousSubject']> = {
2913
3285
  closed?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
@@ -2919,14 +3291,14 @@ export declare type IISourceAnonymousSubjectResolvers<ContextType = MyContext, P
2919
3291
  source?: Resolver<Maybe<IResolversTypes['IBehaviorSubject']>, ParentType, ContextType>;
2920
3292
  thrownError?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2921
3293
  _isScalar?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2922
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3294
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2923
3295
  };
2924
3296
  export declare type IISwitchMapOperatorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ISwitchMapOperator'] = IResolversParentTypes['ISwitchMapOperator']> = {
2925
3297
  project?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2926
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3298
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2927
3299
  };
2928
3300
  export declare type IITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ITextDocumentIdentifier'] = IResolversParentTypes['ITextDocumentIdentifier']> = {
2929
- __resolveType: TypeResolveFn<'TextDocumentIdentifier' | 'TextDocumentItem', ParentType, ContextType>;
3301
+ __resolveType: TypeResolveFn<'TextDocumentItem' | 'TextDocumentIdentifier', ParentType, ContextType>;
2930
3302
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
2931
3303
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2932
3304
  };
@@ -2934,11 +3306,11 @@ export declare type IIViewComponentDataResolvers<ContextType = MyContext, Parent
2934
3306
  type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2935
3307
  item?: Resolver<Maybe<IResolversTypes['TextDocumentItem']>, ParentType, ContextType>;
2936
3308
  isActive?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2937
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3309
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2938
3310
  };
2939
3311
  export declare type IIWorkspaceRootResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['IWorkspaceRoot'] = IResolversParentTypes['IWorkspaceRoot']> = {
2940
3312
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2941
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3313
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2942
3314
  };
2943
3315
  export interface IJSONScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['JSON'], any> {
2944
3316
  name: 'JSON';
@@ -2953,7 +3325,7 @@ export declare type IKeyBindingResolvers<ContextType = MyContext, ParentType ext
2953
3325
  mac?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2954
3326
  linux?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2955
3327
  win?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2956
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3328
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2957
3329
  };
2958
3330
  export declare type ILocalizationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Localization'] = IResolversParentTypes['Localization']> = {
2959
3331
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
@@ -2961,12 +3333,12 @@ export declare type ILocalizationResolvers<ContextType = MyContext, ParentType e
2961
3333
  localizedLanguageName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2962
3334
  translations?: Resolver<Maybe<Array<Maybe<IResolversTypes['LocalizationTranslation']>>>, ParentType, ContextType>;
2963
3335
  minimalTranslations?: Resolver<Maybe<IResolversTypes['JSON']>, ParentType, ContextType>;
2964
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3336
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2965
3337
  };
2966
3338
  export declare type ILocalizationTranslationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['LocalizationTranslation'] = IResolversParentTypes['LocalizationTranslation']> = {
2967
3339
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
2968
3340
  path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2969
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3341
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2970
3342
  };
2971
3343
  export declare type ILocationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Location'] = IResolversParentTypes['Location']> = {
2972
3344
  __resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
@@ -2975,52 +3347,57 @@ export declare type ILocationResolvers<ContextType = MyContext, ParentType exten
2975
3347
  range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
2976
3348
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2977
3349
  };
3350
+ export declare type IMarkupContentResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MarkupContent'] = IResolversParentTypes['MarkupContent']> = {
3351
+ __resolveType: TypeResolveFn<null, ParentType, ContextType>;
3352
+ value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3353
+ kind?: Resolver<Maybe<IResolversTypes['MarkupKind']>, ParentType, ContextType>;
3354
+ };
2978
3355
  export declare type IMenuItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItem'] = IResolversParentTypes['MenuItem']> = {
2979
3356
  id?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2980
3357
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2981
3358
  enabled?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
2982
3359
  run?: Resolver<Maybe<IResolversTypes['ContributionActionRun']>, ParentType, ContextType>;
2983
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3360
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2984
3361
  };
2985
3362
  export declare type IMenuItemActionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemAction'] = IResolversParentTypes['MenuItemAction']> = {
2986
3363
  action?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2987
3364
  when?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
2988
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3365
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2989
3366
  };
2990
3367
  export declare type IMenuItemActionContextResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionContext'] = IResolversParentTypes['MenuItemActionContext']> = {
2991
3368
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
2992
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3369
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2993
3370
  };
2994
3371
  export declare type IMenuItemActionDebugResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionDebug'] = IResolversParentTypes['MenuItemActionDebug']> = {
2995
3372
  callstack?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
2996
3373
  toolbar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
2997
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3374
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
2998
3375
  };
2999
3376
  export declare type IMenuItemActionEditorResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditor'] = IResolversParentTypes['MenuItemActionEditor']> = {
3000
3377
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3001
3378
  title?: Resolver<Maybe<IResolversTypes['MenuItemActionEditorTitle']>, ParentType, ContextType>;
3002
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3379
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3003
3380
  };
3004
3381
  export declare type IMenuItemActionEditorTitleResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionEditorTitle'] = IResolversParentTypes['MenuItemActionEditorTitle']> = {
3005
3382
  own?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3006
3383
  context?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3007
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3384
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3008
3385
  };
3009
3386
  export declare type IMenuItemActionScmResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScm'] = IResolversParentTypes['MenuItemActionScm']> = {
3010
3387
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3011
3388
  resourceGroup?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3012
3389
  resource?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3013
3390
  change?: Resolver<Maybe<IResolversTypes['MenuItemActionScmChange']>, ParentType, ContextType>;
3014
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3391
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3015
3392
  };
3016
3393
  export declare type IMenuItemActionScmChangeResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionScmChange'] = IResolversParentTypes['MenuItemActionScmChange']> = {
3017
3394
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3018
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3395
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3019
3396
  };
3020
3397
  export declare type IMenuItemActionViewResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MenuItemActionView'] = IResolversParentTypes['MenuItemActionView']> = {
3021
3398
  title?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3022
3399
  item?: Resolver<Maybe<IResolversTypes['MenuItemActionContext']>, ParentType, ContextType>;
3023
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3400
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3024
3401
  };
3025
3402
  export declare type IMenusResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Menus'] = IResolversParentTypes['Menus']> = {
3026
3403
  commandPalette?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
@@ -3030,14 +3407,14 @@ export declare type IMenusResolvers<ContextType = MyContext, ParentType extends
3030
3407
  scm?: Resolver<Maybe<IResolversTypes['MenuItemActionScm']>, ParentType, ContextType>;
3031
3408
  view?: Resolver<Maybe<IResolversTypes['MenuItemActionView']>, ParentType, ContextType>;
3032
3409
  touchBar?: Resolver<Maybe<Array<Maybe<IResolversTypes['MenuItemAction']>>>, ParentType, ContextType>;
3033
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3410
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3034
3411
  };
3035
3412
  export declare type IMessageLinkResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['MessageLink'] = IResolversParentTypes['MessageLink']> = {
3036
3413
  name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3037
3414
  href?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3038
3415
  offset?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3039
3416
  length?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3040
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3417
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3041
3418
  };
3042
3419
  export declare type IMutationResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
3043
3420
  activate?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType, RequireFields<IMutationactivateArgs, 'request'>>;
@@ -3084,29 +3461,29 @@ export declare type INotificationResolvers<ContextType = MyContext, ParentType e
3084
3461
  source?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3085
3462
  actions?: Resolver<Maybe<IResolversTypes['NotificationActions']>, ParentType, ContextType>;
3086
3463
  sticky?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3087
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3464
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3088
3465
  };
3089
3466
  export declare type INotificationActionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationActions'] = IResolversParentTypes['NotificationActions']> = {
3090
3467
  primary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
3091
3468
  secondary?: Resolver<Maybe<Array<Maybe<IResolversTypes['ContributionAction']>>>, ParentType, ContextType>;
3092
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3469
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3093
3470
  };
3094
3471
  export declare type INotificationChangeEventResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationChangeEvent'] = IResolversParentTypes['NotificationChangeEvent']> = {
3095
3472
  index?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3096
3473
  item?: Resolver<Maybe<IResolversTypes['NotificationViewItem']>, ParentType, ContextType>;
3097
3474
  kind?: Resolver<Maybe<IResolversTypes['NotificationChangeType']>, ParentType, ContextType>;
3098
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3475
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3099
3476
  };
3100
3477
  export declare type INotificationMessageResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationMessage'] = IResolversParentTypes['NotificationMessage']> = {
3101
3478
  raw?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3102
3479
  original?: Resolver<Maybe<IResolversTypes['NotificationMessage']>, ParentType, ContextType>;
3103
3480
  value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3104
3481
  links?: Resolver<Maybe<Array<Maybe<IResolversTypes['MessageLink']>>>, ParentType, ContextType>;
3105
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3482
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3106
3483
  };
3107
3484
  export declare type INotificationsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Notifications'] = IResolversParentTypes['Notifications']> = {
3108
3485
  notifications?: Resolver<Maybe<Array<Maybe<IResolversTypes['Notification']>>>, ParentType, ContextType>;
3109
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3486
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3110
3487
  };
3111
3488
  export declare type INotificationViewItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItem'] = IResolversParentTypes['NotificationViewItem']> = {
3112
3489
  severity?: Resolver<Maybe<IResolversTypes['NotificationSeverity']>, ParentType, ContextType>;
@@ -3118,37 +3495,37 @@ export declare type INotificationViewItemResolvers<ContextType = MyContext, Pare
3118
3495
  progress?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgress']>, ParentType, ContextType>;
3119
3496
  expanded?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3120
3497
  canCollapse?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3121
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3498
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3122
3499
  };
3123
3500
  export declare type INotificationViewItemProgressResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgress'] = IResolversParentTypes['NotificationViewItemProgress']> = {
3124
3501
  state?: Resolver<Maybe<IResolversTypes['NotificationViewItemProgressState']>, ParentType, ContextType>;
3125
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3502
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3126
3503
  };
3127
3504
  export declare type INotificationViewItemProgressStateResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['NotificationViewItemProgressState'] = IResolversParentTypes['NotificationViewItemProgressState']> = {
3128
3505
  infinite?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3129
3506
  total?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3130
3507
  worked?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3131
3508
  done?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3132
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3509
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3133
3510
  };
3134
3511
  export interface IObservableScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Observable'], any> {
3135
3512
  name: 'Observable';
3136
3513
  }
3137
3514
  export declare type IPageInfoResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['PageInfo'] = IResolversParentTypes['PageInfo']> = {
3138
3515
  hasNextPage?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
3139
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3516
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3140
3517
  };
3141
3518
  export declare type IPositionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Position'] = IResolversParentTypes['Position']> = {
3142
3519
  lineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3143
3520
  column?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3144
3521
  line?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3145
3522
  character?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3146
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3523
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3147
3524
  };
3148
3525
  export declare type IProcessMonitoringResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProcessMonitoring'] = IResolversParentTypes['ProcessMonitoring']> = {
3149
3526
  cpu?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
3150
3527
  memory?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
3151
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3528
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3152
3529
  };
3153
3530
  export declare type IProvideTextDocumentLocationSignatureResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ProvideTextDocumentLocationSignature'] = IResolversParentTypes['ProvideTextDocumentLocationSignature']> = {
3154
3531
  textDocument?: Resolver<Maybe<IResolversTypes['TextDocumentIdentifier']>, ParentType, ContextType>;
@@ -3157,7 +3534,7 @@ export declare type IProvideTextDocumentLocationSignatureResolvers<ContextType =
3157
3534
  uriRangeOrPosition?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3158
3535
  range?: Resolver<Maybe<IResolversTypes['Position']>, ParentType, ContextType>;
3159
3536
  uri?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3160
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3537
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3161
3538
  };
3162
3539
  export declare type IQueryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
3163
3540
  contextMenu?: Resolver<Maybe<IResolversTypes['ContextMenu']>, ParentType, ContextType>;
@@ -3182,12 +3559,12 @@ export declare type IRangeResolvers<ContextType = MyContext, ParentType extends
3182
3559
  startColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3183
3560
  endLineNumber?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3184
3561
  endColumn?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
3185
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3562
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3186
3563
  };
3187
3564
  export declare type IRegistryEntryResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryEntry'] = IResolversParentTypes['RegistryEntry']> = {
3188
3565
  registrationOptions?: Resolver<Maybe<IResolversTypes['TextDocumentRegistrationOptions']>, ParentType, ContextType>;
3189
3566
  provider?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3190
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3567
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3191
3568
  };
3192
3569
  export declare type IRegistryExtensionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtension'] = IResolversParentTypes['RegistryExtension']> = {
3193
3570
  id?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
@@ -3205,7 +3582,7 @@ export declare type IRegistryExtensionResolvers<ContextType = MyContext, ParentT
3205
3582
  isLocal?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3206
3583
  viewerCanAdminister?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
3207
3584
  releases?: Resolver<Maybe<Array<Maybe<IResolversTypes['ExtensionRelease']>>>, ParentType, ContextType>;
3208
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3585
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3209
3586
  };
3210
3587
  export declare type IRegistryExtensionConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryExtensionConnection'] = IResolversParentTypes['RegistryExtensionConnection']> = {
3211
3588
  nodes?: Resolver<Array<IResolversTypes['RegistryExtension']>, ParentType, ContextType>;
@@ -3213,26 +3590,26 @@ export declare type IRegistryExtensionConnectionResolvers<ContextType = MyContex
3213
3590
  pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
3214
3591
  url?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3215
3592
  error?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3216
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3593
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3217
3594
  };
3218
3595
  export declare type IRegistryPublisherResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisher'] = IResolversParentTypes['RegistryPublisher']> = {
3219
3596
  UserId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3220
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3597
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3221
3598
  };
3222
3599
  export declare type IRegistryPublisherConnectionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['RegistryPublisherConnection'] = IResolversParentTypes['RegistryPublisherConnection']> = {
3223
3600
  nodes?: Resolver<Array<IResolversTypes['RegistryPublisher']>, ParentType, ContextType>;
3224
3601
  totalCount?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
3225
3602
  pageInfo?: Resolver<IResolversTypes['PageInfo'], ParentType, ContextType>;
3226
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3603
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3227
3604
  };
3228
3605
  export declare type IScriptsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Scripts'] = IResolversParentTypes['Scripts']> = {
3229
3606
  cdebasebuild?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3230
3607
  cdebasepublish?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3231
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3608
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3232
3609
  };
3233
3610
  export declare type ISnippetResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Snippet'] = IResolversParentTypes['Snippet']> = {
3234
3611
  language?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3235
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3612
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3236
3613
  };
3237
3614
  export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['Subscription'] = IResolversParentTypes['Subscription']> = {
3238
3615
  dummy?: SubscriptionResolver<Maybe<IResolversTypes['Int']>, "dummy", ParentType, ContextType>;
@@ -3240,13 +3617,13 @@ export declare type ISubscriptionResolvers<ContextType = MyContext, ParentType e
3240
3617
  export declare type ITextDocumentIdentifierResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentIdentifier'] = IResolversParentTypes['TextDocumentIdentifier']> = {
3241
3618
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
3242
3619
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3243
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3620
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3244
3621
  };
3245
3622
  export declare type ITextDocumentItemResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentItem'] = IResolversParentTypes['TextDocumentItem']> = {
3246
3623
  uri?: Resolver<Maybe<IResolversTypes['URI']>, ParentType, ContextType>;
3247
3624
  languageId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3248
3625
  text?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3249
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3626
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3250
3627
  };
3251
3628
  export declare type ITextDocumentPositionParamsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentPositionParams'] = IResolversParentTypes['TextDocumentPositionParams']> = {
3252
3629
  __resolveType: TypeResolveFn<'ProvideTextDocumentLocationSignature', ParentType, ContextType>;
@@ -3255,13 +3632,13 @@ export declare type ITextDocumentPositionParamsResolvers<ContextType = MyContext
3255
3632
  };
3256
3633
  export declare type ITextDocumentRegistrationOptionsResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['TextDocumentRegistrationOptions'] = IResolversParentTypes['TextDocumentRegistrationOptions']> = {
3257
3634
  documentSelector?: Resolver<Maybe<Array<Maybe<IResolversTypes['String']>>>, ParentType, ContextType>;
3258
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3635
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3259
3636
  };
3260
3637
  export declare type IThemeLabelResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ThemeLabel'] = IResolversParentTypes['ThemeLabel']> = {
3261
3638
  label?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3262
3639
  uiTheme?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3263
3640
  path?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3264
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3641
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3265
3642
  };
3266
3643
  export interface ITimeScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Time'], any> {
3267
3644
  name: 'Time';
@@ -3275,7 +3652,7 @@ export interface IURIInputScalarConfig extends GraphQLScalarTypeConfig<IResolver
3275
3652
  export declare type IViewContainerResolvers<ContextType = MyContext, ParentType extends IResolversParentTypes['ViewContainer'] = IResolversParentTypes['ViewContainer']> = {
3276
3653
  id?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
3277
3654
  title?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
3278
- __isTypeOf?: isTypeOfResolverFn<ParentType>;
3655
+ __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
3279
3656
  };
3280
3657
  export declare type IResolvers<ContextType = MyContext> = {
3281
3658
  AdminIdeSettings?: IAdminIdeSettingsResolvers<ContextType>;
@@ -3330,7 +3707,9 @@ export declare type IResolvers<ContextType = MyContext> = {
3330
3707
  GalleryExtensionProperties?: IGalleryExtensionPropertiesResolvers<ContextType>;
3331
3708
  GalleryExtensionResources?: IGalleryExtensionResourcesResolvers<ContextType>;
3332
3709
  GalleryPager?: IGalleryPagerResolvers<ContextType>;
3710
+ GeoLocation?: IGeoLocationResolvers<ContextType>;
3333
3711
  Grammar?: IGrammarResolvers<ContextType>;
3712
+ Hover?: IHoverResolvers<ContextType>;
3334
3713
  IBehaviorSubject?: IIBehaviorSubjectResolvers<ContextType>;
3335
3714
  IBehaviorSubjectValue?: IIBehaviorSubjectValueResolvers<ContextType>;
3336
3715
  IDestinationAnonymousSubject?: IIDestinationAnonymousSubjectResolvers<ContextType>;
@@ -3338,9 +3717,10 @@ export declare type IResolvers<ContextType = MyContext> = {
3338
3717
  IModel?: IIModelResolvers<ContextType>;
3339
3718
  InstalledExtension?: IInstalledExtensionResolvers<ContextType>;
3340
3719
  IObservableResult?: IIObservableResultResolvers<ContextType>;
3720
+ IResourceUtilizationSettings?: IIResourceUtilizationSettingsResolvers<ContextType>;
3341
3721
  ISourceAnonymousSubject?: IISourceAnonymousSubjectResolvers<ContextType>;
3342
3722
  ISwitchMapOperator?: IISwitchMapOperatorResolvers<ContextType>;
3343
- ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers;
3723
+ ITextDocumentIdentifier?: IITextDocumentIdentifierResolvers<ContextType>;
3344
3724
  IViewComponentData?: IIViewComponentDataResolvers<ContextType>;
3345
3725
  IWorkspaceRoot?: IIWorkspaceRootResolvers<ContextType>;
3346
3726
  JSON?: GraphQLScalarType;
@@ -3348,7 +3728,8 @@ export declare type IResolvers<ContextType = MyContext> = {
3348
3728
  KeyBinding?: IKeyBindingResolvers<ContextType>;
3349
3729
  Localization?: ILocalizationResolvers<ContextType>;
3350
3730
  LocalizationTranslation?: ILocalizationTranslationResolvers<ContextType>;
3351
- Location?: ILocationResolvers;
3731
+ Location?: ILocationResolvers<ContextType>;
3732
+ MarkupContent?: IMarkupContentResolvers<ContextType>;
3352
3733
  MenuItem?: IMenuItemResolvers<ContextType>;
3353
3734
  MenuItemAction?: IMenuItemActionResolvers<ContextType>;
3354
3735
  MenuItemActionContext?: IMenuItemActionContextResolvers<ContextType>;
@@ -3361,7 +3742,7 @@ export declare type IResolvers<ContextType = MyContext> = {
3361
3742
  Menus?: IMenusResolvers<ContextType>;
3362
3743
  MessageLink?: IMessageLinkResolvers<ContextType>;
3363
3744
  Mutation?: IMutationResolvers<ContextType>;
3364
- Node?: INodeResolvers;
3745
+ Node?: INodeResolvers<ContextType>;
3365
3746
  Notification?: INotificationResolvers<ContextType>;
3366
3747
  NotificationActions?: INotificationActionsResolvers<ContextType>;
3367
3748
  NotificationChangeEvent?: INotificationChangeEventResolvers<ContextType>;
@@ -3387,7 +3768,7 @@ export declare type IResolvers<ContextType = MyContext> = {
3387
3768
  Subscription?: ISubscriptionResolvers<ContextType>;
3388
3769
  TextDocumentIdentifier?: ITextDocumentIdentifierResolvers<ContextType>;
3389
3770
  TextDocumentItem?: ITextDocumentItemResolvers<ContextType>;
3390
- TextDocumentPositionParams?: ITextDocumentPositionParamsResolvers;
3771
+ TextDocumentPositionParams?: ITextDocumentPositionParamsResolvers<ContextType>;
3391
3772
  TextDocumentRegistrationOptions?: ITextDocumentRegistrationOptionsResolvers<ContextType>;
3392
3773
  ThemeLabel?: IThemeLabelResolvers<ContextType>;
3393
3774
  Time?: GraphQLScalarType;