Skip to content

Commit 1ed51e1

Browse files
committed
Rerun api report
1 parent 9a45136 commit 1ed51e1

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

.api-reports/api-report-cache.api.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,14 @@ export { canonicalStringify }
345345
// @public (undocumented)
346346
type 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)
349357
export 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)

.api-reports/api-report.api.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff 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)
950958
export 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)

0 commit comments

Comments
 (0)