File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -345,6 +345,14 @@ export { canonicalStringify }
345345// @public (undocumented)
346346type CanReadFunction = (value : StoreValue ) => boolean ;
347347
348+ // @public (undocumented)
349+ interface CoerceValueOptions {
350+ // (undocumented)
351+ field: FieldNode ;
352+ // (undocumented)
353+ typename: string ;
354+ }
355+
348356// @public (undocumented)
349357export function createFragmentRegistry(... fragments : DocumentNode []): FragmentRegistryAPI ;
350358
@@ -873,8 +881,10 @@ export class Policies {
873881 hasKeyArgs(typename : string | undefined , fieldName : string ): boolean ;
874882 // (undocumented)
875883 identify(object : StoreObject , partialContext ? : Partial <KeyFieldsContext >): [string ? , StoreObject ? ];
884+ // Warning: (ae-forgotten-export) The symbol "CoerceValueOptions" needs to be exported by the entry point index.d.ts
885+ //
876886 // (undocumented)
877- maybeCoerceScalarValue (value : StoreValue , options : ReadFieldOptions , context : ReadMergeModifyContext ): any ;
887+ maybeCoerceToScalarValue (value : StoreValue , options : CoerceValueOptions ): any ;
878888 // (undocumented)
879889 readField<V = StoreValue >(options : ReadFieldOptions , context : ReadMergeModifyContext ): SafeReadonly <V > | undefined ;
880890 // (undocumented)
Original file line number Diff line number Diff line change @@ -946,6 +946,14 @@ class ClientAwarenessLink extends ApolloLink {
946946 constructor (options ? : ClientAwarenessLink .Options );
947947}
948948
949+ // @public (undocumented)
950+ interface CoerceValueOptions {
951+ // (undocumented)
952+ field: FieldNode ;
953+ // (undocumented)
954+ typename: string ;
955+ }
956+
949957// @public (undocumented)
950958export namespace CombinedGraphQLErrors {
951959 // (undocumented)
@@ -2372,10 +2380,12 @@ class Policies {
23722380 hasKeyArgs(typename : string | undefined , fieldName : string ): boolean ;
23732381 // (undocumented)
23742382 identify(object : StoreObject , partialContext ? : Partial <KeyFieldsContext >): [string ? , StoreObject ? ];
2375- // Warning: (ae-forgotten-export) The symbol "ReadFieldOptions " needs to be exported by the entry point index.d.ts
2383+ // Warning: (ae-forgotten-export) The symbol "CoerceValueOptions " needs to be exported by the entry point index.d.ts
23762384 //
23772385 // (undocumented)
2378- maybeCoerceScalarValue(value : StoreValue , options : ReadFieldOptions , context : ReadMergeModifyContext ): any ;
2386+ maybeCoerceToScalarValue(value : StoreValue , options : CoerceValueOptions ): any ;
2387+ // Warning: (ae-forgotten-export) The symbol "ReadFieldOptions" needs to be exported by the entry point index.d.ts
2388+ //
23792389 // (undocumented)
23802390 readField<V = StoreValue >(options : ReadFieldOptions , context : ReadMergeModifyContext ): SafeReadonly <V > | undefined ;
23812391 // (undocumented)
You can’t perform that action at this time.
0 commit comments