@elevasis/ui 2.10.2 → 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.
- package/dist/app/index.js +2 -2
- package/dist/{chunk-YQLE5HR5.js → chunk-235RO24Z.js} +2 -2
- package/dist/chunk-3ZMAGTWF.js +18 -0
- package/dist/{chunk-AT5XCBTU.js → chunk-7PLBPEBW.js} +2 -2
- package/dist/chunk-BRXELOHC.js +47 -0
- package/dist/{chunk-KYOF6NYW.js → chunk-ETWKPFOO.js} +1 -1
- package/dist/{chunk-M6ZZ2FW5.js → chunk-F6SMVMFC.js} +3 -3
- package/dist/{chunk-GJVGV7QZ.js → chunk-GHCYUZZE.js} +276 -5
- package/dist/{chunk-XA34RETF.js → chunk-GHIPBT5V.js} +1 -14
- package/dist/{chunk-TSX4I3NW.js → chunk-ISVFJCPP.js} +1 -1
- package/dist/{chunk-WHQXDETX.js → chunk-MISBW6WW.js} +124 -5
- package/dist/{chunk-LPSBID5V.js → chunk-PXFV47B3.js} +1 -1
- package/dist/{chunk-CLXMNMIS.js → chunk-TXZXMTZB.js} +652 -110
- package/dist/{chunk-6PNHW4X2.js → chunk-TYWZABTP.js} +115 -137
- package/dist/{chunk-E3IFHX6A.js → chunk-WM7JTTPX.js} +494 -311
- package/dist/{chunk-CYT4PORT.js → chunk-ZKCQEHEJ.js} +7 -51
- package/dist/components/index.d.ts +241 -3
- package/dist/components/index.js +20 -18
- package/dist/execution/index.js +2 -1
- package/dist/features/auth/index.d.ts +85 -0
- package/dist/features/crm/index.d.ts +94 -2
- package/dist/features/crm/index.js +6 -4
- package/dist/features/dashboard/index.js +7 -5
- package/dist/features/delivery/index.d.ts +132 -13
- package/dist/features/delivery/index.js +6 -4
- package/dist/features/lead-gen/index.js +10 -8
- package/dist/features/monitoring/index.js +8 -6
- package/dist/features/operations/index.js +9 -7
- package/dist/features/settings/index.d.ts +85 -0
- package/dist/features/settings/index.js +7 -5
- package/dist/hooks/index.d.ts +426 -52
- package/dist/hooks/index.js +5 -3
- package/dist/hooks/published.d.ts +426 -52
- package/dist/hooks/published.js +5 -3
- package/dist/index.d.ts +387 -23
- package/dist/index.js +7 -5
- package/dist/initialization/index.d.ts +85 -0
- package/dist/profile/index.d.ts +85 -0
- package/dist/provider/index.js +2 -2
- package/dist/supabase/index.d.ts +166 -0
- package/dist/supabase/index.js +2 -47
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +86 -1
- package/dist/zustand/index.d.ts +0 -4
- package/dist/zustand/index.js +0 -10
- package/package.json +4 -4
|
@@ -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 {
|
|
@@ -2780,5 +2867,10 @@ interface DealDetailPageProps {
|
|
|
2780
2867
|
}
|
|
2781
2868
|
declare function DealDetailPage({ dealId, renderActions, onDealLoaded }: DealDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
2782
2869
|
|
|
2783
|
-
|
|
2784
|
-
|
|
2870
|
+
interface CompanyDetailPageProps {
|
|
2871
|
+
companyId: string;
|
|
2872
|
+
}
|
|
2873
|
+
declare function CompanyDetailPage({ companyId }: CompanyDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
2874
|
+
|
|
2875
|
+
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 };
|
|
2876
|
+
export type { ActivityFeedWidgetProps, CompanyDetailPageProps, RecentActivityEntry as CrmActivityEntry, CrmActivityKind, CrmOverviewProps, CrmQuickMetrics, CrmSidebarMiddleProps, MyTasksPanelProps, PipelineFunnelWidgetProps, PipelineStageSummary, QuickCreateActionsProps, SavedViewPreset, SavedViewsPanelProps, TasksDueWidgetProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, 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-MISBW6WW.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-CEWTOKE7.js';
|
|
@@ -6,12 +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-
|
|
9
|
+
import '../../chunk-WM7JTTPX.js';
|
|
10
10
|
import '../../chunk-LXHZYSMQ.js';
|
|
11
|
+
import '../../chunk-BRXELOHC.js';
|
|
11
12
|
import '../../chunk-22UVE3RA.js';
|
|
13
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
12
14
|
import '../../chunk-DKQQK3WX.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-PXFV47B3.js';
|
|
16
|
+
import '../../chunk-TYWZABTP.js';
|
|
15
17
|
import '../../chunk-F4TPY6YL.js';
|
|
16
18
|
import '../../chunk-C7BX547M.js';
|
|
17
19
|
import '../../chunk-RX4UWZZR.js';
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
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
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-GHIPBT5V.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-WM7JTTPX.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
|
+
import '../../chunk-BRXELOHC.js';
|
|
9
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
10
12
|
import '../../chunk-DKQQK3WX.js';
|
|
11
|
-
import '../../chunk-
|
|
12
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-PXFV47B3.js';
|
|
14
|
+
import '../../chunk-TYWZABTP.js';
|
|
13
15
|
import '../../chunk-F4TPY6YL.js';
|
|
14
16
|
import '../../chunk-C7BX547M.js';
|
|
15
17
|
import '../../chunk-RX4UWZZR.js';
|
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
3
|
|
|
4
|
-
interface HealthStatusCardProps {
|
|
5
|
-
status: string;
|
|
6
|
-
milestoneCount: number;
|
|
7
|
-
completedMilestones: number;
|
|
8
|
-
taskCount: number;
|
|
9
|
-
completedTasks: number;
|
|
10
|
-
startDate: string | null;
|
|
11
|
-
targetEndDate: string | null;
|
|
12
|
-
}
|
|
13
|
-
declare function HealthStatusCard({ status, milestoneCount, completedMilestones, taskCount, completedTasks, startDate, targetEndDate }: HealthStatusCardProps): react_jsx_runtime.JSX.Element;
|
|
14
|
-
|
|
15
4
|
type Json =
|
|
16
5
|
| string
|
|
17
6
|
| number
|
|
@@ -2088,6 +2077,91 @@ type Database = {
|
|
|
2088
2077
|
},
|
|
2089
2078
|
]
|
|
2090
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
|
+
}
|
|
2091
2165
|
session_messages: {
|
|
2092
2166
|
Row: {
|
|
2093
2167
|
created_at: string | null
|
|
@@ -2461,6 +2535,51 @@ type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
|
2461
2535
|
|
|
2462
2536
|
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
2463
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
|
+
|
|
2464
2583
|
interface MilestoneTimelineProps {
|
|
2465
2584
|
milestones: MilestoneRow[];
|
|
2466
2585
|
tasks: TaskRow[];
|
|
@@ -2599,5 +2718,5 @@ declare const noteTypeColors: Record<string, string>;
|
|
|
2599
2718
|
declare function formatStatusLabel(status: string): string;
|
|
2600
2719
|
declare function calculateProgress(completed: number, total: number): number;
|
|
2601
2720
|
|
|
2602
|
-
export { AllTasksPage, 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 };
|
|
2603
|
-
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, 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-TXZXMTZB.js';
|
|
2
2
|
import '../../chunk-G2TDX3W6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-BZZCNLT6.js';
|
|
@@ -7,12 +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-
|
|
10
|
+
import '../../chunk-WM7JTTPX.js';
|
|
11
11
|
import '../../chunk-LXHZYSMQ.js';
|
|
12
|
+
import '../../chunk-BRXELOHC.js';
|
|
12
13
|
import '../../chunk-22UVE3RA.js';
|
|
14
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
13
15
|
import '../../chunk-DKQQK3WX.js';
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-PXFV47B3.js';
|
|
17
|
+
import '../../chunk-TYWZABTP.js';
|
|
16
18
|
import '../../chunk-F4TPY6YL.js';
|
|
17
19
|
import '../../chunk-C7BX547M.js';
|
|
18
20
|
import '../../chunk-RX4UWZZR.js';
|
|
@@ -1,27 +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-
|
|
2
|
-
import '../../chunk-
|
|
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-
|
|
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-
|
|
13
|
+
import '../../chunk-GHCYUZZE.js';
|
|
14
14
|
import '../../chunk-LGKLC5MG.js';
|
|
15
15
|
import '../../chunk-STZJ7SY5.js';
|
|
16
16
|
import '../../chunk-YEX4MQSY.js';
|
|
17
|
-
import '../../chunk-
|
|
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-
|
|
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
|
+
import '../../chunk-BRXELOHC.js';
|
|
21
22
|
import '../../chunk-22UVE3RA.js';
|
|
23
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
22
24
|
import '../../chunk-DKQQK3WX.js';
|
|
23
|
-
import '../../chunk-
|
|
24
|
-
import '../../chunk-
|
|
25
|
+
import '../../chunk-PXFV47B3.js';
|
|
26
|
+
import '../../chunk-TYWZABTP.js';
|
|
25
27
|
import '../../chunk-F4TPY6YL.js';
|
|
26
28
|
import '../../chunk-C7BX547M.js';
|
|
27
29
|
import '../../chunk-RX4UWZZR.js';
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
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';
|
|
6
6
|
import '../../chunk-STZJ7SY5.js';
|
|
7
7
|
import '../../chunk-YEX4MQSY.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-GHIPBT5V.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-WM7JTTPX.js';
|
|
11
11
|
import '../../chunk-LXHZYSMQ.js';
|
|
12
|
+
import '../../chunk-BRXELOHC.js';
|
|
12
13
|
import '../../chunk-22UVE3RA.js';
|
|
14
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
13
15
|
import '../../chunk-DKQQK3WX.js';
|
|
14
|
-
import '../../chunk-
|
|
15
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-PXFV47B3.js';
|
|
17
|
+
import '../../chunk-TYWZABTP.js';
|
|
16
18
|
import '../../chunk-F4TPY6YL.js';
|
|
17
19
|
import '../../chunk-C7BX547M.js';
|
|
18
20
|
import '../../chunk-RX4UWZZR.js';
|
|
@@ -1,23 +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-
|
|
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-
|
|
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-
|
|
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
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-GHIPBT5V.js';
|
|
14
14
|
import '../../chunk-7M2VOCYN.js';
|
|
15
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-WM7JTTPX.js';
|
|
16
16
|
import '../../chunk-LXHZYSMQ.js';
|
|
17
|
+
import '../../chunk-BRXELOHC.js';
|
|
17
18
|
import '../../chunk-22UVE3RA.js';
|
|
19
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
18
20
|
import '../../chunk-DKQQK3WX.js';
|
|
19
|
-
import '../../chunk-
|
|
20
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-PXFV47B3.js';
|
|
22
|
+
import '../../chunk-TYWZABTP.js';
|
|
21
23
|
import '../../chunk-F4TPY6YL.js';
|
|
22
24
|
import '../../chunk-C7BX547M.js';
|
|
23
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,15 +1,17 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
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-
|
|
5
|
+
import '../../chunk-ETWKPFOO.js';
|
|
6
6
|
import '../../chunk-7M2VOCYN.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-WM7JTTPX.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
|
+
import '../../chunk-BRXELOHC.js';
|
|
9
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
+
import '../../chunk-3ZMAGTWF.js';
|
|
10
12
|
import '../../chunk-DKQQK3WX.js';
|
|
11
|
-
import '../../chunk-
|
|
12
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-PXFV47B3.js';
|
|
14
|
+
import '../../chunk-TYWZABTP.js';
|
|
13
15
|
import '../../chunk-F4TPY6YL.js';
|
|
14
16
|
import '../../chunk-C7BX547M.js';
|
|
15
17
|
import '../../chunk-RX4UWZZR.js';
|