Debugger Continuity (FE) (#3318)
This commit is contained in:
@@ -0,0 +1,183 @@
|
||||
import { useState } from "react";
|
||||
import { useParams } from "react-router-dom";
|
||||
|
||||
import {
|
||||
Tooltip,
|
||||
TooltipContent,
|
||||
TooltipProvider,
|
||||
TooltipTrigger,
|
||||
} from "@/components/ui/tooltip";
|
||||
import { HelpTooltip } from "@/components/HelpTooltip";
|
||||
import { Label } from "@/components/ui/label";
|
||||
import { Switch } from "@/components/ui/switch";
|
||||
import { SwitchBar } from "@/components/SwitchBar";
|
||||
import { useBlockOutputStore } from "@/store/BlockOutputStore";
|
||||
import { cn, formatMs } from "@/util/utils";
|
||||
|
||||
import { CodeEditor } from "./CodeEditor";
|
||||
|
||||
type PageName = "output" | "override";
|
||||
|
||||
function BlockOutputs({
|
||||
blockLabel,
|
||||
blockOutput,
|
||||
}: {
|
||||
blockLabel: string;
|
||||
blockOutput: { [k: string]: unknown } | null;
|
||||
}) {
|
||||
const { workflowPermanentId } = useParams();
|
||||
const blockOutputStore = useBlockOutputStore();
|
||||
const [pageName, setPageName] = useState<PageName>("output");
|
||||
const [overrideHasError, setOverrideHasError] = useState(false);
|
||||
const useOverride = useBlockOutputStore((state) =>
|
||||
workflowPermanentId
|
||||
? state.useOverrides[workflowPermanentId]?.[blockLabel] ?? false
|
||||
: false,
|
||||
);
|
||||
|
||||
let createdAt: Date | null = null;
|
||||
|
||||
if (blockOutput) {
|
||||
delete blockOutput.task_id;
|
||||
delete blockOutput.status;
|
||||
delete blockOutput.failure_reason;
|
||||
delete blockOutput.errors;
|
||||
|
||||
if ("created_at" in blockOutput) {
|
||||
const _createdAt = blockOutput.created_at;
|
||||
|
||||
if (typeof _createdAt === "string") {
|
||||
// ensure UTC parsing by appending 'Z' if not present
|
||||
const utcString = _createdAt.endsWith("Z")
|
||||
? _createdAt
|
||||
: _createdAt + "Z";
|
||||
createdAt = new Date(utcString);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const codeOutput =
|
||||
blockOutput === null ? null : JSON.stringify(blockOutput, null, 2);
|
||||
|
||||
const ago = createdAt ? formatMs(Date.now() - createdAt.getTime()).ago : null;
|
||||
|
||||
const override = blockOutputStore.getOverride({
|
||||
wpid: workflowPermanentId,
|
||||
blockLabel,
|
||||
});
|
||||
|
||||
const codeOverride = override ? JSON.stringify(override, null, 2) : null;
|
||||
|
||||
return (
|
||||
<div className="flex h-full w-full flex-col">
|
||||
<header className="flex items-center justify-between">
|
||||
<SwitchBar
|
||||
className="mb-2 border-none"
|
||||
onChange={(value) => setPageName(value as PageName)}
|
||||
value={pageName}
|
||||
options={[
|
||||
{
|
||||
label: "Output",
|
||||
value: "output",
|
||||
helpText:
|
||||
"The last output from this block, when it completed successfully.",
|
||||
},
|
||||
{
|
||||
label: "Override",
|
||||
value: "override",
|
||||
helpText: "Supply your own override output.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
{pageName === "output" && (
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<header className="w-full text-right text-xs">{ago}</header>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>When the output was created</TooltipContent>
|
||||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
)}
|
||||
{pageName === "override" && (
|
||||
<header className="flex w-full items-center justify-end gap-2 text-xs">
|
||||
<Label className="text-xs font-normal text-slate-300">
|
||||
Use Override
|
||||
</Label>
|
||||
<HelpTooltip content="Use this override instead of the last block output" />
|
||||
<Switch
|
||||
checked={useOverride}
|
||||
onCheckedChange={(value) => {
|
||||
blockOutputStore.setUseOverride({
|
||||
wpid: workflowPermanentId,
|
||||
blockLabel,
|
||||
value,
|
||||
});
|
||||
}}
|
||||
/>
|
||||
</header>
|
||||
)}
|
||||
</header>
|
||||
{pageName === "output" ? (
|
||||
<div className="flex h-full flex-1 flex-col gap-1 overflow-y-hidden border-2 border-transparent">
|
||||
{codeOutput ? (
|
||||
<>
|
||||
<CodeEditor
|
||||
key="output"
|
||||
className="nopan nowheel h-full w-full flex-1 overflow-y-scroll"
|
||||
language="json"
|
||||
value={codeOutput}
|
||||
lineWrap={false}
|
||||
readOnly
|
||||
fontSize={10}
|
||||
fullHeight
|
||||
/>
|
||||
</>
|
||||
) : (
|
||||
<div className="flex h-full w-full flex-1 items-center justify-center bg-slate-950">
|
||||
No output defined
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
) : (
|
||||
<div
|
||||
className={cn(
|
||||
"flex h-full flex-1 flex-col overflow-y-hidden border-2 border-transparent",
|
||||
{
|
||||
"border-[red]": overrideHasError,
|
||||
},
|
||||
)}
|
||||
>
|
||||
<CodeEditor
|
||||
key="override"
|
||||
className="nopan nowheel h-full w-full flex-1 overflow-y-scroll"
|
||||
language="json"
|
||||
value={codeOverride ?? ""}
|
||||
lineWrap={false}
|
||||
fontSize={10}
|
||||
fullHeight
|
||||
onChange={(value) => {
|
||||
try {
|
||||
JSON.parse(value), setOverrideHasError(false);
|
||||
} catch {
|
||||
setOverrideHasError(true);
|
||||
return;
|
||||
}
|
||||
const wasStored = blockOutputStore.setOverride({
|
||||
wpid: workflowPermanentId,
|
||||
blockLabel,
|
||||
data: JSON.parse(value),
|
||||
});
|
||||
|
||||
if (!wasStored) {
|
||||
setOverrideHasError(true);
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export { BlockOutputs };
|
||||
@@ -26,8 +26,14 @@ type Props = {
|
||||
maxHeight?: string;
|
||||
className?: string;
|
||||
fontSize?: number;
|
||||
fullHeight?: boolean;
|
||||
};
|
||||
|
||||
const fullHeightExtension = EditorView.theme({
|
||||
"&": { height: "100%" }, // the root
|
||||
".cm-scroller": { flex: 1 }, // makes the scrollable area expand
|
||||
});
|
||||
|
||||
function CodeEditor({
|
||||
value,
|
||||
onChange,
|
||||
@@ -38,11 +44,19 @@ function CodeEditor({
|
||||
className,
|
||||
readOnly = false,
|
||||
fontSize = 12,
|
||||
fullHeight = false,
|
||||
}: Props) {
|
||||
const extensions = language
|
||||
? [getLanguageExtension(language), lineWrap ? EditorView.lineWrapping : []]
|
||||
: [lineWrap ? EditorView.lineWrapping : []];
|
||||
|
||||
const style: React.CSSProperties = { fontSize };
|
||||
|
||||
if (fullHeight) {
|
||||
extensions.push(fullHeightExtension);
|
||||
style.height = "100%";
|
||||
}
|
||||
|
||||
return (
|
||||
<CodeMirror
|
||||
value={value}
|
||||
@@ -53,9 +67,7 @@ function CodeEditor({
|
||||
maxHeight={maxHeight}
|
||||
readOnly={readOnly}
|
||||
className={cn("cursor-auto", className)}
|
||||
style={{
|
||||
fontSize: fontSize,
|
||||
}}
|
||||
style={style}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -7,18 +7,25 @@ import { WorkflowSettings } from "../types/workflowTypes";
|
||||
import { getElements } from "@/routes/workflows/editor/workflowEditorUtils";
|
||||
import { getInitialParameters } from "@/routes/workflows/editor/utils";
|
||||
import { Workspace } from "@/routes/workflows/editor/Workspace";
|
||||
import { useDebugSessionBlockOutputsQuery } from "../hooks/useDebugSessionBlockOutputsQuery";
|
||||
import { useWorkflowParametersStore } from "@/store/WorkflowParametersStore";
|
||||
import { useBlockOutputStore } from "@/store/BlockOutputStore";
|
||||
|
||||
function Debugger() {
|
||||
const { workflowPermanentId } = useParams();
|
||||
const { data: workflow } = useWorkflowQuery({
|
||||
workflowPermanentId,
|
||||
});
|
||||
const { data: outputParameters } = useDebugSessionBlockOutputsQuery({
|
||||
workflowPermanentId,
|
||||
});
|
||||
|
||||
const setParameters = useWorkflowParametersStore(
|
||||
(state) => state.setParameters,
|
||||
);
|
||||
|
||||
const setBlockOutputs = useBlockOutputStore((state) => state.setOutputs);
|
||||
|
||||
useEffect(() => {
|
||||
if (workflow) {
|
||||
const initialParameters = getInitialParameters(workflow);
|
||||
@@ -26,6 +33,21 @@ function Debugger() {
|
||||
}
|
||||
}, [workflow, setParameters]);
|
||||
|
||||
useEffect(() => {
|
||||
if (!outputParameters) {
|
||||
return;
|
||||
}
|
||||
|
||||
const blockOutputs = Object.entries(outputParameters).reduce<{
|
||||
[k: string]: Record<string, unknown>;
|
||||
}>((acc, [blockLabel, outputs]) => {
|
||||
acc[blockLabel] = outputs ?? null;
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
setBlockOutputs(blockOutputs);
|
||||
}, [outputParameters, setBlockOutputs]);
|
||||
|
||||
if (!workflow) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -6,13 +6,14 @@ import { getElements } from "./workflowEditorUtils";
|
||||
import { LogoMinimized } from "@/components/LogoMinimized";
|
||||
import { WorkflowSettings } from "../types/workflowTypes";
|
||||
import { useGlobalWorkflowsQuery } from "../hooks/useGlobalWorkflowsQuery";
|
||||
import { useBlockOutputStore } from "@/store/BlockOutputStore";
|
||||
import { useWorkflowParametersStore } from "@/store/WorkflowParametersStore";
|
||||
import { getInitialParameters } from "./utils";
|
||||
import { Workspace } from "./Workspace";
|
||||
import { useMountEffect } from "@/hooks/useMountEffect";
|
||||
|
||||
function WorkflowEditor() {
|
||||
const { workflowPermanentId } = useParams();
|
||||
|
||||
const { data: workflow, isLoading } = useWorkflowQuery({
|
||||
workflowPermanentId,
|
||||
});
|
||||
@@ -24,6 +25,10 @@ function WorkflowEditor() {
|
||||
(state) => state.setParameters,
|
||||
);
|
||||
|
||||
const blockOutputStore = useBlockOutputStore();
|
||||
|
||||
useMountEffect(() => blockOutputStore.reset());
|
||||
|
||||
useEffect(() => {
|
||||
if (workflow) {
|
||||
const initialParameters = getInitialParameters(workflow);
|
||||
|
||||
@@ -36,6 +36,7 @@ import { ModelSelector } from "@/components/ModelSelector";
|
||||
import { useBlockScriptStore } from "@/store/BlockScriptStore";
|
||||
import { cn } from "@/util/utils";
|
||||
import { NodeHeader } from "../components/NodeHeader";
|
||||
import { NodeFooter } from "../components/NodeFooter";
|
||||
import { useParams } from "react-router-dom";
|
||||
import { statusIsRunningOrQueued } from "@/routes/tasks/types";
|
||||
import { useWorkflowRunQuery } from "@/routes/workflows/hooks/useWorkflowRunQuery";
|
||||
@@ -103,9 +104,8 @@ function ExtractionNode({ id, data, type }: NodeProps<ExtractionNode>) {
|
||||
className={cn(
|
||||
"transform-origin-center w-[30rem] space-y-4 rounded-lg bg-slate-elevation3 px-6 py-4 transition-all",
|
||||
{
|
||||
"pointer-events-none": thisBlockIsPlaying,
|
||||
"bg-slate-950 outline outline-2 outline-slate-300":
|
||||
thisBlockIsTargetted,
|
||||
"pointer-events-none bg-slate-950": thisBlockIsPlaying,
|
||||
"outline outline-2 outline-slate-300": thisBlockIsTargetted,
|
||||
},
|
||||
)}
|
||||
>
|
||||
@@ -278,6 +278,7 @@ function ExtractionNode({ id, data, type }: NodeProps<ExtractionNode>) {
|
||||
</AccordionContent>
|
||||
</AccordionItem>
|
||||
</Accordion>
|
||||
<NodeFooter blockLabel={label} />
|
||||
</div>
|
||||
</div>
|
||||
<BlockCodeEditor blockLabel={label} blockType={type} script={script} />
|
||||
|
||||
@@ -0,0 +1,106 @@
|
||||
import { useState } from "react";
|
||||
import { useParams } from "react-router-dom";
|
||||
import { CrossCircledIcon } from "@radix-ui/react-icons";
|
||||
import { OutputIcon } from "@/components/icons/OutputIcon";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import {
|
||||
Tooltip,
|
||||
TooltipContent,
|
||||
TooltipProvider,
|
||||
TooltipTrigger,
|
||||
} from "@/components/ui/tooltip";
|
||||
import { statusIsRunningOrQueued } from "@/routes/tasks/types";
|
||||
import { BlockOutputs } from "@/routes/workflows/components/BlockOutputs";
|
||||
import { useWorkflowRunQuery } from "@/routes/workflows/hooks/useWorkflowRunQuery";
|
||||
import { useBlockOutputStore } from "@/store/BlockOutputStore";
|
||||
import { cn } from "@/util/utils";
|
||||
|
||||
interface Props {
|
||||
blockLabel: string;
|
||||
}
|
||||
|
||||
function NodeFooter({ blockLabel }: Props) {
|
||||
const { blockLabel: urlBlockLabel } = useParams();
|
||||
const blockOutput = useBlockOutputStore((state) => state.outputs[blockLabel]);
|
||||
const [isExpanded, setIsExpanded] = useState(false);
|
||||
const { data: workflowRun } = useWorkflowRunQuery();
|
||||
const workflowRunIsRunningOrQueued =
|
||||
workflowRun && statusIsRunningOrQueued(workflowRun);
|
||||
const thisBlockIsPlaying =
|
||||
workflowRunIsRunningOrQueued &&
|
||||
urlBlockLabel !== undefined &&
|
||||
urlBlockLabel === blockLabel;
|
||||
const thisBlockIsTargetted =
|
||||
urlBlockLabel !== undefined && urlBlockLabel === blockLabel;
|
||||
|
||||
if (thisBlockIsPlaying) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={cn(
|
||||
"pointer-events-none absolute left-0 top-[-1rem] h-full w-full",
|
||||
{ "opacity-100": isExpanded },
|
||||
)}
|
||||
>
|
||||
<div className="relative h-full w-full overflow-hidden rounded-lg">
|
||||
<div
|
||||
className={cn(
|
||||
"pointer-events-auto flex h-full w-full translate-y-full items-center justify-center bg-slate-elevation3 p-6 transition-all duration-300 ease-in-out",
|
||||
{ "translate-y-0": isExpanded },
|
||||
)}
|
||||
>
|
||||
<BlockOutputs
|
||||
blockLabel={blockLabel}
|
||||
blockOutput={
|
||||
blockOutput ? JSON.parse(JSON.stringify(blockOutput)) : null
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="relative flex w-full overflow-visible bg-[pink]">
|
||||
<TooltipProvider>
|
||||
<Tooltip>
|
||||
<TooltipTrigger asChild>
|
||||
<div
|
||||
className={cn(
|
||||
"absolute bottom-[-2.25rem] right-[-0.75rem] flex h-[2.5rem] w-[2.5rem] items-center justify-center gap-2 rounded-[50%] bg-slate-elevation3 p-2",
|
||||
{
|
||||
"opacity-100 outline outline-2 outline-slate-300":
|
||||
thisBlockIsTargetted,
|
||||
},
|
||||
)}
|
||||
>
|
||||
<Button
|
||||
variant="link"
|
||||
size="sm"
|
||||
className={cn(
|
||||
"p-0 opacity-80 hover:translate-y-[-1px] hover:opacity-100 active:translate-y-[0px]",
|
||||
{ "opacity-100": isExpanded },
|
||||
)}
|
||||
onClick={() => {
|
||||
setIsExpanded(!isExpanded);
|
||||
}}
|
||||
>
|
||||
{isExpanded ? (
|
||||
<CrossCircledIcon className="scale-[110%]" />
|
||||
) : (
|
||||
<OutputIcon className="scale-[80%]" />
|
||||
)}
|
||||
</Button>
|
||||
</div>
|
||||
</TooltipTrigger>
|
||||
<TooltipContent>
|
||||
{isExpanded ? "Close Outputs" : "Open Outputs"}
|
||||
</TooltipContent>
|
||||
</Tooltip>
|
||||
</TooltipProvider>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export { NodeFooter };
|
||||
@@ -1,15 +1,16 @@
|
||||
import { AxiosError } from "axios";
|
||||
import { ReloadIcon, PlayIcon, StopIcon } from "@radix-ui/react-icons";
|
||||
import { useEffect } from "react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useLocation, useNavigate, useParams } from "react-router-dom";
|
||||
import { useMutation, useQueryClient } from "@tanstack/react-query";
|
||||
|
||||
import { getClient } from "@/api/AxiosClient";
|
||||
import { ProxyLocation } from "@/api/types";
|
||||
import { ProxyLocation, Status } from "@/api/types";
|
||||
import { Timer } from "@/components/Timer";
|
||||
import { toast } from "@/components/ui/use-toast";
|
||||
import { useLogging } from "@/hooks/useLogging";
|
||||
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
|
||||
import { useOnChange } from "@/hooks/useOnChange";
|
||||
|
||||
import { useNodeLabelChangeHandler } from "@/routes/workflows/hooks/useLabelChangeHandler";
|
||||
import { useDeleteNodeCallback } from "@/routes/workflows/hooks/useDeleteNodeCallback";
|
||||
@@ -23,6 +24,7 @@ import {
|
||||
type WorkflowApiResponse,
|
||||
} from "@/routes/workflows/types/workflowTypes";
|
||||
import { getInitialValues } from "@/routes/workflows/utils";
|
||||
import { useBlockOutputStore } from "@/store/BlockOutputStore";
|
||||
import { useDebugStore } from "@/store/useDebugStore";
|
||||
import { useWorkflowPanelStore } from "@/store/WorkflowPanelStore";
|
||||
import { useWorkflowSave } from "@/store/WorkflowHasChangesStore";
|
||||
@@ -54,6 +56,7 @@ interface Props {
|
||||
|
||||
type Payload = Record<string, unknown> & {
|
||||
block_labels: string[];
|
||||
block_outputs: Record<string, unknown>;
|
||||
browser_session_id: string | null;
|
||||
extra_http_headers: Record<string, string> | null;
|
||||
max_screenshot_scrolls: number | null;
|
||||
@@ -67,6 +70,7 @@ type Payload = Record<string, unknown> & {
|
||||
|
||||
const getPayload = (opts: {
|
||||
blockLabel: string;
|
||||
blockOutputs: Record<string, unknown>;
|
||||
browserSessionId: string | null;
|
||||
parameters: Record<string, unknown>;
|
||||
totpIdentifier: string | null;
|
||||
@@ -109,6 +113,7 @@ const getPayload = (opts: {
|
||||
|
||||
const payload: Payload = {
|
||||
block_labels: [opts.blockLabel],
|
||||
block_outputs: opts.blockOutputs,
|
||||
browser_session_id: opts.browserSessionId,
|
||||
extra_http_headers: extraHttpHeaders,
|
||||
max_screenshot_scrolls: opts.workflowSettings.maxScreenshotScrollingTimes,
|
||||
@@ -138,6 +143,7 @@ function NodeHeader({
|
||||
workflowPermanentId,
|
||||
workflowRunId,
|
||||
} = useParams();
|
||||
const blockOutputsStore = useBlockOutputStore();
|
||||
const debugStore = useDebugStore();
|
||||
const { closeWorkflowPanel } = useWorkflowPanelStore();
|
||||
const workflowSettingsStore = useWorkflowSettingsStore();
|
||||
@@ -177,6 +183,26 @@ function NodeHeader({
|
||||
3500
|
||||
: null;
|
||||
|
||||
const [workflowRunStatus, setWorkflowRunStatus] = useState(
|
||||
workflowRun?.status,
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
setWorkflowRunStatus(workflowRun?.status);
|
||||
}, [workflowRun, setWorkflowRunStatus]);
|
||||
|
||||
useOnChange(workflowRunStatus, (newValue, oldValue) => {
|
||||
if (!thisBlockIsTargetted) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (newValue !== oldValue && oldValue && newValue === Status.Completed) {
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: ["block-outputs", workflowPermanentId],
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
if (!workflowRun || !workflowPermanentId || !workflowRunId) {
|
||||
return;
|
||||
@@ -202,6 +228,7 @@ function NodeHeader({
|
||||
}
|
||||
}
|
||||
}, [
|
||||
queryClient,
|
||||
urlBlockLabel,
|
||||
navigate,
|
||||
workflowPermanentId,
|
||||
@@ -226,6 +253,10 @@ function NodeHeader({
|
||||
}
|
||||
|
||||
if (!debugSession) {
|
||||
// TODO: kind of redundant; investigate if this is necessary; either
|
||||
// Sentry's log should output to the console, or Sentry should just
|
||||
// gather native console.error output.
|
||||
console.error("Run block: there is no debug session, yet");
|
||||
log.error("Run block: there is no debug session, yet");
|
||||
toast({
|
||||
variant: "destructive",
|
||||
@@ -256,6 +287,8 @@ function NodeHeader({
|
||||
|
||||
const body = getPayload({
|
||||
blockLabel,
|
||||
blockOutputs:
|
||||
blockOutputsStore.getOutputsWithOverrides(workflowPermanentId),
|
||||
browserSessionId: debugSession.browser_session_id,
|
||||
parameters,
|
||||
totpIdentifier,
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
import { getClient } from "@/api/AxiosClient";
|
||||
import { useCredentialGetter } from "@/hooks/useCredentialGetter";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
|
||||
type Props = {
|
||||
workflowPermanentId?: string;
|
||||
};
|
||||
|
||||
function useDebugSessionBlockOutputsQuery({ workflowPermanentId }: Props) {
|
||||
const credentialGetter = useCredentialGetter();
|
||||
|
||||
return useQuery<{ [k: string]: { extracted_information: unknown } }>({
|
||||
queryKey: ["block-outputs", workflowPermanentId],
|
||||
queryFn: async () => {
|
||||
const client = await getClient(credentialGetter, "sans-api-v1");
|
||||
const result = await client
|
||||
.get(`/debug-session/${workflowPermanentId}/block-outputs`)
|
||||
.then((response) => response.data);
|
||||
return result;
|
||||
},
|
||||
enabled: !!workflowPermanentId,
|
||||
});
|
||||
}
|
||||
|
||||
export { useDebugSessionBlockOutputsQuery };
|
||||
Reference in New Issue
Block a user