Skip to content

Commit 9948c88

Browse files
committed
Rerun api report
1 parent 1223786 commit 9948c88

11 files changed

+110
-242
lines changed

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

+7-19
Original file line numberDiff line numberDiff line change
@@ -1469,10 +1469,16 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
14691469
}>;
14701470

14711471
// @public (undocumented)
1472-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1472+
export type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1473+
1474+
// @public (undocumented)
1475+
export interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
14731476
awaitRefetchQueries?: boolean;
14741477
context?: TContext;
14751478
errorPolicy?: ErrorPolicy;
1479+
fetchPolicy?: MutationFetchPolicy;
1480+
keepRootFields?: boolean;
1481+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
14761482
onQueryUpdated?: OnQueryUpdated<any>;
14771483
// Warning: (ae-forgotten-export) The symbol "NoInfer_2" needs to be exported by the entry point index.d.ts
14781484
// Warning: (ae-forgotten-export) The symbol "IgnoreModifier" needs to be exported by the entry point index.d.ts
@@ -1485,16 +1491,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
14851491
variables?: TVariables;
14861492
}
14871493

1488-
// @public (undocumented)
1489-
export type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1490-
1491-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1492-
//
1493-
// @public (undocumented)
1494-
export interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1495-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1496-
}
1497-
14981494
// @public (undocumented)
14991495
export type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
15001496
mutationResult: FetchResult<Unmasked<T>>;
@@ -1509,14 +1505,6 @@ export type MutationQueryReducersMap<T = {
15091505
[queryName: string]: MutationQueryReducer<T>;
15101506
};
15111507

1512-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1513-
//
1514-
// @public (undocumented)
1515-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1516-
fetchPolicy?: MutationFetchPolicy;
1517-
keepRootFields?: boolean;
1518-
}
1519-
15201508
// @public (undocumented)
15211509
interface MutationStoreValue {
15221510
// (undocumented)

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

+16-28
Original file line numberDiff line numberDiff line change
@@ -1099,12 +1099,27 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
10991099
[FieldName in keyof T]: Modifier<StoreObjectValueMaybeReference<Exclude<T[FieldName], undefined>>>;
11001100
}>;
11011101

1102+
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1103+
//
11021104
// @public (undocumented)
1103-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1105+
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1106+
1107+
// @public @deprecated (undocumented)
1108+
export type MutationFunctionOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> = useMutation.MutationFunctionOptions<TData, TVariables, TContext, TCache>;
1109+
1110+
// @public @deprecated (undocumented)
1111+
export type MutationHookOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> = useMutation.Options<TData, TVariables, TContext, TCache>;
1112+
1113+
// @public (undocumented)
1114+
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
11041115
awaitRefetchQueries?: boolean;
11051116
context?: TContext;
11061117
// Warning: (ae-forgotten-export) The symbol "ErrorPolicy" needs to be exported by the entry point index.d.ts
11071118
errorPolicy?: ErrorPolicy;
1119+
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1120+
fetchPolicy?: MutationFetchPolicy;
1121+
keepRootFields?: boolean;
1122+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
11081123
// Warning: (ae-forgotten-export) The symbol "OnQueryUpdated" needs to be exported by the entry point index.d.ts
11091124
onQueryUpdated?: OnQueryUpdated<any>;
11101125
// Warning: (ae-forgotten-export) The symbol "IgnoreModifier" needs to be exported by the entry point index.d.ts
@@ -1119,24 +1134,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
11191134
variables?: TVariables;
11201135
}
11211136

1122-
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1123-
//
1124-
// @public (undocumented)
1125-
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1126-
1127-
// @public @deprecated (undocumented)
1128-
export type MutationFunctionOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> = useMutation.MutationFunctionOptions<TData, TVariables, TContext, TCache>;
1129-
1130-
// @public @deprecated (undocumented)
1131-
export type MutationHookOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> = useMutation.Options<TData, TVariables, TContext, TCache>;
1132-
1133-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1134-
//
1135-
// @public (undocumented)
1136-
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1137-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1138-
}
1139-
11401137
// @public (undocumented)
11411138
type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
11421139
mutationResult: FetchResult<Unmasked<T>>;
@@ -1154,15 +1151,6 @@ type MutationQueryReducersMap<T = {
11541151
// @public @deprecated (undocumented)
11551152
export type MutationResult<TData = unknown> = useMutation.Result<TData>;
11561153

1157-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1158-
//
1159-
// @public (undocumented)
1160-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1161-
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1162-
fetchPolicy?: MutationFetchPolicy;
1163-
keepRootFields?: boolean;
1164-
}
1165-
11661154
// @public (undocumented)
11671155
interface MutationStoreValue {
11681156
// (undocumented)

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

+10-22
Original file line numberDiff line numberDiff line change
@@ -1030,12 +1030,21 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
10301030
[FieldName in keyof T]: Modifier<StoreObjectValueMaybeReference<Exclude<T[FieldName], undefined>>>;
10311031
}>;
10321032

1033+
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1034+
//
10331035
// @public (undocumented)
1034-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1036+
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1037+
1038+
// @public (undocumented)
1039+
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
10351040
awaitRefetchQueries?: boolean;
10361041
context?: TContext;
10371042
// Warning: (ae-forgotten-export) The symbol "ErrorPolicy" needs to be exported by the entry point index.d.ts
10381043
errorPolicy?: ErrorPolicy;
1044+
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1045+
fetchPolicy?: MutationFetchPolicy;
1046+
keepRootFields?: boolean;
1047+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
10391048
// Warning: (ae-forgotten-export) The symbol "OnQueryUpdated" needs to be exported by the entry point index.d.ts
10401049
onQueryUpdated?: OnQueryUpdated<any>;
10411050
// Warning: (ae-forgotten-export) The symbol "NoInfer_2" needs to be exported by the entry point index.d.ts
@@ -1051,18 +1060,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
10511060
variables?: TVariables;
10521061
}
10531062

1054-
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1055-
//
1056-
// @public (undocumented)
1057-
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1058-
1059-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1060-
//
1061-
// @public (undocumented)
1062-
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1063-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1064-
}
1065-
10661063
// @public (undocumented)
10671064
type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
10681065
mutationResult: FetchResult<Unmasked<T>>;
@@ -1077,15 +1074,6 @@ type MutationQueryReducersMap<T = {
10771074
[queryName: string]: MutationQueryReducer<T>;
10781075
};
10791076

1080-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1081-
//
1082-
// @public (undocumented)
1083-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1084-
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1085-
fetchPolicy?: MutationFetchPolicy;
1086-
keepRootFields?: boolean;
1087-
}
1088-
10891077
// @public (undocumented)
10901078
interface MutationStoreValue {
10911079
// (undocumented)

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

+10-22
Original file line numberDiff line numberDiff line change
@@ -1002,12 +1002,21 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
10021002
[FieldName in keyof T]: Modifier<StoreObjectValueMaybeReference<Exclude<T[FieldName], undefined>>>;
10031003
}>;
10041004

1005+
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1006+
//
10051007
// @public (undocumented)
1006-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1008+
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1009+
1010+
// @public (undocumented)
1011+
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
10071012
awaitRefetchQueries?: boolean;
10081013
context?: TContext;
10091014
// Warning: (ae-forgotten-export) The symbol "ErrorPolicy" needs to be exported by the entry point index.d.ts
10101015
errorPolicy?: ErrorPolicy;
1016+
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1017+
fetchPolicy?: MutationFetchPolicy;
1018+
keepRootFields?: boolean;
1019+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
10111020
// Warning: (ae-forgotten-export) The symbol "OnQueryUpdated" needs to be exported by the entry point index.d.ts
10121021
onQueryUpdated?: OnQueryUpdated<any>;
10131022
// Warning: (ae-forgotten-export) The symbol "IgnoreModifier" needs to be exported by the entry point index.d.ts
@@ -1022,18 +1031,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
10221031
variables?: TVariables;
10231032
}
10241033

1025-
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1026-
//
1027-
// @public (undocumented)
1028-
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1029-
1030-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1031-
//
1032-
// @public (undocumented)
1033-
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1034-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1035-
}
1036-
10371034
// @public (undocumented)
10381035
type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
10391036
mutationResult: FetchResult<Unmasked<T>>;
@@ -1048,15 +1045,6 @@ type MutationQueryReducersMap<T = {
10481045
[queryName: string]: MutationQueryReducer<T>;
10491046
};
10501047

1051-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1052-
//
1053-
// @public (undocumented)
1054-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1055-
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1056-
fetchPolicy?: MutationFetchPolicy;
1057-
keepRootFields?: boolean;
1058-
}
1059-
10601048
// @public (undocumented)
10611049
interface MutationStoreValue {
10621050
// (undocumented)

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

+10-22
Original file line numberDiff line numberDiff line change
@@ -1157,12 +1157,21 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
11571157
[FieldName in keyof T]: Modifier<StoreObjectValueMaybeReference<Exclude<T[FieldName], undefined>>>;
11581158
}>;
11591159

1160+
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1161+
//
11601162
// @public (undocumented)
1161-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1163+
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1164+
1165+
// @public (undocumented)
1166+
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
11621167
awaitRefetchQueries?: boolean;
11631168
context?: TContext;
11641169
// Warning: (ae-forgotten-export) The symbol "ErrorPolicy" needs to be exported by the entry point index.d.ts
11651170
errorPolicy?: ErrorPolicy;
1171+
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1172+
fetchPolicy?: MutationFetchPolicy;
1173+
keepRootFields?: boolean;
1174+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
11661175
// Warning: (ae-forgotten-export) The symbol "OnQueryUpdated" needs to be exported by the entry point index.d.ts
11671176
onQueryUpdated?: OnQueryUpdated<any>;
11681177
// Warning: (ae-forgotten-export) The symbol "IgnoreModifier" needs to be exported by the entry point index.d.ts
@@ -1177,18 +1186,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
11771186
variables?: TVariables;
11781187
}
11791188

1180-
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1181-
//
1182-
// @public (undocumented)
1183-
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1184-
1185-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1186-
//
1187-
// @public (undocumented)
1188-
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1189-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1190-
}
1191-
11921189
// @public (undocumented)
11931190
type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
11941191
mutationResult: FetchResult<Unmasked<T>>;
@@ -1203,15 +1200,6 @@ type MutationQueryReducersMap<T = {
12031200
[queryName: string]: MutationQueryReducer<T>;
12041201
};
12051202

1206-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1207-
//
1208-
// @public (undocumented)
1209-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1210-
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1211-
fetchPolicy?: MutationFetchPolicy;
1212-
keepRootFields?: boolean;
1213-
}
1214-
12151203
// @public (undocumented)
12161204
interface MutationStoreValue {
12171205
// (undocumented)

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

+10-22
Original file line numberDiff line numberDiff line change
@@ -1014,12 +1014,21 @@ type Modifiers<T extends Record<string, any> = Record<string, unknown>> = Partia
10141014
[FieldName in keyof T]: Modifier<StoreObjectValueMaybeReference<Exclude<T[FieldName], undefined>>>;
10151015
}>;
10161016

1017+
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1018+
//
10171019
// @public (undocumented)
1018-
interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
1020+
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1021+
1022+
// @public (undocumented)
1023+
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> {
10191024
awaitRefetchQueries?: boolean;
10201025
context?: TContext;
10211026
// Warning: (ae-forgotten-export) The symbol "ErrorPolicy" needs to be exported by the entry point index.d.ts
10221027
errorPolicy?: ErrorPolicy;
1028+
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1029+
fetchPolicy?: MutationFetchPolicy;
1030+
keepRootFields?: boolean;
1031+
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
10231032
// Warning: (ae-forgotten-export) The symbol "OnQueryUpdated" needs to be exported by the entry point index.d.ts
10241033
onQueryUpdated?: OnQueryUpdated<any>;
10251034
// Warning: (ae-forgotten-export) The symbol "NoInfer_2" needs to be exported by the entry point index.d.ts
@@ -1035,18 +1044,6 @@ interface MutationBaseOptions<TData = unknown, TVariables = OperationVariables,
10351044
variables?: TVariables;
10361045
}
10371046

1038-
// Warning: (ae-forgotten-export) The symbol "FetchPolicy" needs to be exported by the entry point index.d.ts
1039-
//
1040-
// @public (undocumented)
1041-
type MutationFetchPolicy = Extract<FetchPolicy, "network-only" | "no-cache">;
1042-
1043-
// Warning: (ae-forgotten-export) The symbol "MutationSharedOptions" needs to be exported by the entry point index.d.ts
1044-
//
1045-
// @public (undocumented)
1046-
interface MutationOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationSharedOptions<TData, TVariables, TContext, TCache> {
1047-
mutation: DocumentNode | TypedDocumentNode<TData, TVariables>;
1048-
}
1049-
10501047
// @public (undocumented)
10511048
type MutationQueryReducer<T> = (previousResult: Record<string, any>, options: {
10521049
mutationResult: FetchResult<Unmasked<T>>;
@@ -1061,15 +1058,6 @@ type MutationQueryReducersMap<T = {
10611058
[queryName: string]: MutationQueryReducer<T>;
10621059
};
10631060

1064-
// Warning: (ae-forgotten-export) The symbol "MutationBaseOptions" needs to be exported by the entry point index.d.ts
1065-
//
1066-
// @public (undocumented)
1067-
interface MutationSharedOptions<TData = unknown, TVariables = OperationVariables, TContext = DefaultContext, TCache extends ApolloCache = ApolloCache> extends MutationBaseOptions<TData, TVariables, TContext, TCache> {
1068-
// Warning: (ae-forgotten-export) The symbol "MutationFetchPolicy" needs to be exported by the entry point index.d.ts
1069-
fetchPolicy?: MutationFetchPolicy;
1070-
keepRootFields?: boolean;
1071-
}
1072-
10731061
// @public (undocumented)
10741062
interface MutationStoreValue {
10751063
// (undocumented)

0 commit comments

Comments
 (0)