@@ -284,6 +284,26 @@ export type DefinedCreateQueryResult<
284
284
TDefinedQueryObserver = DefinedQueryObserverResult <TData , TError >,
285
285
> = MapToSignals <TDefinedQueryObserver >
286
286
287
+ // @public (undocumented)
288
+ export type DefinedInitialDataInfiniteOptions <
289
+ TQueryFnData ,
290
+ TError = DefaultError ,
291
+ TData = InfiniteData <TQueryFnData >,
292
+ TQueryKey extends QueryKey = QueryKey ,
293
+ TPageParam = unknown ,
294
+ > = CreateInfiniteQueryOptions <
295
+ TQueryFnData ,
296
+ TError ,
297
+ TData ,
298
+ TQueryFnData ,
299
+ TQueryKey ,
300
+ TPageParam
301
+ > & {
302
+ initialData:
303
+ | NonUndefinedGuard_2 <InfiniteData <TQueryFnData , TPageParam >>
304
+ | (() => NonUndefinedGuard_2 <InfiniteData <TQueryFnData , TPageParam >>)
305
+ }
306
+
287
307
// @public (undocumented)
288
308
export type DefinedInitialDataOptions <
289
309
TQueryFnData = unknown ,
@@ -296,8 +316,6 @@ export type DefinedInitialDataOptions<
296
316
| (() => NonUndefinedGuard <TQueryFnData >)
297
317
}
298
318
299
- // Warning: (ae-forgotten-export) The symbol "UndefinedInitialDataInfiniteOptions" needs to be exported by the entry point index.d.ts
300
- //
301
319
// @public
302
320
export function infiniteQueryOptions<
303
321
TQueryFnData ,
@@ -323,8 +341,6 @@ export function infiniteQueryOptions<
323
341
queryKey: DataTag <TQueryKey , InfiniteData <TQueryFnData >>
324
342
}
325
343
326
- // Warning: (ae-forgotten-export) The symbol "DefinedInitialDataInfiniteOptions" needs to be exported by the entry point index.d.ts
327
- //
328
344
// @public
329
345
export function infiniteQueryOptions<
330
346
TQueryFnData ,
@@ -632,6 +648,24 @@ export function queryOptions<
632
648
queryKey: DataTag <TQueryKey , TQueryFnData >
633
649
}
634
650
651
+ // @public (undocumented)
652
+ export type UndefinedInitialDataInfiniteOptions <
653
+ TQueryFnData ,
654
+ TError = DefaultError ,
655
+ TData = InfiniteData <TQueryFnData >,
656
+ TQueryKey extends QueryKey = QueryKey ,
657
+ TPageParam = unknown ,
658
+ > = CreateInfiniteQueryOptions <
659
+ TQueryFnData ,
660
+ TError ,
661
+ TData ,
662
+ TQueryFnData ,
663
+ TQueryKey ,
664
+ TPageParam
665
+ > & {
666
+ initialData? : undefined
667
+ }
668
+
635
669
// @public (undocumented)
636
670
export type UndefinedInitialDataOptions <
637
671
TQueryFnData = unknown ,
@@ -646,7 +680,8 @@ export * from '@tanstack/query-core'
646
680
647
681
// Warnings were encountered during analysis:
648
682
//
649
- // src/query-options.ts:27:3 - (ae-forgotten-export) The symbol "NonUndefinedGuard" needs to be exported by the entry point index.d.ts
683
+ // build/infinite-query-options.d.ts:16:5 - (ae-forgotten-export) The symbol "NonUndefinedGuard_2" needs to be exported by the entry point index.d.ts
684
+ // build/query-options.d.ts:14:5 - (ae-forgotten-export) The symbol "NonUndefinedGuard" needs to be exported by the entry point index.d.ts
650
685
651
686
// (No @packageDocumentation comment for this package)
652
687
```
0 commit comments