@tanstack/svelte-query 6.1.36 → 6.1.38
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/svelte-query",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.38",
|
|
4
4
|
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Svelte",
|
|
5
5
|
"author": "Lachlan Collins",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"!src/__tests__"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@tanstack/query-core": "5.101.
|
|
42
|
+
"@tanstack/query-core": "5.101.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@sveltejs/package": "^2.4.0",
|
|
@@ -144,7 +144,7 @@ export type QueriesOptions<
|
|
|
144
144
|
>
|
|
145
145
|
: ReadonlyArray<unknown> extends T
|
|
146
146
|
? T
|
|
147
|
-
: // If T is *some* array but we couldn't assign unknown[] to it, then it must hold some known/
|
|
147
|
+
: // If T is *some* array but we couldn't assign unknown[] to it, then it must hold some known/homogeneous type!
|
|
148
148
|
// use this to infer the param types in the case of Array.map() argument
|
|
149
149
|
T extends Array<
|
|
150
150
|
CreateQueryOptionsForCreateQueries<
|