@elevasis/ui 2.35.0 → 2.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.d.ts +25 -18
- package/dist/app/index.js +2 -2
- package/dist/{chunk-26HFM4MH.js → chunk-F6EFC2MJ.js} +1555 -1903
- package/dist/{chunk-VDOOGGBA.js → chunk-K4UZU3TU.js} +2 -2
- package/dist/{chunk-4U3XAWCN.js → chunk-O2Q4VMRN.js} +134 -495
- package/dist/components/index.d.ts +7 -4
- package/dist/components/index.js +2 -2
- package/dist/components/navigation/index.js +2 -2
- package/dist/execution/index.d.ts +2 -2
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/clients/index.js +2 -2
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +3 -3
- package/dist/features/dashboard/index.js +2 -2
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +2 -2
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +286 -48
- package/dist/features/lead-gen/index.js +2 -2
- package/dist/features/monitoring/index.js +2 -2
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.d.ts +30 -30
- package/dist/features/operations/index.js +2 -2
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +2 -2
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +29 -16
- package/dist/hooks/index.js +2 -2
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +13 -13
- package/dist/hooks/published.d.ts +29 -16
- package/dist/hooks/published.js +2 -2
- package/dist/index.d.ts +51 -34
- package/dist/index.js +2 -2
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +21 -21
- package/dist/knowledge/index.js +6 -6
- package/dist/{knowledge-search-index-ORIJCEZX.js → knowledge-search-index-NBCTFIOH.js} +2 -2
- package/dist/organization/index.js +2 -2
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +25 -18
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +25 -18
- package/dist/provider/published.js +2 -2
- package/dist/sse/index.js +26 -5
- package/dist/supabase/index.d.ts +6 -0
- package/dist/types/index.d.ts +16 -13
- package/dist/utils/index.d.ts +3 -3
- package/package.json +4 -4
|
@@ -317,8 +317,8 @@ interface SerializedWorkflowDefinition {
|
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
320
|
-
deprecated: "deprecated";
|
|
321
320
|
active: "active";
|
|
321
|
+
deprecated: "deprecated";
|
|
322
322
|
archived: "archived";
|
|
323
323
|
}>;
|
|
324
324
|
type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
|
|
@@ -3222,6 +3222,7 @@ type Database = {
|
|
|
3222
3222
|
title: string | null;
|
|
3223
3223
|
updated_at: string;
|
|
3224
3224
|
user_id: string;
|
|
3225
|
+
visibility: string;
|
|
3225
3226
|
};
|
|
3226
3227
|
Insert: {
|
|
3227
3228
|
content: string;
|
|
@@ -3236,6 +3237,7 @@ type Database = {
|
|
|
3236
3237
|
title?: string | null;
|
|
3237
3238
|
updated_at?: string;
|
|
3238
3239
|
user_id: string;
|
|
3240
|
+
visibility?: string;
|
|
3239
3241
|
};
|
|
3240
3242
|
Update: {
|
|
3241
3243
|
content?: string;
|
|
@@ -3250,6 +3252,7 @@ type Database = {
|
|
|
3250
3252
|
title?: string | null;
|
|
3251
3253
|
updated_at?: string;
|
|
3252
3254
|
user_id?: string;
|
|
3255
|
+
visibility?: string;
|
|
3253
3256
|
};
|
|
3254
3257
|
Relationships: [
|
|
3255
3258
|
{
|
|
@@ -4099,10 +4102,10 @@ interface SystemEntry {
|
|
|
4099
4102
|
declare const LinkSchema: z.ZodObject<{
|
|
4100
4103
|
nodeId: z.ZodString;
|
|
4101
4104
|
kind: z.ZodEnum<{
|
|
4102
|
-
links: "links";
|
|
4103
4105
|
affects: "affects";
|
|
4104
|
-
effects: "effects";
|
|
4105
4106
|
actions: "actions";
|
|
4107
|
+
effects: "effects";
|
|
4108
|
+
links: "links";
|
|
4106
4109
|
reads: "reads";
|
|
4107
4110
|
writes: "writes";
|
|
4108
4111
|
emits: "emits";
|
|
@@ -5236,7 +5239,7 @@ type FieldPath<T> = T extends object ? {
|
|
|
5236
5239
|
[K in keyof T & string]: T[K] extends ReadonlyArray<unknown> | unknown[] ? K : T[K] extends object | undefined ? K | `${K}.${FieldPath<NonNullable<T[K]>>}` : K;
|
|
5237
5240
|
}[keyof T & string] : never;
|
|
5238
5241
|
/** Discriminated string union of supported Mantine components. */
|
|
5239
|
-
type StepConfigComponent = 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
5242
|
+
type StepConfigComponent = 'checkboxgroup' | 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
5240
5243
|
/** Rendering hint for a single field within a section. */
|
|
5241
5244
|
interface StepConfigFieldHint<T> {
|
|
5242
5245
|
/** Typed dotted path into T — typo = TS error. */
|
package/dist/components/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, Can, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity } from '../chunk-
|
|
1
|
+
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, Can, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity } from '../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../chunk-CXY7FMUM.js';
|
|
3
3
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator } from '../chunk-SIQ3P4OR.js';
|
|
4
4
|
export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../chunk-BRXELOHC.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../chunk-LUYVRATI.js';
|
|
13
13
|
export { NavigationButton } from '../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../chunk-WLOQ4IBG.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { useBreadcrumbs } from '../../chunk-
|
|
1
|
+
export { useBreadcrumbs } from '../../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -441,10 +441,10 @@ interface AgentIterationData {
|
|
|
441
441
|
declare const LinkSchema: z.ZodObject<{
|
|
442
442
|
nodeId: z.ZodString;
|
|
443
443
|
kind: z.ZodEnum<{
|
|
444
|
-
links: "links";
|
|
445
444
|
affects: "affects";
|
|
446
|
-
effects: "effects";
|
|
447
445
|
actions: "actions";
|
|
446
|
+
effects: "effects";
|
|
447
|
+
links: "links";
|
|
448
448
|
reads: "reads";
|
|
449
449
|
writes: "writes";
|
|
450
450
|
emits: "emits";
|
|
@@ -2783,6 +2783,7 @@ type Database = {
|
|
|
2783
2783
|
title: string | null;
|
|
2784
2784
|
updated_at: string;
|
|
2785
2785
|
user_id: string;
|
|
2786
|
+
visibility: string;
|
|
2786
2787
|
};
|
|
2787
2788
|
Insert: {
|
|
2788
2789
|
content: string;
|
|
@@ -2797,6 +2798,7 @@ type Database = {
|
|
|
2797
2798
|
title?: string | null;
|
|
2798
2799
|
updated_at?: string;
|
|
2799
2800
|
user_id: string;
|
|
2801
|
+
visibility?: string;
|
|
2800
2802
|
};
|
|
2801
2803
|
Update: {
|
|
2802
2804
|
content?: string;
|
|
@@ -2811,6 +2813,7 @@ type Database = {
|
|
|
2811
2813
|
title?: string | null;
|
|
2812
2814
|
updated_at?: string;
|
|
2813
2815
|
user_id?: string;
|
|
2816
|
+
visibility?: string;
|
|
2814
2817
|
};
|
|
2815
2818
|
Relationships: [
|
|
2816
2819
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import '../../chunk-
|
|
1
|
+
import '../../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import { AppShellLoader, AppShellError, useAppearance } from '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useClientStatus, useCreateClient, CustomModal, useUpdateClient, useDeleteClient, usePaginationState, useClients, FilterBar, useClient, showApiErrorNotification } from '../../chunk-
|
|
1
|
+
import { useClientStatus, useCreateClient, CustomModal, useUpdateClient, useDeleteClient, usePaginationState, useClients, FilterBar, useClient, showApiErrorNotification } from '../../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import { StatCard, CardHeader, EmptyState, PageTitleCaption, CenteredErrorState } from '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import { SubshellContentContainer, PageContainer } from '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -2832,6 +2832,7 @@ type Database = {
|
|
|
2832
2832
|
title: string | null;
|
|
2833
2833
|
updated_at: string;
|
|
2834
2834
|
user_id: string;
|
|
2835
|
+
visibility: string;
|
|
2835
2836
|
};
|
|
2836
2837
|
Insert: {
|
|
2837
2838
|
content: string;
|
|
@@ -2846,6 +2847,7 @@ type Database = {
|
|
|
2846
2847
|
title?: string | null;
|
|
2847
2848
|
updated_at?: string;
|
|
2848
2849
|
user_id: string;
|
|
2850
|
+
visibility?: string;
|
|
2849
2851
|
};
|
|
2850
2852
|
Update: {
|
|
2851
2853
|
content?: string;
|
|
@@ -2860,6 +2862,7 @@ type Database = {
|
|
|
2860
2862
|
title?: string | null;
|
|
2861
2863
|
updated_at?: string;
|
|
2862
2864
|
user_id?: string;
|
|
2865
|
+
visibility?: string;
|
|
2863
2866
|
};
|
|
2864
2867
|
Relationships: [
|
|
2865
2868
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ContactDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ContactDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -3,8 +3,8 @@ import { ReactNode } from 'react';
|
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
6
|
-
deprecated: "deprecated";
|
|
7
6
|
active: "active";
|
|
7
|
+
deprecated: "deprecated";
|
|
8
8
|
archived: "archived";
|
|
9
9
|
}>;
|
|
10
10
|
type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
|
|
@@ -150,10 +150,10 @@ interface SystemEntry {
|
|
|
150
150
|
declare const LinkSchema: z.ZodObject<{
|
|
151
151
|
nodeId: z.ZodString;
|
|
152
152
|
kind: z.ZodEnum<{
|
|
153
|
-
links: "links";
|
|
154
153
|
affects: "affects";
|
|
155
|
-
effects: "effects";
|
|
156
154
|
actions: "actions";
|
|
155
|
+
effects: "effects";
|
|
156
|
+
links: "links";
|
|
157
157
|
reads: "reads";
|
|
158
158
|
writes: "writes";
|
|
159
159
|
emits: "emits";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -2783,6 +2783,7 @@ type Database = {
|
|
|
2783
2783
|
title: string | null;
|
|
2784
2784
|
updated_at: string;
|
|
2785
2785
|
user_id: string;
|
|
2786
|
+
visibility: string;
|
|
2786
2787
|
};
|
|
2787
2788
|
Insert: {
|
|
2788
2789
|
content: string;
|
|
@@ -2797,6 +2798,7 @@ type Database = {
|
|
|
2797
2798
|
title?: string | null;
|
|
2798
2799
|
updated_at?: string;
|
|
2799
2800
|
user_id: string;
|
|
2801
|
+
visibility?: string;
|
|
2800
2802
|
};
|
|
2801
2803
|
Update: {
|
|
2802
2804
|
content?: string;
|
|
@@ -2811,6 +2813,7 @@ type Database = {
|
|
|
2811
2813
|
title?: string | null;
|
|
2812
2814
|
updated_at?: string;
|
|
2813
2815
|
user_id?: string;
|
|
2816
|
+
visibility?: string;
|
|
2814
2817
|
};
|
|
2815
2818
|
Relationships: [
|
|
2816
2819
|
{
|
|
@@ -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-F6EFC2MJ.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-O2Q4VMRN.js';
|
|
12
12
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { getSharedOrganizationGraph, KnowledgeSearchBar, KnowledgeTree, getKnowledgeIconToken, getKnowledgeNodeReadCommand } from '../../chunk-
|
|
2
|
-
import { useElevasisSystems, ORGANIZATION_GRAPH_NODE_KIND_LABELS } from '../../chunk-
|
|
1
|
+
import { getSharedOrganizationGraph, KnowledgeSearchBar, KnowledgeTree, getKnowledgeIconToken, getKnowledgeNodeReadCommand } from '../../chunk-K4UZU3TU.js';
|
|
2
|
+
import { useElevasisSystems, ORGANIZATION_GRAPH_NODE_KIND_LABELS } from '../../chunk-F6EFC2MJ.js';
|
|
3
3
|
import '../../chunk-CXY7FMUM.js';
|
|
4
4
|
import '../../chunk-SIQ3P4OR.js';
|
|
5
5
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-ZTWA5H77.js';
|
|
|
9
9
|
import '../../chunk-AUDNF2Q7.js';
|
|
10
10
|
import '../../chunk-6M6OLGQY.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
|
-
import { resolveOrganizationModel, SemanticIcon } from '../../chunk-
|
|
12
|
+
import { resolveOrganizationModel, SemanticIcon } from '../../chunk-O2Q4VMRN.js';
|
|
13
13
|
import '../../chunk-LUYVRATI.js';
|
|
14
14
|
import '../../chunk-NYBEU5TE.js';
|
|
15
15
|
import '../../chunk-WLOQ4IBG.js';
|