@tanstack/vue-query 5.17.0 → 5.17.2
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/vue-query",
|
|
3
|
-
"version": "5.17.
|
|
3
|
+
"version": "5.17.2",
|
|
4
4
|
"description": "Hooks for managing, caching and syncing asynchronous and remote data in Vue",
|
|
5
5
|
"author": "Damian Osipiuk",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@tanstack/match-sorter-utils": "^8.8.4",
|
|
50
50
|
"@vue/devtools-api": "^6.5.1",
|
|
51
51
|
"vue-demi": "^0.14.6",
|
|
52
|
-
"@tanstack/query-core": "5.17.
|
|
52
|
+
"@tanstack/query-core": "5.17.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@vitejs/plugin-vue": "^4.5.2",
|
|
@@ -2,7 +2,6 @@ import { vi } from 'vitest'
|
|
|
2
2
|
import type { Mock } from 'vitest'
|
|
3
3
|
|
|
4
4
|
const { useBaseQuery: originImpl, unrefQueryArgs: originalParse } =
|
|
5
|
-
// @ts-expect-error - vitest uses esmodules; tsconfig is not set to use them
|
|
6
5
|
(await vi.importActual('../useBaseQuery')) as any
|
|
7
6
|
|
|
8
7
|
export const useBaseQuery: Mock<Array<any>, any> = vi.fn(originImpl)
|