@elevasis/ui 2.17.0 → 2.18.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/charts/index.js +2 -2
- package/dist/{chunk-ABUDMATM.js → chunk-66VY5EMV.js} +4 -4
- package/dist/{chunk-2TDZBYXI.js → chunk-A2AZY5SF.js} +1 -1
- package/dist/{chunk-FNWWVX5N.js → chunk-B6FIIEFO.js} +245 -86
- package/dist/{chunk-MJ6YV2B5.js → chunk-DDZMBNTY.js} +1 -1
- package/dist/{chunk-R7GKX4HW.js → chunk-EY322HXF.js} +175 -78
- package/dist/{chunk-JU6UB4YA.js → chunk-FM6LSZ45.js} +3 -3
- package/dist/{chunk-OCCZRPER.js → chunk-I3LQGLUC.js} +1 -1
- package/dist/{chunk-MDO4UCEJ.js → chunk-LT33DSMO.js} +45 -80
- package/dist/{chunk-TP5NMF6K.js → chunk-P6TC4K7I.js} +3 -3
- package/dist/{chunk-TTP62HWW.js → chunk-SQPM2QDH.js} +7 -13
- package/dist/{chunk-S6CYH4RI.js → chunk-SS2UVUSG.js} +27 -5
- package/dist/{chunk-MUZIYL5Q.js → chunk-UA36WILN.js} +83 -310
- package/dist/{chunk-OXWQQCDR.js → chunk-WP3IYOVJ.js} +226 -211
- package/dist/components/index.d.ts +9 -4
- package/dist/components/index.js +32 -18
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.js +6 -6
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +152 -16
- package/dist/features/lead-gen/index.js +9 -9
- package/dist/features/monitoring/index.js +7 -7
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.d.ts +1 -0
- package/dist/features/operations/index.js +8 -8
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +359 -46
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +359 -46
- package/dist/hooks/published.js +4 -4
- package/dist/index.d.ts +359 -46
- package/dist/index.js +4 -4
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.js +2 -2
- package/dist/types/index.d.ts +12 -6
- package/dist/zustand/index.js +2 -2
- package/package.json +3 -3
|
@@ -8256,8 +8256,12 @@ interface ResourceHeaderProps {
|
|
|
8256
8256
|
connected?: boolean;
|
|
8257
8257
|
runningCount?: number;
|
|
8258
8258
|
sessionCapable?: boolean;
|
|
8259
|
+
organizationName?: string;
|
|
8260
|
+
onRun?: () => void;
|
|
8261
|
+
onNavigateToResources?: () => void;
|
|
8262
|
+
onNavigateToSessions?: () => void;
|
|
8259
8263
|
}
|
|
8260
|
-
declare function ResourceHeader({ resource, type, connected, runningCount, sessionCapable }: ResourceHeaderProps): react_jsx_runtime.JSX.Element;
|
|
8264
|
+
declare function ResourceHeader({ resource, type, connected, runningCount, sessionCapable, organizationName: organizationNameProp, onRun, onNavigateToResources, onNavigateToSessions }: ResourceHeaderProps): react_jsx_runtime.JSX.Element;
|
|
8261
8265
|
|
|
8262
8266
|
interface ResourceErrorStateProps {
|
|
8263
8267
|
error: Error;
|
|
@@ -8662,8 +8666,10 @@ interface OrganizationMembershipsListProps {
|
|
|
8662
8666
|
memberships: MembershipWithDetails[];
|
|
8663
8667
|
loading: boolean;
|
|
8664
8668
|
error?: Error | null;
|
|
8669
|
+
onEditRole?: (membershipId: string) => void;
|
|
8670
|
+
onLeaveOrganization?: (membershipId: string) => void;
|
|
8665
8671
|
}
|
|
8666
|
-
declare function OrganizationMembershipsList({ memberships, loading, error }: OrganizationMembershipsListProps): react_jsx_runtime.JSX.Element;
|
|
8672
|
+
declare function OrganizationMembershipsList({ memberships, loading, error, onEditRole, onLeaveOrganization }: OrganizationMembershipsListProps): react_jsx_runtime.JSX.Element;
|
|
8667
8673
|
|
|
8668
8674
|
interface WebhookUrlDisplayModalProps {
|
|
8669
8675
|
opened: boolean;
|
|
@@ -9002,7 +9008,6 @@ declare function buildListConfig(template: LeadGenListTemplateValue, targetDescr
|
|
|
9002
9008
|
declare function useDeleteLists(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
9003
9009
|
|
|
9004
9010
|
declare function LeadGenOverviewPage(): react_jsx_runtime.JSX.Element;
|
|
9005
|
-
declare function LeadGenDeliverabilityPage(): react_jsx_runtime.JSX.Element;
|
|
9006
9011
|
|
|
9007
9012
|
declare function LeadGenListsPage(): react_jsx_runtime.JSX.Element;
|
|
9008
9013
|
|
|
@@ -9102,5 +9107,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
9102
9107
|
|
|
9103
9108
|
declare const operationsManifest: FeatureModule;
|
|
9104
9109
|
|
|
9105
|
-
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, 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, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage,
|
|
9110
|
+
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, 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, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, 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 };
|
|
9106
9111
|
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,23 +1,23 @@
|
|
|
1
1
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
|
|
2
2
|
import '../chunk-6GUW5GGF.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,
|
|
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-
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-B6FIIEFO.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-UA36WILN.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-WP3IYOVJ.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import '../chunk-ADSSLKKP.js';
|
|
8
8
|
import '../chunk-ZTWA5H77.js';
|
|
9
|
-
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-
|
|
10
|
-
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-
|
|
9
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-66VY5EMV.js';
|
|
10
|
+
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-66VY5EMV.js';
|
|
11
11
|
import '../chunk-442LZPIR.js';
|
|
12
|
-
import { NotificationList } from '../chunk-
|
|
13
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
14
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
12
|
+
import { NotificationList } from '../chunk-P6TC4K7I.js';
|
|
13
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-P6TC4K7I.js';
|
|
14
|
+
export { ResourceHealthPanel } from '../chunk-FM6LSZ45.js';
|
|
15
15
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
16
|
-
import '../chunk-
|
|
16
|
+
import '../chunk-DDZMBNTY.js';
|
|
17
17
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-AL23U6C3.js';
|
|
18
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-
|
|
18
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-SS2UVUSG.js';
|
|
19
19
|
import { AppShellLoader } from '../chunk-M25JL54Z.js';
|
|
20
|
-
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-
|
|
20
|
+
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-LT33DSMO.js';
|
|
21
21
|
import '../chunk-BZZCNLT6.js';
|
|
22
22
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
23
23
|
import '../chunk-CEWTOKE7.js';
|
|
@@ -29,7 +29,7 @@ export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk
|
|
|
29
29
|
import '../chunk-6RWMRQN5.js';
|
|
30
30
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-E4WQGJNS.js';
|
|
31
31
|
import '../chunk-7M2VOCYN.js';
|
|
32
|
-
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-
|
|
32
|
+
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-EY322HXF.js';
|
|
33
33
|
import '../chunk-BRXELOHC.js';
|
|
34
34
|
import '../chunk-QSTH6T77.js';
|
|
35
35
|
import { showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-GRGRBWIO.js';
|
|
@@ -37,15 +37,15 @@ export { showApiErrorNotification, showErrorNotification, showInfoNotification,
|
|
|
37
37
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
|
|
38
38
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
39
39
|
import '../chunk-3ZMAGTWF.js';
|
|
40
|
-
import '../chunk-
|
|
40
|
+
import '../chunk-I3LQGLUC.js';
|
|
41
41
|
import '../chunk-34NQLV2W.js';
|
|
42
42
|
import '../chunk-R73EHHPN.js';
|
|
43
43
|
import '../chunk-WLOQ4IBG.js';
|
|
44
|
-
import '../chunk-
|
|
44
|
+
import '../chunk-A2AZY5SF.js';
|
|
45
45
|
import '../chunk-P3TFNFZS.js';
|
|
46
46
|
import { SubshellContentContainer } from '../chunk-RX4UWZZR.js';
|
|
47
|
-
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-
|
|
48
|
-
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-
|
|
47
|
+
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-SQPM2QDH.js';
|
|
48
|
+
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-SQPM2QDH.js';
|
|
49
49
|
export { ElevasisLoader } from '../chunk-SZHARWKU.js';
|
|
50
50
|
export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
|
|
51
51
|
export { NavigationButton } from '../chunk-NYBEU5TE.js';
|
|
@@ -3241,6 +3241,7 @@ function DealDrawer({ deal, config, opened, onClose, renderActions }) {
|
|
|
3241
3241
|
);
|
|
3242
3242
|
}
|
|
3243
3243
|
var UNSTAGED_KEY = "unstaged";
|
|
3244
|
+
var KANBAN_FETCH_LIMIT = 250;
|
|
3244
3245
|
function formatStageLabel2(stage) {
|
|
3245
3246
|
if (stage === UNSTAGED_KEY) return "Unstaged";
|
|
3246
3247
|
return stage.split("_").map((word) => word.charAt(0).toUpperCase() + word.slice(1)).join(" ");
|
|
@@ -3260,7 +3261,10 @@ function groupDealsByStage(deals, columns) {
|
|
|
3260
3261
|
return map;
|
|
3261
3262
|
}
|
|
3262
3263
|
function KanbanBoard({ config, renderDrawerActions }) {
|
|
3263
|
-
const { data: deals, isLoading, error } = useDeals(
|
|
3264
|
+
const { data: deals, total, isLoading, error } = useDeals({
|
|
3265
|
+
limit: KANBAN_FETCH_LIMIT,
|
|
3266
|
+
offset: 0
|
|
3267
|
+
});
|
|
3264
3268
|
const syncStage = useSyncDealStage();
|
|
3265
3269
|
const queryClient = useQueryClient();
|
|
3266
3270
|
const [selectedDeal, setSelectedDeal] = useState(null);
|
|
@@ -3300,7 +3304,10 @@ function KanbanBoard({ config, renderDrawerActions }) {
|
|
|
3300
3304
|
if (deal.cached_stage === targetStage) return;
|
|
3301
3305
|
queryClient.setQueriesData({ queryKey: dealKeys.lists() }, (old) => {
|
|
3302
3306
|
if (!old) return old;
|
|
3303
|
-
return
|
|
3307
|
+
return {
|
|
3308
|
+
...old,
|
|
3309
|
+
data: old.data.map((d) => d.id === deal.id ? { ...d, cached_stage: targetStage } : d)
|
|
3310
|
+
};
|
|
3304
3311
|
});
|
|
3305
3312
|
syncStage.mutate({ dealId: deal.id, stage: targetStage });
|
|
3306
3313
|
},
|
|
@@ -3332,6 +3339,13 @@ function KanbanBoard({ config, renderDrawerActions }) {
|
|
|
3332
3339
|
return /* @__PURE__ */ jsxs(SubshellContentContainer, { children: [
|
|
3333
3340
|
/* @__PURE__ */ jsxs(Stack, { children: [
|
|
3334
3341
|
/* @__PURE__ */ jsx(PageTitleCaption, { title: "Pipeline", caption: "Kanban view of your deal pipeline" }),
|
|
3342
|
+
total > deals.length && /* @__PURE__ */ jsxs(Alert, { color: "yellow", variant: "light", children: [
|
|
3343
|
+
"Showing the first ",
|
|
3344
|
+
deals.length,
|
|
3345
|
+
" of ",
|
|
3346
|
+
total,
|
|
3347
|
+
" deals in the board. This view is temporarily bounded to the list endpoint until full-board pagination lands."
|
|
3348
|
+
] }),
|
|
3335
3349
|
/* @__PURE__ */ jsx(
|
|
3336
3350
|
Paper,
|
|
3337
3351
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
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-
|
|
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-LT33DSMO.js';
|
|
2
2
|
import '../../chunk-BZZCNLT6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-CEWTOKE7.js';
|
|
@@ -6,20 +6,20 @@ 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-EY322HXF.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
11
|
import '../../chunk-QSTH6T77.js';
|
|
12
12
|
import '../../chunk-GRGRBWIO.js';
|
|
13
13
|
import '../../chunk-22UVE3RA.js';
|
|
14
14
|
import '../../chunk-3ZMAGTWF.js';
|
|
15
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-I3LQGLUC.js';
|
|
16
16
|
import '../../chunk-34NQLV2W.js';
|
|
17
17
|
import '../../chunk-R73EHHPN.js';
|
|
18
18
|
import '../../chunk-WLOQ4IBG.js';
|
|
19
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-A2AZY5SF.js';
|
|
20
20
|
import '../../chunk-P3TFNFZS.js';
|
|
21
21
|
import '../../chunk-RX4UWZZR.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-SQPM2QDH.js';
|
|
23
23
|
import '../../chunk-SZHARWKU.js';
|
|
24
24
|
import '../../chunk-3KMDHCAR.js';
|
|
25
25
|
import '../../chunk-NYBEU5TE.js';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-66VY5EMV.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-DDZMBNTY.js';
|
|
4
4
|
import '../../chunk-M25JL54Z.js';
|
|
5
5
|
import '../../chunk-E4WQGJNS.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-EY322HXF.js';
|
|
8
8
|
import '../../chunk-BRXELOHC.js';
|
|
9
9
|
import '../../chunk-QSTH6T77.js';
|
|
10
10
|
import '../../chunk-GRGRBWIO.js';
|
|
11
11
|
import '../../chunk-22UVE3RA.js';
|
|
12
12
|
import '../../chunk-3ZMAGTWF.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-I3LQGLUC.js';
|
|
14
14
|
import '../../chunk-34NQLV2W.js';
|
|
15
15
|
import '../../chunk-R73EHHPN.js';
|
|
16
16
|
import '../../chunk-WLOQ4IBG.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-A2AZY5SF.js';
|
|
18
18
|
import '../../chunk-P3TFNFZS.js';
|
|
19
19
|
import '../../chunk-RX4UWZZR.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-SQPM2QDH.js';
|
|
21
21
|
import '../../chunk-SZHARWKU.js';
|
|
22
22
|
import '../../chunk-3KMDHCAR.js';
|
|
23
23
|
import '../../chunk-NYBEU5TE.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AllTasksPage, Checklist, 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-
|
|
1
|
+
export { AllTasksPage, Checklist, 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-B6FIIEFO.js';
|
|
2
2
|
import '../../chunk-442LZPIR.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-TUMSNGTX.js';
|
|
@@ -7,20 +7,20 @@ 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-EY322HXF.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-QSTH6T77.js';
|
|
13
13
|
import '../../chunk-GRGRBWIO.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-I3LQGLUC.js';
|
|
17
17
|
import '../../chunk-34NQLV2W.js';
|
|
18
18
|
import '../../chunk-R73EHHPN.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-A2AZY5SF.js';
|
|
21
21
|
import '../../chunk-P3TFNFZS.js';
|
|
22
22
|
import '../../chunk-RX4UWZZR.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-SQPM2QDH.js';
|
|
24
24
|
import '../../chunk-SZHARWKU.js';
|
|
25
25
|
import '../../chunk-3KMDHCAR.js';
|
|
26
26
|
import '../../chunk-NYBEU5TE.js';
|
|
@@ -108,6 +108,8 @@ declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
|
108
108
|
invalid: "invalid";
|
|
109
109
|
}>>;
|
|
110
110
|
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
111
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
112
|
+
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
111
113
|
}, z.core.$strict>;
|
|
112
114
|
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
113
115
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -143,6 +145,7 @@ declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
|
143
145
|
active: "active";
|
|
144
146
|
invalid: "invalid";
|
|
145
147
|
}>;
|
|
148
|
+
contactCount: z.ZodNumber;
|
|
146
149
|
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
147
150
|
createdAt: z.ZodString;
|
|
148
151
|
updatedAt: z.ZodString;
|
|
@@ -175,6 +178,19 @@ declare const AcqContactResponseSchema: z.ZodObject<{
|
|
|
175
178
|
active: "active";
|
|
176
179
|
invalid: "invalid";
|
|
177
180
|
}>;
|
|
181
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
182
|
+
id: z.ZodString;
|
|
183
|
+
name: z.ZodString;
|
|
184
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
185
|
+
website: z.ZodNullable<z.ZodString>;
|
|
186
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
187
|
+
segment: z.ZodNullable<z.ZodString>;
|
|
188
|
+
category: z.ZodNullable<z.ZodString>;
|
|
189
|
+
status: z.ZodEnum<{
|
|
190
|
+
active: "active";
|
|
191
|
+
invalid: "invalid";
|
|
192
|
+
}>;
|
|
193
|
+
}, z.core.$strip>>>;
|
|
178
194
|
createdAt: z.ZodString;
|
|
179
195
|
updatedAt: z.ZodString;
|
|
180
196
|
}, z.core.$strip>;
|
|
@@ -247,12 +263,8 @@ declare function formatDate(dateValue: string | Date): string;
|
|
|
247
263
|
declare function getStatusColor(status: string | null): "green" | "red" | "gray";
|
|
248
264
|
declare function getEnrichmentColor(status: string): "green" | "red" | "gray" | "yellow";
|
|
249
265
|
declare function getEnrichmentStatus(enrichmentData: Record<string, unknown> | null | undefined): "failed" | "pending" | "complete";
|
|
250
|
-
type LeadGenCompanyListItem = AcqCompanyResponse
|
|
251
|
-
|
|
252
|
-
};
|
|
253
|
-
type LeadGenContactListItem = AcqContactResponse & {
|
|
254
|
-
company?: AcqCompanyResponse | null;
|
|
255
|
-
};
|
|
266
|
+
type LeadGenCompanyListItem = AcqCompanyResponse;
|
|
267
|
+
type LeadGenContactListItem = AcqContactResponse;
|
|
256
268
|
declare function CompanyDetailModal({ company, onClose }: {
|
|
257
269
|
company: LeadGenCompanyListItem | null;
|
|
258
270
|
onClose: () => void;
|
|
@@ -281,12 +293,17 @@ declare const LIST_TEMPLATE_OPTIONS: readonly [{
|
|
|
281
293
|
type LeadGenListTemplateValue = (typeof LIST_TEMPLATE_OPTIONS)[number]['value'];
|
|
282
294
|
declare function buildListConfig(template: LeadGenListTemplateValue, targetDescription: string): ListConfigInput;
|
|
283
295
|
|
|
284
|
-
|
|
285
|
-
|
|
296
|
+
type AcqCompanyWithCount = AcqCompanyResponse;
|
|
297
|
+
interface AcqCompanyFacetsResponse {
|
|
298
|
+
segments: string[];
|
|
299
|
+
categories: string[];
|
|
300
|
+
statuses: Array<AcqCompanyResponse['status']>;
|
|
286
301
|
}
|
|
287
302
|
declare const companyKeys: {
|
|
288
303
|
all: readonly ["acquisition-companies"];
|
|
289
304
|
list: (organizationId: string | null, filters: Partial<ListCompaniesQuery>) => readonly ["acquisition-companies", "list", string | null, Partial<{
|
|
305
|
+
limit: number;
|
|
306
|
+
offset: number;
|
|
290
307
|
search?: string | undefined;
|
|
291
308
|
listId?: string | undefined;
|
|
292
309
|
domain?: string | undefined;
|
|
@@ -297,9 +314,39 @@ declare const companyKeys: {
|
|
|
297
314
|
status?: "active" | "invalid" | undefined;
|
|
298
315
|
includeAll?: boolean | undefined;
|
|
299
316
|
}>];
|
|
317
|
+
facets: (organizationId: string | null) => readonly ["acquisition-companies", "facets", string | null];
|
|
300
318
|
detail: (organizationId: string | null, companyId: string) => readonly ["acquisition-companies", "detail", string | null, string];
|
|
301
319
|
};
|
|
302
|
-
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<
|
|
320
|
+
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<{
|
|
321
|
+
data: {
|
|
322
|
+
id: string;
|
|
323
|
+
organizationId: string;
|
|
324
|
+
name: string;
|
|
325
|
+
domain: string | null;
|
|
326
|
+
linkedinUrl: string | null;
|
|
327
|
+
website: string | null;
|
|
328
|
+
numEmployees: number | null;
|
|
329
|
+
foundedYear: number | null;
|
|
330
|
+
locationCity: string | null;
|
|
331
|
+
locationState: string | null;
|
|
332
|
+
category: string | null;
|
|
333
|
+
categoryPain: string | null;
|
|
334
|
+
segment: string | null;
|
|
335
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
336
|
+
enrichmentData: Record<string, unknown> | null;
|
|
337
|
+
source: string | null;
|
|
338
|
+
batchId: string | null;
|
|
339
|
+
status: "active" | "invalid";
|
|
340
|
+
contactCount: number;
|
|
341
|
+
verticalResearch: string | null;
|
|
342
|
+
createdAt: string;
|
|
343
|
+
updatedAt: string;
|
|
344
|
+
}[];
|
|
345
|
+
total: number;
|
|
346
|
+
limit: number;
|
|
347
|
+
offset: number;
|
|
348
|
+
}, Error>;
|
|
349
|
+
declare function useCompanyFacets(): _tanstack_react_query.UseQueryResult<AcqCompanyFacetsResponse, Error>;
|
|
303
350
|
declare function useCompany(companyId: string): _tanstack_react_query.UseQueryResult<{
|
|
304
351
|
id: string;
|
|
305
352
|
organizationId: string;
|
|
@@ -319,6 +366,7 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
319
366
|
source: string | null;
|
|
320
367
|
batchId: string | null;
|
|
321
368
|
status: "active" | "invalid";
|
|
369
|
+
contactCount: number;
|
|
322
370
|
verticalResearch: string | null;
|
|
323
371
|
createdAt: string;
|
|
324
372
|
updatedAt: string;
|
|
@@ -342,6 +390,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
342
390
|
source: string | null;
|
|
343
391
|
batchId: string | null;
|
|
344
392
|
status: "active" | "invalid";
|
|
393
|
+
contactCount: number;
|
|
345
394
|
verticalResearch: string | null;
|
|
346
395
|
createdAt: string;
|
|
347
396
|
updatedAt: string;
|
|
@@ -378,6 +427,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
378
427
|
source: string | null;
|
|
379
428
|
batchId: string | null;
|
|
380
429
|
status: "active" | "invalid";
|
|
430
|
+
contactCount: number;
|
|
381
431
|
verticalResearch: string | null;
|
|
382
432
|
createdAt: string;
|
|
383
433
|
updatedAt: string;
|
|
@@ -401,9 +451,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
401
451
|
}, unknown>;
|
|
402
452
|
declare function useDeleteCompanies(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
403
453
|
|
|
404
|
-
|
|
405
|
-
company?: AcqCompanyResponse | null;
|
|
406
|
-
}
|
|
454
|
+
type AcqContactWithCompany = AcqContactResponse;
|
|
407
455
|
declare const contactKeys: {
|
|
408
456
|
all: readonly ["acquisition-contacts"];
|
|
409
457
|
list: (organizationId: string | null, filters: Partial<ListContactsQuery>) => readonly ["acquisition-contacts", "list", string | null, Partial<{
|
|
@@ -417,8 +465,77 @@ declare const contactKeys: {
|
|
|
417
465
|
}>];
|
|
418
466
|
detail: (organizationId: string | null, contactId: string) => readonly ["acquisition-contacts", "detail", string | null, string];
|
|
419
467
|
};
|
|
420
|
-
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<
|
|
421
|
-
|
|
468
|
+
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<{
|
|
469
|
+
data: {
|
|
470
|
+
id: string;
|
|
471
|
+
organizationId: string;
|
|
472
|
+
companyId: string | null;
|
|
473
|
+
email: string;
|
|
474
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
475
|
+
firstName: string | null;
|
|
476
|
+
lastName: string | null;
|
|
477
|
+
linkedinUrl: string | null;
|
|
478
|
+
title: string | null;
|
|
479
|
+
headline: string | null;
|
|
480
|
+
filterReason: string | null;
|
|
481
|
+
openingLine: string | null;
|
|
482
|
+
source: string | null;
|
|
483
|
+
sourceId: string | null;
|
|
484
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
485
|
+
enrichmentData: Record<string, unknown> | null;
|
|
486
|
+
attioPersonId: string | null;
|
|
487
|
+
batchId: string | null;
|
|
488
|
+
status: "active" | "invalid";
|
|
489
|
+
createdAt: string;
|
|
490
|
+
updatedAt: string;
|
|
491
|
+
company?: {
|
|
492
|
+
id: string;
|
|
493
|
+
name: string;
|
|
494
|
+
domain: string | null;
|
|
495
|
+
website: string | null;
|
|
496
|
+
linkedinUrl: string | null;
|
|
497
|
+
segment: string | null;
|
|
498
|
+
category: string | null;
|
|
499
|
+
status: "active" | "invalid";
|
|
500
|
+
} | null | undefined;
|
|
501
|
+
}[];
|
|
502
|
+
total: number;
|
|
503
|
+
limit: number;
|
|
504
|
+
offset: number;
|
|
505
|
+
}, Error>;
|
|
506
|
+
declare function useContact(contactId: string): _tanstack_react_query.UseQueryResult<{
|
|
507
|
+
id: string;
|
|
508
|
+
organizationId: string;
|
|
509
|
+
companyId: string | null;
|
|
510
|
+
email: string;
|
|
511
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
512
|
+
firstName: string | null;
|
|
513
|
+
lastName: string | null;
|
|
514
|
+
linkedinUrl: string | null;
|
|
515
|
+
title: string | null;
|
|
516
|
+
headline: string | null;
|
|
517
|
+
filterReason: string | null;
|
|
518
|
+
openingLine: string | null;
|
|
519
|
+
source: string | null;
|
|
520
|
+
sourceId: string | null;
|
|
521
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
522
|
+
enrichmentData: Record<string, unknown> | null;
|
|
523
|
+
attioPersonId: string | null;
|
|
524
|
+
batchId: string | null;
|
|
525
|
+
status: "active" | "invalid";
|
|
526
|
+
createdAt: string;
|
|
527
|
+
updatedAt: string;
|
|
528
|
+
company?: {
|
|
529
|
+
id: string;
|
|
530
|
+
name: string;
|
|
531
|
+
domain: string | null;
|
|
532
|
+
website: string | null;
|
|
533
|
+
linkedinUrl: string | null;
|
|
534
|
+
segment: string | null;
|
|
535
|
+
category: string | null;
|
|
536
|
+
status: "active" | "invalid";
|
|
537
|
+
} | null | undefined;
|
|
538
|
+
} | null, Error>;
|
|
422
539
|
declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
423
540
|
id: string;
|
|
424
541
|
organizationId: string;
|
|
@@ -441,6 +558,16 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
441
558
|
status: "active" | "invalid";
|
|
442
559
|
createdAt: string;
|
|
443
560
|
updatedAt: string;
|
|
561
|
+
company?: {
|
|
562
|
+
id: string;
|
|
563
|
+
name: string;
|
|
564
|
+
domain: string | null;
|
|
565
|
+
website: string | null;
|
|
566
|
+
linkedinUrl: string | null;
|
|
567
|
+
segment: string | null;
|
|
568
|
+
category: string | null;
|
|
569
|
+
status: "active" | "invalid";
|
|
570
|
+
} | null | undefined;
|
|
444
571
|
}, Error, {
|
|
445
572
|
email: string;
|
|
446
573
|
companyId?: string | undefined;
|
|
@@ -474,6 +601,16 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
474
601
|
status: "active" | "invalid";
|
|
475
602
|
createdAt: string;
|
|
476
603
|
updatedAt: string;
|
|
604
|
+
company?: {
|
|
605
|
+
id: string;
|
|
606
|
+
name: string;
|
|
607
|
+
domain: string | null;
|
|
608
|
+
website: string | null;
|
|
609
|
+
linkedinUrl: string | null;
|
|
610
|
+
segment: string | null;
|
|
611
|
+
category: string | null;
|
|
612
|
+
status: "active" | "invalid";
|
|
613
|
+
} | null | undefined;
|
|
477
614
|
}, Error, {
|
|
478
615
|
companyId?: string | undefined;
|
|
479
616
|
emailValid?: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | undefined;
|
|
@@ -493,7 +630,6 @@ declare function useDeleteContacts(): _tanstack_react_query.UseMutationResult<vo
|
|
|
493
630
|
declare function useDeleteLists(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
494
631
|
|
|
495
632
|
declare function LeadGenOverviewPage(): react_jsx_runtime.JSX.Element;
|
|
496
|
-
declare function LeadGenDeliverabilityPage(): react_jsx_runtime.JSX.Element;
|
|
497
633
|
|
|
498
634
|
declare function LeadGenListsPage(): react_jsx_runtime.JSX.Element;
|
|
499
635
|
|
|
@@ -505,5 +641,5 @@ declare function LeadGenCompaniesPage(): react_jsx_runtime.JSX.Element;
|
|
|
505
641
|
|
|
506
642
|
declare function LeadGenContactsPage(): react_jsx_runtime.JSX.Element;
|
|
507
643
|
|
|
508
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage,
|
|
644
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, buildListConfig, companyKeys, contactKeys, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useUpdateCompany, useUpdateContact };
|
|
509
645
|
export type { AcqCompanyWithCount, AcqContactWithCompany, LeadGenCompanyListItem, LeadGenContactListItem, LeadGenListTemplateValue, LeadGenRouteLink, LeadGenSidebarMiddleProps };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage,
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-UA36WILN.js';
|
|
2
|
+
import '../../chunk-WP3IYOVJ.js';
|
|
3
3
|
import '../../chunk-ROSMICXG.js';
|
|
4
4
|
import '../../chunk-ADSSLKKP.js';
|
|
5
5
|
import '../../chunk-ZTWA5H77.js';
|
|
6
|
-
import '../../chunk-
|
|
6
|
+
import '../../chunk-66VY5EMV.js';
|
|
7
7
|
import '../../chunk-442LZPIR.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-FM6LSZ45.js';
|
|
9
9
|
import '../../chunk-LGKLC5MG.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-DDZMBNTY.js';
|
|
11
11
|
import '../../chunk-M25JL54Z.js';
|
|
12
12
|
import '../../chunk-BZZCNLT6.js';
|
|
13
13
|
import '../../chunk-TUMSNGTX.js';
|
|
@@ -17,20 +17,20 @@ import '../../chunk-PDHTXPSF.js';
|
|
|
17
17
|
import '../../chunk-GBMNCNHX.js';
|
|
18
18
|
import '../../chunk-E4WQGJNS.js';
|
|
19
19
|
import '../../chunk-7M2VOCYN.js';
|
|
20
|
-
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-
|
|
20
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-EY322HXF.js';
|
|
21
21
|
import '../../chunk-BRXELOHC.js';
|
|
22
22
|
import '../../chunk-QSTH6T77.js';
|
|
23
23
|
import '../../chunk-GRGRBWIO.js';
|
|
24
24
|
import '../../chunk-22UVE3RA.js';
|
|
25
25
|
import '../../chunk-3ZMAGTWF.js';
|
|
26
|
-
import '../../chunk-
|
|
26
|
+
import '../../chunk-I3LQGLUC.js';
|
|
27
27
|
import '../../chunk-34NQLV2W.js';
|
|
28
28
|
import '../../chunk-R73EHHPN.js';
|
|
29
29
|
import '../../chunk-WLOQ4IBG.js';
|
|
30
|
-
import '../../chunk-
|
|
30
|
+
import '../../chunk-A2AZY5SF.js';
|
|
31
31
|
import '../../chunk-P3TFNFZS.js';
|
|
32
32
|
import '../../chunk-RX4UWZZR.js';
|
|
33
|
-
import '../../chunk-
|
|
33
|
+
import '../../chunk-SQPM2QDH.js';
|
|
34
34
|
import '../../chunk-SZHARWKU.js';
|
|
35
35
|
import '../../chunk-3KMDHCAR.js';
|
|
36
36
|
import '../../chunk-NYBEU5TE.js';
|
|
@@ -1,26 +1,26 @@
|
|
|
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-P6TC4K7I.js';
|
|
2
|
+
import '../../chunk-FM6LSZ45.js';
|
|
3
3
|
import '../../chunk-LGKLC5MG.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-DDZMBNTY.js';
|
|
5
5
|
import '../../chunk-M25JL54Z.js';
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
8
|
import '../../chunk-E4WQGJNS.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-EY322HXF.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-QSTH6T77.js';
|
|
13
13
|
import '../../chunk-GRGRBWIO.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-I3LQGLUC.js';
|
|
17
17
|
import '../../chunk-34NQLV2W.js';
|
|
18
18
|
import '../../chunk-R73EHHPN.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-A2AZY5SF.js';
|
|
21
21
|
import '../../chunk-P3TFNFZS.js';
|
|
22
22
|
import '../../chunk-RX4UWZZR.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-SQPM2QDH.js';
|
|
24
24
|
import '../../chunk-SZHARWKU.js';
|
|
25
25
|
import '../../chunk-3KMDHCAR.js';
|
|
26
26
|
import '../../chunk-NYBEU5TE.js';
|