@elevasis/ui 2.11.0 → 2.12.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 (39) hide show
  1. package/dist/app/index.js +2 -2
  2. package/dist/{chunk-BSCTPKXM.js → chunk-235RO24Z.js} +1 -1
  3. package/dist/{chunk-TNOIOBYI.js → chunk-7PLBPEBW.js} +2 -2
  4. package/dist/{chunk-KDAOCM66.js → chunk-ETWKPFOO.js} +1 -1
  5. package/dist/{chunk-XYSMBMAR.js → chunk-F6SMVMFC.js} +2 -2
  6. package/dist/{chunk-BLQLWIOW.js → chunk-GHCYUZZE.js} +8 -8
  7. package/dist/{chunk-23PZ57GB.js → chunk-ISVFJCPP.js} +1 -1
  8. package/dist/{chunk-AQDBRRZD.js → chunk-MISBW6WW.js} +1 -1
  9. package/dist/{chunk-DJBORKTR.js → chunk-PXFV47B3.js} +1 -1
  10. package/dist/{chunk-BDENEI4Q.js → chunk-TXZXMTZB.js} +135 -90
  11. package/dist/{chunk-24UMQV5B.js → chunk-TYWZABTP.js} +65 -43
  12. package/dist/{chunk-DOFVHWAP.js → chunk-WM7JTTPX.js} +22 -1
  13. package/dist/{chunk-L34DFR2K.js → chunk-ZKCQEHEJ.js} +3 -3
  14. package/dist/components/index.d.ts +172 -0
  15. package/dist/components/index.js +15 -15
  16. package/dist/features/auth/index.d.ts +85 -0
  17. package/dist/features/crm/index.d.ts +87 -0
  18. package/dist/features/crm/index.js +4 -4
  19. package/dist/features/dashboard/index.js +4 -4
  20. package/dist/features/delivery/index.d.ts +132 -26
  21. package/dist/features/delivery/index.js +4 -4
  22. package/dist/features/lead-gen/index.js +7 -7
  23. package/dist/features/monitoring/index.js +5 -5
  24. package/dist/features/operations/index.js +6 -6
  25. package/dist/features/settings/index.d.ts +85 -0
  26. package/dist/features/settings/index.js +5 -5
  27. package/dist/hooks/index.d.ts +197 -2
  28. package/dist/hooks/index.js +3 -3
  29. package/dist/hooks/published.d.ts +197 -2
  30. package/dist/hooks/published.js +3 -3
  31. package/dist/index.d.ts +197 -2
  32. package/dist/index.js +4 -4
  33. package/dist/initialization/index.d.ts +85 -0
  34. package/dist/profile/index.d.ts +85 -0
  35. package/dist/provider/index.js +2 -2
  36. package/dist/supabase/index.d.ts +166 -0
  37. package/dist/theme/index.js +2 -2
  38. package/dist/types/index.d.ts +86 -1
  39. package/package.json +3 -3
@@ -2070,6 +2070,91 @@ type Database = {
2070
2070
  }
2071
2071
  ];
2072
2072
  };
2073
+ reported_issues: {
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
+ updated_at: string;
2093
+ };
2094
+ Insert: {
2095
+ affected_page?: string | null;
2096
+ category: string;
2097
+ context?: Json | null;
2098
+ created_at?: string;
2099
+ description: string;
2100
+ evidence?: Json | null;
2101
+ id?: string;
2102
+ organization_id: string;
2103
+ project_id?: string | null;
2104
+ reported_at?: string;
2105
+ reporter_id?: string | null;
2106
+ resolved_at?: string | null;
2107
+ severity: string;
2108
+ source: string;
2109
+ status?: string;
2110
+ task_id?: string | null;
2111
+ title: string;
2112
+ updated_at?: string;
2113
+ };
2114
+ Update: {
2115
+ affected_page?: string | null;
2116
+ category?: string;
2117
+ context?: Json | null;
2118
+ created_at?: string;
2119
+ description?: string;
2120
+ evidence?: Json | null;
2121
+ id?: string;
2122
+ organization_id?: string;
2123
+ project_id?: string | null;
2124
+ reported_at?: string;
2125
+ reporter_id?: string | null;
2126
+ resolved_at?: string | null;
2127
+ severity?: string;
2128
+ source?: string;
2129
+ status?: string;
2130
+ task_id?: string | null;
2131
+ title?: string;
2132
+ updated_at?: string;
2133
+ };
2134
+ Relationships: [
2135
+ {
2136
+ foreignKeyName: "reported_issues_organization_id_fkey";
2137
+ columns: ["organization_id"];
2138
+ isOneToOne: false;
2139
+ referencedRelation: "organizations";
2140
+ referencedColumns: ["id"];
2141
+ },
2142
+ {
2143
+ foreignKeyName: "reported_issues_project_id_fkey";
2144
+ columns: ["project_id"];
2145
+ isOneToOne: false;
2146
+ referencedRelation: "prj_projects";
2147
+ referencedColumns: ["id"];
2148
+ },
2149
+ {
2150
+ foreignKeyName: "reported_issues_task_id_fkey";
2151
+ columns: ["task_id"];
2152
+ isOneToOne: false;
2153
+ referencedRelation: "prj_tasks";
2154
+ referencedColumns: ["id"];
2155
+ }
2156
+ ];
2157
+ };
2073
2158
  session_messages: {
2074
2159
  Row: {
2075
2160
  created_at: string | null;
@@ -2118,6 +2118,91 @@ type Database = {
2118
2118
  }
2119
2119
  ];
2120
2120
  };
2121
+ reported_issues: {
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
+ updated_at: string;
2141
+ };
2142
+ Insert: {
2143
+ affected_page?: string | null;
2144
+ category: string;
2145
+ context?: Json | null;
2146
+ created_at?: string;
2147
+ description: string;
2148
+ evidence?: Json | null;
2149
+ id?: string;
2150
+ organization_id: string;
2151
+ project_id?: string | null;
2152
+ reported_at?: string;
2153
+ reporter_id?: string | null;
2154
+ resolved_at?: string | null;
2155
+ severity: string;
2156
+ source: string;
2157
+ status?: string;
2158
+ task_id?: string | null;
2159
+ title: string;
2160
+ updated_at?: string;
2161
+ };
2162
+ Update: {
2163
+ affected_page?: string | null;
2164
+ category?: string;
2165
+ context?: Json | null;
2166
+ created_at?: string;
2167
+ description?: string;
2168
+ evidence?: Json | null;
2169
+ id?: string;
2170
+ organization_id?: string;
2171
+ project_id?: string | null;
2172
+ reported_at?: string;
2173
+ reporter_id?: string | null;
2174
+ resolved_at?: string | null;
2175
+ severity?: string;
2176
+ source?: string;
2177
+ status?: string;
2178
+ task_id?: string | null;
2179
+ title?: string;
2180
+ updated_at?: string;
2181
+ };
2182
+ Relationships: [
2183
+ {
2184
+ foreignKeyName: "reported_issues_organization_id_fkey";
2185
+ columns: ["organization_id"];
2186
+ isOneToOne: false;
2187
+ referencedRelation: "organizations";
2188
+ referencedColumns: ["id"];
2189
+ },
2190
+ {
2191
+ foreignKeyName: "reported_issues_project_id_fkey";
2192
+ columns: ["project_id"];
2193
+ isOneToOne: false;
2194
+ referencedRelation: "prj_projects";
2195
+ referencedColumns: ["id"];
2196
+ },
2197
+ {
2198
+ foreignKeyName: "reported_issues_task_id_fkey";
2199
+ columns: ["task_id"];
2200
+ isOneToOne: false;
2201
+ referencedRelation: "prj_tasks";
2202
+ referencedColumns: ["id"];
2203
+ }
2204
+ ];
2205
+ };
2121
2206
  session_messages: {
2122
2207
  Row: {
2123
2208
  created_at: string | null;
@@ -2561,6 +2646,8 @@ interface DealContact {
2561
2646
  interface DealFilters {
2562
2647
  stage?: DealStage;
2563
2648
  search?: string;
2649
+ limit?: number;
2650
+ offset?: number;
2564
2651
  }
2565
2652
  /** Deal list item with joined contact and company data */
2566
2653
  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-AQDBRRZD.js';
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-MISBW6WW.js';
2
2
  import '../../chunk-TUMSNGTX.js';
3
3
  import '../../chunk-BZZCNLT6.js';
4
4
  import '../../chunk-CEWTOKE7.js';
@@ -6,14 +6,14 @@ 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-DOFVHWAP.js';
9
+ import '../../chunk-WM7JTTPX.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-DJBORKTR.js';
16
- import '../../chunk-24UMQV5B.js';
15
+ import '../../chunk-PXFV47B3.js';
16
+ import '../../chunk-TYWZABTP.js';
17
17
  import '../../chunk-F4TPY6YL.js';
18
18
  import '../../chunk-C7BX547M.js';
19
19
  import '../../chunk-RX4UWZZR.js';
@@ -1,17 +1,17 @@
1
- export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-BLQLWIOW.js';
1
+ export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-GHCYUZZE.js';
2
2
  import '../../chunk-LGKLC5MG.js';
3
3
  import '../../chunk-STZJ7SY5.js';
4
4
  import '../../chunk-YEX4MQSY.js';
5
5
  import '../../chunk-GHIPBT5V.js';
6
6
  import '../../chunk-7M2VOCYN.js';
7
- import '../../chunk-DOFVHWAP.js';
7
+ import '../../chunk-WM7JTTPX.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-DJBORKTR.js';
14
- import '../../chunk-24UMQV5B.js';
13
+ import '../../chunk-PXFV47B3.js';
14
+ import '../../chunk-TYWZABTP.js';
15
15
  import '../../chunk-F4TPY6YL.js';
16
16
  import '../../chunk-C7BX547M.js';
17
17
  import '../../chunk-RX4UWZZR.js';
@@ -1,30 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { ReactNode, ComponentType } from 'react';
3
3
 
4
- interface CreateDeliveryEntityModalProps {
5
- opened: boolean;
6
- onClose: () => void;
7
- projectId: string;
8
- entityType: 'task' | 'milestone';
9
- }
10
- /**
11
- * Single modal for creating a task or milestone, discriminated by `entityType`.
12
- * Shared form shell: name + description + (task only) type + optional milestone_id.
13
- * On success the modal closes; cache invalidation is handled by the mutation hooks.
14
- */
15
- declare function CreateDeliveryEntityModal({ opened, onClose, projectId, entityType }: CreateDeliveryEntityModalProps): react_jsx_runtime.JSX.Element;
16
-
17
- interface HealthStatusCardProps {
18
- status: string;
19
- milestoneCount: number;
20
- completedMilestones: number;
21
- taskCount: number;
22
- completedTasks: number;
23
- startDate: string | null;
24
- targetEndDate: string | null;
25
- }
26
- declare function HealthStatusCard({ status, milestoneCount, completedMilestones, taskCount, completedTasks, startDate, targetEndDate }: HealthStatusCardProps): react_jsx_runtime.JSX.Element;
27
-
28
4
  type Json =
29
5
  | string
30
6
  | number
@@ -2101,6 +2077,91 @@ type Database = {
2101
2077
  },
2102
2078
  ]
2103
2079
  }
2080
+ reported_issues: {
2081
+ Row: {
2082
+ affected_page: string | null
2083
+ category: string
2084
+ context: Json | null
2085
+ created_at: string
2086
+ description: string
2087
+ evidence: Json | null
2088
+ id: string
2089
+ organization_id: string
2090
+ project_id: string | null
2091
+ reported_at: string
2092
+ reporter_id: string | null
2093
+ resolved_at: string | null
2094
+ severity: string
2095
+ source: string
2096
+ status: string
2097
+ task_id: string | null
2098
+ title: string
2099
+ updated_at: string
2100
+ }
2101
+ Insert: {
2102
+ affected_page?: string | null
2103
+ category: string
2104
+ context?: Json | null
2105
+ created_at?: string
2106
+ description: string
2107
+ evidence?: Json | null
2108
+ id?: string
2109
+ organization_id: string
2110
+ project_id?: string | null
2111
+ reported_at?: string
2112
+ reporter_id?: string | null
2113
+ resolved_at?: string | null
2114
+ severity: string
2115
+ source: string
2116
+ status?: string
2117
+ task_id?: string | null
2118
+ title: string
2119
+ updated_at?: string
2120
+ }
2121
+ Update: {
2122
+ affected_page?: string | null
2123
+ category?: string
2124
+ context?: Json | null
2125
+ created_at?: string
2126
+ description?: string
2127
+ evidence?: Json | null
2128
+ id?: string
2129
+ organization_id?: string
2130
+ project_id?: string | null
2131
+ reported_at?: string
2132
+ reporter_id?: string | null
2133
+ resolved_at?: string | null
2134
+ severity?: string
2135
+ source?: string
2136
+ status?: string
2137
+ task_id?: string | null
2138
+ title?: string
2139
+ updated_at?: string
2140
+ }
2141
+ Relationships: [
2142
+ {
2143
+ foreignKeyName: "reported_issues_organization_id_fkey"
2144
+ columns: ["organization_id"]
2145
+ isOneToOne: false
2146
+ referencedRelation: "organizations"
2147
+ referencedColumns: ["id"]
2148
+ },
2149
+ {
2150
+ foreignKeyName: "reported_issues_project_id_fkey"
2151
+ columns: ["project_id"]
2152
+ isOneToOne: false
2153
+ referencedRelation: "prj_projects"
2154
+ referencedColumns: ["id"]
2155
+ },
2156
+ {
2157
+ foreignKeyName: "reported_issues_task_id_fkey"
2158
+ columns: ["task_id"]
2159
+ isOneToOne: false
2160
+ referencedRelation: "prj_tasks"
2161
+ referencedColumns: ["id"]
2162
+ },
2163
+ ]
2164
+ }
2104
2165
  session_messages: {
2105
2166
  Row: {
2106
2167
  created_at: string | null
@@ -2474,6 +2535,51 @@ type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
2474
2535
 
2475
2536
  type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
2476
2537
 
2538
+ // Checklist item stored in prj_milestones.checklist JSONB column
2539
+ interface ChecklistItem {
2540
+ id: string
2541
+ label: string
2542
+ completed: boolean
2543
+ }
2544
+
2545
+ interface ChecklistProps {
2546
+ items: ChecklistItem[];
2547
+ onToggle: (itemId: string) => void;
2548
+ onAdd: (label: string) => void;
2549
+ onRemove: (itemId: string) => void;
2550
+ }
2551
+ /**
2552
+ * Reusable checklist component for milestones and tasks.
2553
+ *
2554
+ * Renders a list of checklist items with toggle, add, and remove capabilities.
2555
+ * All mutation logic (auto-complete, status updates) is the parent's responsibility.
2556
+ */
2557
+ declare function Checklist({ items, onToggle, onAdd, onRemove }: ChecklistProps): react_jsx_runtime.JSX.Element;
2558
+
2559
+ interface CreateDeliveryEntityModalProps {
2560
+ opened: boolean;
2561
+ onClose: () => void;
2562
+ projectId: string;
2563
+ entityType: 'task' | 'milestone';
2564
+ }
2565
+ /**
2566
+ * Single modal for creating a task or milestone, discriminated by `entityType`.
2567
+ * Shared form shell: name + description + (task only) type + optional milestone_id.
2568
+ * On success the modal closes; cache invalidation is handled by the mutation hooks.
2569
+ */
2570
+ declare function CreateDeliveryEntityModal({ opened, onClose, projectId, entityType }: CreateDeliveryEntityModalProps): react_jsx_runtime.JSX.Element;
2571
+
2572
+ interface HealthStatusCardProps {
2573
+ status: string;
2574
+ milestoneCount: number;
2575
+ completedMilestones: number;
2576
+ taskCount: number;
2577
+ completedTasks: number;
2578
+ startDate: string | null;
2579
+ targetEndDate: string | null;
2580
+ }
2581
+ declare function HealthStatusCard({ status, milestoneCount, completedMilestones, taskCount, completedTasks, startDate, targetEndDate }: HealthStatusCardProps): react_jsx_runtime.JSX.Element;
2582
+
2477
2583
  interface MilestoneTimelineProps {
2478
2584
  milestones: MilestoneRow[];
2479
2585
  tasks: TaskRow[];
@@ -2612,5 +2718,5 @@ declare const noteTypeColors: Record<string, string>;
2612
2718
  declare function formatStatusLabel(status: string): string;
2613
2719
  declare function calculateProgress(completed: number, total: number): number;
2614
2720
 
2615
- export { AllTasksPage, 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 };
2616
- export type { ProjectsSidebarMiddleProps };
2721
+ 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 };
2722
+ export type { ChecklistProps, ProjectsSidebarMiddleProps };
@@ -1,4 +1,4 @@
1
- export { AllTasksPage, 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-BDENEI4Q.js';
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-TXZXMTZB.js';
2
2
  import '../../chunk-G2TDX3W6.js';
3
3
  import '../../chunk-TUMSNGTX.js';
4
4
  import '../../chunk-BZZCNLT6.js';
@@ -7,14 +7,14 @@ import '../../chunk-IIMU5YAJ.js';
7
7
  import '../../chunk-PDHTXPSF.js';
8
8
  import '../../chunk-GBMNCNHX.js';
9
9
  import '../../chunk-7M2VOCYN.js';
10
- import '../../chunk-DOFVHWAP.js';
10
+ import '../../chunk-WM7JTTPX.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-BRXELOHC.js';
13
13
  import '../../chunk-22UVE3RA.js';
14
14
  import '../../chunk-3ZMAGTWF.js';
15
15
  import '../../chunk-DKQQK3WX.js';
16
- import '../../chunk-DJBORKTR.js';
17
- import '../../chunk-24UMQV5B.js';
16
+ import '../../chunk-PXFV47B3.js';
17
+ import '../../chunk-TYWZABTP.js';
18
18
  import '../../chunk-F4TPY6YL.js';
19
19
  import '../../chunk-C7BX547M.js';
20
20
  import '../../chunk-RX4UWZZR.js';
@@ -1,29 +1,29 @@
1
- export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-TNOIOBYI.js';
2
- import '../../chunk-L34DFR2K.js';
1
+ export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-7PLBPEBW.js';
2
+ import '../../chunk-ZKCQEHEJ.js';
3
3
  import '../../chunk-ROSMICXG.js';
4
4
  import '../../chunk-ADSSLKKP.js';
5
5
  import '../../chunk-G2TDX3W6.js';
6
- import '../../chunk-23PZ57GB.js';
6
+ import '../../chunk-ISVFJCPP.js';
7
7
  import '../../chunk-TUMSNGTX.js';
8
8
  import '../../chunk-BZZCNLT6.js';
9
9
  import '../../chunk-CEWTOKE7.js';
10
10
  import '../../chunk-IIMU5YAJ.js';
11
11
  import '../../chunk-PDHTXPSF.js';
12
12
  import '../../chunk-GBMNCNHX.js';
13
- import '../../chunk-BLQLWIOW.js';
13
+ import '../../chunk-GHCYUZZE.js';
14
14
  import '../../chunk-LGKLC5MG.js';
15
15
  import '../../chunk-STZJ7SY5.js';
16
16
  import '../../chunk-YEX4MQSY.js';
17
17
  import '../../chunk-GHIPBT5V.js';
18
18
  import '../../chunk-7M2VOCYN.js';
19
- export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-DOFVHWAP.js';
19
+ export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-WM7JTTPX.js';
20
20
  import '../../chunk-LXHZYSMQ.js';
21
21
  import '../../chunk-BRXELOHC.js';
22
22
  import '../../chunk-22UVE3RA.js';
23
23
  import '../../chunk-3ZMAGTWF.js';
24
24
  import '../../chunk-DKQQK3WX.js';
25
- import '../../chunk-DJBORKTR.js';
26
- import '../../chunk-24UMQV5B.js';
25
+ import '../../chunk-PXFV47B3.js';
26
+ import '../../chunk-TYWZABTP.js';
27
27
  import '../../chunk-F4TPY6YL.js';
28
28
  import '../../chunk-C7BX547M.js';
29
29
  import '../../chunk-RX4UWZZR.js';
@@ -1,5 +1,5 @@
1
- export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-BSCTPKXM.js';
2
- import '../../chunk-23PZ57GB.js';
1
+ export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-235RO24Z.js';
2
+ import '../../chunk-ISVFJCPP.js';
3
3
  import '../../chunk-PDHTXPSF.js';
4
4
  import '../../chunk-GBMNCNHX.js';
5
5
  import '../../chunk-LGKLC5MG.js';
@@ -7,14 +7,14 @@ import '../../chunk-STZJ7SY5.js';
7
7
  import '../../chunk-YEX4MQSY.js';
8
8
  import '../../chunk-GHIPBT5V.js';
9
9
  import '../../chunk-7M2VOCYN.js';
10
- import '../../chunk-DOFVHWAP.js';
10
+ import '../../chunk-WM7JTTPX.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-BRXELOHC.js';
13
13
  import '../../chunk-22UVE3RA.js';
14
14
  import '../../chunk-3ZMAGTWF.js';
15
15
  import '../../chunk-DKQQK3WX.js';
16
- import '../../chunk-DJBORKTR.js';
17
- import '../../chunk-24UMQV5B.js';
16
+ import '../../chunk-PXFV47B3.js';
17
+ import '../../chunk-TYWZABTP.js';
18
18
  import '../../chunk-F4TPY6YL.js';
19
19
  import '../../chunk-C7BX547M.js';
20
20
  import '../../chunk-RX4UWZZR.js';
@@ -1,25 +1,25 @@
1
- export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-L34DFR2K.js';
1
+ export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-ZKCQEHEJ.js';
2
2
  import '../../chunk-ROSMICXG.js';
3
3
  import '../../chunk-ADSSLKKP.js';
4
4
  import '../../chunk-G2TDX3W6.js';
5
- import '../../chunk-23PZ57GB.js';
5
+ import '../../chunk-ISVFJCPP.js';
6
6
  import '../../chunk-BZZCNLT6.js';
7
7
  import '../../chunk-IIMU5YAJ.js';
8
8
  import '../../chunk-GBMNCNHX.js';
9
- export { OperationsOverview } from '../../chunk-BLQLWIOW.js';
9
+ export { OperationsOverview } from '../../chunk-GHCYUZZE.js';
10
10
  import '../../chunk-LGKLC5MG.js';
11
11
  import '../../chunk-STZJ7SY5.js';
12
12
  import '../../chunk-YEX4MQSY.js';
13
13
  import '../../chunk-GHIPBT5V.js';
14
14
  import '../../chunk-7M2VOCYN.js';
15
- import '../../chunk-DOFVHWAP.js';
15
+ import '../../chunk-WM7JTTPX.js';
16
16
  import '../../chunk-LXHZYSMQ.js';
17
17
  import '../../chunk-BRXELOHC.js';
18
18
  import '../../chunk-22UVE3RA.js';
19
19
  import '../../chunk-3ZMAGTWF.js';
20
20
  import '../../chunk-DKQQK3WX.js';
21
- import '../../chunk-DJBORKTR.js';
22
- import '../../chunk-24UMQV5B.js';
21
+ import '../../chunk-PXFV47B3.js';
22
+ import '../../chunk-TYWZABTP.js';
23
23
  import '../../chunk-F4TPY6YL.js';
24
24
  import '../../chunk-C7BX547M.js';
25
25
  import '../../chunk-RX4UWZZR.js';
@@ -2071,6 +2071,91 @@ type Database = {
2071
2071
  }
2072
2072
  ];
2073
2073
  };
2074
+ reported_issues: {
2075
+ Row: {
2076
+ affected_page: string | null;
2077
+ category: string;
2078
+ context: Json | null;
2079
+ created_at: string;
2080
+ description: string;
2081
+ evidence: Json | null;
2082
+ id: string;
2083
+ organization_id: string;
2084
+ project_id: string | null;
2085
+ reported_at: string;
2086
+ reporter_id: string | null;
2087
+ resolved_at: string | null;
2088
+ severity: string;
2089
+ source: string;
2090
+ status: string;
2091
+ task_id: string | null;
2092
+ title: 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
+ updated_at?: string;
2114
+ };
2115
+ Update: {
2116
+ affected_page?: string | null;
2117
+ category?: string;
2118
+ context?: Json | null;
2119
+ created_at?: string;
2120
+ description?: string;
2121
+ evidence?: Json | null;
2122
+ id?: string;
2123
+ organization_id?: string;
2124
+ project_id?: string | null;
2125
+ reported_at?: string;
2126
+ reporter_id?: string | null;
2127
+ resolved_at?: string | null;
2128
+ severity?: string;
2129
+ source?: string;
2130
+ status?: string;
2131
+ task_id?: string | null;
2132
+ title?: string;
2133
+ updated_at?: string;
2134
+ };
2135
+ Relationships: [
2136
+ {
2137
+ foreignKeyName: "reported_issues_organization_id_fkey";
2138
+ columns: ["organization_id"];
2139
+ isOneToOne: false;
2140
+ referencedRelation: "organizations";
2141
+ referencedColumns: ["id"];
2142
+ },
2143
+ {
2144
+ foreignKeyName: "reported_issues_project_id_fkey";
2145
+ columns: ["project_id"];
2146
+ isOneToOne: false;
2147
+ referencedRelation: "prj_projects";
2148
+ referencedColumns: ["id"];
2149
+ },
2150
+ {
2151
+ foreignKeyName: "reported_issues_task_id_fkey";
2152
+ columns: ["task_id"];
2153
+ isOneToOne: false;
2154
+ referencedRelation: "prj_tasks";
2155
+ referencedColumns: ["id"];
2156
+ }
2157
+ ];
2158
+ };
2074
2159
  session_messages: {
2075
2160
  Row: {
2076
2161
  created_at: string | null;
@@ -1,17 +1,17 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-XYSMBMAR.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-F6SMVMFC.js';
2
2
  import '../../chunk-PDHTXPSF.js';
3
3
  import '../../chunk-GBMNCNHX.js';
4
4
  import '../../chunk-YEX4MQSY.js';
5
- import '../../chunk-KDAOCM66.js';
5
+ import '../../chunk-ETWKPFOO.js';
6
6
  import '../../chunk-7M2VOCYN.js';
7
- import '../../chunk-DOFVHWAP.js';
7
+ import '../../chunk-WM7JTTPX.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-DJBORKTR.js';
14
- import '../../chunk-24UMQV5B.js';
13
+ import '../../chunk-PXFV47B3.js';
14
+ import '../../chunk-TYWZABTP.js';
15
15
  import '../../chunk-F4TPY6YL.js';
16
16
  import '../../chunk-C7BX547M.js';
17
17
  import '../../chunk-RX4UWZZR.js';