@elevasis/ui 1.24.1 → 1.24.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.
Files changed (38) hide show
  1. package/dist/charts/index.js +1 -1
  2. package/dist/{chunk-XQU33SNO.js → chunk-BGTZFEKR.js} +3 -3
  3. package/dist/{chunk-HOYZWSNV.js → chunk-H3MU3WTM.js} +1 -1
  4. package/dist/{chunk-FATKFO7X.js → chunk-JTUX5FDC.js} +1 -1
  5. package/dist/{chunk-KEJOD532.js → chunk-OH74INP2.js} +11 -20
  6. package/dist/{chunk-EDAYKRPJ.js → chunk-QDO6NF2I.js} +28 -1
  7. package/dist/{chunk-BZZQLWLF.js → chunk-TML32XBW.js} +1 -1
  8. package/dist/{chunk-JTGMQUZA.js → chunk-TQBM3OEW.js} +1 -1
  9. package/dist/{chunk-N5SDJP44.js → chunk-UG5565XQ.js} +1 -1
  10. package/dist/{chunk-G6XZFSZ6.js → chunk-VMMNFRAO.js} +2 -2
  11. package/dist/{chunk-5266RV46.js → chunk-WY5IJI37.js} +2 -2
  12. package/dist/{chunk-7TLPKXC2.js → chunk-ZDKC3V7C.js} +2 -2
  13. package/dist/components/index.css +10 -0
  14. package/dist/components/index.d.ts +2 -2
  15. package/dist/components/index.js +12 -12
  16. package/dist/features/auth/index.css +10 -0
  17. package/dist/features/dashboard/index.css +10 -0
  18. package/dist/features/dashboard/index.js +6 -6
  19. package/dist/features/monitoring/index.css +10 -0
  20. package/dist/features/monitoring/index.js +17 -7
  21. package/dist/features/operations/index.css +10 -0
  22. package/dist/features/operations/index.d.ts +67 -9
  23. package/dist/features/operations/index.js +199 -13
  24. package/dist/features/settings/index.css +10 -0
  25. package/dist/features/settings/index.js +6 -6
  26. package/dist/hooks/index.css +10 -0
  27. package/dist/hooks/index.d.ts +26 -10
  28. package/dist/hooks/index.js +4 -4
  29. package/dist/hooks/published.css +10 -0
  30. package/dist/hooks/published.d.ts +26 -10
  31. package/dist/hooks/published.js +3 -3
  32. package/dist/index.css +10 -0
  33. package/dist/index.d.ts +26 -10
  34. package/dist/index.js +5 -5
  35. package/dist/provider/index.css +10 -0
  36. package/dist/provider/index.js +2 -2
  37. package/dist/theme/index.js +2 -2
  38. package/package.json +3 -3
@@ -1339,7 +1339,7 @@ type ResourceStatus = 'dev' | 'prod';
1339
1339
  * All resource types in the platform
1340
1340
  * Used as the discriminator field in ResourceDefinition
1341
1341
  */
1342
- type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human';
1342
+ type ResourceType$1 = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human';
1343
1343
  /**
1344
1344
  * Base interface for ALL platform resources
1345
1345
  * Shared by both executable (agents, workflows) and non-executable (triggers, integrations, etc.) resources
@@ -1354,7 +1354,7 @@ interface ResourceDefinition {
1354
1354
  /** Version for change tracking and evolution */
1355
1355
  version: string;
1356
1356
  /** Resource type discriminator */
1357
- type: ResourceType;
1357
+ type: ResourceType$1;
1358
1358
  /** Environment/deployment status */
1359
1359
  status: ResourceStatus;
1360
1360
  /** Domain tags for filtering and organization */
@@ -1498,9 +1498,9 @@ interface CalibrationRun {
1498
1498
 
1499
1499
  interface ResourcesPageProps {
1500
1500
  /** Initial filter type from the URL search param (caller-managed) */
1501
- initialFilter?: ResourceType;
1501
+ initialFilter?: ResourceType$1;
1502
1502
  /** Called when the user changes the tab filter — caller should update its URL */
1503
- onTypeChange: (type: ResourceType | undefined) => void;
1503
+ onTypeChange: (type: ResourceType$1 | undefined) => void;
1504
1504
  /** Current time range value — caller passes from its own store */
1505
1505
  timeRange: TimeRange;
1506
1506
  /** Called when the user clicks a resource row — caller handles navigation */
@@ -1520,14 +1520,14 @@ declare function ResourcesSidebar({ timeRange }: ResourcesSidebarProps): react_j
1520
1520
 
1521
1521
  interface ResourceDetailPageRenderExecutionPanelArgs {
1522
1522
  resourceId: string;
1523
- resourceType: ResourceType;
1523
+ resourceType: ResourceType$1;
1524
1524
  resourceName: string;
1525
1525
  resourceDefinition: AIResourceDefinition;
1526
1526
  onConnectionStatus: (connected: boolean, count: number) => void;
1527
1527
  }
1528
1528
  interface ResourceDetailPageProps {
1529
1529
  /** Resource type (workflow, agent, etc.) */
1530
- type: ResourceType;
1530
+ type: ResourceType$1;
1531
1531
  /** Resource identifier */
1532
1532
  resourceId: string;
1533
1533
  /** Current time range value — caller passes from its own store */
@@ -1541,6 +1541,24 @@ interface ResourceDetailPageProps {
1541
1541
  }
1542
1542
  declare function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel }: ResourceDetailPageProps): react_jsx_runtime.JSX.Element;
1543
1543
 
1544
+ /**
1545
+ * Resource Registry type definitions
1546
+ */
1547
+
1548
+
1549
+
1550
+ /**
1551
+ * All resource types in the platform
1552
+ * Used as the discriminator field in ResourceDefinition
1553
+ */
1554
+ type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
1555
+
1556
+ interface ExecuteAsyncResult {
1557
+ executionId: string;
1558
+ status: string;
1559
+ resourceId: string;
1560
+ }
1561
+
1544
1562
  interface EventSourceMessage {
1545
1563
  id: string;
1546
1564
  event: string;
@@ -1775,7 +1793,7 @@ declare function CalibrationSidebar({ currentProjectId, currentRunId, currentPat
1775
1793
 
1776
1794
  interface ExecutionPanelProps {
1777
1795
  resourceId: string;
1778
- resourceType: ResourceType;
1796
+ resourceType: ResourceType$1;
1779
1797
  resourceName?: string;
1780
1798
  resourceDefinition: AIResourceDefinition;
1781
1799
  sseManager: SSEConnectionManager;
@@ -1804,6 +1822,46 @@ interface AgentExecutionPanelProps {
1804
1822
  }
1805
1823
  declare function AgentExecutionPanel({ resourceId, resourceDefinition, sseManager, apiUrl, onConnectionStatus }: AgentExecutionPanelProps): react_jsx_runtime.JSX.Element;
1806
1824
 
1825
+ interface ExecuteWorkflowModalResource {
1826
+ resourceId: string;
1827
+ resourceType: ResourceType;
1828
+ name?: string;
1829
+ }
1830
+ interface ExecuteWorkflowModalProps {
1831
+ opened: boolean;
1832
+ onClose: () => void;
1833
+ resource: ExecuteWorkflowModalResource;
1834
+ isPending?: boolean;
1835
+ error?: Error | null;
1836
+ result?: ExecuteAsyncResult | null;
1837
+ onViewExecution?: (executionId: string) => void;
1838
+ onReset?: () => void;
1839
+ children?: ReactNode;
1840
+ }
1841
+ declare function ExecuteWorkflowModal({ opened, onClose, resource, isPending, error, result, onViewExecution, onReset, children }: ExecuteWorkflowModalProps): react_jsx_runtime.JSX.Element;
1842
+
1843
+ interface ResourceExecuteFormProps {
1844
+ formSchema: SerializedExecutionFormSchema;
1845
+ onSubmit: (input: Record<string, unknown>) => void | Promise<void>;
1846
+ isPending?: boolean;
1847
+ disabled?: boolean;
1848
+ submitLabel?: string;
1849
+ }
1850
+ declare function ResourceExecuteForm({ formSchema, onSubmit, isPending, disabled, submitLabel }: ResourceExecuteFormProps): react_jsx_runtime.JSX.Element;
1851
+
1852
+ interface ResourceExecuteDialogProps {
1853
+ opened: boolean;
1854
+ onClose: () => void;
1855
+ resource: {
1856
+ resourceId: string;
1857
+ resourceType: ResourceType;
1858
+ name?: string;
1859
+ formSchema?: SerializedExecutionFormSchema;
1860
+ };
1861
+ onViewExecution?: (executionId: string) => void;
1862
+ }
1863
+ declare function ResourceExecuteDialog({ opened, onClose, resource, onViewExecution }: ResourceExecuteDialogProps): react_jsx_runtime.JSX.Element;
1864
+
1807
1865
  interface SessionsPageProps {
1808
1866
  /** Whether the organization context is ready; blocks render until true */
1809
1867
  isReady: boolean;
@@ -2002,5 +2060,5 @@ interface SessionsSidebarProps {
2002
2060
  */
2003
2061
  declare function SessionsSidebar({ isReady, onAgentClick, buildSessionDetailUrl, sessionId, agentParam }: SessionsSidebarProps): react_jsx_runtime.JSX.Element;
2004
2062
 
2005
- export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandViewPage, CommandViewSidebarContent, ExecutionPanel, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel };
2006
- export type { AgentExecutionPanelProps, AgentSessionGroupProps, CalibrationPageProps, CalibrationProgressProps, CalibrationProjectDetailPageProps, CalibrationProjectDetailPageRenderCreateModalArgs, CalibrationProjectDetailPageRenderRunCardArgs, CalibrationProjectsPageProps, CalibrationRunDetailPageProps, CalibrationSidebarProps, CommandQueueDetailPageProps, CommandQueueDetailPageRichTextArgs, CommandQueuePageProps, CommandViewPageProps, CommandViewSidebarContentProps, ConversationViewSlotArgs, ExecutionPanelProps, ResourceDetailPageProps, ResourceDetailPageRenderExecutionPanelArgs, ResourcesPageProps, ResourcesSidebarProps, SessionChatAreaProps, SessionChatInterfaceProps, SessionChatPageProps, SessionDetailsSidebarProps, SessionExecutionLogsProps, SessionHeaderProps, SessionListItemProps, SessionsPageProps, SessionsSidebarProps, WorkflowExecutionPanelProps };
2063
+ export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel };
2064
+ export type { AgentExecutionPanelProps, AgentSessionGroupProps, CalibrationPageProps, CalibrationProgressProps, CalibrationProjectDetailPageProps, CalibrationProjectDetailPageRenderCreateModalArgs, CalibrationProjectDetailPageRenderRunCardArgs, CalibrationProjectsPageProps, CalibrationRunDetailPageProps, CalibrationSidebarProps, CommandQueueDetailPageProps, CommandQueueDetailPageRichTextArgs, CommandQueuePageProps, CommandViewPageProps, CommandViewSidebarContentProps, ConversationViewSlotArgs, ExecuteWorkflowModalProps, ExecuteWorkflowModalResource, ExecutionPanelProps, ResourceDetailPageProps, ResourceDetailPageRenderExecutionPanelArgs, ResourceExecuteDialogProps, ResourceExecuteFormProps, ResourcesPageProps, ResourcesSidebarProps, SessionChatAreaProps, SessionChatInterfaceProps, SessionChatPageProps, SessionDetailsSidebarProps, SessionExecutionLogsProps, SessionHeaderProps, SessionListItemProps, SessionsPageProps, SessionsSidebarProps, WorkflowExecutionPanelProps };
@@ -1,17 +1,17 @@
1
1
  import { ChatHeader, ChatSidebar } from '../../chunk-ROSMICXG.js';
2
- import { ResourceDefinitionSection, CommandQueueTaskRow, getIcon, ActionModal, CommandViewGraph, WorkflowExecutionLogs, AgentExecutionLogs, ResourceFilter, getExecutionStatusConfig, SessionMemory } from '../../chunk-XQU33SNO.js';
2
+ import { FormFieldRenderer, ResourceDefinitionSection, CommandQueueTaskRow, getIcon, ActionModal, CommandViewGraph, WorkflowExecutionLogs, AgentExecutionLogs, ResourceFilter, getExecutionStatusConfig, SessionMemory } from '../../chunk-BGTZFEKR.js';
3
3
  import { SubshellLoader, SubshellSidebarSection, PageContainer, CollapsibleSidebarGroup, SidebarListItem } from '../../chunk-AWT255UH.js';
4
- import { ResourceHealthPanel } from '../../chunk-5266RV46.js';
4
+ import { ResourceHealthPanel } from '../../chunk-WY5IJI37.js';
5
5
  import { ConfirmationModal, CustomModal } from '../../chunk-GBMNCNHX.js';
6
- import { ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline } from '../../chunk-G6XZFSZ6.js';
7
- import { useCyberColors, CyberDonut } from '../../chunk-N5SDJP44.js';
6
+ import { ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline } from '../../chunk-VMMNFRAO.js';
7
+ import { useCyberColors, CyberDonut } from '../../chunk-UG5565XQ.js';
8
8
  import { PageTitleCaption, TabCountBadge, ResourceCard, ContextViewer, JsonViewer, APIErrorAlert, EmptyState, CardHeader } from '../../chunk-IAZT3VO6.js';
9
9
  import '../../chunk-3KMDHCAR.js';
10
10
  import '../../chunk-NNKKBSJN.js';
11
11
  import { AppShellLoader } from '../../chunk-WWEMNIHW.js';
12
12
  import { topbarHeight } from '../../chunk-QJ2S46NI.js';
13
- import { useStatusFilter, useResourceSearch, useResourcesDomainFilters, filterByDomainFilters, useCommandViewDomainFilters } from '../../chunk-FATKFO7X.js';
14
- import { usePaginationState, useResources, useRecentExecutionsByResource, useResourceDefinition, isSessionCapable, useDeleteTask, useCommandQueueTotals, useCommandQueue, useSubmitAction, useCommandViewData, useCommandViewStore, useCommandViewStats, useCalibrationProjects, useCalibrationProject, useAllCalibrationProjects, useResourceExecutions, useCheckpointTasks, useCalibrationSSE, useCalibrationRunFull, useExecuteRun, useGradeRun, useCalibrationRuns, useExecutionPanelState, useExecution, useDeleteSession, useCreateSession, useSessions, useSessionExecutions, useSession, calibrationKeys, useDeleteProject, useCreateProject } from '../../chunk-EDAYKRPJ.js';
13
+ import { useStatusFilter, useResourceSearch, useResourcesDomainFilters, filterByDomainFilters, useCommandViewDomainFilters } from '../../chunk-JTUX5FDC.js';
14
+ import { usePaginationState, useResources, useRecentExecutionsByResource, useExecuteAsync, useResourceDefinition, isSessionCapable, useDeleteTask, useCommandQueueTotals, useCommandQueue, useSubmitAction, useCommandViewData, useCommandViewStore, useCommandViewStats, useCalibrationProjects, useCalibrationProject, useAllCalibrationProjects, useResourceExecutions, useCheckpointTasks, useCalibrationSSE, useCalibrationRunFull, useExecuteRun, useGradeRun, useCalibrationRuns, useExecutionPanelState, useExecution, useDeleteSession, useCreateSession, useSessions, useSessionExecutions, useSession, calibrationKeys, useDeleteProject, useCreateProject } from '../../chunk-QDO6NF2I.js';
15
15
  import '../../chunk-NJJ3NQ7B.js';
16
16
  import '../../chunk-LXHZYSMQ.js';
17
17
  import '../../chunk-MHW43EOH.js';
@@ -21,9 +21,9 @@ import { ResourceStatusColors } from '../../chunk-ELJIFLCB.js';
21
21
  import '../../chunk-L4XXM55J.js';
22
22
  import '../../chunk-SLVC5OJ2.js';
23
23
  import '../../chunk-RNP5R5I3.js';
24
- import '../../chunk-BZZQLWLF.js';
24
+ import '../../chunk-TML32XBW.js';
25
25
  import '../../chunk-SZHARWKU.js';
26
- import '../../chunk-KEJOD532.js';
26
+ import '../../chunk-OH74INP2.js';
27
27
  import '../../chunk-JR2C4XAN.js';
28
28
  import '../../chunk-R7WLWGPO.js';
29
29
  import '../../chunk-NVOCKXUQ.js';
@@ -37,8 +37,8 @@ import { useOrganization } from '../../chunk-DD3CCMCZ.js';
37
37
  import '../../chunk-QEPXAWE2.js';
38
38
  import '../../chunk-BRJ3QZ4E.js';
39
39
  import '../../chunk-Q7DJKLEN.js';
40
- import { Stack, Card, Text, Button, Tabs, Group, Pagination, useMantineTheme, Box, Center, Loader, UnstyledButton, TextInput, Divider, Paper, Badge, ActionIcon, Title, SimpleGrid, CopyButton, SegmentedControl, ThemeIcon, Alert, Switch, Space, Progress, Timeline, Collapse, ScrollArea, Tooltip, Textarea, Menu, Modal, Table } from '@mantine/core';
41
- import { IconApps, IconRoute, IconBrain, IconRefresh, IconAdjustmentsHorizontal, IconSearch, IconChevronDown, IconCircleX, IconCircleCheck, IconCircleDashed, IconTrash, IconArrowLeft, IconClock, IconCheck, IconCopy, IconExternalLink, IconPlayerPlay, IconAlertCircle, IconPlus, IconAdjustments, IconSitemap, IconSettings, IconX, IconChartBar, IconReportAnalytics, IconCoin, IconChevronRight, IconFlask, IconInfoCircle, IconMessage, IconAlertTriangle, IconRobot, IconLayoutSidebarRightExpand, IconNote, IconArchive, IconDownload, IconTimeline, IconDotsVertical } from '@tabler/icons-react';
40
+ import { Stack, Card, Text, Button, Tabs, Group, Pagination, useMantineTheme, Box, Center, Loader, UnstyledButton, TextInput, Divider, Modal, Code, Alert, LoadingOverlay, Badge, Paper, ActionIcon, Title, SimpleGrid, CopyButton, SegmentedControl, ThemeIcon, Switch, Space, Progress, Timeline, Collapse, ScrollArea, Tooltip, Textarea, Menu, Table } from '@mantine/core';
41
+ import { IconApps, IconRoute, IconBrain, IconRefresh, IconAdjustmentsHorizontal, IconSearch, IconChevronDown, IconCircleX, IconCircleCheck, IconCircleDashed, IconCheck, IconExternalLink, IconAlertCircle, IconTrash, IconArrowLeft, IconClock, IconCopy, IconPlayerPlay, IconPlus, IconAdjustments, IconSitemap, IconSettings, IconX, IconChartBar, IconReportAnalytics, IconCoin, IconChevronRight, IconFlask, IconInfoCircle, IconMessage, IconAlertTriangle, IconRobot, IconLayoutSidebarRightExpand, IconNote, IconArchive, IconDownload, IconTimeline, IconDotsVertical } from '@tabler/icons-react';
42
42
  import { useState, useEffect, useMemo, useRef, useCallback } from 'react';
43
43
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
44
44
  import { useClipboard } from '@mantine/hooks';
@@ -556,7 +556,14 @@ function ResourcesSidebar({ timeRange }) {
556
556
  ] })
557
557
  ] });
558
558
  }
559
- function ResourceHeader({ resource, type, connected, runningCount, sessionCapable }) {
559
+ function ResourceHeader({
560
+ resource,
561
+ type,
562
+ connected,
563
+ runningCount,
564
+ sessionCapable,
565
+ onRun
566
+ }) {
560
567
  const { currentMembership } = useOrganization();
561
568
  const organizationName = currentMembership?.organization?.name;
562
569
  const navigate = useNavigate();
@@ -610,6 +617,7 @@ function ResourceHeader({ resource, type, connected, runningCount, sessionCapabl
610
617
  runningCount,
611
618
  " running"
612
619
  ] }),
620
+ onRun && /* @__PURE__ */ jsx(Button, { size: "sm", variant: "filled", leftSection: /* @__PURE__ */ jsx(IconPlayerPlay, { size: 16 }), onClick: onRun, children: "Run" }),
613
621
  type === "agent" && sessionCapable && /* @__PURE__ */ jsx(Button, { size: "xs", variant: "light", leftSection: /* @__PURE__ */ jsx(IconMessage, { size: 16 }), onClick: handleGoToSessions, children: "Go to Sessions" }),
614
622
  /* @__PURE__ */ jsx(
615
623
  Button,
@@ -658,11 +666,175 @@ function ResourceNotFoundState({ type, resourceId }) {
658
666
  )
659
667
  ] }) }) });
660
668
  }
669
+ function ExecuteWorkflowModal({
670
+ opened,
671
+ onClose,
672
+ resource,
673
+ isPending = false,
674
+ error,
675
+ result,
676
+ onViewExecution,
677
+ onReset,
678
+ children
679
+ }) {
680
+ const canClose = !isPending;
681
+ const title = resource.name ?? resource.resourceId;
682
+ return /* @__PURE__ */ jsx(
683
+ Modal,
684
+ {
685
+ opened,
686
+ onClose: canClose ? onClose : () => void 0,
687
+ centered: true,
688
+ size: "lg",
689
+ closeOnClickOutside: canClose,
690
+ closeOnEscape: canClose,
691
+ withCloseButton: canClose,
692
+ title: /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
693
+ /* @__PURE__ */ jsxs(Text, { fw: 600, children: [
694
+ "Run ",
695
+ resource.resourceType
696
+ ] }),
697
+ /* @__PURE__ */ jsx(Badge, { color: "blue", variant: "light", size: "sm", children: resource.resourceType })
698
+ ] }),
699
+ children: /* @__PURE__ */ jsxs(Stack, { gap: "md", children: [
700
+ /* @__PURE__ */ jsxs(Group, { gap: 4, wrap: "nowrap", children: [
701
+ /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "Target:" }),
702
+ /* @__PURE__ */ jsx(Text, { size: "sm", fw: 500, children: title }),
703
+ /* @__PURE__ */ jsx(Code, { children: resource.resourceId })
704
+ ] }),
705
+ /* @__PURE__ */ jsx(Divider, {}),
706
+ result ? /* @__PURE__ */ jsxs(Stack, { gap: "sm", children: [
707
+ /* @__PURE__ */ jsx(Alert, { variant: "light", color: "teal", title: "Execution started", icon: /* @__PURE__ */ jsx(IconCheck, { size: 16 }), children: /* @__PURE__ */ jsxs(Stack, { gap: 4, children: [
708
+ /* @__PURE__ */ jsxs(Text, { size: "sm", children: [
709
+ "The ",
710
+ resource.resourceType,
711
+ " is now running."
712
+ ] }),
713
+ /* @__PURE__ */ jsxs(Group, { gap: 4, children: [
714
+ /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Execution ID:" }),
715
+ /* @__PURE__ */ jsx(Code, { children: result.executionId })
716
+ ] })
717
+ ] }) }),
718
+ /* @__PURE__ */ jsxs(Group, { justify: "flex-end", gap: "xs", children: [
719
+ onReset && /* @__PURE__ */ jsx(Button, { variant: "default", onClick: onReset, children: "Run again" }),
720
+ onViewExecution && /* @__PURE__ */ jsx(
721
+ Button,
722
+ {
723
+ leftSection: /* @__PURE__ */ jsx(IconExternalLink, { size: 16 }),
724
+ onClick: () => onViewExecution(result.executionId),
725
+ children: "View execution"
726
+ }
727
+ ),
728
+ /* @__PURE__ */ jsx(Button, { variant: "light", onClick: onClose, children: "Close" })
729
+ ] })
730
+ ] }) : error ? /* @__PURE__ */ jsxs(Stack, { gap: "sm", children: [
731
+ /* @__PURE__ */ jsx(Alert, { variant: "light", color: "red", title: "Execution failed to start", icon: /* @__PURE__ */ jsx(IconAlertCircle, { size: 16 }), children: /* @__PURE__ */ jsx(Text, { size: "sm", children: error.message || "An unknown error occurred." }) }),
732
+ /* @__PURE__ */ jsxs(Group, { justify: "flex-end", gap: "xs", children: [
733
+ onReset && /* @__PURE__ */ jsx(Button, { variant: "default", onClick: onReset, children: "Try again" }),
734
+ /* @__PURE__ */ jsx(Button, { variant: "light", onClick: onClose, children: "Close" })
735
+ ] })
736
+ ] }) : /* @__PURE__ */ jsxs("div", { style: { position: "relative" }, children: [
737
+ /* @__PURE__ */ jsx(LoadingOverlay, { visible: isPending, zIndex: 1e3, overlayProps: { blur: 2 } }),
738
+ children ?? /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No input form provided." })
739
+ ] })
740
+ ] })
741
+ }
742
+ );
743
+ }
744
+ function getInitialValues(fields) {
745
+ const values = {};
746
+ for (const field of fields) {
747
+ values[field.name] = field.defaultValue ?? (field.type === "checkbox" ? false : "");
748
+ }
749
+ return values;
750
+ }
751
+ function applyFieldMappings(values, mappings) {
752
+ if (!mappings) return values;
753
+ const mapped = {};
754
+ for (const [key, value] of Object.entries(values)) {
755
+ const targetKey = mappings[key] ?? key;
756
+ mapped[targetKey] = value;
757
+ }
758
+ return mapped;
759
+ }
760
+ function ResourceExecuteForm({
761
+ formSchema,
762
+ onSubmit,
763
+ isPending = false,
764
+ disabled = false,
765
+ submitLabel = "Run"
766
+ }) {
767
+ const hasFields = formSchema?.fields?.length > 0;
768
+ const form = useForm({
769
+ initialValues: hasFields ? getInitialValues(formSchema.fields) : {},
770
+ validate: hasFields ? Object.fromEntries(
771
+ formSchema.fields.filter((f) => f.required).map((f) => [
772
+ f.name,
773
+ (value) => !value && value !== false ? `${f.label} is required` : null
774
+ ])
775
+ ) : {}
776
+ });
777
+ const handleSubmit = (values) => {
778
+ const input = applyFieldMappings(values, formSchema?.fieldMappings);
779
+ void onSubmit(input);
780
+ };
781
+ if (!hasFields) {
782
+ return /* @__PURE__ */ jsxs(Stack, { children: [
783
+ /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "This workflow takes no input." }),
784
+ /* @__PURE__ */ jsx(Button, { onClick: () => void onSubmit({}), loading: isPending, disabled, fullWidth: true, children: isPending ? formSchema?.submitButton?.loadingLabel ?? "Running..." : submitLabel })
785
+ ] });
786
+ }
787
+ return /* @__PURE__ */ jsx("form", { onSubmit: form.onSubmit(handleSubmit), children: /* @__PURE__ */ jsxs(Stack, { children: [
788
+ formSchema.fields.map((field) => /* @__PURE__ */ jsx(FormFieldRenderer, { field, form }, field.name)),
789
+ /* @__PURE__ */ jsx(Button, { type: "submit", loading: isPending, disabled, fullWidth: true, children: isPending ? formSchema.submitButton?.loadingLabel ?? "Running..." : submitLabel })
790
+ ] }) });
791
+ }
792
+ function ResourceExecuteDialog({ opened, onClose, resource, onViewExecution }) {
793
+ const mutation = useExecuteAsync();
794
+ const handleSubmit = async (input) => {
795
+ await mutation.mutateAsync({
796
+ resourceId: resource.resourceId,
797
+ resourceType: resource.resourceType,
798
+ input
799
+ });
800
+ };
801
+ const handleReset = () => {
802
+ mutation.reset();
803
+ };
804
+ const modalResource = {
805
+ resourceId: resource.resourceId,
806
+ resourceType: resource.resourceType,
807
+ name: resource.name
808
+ };
809
+ return /* @__PURE__ */ jsx(
810
+ ExecuteWorkflowModal,
811
+ {
812
+ opened,
813
+ onClose,
814
+ resource: modalResource,
815
+ isPending: mutation.isPending,
816
+ error: mutation.error,
817
+ result: mutation.data ?? null,
818
+ onViewExecution,
819
+ onReset: handleReset,
820
+ children: /* @__PURE__ */ jsx(
821
+ ResourceExecuteForm,
822
+ {
823
+ formSchema: resource.formSchema ?? { fields: [] },
824
+ onSubmit: handleSubmit,
825
+ isPending: mutation.isPending,
826
+ disabled: mutation.isPending
827
+ }
828
+ )
829
+ }
830
+ );
831
+ }
661
832
  function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel }) {
662
833
  const { organizationReady } = useInitialization();
663
834
  const { data, isLoading, error } = useResources();
664
835
  const [connected, setConnected] = useState(false);
665
836
  const [runningCount, setRunningCount] = useState(0);
837
+ const [runOpened, setRunOpened] = useState(false);
666
838
  const resource = data ? (() => {
667
839
  const resources = [...data.workflows, ...data.agents];
668
840
  const found = resources.find((r) => r.resourceId === resourceId && r.type === type);
@@ -696,7 +868,21 @@ function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel
696
868
  type,
697
869
  connected,
698
870
  runningCount,
699
- sessionCapable
871
+ sessionCapable,
872
+ onRun: () => setRunOpened(true)
873
+ }
874
+ ),
875
+ /* @__PURE__ */ jsx(
876
+ ResourceExecuteDialog,
877
+ {
878
+ opened: runOpened,
879
+ onClose: () => setRunOpened(false),
880
+ resource: {
881
+ resourceId,
882
+ resourceType: type,
883
+ name: validResource.name,
884
+ formSchema: resourceDefinition?.interface?.form
885
+ }
700
886
  }
701
887
  ),
702
888
  /* @__PURE__ */ jsx(ResourceHealthPanel, { resourceId, resourceType: type, timeRange }),
@@ -3588,4 +3774,4 @@ function AgentListItem({ agent, isSelected, onAgentClick }) {
3588
3774
  );
3589
3775
  }
3590
3776
 
3591
- export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandViewPage, CommandViewSidebarContent, ExecutionPanel, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel };
3777
+ export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel };
@@ -126,6 +126,16 @@
126
126
  }
127
127
 
128
128
  /* src/theme/custom.css */
129
+ .mantine-Button-root[data-variant=default] {
130
+ background-color: var(--color-surface);
131
+ backdrop-filter: var(--glass-blur);
132
+ -webkit-backdrop-filter: var(--glass-blur);
133
+ border: 1px solid var(--color-border);
134
+ color: var(--color-text);
135
+ }
136
+ .mantine-Button-root[data-variant=default]:hover {
137
+ background-color: var(--color-surface-hover);
138
+ }
129
139
  .mantine-Accordion-control:hover {
130
140
  background-color: var(--color-surface-hover);
131
141
  }
@@ -1,5 +1,5 @@
1
- import { useAvailablePresets } from '../../chunk-JTGMQUZA.js';
2
- import { OrganizationMembershipsList, WebhookUrlDisplayModal, MembershipFeaturePanel, MembershipStatusBadge, getCredentialSchema, OAuthConnectModal, buildCredentialValue } from '../../chunk-HOYZWSNV.js';
1
+ import { useAvailablePresets } from '../../chunk-TQBM3OEW.js';
2
+ import { OrganizationMembershipsList, WebhookUrlDisplayModal, MembershipFeaturePanel, MembershipStatusBadge, getCredentialSchema, OAuthConnectModal, buildCredentialValue } from '../../chunk-H3MU3WTM.js';
3
3
  import '../../chunk-PDHTXPSF.js';
4
4
  import { CustomModal } from '../../chunk-GBMNCNHX.js';
5
5
  import { PageTitleCaption, EmptyState, CardHeader, ListSkeleton, StatCard } from '../../chunk-IAZT3VO6.js';
@@ -7,8 +7,8 @@ import '../../chunk-3KMDHCAR.js';
7
7
  import '../../chunk-NNKKBSJN.js';
8
8
  import { AppShellLoader } from '../../chunk-WWEMNIHW.js';
9
9
  import '../../chunk-QJ2S46NI.js';
10
- import { useUserMemberships, useUpdateWebhookEndpoint, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, useUpdateMemberConfig, useOrganizationMembers, useUpdateCredential, CredentialSchemas } from '../../chunk-FATKFO7X.js';
11
- import { useResources, showErrorNotification } from '../../chunk-EDAYKRPJ.js';
10
+ import { useUserMemberships, useUpdateWebhookEndpoint, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, useUpdateMemberConfig, useOrganizationMembers, useUpdateCredential, CredentialSchemas } from '../../chunk-JTUX5FDC.js';
11
+ import { useResources, showErrorNotification } from '../../chunk-QDO6NF2I.js';
12
12
  import '../../chunk-NJJ3NQ7B.js';
13
13
  import '../../chunk-LXHZYSMQ.js';
14
14
  import '../../chunk-MHW43EOH.js';
@@ -17,9 +17,9 @@ import '../../chunk-ELJIFLCB.js';
17
17
  import '../../chunk-L4XXM55J.js';
18
18
  import '../../chunk-SLVC5OJ2.js';
19
19
  import '../../chunk-RNP5R5I3.js';
20
- import '../../chunk-BZZQLWLF.js';
20
+ import '../../chunk-TML32XBW.js';
21
21
  import '../../chunk-SZHARWKU.js';
22
- import '../../chunk-KEJOD532.js';
22
+ import '../../chunk-OH74INP2.js';
23
23
  import '../../chunk-JR2C4XAN.js';
24
24
  import '../../chunk-R7WLWGPO.js';
25
25
  import '../../chunk-NVOCKXUQ.js';
@@ -1,4 +1,14 @@
1
1
  /* src/theme/custom.css */
2
+ .mantine-Button-root[data-variant=default] {
3
+ background-color: var(--color-surface);
4
+ backdrop-filter: var(--glass-blur);
5
+ -webkit-backdrop-filter: var(--glass-blur);
6
+ border: 1px solid var(--color-border);
7
+ color: var(--color-text);
8
+ }
9
+ .mantine-Button-root[data-variant=default]:hover {
10
+ background-color: var(--color-surface-hover);
11
+ }
2
12
  .mantine-Accordion-control:hover {
3
13
  background-color: var(--color-surface-hover);
4
14
  }
@@ -5730,6 +5730,29 @@ interface ArchivedLogsState {
5730
5730
  */
5731
5731
  declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
5732
5732
 
5733
+ interface UseExecuteWorkflowOptions<TSchema extends z.ZodType> {
5734
+ schema: TSchema;
5735
+ }
5736
+ interface UseExecuteWorkflowParams<TSchema extends z.ZodType> {
5737
+ resourceId: string;
5738
+ resourceType: ExecuteAsyncParams['resourceType'];
5739
+ input: z.infer<TSchema>;
5740
+ }
5741
+ /**
5742
+ * Zod-validating wrapper around useExecuteAsync. Validates input against schema
5743
+ * before POSTing; rejects with a useful error on validation failure.
5744
+ */
5745
+ declare function useExecuteWorkflow<TSchema extends z.ZodType>(options: UseExecuteWorkflowOptions<TSchema>): {
5746
+ execute: (params: UseExecuteWorkflowParams<TSchema>) => Promise<ExecuteAsyncResult>;
5747
+ mutation: _tanstack_react_query.UseMutationResult<ExecuteAsyncResult, Error, ExecuteAsyncParams, unknown>;
5748
+ isPending: boolean;
5749
+ isSuccess: boolean;
5750
+ isError: boolean;
5751
+ error: Error | null;
5752
+ data: ExecuteAsyncResult | undefined;
5753
+ reset: () => void;
5754
+ };
5755
+
5733
5756
  interface UseActivitiesParams {
5734
5757
  limit?: number;
5735
5758
  offset?: number;
@@ -6026,14 +6049,7 @@ declare function useCostTrends(timeRange: TimeRange, granularity?: 'hour' | 'day
6026
6049
 
6027
6050
  declare function useCostByModel(timeRange: TimeRange): _tanstack_react_query.UseQueryResult<CostByModelResponse, Error>;
6028
6051
 
6029
- interface CostBreakdownItem {
6030
- resourceId: string;
6031
- resourceType: string;
6032
- model: string;
6033
- totalCost: number;
6034
- executionCount: number;
6035
- }
6036
- declare function useCostBreakdown(timeRange: TimeRange): _tanstack_react_query.UseQueryResult<CostBreakdownItem[], Error>;
6052
+ declare function useCostBreakdown(timeRange: TimeRange): _tanstack_react_query.UseQueryResult<CostBreakdownMetrics, Error>;
6037
6053
 
6038
6054
  declare function useDashboardMetrics(timeRange: TimeRange): _tanstack_react_query.UseQueryResult<unknown, Error>;
6039
6055
 
@@ -7768,5 +7784,5 @@ declare function useCalibrationSSE({ runId, manager, apiUrl, enabled }: UseCalib
7768
7784
  error?: string;
7769
7785
  };
7770
7786
 
7771
- export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calibrationKeys, createUseFeatureAccess, executionsKeys, filterByDomainFilters, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
7772
- export type { ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, CostBreakdownItem, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter$1 as StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
7787
+ export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calibrationKeys, createUseFeatureAccess, executionsKeys, filterByDomainFilters, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
7788
+ export type { ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter$1 as StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
@@ -1,13 +1,13 @@
1
- export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useOrganizationMembers, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-FATKFO7X.js';
2
- export { OperationsService, calibrationKeys, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-EDAYKRPJ.js';
1
+ export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useOrganizationMembers, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-JTUX5FDC.js';
2
+ export { OperationsService, calibrationKeys, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-QDO6NF2I.js';
3
3
  import '../chunk-NJJ3NQ7B.js';
4
4
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
5
5
  import '../chunk-F6RBK7NJ.js';
6
6
  import '../chunk-L4XXM55J.js';
7
7
  import '../chunk-RNP5R5I3.js';
8
- import '../chunk-BZZQLWLF.js';
8
+ import '../chunk-TML32XBW.js';
9
9
  import '../chunk-SZHARWKU.js';
10
- import '../chunk-KEJOD532.js';
10
+ import '../chunk-OH74INP2.js';
11
11
  import '../chunk-JR2C4XAN.js';
12
12
  import '../chunk-R7WLWGPO.js';
13
13
  import '../chunk-NVOCKXUQ.js';
@@ -1,4 +1,14 @@
1
1
  /* src/theme/custom.css */
2
+ .mantine-Button-root[data-variant=default] {
3
+ background-color: var(--color-surface);
4
+ backdrop-filter: var(--glass-blur);
5
+ -webkit-backdrop-filter: var(--glass-blur);
6
+ border: 1px solid var(--color-border);
7
+ color: var(--color-text);
8
+ }
9
+ .mantine-Button-root[data-variant=default]:hover {
10
+ background-color: var(--color-surface-hover);
11
+ }
2
12
  .mantine-Accordion-control:hover {
3
13
  background-color: var(--color-surface-hover);
4
14
  }