@elevasis/ui 2.10.1 → 2.11.0
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/app/index.js +2 -2
- package/dist/{chunk-TSX4I3NW.js → chunk-23PZ57GB.js} +1 -1
- package/dist/{chunk-6PNHW4X2.js → chunk-24UMQV5B.js} +51 -95
- package/dist/chunk-3ZMAGTWF.js +18 -0
- package/dist/{chunk-WHQXDETX.js → chunk-AQDBRRZD.js} +124 -5
- package/dist/{chunk-CLXMNMIS.js → chunk-BDENEI4Q.js} +536 -39
- package/dist/{chunk-GJVGV7QZ.js → chunk-BLQLWIOW.js} +276 -5
- package/dist/chunk-BRXELOHC.js +47 -0
- package/dist/{chunk-YQLE5HR5.js → chunk-BSCTPKXM.js} +2 -2
- package/dist/{chunk-N5CLIRBS.js → chunk-C7BX547M.js} +4 -4
- package/dist/{chunk-LPSBID5V.js → chunk-DJBORKTR.js} +1 -1
- package/dist/{chunk-AEBKE4IX.js → chunk-DKQQK3WX.js} +1 -1
- package/dist/{chunk-E3IFHX6A.js → chunk-DOFVHWAP.js} +483 -321
- package/dist/{chunk-XA34RETF.js → chunk-GHIPBT5V.js} +1 -14
- package/dist/{chunk-KYOF6NYW.js → chunk-KDAOCM66.js} +1 -1
- package/dist/{chunk-LW5NKRI7.js → chunk-L34DFR2K.js} +8 -52
- package/dist/{chunk-XB4NWSI3.js → chunk-TNOIOBYI.js} +2 -2
- package/dist/{chunk-M6ZZ2FW5.js → chunk-XYSMBMAR.js} +3 -3
- package/dist/components/index.d.ts +69 -3
- package/dist/components/index.js +22 -20
- package/dist/execution/index.js +2 -1
- package/dist/features/crm/index.d.ts +7 -2
- package/dist/features/crm/index.js +8 -6
- package/dist/features/dashboard/index.js +9 -7
- package/dist/features/delivery/index.d.ts +14 -1
- package/dist/features/delivery/index.js +8 -6
- package/dist/features/lead-gen/index.js +12 -10
- package/dist/features/monitoring/index.js +10 -8
- package/dist/features/operations/index.js +11 -9
- package/dist/features/settings/index.js +9 -7
- package/dist/hooks/index.d.ts +230 -51
- package/dist/hooks/index.js +7 -5
- package/dist/hooks/published.d.ts +230 -51
- package/dist/hooks/published.js +7 -5
- package/dist/index.d.ts +191 -22
- package/dist/index.js +9 -7
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.js +1 -1
- package/dist/supabase/index.js +2 -47
- package/dist/theme/index.js +2 -2
- package/dist/zustand/index.d.ts +0 -4
- package/dist/zustand/index.js +0 -10
- package/package.json +2 -2
|
@@ -4,19 +4,6 @@ import dagre from '@dagrejs/dagre';
|
|
|
4
4
|
import { IconCircleDot, IconLoader, IconAlertTriangle, IconX, IconCheck } from '@tabler/icons-react';
|
|
5
5
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
function useMergedExecution(fetchedExecution, streamingLogs) {
|
|
8
|
-
return useMemo(() => {
|
|
9
|
-
if (!fetchedExecution) return void 0;
|
|
10
|
-
if (!streamingLogs || streamingLogs.length === 0) return fetchedExecution;
|
|
11
|
-
const existingKeys = new Set(fetchedExecution.executionLogs.map((log) => `${log.timestamp}:${log.message}`));
|
|
12
|
-
const newLogs = streamingLogs.filter((log) => !existingKeys.has(`${log.timestamp}:${log.message}`));
|
|
13
|
-
if (newLogs.length === 0) return fetchedExecution;
|
|
14
|
-
return {
|
|
15
|
-
...fetchedExecution,
|
|
16
|
-
executionLogs: [...fetchedExecution.executionLogs, ...newLogs].sort((a, b) => a.timestamp - b.timestamp)
|
|
17
|
-
};
|
|
18
|
-
}, [fetchedExecution, streamingLogs]);
|
|
19
|
-
}
|
|
20
7
|
function useExecutionPath(executionLogs, workflowDefinition) {
|
|
21
8
|
return useMemo(() => {
|
|
22
9
|
if (!executionLogs || executionLogs.length === 0) {
|
|
@@ -818,4 +805,4 @@ function calculateBarPosition(startTime, endTime, executionStart, executionEnd)
|
|
|
818
805
|
};
|
|
819
806
|
}
|
|
820
807
|
|
|
821
|
-
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath,
|
|
808
|
+
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout };
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { ChatHeader, ChatSidebar } from './chunk-ROSMICXG.js';
|
|
2
2
|
import { SubshellLoader } from './chunk-ADSSLKKP.js';
|
|
3
|
-
import { ResourceHealthPanel } from './chunk-
|
|
3
|
+
import { ResourceHealthPanel } from './chunk-23PZ57GB.js';
|
|
4
4
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
5
5
|
import { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
6
6
|
import { CustomModal, ConfirmationModal } from './chunk-GBMNCNHX.js';
|
|
7
|
-
import { BaseNode, useGraphTheme, BaseEdge, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, GraphBackground, GraphFitViewButton, GraphFitViewHandler } from './chunk-
|
|
7
|
+
import { BaseNode, useGraphTheme, BaseEdge, FormFieldRenderer, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, GraphBackground, GraphFitViewButton, GraphFitViewHandler } from './chunk-BLQLWIOW.js';
|
|
8
8
|
import { useCyberColors, CyberDonut } from './chunk-STZJ7SY5.js';
|
|
9
9
|
import { AppShellLoader } from './chunk-YEX4MQSY.js';
|
|
10
|
-
import { getResourceStatusColor,
|
|
11
|
-
import { useErrorDetail, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, useCommandQueueTotals, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, useExecuteAsync, useResourceDefinition, isSessionCapable, useDeleteTask, useCommandQueue, useSubmitAction, useCommandViewData, useCommandViewStats, useCommandViewStore, useResourceExecutions, useCheckpointTasks, useExecutionPanelState, useDeleteSession, useCreateSession, useSessions, useSessionExecutions, useSession, showApiErrorNotification, showSuccessNotification, useBulkDeleteExecutions } from './chunk-
|
|
10
|
+
import { getResourceStatusColor, useTimelineData, useAgentIterationData, getStatusIcon } from './chunk-GHIPBT5V.js';
|
|
11
|
+
import { useErrorDetail, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, useCommandQueueTotals, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, useExecuteAsync, useResourceDefinition, isSessionCapable, useDeleteTask, useCommandQueue, useSubmitAction, useCommandViewData, useCommandViewStats, useCommandViewStore, useResourceExecutions, useCheckpointTasks, useExecutionPanelState, useDeleteSession, useCreateSession, useSessions, useSessionExecutions, useSession, showApiErrorNotification, showSuccessNotification, useBulkDeleteExecutions } from './chunk-DOFVHWAP.js';
|
|
12
12
|
import { useGraphHighlighting, calculateGraphHeight, Graph_module_css_default, GRAPH_CONSTANTS } from './chunk-22UVE3RA.js';
|
|
13
|
-
import {
|
|
13
|
+
import { useMergedExecution } from './chunk-3ZMAGTWF.js';
|
|
14
|
+
import { useOptionalElevasisFeatures, useElevasisFeatures } from './chunk-C7BX547M.js';
|
|
14
15
|
import { SubshellContentContainer } from './chunk-RX4UWZZR.js';
|
|
15
16
|
import { JsonViewer, CardHeader, PageTitleCaption, CollapsibleSection, TabCountBadge, ResourceCard, ContextViewer, EmptyState, APIErrorAlert } from './chunk-SQQGLGHW.js';
|
|
16
17
|
import { StyledMarkdown } from './chunk-3KMDHCAR.js';
|
|
@@ -23,7 +24,7 @@ import { useInitialization } from './chunk-TUXTSEAF.js';
|
|
|
23
24
|
import { useOrganization } from './chunk-DD3CCMCZ.js';
|
|
24
25
|
import { useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
25
26
|
import { z } from 'zod';
|
|
26
|
-
import { Stack, Group, Text, Badge,
|
|
27
|
+
import { Stack, Group, Text, Badge, Title, Textarea, Alert, Button, ActionIcon, Collapse, Card, ThemeIcon, SimpleGrid, Divider, Paper, Space, CopyButton, Center, Tooltip, Code, Menu, useMantineTheme, UnstyledButton, Select, RangeSlider, Loader, Box, Progress, Tabs, Pagination, TextInput, Modal, LoadingOverlay, SegmentedControl, Switch, ScrollArea, MultiSelect } from '@mantine/core';
|
|
27
28
|
import { IconBrain, IconFileText, IconMail, IconSend, IconClock, IconArrowUp, IconMessageCircle, IconRocket, IconEye, IconEdit, IconAlertTriangle, IconRefresh, IconX, IconCheck, IconCode, IconAlertCircle, IconChevronRight, IconTool, IconSettings, IconCpu, IconClockHour4, IconVersions, IconPlayerPlay, IconNetwork, IconSitemap, IconCopy, IconPlayerStop, IconReload, IconTrash, IconTerminal2, IconBug, IconChevronDown, IconMessage, IconArrowLeft, IconRobot, IconGitBranch, IconDotsVertical, IconFilter, IconCircleCheck, IconCategory, IconDatabase, IconApps, IconRoute, IconAdjustmentsHorizontal, IconSearch, IconCircleX, IconCircleDashed, IconExternalLink, IconTopologyStar3, IconInfoCircle, IconPlus, IconLayoutSidebarRightExpand, IconNote, IconArchive, IconDownload, IconTimeline, IconActivityHeartbeat, IconClockPause, IconArrowsMaximize, IconShare2, IconHistory } from '@tabler/icons-react';
|
|
28
29
|
import { useForm } from '@mantine/form';
|
|
29
30
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
@@ -731,51 +732,6 @@ function buildOrganizationGraph(input) {
|
|
|
731
732
|
};
|
|
732
733
|
return OrganizationGraphSchema.parse(graph);
|
|
733
734
|
}
|
|
734
|
-
function FormFieldRenderer({ field, form, richTextRenderer }) {
|
|
735
|
-
const commonProps = {
|
|
736
|
-
label: field.label,
|
|
737
|
-
description: field.description,
|
|
738
|
-
placeholder: field.placeholder,
|
|
739
|
-
required: field.required,
|
|
740
|
-
...form.getInputProps(field.name)
|
|
741
|
-
};
|
|
742
|
-
switch (field.type) {
|
|
743
|
-
case "text":
|
|
744
|
-
return /* @__PURE__ */ jsx(TextInput, { ...commonProps });
|
|
745
|
-
case "textarea":
|
|
746
|
-
return /* @__PURE__ */ jsx(Textarea, { ...commonProps, minRows: 3, autosize: true });
|
|
747
|
-
case "number":
|
|
748
|
-
return /* @__PURE__ */ jsx(NumberInput, { ...commonProps, min: field.min, max: field.max });
|
|
749
|
-
case "select":
|
|
750
|
-
return /* @__PURE__ */ jsx(
|
|
751
|
-
Select,
|
|
752
|
-
{
|
|
753
|
-
...commonProps,
|
|
754
|
-
data: field.options?.map((opt) => ({
|
|
755
|
-
label: opt.label,
|
|
756
|
-
value: String(opt.value)
|
|
757
|
-
})) || []
|
|
758
|
-
}
|
|
759
|
-
);
|
|
760
|
-
case "checkbox":
|
|
761
|
-
return /* @__PURE__ */ jsx(Checkbox, { ...commonProps, ...form.getInputProps(field.name, { type: "checkbox" }) });
|
|
762
|
-
case "radio":
|
|
763
|
-
return /* @__PURE__ */ jsx(Radio.Group, { ...commonProps, children: /* @__PURE__ */ jsx(Stack, { gap: "xs", children: field.options?.map((opt) => /* @__PURE__ */ jsx(Radio, { value: String(opt.value), label: opt.label }, opt.value)) }) });
|
|
764
|
-
case "richtext": {
|
|
765
|
-
const inputProps = form.getInputProps(field.name);
|
|
766
|
-
if (richTextRenderer) {
|
|
767
|
-
return richTextRenderer({
|
|
768
|
-
content: inputProps.value || "",
|
|
769
|
-
onChange: (content) => form.setFieldValue(field.name, content),
|
|
770
|
-
placeholder: field.placeholder
|
|
771
|
-
});
|
|
772
|
-
}
|
|
773
|
-
return /* @__PURE__ */ jsx(Textarea, { ...commonProps, minRows: 5, autosize: true });
|
|
774
|
-
}
|
|
775
|
-
default:
|
|
776
|
-
return /* @__PURE__ */ jsx(TextInput, { ...commonProps });
|
|
777
|
-
}
|
|
778
|
-
}
|
|
779
735
|
var iconMap = {
|
|
780
736
|
IconCheck,
|
|
781
737
|
IconX,
|
|
@@ -9074,4 +9030,4 @@ var operationsManifest = {
|
|
|
9074
9030
|
}
|
|
9075
9031
|
};
|
|
9076
9032
|
|
|
9077
|
-
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionPanel, AgentSessionGroup, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewPage, CommandViewSidebarContent, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecuteWorkflowModal, ExecutionErrorSection, ExecutionPanel,
|
|
9033
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionPanel, AgentSessionGroup, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewPage, CommandViewSidebarContent, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecuteWorkflowModal, ExecutionErrorSection, ExecutionPanel, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDefinitionSection, ResourceDetailPage, ResourceErrorState, ResourceExecuteDialog, ResourceExecuteForm, ResourceFilter, ResourceHeader, ResourceNotFoundState, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionMemory, SessionsPage, SessionsSidebar, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionPanel, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ResourceExecuteDialog } from './chunk-
|
|
1
|
+
import { ResourceExecuteDialog } from './chunk-L34DFR2K.js';
|
|
2
2
|
import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
|
|
3
3
|
import { PageContainer } from './chunk-BZZCNLT6.js';
|
|
4
4
|
import { SubshellNavItem } from './chunk-CEWTOKE7.js';
|
|
5
5
|
import { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
6
6
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
7
7
|
import { CustomModal } from './chunk-GBMNCNHX.js';
|
|
8
|
-
import { showApiErrorNotification, acquisitionListKeys, showSuccessNotification, useListsTelemetry, useLists, useCreateList, useTableSort, sortData, usePaginationState, useTableSelection, useList, useListProgress, useListExecutions, useResourceDefinition, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts } from './chunk-
|
|
8
|
+
import { showApiErrorNotification, acquisitionListKeys, showSuccessNotification, useListsTelemetry, useLists, useCreateList, useTableSort, sortData, usePaginationState, useTableSelection, useList, useListProgress, useListExecutions, useResourceDefinition, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts } from './chunk-DOFVHWAP.js';
|
|
9
9
|
import { SubshellContentContainer } from './chunk-RX4UWZZR.js';
|
|
10
10
|
import { PageTitleCaption, CenteredErrorState, StatCard, EmptyState } from './chunk-SQQGLGHW.js';
|
|
11
11
|
import { useElevasisServices } from './chunk-QEPXAWE2.js';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { FilterBar } from './chunk-PDHTXPSF.js';
|
|
2
2
|
import { CustomModal } from './chunk-GBMNCNHX.js';
|
|
3
3
|
import { AppShellLoader } from './chunk-YEX4MQSY.js';
|
|
4
|
-
import { useAvailablePresets } from './chunk-
|
|
5
|
-
import { useDeleteCredential, useCreateCredential, useCredentials, MEMBERSHIP_STATUS_COLORS, transformMembershipToTableRow, useUserMemberships, useUpdateWebhookEndpoint, useResources, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, useUpdateMemberConfig, useOrganizationMembers, useUpdateCredential, CredentialSchemas, showErrorNotification } from './chunk-
|
|
4
|
+
import { useAvailablePresets } from './chunk-KDAOCM66.js';
|
|
5
|
+
import { useDeleteCredential, useCreateCredential, useCredentials, MEMBERSHIP_STATUS_COLORS, transformMembershipToTableRow, useUserMemberships, useUpdateWebhookEndpoint, useResources, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, useUpdateMemberConfig, useOrganizationMembers, useUpdateCredential, CredentialSchemas, showErrorNotification } from './chunk-DOFVHWAP.js';
|
|
6
6
|
import { ListSkeleton, EmptyState, PageTitleCaption, CardHeader, APIErrorAlert, StatCard } from './chunk-SQQGLGHW.js';
|
|
7
7
|
import { formatDateTime, OAUTH_POPUP_CHECK_INTERVAL, OAUTH_FLOW_TIMEOUT } from './chunk-IOKL7BKE.js';
|
|
8
8
|
import { useInitialization } from './chunk-TUXTSEAF.js';
|
|
@@ -1444,7 +1444,7 @@ function WebhookEndpointSettings({ apiUrl }) {
|
|
|
1444
1444
|
};
|
|
1445
1445
|
const activeCount = endpoints.filter((e) => e.status === "active").length;
|
|
1446
1446
|
const totalRequests = endpoints.reduce((sum, e) => sum + e.requestCount, 0);
|
|
1447
|
-
return /* @__PURE__ */ jsxs(
|
|
1447
|
+
return /* @__PURE__ */ jsxs(Stack, { children: [
|
|
1448
1448
|
/* @__PURE__ */ jsx(
|
|
1449
1449
|
PageTitleCaption,
|
|
1450
1450
|
{
|
|
@@ -5,9 +5,9 @@ import React__default, { ComponentType, ReactNode, CSSProperties, ReactElement }
|
|
|
5
5
|
import { Icon, IconCheck } from '@tabler/icons-react';
|
|
6
6
|
import { Components } from 'react-markdown';
|
|
7
7
|
import { UseFormReturnType } from '@mantine/form';
|
|
8
|
+
import { z } from 'zod';
|
|
8
9
|
import { NodeProps, Node, EdgeProps, Edge } from '@xyflow/react';
|
|
9
10
|
export { default as graphStyles } from '../graph/Graph.module.css';
|
|
10
|
-
import { z } from 'zod';
|
|
11
11
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
12
12
|
|
|
13
13
|
interface EmptyStateProps {
|
|
@@ -6757,6 +6757,12 @@ declare const GetRecentActivityResponseSchema = z.object({
|
|
|
6757
6757
|
})
|
|
6758
6758
|
type GetRecentActivityResponse = z.infer<typeof GetRecentActivityResponseSchema>
|
|
6759
6759
|
|
|
6760
|
+
interface ExecuteAsyncResult {
|
|
6761
|
+
executionId: string;
|
|
6762
|
+
status: string;
|
|
6763
|
+
resourceId: string;
|
|
6764
|
+
}
|
|
6765
|
+
|
|
6760
6766
|
type SortDirection = 'asc' | 'desc';
|
|
6761
6767
|
interface SortState {
|
|
6762
6768
|
column: string;
|
|
@@ -6981,6 +6987,33 @@ interface FormFieldRendererProps {
|
|
|
6981
6987
|
}
|
|
6982
6988
|
declare function FormFieldRenderer({ field, form, richTextRenderer }: FormFieldRendererProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
6983
6989
|
|
|
6990
|
+
interface ZodFormRendererProps<TSchema extends z.ZodType> {
|
|
6991
|
+
schema: TSchema;
|
|
6992
|
+
defaults?: Partial<z.infer<TSchema>>;
|
|
6993
|
+
onSubmit: (data: z.infer<TSchema>) => void | Promise<void>;
|
|
6994
|
+
submitLabel?: string;
|
|
6995
|
+
isPending?: boolean;
|
|
6996
|
+
}
|
|
6997
|
+
/**
|
|
6998
|
+
* Full-form renderer that introspects a Zod schema and renders a Mantine form.
|
|
6999
|
+
*
|
|
7000
|
+
* Supported top-level types: ZodObject (iterates shape), ZodString, ZodNumber,
|
|
7001
|
+
* ZodBoolean, ZodEnum, ZodOptional/Nullable wrappers around any of the above.
|
|
7002
|
+
* Unsupported types fall back to a JSON textarea — the form always renders.
|
|
7003
|
+
*
|
|
7004
|
+
* Does NOT use mantine-form-zod-resolver (not a @repo/ui dependency). Validation
|
|
7005
|
+
* is performed via schema.safeParse inside the submit handler.
|
|
7006
|
+
*
|
|
7007
|
+
* @example
|
|
7008
|
+
* <ZodFormRenderer
|
|
7009
|
+
* schema={writeNoteInputSchema}
|
|
7010
|
+
* defaults={{ dealId: currentDeal.id }}
|
|
7011
|
+
* onSubmit={async (data) => { await execute(data) }}
|
|
7012
|
+
* submitLabel="Write Note"
|
|
7013
|
+
* />
|
|
7014
|
+
*/
|
|
7015
|
+
declare function ZodFormRenderer<TSchema extends z.ZodType>({ schema, defaults, onSubmit, submitLabel, isPending }: ZodFormRendererProps<TSchema>): react_jsx_runtime.JSX.Element;
|
|
7016
|
+
|
|
6984
7017
|
interface ExecutionLogEntry {
|
|
6985
7018
|
id: string;
|
|
6986
7019
|
resourceId: string;
|
|
@@ -7446,6 +7479,39 @@ declare const AgentIterationNode: React$1.NamedExoticComponent<NodeProps>;
|
|
|
7446
7479
|
|
|
7447
7480
|
declare const AgentIterationEdge: React$1.NamedExoticComponent<EdgeProps>;
|
|
7448
7481
|
|
|
7482
|
+
type RunResourceInputResolver = (() => Record<string, unknown>) | (() => {
|
|
7483
|
+
schema: z.ZodType;
|
|
7484
|
+
defaults: Record<string, unknown>;
|
|
7485
|
+
}) | (() => {
|
|
7486
|
+
schema: z.ZodType;
|
|
7487
|
+
});
|
|
7488
|
+
interface RunResourceButtonProps {
|
|
7489
|
+
resourceId: string;
|
|
7490
|
+
resourceType: 'workflow' | 'agent' | 'trigger';
|
|
7491
|
+
getInput: RunResourceInputResolver;
|
|
7492
|
+
label?: string;
|
|
7493
|
+
icon?: ReactNode;
|
|
7494
|
+
color?: string;
|
|
7495
|
+
organizationModel?: {
|
|
7496
|
+
resourceMappings?: Array<{
|
|
7497
|
+
resourceId: string;
|
|
7498
|
+
label?: string;
|
|
7499
|
+
color?: string;
|
|
7500
|
+
}>;
|
|
7501
|
+
};
|
|
7502
|
+
onSuccess?: (result: ExecuteAsyncResult) => void;
|
|
7503
|
+
onError?: (error: Error) => void;
|
|
7504
|
+
}
|
|
7505
|
+
/**
|
|
7506
|
+
* A Mantine Button that executes a resource (workflow, agent, or trigger).
|
|
7507
|
+
*
|
|
7508
|
+
* - If getInput() returns a plain object, executes immediately.
|
|
7509
|
+
* - If getInput() returns { schema, defaults? }, opens a modal with ZodFormRenderer.
|
|
7510
|
+
*
|
|
7511
|
+
* Label and color resolve from: explicit props > resourceMappings entry > defaults.
|
|
7512
|
+
*/
|
|
7513
|
+
declare function RunResourceButton({ resourceId, resourceType, getInput, label, icon, color, organizationModel, onSuccess, onError }: RunResourceButtonProps): react_jsx_runtime.JSX.Element;
|
|
7514
|
+
|
|
7449
7515
|
/**
|
|
7450
7516
|
* Graph Component Types
|
|
7451
7517
|
*
|
|
@@ -8766,5 +8832,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
8766
8832
|
|
|
8767
8833
|
declare const operationsManifest: FeatureModule;
|
|
8768
8834
|
|
|
8769
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8770
|
-
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CrmOverviewProps, DealDrawerProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps };
|
|
8835
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8836
|
+
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CrmOverviewProps, DealDrawerProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
|
package/dist/components/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { CollapsibleSidebarGroup } from '../chunk-4BF74JVD.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
|
|
3
|
-
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-
|
|
4
|
-
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-
|
|
5
|
-
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection,
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-BDENEI4Q.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-TNOIOBYI.js';
|
|
5
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-L34DFR2K.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import { SubshellLoader } from '../chunk-ADSSLKKP.js';
|
|
8
8
|
import '../chunk-G2TDX3W6.js';
|
|
9
|
-
import { NotificationList } from '../chunk-
|
|
10
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
11
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
9
|
+
import { NotificationList } from '../chunk-BSCTPKXM.js';
|
|
10
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-BSCTPKXM.js';
|
|
11
|
+
export { ResourceHealthPanel } from '../chunk-23PZ57GB.js';
|
|
12
12
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-AL23U6C3.js';
|
|
13
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-
|
|
14
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
13
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-XYSMBMAR.js';
|
|
14
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-AQDBRRZD.js';
|
|
15
15
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
16
16
|
import { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
17
17
|
import { SubshellNavItem } from '../chunk-CEWTOKE7.js';
|
|
@@ -20,24 +20,26 @@ import { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
|
20
20
|
export { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
21
21
|
import { CustomModal } from '../chunk-GBMNCNHX.js';
|
|
22
22
|
export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk-GBMNCNHX.js';
|
|
23
|
-
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-
|
|
24
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-
|
|
23
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-BLQLWIOW.js';
|
|
24
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-BLQLWIOW.js';
|
|
25
25
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
26
26
|
import '../chunk-STZJ7SY5.js';
|
|
27
27
|
import { AppShellLoader } from '../chunk-YEX4MQSY.js';
|
|
28
|
-
import '../chunk-
|
|
29
|
-
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-
|
|
28
|
+
import '../chunk-KDAOCM66.js';
|
|
29
|
+
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-GHIPBT5V.js';
|
|
30
30
|
import '../chunk-7M2VOCYN.js';
|
|
31
|
-
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-
|
|
32
|
-
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-
|
|
31
|
+
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-DOFVHWAP.js';
|
|
32
|
+
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-DOFVHWAP.js';
|
|
33
33
|
import '../chunk-LXHZYSMQ.js';
|
|
34
|
+
import '../chunk-BRXELOHC.js';
|
|
34
35
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
|
|
35
36
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
36
|
-
import '../chunk-
|
|
37
|
-
import '../chunk-
|
|
38
|
-
import '../chunk-
|
|
37
|
+
import '../chunk-3ZMAGTWF.js';
|
|
38
|
+
import '../chunk-DKQQK3WX.js';
|
|
39
|
+
import '../chunk-DJBORKTR.js';
|
|
40
|
+
import '../chunk-24UMQV5B.js';
|
|
39
41
|
import '../chunk-F4TPY6YL.js';
|
|
40
|
-
import '../chunk-
|
|
42
|
+
import '../chunk-C7BX547M.js';
|
|
41
43
|
import { SubshellContainer, SubshellSidebar, SubshellRightSideContainer, SubshellContentContainer } from '../chunk-RX4UWZZR.js';
|
|
42
44
|
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-SQQGLGHW.js';
|
|
43
45
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-SQQGLGHW.js';
|
|
@@ -370,7 +372,7 @@ function ApiKeySettings() {
|
|
|
370
372
|
const dayAgo = new Date(Date.now() - 24 * 60 * 60 * 1e3);
|
|
371
373
|
return lastUsed > dayAgo;
|
|
372
374
|
}).length;
|
|
373
|
-
return /* @__PURE__ */ jsxs(
|
|
375
|
+
return /* @__PURE__ */ jsxs(Stack, { children: [
|
|
374
376
|
/* @__PURE__ */ jsx(
|
|
375
377
|
PageTitleCaption,
|
|
376
378
|
{
|
|
@@ -688,7 +690,7 @@ function DeploymentSettings() {
|
|
|
688
690
|
if (!isReady) return /* @__PURE__ */ jsx(AppShellLoader, {});
|
|
689
691
|
const totalDeployments = deployments.length;
|
|
690
692
|
const activeDeployment = deployments.find((d) => d.status === "active");
|
|
691
|
-
return /* @__PURE__ */ jsxs(
|
|
693
|
+
return /* @__PURE__ */ jsxs(Stack, { children: [
|
|
692
694
|
/* @__PURE__ */ jsx(PageTitleCaption, { title: "Deployments", caption: "View deployment history for externally deployed SDK bundles" }),
|
|
693
695
|
/* @__PURE__ */ jsxs(SimpleGrid, { cols: 3, children: [
|
|
694
696
|
/* @__PURE__ */ jsx(
|
package/dist/execution/index.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath,
|
|
1
|
+
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from '../chunk-GHIPBT5V.js';
|
|
2
|
+
export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
|
|
2
3
|
import '../chunk-ELJIFLCB.js';
|
|
@@ -2780,5 +2780,10 @@ interface DealDetailPageProps {
|
|
|
2780
2780
|
}
|
|
2781
2781
|
declare function DealDetailPage({ dealId, renderActions, onDealLoaded }: DealDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
2782
2782
|
|
|
2783
|
-
|
|
2784
|
-
|
|
2783
|
+
interface CompanyDetailPageProps {
|
|
2784
|
+
companyId: string;
|
|
2785
|
+
}
|
|
2786
|
+
declare function CompanyDetailPage({ companyId }: CompanyDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
2787
|
+
|
|
2788
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity };
|
|
2789
|
+
export type { ActivityFeedWidgetProps, CompanyDetailPageProps, RecentActivityEntry as CrmActivityEntry, CrmActivityKind, CrmOverviewProps, CrmQuickMetrics, CrmSidebarMiddleProps, MyTasksPanelProps, PipelineFunnelWidgetProps, PipelineStageSummary, QuickCreateActionsProps, SavedViewPreset, SavedViewsPanelProps, TasksDueWidgetProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-AQDBRRZD.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-CEWTOKE7.js';
|
|
@@ -6,14 +6,16 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
8
|
import '../../chunk-7M2VOCYN.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-DOFVHWAP.js';
|
|
10
10
|
import '../../chunk-LXHZYSMQ.js';
|
|
11
|
+
import '../../chunk-BRXELOHC.js';
|
|
11
12
|
import '../../chunk-22UVE3RA.js';
|
|
12
|
-
import '../../chunk-
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
14
|
+
import '../../chunk-DKQQK3WX.js';
|
|
15
|
+
import '../../chunk-DJBORKTR.js';
|
|
16
|
+
import '../../chunk-24UMQV5B.js';
|
|
15
17
|
import '../../chunk-F4TPY6YL.js';
|
|
16
|
-
import '../../chunk-
|
|
18
|
+
import '../../chunk-C7BX547M.js';
|
|
17
19
|
import '../../chunk-RX4UWZZR.js';
|
|
18
20
|
import '../../chunk-SQQGLGHW.js';
|
|
19
21
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-BLQLWIOW.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
3
|
import '../../chunk-STZJ7SY5.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-GHIPBT5V.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-DOFVHWAP.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
|
+
import '../../chunk-BRXELOHC.js';
|
|
9
10
|
import '../../chunk-22UVE3RA.js';
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-
|
|
12
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
12
|
+
import '../../chunk-DKQQK3WX.js';
|
|
13
|
+
import '../../chunk-DJBORKTR.js';
|
|
14
|
+
import '../../chunk-24UMQV5B.js';
|
|
13
15
|
import '../../chunk-F4TPY6YL.js';
|
|
14
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-C7BX547M.js';
|
|
15
17
|
import '../../chunk-RX4UWZZR.js';
|
|
16
18
|
import '../../chunk-SQQGLGHW.js';
|
|
17
19
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
|
|
4
|
+
interface CreateDeliveryEntityModalProps {
|
|
5
|
+
opened: boolean;
|
|
6
|
+
onClose: () => void;
|
|
7
|
+
projectId: string;
|
|
8
|
+
entityType: 'task' | 'milestone';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Single modal for creating a task or milestone, discriminated by `entityType`.
|
|
12
|
+
* Shared form shell: name + description + (task only) type + optional milestone_id.
|
|
13
|
+
* On success the modal closes; cache invalidation is handled by the mutation hooks.
|
|
14
|
+
*/
|
|
15
|
+
declare function CreateDeliveryEntityModal({ opened, onClose, projectId, entityType }: CreateDeliveryEntityModalProps): react_jsx_runtime.JSX.Element;
|
|
16
|
+
|
|
4
17
|
interface HealthStatusCardProps {
|
|
5
18
|
status: string;
|
|
6
19
|
milestoneCount: number;
|
|
@@ -2599,5 +2612,5 @@ declare const noteTypeColors: Record<string, string>;
|
|
|
2599
2612
|
declare function formatStatusLabel(status: string): string;
|
|
2600
2613
|
declare function calculateProgress(completed: number, total: number): number;
|
|
2601
2614
|
|
|
2602
|
-
export { AllTasksPage, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors };
|
|
2615
|
+
export { AllTasksPage, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors };
|
|
2603
2616
|
export type { ProjectsSidebarMiddleProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AllTasksPage, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-BDENEI4Q.js';
|
|
2
2
|
import '../../chunk-G2TDX3W6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-BZZCNLT6.js';
|
|
@@ -7,14 +7,16 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
7
7
|
import '../../chunk-PDHTXPSF.js';
|
|
8
8
|
import '../../chunk-GBMNCNHX.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-DOFVHWAP.js';
|
|
11
11
|
import '../../chunk-LXHZYSMQ.js';
|
|
12
|
+
import '../../chunk-BRXELOHC.js';
|
|
12
13
|
import '../../chunk-22UVE3RA.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
15
|
+
import '../../chunk-DKQQK3WX.js';
|
|
16
|
+
import '../../chunk-DJBORKTR.js';
|
|
17
|
+
import '../../chunk-24UMQV5B.js';
|
|
16
18
|
import '../../chunk-F4TPY6YL.js';
|
|
17
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-C7BX547M.js';
|
|
18
20
|
import '../../chunk-RX4UWZZR.js';
|
|
19
21
|
import '../../chunk-SQQGLGHW.js';
|
|
20
22
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,29 +1,31 @@
|
|
|
1
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-TNOIOBYI.js';
|
|
2
|
+
import '../../chunk-L34DFR2K.js';
|
|
3
3
|
import '../../chunk-ROSMICXG.js';
|
|
4
4
|
import '../../chunk-ADSSLKKP.js';
|
|
5
5
|
import '../../chunk-G2TDX3W6.js';
|
|
6
|
-
import '../../chunk-
|
|
6
|
+
import '../../chunk-23PZ57GB.js';
|
|
7
7
|
import '../../chunk-TUMSNGTX.js';
|
|
8
8
|
import '../../chunk-BZZCNLT6.js';
|
|
9
9
|
import '../../chunk-CEWTOKE7.js';
|
|
10
10
|
import '../../chunk-IIMU5YAJ.js';
|
|
11
11
|
import '../../chunk-PDHTXPSF.js';
|
|
12
12
|
import '../../chunk-GBMNCNHX.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-BLQLWIOW.js';
|
|
14
14
|
import '../../chunk-LGKLC5MG.js';
|
|
15
15
|
import '../../chunk-STZJ7SY5.js';
|
|
16
16
|
import '../../chunk-YEX4MQSY.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-GHIPBT5V.js';
|
|
18
18
|
import '../../chunk-7M2VOCYN.js';
|
|
19
|
-
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-
|
|
19
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-DOFVHWAP.js';
|
|
20
20
|
import '../../chunk-LXHZYSMQ.js';
|
|
21
|
+
import '../../chunk-BRXELOHC.js';
|
|
21
22
|
import '../../chunk-22UVE3RA.js';
|
|
22
|
-
import '../../chunk-
|
|
23
|
-
import '../../chunk-
|
|
24
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
24
|
+
import '../../chunk-DKQQK3WX.js';
|
|
25
|
+
import '../../chunk-DJBORKTR.js';
|
|
26
|
+
import '../../chunk-24UMQV5B.js';
|
|
25
27
|
import '../../chunk-F4TPY6YL.js';
|
|
26
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-C7BX547M.js';
|
|
27
29
|
import '../../chunk-RX4UWZZR.js';
|
|
28
30
|
import '../../chunk-SQQGLGHW.js';
|
|
29
31
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-BSCTPKXM.js';
|
|
2
|
+
import '../../chunk-23PZ57GB.js';
|
|
3
3
|
import '../../chunk-PDHTXPSF.js';
|
|
4
4
|
import '../../chunk-GBMNCNHX.js';
|
|
5
5
|
import '../../chunk-LGKLC5MG.js';
|
|
6
6
|
import '../../chunk-STZJ7SY5.js';
|
|
7
7
|
import '../../chunk-YEX4MQSY.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-GHIPBT5V.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-DOFVHWAP.js';
|
|
11
11
|
import '../../chunk-LXHZYSMQ.js';
|
|
12
|
+
import '../../chunk-BRXELOHC.js';
|
|
12
13
|
import '../../chunk-22UVE3RA.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
15
|
+
import '../../chunk-DKQQK3WX.js';
|
|
16
|
+
import '../../chunk-DJBORKTR.js';
|
|
17
|
+
import '../../chunk-24UMQV5B.js';
|
|
16
18
|
import '../../chunk-F4TPY6YL.js';
|
|
17
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-C7BX547M.js';
|
|
18
20
|
import '../../chunk-RX4UWZZR.js';
|
|
19
21
|
import '../../chunk-SQQGLGHW.js';
|
|
20
22
|
import '../../chunk-3KMDHCAR.js';
|