@railtownai/railtracks-visualizer 0.0.71 → 0.0.72

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.
@@ -49,5 +49,13 @@ export interface EvaluationsTableProps {
49
49
  error: string;
50
50
  onRetry?: () => void;
51
51
  }) => React.ReactNode;
52
+ /** Pre-selected session IDs (e.g. from deeplink URL). */
53
+ initialSessionIds?: string[];
54
+ /** Called when session filter changes (e.g. to update URL). */
55
+ onSessionFilterChange?: (sessionIds: string[]) => void;
56
+ /** Pre-selected evaluation names (e.g. from deeplink URL). */
57
+ initialNameFilter?: string[];
58
+ /** Called when evaluation name filter changes (e.g. to update URL). */
59
+ onNameFilterChange?: (names: string[]) => void;
52
60
  }
53
61
  export declare const EvaluationsTable: React.FC<EvaluationsTableProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@railtownai/railtracks-visualizer",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "license": "MIT",
5
5
  "author": "Railtown AI",
6
6
  "description": "A visualizer for Railtracks agentic flows",