@elevasis/ui 2.70.0 → 2.71.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.
Files changed (57) hide show
  1. package/dist/app/index.d.ts +26 -0
  2. package/dist/app/index.js +5 -5
  3. package/dist/auth/index.js +1 -1
  4. package/dist/charts/index.js +1 -1
  5. package/dist/{chunk-LWYLZUUV.js → chunk-3BLYJT5L.js} +2 -2
  6. package/dist/{chunk-QDMIFD6F.js → chunk-AIOV5NM7.js} +1 -1
  7. package/dist/{chunk-TJMZUL6E.js → chunk-BM2WKRAQ.js} +1 -1
  8. package/dist/{chunk-DUEGHF7A.js → chunk-CPBT6Z2G.js} +2 -2
  9. package/dist/{chunk-SMH6SQQE.js → chunk-DCMFNSJ6.js} +1 -1
  10. package/dist/{chunk-GJQF3S2Q.js → chunk-DH2MO5DX.js} +1 -1
  11. package/dist/{chunk-5C62IRKS.js → chunk-H3SDGC5F.js} +2 -2
  12. package/dist/{chunk-XKUEO4HG.js → chunk-JTSNU6KA.js} +2 -2
  13. package/dist/{chunk-LY3IKYTZ.js → chunk-LL5H7J4N.js} +1 -1
  14. package/dist/{chunk-AGX2CY2O.js → chunk-TB2PM2OU.js} +1 -1
  15. package/dist/{chunk-CCZJ4OWY.js → chunk-TCQZ4AJI.js} +1 -1
  16. package/dist/{chunk-GZADST64.js → chunk-TVFSVTRG.js} +5 -5
  17. package/dist/{chunk-6TT3FQEZ.js → chunk-UZ7MSORW.js} +101 -4
  18. package/dist/{chunk-MFCV4JMQ.js → chunk-VHPHWTX7.js} +2 -2
  19. package/dist/{chunk-JA2XDMAE.js → chunk-VRRIHA3S.js} +1 -1
  20. package/dist/components/index.d.ts +59 -3
  21. package/dist/components/index.js +19 -19
  22. package/dist/components/navigation/index.js +2 -2
  23. package/dist/features/auth/index.d.ts +26 -0
  24. package/dist/features/auth/index.js +3 -3
  25. package/dist/features/clients/index.js +2 -2
  26. package/dist/features/content/index.d.ts +95 -78
  27. package/dist/features/content/index.js +61 -19
  28. package/dist/features/crm/index.d.ts +26 -0
  29. package/dist/features/crm/index.js +3 -3
  30. package/dist/features/dashboard/index.js +3 -3
  31. package/dist/features/delivery/index.d.ts +26 -0
  32. package/dist/features/delivery/index.js +2 -2
  33. package/dist/features/knowledge/index.js +1 -1
  34. package/dist/features/lead-gen/index.js +3 -3
  35. package/dist/features/monitoring/index.d.ts +33 -3
  36. package/dist/features/monitoring/index.js +4 -4
  37. package/dist/features/monitoring/requests/index.js +2 -2
  38. package/dist/features/operations/index.js +6 -6
  39. package/dist/features/settings/index.d.ts +26 -0
  40. package/dist/features/settings/index.js +3 -3
  41. package/dist/hooks/access/index.js +1 -1
  42. package/dist/hooks/delivery/index.d.ts +26 -0
  43. package/dist/hooks/index.d.ts +301 -12
  44. package/dist/hooks/index.js +1 -1
  45. package/dist/hooks/published.d.ts +301 -12
  46. package/dist/hooks/published.js +1 -1
  47. package/dist/initialization/index.d.ts +26 -0
  48. package/dist/knowledge/index.js +5 -5
  49. package/dist/layout/index.js +4 -4
  50. package/dist/profile/index.d.ts +26 -0
  51. package/dist/provider/index.d.ts +26 -0
  52. package/dist/provider/index.js +1 -1
  53. package/dist/provider/published.d.ts +26 -0
  54. package/dist/provider/published.js +1 -1
  55. package/dist/supabase/index.d.ts +50 -0
  56. package/dist/types/index.d.ts +59 -3
  57. package/package.json +4 -4
@@ -1049,6 +1049,7 @@ type Database = {
1049
1049
  activities: {
1050
1050
  Row: {
1051
1051
  activity_type: string;
1052
+ actor_api_key_id: string | null;
1052
1053
  actor_id: string | null;
1053
1054
  actor_type: string | null;
1054
1055
  created_at: string;
@@ -1065,6 +1066,7 @@ type Database = {
1065
1066
  };
1066
1067
  Insert: {
1067
1068
  activity_type: string;
1069
+ actor_api_key_id?: string | null;
1068
1070
  actor_id?: string | null;
1069
1071
  actor_type?: string | null;
1070
1072
  created_at?: string;
@@ -1081,6 +1083,7 @@ type Database = {
1081
1083
  };
1082
1084
  Update: {
1083
1085
  activity_type?: string;
1086
+ actor_api_key_id?: string | null;
1084
1087
  actor_id?: string | null;
1085
1088
  actor_type?: string | null;
1086
1089
  created_at?: string;
@@ -1096,6 +1099,13 @@ type Database = {
1096
1099
  title?: string;
1097
1100
  };
1098
1101
  Relationships: [
1102
+ {
1103
+ foreignKeyName: "activities_actor_api_key_id_fkey";
1104
+ columns: ["actor_api_key_id"];
1105
+ isOneToOne: false;
1106
+ referencedRelation: "api_keys";
1107
+ referencedColumns: ["id"];
1108
+ },
1099
1109
  {
1100
1110
  foreignKeyName: "activities_actor_id_fkey";
1101
1111
  columns: ["actor_id"];
@@ -1183,6 +1193,7 @@ type Database = {
1183
1193
  api_keys: {
1184
1194
  Row: {
1185
1195
  created_at: string | null;
1196
+ created_by: string | null;
1186
1197
  id: string;
1187
1198
  key_hash: string;
1188
1199
  last_used_at: string | null;
@@ -1191,6 +1202,7 @@ type Database = {
1191
1202
  };
1192
1203
  Insert: {
1193
1204
  created_at?: string | null;
1205
+ created_by?: string | null;
1194
1206
  id?: string;
1195
1207
  key_hash: string;
1196
1208
  last_used_at?: string | null;
@@ -1199,6 +1211,7 @@ type Database = {
1199
1211
  };
1200
1212
  Update: {
1201
1213
  created_at?: string | null;
1214
+ created_by?: string | null;
1202
1215
  id?: string;
1203
1216
  key_hash?: string;
1204
1217
  last_used_at?: string | null;
@@ -1206,6 +1219,13 @@ type Database = {
1206
1219
  organization_id?: string;
1207
1220
  };
1208
1221
  Relationships: [
1222
+ {
1223
+ foreignKeyName: "api_keys_created_by_fkey";
1224
+ columns: ["created_by"];
1225
+ isOneToOne: false;
1226
+ referencedRelation: "users";
1227
+ referencedColumns: ["id"];
1228
+ },
1209
1229
  {
1210
1230
  foreignKeyName: "api_keys_organization_id_fkey";
1211
1231
  columns: ["organization_id"];
@@ -1533,6 +1553,7 @@ type Database = {
1533
1553
  organization_id: string;
1534
1554
  payload: Json;
1535
1555
  source_execution_id: string | null;
1556
+ status: string;
1536
1557
  step_key: string | null;
1537
1558
  };
1538
1559
  Insert: {
@@ -1544,6 +1565,7 @@ type Database = {
1544
1565
  organization_id: string;
1545
1566
  payload?: Json;
1546
1567
  source_execution_id?: string | null;
1568
+ status: string;
1547
1569
  step_key?: string | null;
1548
1570
  };
1549
1571
  Update: {
@@ -1555,6 +1577,7 @@ type Database = {
1555
1577
  organization_id?: string;
1556
1578
  payload?: Json;
1557
1579
  source_execution_id?: string | null;
1580
+ status?: string;
1558
1581
  step_key?: string | null;
1559
1582
  };
1560
1583
  Relationships: [
@@ -1706,6 +1729,7 @@ type Database = {
1706
1729
  kind: string;
1707
1730
  metadata: Json;
1708
1731
  organization_id: string;
1732
+ payload: Json;
1709
1733
  processing_state: Json;
1710
1734
  storage_path: string | null;
1711
1735
  title: string;
@@ -1719,6 +1743,7 @@ type Database = {
1719
1743
  kind: string;
1720
1744
  metadata?: Json;
1721
1745
  organization_id: string;
1746
+ payload?: Json;
1722
1747
  processing_state?: Json;
1723
1748
  storage_path?: string | null;
1724
1749
  title: string;
@@ -1732,6 +1757,7 @@ type Database = {
1732
1757
  kind?: string;
1733
1758
  metadata?: Json;
1734
1759
  organization_id?: string;
1760
+ payload?: Json;
1735
1761
  processing_state?: Json;
1736
1762
  storage_path?: string | null;
1737
1763
  title?: string;
package/dist/app/index.js CHANGED
@@ -1,9 +1,9 @@
1
- import { AppErrorBoundary } from '../chunk-CCZJ4OWY.js';
2
- import { SidebarProvider, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer } from '../chunk-GJQF3S2Q.js';
3
- import '../chunk-QDMIFD6F.js';
4
- import '../chunk-SMH6SQQE.js';
1
+ import { AppErrorBoundary } from '../chunk-TCQZ4AJI.js';
2
+ import { SidebarProvider, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer } from '../chunk-DH2MO5DX.js';
3
+ import '../chunk-AIOV5NM7.js';
4
+ import '../chunk-DCMFNSJ6.js';
5
5
  import '../chunk-BZZCNLT6.js';
6
- import { useSessionCheck, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-6TT3FQEZ.js';
6
+ import { useSessionCheck, ElevasisSystemsProvider, useElevasisSystems, SystemShell, ElevasisUIProvider } from '../chunk-UZ7MSORW.js';
7
7
  import '../chunk-R6NMRXNO.js';
8
8
  import '../chunk-RBGVNPA6.js';
9
9
  import '../chunk-MKH2KOAO.js';
@@ -1,4 +1,4 @@
1
- export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-6TT3FQEZ.js';
1
+ export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-UZ7MSORW.js';
2
2
  import '../chunk-R6NMRXNO.js';
3
3
  import '../chunk-RBGVNPA6.js';
4
4
  import '../chunk-MKH2KOAO.js';
@@ -1,4 +1,4 @@
1
- export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-6TT3FQEZ.js';
1
+ export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-UZ7MSORW.js';
2
2
  import '../chunk-R6NMRXNO.js';
3
3
  import '../chunk-RBGVNPA6.js';
4
4
  import '../chunk-MKH2KOAO.js';
@@ -1,6 +1,6 @@
1
- import { AppShellLoader } from './chunk-SMH6SQQE.js';
1
+ import { AppShellLoader } from './chunk-DCMFNSJ6.js';
2
2
  import { FilterBar } from './chunk-PDHTXPSF.js';
3
- import { CenteredErrorState, StatsCardSkeleton, CyberAreaChart, TrendIndicator, DetailCardSkeleton, useResolveError, useResolveAllErrors, usePaginationState, useErrorDetails, EmptyState, useMarkAsRead, useExecutionLogsFilters, useExecutionLogs, PageTitleCaption, useExecutionHealth, useErrorAnalysis, useTimeRangeDates, useErrorDetail, useResolveErrorsByExecution, useResources, CustomModal, JsonViewer, useCostTrends, useCostSummary, useCostByModel, useCostBreakdown, CostTrendChart, useActivityFilters, useActivityTrend, useActivities, ActivityTrendChart, useNotifications, useMarkAllAsRead } from './chunk-6TT3FQEZ.js';
3
+ import { CenteredErrorState, StatsCardSkeleton, CyberAreaChart, TrendIndicator, DetailCardSkeleton, useResolveError, useResolveAllErrors, usePaginationState, useErrorDetails, EmptyState, useMarkAsRead, useExecutionLogsFilters, useExecutionLogs, PageTitleCaption, useExecutionHealth, useErrorAnalysis, useTimeRangeDates, useErrorDetail, useResolveErrorsByExecution, useResources, CustomModal, JsonViewer, useCostTrends, useCostSummary, useCostByModel, useCostBreakdown, CostTrendChart, useActivityFilters, useActivityTrend, useActivities, ActivityTrendChart, useNotifications, useMarkAllAsRead } from './chunk-UZ7MSORW.js';
4
4
  import { CardHeader } from './chunk-62GVNH5U.js';
5
5
  import { formatDuration } from './chunk-BLXJEIQS.js';
6
6
  import { PAGE_SIZE_DEFAULT } from './chunk-NM4A63KJ.js';
@@ -1,4 +1,4 @@
1
- import { useAppearance } from './chunk-6TT3FQEZ.js';
1
+ import { useAppearance } from './chunk-UZ7MSORW.js';
2
2
  import { Center } from '@mantine/core';
3
3
  import { jsx } from 'react/jsx-runtime';
4
4
 
@@ -2,7 +2,7 @@ import { milestoneStatusColors, formatStatusLabel, taskTypeColors, taskStatusCol
2
2
  import { PageContainer } from './chunk-BZZCNLT6.js';
3
3
  import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
4
4
  import { FilterBar } from './chunk-PDHTXPSF.js';
5
- import { StatusBadge, EmptyState, SubshellContentContainer, PageTitleCaption, useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, CenteredErrorState, CustomModal, StatCard, useProjectActivities } from './chunk-6TT3FQEZ.js';
5
+ import { StatusBadge, EmptyState, SubshellContentContainer, PageTitleCaption, useProjectRealtime, useTableSort, sortData, usePaginationState, useTableSelection, CenteredErrorState, CustomModal, StatCard, useProjectActivities } from './chunk-UZ7MSORW.js';
6
6
  import { useCreateTask, useCreateMilestone, useProjectMilestones, useUpdateTask, useProjects, useDeleteProject, useProject, useProjectNotes, useUpdateMilestone, useCreateNote } from './chunk-C75XWBYZ.js';
7
7
  import { SubshellSidebarSection, SubshellNavItem } from './chunk-MISHPEJX.js';
8
8
  import { CardHeader } from './chunk-62GVNH5U.js';
@@ -1,7 +1,7 @@
1
1
  import { useAvailablePresets } from './chunk-ZFISGKYW.js';
2
- import { AppShellLoader } from './chunk-SMH6SQQE.js';
2
+ import { AppShellLoader } from './chunk-DCMFNSJ6.js';
3
3
  import { FilterBar } from './chunk-PDHTXPSF.js';
4
- import { useDeleteCredential, ListSkeleton, EmptyState, CustomModal, useCreateCredential, useCredentials, PageTitleCaption, MEMBERSHIP_STATUS_COLORS, PROVISIONING_STATE_DISPLAY, transformMembershipToTableRow, APIErrorAlert, useUserMemberships, useUpdateWebhookEndpoint, useResources, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, StatCard, useOrgRoles, useAssignRole, useRevokeRole, useAccess, AccessKeys, useOrganizationMembers, usePermissionCatalog, AccessGuard, useUpdateCredential, CredentialSchemas } from './chunk-6TT3FQEZ.js';
4
+ import { useDeleteCredential, ListSkeleton, EmptyState, CustomModal, useCreateCredential, useCredentials, PageTitleCaption, MEMBERSHIP_STATUS_COLORS, PROVISIONING_STATE_DISPLAY, transformMembershipToTableRow, APIErrorAlert, useUserMemberships, useUpdateWebhookEndpoint, useResources, useDeleteWebhookEndpoint, useCreateWebhookEndpoint, useListWebhookEndpoints, StatCard, useOrgRoles, useAssignRole, useRevokeRole, useAccess, AccessKeys, useOrganizationMembers, usePermissionCatalog, AccessGuard, useUpdateCredential, CredentialSchemas } from './chunk-UZ7MSORW.js';
5
5
  import { showApiErrorNotification, showErrorNotification, showSuccessNotification } from './chunk-C75XWBYZ.js';
6
6
  import { CardHeader } from './chunk-62GVNH5U.js';
7
7
  import { useInitialization } from './chunk-P45GQ3ZW.js';
@@ -1,4 +1,4 @@
1
- import { useAppearance } from './chunk-6TT3FQEZ.js';
1
+ import { useAppearance } from './chunk-UZ7MSORW.js';
2
2
  import { topbarHeight } from './chunk-MISHPEJX.js';
3
3
  import { Stack, Title, Button } from '@mantine/core';
4
4
  import { IconAlertCircle } from '@tabler/icons-react';
@@ -1,4 +1,4 @@
1
- import { NavigationButton, useAppearance, useElevasisSystems } from './chunk-6TT3FQEZ.js';
1
+ import { NavigationButton, useAppearance, useElevasisSystems } from './chunk-UZ7MSORW.js';
2
2
  import { sidebarItemGap, sidebarSubLinkPaddingY, sidebarSubLinkPaddingX, sidebarSubLinkIndent, sidebarHoverDelay, sidebarTransitionDuration, sidebarCollapsedWidth, sidebarWidth, topbarHeight, sidebarToggleIconSize, sidebarSectionPadding, sidebarGroupChevronSize, sidebarIconInnerSize, SubshellNavItem } from './chunk-MISHPEJX.js';
3
3
  import { useRouterContext } from './chunk-Q7DJKLEN.js';
4
4
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
@@ -1,9 +1,9 @@
1
- import { LEAD_GEN_API_INTERFACE } from './chunk-LY3IKYTZ.js';
1
+ import { LEAD_GEN_API_INTERFACE } from './chunk-LL5H7J4N.js';
2
2
  import { sanitizeInput } from './chunk-3MEXPLWT.js';
3
3
  import { PageContainer } from './chunk-BZZCNLT6.js';
4
4
  import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
5
5
  import { FilterBar } from './chunk-PDHTXPSF.js';
6
- import { LeadGenSidebarMiddle, SubshellContentContainer, PageTitleCaption, acquisitionListKeys, useOptionalElevasisSystems, getAllBuildTemplates, getLeadGenStageCatalog, useListsTelemetry, useLists, useAccess, AccessKeys, CenteredErrorState, StatCard, useTableSort, sortData, usePaginationState, useTableSelection, EmptyState, CustomModal, useListActions, useList, useListProgress, useListExecutions, useDeleteList, useExecuteAsync, useCompanyFacets, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts, useCreateList, JsonViewer, useCredentials, useVerifyCredential, useWorkflowExecution, useInFlightExecutions, useExecutionSSE, useListRecords, useListMembers, useListMember, useTransitionListMember, useDeriveActions, useArtifacts } from './chunk-6TT3FQEZ.js';
6
+ import { LeadGenSidebarMiddle, SubshellContentContainer, PageTitleCaption, acquisitionListKeys, useOptionalElevasisSystems, getAllBuildTemplates, getLeadGenStageCatalog, useListsTelemetry, useLists, useAccess, AccessKeys, CenteredErrorState, StatCard, useTableSort, sortData, usePaginationState, useTableSelection, EmptyState, CustomModal, useListActions, useList, useListProgress, useListExecutions, useDeleteList, useExecuteAsync, useCompanyFacets, useCompanies, useDeleteCompanies, useContacts, useDeleteContacts, useCreateList, JsonViewer, useCredentials, useVerifyCredential, useWorkflowExecution, useInFlightExecutions, useExecutionSSE, useListRecords, useListMembers, useListMember, useTransitionListMember, useDeriveActions, useArtifacts } from './chunk-UZ7MSORW.js';
7
7
  import { showApiErrorNotification, showSuccessNotification } from './chunk-C75XWBYZ.js';
8
8
  import { SubshellSidebarSection } from './chunk-MISHPEJX.js';
9
9
  import { CardHeader } from './chunk-62GVNH5U.js';
@@ -1,8 +1,8 @@
1
1
  import { ZodFormRenderer } from './chunk-3MEXPLWT.js';
2
2
  import { ResourceHealthChart } from './chunk-LGKLC5MG.js';
3
3
  import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, useFitViewTrigger } from './chunk-HENXLGVD.js';
4
- import { AppShellCenteredContainer, AppShellLoader } from './chunk-SMH6SQQE.js';
5
- import { useCyberColors, GlowDot, JsonViewer, useExecuteResource, EmptyState, useDashboardMetrics, useResources, useTimeRangeDates, useUnresolvedErrors, useRecentExecutionsByResource, PageTitleCaption, HeroStatsRow, useCommandQueue, useScheduledTasks, TabCountBadge, useResourcesHealth } from './chunk-6TT3FQEZ.js';
4
+ import { AppShellCenteredContainer, AppShellLoader } from './chunk-DCMFNSJ6.js';
5
+ import { useCyberColors, GlowDot, JsonViewer, useExecuteResource, EmptyState, useDashboardMetrics, useResources, useTimeRangeDates, useUnresolvedErrors, useRecentExecutionsByResource, PageTitleCaption, HeroStatsRow, useCommandQueue, useScheduledTasks, TabCountBadge, useResourcesHealth } from './chunk-UZ7MSORW.js';
6
6
  import { glassBase } from './chunk-R6NMRXNO.js';
7
7
  import { CardHeader } from './chunk-62GVNH5U.js';
8
8
  import { useInitialization } from './chunk-P45GQ3ZW.js';
@@ -1,4 +1,4 @@
1
- import { getLeadGenStageCatalog } from './chunk-6TT3FQEZ.js';
1
+ import { getLeadGenStageCatalog } from './chunk-UZ7MSORW.js';
2
2
  import { SYSTEM_INTERFACE_PROFILES, formatOntologyId, registerBuiltInReadinessProfile, registerReadinessInterfaceMarker, requireContractReadiness, computeInterfaceReadiness, addReadinessIssue, formatInterfaceIdentity, resourceBindingIds, requireCatalogReadiness, requireScopedBinding } from './chunk-NM4A63KJ.js';
3
3
 
4
4
  // ../core/src/business/acquisition/ontology-validation.ts
@@ -1,4 +1,4 @@
1
- import { useOptionalElevasisSystems } from './chunk-6TT3FQEZ.js';
1
+ import { useOptionalElevasisSystems } from './chunk-UZ7MSORW.js';
2
2
  import { useRouterContext } from './chunk-Q7DJKLEN.js';
3
3
  import { useMemo } from 'react';
4
4
 
@@ -1,4 +1,4 @@
1
- import { useAppearance } from './chunk-6TT3FQEZ.js';
1
+ import { useAppearance } from './chunk-UZ7MSORW.js';
2
2
  import { useState, Component } from 'react';
3
3
  import { CopyButton, Tooltip } from '@mantine/core';
4
4
  import { IconCheck, IconCopy } from '@tabler/icons-react';
@@ -1,12 +1,12 @@
1
- import { SubshellLoader } from './chunk-QDMIFD6F.js';
2
- import { CollapsibleJsonSection, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, AgentIterationDetailPanel } from './chunk-XKUEO4HG.js';
1
+ import { SubshellLoader } from './chunk-AIOV5NM7.js';
2
+ import { CollapsibleJsonSection, ExecutionStats, UnifiedWorkflowGraph, WorkflowExecutionTimeline, AgentExecutionVisualizer, AgentExecutionTimeline, AgentIterationDetailPanel } from './chunk-JTSNU6KA.js';
3
3
  import { FormFieldRenderer } from './chunk-3MEXPLWT.js';
4
4
  import { ChatInterface, ChatHeader } from './chunk-SNZDFCOQ.js';
5
- import { ResourceHealthPanel } from './chunk-JA2XDMAE.js';
5
+ import { ResourceHealthPanel } from './chunk-VRRIHA3S.js';
6
6
  import { Graph_module_css_default } from './chunk-HENXLGVD.js';
7
- import { AppShellLoader } from './chunk-SMH6SQQE.js';
7
+ import { AppShellLoader } from './chunk-DCMFNSJ6.js';
8
8
  import { PageContainer } from './chunk-BZZCNLT6.js';
9
- import { DEFAULT_ORGANIZATION_GRAPH_FILTERS, resolveSemanticIconComponent, CustomModal, useAppearance, useErrorDetail, JsonViewer, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, ConfirmationModal, PageTitleCaption, CollapsibleSection, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, TabCountBadge, ResourceCard, useResourceDefinition, isSessionCapable, useOptionalElevasisSystems, useDeleteTask, useCommandQueue, useSubmitAction, useCommandQueueTask, ContextViewer, useElevasisSystems, useCommandViewData, useCommandViewStats, useCommandViewStore, buildOrganizationGraph, useResourceExecutions, useCheckpointTasks, EmptyState, useExecutionPanelState, useSessionMessages, useSessionWebSocket, useSessions, SessionListItem, useSessionExecutions, useDeleteSession, useEndSession, useCreateSession, useSession, getSessionView, SubshellContentContainer, collectResourceFilterFacets, SemanticIcon, useSystemsViewState, aggregateSystemMetrics, useSystemHealth, ORGANIZATION_GRAPH_NODE_KIND_ORDER, formatResourceAttribution, SYSTEM_RESOURCE_KINDS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS } from './chunk-6TT3FQEZ.js';
9
+ import { DEFAULT_ORGANIZATION_GRAPH_FILTERS, resolveSemanticIconComponent, CustomModal, useAppearance, useErrorDetail, JsonViewer, useExecution, useArchivedLogs, useDeleteExecution, useRetryExecution, useCancelExecution, ConfirmationModal, PageTitleCaption, CollapsibleSection, useStatusFilter, useResourceSearch, useResourcesDomainFilters, usePaginationState, useResources, useRecentExecutionsByResource, filterByDomainFilters, TabCountBadge, ResourceCard, useResourceDefinition, isSessionCapable, useOptionalElevasisSystems, useDeleteTask, useCommandQueue, useSubmitAction, useCommandQueueTask, ContextViewer, useElevasisSystems, useCommandViewData, useCommandViewStats, useCommandViewStore, buildOrganizationGraph, useResourceExecutions, useCheckpointTasks, EmptyState, useExecutionPanelState, useSessionMessages, useSessionWebSocket, useSessions, SessionListItem, useSessionExecutions, useDeleteSession, useEndSession, useCreateSession, useSession, getSessionView, SubshellContentContainer, collectResourceFilterFacets, SemanticIcon, useSystemsViewState, aggregateSystemMetrics, useSystemHealth, ORGANIZATION_GRAPH_NODE_KIND_ORDER, formatResourceAttribution, SYSTEM_RESOURCE_KINDS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS } from './chunk-UZ7MSORW.js';
10
10
  import { showApiErrorNotification, showSuccessNotification } from './chunk-C75XWBYZ.js';
11
11
  import { topbarHeight } from './chunk-MISHPEJX.js';
12
12
  import { CardHeader } from './chunk-62GVNH5U.js';
@@ -2129,6 +2129,12 @@ var ContentPipelineStepDeclarationSchema = z.object({
2129
2129
  actionId: z.string().trim().min(1).max(200).optional(),
2130
2130
  payloadFields: z.array(ContentPayloadFieldDeclarationSchema).default([])
2131
2131
  });
2132
+ z.object({
2133
+ label: z.string().trim().min(1).max(160).optional(),
2134
+ description: z.string().trim().min(1).max(2e3).optional(),
2135
+ /** D17: the template-declared serializable field list for this kind's payload. */
2136
+ payloadFields: z.array(ContentPayloadFieldDeclarationSchema).default([])
2137
+ });
2132
2138
 
2133
2139
  // ../core/src/organization-model/migration-helpers.ts
2134
2140
  function catalogRecords(model) {
@@ -12294,7 +12300,10 @@ var contentKeys = {
12294
12300
  itemAttempts: (organizationId, itemId) => [...contentKeys.items(), "attempts", organizationId, itemId],
12295
12301
  distributions: () => [...contentKeys.all, "distributions"],
12296
12302
  distributionsList: (organizationId, filters) => [...contentKeys.distributions(), "list", organizationId, filters],
12297
- distributionDetail: (organizationId, distributionId) => [...contentKeys.distributions(), "detail", organizationId, distributionId]
12303
+ distributionDetail: (organizationId, distributionId) => [...contentKeys.distributions(), "detail", organizationId, distributionId],
12304
+ sourceAssets: () => [...contentKeys.all, "source-assets"],
12305
+ sourceAssetsList: (organizationId, filters) => [...contentKeys.sourceAssets(), "list", organizationId, filters],
12306
+ sourceAssetDetail: (organizationId, sourceAssetId) => [...contentKeys.sourceAssets(), "detail", organizationId, sourceAssetId]
12298
12307
  };
12299
12308
  function useContentItems(filters = {}) {
12300
12309
  const { apiRequest, isReady, workOSOrganizationId } = useElevasisServices();
@@ -12434,6 +12443,76 @@ function useReviewContentItem() {
12434
12443
  }
12435
12444
  });
12436
12445
  }
12446
+ function useContentSourceAssets(filters = {}) {
12447
+ const { apiRequest, isReady, workOSOrganizationId } = useElevasisServices();
12448
+ return useQuery({
12449
+ queryKey: contentKeys.sourceAssetsList(workOSOrganizationId ?? void 0, filters),
12450
+ queryFn: async () => {
12451
+ const { kind, limit, offset } = filters;
12452
+ const params = new URLSearchParams();
12453
+ if (kind) params.set("kind", kind);
12454
+ if (limit !== void 0) params.set("limit", String(limit));
12455
+ if (offset !== void 0) params.set("offset", String(offset));
12456
+ const query = params.toString();
12457
+ return apiRequest(`/content/source-assets${query ? "?" + query : ""}`);
12458
+ },
12459
+ enabled: isReady
12460
+ });
12461
+ }
12462
+ function useContentSourceAsset(sourceAssetId) {
12463
+ const { apiRequest, isReady, workOSOrganizationId } = useElevasisServices();
12464
+ return useQuery({
12465
+ queryKey: contentKeys.sourceAssetDetail(workOSOrganizationId ?? void 0, sourceAssetId),
12466
+ queryFn: async () => {
12467
+ return apiRequest(`/content/source-assets/${sourceAssetId}`);
12468
+ },
12469
+ enabled: isReady && !!sourceAssetId
12470
+ });
12471
+ }
12472
+ function useCreateContentSourceAsset() {
12473
+ const { apiRequest } = useElevasisServices();
12474
+ const queryClient = useQueryClient();
12475
+ return useMutation({
12476
+ mutationFn: async (asset) => {
12477
+ return apiRequest("/content/source-assets", {
12478
+ method: "POST",
12479
+ body: JSON.stringify(asset)
12480
+ });
12481
+ },
12482
+ onSuccess: () => {
12483
+ void queryClient.invalidateQueries({ queryKey: contentKeys.sourceAssets() });
12484
+ },
12485
+ onError: (error) => {
12486
+ console.error("Failed to create content source asset:", error);
12487
+ showApiErrorNotification(error);
12488
+ }
12489
+ });
12490
+ }
12491
+ function useUpdateContentSourceAsset() {
12492
+ const { apiRequest, workOSOrganizationId } = useElevasisServices();
12493
+ const queryClient = useQueryClient();
12494
+ return useMutation({
12495
+ mutationFn: async ({
12496
+ sourceAssetId,
12497
+ updates
12498
+ }) => {
12499
+ return apiRequest(`/content/source-assets/${sourceAssetId}`, {
12500
+ method: "PATCH",
12501
+ body: JSON.stringify(updates)
12502
+ });
12503
+ },
12504
+ onSuccess: (_data, { sourceAssetId }) => {
12505
+ void queryClient.invalidateQueries({ queryKey: contentKeys.sourceAssets() });
12506
+ void queryClient.invalidateQueries({
12507
+ queryKey: contentKeys.sourceAssetDetail(workOSOrganizationId ?? void 0, sourceAssetId)
12508
+ });
12509
+ },
12510
+ onError: (error) => {
12511
+ console.error("Failed to update content source asset:", error);
12512
+ showApiErrorNotification(error);
12513
+ }
12514
+ });
12515
+ }
12437
12516
  function sumStatusCounts(statusKeys, totals) {
12438
12517
  const countsByStatus = {};
12439
12518
  let totalItems = 0;
@@ -13161,7 +13240,25 @@ function useProjectRealtime(projectId) {
13161
13240
  });
13162
13241
  }
13163
13242
 
13164
- // src/features/content/board/deriveBoard.ts
13243
+ // ../core/src/content/review-gates.ts
13244
+ function isOpenContentReviewGate(entry, step) {
13245
+ if (!step || step.reviewMode !== "queued") return false;
13246
+ if (entry.status === "running" || entry.executionId === null) return false;
13247
+ return true;
13248
+ }
13249
+ function getOpenContentReviewGates(processingState, steps) {
13250
+ const stepByKey = Array.isArray(steps) ? new Map(steps.map((step) => [step.key, step])) : steps;
13251
+ const gates = [];
13252
+ for (const [stepKey, entry] of Object.entries(processingState)) {
13253
+ const step = stepByKey.get(stepKey);
13254
+ if (!isOpenContentReviewGate(entry, step)) continue;
13255
+ gates.push({ stepKey, entry, step });
13256
+ }
13257
+ gates.sort((a, b) => Date.parse(a.entry.attemptedAt) - Date.parse(b.entry.attemptedAt));
13258
+ return gates;
13259
+ }
13260
+
13261
+ // ../core/src/content/derive-board.ts
13165
13262
  function sortPipelineSteps(steps) {
13166
13263
  return [...steps].sort((a, b) => {
13167
13264
  if (a.order !== b.order) return a.order - b.order;
@@ -13243,7 +13340,7 @@ function deriveContentBoard(items, pipeline, now) {
13243
13340
  };
13244
13341
  }
13245
13342
 
13246
- // src/features/content/board/itemIdentity.ts
13343
+ // ../core/src/content/item-identity.ts
13247
13344
  function getContentItemIdentity(item, payloadFields, maxLength = 80) {
13248
13345
  const candidate = resolveIdentityCandidate(item, payloadFields);
13249
13346
  return normalizeIdentity(candidate, maxLength);
@@ -16573,4 +16670,4 @@ function createTestSystemsProvider({
16573
16670
  };
16574
16671
  }
16575
16672
 
16576
- export { APIErrorAlert, AccessGuard, AccessKeys, ActivityTimeline, ActivityTrendChart, AgentResourceEntrySchema, ApiKeyService, AppearanceContext, AppearanceProvider, CONTENT_ITEMS, CRM_ITEMS, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleSection, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, ConfirmationInputModal, ConfirmationModal, ContentSidebar, ContentSidebarMiddle, ContextViewer, CostTrendChart, CredentialSchemas, CredentialService, CrmActionsProvider, CrmSidebarMiddle, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, DEFAULT_CONTENT_VOCABULARY, DEFAULT_ORGANIZATION_GRAPH_FILTERS, DEFAULT_WAIT_FOR_ORGANIZATION, DeploymentService, DetailCardSkeleton, EMPTY_LIST_ACTIONS, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, FILTERABLE_DOMAIN_KEYS, FeatureUnavailableState, GlowDot, HeroStatsRow, IdentityDomainSchema, IntegrationResourceEntrySchema, JsonViewer, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, LEAD_GEN_ITEMS, LeadGenSidebarMiddle, ListActionsProvider, ListSkeleton, MEMBERSHIP_STATUS_COLORS, MyReviewQueuePanel, MyTasksPanel, NavigationButton, NotificationProvider, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_NODE_KIND_ORDER, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationModelDriftActionIcon, PROVISIONING_STATE_DISPLAY, PageNotFound, PageTitleCaption, ProtectedRoute, QuickCreateActions, RequestActionIcon, RequestModal, ResourceCard, ResourcesSidebar, RoleSchema, SAVED_VIEW_PRESETS, SYSTEM_RESOURCE_KINDS, SavedViewsPanel, ScriptResourceEntrySchema, SemanticIcon, SessionListItem, SessionsSidebar, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SurfaceDefinitionSchema, SystemShell, TabCountBadge, TimeRangeSelector, TrendIndicator, WebhookEndpointService, WorkflowResourceEntrySchema, acquisitionListKeys, aggregateSystemMetrics, buildKnowledgeOmTreeData, buildOrganizationGraph, clientsKeys, clientsManifest, collectResourceFilterFacets, companyKeys, computeProtectedRouteGate, contactKeys, contentKeys, contentManifest, createTestSystemsProvider, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, deriveActions, deriveContentBoard, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, findKnowledgeTreeNodeByValue, findListActionByAction, findOmTreeGroup, formatResourceAttribution, getAllBuildTemplates, getConceptDefinition, getContentItemIdentity, getCrmPipelineCatalog, getKnowledgeDomainFolderCommand, getKnowledgeGraphNodeCommand, getKnowledgeIconToken, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getKnowledgeTreeFolderCommand, getLeadGenStageCatalog, getListActionWorkflowId, getOntologyDomainLabel, getPrimaryOntologyItemsForDomain, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getSessionView, getSharedOrganizationGraph, isSessionCapable, knowledgeManifest, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, monitoringManifest, normaliseConceptKey, observabilityKeys, operationsKeys, operationsManifest, pickLatestRunAt, projectActivityKeys, projectNavigationGroups, projectNavigationSurfaces, requestTopbarActionManifest, requestsKeys, resolveContentStepResource, resolveContentVocabulary, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, sortData, submittedRequestsManifest, sumStatusCounts, transformMembershipToTableRow, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useContentConfig, useContentDistribution, useContentDistributions, useContentItem, useContentItemAttempts, useContentItems, useContentPipelineSummary, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useLeadGenActionRegistry, useLeadGenBulkActions, useLeadGenHeaderActions, useLeadGenRowActions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationAdapter, useNotificationCount, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, useOrganizationModelDrift, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useReviewContentItem, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useSystemsViewState, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateContentDistribution, useUpdateContentItem, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution };
16673
+ export { APIErrorAlert, AccessGuard, AccessKeys, ActivityTimeline, ActivityTrendChart, AgentResourceEntrySchema, ApiKeyService, AppearanceContext, AppearanceProvider, CONTENT_ITEMS, CRM_ITEMS, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleSection, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, ConfirmationInputModal, ConfirmationModal, ContentSidebar, ContentSidebarMiddle, ContextViewer, CostTrendChart, CredentialSchemas, CredentialService, CrmActionsProvider, CrmSidebarMiddle, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, DEFAULT_CONTENT_VOCABULARY, DEFAULT_ORGANIZATION_GRAPH_FILTERS, DEFAULT_WAIT_FOR_ORGANIZATION, DeploymentService, DetailCardSkeleton, EMPTY_LIST_ACTIONS, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, FILTERABLE_DOMAIN_KEYS, FeatureUnavailableState, GlowDot, HeroStatsRow, IdentityDomainSchema, IntegrationResourceEntrySchema, JsonViewer, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, LEAD_GEN_ITEMS, LeadGenSidebarMiddle, ListActionsProvider, ListSkeleton, MEMBERSHIP_STATUS_COLORS, MyReviewQueuePanel, MyTasksPanel, NavigationButton, NotificationProvider, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, ORGANIZATION_GRAPH_EDGE_KIND_LABELS, ORGANIZATION_GRAPH_EDGE_KIND_MEANINGS, ORGANIZATION_GRAPH_NODE_KIND_DETAIL_LABELS, ORGANIZATION_GRAPH_NODE_KIND_LABELS, ORGANIZATION_GRAPH_NODE_KIND_MEANINGS, ORGANIZATION_GRAPH_NODE_KIND_ORDER, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationModelDriftActionIcon, PROVISIONING_STATE_DISPLAY, PageNotFound, PageTitleCaption, ProtectedRoute, QuickCreateActions, RequestActionIcon, RequestModal, ResourceCard, ResourcesSidebar, RoleSchema, SAVED_VIEW_PRESETS, SYSTEM_RESOURCE_KINDS, SavedViewsPanel, ScriptResourceEntrySchema, SemanticIcon, SessionListItem, SessionsSidebar, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SurfaceDefinitionSchema, SystemShell, TabCountBadge, TimeRangeSelector, TrendIndicator, WebhookEndpointService, WorkflowResourceEntrySchema, acquisitionListKeys, aggregateSystemMetrics, buildKnowledgeOmTreeData, buildOrganizationGraph, clientsKeys, clientsManifest, collectResourceFilterFacets, companyKeys, computeProtectedRouteGate, contactKeys, contentKeys, contentManifest, createTestSystemsProvider, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, deriveActions, deriveContentBoard, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, findKnowledgeTreeNodeByValue, findListActionByAction, findOmTreeGroup, formatResourceAttribution, getAllBuildTemplates, getConceptDefinition, getContentItemIdentity, getCrmPipelineCatalog, getKnowledgeDomainFolderCommand, getKnowledgeGraphNodeCommand, getKnowledgeIconToken, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getKnowledgeTreeFolderCommand, getLeadGenStageCatalog, getListActionWorkflowId, getOntologyDomainLabel, getOpenContentReviewGates, getPrimaryOntologyItemsForDomain, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getSessionView, getSharedOrganizationGraph, isSessionCapable, knowledgeManifest, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, monitoringManifest, normaliseConceptKey, observabilityKeys, operationsKeys, operationsManifest, pickLatestRunAt, projectActivityKeys, projectNavigationGroups, projectNavigationSurfaces, requestTopbarActionManifest, requestsKeys, resolveContentStepResource, resolveContentVocabulary, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, sortData, submittedRequestsManifest, sumStatusCounts, transformMembershipToTableRow, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useContentConfig, useContentDistribution, useContentDistributions, useContentItem, useContentItemAttempts, useContentItems, useContentPipelineSummary, useContentSourceAsset, useContentSourceAssets, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateContentSourceAsset, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useLeadGenActionRegistry, useLeadGenBulkActions, useLeadGenHeaderActions, useLeadGenRowActions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationAdapter, useNotificationCount, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, useOrganizationModelDrift, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useReviewContentItem, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useSystemsViewState, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateContentDistribution, useUpdateContentItem, useUpdateContentSourceAsset, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution };
@@ -1,8 +1,8 @@
1
- import { CRM_API_INTERFACE } from './chunk-LY3IKYTZ.js';
1
+ import { CRM_API_INTERFACE } from './chunk-LL5H7J4N.js';
2
2
  import { PageContainer } from './chunk-BZZCNLT6.js';
3
3
  import { TableSelectionToolbar, SortableHeader } from './chunk-TUMSNGTX.js';
4
4
  import { FilterBar } from './chunk-PDHTXPSF.js';
5
- import { CrmSidebarMiddle, useDealsSummary, useOptionalElevasisSystems, getCrmPipelineCatalog, CenteredErrorState, StatCard, PageTitleCaption, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, SubshellContentContainer, EmptyState, CustomModal, useDealDetail, useCrmActions, ActivityTimeline, useCompany, ContextViewer, JsonViewer, dealKeys, useContact, deriveActions, useExecuteAction } from './chunk-6TT3FQEZ.js';
5
+ import { CrmSidebarMiddle, useDealsSummary, useOptionalElevasisSystems, getCrmPipelineCatalog, CenteredErrorState, StatCard, PageTitleCaption, useDeleteDeal, usePaginationState, useDeals, useTableSort, sortData, useTableSelection, SubshellContentContainer, EmptyState, CustomModal, useDealDetail, useCrmActions, ActivityTimeline, useCompany, ContextViewer, JsonViewer, dealKeys, useContact, deriveActions, useExecuteAction } from './chunk-UZ7MSORW.js';
6
6
  import { showApiErrorNotification, showSuccessNotification } from './chunk-C75XWBYZ.js';
7
7
  import { SubshellSidebarSection } from './chunk-MISHPEJX.js';
8
8
  import { CardHeader } from './chunk-62GVNH5U.js';
@@ -1,4 +1,4 @@
1
- import { useCyberColors, useResourcesHealth, EmptyState, CyberLegendItem, CyberAreaChart } from './chunk-6TT3FQEZ.js';
1
+ import { useCyberColors, useResourcesHealth, EmptyState, CyberLegendItem, CyberAreaChart } from './chunk-UZ7MSORW.js';
2
2
  import { CardHeader } from './chunk-62GVNH5U.js';
3
3
  import { getTimeRangeDates, formatBucketTime } from './chunk-Y6I3IC45.js';
4
4
  import { Paper, Center, Loader, Group } from '@mantine/core';