@tanstack/solid-query 5.101.1 → 5.101.3

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/solid-query",
3
- "version": "5.101.1",
3
+ "version": "5.101.3",
4
4
  "description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -46,7 +46,7 @@
46
46
  "!src/__tests__"
47
47
  ],
48
48
  "dependencies": {
49
- "@tanstack/query-core": "5.101.1"
49
+ "@tanstack/query-core": "5.101.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@solidjs/testing-library": "^0.8.10",
package/src/useQueries.ts CHANGED
@@ -142,7 +142,7 @@ type QueriesOptions<
142
142
  >
143
143
  : ReadonlyArray<unknown> extends T
144
144
  ? T
145
- : // If T is *some* array but we couldn't assign unknown[] to it, then it must hold some known/homogenous type!
145
+ : // If T is *some* array but we couldn't assign unknown[] to it, then it must hold some known/homogeneous type!
146
146
  // use this to infer the param types in the case of Array.map() argument
147
147
  T extends Array<
148
148
  UseQueryOptionsForUseQueries<