@tanstack/angular-query-experimental 5.74.10 → 5.74.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +2 -2
- package/package.json +3 -3
- package/src/types.ts +2 -1
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefaultError, QueryKey, OmitKeyof, QueryObserverOptions, InfiniteQueryObserverOptions, DefinedInfiniteQueryObserverResult, InfiniteQueryObserverResult, Override, MutationObserverResult, MutateFunction, DefinedQueryObserverResult,
|
|
1
|
+
import { DefaultError, QueryKey, OmitKeyof, QueryObserverOptions, InfiniteQueryObserverOptions, DefinedInfiniteQueryObserverResult, QueryObserverResult, InfiniteQueryObserverResult, Override, MutationObserverResult, MutateFunction, DefinedQueryObserverResult, QueryFunction, InitialDataFunction, SkipToken, DataTag, MutationObserverOptions, InfiniteData, QueryFilters, MutationFilters, MutationState, Mutation, QueriesPlaceholderDataFunction, ThrowOnError, QueryClient } from '@tanstack/query-core';
|
|
2
2
|
export * from '@tanstack/query-core';
|
|
3
3
|
import { Signal, Injector, Provider, InjectOptions, EnvironmentProviders } from '@angular/core';
|
|
4
4
|
import { DevtoolsButtonPosition, DevtoolsPosition, DevtoolsErrorType } from '@tanstack/query-devtools';
|
|
@@ -51,7 +51,7 @@ type DefinedCreateQueryResult<TData = unknown, TError = DefaultError, TState = D
|
|
|
51
51
|
/**
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
type CreateInfiniteQueryResult<TData = unknown, TError = DefaultError> = MapToSignals<InfiniteQueryObserverResult<TData, TError>>;
|
|
54
|
+
type CreateInfiniteQueryResult<TData = unknown, TError = DefaultError> = BaseQueryNarrowing<TData, TError> & MapToSignals<InfiniteQueryObserverResult<TData, TError>>;
|
|
55
55
|
/**
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/angular-query-experimental",
|
|
3
|
-
"version": "5.74.
|
|
3
|
+
"version": "5.74.11",
|
|
4
4
|
"description": "Signals for managing, caching and syncing asynchronous and remote data in Angular",
|
|
5
5
|
"author": "Arnoud de Vries",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"!src/__tests__"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@tanstack/query-
|
|
50
|
-
"@tanstack/query-
|
|
49
|
+
"@tanstack/query-core": "5.74.9",
|
|
50
|
+
"@tanstack/query-devtools": "5.74.7"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@angular/compiler": "^19.2.4",
|
package/src/types.ts
CHANGED
|
@@ -145,7 +145,8 @@ export type DefinedCreateQueryResult<
|
|
|
145
145
|
export type CreateInfiniteQueryResult<
|
|
146
146
|
TData = unknown,
|
|
147
147
|
TError = DefaultError,
|
|
148
|
-
> =
|
|
148
|
+
> = BaseQueryNarrowing<TData, TError> &
|
|
149
|
+
MapToSignals<InfiniteQueryObserverResult<TData, TError>>
|
|
149
150
|
|
|
150
151
|
/**
|
|
151
152
|
* @public
|