@railtownai/railtracks-visualizer 0.0.40 → 0.0.42
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.
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
import type { AgentRun } from "../../dto/AgentRun";
|
|
2
3
|
import type { SessionListItem } from "../hooks/useSessions";
|
|
3
4
|
interface SessionDetailsProps {
|
|
4
5
|
session: SessionListItem | null;
|
|
5
6
|
open: boolean;
|
|
6
7
|
onClose: () => void;
|
|
7
8
|
}
|
|
9
|
+
export declare const InputsOutputsComponent: React.FC<{
|
|
10
|
+
run: AgentRun;
|
|
11
|
+
isDarkMode: boolean;
|
|
12
|
+
}>;
|
|
8
13
|
export declare const SessionDetails: React.FC<SessionDetailsProps>;
|
|
9
14
|
export {};
|
|
@@ -2,6 +2,8 @@ import { AgentRun } from "./AgentRun";
|
|
|
2
2
|
export type AgentSession = {
|
|
3
3
|
/** Unique identifier for the agent session */
|
|
4
4
|
session_id: string;
|
|
5
|
+
/** Backwards compatibility with older sessions. Name of the agent session */
|
|
6
|
+
session_name?: string;
|
|
5
7
|
/** Name of the agent session */
|
|
6
8
|
name: string;
|
|
7
9
|
/** Start time of the agent session (unix timestamp) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@railtownai/railtracks-visualizer",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.42",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Railtown AI",
|
|
6
6
|
"description": "A visualizer for Railtracks agentic flows",
|
|
@@ -77,16 +77,16 @@
|
|
|
77
77
|
"up": "ncu -u -x react -x react-dom -x @types/react -x @types/react-dom"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@chromatic-com/storybook": "
|
|
80
|
+
"@chromatic-com/storybook": "5.0.0",
|
|
81
81
|
"@rollup/plugin-commonjs": "29.0.0",
|
|
82
82
|
"@rollup/plugin-json": "6.1.0",
|
|
83
83
|
"@rollup/plugin-node-resolve": "16.0.3",
|
|
84
84
|
"@rollup/plugin-swc": "0.4.0",
|
|
85
85
|
"@rollup/plugin-terser": "0.4.4",
|
|
86
|
-
"@storybook/addon-a11y": "10.
|
|
87
|
-
"@storybook/addon-docs": "10.
|
|
88
|
-
"@storybook/addon-onboarding": "10.
|
|
89
|
-
"@storybook/react-vite": "10.
|
|
86
|
+
"@storybook/addon-a11y": "10.2.0",
|
|
87
|
+
"@storybook/addon-docs": "10.2.0",
|
|
88
|
+
"@storybook/addon-onboarding": "10.2.0",
|
|
89
|
+
"@storybook/react-vite": "10.2.0",
|
|
90
90
|
"@testing-library/jest-dom": "6.9.1",
|
|
91
91
|
"@testing-library/react": "16.3.0",
|
|
92
92
|
"@testing-library/user-event": "14.6.1",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"prettier": "3.6.2",
|
|
104
104
|
"rollup": "4.53.3",
|
|
105
105
|
"rollup-plugin-postcss": "4.0.2",
|
|
106
|
-
"storybook": "10.
|
|
106
|
+
"storybook": "10.2.0",
|
|
107
107
|
"typescript": "5.9.3",
|
|
108
108
|
"uuid": "13.0.0",
|
|
109
109
|
"vite": "7.2.4",
|