Skip to content

Commit

Permalink
Update size limit and API report
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Nov 15, 2024
1 parent d6bf943 commit b4adb66
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .api-reports/api-report-react.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2251,7 +2251,7 @@ export interface UseFragmentOptions<TData, TVars> extends Omit<Cache_2.DiffOptio
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
//
// (undocumented)
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string;
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string | null;
// (undocumented)
optimistic?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion .api-reports/api-report-react_hooks.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2075,7 +2075,7 @@ export interface UseFragmentOptions<TData, TVars> extends Omit<Cache_2.DiffOptio
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
//
// (undocumented)
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string;
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string | null;
// (undocumented)
optimistic?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion .api-reports/api-report-react_internal.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,7 @@ interface UseFragmentOptions<TData, TVars> extends Omit<Cache_2.DiffOptions<NoIn
// Warning: (ae-forgotten-export) The symbol "FragmentType" needs to be exported by the entry point index.d.ts
//
// (undocumented)
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string;
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string | null;
// (undocumented)
optimistic?: boolean;
}
Expand Down
2 changes: 1 addition & 1 deletion .api-reports/api-report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2924,7 +2924,7 @@ export function useFragment<TData = any, TVars = OperationVariables>(options: Us
export interface UseFragmentOptions<TData, TVars> extends Omit<Cache_2.DiffOptions<NoInfer_2<TData>, NoInfer_2<TVars>>, "id" | "query" | "optimistic" | "previousResult" | "returnPartialData">, Omit<Cache_2.ReadFragmentOptions<TData, TVars>, "id" | "variables" | "returnPartialData"> {
client?: ApolloClient<any>;
// (undocumented)
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string;
from: StoreObject | Reference | FragmentType<NoInfer_2<TData>> | string | null;
// (undocumented)
optimistic?: boolean;
}
Expand Down
4 changes: 2 additions & 2 deletions .size-limits.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"dist/apollo-client.min.cjs": 41573,
"import { ApolloClient, InMemoryCache, HttpLink } from \"dist/index.js\" (production)": 34361
"dist/apollo-client.min.cjs": 41601,
"import { ApolloClient, InMemoryCache, HttpLink } from \"dist/index.js\" (production)": 34359
}

0 comments on commit b4adb66

Please sign in to comment.