@elevasis/ui 2.12.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-ISVFJCPP.js → chunk-2CGYLRTX.js} +1 -1
- package/dist/{chunk-PXFV47B3.js → chunk-5IBTTMWX.js} +3 -3
- package/dist/{chunk-GHCYUZZE.js → chunk-67BKMKFG.js} +3 -3
- package/dist/{chunk-ETWKPFOO.js → chunk-6RWMRQN5.js} +1 -1
- package/dist/{chunk-TXZXMTZB.js → chunk-6WPKE7C3.js} +1 -1
- package/dist/{chunk-ZKCQEHEJ.js → chunk-BSW5MUAQ.js} +4 -4
- package/dist/{chunk-V7XHGJQZ.js → chunk-FL67C3WY.js} +6 -1
- package/dist/{chunk-WM7JTTPX.js → chunk-FT27I4S7.js} +61 -2
- package/dist/{chunk-MISBW6WW.js → chunk-H333SX3N.js} +1 -1
- package/dist/{chunk-YEX4MQSY.js → chunk-M25JL54Z.js} +3 -3
- package/dist/{chunk-7PLBPEBW.js → chunk-NLFAEJDH.js} +2 -2
- package/dist/{chunk-235RO24Z.js → chunk-PCK553L4.js} +8 -3
- package/dist/{chunk-TYWZABTP.js → chunk-R73EHHPN.js} +89 -46
- package/dist/{chunk-F6SMVMFC.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 +14 -8
- package/dist/components/index.js +19 -19
- package/dist/features/auth/index.d.ts +7 -4
- package/dist/features/auth/index.js +2 -2
- package/dist/features/crm/index.d.ts +7 -4
- package/dist/features/crm/index.js +7 -7
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +7 -4
- 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 +7 -4
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/index.d.ts +130 -10
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.d.ts +130 -10
- package/dist/hooks/published.js +6 -6
- package/dist/index.d.ts +130 -10
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +7 -4
- 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 +7 -4
- package/dist/provider/index.js +5 -5
- package/dist/provider/published.js +2 -2
- package/dist/supabase/index.d.ts +14 -8
- package/dist/theme/index.js +3 -3
- package/dist/types/index.d.ts +7 -4
- package/package.json +5 -1
|
@@ -2070,7 +2070,7 @@ type Database = {
|
|
|
2070
2070
|
}
|
|
2071
2071
|
];
|
|
2072
2072
|
};
|
|
2073
|
-
|
|
2073
|
+
reported_requests: {
|
|
2074
2074
|
Row: {
|
|
2075
2075
|
affected_page: string | null;
|
|
2076
2076
|
category: string;
|
|
@@ -2089,6 +2089,7 @@ type Database = {
|
|
|
2089
2089
|
status: string;
|
|
2090
2090
|
task_id: string | null;
|
|
2091
2091
|
title: string;
|
|
2092
|
+
type: string;
|
|
2092
2093
|
updated_at: string;
|
|
2093
2094
|
};
|
|
2094
2095
|
Insert: {
|
|
@@ -2109,6 +2110,7 @@ type Database = {
|
|
|
2109
2110
|
status?: string;
|
|
2110
2111
|
task_id?: string | null;
|
|
2111
2112
|
title: string;
|
|
2113
|
+
type: string;
|
|
2112
2114
|
updated_at?: string;
|
|
2113
2115
|
};
|
|
2114
2116
|
Update: {
|
|
@@ -2129,25 +2131,26 @@ type Database = {
|
|
|
2129
2131
|
status?: string;
|
|
2130
2132
|
task_id?: string | null;
|
|
2131
2133
|
title?: string;
|
|
2134
|
+
type?: string;
|
|
2132
2135
|
updated_at?: string;
|
|
2133
2136
|
};
|
|
2134
2137
|
Relationships: [
|
|
2135
2138
|
{
|
|
2136
|
-
foreignKeyName: "
|
|
2139
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2137
2140
|
columns: ["organization_id"];
|
|
2138
2141
|
isOneToOne: false;
|
|
2139
2142
|
referencedRelation: "organizations";
|
|
2140
2143
|
referencedColumns: ["id"];
|
|
2141
2144
|
},
|
|
2142
2145
|
{
|
|
2143
|
-
foreignKeyName: "
|
|
2146
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2144
2147
|
columns: ["project_id"];
|
|
2145
2148
|
isOneToOne: false;
|
|
2146
2149
|
referencedRelation: "prj_projects";
|
|
2147
2150
|
referencedColumns: ["id"];
|
|
2148
2151
|
},
|
|
2149
2152
|
{
|
|
2150
|
-
foreignKeyName: "
|
|
2153
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2151
2154
|
columns: ["task_id"];
|
|
2152
2155
|
isOneToOne: false;
|
|
2153
2156
|
referencedRelation: "prj_tasks";
|
|
@@ -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,7 +2118,7 @@ type Database = {
|
|
|
2118
2118
|
}
|
|
2119
2119
|
];
|
|
2120
2120
|
};
|
|
2121
|
-
|
|
2121
|
+
reported_requests: {
|
|
2122
2122
|
Row: {
|
|
2123
2123
|
affected_page: string | null;
|
|
2124
2124
|
category: string;
|
|
@@ -2137,6 +2137,7 @@ type Database = {
|
|
|
2137
2137
|
status: string;
|
|
2138
2138
|
task_id: string | null;
|
|
2139
2139
|
title: string;
|
|
2140
|
+
type: string;
|
|
2140
2141
|
updated_at: string;
|
|
2141
2142
|
};
|
|
2142
2143
|
Insert: {
|
|
@@ -2157,6 +2158,7 @@ type Database = {
|
|
|
2157
2158
|
status?: string;
|
|
2158
2159
|
task_id?: string | null;
|
|
2159
2160
|
title: string;
|
|
2161
|
+
type: string;
|
|
2160
2162
|
updated_at?: string;
|
|
2161
2163
|
};
|
|
2162
2164
|
Update: {
|
|
@@ -2177,25 +2179,26 @@ type Database = {
|
|
|
2177
2179
|
status?: string;
|
|
2178
2180
|
task_id?: string | null;
|
|
2179
2181
|
title?: string;
|
|
2182
|
+
type?: string;
|
|
2180
2183
|
updated_at?: string;
|
|
2181
2184
|
};
|
|
2182
2185
|
Relationships: [
|
|
2183
2186
|
{
|
|
2184
|
-
foreignKeyName: "
|
|
2187
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2185
2188
|
columns: ["organization_id"];
|
|
2186
2189
|
isOneToOne: false;
|
|
2187
2190
|
referencedRelation: "organizations";
|
|
2188
2191
|
referencedColumns: ["id"];
|
|
2189
2192
|
},
|
|
2190
2193
|
{
|
|
2191
|
-
foreignKeyName: "
|
|
2194
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2192
2195
|
columns: ["project_id"];
|
|
2193
2196
|
isOneToOne: false;
|
|
2194
2197
|
referencedRelation: "prj_projects";
|
|
2195
2198
|
referencedColumns: ["id"];
|
|
2196
2199
|
},
|
|
2197
2200
|
{
|
|
2198
|
-
foreignKeyName: "
|
|
2201
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2199
2202
|
columns: ["task_id"];
|
|
2200
2203
|
isOneToOne: false;
|
|
2201
2204
|
referencedRelation: "prj_tasks";
|
|
@@ -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';
|
|
@@ -2077,7 +2077,7 @@ type Database = {
|
|
|
2077
2077
|
},
|
|
2078
2078
|
]
|
|
2079
2079
|
}
|
|
2080
|
-
|
|
2080
|
+
reported_requests: {
|
|
2081
2081
|
Row: {
|
|
2082
2082
|
affected_page: string | null
|
|
2083
2083
|
category: string
|
|
@@ -2096,6 +2096,7 @@ type Database = {
|
|
|
2096
2096
|
status: string
|
|
2097
2097
|
task_id: string | null
|
|
2098
2098
|
title: string
|
|
2099
|
+
type: string
|
|
2099
2100
|
updated_at: string
|
|
2100
2101
|
}
|
|
2101
2102
|
Insert: {
|
|
@@ -2116,6 +2117,7 @@ type Database = {
|
|
|
2116
2117
|
status?: string
|
|
2117
2118
|
task_id?: string | null
|
|
2118
2119
|
title: string
|
|
2120
|
+
type: string
|
|
2119
2121
|
updated_at?: string
|
|
2120
2122
|
}
|
|
2121
2123
|
Update: {
|
|
@@ -2136,25 +2138,26 @@ type Database = {
|
|
|
2136
2138
|
status?: string
|
|
2137
2139
|
task_id?: string | null
|
|
2138
2140
|
title?: string
|
|
2141
|
+
type?: string
|
|
2139
2142
|
updated_at?: string
|
|
2140
2143
|
}
|
|
2141
2144
|
Relationships: [
|
|
2142
2145
|
{
|
|
2143
|
-
foreignKeyName: "
|
|
2146
|
+
foreignKeyName: "reported_requests_organization_id_fkey"
|
|
2144
2147
|
columns: ["organization_id"]
|
|
2145
2148
|
isOneToOne: false
|
|
2146
2149
|
referencedRelation: "organizations"
|
|
2147
2150
|
referencedColumns: ["id"]
|
|
2148
2151
|
},
|
|
2149
2152
|
{
|
|
2150
|
-
foreignKeyName: "
|
|
2153
|
+
foreignKeyName: "reported_requests_project_id_fkey"
|
|
2151
2154
|
columns: ["project_id"]
|
|
2152
2155
|
isOneToOne: false
|
|
2153
2156
|
referencedRelation: "prj_projects"
|
|
2154
2157
|
referencedColumns: ["id"]
|
|
2155
2158
|
},
|
|
2156
2159
|
{
|
|
2157
|
-
foreignKeyName: "
|
|
2160
|
+
foreignKeyName: "reported_requests_task_id_fkey"
|
|
2158
2161
|
columns: ["task_id"]
|
|
2159
2162
|
isOneToOne: false
|
|
2160
2163
|
referencedRelation: "prj_tasks"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-6WPKE7C3.js';
|
|
2
2
|
import '../../chunk-G2TDX3W6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-BZZCNLT6.js';
|
|
@@ -7,27 +7,27 @@ 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-FT27I4S7.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-
|
|
17
|
-
import '../../chunk-
|
|
18
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-5IBTTMWX.js';
|
|
17
|
+
import '../../chunk-R73EHHPN.js';
|
|
18
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
19
19
|
import '../../chunk-C7BX547M.js';
|
|
20
20
|
import '../../chunk-RX4UWZZR.js';
|
|
21
21
|
import '../../chunk-SQQGLGHW.js';
|
|
22
22
|
import '../../chunk-3KMDHCAR.js';
|
|
23
23
|
import '../../chunk-NYBEU5TE.js';
|
|
24
|
-
import '../../chunk-
|
|
24
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
25
25
|
import '../../chunk-SZHARWKU.js';
|
|
26
26
|
import '../../chunk-NVOCKXUQ.js';
|
|
27
27
|
import '../../chunk-2IFYDILW.js';
|
|
28
28
|
import '../../chunk-ELJIFLCB.js';
|
|
29
29
|
import '../../chunk-L4XXM55J.js';
|
|
30
|
-
import '../../chunk-
|
|
30
|
+
import '../../chunk-FL67C3WY.js';
|
|
31
31
|
import '../../chunk-QJ2KCHKX.js';
|
|
32
32
|
import '../../chunk-DT3QYZVU.js';
|
|
33
33
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -1,42 +1,42 @@
|
|
|
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-NLFAEJDH.js';
|
|
2
|
+
import '../../chunk-BSW5MUAQ.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-2CGYLRTX.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-67BKMKFG.js';
|
|
14
14
|
import '../../chunk-LGKLC5MG.js';
|
|
15
15
|
import '../../chunk-STZJ7SY5.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-M25JL54Z.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-
|
|
19
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-FT27I4S7.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-
|
|
26
|
-
import '../../chunk-
|
|
27
|
-
import '../../chunk-
|
|
25
|
+
import '../../chunk-5IBTTMWX.js';
|
|
26
|
+
import '../../chunk-R73EHHPN.js';
|
|
27
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
28
28
|
import '../../chunk-C7BX547M.js';
|
|
29
29
|
import '../../chunk-RX4UWZZR.js';
|
|
30
30
|
import '../../chunk-SQQGLGHW.js';
|
|
31
31
|
import '../../chunk-3KMDHCAR.js';
|
|
32
32
|
import '../../chunk-NYBEU5TE.js';
|
|
33
|
-
import '../../chunk-
|
|
33
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
34
34
|
import '../../chunk-SZHARWKU.js';
|
|
35
35
|
import '../../chunk-NVOCKXUQ.js';
|
|
36
36
|
import '../../chunk-2IFYDILW.js';
|
|
37
37
|
import '../../chunk-ELJIFLCB.js';
|
|
38
38
|
import '../../chunk-L4XXM55J.js';
|
|
39
|
-
import '../../chunk-
|
|
39
|
+
import '../../chunk-FL67C3WY.js';
|
|
40
40
|
import '../../chunk-QJ2KCHKX.js';
|
|
41
41
|
import '../../chunk-DT3QYZVU.js';
|
|
42
42
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -1,33 +1,33 @@
|
|
|
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-PCK553L4.js';
|
|
2
|
+
import '../../chunk-2CGYLRTX.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
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-M25JL54Z.js';
|
|
8
8
|
import '../../chunk-GHIPBT5V.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-FT27I4S7.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-
|
|
17
|
-
import '../../chunk-
|
|
18
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-5IBTTMWX.js';
|
|
17
|
+
import '../../chunk-R73EHHPN.js';
|
|
18
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
19
19
|
import '../../chunk-C7BX547M.js';
|
|
20
20
|
import '../../chunk-RX4UWZZR.js';
|
|
21
21
|
import '../../chunk-SQQGLGHW.js';
|
|
22
22
|
import '../../chunk-3KMDHCAR.js';
|
|
23
23
|
import '../../chunk-NYBEU5TE.js';
|
|
24
|
-
import '../../chunk-
|
|
24
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
25
25
|
import '../../chunk-SZHARWKU.js';
|
|
26
26
|
import '../../chunk-NVOCKXUQ.js';
|
|
27
27
|
import '../../chunk-2IFYDILW.js';
|
|
28
28
|
import '../../chunk-ELJIFLCB.js';
|
|
29
29
|
import '../../chunk-L4XXM55J.js';
|
|
30
|
-
import '../../chunk-
|
|
30
|
+
import '../../chunk-FL67C3WY.js';
|
|
31
31
|
import '../../chunk-QJ2KCHKX.js';
|
|
32
32
|
import '../../chunk-DT3QYZVU.js';
|
|
33
33
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { ComponentType } from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
import { z } from 'zod';
|
|
4
|
+
|
|
5
|
+
interface FeatureNavLink {
|
|
6
|
+
label: string;
|
|
7
|
+
link: string;
|
|
8
|
+
featureKey?: string;
|
|
9
|
+
onClick?: () => void;
|
|
10
|
+
links?: FeatureNavLink[];
|
|
11
|
+
}
|
|
12
|
+
interface FeatureNavEntry {
|
|
13
|
+
label: string;
|
|
14
|
+
icon: ComponentType;
|
|
15
|
+
link?: string;
|
|
16
|
+
featureKey?: string;
|
|
17
|
+
requiresAdmin?: boolean;
|
|
18
|
+
dataOnboardingTourId?: string;
|
|
19
|
+
links?: FeatureNavLink[];
|
|
20
|
+
}
|
|
21
|
+
type FeatureSidebarComponent = ComponentType;
|
|
22
|
+
interface FeatureModule {
|
|
23
|
+
/** Unique stable identifier for this feature (e.g. `'crm'`, `'projects'`). */
|
|
24
|
+
key: string;
|
|
25
|
+
/** Feature ID used for access-flag gating — must match the `id` of a feature in the organization model. */
|
|
26
|
+
featureId: string;
|
|
27
|
+
/**
|
|
28
|
+
* Capability identifiers contributed by this feature.
|
|
29
|
+
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
30
|
+
* Not queried at runtime — kept for semantic graph completeness so that
|
|
31
|
+
* capability membership is fully represented in the resolved model even when
|
|
32
|
+
* a surface does not declare it directly.
|
|
33
|
+
*/
|
|
34
|
+
capabilityIds?: string[];
|
|
35
|
+
/** Top-level navigation entry rendered in the app shell when this feature is enabled. */
|
|
36
|
+
navEntry?: FeatureNavEntry;
|
|
37
|
+
/** Sidebar component rendered when a matching subshell route is active. */
|
|
38
|
+
sidebar?: FeatureSidebarComponent;
|
|
39
|
+
/** Route path prefixes that activate this feature's sidebar and subshell context. */
|
|
40
|
+
subshellRoutes?: string[];
|
|
41
|
+
/**
|
|
42
|
+
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
43
|
+
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
44
|
+
*/
|
|
45
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
46
|
+
}
|
|
47
|
+
interface OrganizationGraphFeatureBridge {
|
|
48
|
+
surfaceId: string;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
declare const submittedRequestsManifest: FeatureModule;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Request Reporting API Schemas
|
|
55
|
+
*
|
|
56
|
+
* Request/response validation for /api/requests and /api/external/requests surfaces.
|
|
57
|
+
* Used by both the API (routes.ts, external-routes.ts) and the CLI.
|
|
58
|
+
*
|
|
59
|
+
* Table mapping:
|
|
60
|
+
* reported_requests -> RequestSchemas
|
|
61
|
+
*/
|
|
62
|
+
|
|
63
|
+
// ---------------------------------------------------------------------------
|
|
64
|
+
// Enum literals (must match DB CHECK constraints exactly)
|
|
65
|
+
// ---------------------------------------------------------------------------
|
|
66
|
+
|
|
67
|
+
declare const RequestSeverityEnum = z.enum(['critical', 'warning', 'info'])
|
|
68
|
+
declare const RequestStatusEnum = z.enum(['open', 'investigating', 'resolved', 'wont_fix'])
|
|
69
|
+
declare const RequestSourceEnum = z.enum(['agent', 'cli', 'api', 'webhook', 'user', 'external'])
|
|
70
|
+
declare const RequestTypeEnum = z.enum(['bug', 'feature', 'question', 'other'])
|
|
71
|
+
|
|
72
|
+
// ---------------------------------------------------------------------------
|
|
73
|
+
// Inferred types
|
|
74
|
+
// ---------------------------------------------------------------------------
|
|
75
|
+
|
|
76
|
+
type RequestSeverity = z.infer<typeof RequestSeverityEnum>
|
|
77
|
+
type RequestStatus = z.infer<typeof RequestStatusEnum>
|
|
78
|
+
type RequestSource = z.infer<typeof RequestSourceEnum>
|
|
79
|
+
type RequestType = z.infer<typeof RequestTypeEnum>
|
|
80
|
+
|
|
81
|
+
interface RequestsListPageProps {
|
|
82
|
+
type?: RequestType;
|
|
83
|
+
severity?: RequestSeverity;
|
|
84
|
+
status?: RequestStatus;
|
|
85
|
+
source?: RequestSource;
|
|
86
|
+
onNavigateToRequest?: (id: string) => void;
|
|
87
|
+
}
|
|
88
|
+
declare function RequestsListPage({ type: typeProp, severity: severityProp, status: statusProp, source: sourceProp, onNavigateToRequest }: RequestsListPageProps): react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
90
|
+
interface RequestsDetailPageProps {
|
|
91
|
+
requestId: string;
|
|
92
|
+
onNavigateBack?: () => void;
|
|
93
|
+
}
|
|
94
|
+
declare function RequestsDetailPage({ requestId, onNavigateBack }: RequestsDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
95
|
+
|
|
96
|
+
interface RequestTypeBadgeProps {
|
|
97
|
+
type: RequestType;
|
|
98
|
+
}
|
|
99
|
+
declare function RequestTypeBadge({ type }: RequestTypeBadgeProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
interface SeverityBadgeProps {
|
|
102
|
+
severity: RequestSeverity;
|
|
103
|
+
}
|
|
104
|
+
declare function SeverityBadge({ severity }: SeverityBadgeProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
interface StatusBadgeProps {
|
|
107
|
+
status: RequestStatus;
|
|
108
|
+
}
|
|
109
|
+
declare function StatusBadge({ status }: StatusBadgeProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
|
|
111
|
+
interface StatusTransitionMenuProps {
|
|
112
|
+
currentStatus: RequestStatus;
|
|
113
|
+
onTransition: (newStatus: RequestStatus) => void;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* StatusTransitionMenu — Mantine Menu for triaging request status.
|
|
117
|
+
*
|
|
118
|
+
* Visually disables transitions that are not valid from the current status.
|
|
119
|
+
* Selecting "Won't Fix" opens a confirmation modal before calling onTransition.
|
|
120
|
+
* No mutation logic lives here — the parent wires useUpdateRequestStatus.
|
|
121
|
+
*/
|
|
122
|
+
declare function StatusTransitionMenu({ currentStatus, onTransition }: StatusTransitionMenuProps): react_jsx_runtime.JSX.Element;
|
|
123
|
+
|
|
124
|
+
export { RequestTypeBadge, RequestsDetailPage, RequestsListPage, SeverityBadge, StatusBadge, StatusTransitionMenu, submittedRequestsManifest };
|
|
125
|
+
export type { StatusTransitionMenuProps };
|
|
@@ -1,38 +1,38 @@
|
|
|
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-BSW5MUAQ.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-2CGYLRTX.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-67BKMKFG.js';
|
|
10
10
|
import '../../chunk-LGKLC5MG.js';
|
|
11
11
|
import '../../chunk-STZJ7SY5.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-M25JL54Z.js';
|
|
13
13
|
import '../../chunk-GHIPBT5V.js';
|
|
14
14
|
import '../../chunk-7M2VOCYN.js';
|
|
15
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-FT27I4S7.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-
|
|
22
|
-
import '../../chunk-
|
|
23
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-5IBTTMWX.js';
|
|
22
|
+
import '../../chunk-R73EHHPN.js';
|
|
23
|
+
import '../../chunk-WLOQ4IBG.js';
|
|
24
24
|
import '../../chunk-C7BX547M.js';
|
|
25
25
|
import '../../chunk-RX4UWZZR.js';
|
|
26
26
|
import '../../chunk-SQQGLGHW.js';
|
|
27
27
|
import '../../chunk-3KMDHCAR.js';
|
|
28
28
|
import '../../chunk-NYBEU5TE.js';
|
|
29
|
-
import '../../chunk-
|
|
29
|
+
import '../../chunk-ZB5GAV7J.js';
|
|
30
30
|
import '../../chunk-SZHARWKU.js';
|
|
31
31
|
import '../../chunk-NVOCKXUQ.js';
|
|
32
32
|
import '../../chunk-2IFYDILW.js';
|
|
33
33
|
import '../../chunk-ELJIFLCB.js';
|
|
34
34
|
import '../../chunk-L4XXM55J.js';
|
|
35
|
-
import '../../chunk-
|
|
35
|
+
import '../../chunk-FL67C3WY.js';
|
|
36
36
|
import '../../chunk-QJ2KCHKX.js';
|
|
37
37
|
import '../../chunk-DT3QYZVU.js';
|
|
38
38
|
import '../../chunk-SLVC5OJ2.js';
|
|
@@ -2071,7 +2071,7 @@ type Database = {
|
|
|
2071
2071
|
}
|
|
2072
2072
|
];
|
|
2073
2073
|
};
|
|
2074
|
-
|
|
2074
|
+
reported_requests: {
|
|
2075
2075
|
Row: {
|
|
2076
2076
|
affected_page: string | null;
|
|
2077
2077
|
category: string;
|
|
@@ -2090,6 +2090,7 @@ type Database = {
|
|
|
2090
2090
|
status: string;
|
|
2091
2091
|
task_id: string | null;
|
|
2092
2092
|
title: string;
|
|
2093
|
+
type: string;
|
|
2093
2094
|
updated_at: string;
|
|
2094
2095
|
};
|
|
2095
2096
|
Insert: {
|
|
@@ -2110,6 +2111,7 @@ type Database = {
|
|
|
2110
2111
|
status?: string;
|
|
2111
2112
|
task_id?: string | null;
|
|
2112
2113
|
title: string;
|
|
2114
|
+
type: string;
|
|
2113
2115
|
updated_at?: string;
|
|
2114
2116
|
};
|
|
2115
2117
|
Update: {
|
|
@@ -2130,25 +2132,26 @@ type Database = {
|
|
|
2130
2132
|
status?: string;
|
|
2131
2133
|
task_id?: string | null;
|
|
2132
2134
|
title?: string;
|
|
2135
|
+
type?: string;
|
|
2133
2136
|
updated_at?: string;
|
|
2134
2137
|
};
|
|
2135
2138
|
Relationships: [
|
|
2136
2139
|
{
|
|
2137
|
-
foreignKeyName: "
|
|
2140
|
+
foreignKeyName: "reported_requests_organization_id_fkey";
|
|
2138
2141
|
columns: ["organization_id"];
|
|
2139
2142
|
isOneToOne: false;
|
|
2140
2143
|
referencedRelation: "organizations";
|
|
2141
2144
|
referencedColumns: ["id"];
|
|
2142
2145
|
},
|
|
2143
2146
|
{
|
|
2144
|
-
foreignKeyName: "
|
|
2147
|
+
foreignKeyName: "reported_requests_project_id_fkey";
|
|
2145
2148
|
columns: ["project_id"];
|
|
2146
2149
|
isOneToOne: false;
|
|
2147
2150
|
referencedRelation: "prj_projects";
|
|
2148
2151
|
referencedColumns: ["id"];
|
|
2149
2152
|
},
|
|
2150
2153
|
{
|
|
2151
|
-
foreignKeyName: "
|
|
2154
|
+
foreignKeyName: "reported_requests_task_id_fkey";
|
|
2152
2155
|
columns: ["task_id"];
|
|
2153
2156
|
isOneToOne: false;
|
|
2154
2157
|
referencedRelation: "prj_tasks";
|