@tanstack/vue-query-devtools 5.52.0 → 5.52.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/dist/cjs/types.d.cts +2 -2
- package/dist/esm/types.d.ts +2 -2
- package/package.json +4 -4
- package/src/types.ts +2 -2
package/dist/cjs/types.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
|
|
2
2
|
import { QueryClient } from '@tanstack/vue-query';
|
|
3
3
|
|
|
4
4
|
export interface DevtoolsOptions {
|
|
@@ -25,7 +25,7 @@ export interface DevtoolsOptions {
|
|
|
25
25
|
/**
|
|
26
26
|
* Use this so you can define custom errors that can be shown in the devtools.
|
|
27
27
|
*/
|
|
28
|
-
errorTypes?: Array<
|
|
28
|
+
errorTypes?: Array<DevtoolsErrorType>;
|
|
29
29
|
/**
|
|
30
30
|
* Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles.
|
|
31
31
|
*/
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DevtoolsButtonPosition, DevtoolsErrorType, DevtoolsPosition } from '@tanstack/query-devtools';
|
|
2
2
|
import { QueryClient } from '@tanstack/vue-query';
|
|
3
3
|
|
|
4
4
|
export interface DevtoolsOptions {
|
|
@@ -25,7 +25,7 @@ export interface DevtoolsOptions {
|
|
|
25
25
|
/**
|
|
26
26
|
* Use this so you can define custom errors that can be shown in the devtools.
|
|
27
27
|
*/
|
|
28
|
-
errorTypes?: Array<
|
|
28
|
+
errorTypes?: Array<DevtoolsErrorType>;
|
|
29
29
|
/**
|
|
30
30
|
* Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles.
|
|
31
31
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/vue-query-devtools",
|
|
3
|
-
"version": "5.52.
|
|
3
|
+
"version": "5.52.3",
|
|
4
4
|
"description": "Developer tools to interact with and visualize the TanStack/vue-query cache",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"src"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@tanstack/query-devtools": "5.
|
|
42
|
+
"@tanstack/query-devtools": "5.52.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vitejs/plugin-vue": "^5.1.1",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"vite": "^5.3.5",
|
|
48
48
|
"vue": "^3.4.27",
|
|
49
49
|
"vue-tsc": "^2.0.26",
|
|
50
|
-
"@tanstack/vue-query": "5.52.
|
|
50
|
+
"@tanstack/vue-query": "5.52.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"vue": "^3.3.0",
|
|
54
|
-
"@tanstack/vue-query": "^5.52.
|
|
54
|
+
"@tanstack/vue-query": "^5.52.3"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {}
|
|
57
57
|
}
|
package/src/types.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
DevToolsErrorType,
|
|
3
2
|
DevtoolsButtonPosition,
|
|
3
|
+
DevtoolsErrorType,
|
|
4
4
|
DevtoolsPosition,
|
|
5
5
|
} from '@tanstack/query-devtools'
|
|
6
6
|
import type { QueryClient } from '@tanstack/vue-query'
|
|
@@ -29,7 +29,7 @@ export interface DevtoolsOptions {
|
|
|
29
29
|
/**
|
|
30
30
|
* Use this so you can define custom errors that can be shown in the devtools.
|
|
31
31
|
*/
|
|
32
|
-
errorTypes?: Array<
|
|
32
|
+
errorTypes?: Array<DevtoolsErrorType>
|
|
33
33
|
/**
|
|
34
34
|
* Use this to pass a nonce to the style tag that is added to the document head. This is useful if you are using a Content Security Policy (CSP) nonce to allow inline styles.
|
|
35
35
|
*/
|