@elevasis/ui 2.11.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.js +5 -5
- package/dist/{chunk-23PZ57GB.js → chunk-2CGYLRTX.js} +1 -1
- package/dist/{chunk-DJBORKTR.js → chunk-5IBTTMWX.js} +3 -3
- package/dist/{chunk-BLQLWIOW.js → chunk-67BKMKFG.js} +9 -9
- package/dist/{chunk-KDAOCM66.js → chunk-6RWMRQN5.js} +1 -1
- package/dist/{chunk-BDENEI4Q.js → chunk-6WPKE7C3.js} +135 -90
- package/dist/{chunk-L34DFR2K.js → chunk-BSW5MUAQ.js} +4 -4
- package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
- package/dist/{chunk-DOFVHWAP.js → chunk-FT27I4S7.js} +82 -2
- package/dist/{chunk-AQDBRRZD.js → chunk-H333SX3N.js} +1 -1
- package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
- package/dist/{chunk-TNOIOBYI.js → chunk-NLFAEJDH.js} +2 -2
- package/dist/{chunk-BSCTPKXM.js → chunk-PCK553L4.js} +8 -3
- package/dist/{chunk-24UMQV5B.js → chunk-R73EHHPN.js} +143 -78
- package/dist/{chunk-XYSMBMAR.js → chunk-T7R5P5JJ.js} +3 -3
- package/dist/{chunk-F4TPY6YL.js → chunk-WLOQ4IBG.js} +9 -3
- package/dist/{chunk-R7WLWGPO.js → chunk-ZB5GAV7J.js} +1 -1
- package/dist/components/index.d.ts +178 -0
- package/dist/components/index.js +19 -19
- package/dist/features/auth/index.d.ts +88 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/crm/index.d.ts +90 -0
- package/dist/features/crm/index.js +7 -7
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +135 -26
- package/dist/features/delivery/index.js +7 -7
- package/dist/features/lead-gen/index.js +11 -11
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.d.ts +125 -0
- package/dist/features/operations/index.js +10 -10
- package/dist/features/settings/index.d.ts +88 -0
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/index.d.ts +318 -3
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +318 -3
- package/dist/hooks/published.js +6 -6
- package/dist/index.d.ts +318 -3
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +88 -0
- package/dist/layout/index.d.ts +9 -2
- package/dist/layout/index.js +2 -2
- package/dist/organization/index.js +1 -1
- package/dist/profile/index.d.ts +88 -0
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +172 -0
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +89 -1
- package/package.json +7 -3
|
@@ -2949,6 +2949,94 @@ type Database$1 = {
|
|
|
2949
2949
|
}
|
|
2950
2950
|
];
|
|
2951
2951
|
};
|
|
2952
|
+
reported_requests: {
|
|
2953
|
+
Row: {
|
|
2954
|
+
affected_page: string | null;
|
|
2955
|
+
category: string;
|
|
2956
|
+
context: Json$1 | null;
|
|
2957
|
+
created_at: string;
|
|
2958
|
+
description: string;
|
|
2959
|
+
evidence: Json$1 | null;
|
|
2960
|
+
id: string;
|
|
2961
|
+
organization_id: string;
|
|
2962
|
+
project_id: string | null;
|
|
2963
|
+
reported_at: string;
|
|
2964
|
+
reporter_id: string | null;
|
|
2965
|
+
resolved_at: string | null;
|
|
2966
|
+
severity: string;
|
|
2967
|
+
source: string;
|
|
2968
|
+
status: string;
|
|
2969
|
+
task_id: string | null;
|
|
2970
|
+
title: string;
|
|
2971
|
+
type: string;
|
|
2972
|
+
updated_at: string;
|
|
2973
|
+
};
|
|
2974
|
+
Insert: {
|
|
2975
|
+
affected_page?: string | null;
|
|
2976
|
+
category: string;
|
|
2977
|
+
context?: Json$1 | null;
|
|
2978
|
+
created_at?: string;
|
|
2979
|
+
description: string;
|
|
2980
|
+
evidence?: Json$1 | null;
|
|
2981
|
+
id?: string;
|
|
2982
|
+
organization_id: string;
|
|
2983
|
+
project_id?: string | null;
|
|
2984
|
+
reported_at?: string;
|
|
2985
|
+
reporter_id?: string | null;
|
|
2986
|
+
resolved_at?: string | null;
|
|
2987
|
+
severity: string;
|
|
2988
|
+
source: string;
|
|
2989
|
+
status?: string;
|
|
2990
|
+
task_id?: string | null;
|
|
2991
|
+
title: string;
|
|
2992
|
+
type: string;
|
|
2993
|
+
updated_at?: string;
|
|
2994
|
+
};
|
|
2995
|
+
Update: {
|
|
2996
|
+
affected_page?: string | null;
|
|
2997
|
+
category?: string;
|
|
2998
|
+
context?: Json$1 | null;
|
|
2999
|
+
created_at?: string;
|
|
3000
|
+
description?: string;
|
|
3001
|
+
evidence?: Json$1 | null;
|
|
3002
|
+
id?: string;
|
|
3003
|
+
organization_id?: string;
|
|
3004
|
+
project_id?: string | null;
|
|
3005
|
+
reported_at?: string;
|
|
3006
|
+
reporter_id?: string | null;
|
|
3007
|
+
resolved_at?: string | null;
|
|
3008
|
+
severity?: string;
|
|
3009
|
+
source?: string;
|
|
3010
|
+
status?: string;
|
|
3011
|
+
task_id?: string | null;
|
|
3012
|
+
title?: string;
|
|
3013
|
+
type?: string;
|
|
3014
|
+
updated_at?: string;
|
|
3015
|
+
};
|
|
3016
|
+
Relationships: [
|
|
3017
|
+
{
|
|
3018
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
3019
|
+
columns: ["organization_id"];
|
|
3020
|
+
isOneToOne: false;
|
|
3021
|
+
referencedRelation: "organizations";
|
|
3022
|
+
referencedColumns: ["id"];
|
|
3023
|
+
},
|
|
3024
|
+
{
|
|
3025
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
3026
|
+
columns: ["project_id"];
|
|
3027
|
+
isOneToOne: false;
|
|
3028
|
+
referencedRelation: "prj_projects";
|
|
3029
|
+
referencedColumns: ["id"];
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
3033
|
+
columns: ["task_id"];
|
|
3034
|
+
isOneToOne: false;
|
|
3035
|
+
referencedRelation: "prj_tasks";
|
|
3036
|
+
referencedColumns: ["id"];
|
|
3037
|
+
}
|
|
3038
|
+
];
|
|
3039
|
+
};
|
|
2952
3040
|
session_messages: {
|
|
2953
3041
|
Row: {
|
|
2954
3042
|
created_at: string | null;
|
|
@@ -3470,6 +3558,8 @@ interface DealContact {
|
|
|
3470
3558
|
interface DealFilters {
|
|
3471
3559
|
stage?: DealStage;
|
|
3472
3560
|
search?: string;
|
|
3561
|
+
limit?: number;
|
|
3562
|
+
offset?: number;
|
|
3473
3563
|
}
|
|
3474
3564
|
/** Deal list item with joined contact and company data */
|
|
3475
3565
|
interface DealListItem extends AcqDealRow {
|
|
@@ -6375,6 +6465,94 @@ type Database = {
|
|
|
6375
6465
|
},
|
|
6376
6466
|
]
|
|
6377
6467
|
}
|
|
6468
|
+
reported_requests: {
|
|
6469
|
+
Row: {
|
|
6470
|
+
affected_page: string | null
|
|
6471
|
+
category: string
|
|
6472
|
+
context: Json | null
|
|
6473
|
+
created_at: string
|
|
6474
|
+
description: string
|
|
6475
|
+
evidence: Json | null
|
|
6476
|
+
id: string
|
|
6477
|
+
organization_id: string
|
|
6478
|
+
project_id: string | null
|
|
6479
|
+
reported_at: string
|
|
6480
|
+
reporter_id: string | null
|
|
6481
|
+
resolved_at: string | null
|
|
6482
|
+
severity: string
|
|
6483
|
+
source: string
|
|
6484
|
+
status: string
|
|
6485
|
+
task_id: string | null
|
|
6486
|
+
title: string
|
|
6487
|
+
type: string
|
|
6488
|
+
updated_at: string
|
|
6489
|
+
}
|
|
6490
|
+
Insert: {
|
|
6491
|
+
affected_page?: string | null
|
|
6492
|
+
category: string
|
|
6493
|
+
context?: Json | null
|
|
6494
|
+
created_at?: string
|
|
6495
|
+
description: string
|
|
6496
|
+
evidence?: Json | null
|
|
6497
|
+
id?: string
|
|
6498
|
+
organization_id: string
|
|
6499
|
+
project_id?: string | null
|
|
6500
|
+
reported_at?: string
|
|
6501
|
+
reporter_id?: string | null
|
|
6502
|
+
resolved_at?: string | null
|
|
6503
|
+
severity: string
|
|
6504
|
+
source: string
|
|
6505
|
+
status?: string
|
|
6506
|
+
task_id?: string | null
|
|
6507
|
+
title: string
|
|
6508
|
+
type: string
|
|
6509
|
+
updated_at?: string
|
|
6510
|
+
}
|
|
6511
|
+
Update: {
|
|
6512
|
+
affected_page?: string | null
|
|
6513
|
+
category?: string
|
|
6514
|
+
context?: Json | null
|
|
6515
|
+
created_at?: string
|
|
6516
|
+
description?: string
|
|
6517
|
+
evidence?: Json | null
|
|
6518
|
+
id?: string
|
|
6519
|
+
organization_id?: string
|
|
6520
|
+
project_id?: string | null
|
|
6521
|
+
reported_at?: string
|
|
6522
|
+
reporter_id?: string | null
|
|
6523
|
+
resolved_at?: string | null
|
|
6524
|
+
severity?: string
|
|
6525
|
+
source?: string
|
|
6526
|
+
status?: string
|
|
6527
|
+
task_id?: string | null
|
|
6528
|
+
title?: string
|
|
6529
|
+
type?: string
|
|
6530
|
+
updated_at?: string
|
|
6531
|
+
}
|
|
6532
|
+
Relationships: [
|
|
6533
|
+
{
|
|
6534
|
+
foreignKeyName: "reported_requests_organization_id_fkey"
|
|
6535
|
+
columns: ["organization_id"]
|
|
6536
|
+
isOneToOne: false
|
|
6537
|
+
referencedRelation: "organizations"
|
|
6538
|
+
referencedColumns: ["id"]
|
|
6539
|
+
},
|
|
6540
|
+
{
|
|
6541
|
+
foreignKeyName: "reported_requests_project_id_fkey"
|
|
6542
|
+
columns: ["project_id"]
|
|
6543
|
+
isOneToOne: false
|
|
6544
|
+
referencedRelation: "prj_projects"
|
|
6545
|
+
referencedColumns: ["id"]
|
|
6546
|
+
},
|
|
6547
|
+
{
|
|
6548
|
+
foreignKeyName: "reported_requests_task_id_fkey"
|
|
6549
|
+
columns: ["task_id"]
|
|
6550
|
+
isOneToOne: false
|
|
6551
|
+
referencedRelation: "prj_tasks"
|
|
6552
|
+
referencedColumns: ["id"]
|
|
6553
|
+
},
|
|
6554
|
+
]
|
|
6555
|
+
}
|
|
6378
6556
|
session_messages: {
|
|
6379
6557
|
Row: {
|
|
6380
6558
|
created_at: string | null
|
package/dist/components/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { CollapsibleSidebarGroup } from '../chunk-4BF74JVD.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
|
|
3
|
-
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-
|
|
4
|
-
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-
|
|
5
|
-
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-6WPKE7C3.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-NLFAEJDH.js';
|
|
5
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-BSW5MUAQ.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import { SubshellLoader } from '../chunk-ADSSLKKP.js';
|
|
8
8
|
import '../chunk-G2TDX3W6.js';
|
|
9
|
-
import { NotificationList } from '../chunk-
|
|
10
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
11
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
9
|
+
import { NotificationList } from '../chunk-PCK553L4.js';
|
|
10
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-PCK553L4.js';
|
|
11
|
+
export { ResourceHealthPanel } from '../chunk-2CGYLRTX.js';
|
|
12
12
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-AL23U6C3.js';
|
|
13
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-
|
|
14
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
13
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-T7R5P5JJ.js';
|
|
14
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-H333SX3N.js';
|
|
15
15
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
16
16
|
import { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
17
17
|
import { SubshellNavItem } from '../chunk-CEWTOKE7.js';
|
|
@@ -20,38 +20,38 @@ import { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
|
20
20
|
export { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
21
21
|
import { CustomModal } from '../chunk-GBMNCNHX.js';
|
|
22
22
|
export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk-GBMNCNHX.js';
|
|
23
|
-
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-
|
|
24
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-
|
|
23
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-67BKMKFG.js';
|
|
24
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-67BKMKFG.js';
|
|
25
25
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
26
26
|
import '../chunk-STZJ7SY5.js';
|
|
27
|
-
import { AppShellLoader } from '../chunk-
|
|
28
|
-
import '../chunk-
|
|
27
|
+
import { AppShellLoader } from '../chunk-M25JL54Z.js';
|
|
28
|
+
import '../chunk-6RWMRQN5.js';
|
|
29
29
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-GHIPBT5V.js';
|
|
30
30
|
import '../chunk-7M2VOCYN.js';
|
|
31
|
-
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-
|
|
32
|
-
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-
|
|
31
|
+
import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-FT27I4S7.js';
|
|
32
|
+
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-FT27I4S7.js';
|
|
33
33
|
import '../chunk-LXHZYSMQ.js';
|
|
34
34
|
import '../chunk-BRXELOHC.js';
|
|
35
35
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
|
|
36
36
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
37
37
|
import '../chunk-3ZMAGTWF.js';
|
|
38
38
|
import '../chunk-DKQQK3WX.js';
|
|
39
|
-
import '../chunk-
|
|
40
|
-
import '../chunk-
|
|
41
|
-
import '../chunk-
|
|
39
|
+
import '../chunk-5IBTTMWX.js';
|
|
40
|
+
import '../chunk-R73EHHPN.js';
|
|
41
|
+
import '../chunk-WLOQ4IBG.js';
|
|
42
42
|
import '../chunk-C7BX547M.js';
|
|
43
43
|
import { SubshellContainer, SubshellSidebar, SubshellRightSideContainer, SubshellContentContainer } from '../chunk-RX4UWZZR.js';
|
|
44
44
|
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-SQQGLGHW.js';
|
|
45
45
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-SQQGLGHW.js';
|
|
46
46
|
export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
|
|
47
47
|
export { NavigationButton } from '../chunk-NYBEU5TE.js';
|
|
48
|
-
import '../chunk-
|
|
48
|
+
import '../chunk-ZB5GAV7J.js';
|
|
49
49
|
export { ElevasisLoader } from '../chunk-SZHARWKU.js';
|
|
50
50
|
import '../chunk-NVOCKXUQ.js';
|
|
51
51
|
import '../chunk-2IFYDILW.js';
|
|
52
52
|
import '../chunk-ELJIFLCB.js';
|
|
53
53
|
import '../chunk-L4XXM55J.js';
|
|
54
|
-
import '../chunk-
|
|
54
|
+
import '../chunk-FL67C3WY.js';
|
|
55
55
|
import { useAppearance } from '../chunk-QJ2KCHKX.js';
|
|
56
56
|
import '../chunk-DT3QYZVU.js';
|
|
57
57
|
import '../chunk-SLVC5OJ2.js';
|
|
@@ -2070,6 +2070,94 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
+
reported_requests: {
|
|
2074
|
+
Row: {
|
|
2075
|
+
affected_page: string | null;
|
|
2076
|
+
category: string;
|
|
2077
|
+
context: Json | null;
|
|
2078
|
+
created_at: string;
|
|
2079
|
+
description: string;
|
|
2080
|
+
evidence: Json | null;
|
|
2081
|
+
id: string;
|
|
2082
|
+
organization_id: string;
|
|
2083
|
+
project_id: string | null;
|
|
2084
|
+
reported_at: string;
|
|
2085
|
+
reporter_id: string | null;
|
|
2086
|
+
resolved_at: string | null;
|
|
2087
|
+
severity: string;
|
|
2088
|
+
source: string;
|
|
2089
|
+
status: string;
|
|
2090
|
+
task_id: string | null;
|
|
2091
|
+
title: string;
|
|
2092
|
+
type: string;
|
|
2093
|
+
updated_at: string;
|
|
2094
|
+
};
|
|
2095
|
+
Insert: {
|
|
2096
|
+
affected_page?: string | null;
|
|
2097
|
+
category: string;
|
|
2098
|
+
context?: Json | null;
|
|
2099
|
+
created_at?: string;
|
|
2100
|
+
description: string;
|
|
2101
|
+
evidence?: Json | null;
|
|
2102
|
+
id?: string;
|
|
2103
|
+
organization_id: string;
|
|
2104
|
+
project_id?: string | null;
|
|
2105
|
+
reported_at?: string;
|
|
2106
|
+
reporter_id?: string | null;
|
|
2107
|
+
resolved_at?: string | null;
|
|
2108
|
+
severity: string;
|
|
2109
|
+
source: string;
|
|
2110
|
+
status?: string;
|
|
2111
|
+
task_id?: string | null;
|
|
2112
|
+
title: string;
|
|
2113
|
+
type: string;
|
|
2114
|
+
updated_at?: string;
|
|
2115
|
+
};
|
|
2116
|
+
Update: {
|
|
2117
|
+
affected_page?: string | null;
|
|
2118
|
+
category?: string;
|
|
2119
|
+
context?: Json | null;
|
|
2120
|
+
created_at?: string;
|
|
2121
|
+
description?: string;
|
|
2122
|
+
evidence?: Json | null;
|
|
2123
|
+
id?: string;
|
|
2124
|
+
organization_id?: string;
|
|
2125
|
+
project_id?: string | null;
|
|
2126
|
+
reported_at?: string;
|
|
2127
|
+
reporter_id?: string | null;
|
|
2128
|
+
resolved_at?: string | null;
|
|
2129
|
+
severity?: string;
|
|
2130
|
+
source?: string;
|
|
2131
|
+
status?: string;
|
|
2132
|
+
task_id?: string | null;
|
|
2133
|
+
title?: string;
|
|
2134
|
+
type?: string;
|
|
2135
|
+
updated_at?: string;
|
|
2136
|
+
};
|
|
2137
|
+
Relationships: [
|
|
2138
|
+
{
|
|
2139
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2140
|
+
columns: ["organization_id"];
|
|
2141
|
+
isOneToOne: false;
|
|
2142
|
+
referencedRelation: "organizations";
|
|
2143
|
+
referencedColumns: ["id"];
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2147
|
+
columns: ["project_id"];
|
|
2148
|
+
isOneToOne: false;
|
|
2149
|
+
referencedRelation: "prj_projects";
|
|
2150
|
+
referencedColumns: ["id"];
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2154
|
+
columns: ["task_id"];
|
|
2155
|
+
isOneToOne: false;
|
|
2156
|
+
referencedRelation: "prj_tasks";
|
|
2157
|
+
referencedColumns: ["id"];
|
|
2158
|
+
}
|
|
2159
|
+
];
|
|
2160
|
+
};
|
|
2073
2161
|
session_messages: {
|
|
2074
2162
|
Row: {
|
|
2075
2163
|
created_at: string | null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AppShellLoader, AppShellError } from '../../chunk-
|
|
1
|
+
import { AppShellLoader, AppShellError } from '../../chunk-M25JL54Z.js';
|
|
2
2
|
import { useAppearance } from '../../chunk-QJ2KCHKX.js';
|
|
3
3
|
import '../../chunk-DT3QYZVU.js';
|
|
4
4
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -68,7 +68,7 @@ function ProtectedRoute2({
|
|
|
68
68
|
}) {
|
|
69
69
|
const { isInitializing, userReady, allReady, error } = useInitialization();
|
|
70
70
|
const orgSettled = allReady || error?.layer === "organization";
|
|
71
|
-
const showLoader = isInitializing || !userReady || waitForOrganization && !orgSettled;
|
|
71
|
+
const showLoader = !error && (isInitializing || !userReady || waitForOrganization && !orgSettled);
|
|
72
72
|
const resolvedErrorFallback = errorFallback ?? ((err, retry) => /* @__PURE__ */ jsx(AppShellError, { message: err.message, retry }));
|
|
73
73
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
74
74
|
fallback ? showLoader ? fallback : null : /* @__PURE__ */ jsx(AnimatedLoader, { showLoader }),
|
|
@@ -2118,6 +2118,94 @@ type Database = {
|
|
|
2118
2118
|
}
|
|
2119
2119
|
];
|
|
2120
2120
|
};
|
|
2121
|
+
reported_requests: {
|
|
2122
|
+
Row: {
|
|
2123
|
+
affected_page: string | null;
|
|
2124
|
+
category: string;
|
|
2125
|
+
context: Json | null;
|
|
2126
|
+
created_at: string;
|
|
2127
|
+
description: string;
|
|
2128
|
+
evidence: Json | null;
|
|
2129
|
+
id: string;
|
|
2130
|
+
organization_id: string;
|
|
2131
|
+
project_id: string | null;
|
|
2132
|
+
reported_at: string;
|
|
2133
|
+
reporter_id: string | null;
|
|
2134
|
+
resolved_at: string | null;
|
|
2135
|
+
severity: string;
|
|
2136
|
+
source: string;
|
|
2137
|
+
status: string;
|
|
2138
|
+
task_id: string | null;
|
|
2139
|
+
title: string;
|
|
2140
|
+
type: string;
|
|
2141
|
+
updated_at: string;
|
|
2142
|
+
};
|
|
2143
|
+
Insert: {
|
|
2144
|
+
affected_page?: string | null;
|
|
2145
|
+
category: string;
|
|
2146
|
+
context?: Json | null;
|
|
2147
|
+
created_at?: string;
|
|
2148
|
+
description: string;
|
|
2149
|
+
evidence?: Json | null;
|
|
2150
|
+
id?: string;
|
|
2151
|
+
organization_id: string;
|
|
2152
|
+
project_id?: string | null;
|
|
2153
|
+
reported_at?: string;
|
|
2154
|
+
reporter_id?: string | null;
|
|
2155
|
+
resolved_at?: string | null;
|
|
2156
|
+
severity: string;
|
|
2157
|
+
source: string;
|
|
2158
|
+
status?: string;
|
|
2159
|
+
task_id?: string | null;
|
|
2160
|
+
title: string;
|
|
2161
|
+
type: string;
|
|
2162
|
+
updated_at?: string;
|
|
2163
|
+
};
|
|
2164
|
+
Update: {
|
|
2165
|
+
affected_page?: string | null;
|
|
2166
|
+
category?: string;
|
|
2167
|
+
context?: Json | null;
|
|
2168
|
+
created_at?: string;
|
|
2169
|
+
description?: string;
|
|
2170
|
+
evidence?: Json | null;
|
|
2171
|
+
id?: string;
|
|
2172
|
+
organization_id?: string;
|
|
2173
|
+
project_id?: string | null;
|
|
2174
|
+
reported_at?: string;
|
|
2175
|
+
reporter_id?: string | null;
|
|
2176
|
+
resolved_at?: string | null;
|
|
2177
|
+
severity?: string;
|
|
2178
|
+
source?: string;
|
|
2179
|
+
status?: string;
|
|
2180
|
+
task_id?: string | null;
|
|
2181
|
+
title?: string;
|
|
2182
|
+
type?: string;
|
|
2183
|
+
updated_at?: string;
|
|
2184
|
+
};
|
|
2185
|
+
Relationships: [
|
|
2186
|
+
{
|
|
2187
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2188
|
+
columns: ["organization_id"];
|
|
2189
|
+
isOneToOne: false;
|
|
2190
|
+
referencedRelation: "organizations";
|
|
2191
|
+
referencedColumns: ["id"];
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2195
|
+
columns: ["project_id"];
|
|
2196
|
+
isOneToOne: false;
|
|
2197
|
+
referencedRelation: "prj_projects";
|
|
2198
|
+
referencedColumns: ["id"];
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2202
|
+
columns: ["task_id"];
|
|
2203
|
+
isOneToOne: false;
|
|
2204
|
+
referencedRelation: "prj_tasks";
|
|
2205
|
+
referencedColumns: ["id"];
|
|
2206
|
+
}
|
|
2207
|
+
];
|
|
2208
|
+
};
|
|
2121
2209
|
session_messages: {
|
|
2122
2210
|
Row: {
|
|
2123
2211
|
created_at: string | null;
|
|
@@ -2561,6 +2649,8 @@ interface DealContact {
|
|
|
2561
2649
|
interface DealFilters {
|
|
2562
2650
|
stage?: DealStage;
|
|
2563
2651
|
search?: string;
|
|
2652
|
+
limit?: number;
|
|
2653
|
+
offset?: number;
|
|
2564
2654
|
}
|
|
2565
2655
|
/** Deal list item with joined contact and company data */
|
|
2566
2656
|
interface DealListItem extends AcqDealRow {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-H333SX3N.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-CEWTOKE7.js';
|
|
@@ -6,27 +6,27 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
8
|
import '../../chunk-7M2VOCYN.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-FT27I4S7.js';
|
|
10
10
|
import '../../chunk-LXHZYSMQ.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-22UVE3RA.js';
|
|
13
13
|
import '../../chunk-3ZMAGTWF.js';
|
|
14
14
|
import '../../chunk-DKQQK3WX.js';
|
|
15
|
-
import '../../chunk-
|
|
16
|
-
import '../../chunk-
|
|
17
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-5IBTTMWX.js';
|
|
16
|
+
import '../../chunk-R73EHHPN.js';
|
|
17
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
18
18
|
import '../../chunk-C7BX547M.js';
|
|
19
19
|
import '../../chunk-RX4UWZZR.js';
|
|
20
20
|
import '../../chunk-SQQGLGHW.js';
|
|
21
21
|
import '../../chunk-3KMDHCAR.js';
|
|
22
22
|
import '../../chunk-NYBEU5TE.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
24
24
|
import '../../chunk-SZHARWKU.js';
|
|
25
25
|
import '../../chunk-NVOCKXUQ.js';
|
|
26
26
|
import '../../chunk-2IFYDILW.js';
|
|
27
27
|
import '../../chunk-ELJIFLCB.js';
|
|
28
28
|
import '../../chunk-L4XXM55J.js';
|
|
29
|
-
import '../../chunk-
|
|
29
|
+
import '../../chunk-FL67C3WY.js';
|
|
30
30
|
import '../../chunk-QJ2KCHKX.js';
|
|
31
31
|
import '../../chunk-DT3QYZVU.js';
|
|
32
32
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-67BKMKFG.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
3
|
import '../../chunk-STZJ7SY5.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-M25JL54Z.js';
|
|
5
5
|
import '../../chunk-GHIPBT5V.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-FT27I4S7.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
9
|
import '../../chunk-BRXELOHC.js';
|
|
10
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
11
|
import '../../chunk-3ZMAGTWF.js';
|
|
12
12
|
import '../../chunk-DKQQK3WX.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-5IBTTMWX.js';
|
|
14
|
+
import '../../chunk-R73EHHPN.js';
|
|
15
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
16
16
|
import '../../chunk-C7BX547M.js';
|
|
17
17
|
import '../../chunk-RX4UWZZR.js';
|
|
18
18
|
import '../../chunk-SQQGLGHW.js';
|
|
19
19
|
import '../../chunk-3KMDHCAR.js';
|
|
20
20
|
import '../../chunk-NYBEU5TE.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
22
22
|
import '../../chunk-SZHARWKU.js';
|
|
23
23
|
import '../../chunk-NVOCKXUQ.js';
|
|
24
24
|
import '../../chunk-2IFYDILW.js';
|
|
25
25
|
import '../../chunk-ELJIFLCB.js';
|
|
26
26
|
import '../../chunk-L4XXM55J.js';
|
|
27
|
-
import '../../chunk-
|
|
27
|
+
import '../../chunk-FL67C3WY.js';
|
|
28
28
|
import '../../chunk-QJ2KCHKX.js';
|
|
29
29
|
import '../../chunk-DT3QYZVU.js';
|
|
30
30
|
import '../../chunk-SLVC5OJ2.js';
|