Skip to content

Commit ae5091a

Browse files
Enable strict mode in tsconfig and fix type errors (#11200)
Co-authored-by: Lenz Weber-Tronic <[email protected]>
1 parent e5acf91 commit ae5091a

File tree

82 files changed

+434
-380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+434
-380
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ namespace Cache_2 {
9090
// (undocumented)
9191
interface BatchOptions<TCache extends ApolloCache<any>, TUpdateResult = void> {
9292
// (undocumented)
93-
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff: Cache_2.DiffResult<any> | undefined) => any;
93+
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff?: Cache_2.DiffResult<any> | undefined) => any;
9494
// (undocumented)
9595
optimistic?: string | boolean;
9696
// (undocumented)
@@ -894,7 +894,7 @@ export type StoreValue = number | string | string[] | Reference | Reference[] |
894894
class Stump extends Layer {
895895
constructor(root: EntityStore.Root);
896896
// (undocumented)
897-
merge(): any;
897+
merge(older: string | StoreObject, newer: string | StoreObject): void;
898898
// (undocumented)
899899
removeLayer(): this;
900900
}

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

+15-19
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ namespace Cache_2 {
298298
// (undocumented)
299299
interface BatchOptions<TCache extends ApolloCache<any>, TUpdateResult = void> {
300300
// (undocumented)
301-
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff: Cache_2.DiffResult<any> | undefined) => any;
301+
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff?: Cache_2.DiffResult<any> | undefined) => any;
302302
// (undocumented)
303303
optimistic?: string | boolean;
304304
// (undocumented)
@@ -433,7 +433,7 @@ class Concast<T> extends Observable<T> {
433433
// (undocumented)
434434
cancel: (reason: any) => void;
435435
// (undocumented)
436-
readonly promise: Promise<T>;
436+
readonly promise: Promise<T | undefined>;
437437
// (undocumented)
438438
removeObserver(observer: Observer<T>): void;
439439
}
@@ -929,8 +929,6 @@ export class HttpLink extends ApolloLink {
929929
constructor(options?: HttpOptions);
930930
// (undocumented)
931931
options: HttpOptions;
932-
// (undocumented)
933-
requester: RequestHandler;
934932
}
935933

936934
// @public (undocumented)
@@ -1164,15 +1162,13 @@ class LocalState<TCacheShape> {
11641162
// Warning: (ae-forgotten-export) The symbol "LocalStateOptions" needs to be exported by the entry point index.d.ts
11651163
constructor({ cache, client, resolvers, fragmentMatcher, }: LocalStateOptions<TCacheShape>);
11661164
// (undocumented)
1167-
addExportedVariables(document: DocumentNode, variables?: OperationVariables, context?: {}): Promise<{
1168-
[x: string]: any;
1169-
}>;
1165+
addExportedVariables<TVars extends OperationVariables>(document: DocumentNode, variables?: TVars, context?: {}): Promise<TVars>;
11701166
// (undocumented)
11711167
addResolvers(resolvers: Resolvers | Resolvers[]): void;
11721168
// (undocumented)
11731169
clientQuery(document: DocumentNode): DocumentNode | null;
11741170
// (undocumented)
1175-
getFragmentMatcher(): FragmentMatcher;
1171+
getFragmentMatcher(): FragmentMatcher | undefined;
11761172
// (undocumented)
11771173
getResolvers(): Resolvers;
11781174
// (undocumented)
@@ -1553,7 +1549,7 @@ export type OptimisticStoreItem = {
15531549
};
15541550

15551551
// @public (undocumented)
1556-
type OptionsUnion<TData, TVariables extends OperationVariables, TContext> = WatchQueryOptions<TVariables, TData> | QueryOptions<TVariables, TData> | MutationOptions<TData, TVariables, TContext>;
1552+
type OptionsUnion<TData, TVariables extends OperationVariables, TContext> = WatchQueryOptions<TVariables, TData> | QueryOptions<TVariables, TData> | MutationOptions<TData, TVariables, TContext, any>;
15571553

15581554
// @public (undocumented)
15591555
export function parseAndCheckHttpResponse(operations: Operation | Operation[]): (response: Response) => Promise<any>;
@@ -1633,7 +1629,7 @@ class QueryInfo {
16331629
document: DocumentNode;
16341630
variables: Record<string, any> | undefined;
16351631
networkStatus?: NetworkStatus;
1636-
observableQuery?: ObservableQuery<any>;
1632+
observableQuery?: ObservableQuery<any, any>;
16371633
lastRequestId?: number;
16381634
}): this;
16391635
// (undocumented)
@@ -1655,7 +1651,7 @@ class QueryInfo {
16551651
// (undocumented)
16561652
notify(): void;
16571653
// (undocumented)
1658-
readonly observableQuery: ObservableQuery<any> | null;
1654+
readonly observableQuery: ObservableQuery<any, any> | null;
16591655
// (undocumented)
16601656
readonly queryId: string;
16611657
// (undocumented)
@@ -1665,7 +1661,7 @@ class QueryInfo {
16651661
// (undocumented)
16661662
setDiff(diff: Cache_2.DiffResult<any> | null): void;
16671663
// (undocumented)
1668-
setObservableQuery(oq: ObservableQuery<any> | null): void;
1664+
setObservableQuery(oq: ObservableQuery<any, any> | null): void;
16691665
// (undocumented)
16701666
stop(): void;
16711667
// (undocumented)
@@ -1939,7 +1935,7 @@ export interface Resolvers {
19391935
//
19401936
// @public (undocumented)
19411937
export function rewriteURIForGET(chosenURI: string, body: Body_2): {
1942-
parseError: any;
1938+
parseError: unknown;
19431939
newURI?: undefined;
19441940
} | {
19451941
newURI: string;
@@ -2022,7 +2018,7 @@ export type StoreValue = number | string | string[] | Reference | Reference[] |
20222018
class Stump extends Layer {
20232019
constructor(root: EntityStore.Root);
20242020
// (undocumented)
2025-
merge(): any;
2021+
merge(older: string | StoreObject, newer: string | StoreObject): void;
20262022
// (undocumented)
20272023
removeLayer(): this;
20282024
}
@@ -2186,11 +2182,11 @@ interface WriteContext extends ReadMergeModifyContext {
21862182
// src/cache/inmemory/policies.ts:167:3 - (ae-forgotten-export) The symbol "KeySpecifier" needs to be exported by the entry point index.d.ts
21872183
// src/cache/inmemory/policies.ts:167:3 - (ae-forgotten-export) The symbol "KeyArgsFunction" needs to be exported by the entry point index.d.ts
21882184
// src/cache/inmemory/types.ts:126:3 - (ae-forgotten-export) The symbol "KeyFieldsFunction" needs to be exported by the entry point index.d.ts
2189-
// src/core/ObservableQuery.ts:112:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
2190-
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
2191-
// src/core/QueryManager.ts:116:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
2192-
// src/core/QueryManager.ts:149:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
2193-
// src/core/QueryManager.ts:378:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
2185+
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
2186+
// src/core/ObservableQuery.ts:114:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
2187+
// src/core/QueryManager.ts:117:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
2188+
// src/core/QueryManager.ts:150:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
2189+
// src/core/QueryManager.ts:379:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
21942190
// src/core/watchQueryOptions.ts:191:3 - (ae-forgotten-export) The symbol "UpdateQueryFn" needs to be exported by the entry point index.d.ts
21952191
// src/link/http/selectHttpOptionsAndBody.ts:128:32 - (ae-forgotten-export) The symbol "HttpQueryOptions" needs to be exported by the entry point index.d.ts
21962192

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,6 @@ export class HttpLink extends ApolloLink {
181181
constructor(options?: HttpOptions);
182182
// (undocumented)
183183
options: HttpOptions;
184-
// (undocumented)
185-
requester: RequestHandler;
186184
}
187185

188186
// @public (undocumented)
@@ -278,7 +276,7 @@ type RequestHandler = (operation: Operation, forward: NextLink) => Observable<Fe
278276
//
279277
// @public (undocumented)
280278
export function rewriteURIForGET(chosenURI: string, body: Body_2): {
281-
parseError: any;
279+
parseError: unknown;
282280
newURI?: undefined;
283281
} | {
284282
newURI: string;

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

+14-16
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ namespace Cache_2 {
419419
// (undocumented)
420420
interface BatchOptions<TCache extends ApolloCache<any>, TUpdateResult = void> {
421421
// (undocumented)
422-
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff: Cache_2.DiffResult<any> | undefined) => any;
422+
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff?: Cache_2.DiffResult<any> | undefined) => any;
423423
// (undocumented)
424424
optimistic?: string | boolean;
425425
// (undocumented)
@@ -552,7 +552,7 @@ class Concast<T> extends Observable<T> {
552552
// (undocumented)
553553
cancel: (reason: any) => void;
554554
// (undocumented)
555-
readonly promise: Promise<T>;
555+
readonly promise: Promise<T | undefined>;
556556
// (undocumented)
557557
removeObserver(observer: Observer<T>): void;
558558
}
@@ -1021,15 +1021,13 @@ class LocalState<TCacheShape> {
10211021
// Warning: (ae-forgotten-export) The symbol "LocalStateOptions" needs to be exported by the entry point index.d.ts
10221022
constructor({ cache, client, resolvers, fragmentMatcher, }: LocalStateOptions<TCacheShape>);
10231023
// (undocumented)
1024-
addExportedVariables(document: DocumentNode, variables?: OperationVariables, context?: {}): Promise<{
1025-
[x: string]: any;
1026-
}>;
1024+
addExportedVariables<TVars extends OperationVariables>(document: DocumentNode, variables?: TVars, context?: {}): Promise<TVars>;
10271025
// (undocumented)
10281026
addResolvers(resolvers: Resolvers | Resolvers[]): void;
10291027
// (undocumented)
10301028
clientQuery(document: DocumentNode): DocumentNode | null;
10311029
// (undocumented)
1032-
getFragmentMatcher(): FragmentMatcher;
1030+
getFragmentMatcher(): FragmentMatcher | undefined;
10331031
// (undocumented)
10341032
getResolvers(): Resolvers;
10351033
// (undocumented)
@@ -1452,7 +1450,7 @@ class QueryInfo {
14521450
document: DocumentNode;
14531451
variables: Record<string, any> | undefined;
14541452
networkStatus?: NetworkStatus;
1455-
observableQuery?: ObservableQuery<any>;
1453+
observableQuery?: ObservableQuery<any, any>;
14561454
lastRequestId?: number;
14571455
}): this;
14581456
// (undocumented)
@@ -1476,7 +1474,7 @@ class QueryInfo {
14761474
// (undocumented)
14771475
notify(): void;
14781476
// (undocumented)
1479-
readonly observableQuery: ObservableQuery<any> | null;
1477+
readonly observableQuery: ObservableQuery<any, any> | null;
14801478
// (undocumented)
14811479
readonly queryId: string;
14821480
// (undocumented)
@@ -1486,7 +1484,7 @@ class QueryInfo {
14861484
// (undocumented)
14871485
setDiff(diff: Cache_2.DiffResult<any> | null): void;
14881486
// (undocumented)
1489-
setObservableQuery(oq: ObservableQuery<any> | null): void;
1487+
setObservableQuery(oq: ObservableQuery<any, any> | null): void;
14901488
// (undocumented)
14911489
stop(): void;
14921490
// (undocumented)
@@ -2206,18 +2204,18 @@ interface WatchQueryOptions<TVariables extends OperationVariables = OperationVar
22062204
// src/cache/core/types/common.ts:100:3 - (ae-forgotten-export) The symbol "StorageType" needs to be exported by the entry point index.d.ts
22072205
// src/core/ApolloClient.ts:47:3 - (ae-forgotten-export) The symbol "UriFunction" needs to be exported by the entry point index.d.ts
22082206
// src/core/LocalState.ts:46:5 - (ae-forgotten-export) The symbol "FragmentMap" needs to be exported by the entry point index.d.ts
2209-
// src/core/ObservableQuery.ts:112:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
2210-
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
2211-
// src/core/QueryManager.ts:116:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
2212-
// src/core/QueryManager.ts:149:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
2213-
// src/core/QueryManager.ts:378:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
2207+
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
2208+
// src/core/ObservableQuery.ts:114:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
2209+
// src/core/QueryManager.ts:117:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
2210+
// src/core/QueryManager.ts:150:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
2211+
// src/core/QueryManager.ts:379:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
22142212
// src/core/types.ts:158:3 - (ae-forgotten-export) The symbol "ApolloError" needs to be exported by the entry point index.d.ts
22152213
// src/core/types.ts:160:3 - (ae-forgotten-export) The symbol "NetworkStatus" needs to be exported by the entry point index.d.ts
22162214
// src/core/types.ts:178:3 - (ae-forgotten-export) The symbol "MutationQueryReducer" needs to be exported by the entry point index.d.ts
22172215
// src/core/types.ts:205:5 - (ae-forgotten-export) The symbol "Resolver" needs to be exported by the entry point index.d.ts
22182216
// src/core/watchQueryOptions.ts:191:3 - (ae-forgotten-export) The symbol "UpdateQueryFn" needs to be exported by the entry point index.d.ts
2219-
// src/react/hooks/useBackgroundQuery.ts:24:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
2220-
// src/react/hooks/useBackgroundQuery.ts:25:3 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
2217+
// src/react/hooks/useBackgroundQuery.ts:26:3 - (ae-forgotten-export) The symbol "FetchMoreFunction" needs to be exported by the entry point index.d.ts
2218+
// src/react/hooks/useBackgroundQuery.ts:27:3 - (ae-forgotten-export) The symbol "RefetchFunction" needs to be exported by the entry point index.d.ts
22212219
// src/utilities/graphql/DocumentTransform.ts:122:7 - (ae-forgotten-export) The symbol "DocumentTransformCacheKey" needs to be exported by the entry point index.d.ts
22222220

22232221
// (No @packageDocumentation comment for this package)

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

+12-14
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ namespace Cache_2 {
370370
// (undocumented)
371371
interface BatchOptions<TCache extends ApolloCache<any>, TUpdateResult = void> {
372372
// (undocumented)
373-
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff: Cache_2.DiffResult<any> | undefined) => any;
373+
onWatchUpdated?: (this: TCache, watch: Cache_2.WatchOptions, diff: Cache_2.DiffResult<any>, lastDiff?: Cache_2.DiffResult<any> | undefined) => any;
374374
// (undocumented)
375375
optimistic?: string | boolean;
376376
// (undocumented)
@@ -491,7 +491,7 @@ class Concast<T> extends Observable<T> {
491491
// (undocumented)
492492
cancel: (reason: any) => void;
493493
// (undocumented)
494-
readonly promise: Promise<T>;
494+
readonly promise: Promise<T | undefined>;
495495
// (undocumented)
496496
removeObserver(observer: Observer<T>): void;
497497
}
@@ -819,15 +819,13 @@ class LocalState<TCacheShape> {
819819
// Warning: (ae-forgotten-export) The symbol "LocalStateOptions" needs to be exported by the entry point index.d.ts
820820
constructor({ cache, client, resolvers, fragmentMatcher, }: LocalStateOptions<TCacheShape>);
821821
// (undocumented)
822-
addExportedVariables(document: DocumentNode, variables?: OperationVariables, context?: {}): Promise<{
823-
[x: string]: any;
824-
}>;
822+
addExportedVariables<TVars extends OperationVariables>(document: DocumentNode, variables?: TVars, context?: {}): Promise<TVars>;
825823
// (undocumented)
826824
addResolvers(resolvers: Resolvers | Resolvers[]): void;
827825
// (undocumented)
828826
clientQuery(document: DocumentNode): DocumentNode | null;
829827
// (undocumented)
830-
getFragmentMatcher(): FragmentMatcher;
828+
getFragmentMatcher(): FragmentMatcher | undefined;
831829
// (undocumented)
832830
getResolvers(): Resolvers;
833831
// (undocumented)
@@ -1256,7 +1254,7 @@ class QueryInfo {
12561254
document: DocumentNode;
12571255
variables: Record<string, any> | undefined;
12581256
networkStatus?: NetworkStatus;
1259-
observableQuery?: ObservableQuery<any>;
1257+
observableQuery?: ObservableQuery<any, any>;
12601258
lastRequestId?: number;
12611259
}): this;
12621260
// (undocumented)
@@ -1280,7 +1278,7 @@ class QueryInfo {
12801278
// (undocumented)
12811279
notify(): void;
12821280
// (undocumented)
1283-
readonly observableQuery: ObservableQuery<any> | null;
1281+
readonly observableQuery: ObservableQuery<any, any> | null;
12841282
// (undocumented)
12851283
readonly queryId: string;
12861284
// (undocumented)
@@ -1290,7 +1288,7 @@ class QueryInfo {
12901288
// (undocumented)
12911289
setDiff(diff: Cache_2.DiffResult<any> | null): void;
12921290
// (undocumented)
1293-
setObservableQuery(oq: ObservableQuery<any> | null): void;
1291+
setObservableQuery(oq: ObservableQuery<any, any> | null): void;
12941292
// (undocumented)
12951293
stop(): void;
12961294
// (undocumented)
@@ -1738,11 +1736,11 @@ interface WatchQueryOptions<TVariables extends OperationVariables = OperationVar
17381736
// src/cache/core/types/common.ts:100:3 - (ae-forgotten-export) The symbol "StorageType" needs to be exported by the entry point index.d.ts
17391737
// src/core/ApolloClient.ts:47:3 - (ae-forgotten-export) The symbol "UriFunction" needs to be exported by the entry point index.d.ts
17401738
// src/core/LocalState.ts:46:5 - (ae-forgotten-export) The symbol "FragmentMap" needs to be exported by the entry point index.d.ts
1741-
// src/core/ObservableQuery.ts:112:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
1742-
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
1743-
// src/core/QueryManager.ts:116:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
1744-
// src/core/QueryManager.ts:149:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
1745-
// src/core/QueryManager.ts:378:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
1739+
// src/core/ObservableQuery.ts:113:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
1740+
// src/core/ObservableQuery.ts:114:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
1741+
// src/core/QueryManager.ts:117:5 - (ae-forgotten-export) The symbol "MutationStoreValue" needs to be exported by the entry point index.d.ts
1742+
// src/core/QueryManager.ts:150:5 - (ae-forgotten-export) The symbol "LocalState" needs to be exported by the entry point index.d.ts
1743+
// src/core/QueryManager.ts:379:7 - (ae-forgotten-export) The symbol "UpdateQueries" needs to be exported by the entry point index.d.ts
17461744
// src/core/types.ts:158:3 - (ae-forgotten-export) The symbol "ApolloError" needs to be exported by the entry point index.d.ts
17471745
// src/core/types.ts:160:3 - (ae-forgotten-export) The symbol "NetworkStatus" needs to be exported by the entry point index.d.ts
17481746
// src/core/types.ts:178:3 - (ae-forgotten-export) The symbol "MutationQueryReducer" needs to be exported by the entry point index.d.ts

0 commit comments

Comments
 (0)