77import type { ASTNode } from ' graphql' ;
88import { disableExperimentalFragmentVariables } from ' graphql-tag' ;
99import { disableFragmentWarnings } from ' graphql-tag' ;
10- import type { DocumentNode } from ' graphql' ;
10+ import { DocumentNode } from ' graphql' ;
1111import { enableExperimentalFragmentVariables } from ' graphql-tag' ;
1212import type { FieldNode } from ' graphql' ;
1313import type { FormattedExecutionResult } from ' graphql' ;
@@ -29,10 +29,6 @@ import type { Subscription } from 'rxjs';
2929import { Trie } from ' @wry/trie' ;
3030import { TypedDocumentNode } from ' @graphql-typed-document-node/core' ;
3131
32- // @public (undocumented)
33- interface AdditionalApolloLinkResultTypes <TData = Record <string , any >, TExtensions = Record <string , any >> {
34- }
35-
3632// Warning: (ae-forgotten-export) The symbol "Modifier" needs to be exported by the entry point index.d.ts
3733// Warning: (ae-forgotten-export) The symbol "StoreObjectValueMaybeReference" needs to be exported by the entry point index.d.ts
3834//
@@ -389,6 +385,11 @@ export type ApolloClientOptions = ApolloClient.Options;
389385
390386// @public (undocumented)
391387export namespace ApolloLink {
388+ // Warning: (ae-forgotten-export) The symbol "ApplyHKTImplementationWithDefault" needs to be exported by the entry point index.d.ts
389+ // Warning: (ae-forgotten-export) The symbol "NotImplementedHandler" needs to be exported by the entry point index.d.ts
390+ //
391+ // (undocumented)
392+ export type AdditionalResultTypes <TData = Record <string , any >, TExtensions = Record <string , any >> = ApplyHKTImplementationWithDefault <TypeOverrides , " AdditionalApolloLinkResultTypes" , NotImplementedHandler .TypeOverrides , TData , TExtensions >;
392393 // (undocumented)
393394 export namespace DocumentationTypes {
394395 export function ForwardFunction(operation : ApolloLink .Operation ): Observable <ApolloLink .Result >;
@@ -420,10 +421,8 @@ export namespace ApolloLink {
420421 variables? : OperationVariables ;
421422 }
422423 export type RequestHandler = (operation : ApolloLink .Operation , forward : ApolloLink .ForwardFunction ) => Observable <ApolloLink .Result >;
423- // Warning: (ae-forgotten-export) The symbol "AdditionalApolloLinkResultTypes" needs to be exported by the entry point index.d.ts
424- //
425424 // (undocumented)
426- export type Result <TData = Record <string , any >, TExtensions = Record <string , any >> = FormattedExecutionResult <TData , TExtensions > | AdditionalApolloLinkResultTypes <TData , TExtensions >[ keyof AdditionalApolloLinkResultTypes < TData , TExtensions >] ;
425+ export type Result <TData = Record <string , any >, TExtensions = Record <string , any >> = FormattedExecutionResult <TData , TExtensions > | AdditionalResultTypes <TData , TExtensions >;
427426}
428427
429428// @public
@@ -829,7 +828,6 @@ export type DataState<TData> = {
829828
830829// @public (undocumented)
831830export namespace DataValue {
832- // Warning: (ae-forgotten-export) The symbol "ApplyHKTImplementationWithDefault" needs to be exported by the entry point index.d.ts
833831 // Warning: (ae-forgotten-export) The symbol "OverridableTypes" needs to be exported by the entry point index.d.ts
834832 export type Complete <TData > = ApplyHKTImplementationWithDefault <TypeOverrides , " Complete" , OverridableTypes .Defaults , TData >;
835833 export type Partial <TData > = ApplyHKTImplementationWithDefault <TypeOverrides , " Partial" , OverridableTypes .Defaults , TData >;
@@ -1832,6 +1830,38 @@ export interface NormalizedCacheObject {
18321830// @public
18331831export type NormalizedExecutionResult <TData = Record <string , unknown >, TExtensions = Record <string , unknown >> = Omit <FormattedExecutionResult <TData , TExtensions >, " data" > & GetDataState <TData , " streaming" | " complete" >;
18341832
1833+ // @public (undocumented)
1834+ namespace NotImplementedHandler {
1835+ // (undocumented)
1836+ interface NotImplementedResult extends HKT {
1837+ // (undocumented)
1838+ arg1: unknown ;
1839+ // (undocumented)
1840+ arg2: unknown ;
1841+ // (undocumented)
1842+ return: never ;
1843+ }
1844+ // (undocumented)
1845+ interface TypeOverrides {
1846+ // Warning: (ae-forgotten-export) The symbol "NotImplementedHandler" needs to be exported by the entry point index.d.ts
1847+ //
1848+ // (undocumented)
1849+ AdditionalApolloLinkResultTypes: NotImplementedResult ;
1850+ }
1851+ }
1852+
1853+ // @public (undocumented)
1854+ class NotImplementedHandler implements Incremental .Handler <never > {
1855+ // (undocumented)
1856+ extractErrors(): void ;
1857+ // (undocumented)
1858+ isIncrementalResult(_ : any ): _ is never ;
1859+ // (undocumented)
1860+ prepareRequest(request : ApolloLink .Request ): ApolloLink .Request ;
1861+ // (undocumented)
1862+ startRequest: any ;
1863+ }
1864+
18351865export { Observable }
18361866
18371867// @public (undocumented)
0 commit comments