@elevasis/ui 2.51.0 → 2.51.1
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 +82 -151
- package/dist/app/index.js +5 -4
- package/dist/auth/index.js +3 -3
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-GUKY77FJ.js → chunk-E6NSKXYN.js} +12 -4
- package/dist/chunk-M7WWRZ5Z.js +159 -0
- package/dist/{chunk-SBNC3FRX.js → chunk-V3B26UZR.js} +10 -10
- package/dist/components/chat/index.d.ts +9 -1
- package/dist/components/chat/index.js +1 -1
- package/dist/components/index.d.ts +80 -150
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +80 -150
- package/dist/features/auth/index.js +4 -4
- package/dist/features/clients/index.js +3 -3
- package/dist/features/crm/index.d.ts +80 -150
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.d.ts +80 -150
- package/dist/features/delivery/index.js +3 -3
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.js +3 -3
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.js +3 -3
- package/dist/features/public-agent-chat/index.d.ts +17 -3
- package/dist/features/public-agent-chat/index.js +313 -113
- package/dist/features/settings/index.d.ts +80 -150
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +80 -150
- package/dist/hooks/delivery/index.js +3 -3
- package/dist/hooks/index.d.ts +97 -151
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.d.ts +97 -151
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +97 -151
- package/dist/index.js +3 -3
- package/dist/initialization/index.d.ts +80 -150
- package/dist/knowledge/index.js +4 -4
- package/dist/layout/index.js +3 -3
- package/dist/organization/index.js +3 -3
- package/dist/profile/index.d.ts +80 -150
- package/dist/provider/index.d.ts +80 -150
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +80 -150
- package/dist/provider/published.js +3 -3
- package/dist/supabase/index.d.ts +159 -292
- package/dist/types/index.d.ts +80 -150
- package/package.json +5 -5
- package/dist/chunk-EJL4U7OZ.js +0 -79
|
@@ -166,6 +166,8 @@ interface ChatInterfaceProps {
|
|
|
166
166
|
input: string;
|
|
167
167
|
onInputChange: (value: string) => void;
|
|
168
168
|
onSendMessage: () => void;
|
|
169
|
+
className?: string;
|
|
170
|
+
style?: React.CSSProperties;
|
|
169
171
|
isProcessing?: boolean;
|
|
170
172
|
isConnected?: boolean;
|
|
171
173
|
error?: string | null;
|
|
@@ -174,13 +176,19 @@ interface ChatInterfaceProps {
|
|
|
174
176
|
emptyStateSubtext?: string;
|
|
175
177
|
placeholder?: string;
|
|
176
178
|
messageAreaVariant?: 'grid' | 'plain';
|
|
179
|
+
/**
|
|
180
|
+
* When false, only user/assistant text messages render — agent-activity
|
|
181
|
+
* bubbles (reasoning, tool calls/results, errors) are filtered out. Defaults
|
|
182
|
+
* to true so studio/session surfaces keep showing full activity.
|
|
183
|
+
*/
|
|
184
|
+
showAgentActivity?: boolean;
|
|
177
185
|
}
|
|
178
186
|
/**
|
|
179
187
|
* Shared chat interface component
|
|
180
188
|
* Used across ai studio sessions and production agent chat
|
|
181
189
|
* Handles message display, auto-scroll, and input area
|
|
182
190
|
*/
|
|
183
|
-
declare function ChatInterface({ messages, input, onInputChange, onSendMessage, isProcessing, isConnected, error, onClearError, emptyStateText, emptyStateSubtext, placeholder, messageAreaVariant }: ChatInterfaceProps): react_jsx_runtime.JSX.Element;
|
|
191
|
+
declare function ChatInterface({ messages, input, onInputChange, onSendMessage, className, style, isProcessing, isConnected, error, onClearError, emptyStateText, emptyStateSubtext, placeholder, messageAreaVariant, showAgentActivity }: ChatInterfaceProps): react_jsx_runtime.JSX.Element;
|
|
184
192
|
|
|
185
193
|
interface MessageBubbleProps {
|
|
186
194
|
message: ChatMessage;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { ChatHeader, ChatInputArea, ChatInterface, ChatSidebar, MessageBubble, ProcessingIndicator } from '../../chunk-
|
|
1
|
+
export { ChatHeader, ChatInputArea, ChatInterface, ChatSidebar, MessageBubble, ProcessingIndicator } from '../../chunk-E6NSKXYN.js';
|
|
2
2
|
import '../../chunk-I2KLQ2HA.js';
|
|
@@ -451,9 +451,6 @@ type Json = string | number | boolean | null | {
|
|
|
451
451
|
[key: string]: Json | undefined;
|
|
452
452
|
} | Json[];
|
|
453
453
|
type Database = {
|
|
454
|
-
__InternalSupabase: {
|
|
455
|
-
PostgrestVersion: "12.2.3 (519615d)";
|
|
456
|
-
};
|
|
457
454
|
public: {
|
|
458
455
|
Tables: {
|
|
459
456
|
acq_artifacts: {
|
|
@@ -1653,6 +1650,74 @@ type Database = {
|
|
|
1653
1650
|
}
|
|
1654
1651
|
];
|
|
1655
1652
|
};
|
|
1653
|
+
agent_access_grants: {
|
|
1654
|
+
Row: {
|
|
1655
|
+
allowed_origins: string[];
|
|
1656
|
+
branding: Json;
|
|
1657
|
+
capture_fields: Json;
|
|
1658
|
+
code_hash: string | null;
|
|
1659
|
+
code_salt: string | null;
|
|
1660
|
+
created_at: string;
|
|
1661
|
+
disabled_at: string | null;
|
|
1662
|
+
expires_at: string | null;
|
|
1663
|
+
id: string;
|
|
1664
|
+
max_sessions_per_visitor: number;
|
|
1665
|
+
max_turns_per_session: number;
|
|
1666
|
+
mode: string;
|
|
1667
|
+
organization_id: string;
|
|
1668
|
+
resource_id: string;
|
|
1669
|
+
slug: string;
|
|
1670
|
+
tool_policy: Json;
|
|
1671
|
+
updated_at: string;
|
|
1672
|
+
};
|
|
1673
|
+
Insert: {
|
|
1674
|
+
allowed_origins?: string[];
|
|
1675
|
+
branding?: Json;
|
|
1676
|
+
capture_fields?: Json;
|
|
1677
|
+
code_hash?: string | null;
|
|
1678
|
+
code_salt?: string | null;
|
|
1679
|
+
created_at?: string;
|
|
1680
|
+
disabled_at?: string | null;
|
|
1681
|
+
expires_at?: string | null;
|
|
1682
|
+
id?: string;
|
|
1683
|
+
max_sessions_per_visitor?: number;
|
|
1684
|
+
max_turns_per_session?: number;
|
|
1685
|
+
mode?: string;
|
|
1686
|
+
organization_id: string;
|
|
1687
|
+
resource_id: string;
|
|
1688
|
+
slug: string;
|
|
1689
|
+
tool_policy?: Json;
|
|
1690
|
+
updated_at?: string;
|
|
1691
|
+
};
|
|
1692
|
+
Update: {
|
|
1693
|
+
allowed_origins?: string[];
|
|
1694
|
+
branding?: Json;
|
|
1695
|
+
capture_fields?: Json;
|
|
1696
|
+
code_hash?: string | null;
|
|
1697
|
+
code_salt?: string | null;
|
|
1698
|
+
created_at?: string;
|
|
1699
|
+
disabled_at?: string | null;
|
|
1700
|
+
expires_at?: string | null;
|
|
1701
|
+
id?: string;
|
|
1702
|
+
max_sessions_per_visitor?: number;
|
|
1703
|
+
max_turns_per_session?: number;
|
|
1704
|
+
mode?: string;
|
|
1705
|
+
organization_id?: string;
|
|
1706
|
+
resource_id?: string;
|
|
1707
|
+
slug?: string;
|
|
1708
|
+
tool_policy?: Json;
|
|
1709
|
+
updated_at?: string;
|
|
1710
|
+
};
|
|
1711
|
+
Relationships: [
|
|
1712
|
+
{
|
|
1713
|
+
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
1714
|
+
columns: ["organization_id"];
|
|
1715
|
+
isOneToOne: false;
|
|
1716
|
+
referencedRelation: "organizations";
|
|
1717
|
+
referencedColumns: ["id"];
|
|
1718
|
+
}
|
|
1719
|
+
];
|
|
1720
|
+
};
|
|
1656
1721
|
api_keys: {
|
|
1657
1722
|
Row: {
|
|
1658
1723
|
created_at: string | null;
|
|
@@ -2560,138 +2625,6 @@ type Database = {
|
|
|
2560
2625
|
};
|
|
2561
2626
|
Relationships: [];
|
|
2562
2627
|
};
|
|
2563
|
-
agent_access_grants: {
|
|
2564
|
-
Row: {
|
|
2565
|
-
allowed_origins: string[];
|
|
2566
|
-
branding: Json;
|
|
2567
|
-
capture_fields: Json;
|
|
2568
|
-
code_hash: string | null;
|
|
2569
|
-
code_salt: string | null;
|
|
2570
|
-
created_at: string;
|
|
2571
|
-
disabled_at: string | null;
|
|
2572
|
-
expires_at: string | null;
|
|
2573
|
-
id: string;
|
|
2574
|
-
max_sessions_per_visitor: number;
|
|
2575
|
-
max_turns_per_session: number;
|
|
2576
|
-
mode: string;
|
|
2577
|
-
organization_id: string;
|
|
2578
|
-
resource_id: string;
|
|
2579
|
-
slug: string;
|
|
2580
|
-
tool_policy: Json;
|
|
2581
|
-
updated_at: string;
|
|
2582
|
-
};
|
|
2583
|
-
Insert: {
|
|
2584
|
-
allowed_origins?: string[];
|
|
2585
|
-
branding?: Json;
|
|
2586
|
-
capture_fields?: Json;
|
|
2587
|
-
code_hash?: string | null;
|
|
2588
|
-
code_salt?: string | null;
|
|
2589
|
-
created_at?: string;
|
|
2590
|
-
disabled_at?: string | null;
|
|
2591
|
-
expires_at?: string | null;
|
|
2592
|
-
id?: string;
|
|
2593
|
-
max_sessions_per_visitor?: number;
|
|
2594
|
-
max_turns_per_session?: number;
|
|
2595
|
-
mode?: string;
|
|
2596
|
-
organization_id: string;
|
|
2597
|
-
resource_id: string;
|
|
2598
|
-
slug: string;
|
|
2599
|
-
tool_policy?: Json;
|
|
2600
|
-
updated_at?: string;
|
|
2601
|
-
};
|
|
2602
|
-
Update: {
|
|
2603
|
-
allowed_origins?: string[];
|
|
2604
|
-
branding?: Json;
|
|
2605
|
-
capture_fields?: Json;
|
|
2606
|
-
code_hash?: string | null;
|
|
2607
|
-
code_salt?: string | null;
|
|
2608
|
-
created_at?: string;
|
|
2609
|
-
disabled_at?: string | null;
|
|
2610
|
-
expires_at?: string | null;
|
|
2611
|
-
id?: string;
|
|
2612
|
-
max_sessions_per_visitor?: number;
|
|
2613
|
-
max_turns_per_session?: number;
|
|
2614
|
-
mode?: string;
|
|
2615
|
-
organization_id?: string;
|
|
2616
|
-
resource_id?: string;
|
|
2617
|
-
slug?: string;
|
|
2618
|
-
tool_policy?: Json;
|
|
2619
|
-
updated_at?: string;
|
|
2620
|
-
};
|
|
2621
|
-
Relationships: [
|
|
2622
|
-
{
|
|
2623
|
-
foreignKeyName: "agent_access_grants_organization_id_fkey";
|
|
2624
|
-
columns: ["organization_id"];
|
|
2625
|
-
isOneToOne: false;
|
|
2626
|
-
referencedRelation: "organizations";
|
|
2627
|
-
referencedColumns: ["id"];
|
|
2628
|
-
}
|
|
2629
|
-
];
|
|
2630
|
-
};
|
|
2631
|
-
agent_chat_capabilities: {
|
|
2632
|
-
Row: {
|
|
2633
|
-
created_at: string;
|
|
2634
|
-
expires_at: string;
|
|
2635
|
-
grant_id: string;
|
|
2636
|
-
id: string;
|
|
2637
|
-
organization_id: string;
|
|
2638
|
-
origin: string | null;
|
|
2639
|
-
resource_id: string;
|
|
2640
|
-
revoked_at: string | null;
|
|
2641
|
-
session_id: string | null;
|
|
2642
|
-
token_hash: string;
|
|
2643
|
-
visitor_id: string | null;
|
|
2644
|
-
};
|
|
2645
|
-
Insert: {
|
|
2646
|
-
created_at?: string;
|
|
2647
|
-
expires_at: string;
|
|
2648
|
-
grant_id: string;
|
|
2649
|
-
id?: string;
|
|
2650
|
-
organization_id: string;
|
|
2651
|
-
origin?: string | null;
|
|
2652
|
-
resource_id: string;
|
|
2653
|
-
revoked_at?: string | null;
|
|
2654
|
-
session_id?: string | null;
|
|
2655
|
-
token_hash: string;
|
|
2656
|
-
visitor_id?: string | null;
|
|
2657
|
-
};
|
|
2658
|
-
Update: {
|
|
2659
|
-
created_at?: string;
|
|
2660
|
-
expires_at?: string;
|
|
2661
|
-
grant_id?: string;
|
|
2662
|
-
id?: string;
|
|
2663
|
-
organization_id?: string;
|
|
2664
|
-
origin?: string | null;
|
|
2665
|
-
resource_id?: string;
|
|
2666
|
-
revoked_at?: string | null;
|
|
2667
|
-
session_id?: string | null;
|
|
2668
|
-
token_hash?: string;
|
|
2669
|
-
visitor_id?: string | null;
|
|
2670
|
-
};
|
|
2671
|
-
Relationships: [
|
|
2672
|
-
{
|
|
2673
|
-
foreignKeyName: "agent_chat_capabilities_grant_id_fkey";
|
|
2674
|
-
columns: ["grant_id"];
|
|
2675
|
-
isOneToOne: false;
|
|
2676
|
-
referencedRelation: "agent_access_grants";
|
|
2677
|
-
referencedColumns: ["id"];
|
|
2678
|
-
},
|
|
2679
|
-
{
|
|
2680
|
-
foreignKeyName: "agent_chat_capabilities_organization_id_fkey";
|
|
2681
|
-
columns: ["organization_id"];
|
|
2682
|
-
isOneToOne: false;
|
|
2683
|
-
referencedRelation: "organizations";
|
|
2684
|
-
referencedColumns: ["id"];
|
|
2685
|
-
},
|
|
2686
|
-
{
|
|
2687
|
-
foreignKeyName: "agent_chat_capabilities_session_id_fkey";
|
|
2688
|
-
columns: ["session_id"];
|
|
2689
|
-
isOneToOne: false;
|
|
2690
|
-
referencedRelation: "sessions";
|
|
2691
|
-
referencedColumns: ["session_id"];
|
|
2692
|
-
}
|
|
2693
|
-
];
|
|
2694
|
-
};
|
|
2695
2628
|
organizations: {
|
|
2696
2629
|
Row: {
|
|
2697
2630
|
config: Json;
|
|
@@ -3590,11 +3523,11 @@ type Database = {
|
|
|
3590
3523
|
Returns: undefined;
|
|
3591
3524
|
};
|
|
3592
3525
|
auth_jwt_claims: {
|
|
3593
|
-
Args: never
|
|
3526
|
+
Args: Record<PropertyKey, never>;
|
|
3594
3527
|
Returns: Json;
|
|
3595
3528
|
};
|
|
3596
3529
|
auth_uid_safe: {
|
|
3597
|
-
Args: never
|
|
3530
|
+
Args: Record<PropertyKey, never>;
|
|
3598
3531
|
Returns: string;
|
|
3599
3532
|
};
|
|
3600
3533
|
can_assign_role_in_org: {
|
|
@@ -3605,7 +3538,7 @@ type Database = {
|
|
|
3605
3538
|
Returns: boolean;
|
|
3606
3539
|
};
|
|
3607
3540
|
current_user_is_platform_admin: {
|
|
3608
|
-
Args: never
|
|
3541
|
+
Args: Record<PropertyKey, never>;
|
|
3609
3542
|
Returns: boolean;
|
|
3610
3543
|
};
|
|
3611
3544
|
current_user_shares_org_with: {
|
|
@@ -3615,11 +3548,11 @@ type Database = {
|
|
|
3615
3548
|
Returns: boolean;
|
|
3616
3549
|
};
|
|
3617
3550
|
current_user_supabase_id: {
|
|
3618
|
-
Args: never
|
|
3551
|
+
Args: Record<PropertyKey, never>;
|
|
3619
3552
|
Returns: string;
|
|
3620
3553
|
};
|
|
3621
3554
|
detect_stalled_executions: {
|
|
3622
|
-
Args: never
|
|
3555
|
+
Args: Record<PropertyKey, never>;
|
|
3623
3556
|
Returns: undefined;
|
|
3624
3557
|
};
|
|
3625
3558
|
execute_session_turn: {
|
|
@@ -3640,7 +3573,7 @@ type Database = {
|
|
|
3640
3573
|
}[];
|
|
3641
3574
|
};
|
|
3642
3575
|
get_platform_credential_kek: {
|
|
3643
|
-
Args: never
|
|
3576
|
+
Args: Record<PropertyKey, never>;
|
|
3644
3577
|
Returns: string;
|
|
3645
3578
|
};
|
|
3646
3579
|
get_storage_org_id: {
|
|
@@ -3650,7 +3583,7 @@ type Database = {
|
|
|
3650
3583
|
Returns: string;
|
|
3651
3584
|
};
|
|
3652
3585
|
get_workos_user_id: {
|
|
3653
|
-
Args: never
|
|
3586
|
+
Args: Record<PropertyKey, never>;
|
|
3654
3587
|
Returns: string;
|
|
3655
3588
|
};
|
|
3656
3589
|
has_org_access: {
|
|
@@ -3658,10 +3591,7 @@ type Database = {
|
|
|
3658
3591
|
action?: string;
|
|
3659
3592
|
org_id: string;
|
|
3660
3593
|
system_path: string;
|
|
3661
|
-
}
|
|
3662
|
-
Returns: boolean;
|
|
3663
|
-
} | {
|
|
3664
|
-
Args: {
|
|
3594
|
+
} | {
|
|
3665
3595
|
action?: string;
|
|
3666
3596
|
system_path: string;
|
|
3667
3597
|
};
|
|
@@ -3697,15 +3627,15 @@ type Database = {
|
|
|
3697
3627
|
Returns: Json;
|
|
3698
3628
|
};
|
|
3699
3629
|
process_due_schedules: {
|
|
3700
|
-
Args: never
|
|
3630
|
+
Args: Record<PropertyKey, never>;
|
|
3701
3631
|
Returns: Json;
|
|
3702
3632
|
};
|
|
3703
3633
|
recompute_all_memberships: {
|
|
3704
|
-
Args: never
|
|
3634
|
+
Args: Record<PropertyKey, never>;
|
|
3705
3635
|
Returns: undefined;
|
|
3706
3636
|
};
|
|
3707
3637
|
repair_membership_role_assignments: {
|
|
3708
|
-
Args: never
|
|
3638
|
+
Args: Record<PropertyKey, never>;
|
|
3709
3639
|
Returns: {
|
|
3710
3640
|
membership_id: string;
|
|
3711
3641
|
organization_id: string;
|
|
@@ -3735,7 +3665,7 @@ type Database = {
|
|
|
3735
3665
|
Returns: string;
|
|
3736
3666
|
};
|
|
3737
3667
|
upsert_user_profile: {
|
|
3738
|
-
Args: never
|
|
3668
|
+
Args: Record<PropertyKey, never>;
|
|
3739
3669
|
Returns: {
|
|
3740
3670
|
profile_display_name: string;
|
|
3741
3671
|
profile_email: string;
|
package/dist/components/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, 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, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, 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 { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, 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, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, 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-V3B26UZR.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -11,8 +11,8 @@ export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chu
|
|
|
11
11
|
export { CardHeader } from '../chunk-S3XR4II4.js';
|
|
12
12
|
import '../chunk-6DO4PE3O.js';
|
|
13
13
|
import '../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../chunk-
|
|
15
|
-
export { StyledMarkdown } from '../chunk-
|
|
14
|
+
import '../chunk-M7WWRZ5Z.js';
|
|
15
|
+
export { StyledMarkdown } from '../chunk-E6NSKXYN.js';
|
|
16
16
|
import '../chunk-2IFYDILW.js';
|
|
17
17
|
import '../chunk-Q7DJKLEN.js';
|
|
18
18
|
export { Graph_module_css_default as graphStyles } from '../chunk-HENXLGVD.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { useBreadcrumbs } from '../../chunk-
|
|
1
|
+
export { useBreadcrumbs } from '../../chunk-V3B26UZR.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -11,8 +11,8 @@ import '../../chunk-GMXGDO3I.js';
|
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
12
12
|
import '../../chunk-6DO4PE3O.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-M7WWRZ5Z.js';
|
|
15
|
+
import '../../chunk-E6NSKXYN.js';
|
|
16
16
|
import '../../chunk-2IFYDILW.js';
|
|
17
17
|
import '../../chunk-Q7DJKLEN.js';
|
|
18
18
|
import '../../chunk-HENXLGVD.js';
|