@refinedev/devtools-internal 1.1.11 → 1.1.12
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/clean-stack.d.mts.map +3 -1
- package/dist/constants.d.mts.map +2 -1
- package/dist/create-identifier.d.mts.map +4 -1
- package/dist/get-package-name-from-filename.d.mts.map +2 -1
- package/dist/get-resource-path.d.mts.map +4 -1
- package/dist/get-trace.d.mts.map +3 -1
- package/dist/get-xray.d.mts.map +10 -1
- package/dist/index.d.mts.map +4 -1
- package/dist/is-refine-stack.d.mts.map +2 -1
- package/dist/listeners.d.mts.map +4 -1
- package/dist/use-query-subscription.d.mts.map +3 -1
- package/package.json +2 -2
|
@@ -1 +1,3 @@
|
|
|
1
|
-
{"
|
|
1
|
+
import type { StackFrame } from "error-stack-parser";
|
|
2
|
+
export declare const cleanStack: (stack: StackFrame[]) => StackFrame[];
|
|
3
|
+
//# sourceMappingURL=clean-stack.d.ts.map
|
package/dist/constants.d.mts.map
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export declare const REFINE_PACKAGE_FILEPATH_REGEXP: RegExp;
|
|
2
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1,4 @@
|
|
|
1
|
-
{"
|
|
1
|
+
import type { TraceType } from "@refinedev/devtools-shared";
|
|
2
|
+
import type { MutationKey, QueryKey } from "@tanstack/react-query";
|
|
3
|
+
export declare const createIdentifier: (key?: QueryKey | MutationKey, trace?: TraceType[]) => string;
|
|
4
|
+
//# sourceMappingURL=create-identifier.d.ts.map
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export declare const getPackageNameFromFilename: (filename?: string) => string | undefined;
|
|
2
|
+
//# sourceMappingURL=get-package-name-from-filename.d.ts.map
|
|
@@ -1 +1,4 @@
|
|
|
1
|
-
{
|
|
1
|
+
import { type DevtoolsEvent, type DevtoolsEventPayloads, type RefineHook } from "@refinedev/devtools-shared";
|
|
2
|
+
export type Activity = DevtoolsEventPayloads[DevtoolsEvent.DEVTOOLS_ACTIVITY_UPDATE]["updatedActivities"][number];
|
|
3
|
+
export declare const getResourcePath: (hookName: RefineHook, legacyKey: boolean) => string | null;
|
|
4
|
+
//# sourceMappingURL=get-resource-path.d.ts.map
|
package/dist/get-trace.d.mts.map
CHANGED
|
@@ -1 +1,3 @@
|
|
|
1
|
-
{"
|
|
1
|
+
import type { TraceType } from "@refinedev/devtools-shared";
|
|
2
|
+
export declare function getTrace(excludeFromTrace?: string[]): TraceType[];
|
|
3
|
+
//# sourceMappingURL=get-trace.d.ts.map
|
package/dist/get-xray.d.mts.map
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
{"
|
|
1
|
+
import type { TraceType } from "@refinedev/devtools-shared";
|
|
2
|
+
export type XRayResponse = {
|
|
3
|
+
hookName: string;
|
|
4
|
+
trace: TraceType[];
|
|
5
|
+
resourcePath: string | null;
|
|
6
|
+
legacyKey: boolean;
|
|
7
|
+
resourceName?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare function getXRay(hookName: string, legacyKey: boolean, resourceName?: string, excludeFromTrace?: string[]): XRayResponse;
|
|
10
|
+
//# sourceMappingURL=get-xray.d.ts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1,4 @@
|
|
|
1
|
-
{"
|
|
1
|
+
export { getTrace } from "./get-trace.js";
|
|
2
|
+
export { getXRay } from "./get-xray.js";
|
|
3
|
+
export { useQuerySubscription } from "./use-query-subscription.js";
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export declare const isRefineStack: (filename?: string) => boolean;
|
|
2
|
+
//# sourceMappingURL=is-refine-stack.d.ts.map
|
package/dist/listeners.d.mts.map
CHANGED
|
@@ -1 +1,4 @@
|
|
|
1
|
-
{
|
|
1
|
+
import type { Mutation, Query } from "@tanstack/react-query";
|
|
2
|
+
export declare const createMutationListener: (ws: WebSocket) => (mutation?: Mutation) => void;
|
|
3
|
+
export declare const createQueryListener: (ws: WebSocket) => (query: Query) => void;
|
|
4
|
+
//# sourceMappingURL=listeners.d.ts.map
|
|
@@ -1 +1,3 @@
|
|
|
1
|
-
{"
|
|
1
|
+
import type { QueryClient } from "@tanstack/react-query";
|
|
2
|
+
export declare const useQuerySubscription: (queryClient: QueryClient) => {};
|
|
3
|
+
//# sourceMappingURL=use-query-subscription.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinedev/devtools-internal",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "refine devtools offers a set of features from monitoring to quickly prototyping a UI.",
|
|
6
6
|
"repository": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"src"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@refinedev/devtools-shared": "1.1.
|
|
34
|
+
"@refinedev/devtools-shared": "1.1.10",
|
|
35
35
|
"@tanstack/react-query": "^4.10.1",
|
|
36
36
|
"error-stack-parser": "^2.1.4"
|
|
37
37
|
},
|