@elevasis/ui 2.20.0 → 2.21.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/api/index.js +2 -2
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-FMFX4K6E.js → chunk-7GG6OSD7.js} +34 -9
- package/dist/{chunk-GTYUP7MB.js → chunk-ATEHYDL3.js} +5 -21
- package/dist/{chunk-AL23U6C3.js → chunk-BIWHHWCJ.js} +1 -2
- package/dist/{chunk-JR5WNTLA.js → chunk-BJWIKEQG.js} +6 -11
- package/dist/{chunk-GP3AFJYG.js → chunk-CZK67OHH.js} +6 -11
- package/dist/{chunk-TO7QXDBX.js → chunk-DMYELNGA.js} +2 -2
- package/dist/{chunk-2CFOFSSG.js → chunk-EDX6WIN3.js} +6 -11
- package/dist/{chunk-PJVG3ISO.js → chunk-EGKNRM6P.js} +6 -8
- package/dist/{chunk-ZE2KQSHL.js → chunk-I5WRKH25.js} +4 -4
- package/dist/chunk-KVW56ERD.js +24 -0
- package/dist/{chunk-YP6T426C.js → chunk-LQU62KHD.js} +144 -432
- package/dist/{chunk-OUYH2SBS.js → chunk-LVUCBY7X.js} +2 -2
- package/dist/chunk-S7RL77QS.js +48 -0
- package/dist/{chunk-OD7GWIZS.js → chunk-SGXXJE52.js} +1 -121
- package/dist/{chunk-R7OJCNL3.js → chunk-T6INEVX6.js} +1 -1
- package/dist/{chunk-CTTY6FUT.js → chunk-TSSKOQBX.js} +2 -2
- package/dist/{chunk-Q4QJOSVS.js → chunk-ULZ2B3NC.js} +1 -1
- package/dist/chunk-VQESMHQV.js +336 -0
- package/dist/{chunk-MZFJWCPH.js → chunk-XLZZOFGM.js} +5 -19
- package/dist/{chunk-BHR7IV72.js → chunk-XUYBOO32.js} +1 -1
- package/dist/{chunk-M7W7CGPL.js → chunk-Z6FAH4XV.js} +1 -1
- package/dist/components/index.d.ts +46 -87
- package/dist/components/index.js +27 -26
- package/dist/components/navigation/index.d.ts +1 -13
- package/dist/components/navigation/index.js +11 -1
- package/dist/execution/index.d.ts +27 -0
- package/dist/features/crm/index.d.ts +12 -35
- package/dist/features/crm/index.js +11 -10
- package/dist/features/dashboard/index.d.ts +25 -27
- package/dist/features/dashboard/index.js +12 -11
- package/dist/features/delivery/index.d.ts +12 -35
- package/dist/features/delivery/index.js +11 -10
- package/dist/features/lead-gen/index.d.ts +14 -37
- package/dist/features/lead-gen/index.js +11 -10
- package/dist/features/monitoring/index.d.ts +12 -35
- package/dist/features/monitoring/index.js +13 -12
- package/dist/features/monitoring/requests/index.d.ts +13 -36
- package/dist/features/monitoring/requests/index.js +11 -10
- package/dist/features/operations/index.d.ts +44 -65
- package/dist/features/operations/index.js +14 -13
- package/dist/features/seo/index.d.ts +12 -35
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +12 -35
- package/dist/features/settings/index.js +11 -10
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +46 -66
- package/dist/hooks/index.js +10 -9
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +92 -121
- package/dist/hooks/published.d.ts +46 -66
- package/dist/hooks/published.js +10 -9
- package/dist/index.d.ts +365 -452
- package/dist/index.js +10 -9
- package/dist/provider/index.d.ts +62 -125
- package/dist/provider/index.js +8 -7
- package/dist/provider/published.d.ts +62 -125
- package/dist/provider/published.js +6 -5
- package/dist/test-utils/index.js +2 -2
- package/dist/types/index.d.ts +108 -135
- package/dist/utils/index.d.ts +26 -59
- package/dist/utils/index.js +1 -1
- package/package.json +4 -4
- package/dist/chunk-LR5CRY5A.js +0 -514
- package/dist/chunk-MG3NF7QL.js +0 -63
|
@@ -2750,50 +2750,27 @@ interface ProjectsSidebarMiddleProps {
|
|
|
2750
2750
|
}
|
|
2751
2751
|
declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate, projectItems, workItems, communicationItems }?: ProjectsSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
|
|
2752
2752
|
|
|
2753
|
-
interface FeatureNavLink {
|
|
2754
|
-
label: string;
|
|
2755
|
-
link: string;
|
|
2756
|
-
featureKey?: string;
|
|
2757
|
-
onClick?: () => void;
|
|
2758
|
-
links?: FeatureNavLink[];
|
|
2759
|
-
}
|
|
2760
|
-
interface FeatureNavEntry {
|
|
2761
|
-
label: string;
|
|
2762
|
-
icon: ComponentType;
|
|
2763
|
-
link?: string;
|
|
2764
|
-
featureKey?: string;
|
|
2765
|
-
requiresAdmin?: boolean;
|
|
2766
|
-
dataOnboardingTourId?: string;
|
|
2767
|
-
links?: FeatureNavLink[];
|
|
2768
|
-
}
|
|
2769
2753
|
type FeatureSidebarComponent = ComponentType;
|
|
2754
|
+
type FeatureIconComponent = ComponentType<{
|
|
2755
|
+
size?: number;
|
|
2756
|
+
stroke?: number;
|
|
2757
|
+
}>;
|
|
2770
2758
|
interface FeatureModule {
|
|
2771
|
-
/** Unique stable identifier for this feature
|
|
2759
|
+
/** Unique stable identifier for this feature module. */
|
|
2772
2760
|
key: string;
|
|
2773
|
-
/**
|
|
2761
|
+
/** Organization Model feature id this module presents. */
|
|
2774
2762
|
featureId: string;
|
|
2775
|
-
/**
|
|
2776
|
-
* Capability identifiers contributed by this feature.
|
|
2777
|
-
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
2778
|
-
* Not queried at runtime — kept for semantic graph completeness so that
|
|
2779
|
-
* capability membership is fully represented in the resolved model even when
|
|
2780
|
-
* a surface does not declare it directly.
|
|
2781
|
-
*/
|
|
2763
|
+
/** Capability identifiers contributed by this feature module. */
|
|
2782
2764
|
capabilityIds?: string[];
|
|
2783
|
-
/**
|
|
2784
|
-
|
|
2785
|
-
/** Sidebar component rendered when
|
|
2765
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
2766
|
+
icon?: FeatureIconComponent;
|
|
2767
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
2786
2768
|
sidebar?: FeatureSidebarComponent;
|
|
2787
|
-
/**
|
|
2788
|
-
subshellRoutes?: string[];
|
|
2789
|
-
/**
|
|
2790
|
-
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
2791
|
-
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
2792
|
-
*/
|
|
2769
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
2793
2770
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
2794
2771
|
}
|
|
2795
2772
|
interface OrganizationGraphFeatureBridge {
|
|
2796
|
-
|
|
2773
|
+
featureId: string;
|
|
2797
2774
|
}
|
|
2798
2775
|
|
|
2799
2776
|
declare const deliveryManifest: FeatureModule;
|
|
@@ -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-BJWIKEQG.js';
|
|
2
2
|
import '../../chunk-442LZPIR.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-TUMSNGTX.js';
|
|
@@ -7,24 +7,25 @@ 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-7GG6OSD7.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-QSTH6T77.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-Z6FAH4XV.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
|
-
import '../../chunk-
|
|
17
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-ULZ2B3NC.js';
|
|
17
|
+
import '../../chunk-DMYELNGA.js';
|
|
18
18
|
import '../../chunk-Q5HC6ENG.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
21
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-KVW56ERD.js';
|
|
21
|
+
import '../../chunk-LVUCBY7X.js';
|
|
22
|
+
import '../../chunk-VQESMHQV.js';
|
|
22
23
|
import '../../chunk-RX4UWZZR.js';
|
|
23
|
-
import '../../chunk-
|
|
24
|
+
import '../../chunk-XUYBOO32.js';
|
|
24
25
|
import '../../chunk-SZHARWKU.js';
|
|
25
26
|
import '../../chunk-3KMDHCAR.js';
|
|
26
27
|
import '../../chunk-NYBEU5TE.js';
|
|
27
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-T6INEVX6.js';
|
|
28
29
|
import '../../chunk-2IFYDILW.js';
|
|
29
30
|
import '../../chunk-Q7DJKLEN.js';
|
|
30
31
|
import '../../chunk-7YQKVWSD.js';
|
|
@@ -33,7 +34,7 @@ import '../../chunk-QJ2KCHKX.js';
|
|
|
33
34
|
import '../../chunk-HQ7M6PBW.js';
|
|
34
35
|
import '../../chunk-DT3QYZVU.js';
|
|
35
36
|
import '../../chunk-RNP5R5I3.js';
|
|
36
|
-
import '../../chunk-
|
|
37
|
+
import '../../chunk-SGXXJE52.js';
|
|
37
38
|
import '../../chunk-KRWALB24.js';
|
|
38
39
|
import '../../chunk-SLH2QLKV.js';
|
|
39
40
|
import '../../chunk-DK2HVHCY.js';
|
|
@@ -200,50 +200,27 @@ type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
|
200
200
|
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
201
201
|
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
202
202
|
|
|
203
|
-
interface FeatureNavLink {
|
|
204
|
-
label: string;
|
|
205
|
-
link: string;
|
|
206
|
-
featureKey?: string;
|
|
207
|
-
onClick?: () => void;
|
|
208
|
-
links?: FeatureNavLink[];
|
|
209
|
-
}
|
|
210
|
-
interface FeatureNavEntry {
|
|
211
|
-
label: string;
|
|
212
|
-
icon: ComponentType;
|
|
213
|
-
link?: string;
|
|
214
|
-
featureKey?: string;
|
|
215
|
-
requiresAdmin?: boolean;
|
|
216
|
-
dataOnboardingTourId?: string;
|
|
217
|
-
links?: FeatureNavLink[];
|
|
218
|
-
}
|
|
219
203
|
type FeatureSidebarComponent = ComponentType;
|
|
204
|
+
type FeatureIconComponent = ComponentType<{
|
|
205
|
+
size?: number;
|
|
206
|
+
stroke?: number;
|
|
207
|
+
}>;
|
|
220
208
|
interface FeatureModule {
|
|
221
|
-
/** Unique stable identifier for this feature
|
|
209
|
+
/** Unique stable identifier for this feature module. */
|
|
222
210
|
key: string;
|
|
223
|
-
/**
|
|
211
|
+
/** Organization Model feature id this module presents. */
|
|
224
212
|
featureId: string;
|
|
225
|
-
/**
|
|
226
|
-
* Capability identifiers contributed by this feature.
|
|
227
|
-
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
228
|
-
* Not queried at runtime — kept for semantic graph completeness so that
|
|
229
|
-
* capability membership is fully represented in the resolved model even when
|
|
230
|
-
* a surface does not declare it directly.
|
|
231
|
-
*/
|
|
213
|
+
/** Capability identifiers contributed by this feature module. */
|
|
232
214
|
capabilityIds?: string[];
|
|
233
|
-
/**
|
|
234
|
-
|
|
235
|
-
/** Sidebar component rendered when
|
|
215
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
216
|
+
icon?: FeatureIconComponent;
|
|
217
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
236
218
|
sidebar?: FeatureSidebarComponent;
|
|
237
|
-
/**
|
|
238
|
-
subshellRoutes?: string[];
|
|
239
|
-
/**
|
|
240
|
-
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
241
|
-
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
242
|
-
*/
|
|
219
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
243
220
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
244
221
|
}
|
|
245
222
|
interface OrganizationGraphFeatureBridge {
|
|
246
|
-
|
|
223
|
+
featureId: string;
|
|
247
224
|
}
|
|
248
225
|
|
|
249
226
|
declare const leadGenManifest: FeatureModule;
|
|
@@ -261,8 +238,8 @@ declare function LeadGenRouteShell({ title, caption, body, links }: {
|
|
|
261
238
|
}): react_jsx_runtime.JSX.Element;
|
|
262
239
|
declare function formatDate(dateValue: string | Date): string;
|
|
263
240
|
declare function getStatusColor(status: string | null): "green" | "red" | "gray";
|
|
264
|
-
declare function getEnrichmentColor(status: string): "
|
|
265
|
-
declare function getEnrichmentStatus(enrichmentData: Record<string, unknown> | null | undefined): "
|
|
241
|
+
declare function getEnrichmentColor(status: string): "yellow" | "green" | "red" | "gray";
|
|
242
|
+
declare function getEnrichmentStatus(enrichmentData: Record<string, unknown> | null | undefined): "pending" | "failed" | "complete";
|
|
266
243
|
type LeadGenCompanyListItem = AcqCompanyResponse;
|
|
267
244
|
type LeadGenContactListItem = AcqContactResponse;
|
|
268
245
|
declare function CompanyDetailModal({ company, onClose }: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-CZK67OHH.js';
|
|
2
2
|
import '../../chunk-BZZCNLT6.js';
|
|
3
3
|
import '../../chunk-TUMSNGTX.js';
|
|
4
4
|
import '../../chunk-CEWTOKE7.js';
|
|
@@ -6,24 +6,25 @@ import '../../chunk-IIMU5YAJ.js';
|
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
8
|
import '../../chunk-7M2VOCYN.js';
|
|
9
|
-
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-
|
|
9
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-7GG6OSD7.js';
|
|
10
10
|
import '../../chunk-BRXELOHC.js';
|
|
11
11
|
import '../../chunk-QSTH6T77.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-Z6FAH4XV.js';
|
|
13
13
|
import '../../chunk-22UVE3RA.js';
|
|
14
14
|
import '../../chunk-3ZMAGTWF.js';
|
|
15
|
-
import '../../chunk-
|
|
16
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-ULZ2B3NC.js';
|
|
16
|
+
import '../../chunk-DMYELNGA.js';
|
|
17
17
|
import '../../chunk-Q5HC6ENG.js';
|
|
18
18
|
import '../../chunk-WLOQ4IBG.js';
|
|
19
|
-
import '../../chunk-
|
|
20
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-KVW56ERD.js';
|
|
20
|
+
import '../../chunk-LVUCBY7X.js';
|
|
21
|
+
import '../../chunk-VQESMHQV.js';
|
|
21
22
|
import '../../chunk-RX4UWZZR.js';
|
|
22
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-XUYBOO32.js';
|
|
23
24
|
import '../../chunk-SZHARWKU.js';
|
|
24
25
|
import '../../chunk-3KMDHCAR.js';
|
|
25
26
|
import '../../chunk-NYBEU5TE.js';
|
|
26
|
-
import '../../chunk-
|
|
27
|
+
import '../../chunk-T6INEVX6.js';
|
|
27
28
|
import '../../chunk-2IFYDILW.js';
|
|
28
29
|
import '../../chunk-Q7DJKLEN.js';
|
|
29
30
|
import '../../chunk-7YQKVWSD.js';
|
|
@@ -32,7 +33,7 @@ import '../../chunk-QJ2KCHKX.js';
|
|
|
32
33
|
import '../../chunk-HQ7M6PBW.js';
|
|
33
34
|
import '../../chunk-DT3QYZVU.js';
|
|
34
35
|
import '../../chunk-RNP5R5I3.js';
|
|
35
|
-
import '../../chunk-
|
|
36
|
+
import '../../chunk-SGXXJE52.js';
|
|
36
37
|
import '../../chunk-KRWALB24.js';
|
|
37
38
|
import '../../chunk-SLH2QLKV.js';
|
|
38
39
|
import '../../chunk-DK2HVHCY.js';
|
|
@@ -118,50 +118,27 @@ interface NotificationCenterProps {
|
|
|
118
118
|
}
|
|
119
119
|
declare function NotificationCenter({ pageSize }: NotificationCenterProps): react_jsx_runtime.JSX.Element;
|
|
120
120
|
|
|
121
|
-
interface FeatureNavLink {
|
|
122
|
-
label: string;
|
|
123
|
-
link: string;
|
|
124
|
-
featureKey?: string;
|
|
125
|
-
onClick?: () => void;
|
|
126
|
-
links?: FeatureNavLink[];
|
|
127
|
-
}
|
|
128
|
-
interface FeatureNavEntry {
|
|
129
|
-
label: string;
|
|
130
|
-
icon: ComponentType;
|
|
131
|
-
link?: string;
|
|
132
|
-
featureKey?: string;
|
|
133
|
-
requiresAdmin?: boolean;
|
|
134
|
-
dataOnboardingTourId?: string;
|
|
135
|
-
links?: FeatureNavLink[];
|
|
136
|
-
}
|
|
137
121
|
type FeatureSidebarComponent = ComponentType;
|
|
122
|
+
type FeatureIconComponent = ComponentType<{
|
|
123
|
+
size?: number;
|
|
124
|
+
stroke?: number;
|
|
125
|
+
}>;
|
|
138
126
|
interface FeatureModule {
|
|
139
|
-
/** Unique stable identifier for this feature
|
|
127
|
+
/** Unique stable identifier for this feature module. */
|
|
140
128
|
key: string;
|
|
141
|
-
/**
|
|
129
|
+
/** Organization Model feature id this module presents. */
|
|
142
130
|
featureId: string;
|
|
143
|
-
/**
|
|
144
|
-
* Capability identifiers contributed by this feature.
|
|
145
|
-
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
146
|
-
* Not queried at runtime — kept for semantic graph completeness so that
|
|
147
|
-
* capability membership is fully represented in the resolved model even when
|
|
148
|
-
* a surface does not declare it directly.
|
|
149
|
-
*/
|
|
131
|
+
/** Capability identifiers contributed by this feature module. */
|
|
150
132
|
capabilityIds?: string[];
|
|
151
|
-
/**
|
|
152
|
-
|
|
153
|
-
/** Sidebar component rendered when
|
|
133
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
134
|
+
icon?: FeatureIconComponent;
|
|
135
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
154
136
|
sidebar?: FeatureSidebarComponent;
|
|
155
|
-
/**
|
|
156
|
-
subshellRoutes?: string[];
|
|
157
|
-
/**
|
|
158
|
-
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
159
|
-
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
160
|
-
*/
|
|
137
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
161
138
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
162
139
|
}
|
|
163
140
|
interface OrganizationGraphFeatureBridge {
|
|
164
|
-
|
|
141
|
+
featureId: string;
|
|
165
142
|
}
|
|
166
143
|
|
|
167
144
|
declare const monitoringManifest: FeatureModule;
|
|
@@ -1,30 +1,31 @@
|
|
|
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-ATEHYDL3.js';
|
|
2
|
+
import '../../chunk-I5WRKH25.js';
|
|
3
3
|
import '../../chunk-LGKLC5MG.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-TSSKOQBX.js';
|
|
5
5
|
import '../../chunk-M25JL54Z.js';
|
|
6
6
|
import '../../chunk-PDHTXPSF.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
8
|
import '../../chunk-E4WQGJNS.js';
|
|
9
9
|
import '../../chunk-7M2VOCYN.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-7GG6OSD7.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-QSTH6T77.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-Z6FAH4XV.js';
|
|
14
14
|
import '../../chunk-22UVE3RA.js';
|
|
15
15
|
import '../../chunk-3ZMAGTWF.js';
|
|
16
|
-
import '../../chunk-
|
|
17
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-ULZ2B3NC.js';
|
|
17
|
+
import '../../chunk-DMYELNGA.js';
|
|
18
18
|
import '../../chunk-Q5HC6ENG.js';
|
|
19
19
|
import '../../chunk-WLOQ4IBG.js';
|
|
20
|
-
import '../../chunk-
|
|
21
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-KVW56ERD.js';
|
|
21
|
+
import '../../chunk-LVUCBY7X.js';
|
|
22
|
+
import '../../chunk-VQESMHQV.js';
|
|
22
23
|
import '../../chunk-RX4UWZZR.js';
|
|
23
|
-
import '../../chunk-
|
|
24
|
+
import '../../chunk-XUYBOO32.js';
|
|
24
25
|
import '../../chunk-SZHARWKU.js';
|
|
25
26
|
import '../../chunk-3KMDHCAR.js';
|
|
26
27
|
import '../../chunk-NYBEU5TE.js';
|
|
27
|
-
import '../../chunk-
|
|
28
|
+
import '../../chunk-T6INEVX6.js';
|
|
28
29
|
import '../../chunk-2IFYDILW.js';
|
|
29
30
|
import '../../chunk-Q7DJKLEN.js';
|
|
30
31
|
import '../../chunk-7YQKVWSD.js';
|
|
@@ -33,7 +34,7 @@ import '../../chunk-QJ2KCHKX.js';
|
|
|
33
34
|
import '../../chunk-HQ7M6PBW.js';
|
|
34
35
|
import '../../chunk-DT3QYZVU.js';
|
|
35
36
|
import '../../chunk-RNP5R5I3.js';
|
|
36
|
-
import '../../chunk-
|
|
37
|
+
import '../../chunk-SGXXJE52.js';
|
|
37
38
|
import '../../chunk-KRWALB24.js';
|
|
38
39
|
import '../../chunk-SLH2QLKV.js';
|
|
39
40
|
import '../../chunk-DK2HVHCY.js';
|
|
@@ -2,50 +2,27 @@ import { ComponentType } from 'react';
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import { z } from 'zod';
|
|
4
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
5
|
type FeatureSidebarComponent = ComponentType;
|
|
6
|
+
type FeatureIconComponent = ComponentType<{
|
|
7
|
+
size?: number;
|
|
8
|
+
stroke?: number;
|
|
9
|
+
}>;
|
|
22
10
|
interface FeatureModule {
|
|
23
|
-
/** Unique stable identifier for this feature
|
|
11
|
+
/** Unique stable identifier for this feature module. */
|
|
24
12
|
key: string;
|
|
25
|
-
/**
|
|
13
|
+
/** Organization Model feature id this module presents. */
|
|
26
14
|
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
|
-
*/
|
|
15
|
+
/** Capability identifiers contributed by this feature module. */
|
|
34
16
|
capabilityIds?: string[];
|
|
35
|
-
/**
|
|
36
|
-
|
|
37
|
-
/** Sidebar component rendered when
|
|
17
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
18
|
+
icon?: FeatureIconComponent;
|
|
19
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
38
20
|
sidebar?: FeatureSidebarComponent;
|
|
39
|
-
/**
|
|
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
|
-
*/
|
|
21
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
45
22
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
46
23
|
}
|
|
47
24
|
interface OrganizationGraphFeatureBridge {
|
|
48
|
-
|
|
25
|
+
featureId: string;
|
|
49
26
|
}
|
|
50
27
|
|
|
51
28
|
declare const submittedRequestsManifest: FeatureModule;
|
|
@@ -79,8 +56,8 @@ declare const RequestSourceEnum: z.ZodEnum<{
|
|
|
79
56
|
cli: "cli";
|
|
80
57
|
}>;
|
|
81
58
|
declare const RequestTypeEnum: z.ZodEnum<{
|
|
82
|
-
other: "other";
|
|
83
59
|
feature: "feature";
|
|
60
|
+
other: "other";
|
|
84
61
|
bug: "bug";
|
|
85
62
|
question: "question";
|
|
86
63
|
}>;
|
|
@@ -2,24 +2,25 @@ import { TableSelectionToolbar } from '../../../chunk-TUMSNGTX.js';
|
|
|
2
2
|
import { FilterBar } from '../../../chunk-PDHTXPSF.js';
|
|
3
3
|
import { ConfirmationModal, CustomModal } from '../../../chunk-GBMNCNHX.js';
|
|
4
4
|
import '../../../chunk-7M2VOCYN.js';
|
|
5
|
-
import { usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, useRequest } from '../../../chunk-
|
|
5
|
+
import { usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, useRequest } from '../../../chunk-7GG6OSD7.js';
|
|
6
6
|
import '../../../chunk-BRXELOHC.js';
|
|
7
7
|
import '../../../chunk-QSTH6T77.js';
|
|
8
|
-
import '../../../chunk-
|
|
8
|
+
import '../../../chunk-Z6FAH4XV.js';
|
|
9
9
|
import '../../../chunk-22UVE3RA.js';
|
|
10
10
|
import '../../../chunk-3ZMAGTWF.js';
|
|
11
|
-
import '../../../chunk-
|
|
12
|
-
import '../../../chunk-
|
|
11
|
+
import '../../../chunk-ULZ2B3NC.js';
|
|
12
|
+
import '../../../chunk-DMYELNGA.js';
|
|
13
13
|
import '../../../chunk-Q5HC6ENG.js';
|
|
14
14
|
import '../../../chunk-WLOQ4IBG.js';
|
|
15
|
-
import '../../../chunk-
|
|
16
|
-
import '../../../chunk-
|
|
15
|
+
import '../../../chunk-KVW56ERD.js';
|
|
16
|
+
import '../../../chunk-LVUCBY7X.js';
|
|
17
|
+
import '../../../chunk-VQESMHQV.js';
|
|
17
18
|
import '../../../chunk-RX4UWZZR.js';
|
|
18
|
-
import { PageTitleCaption, CardHeader, ContextViewer, JsonViewer } from '../../../chunk-
|
|
19
|
+
import { PageTitleCaption, CardHeader, ContextViewer, JsonViewer } from '../../../chunk-XUYBOO32.js';
|
|
19
20
|
import '../../../chunk-SZHARWKU.js';
|
|
20
21
|
import '../../../chunk-3KMDHCAR.js';
|
|
21
22
|
import '../../../chunk-NYBEU5TE.js';
|
|
22
|
-
import '../../../chunk-
|
|
23
|
+
import '../../../chunk-T6INEVX6.js';
|
|
23
24
|
import '../../../chunk-2IFYDILW.js';
|
|
24
25
|
import '../../../chunk-Q7DJKLEN.js';
|
|
25
26
|
import '../../../chunk-7YQKVWSD.js';
|
|
@@ -28,7 +29,7 @@ import '../../../chunk-QJ2KCHKX.js';
|
|
|
28
29
|
import '../../../chunk-HQ7M6PBW.js';
|
|
29
30
|
import '../../../chunk-DT3QYZVU.js';
|
|
30
31
|
import '../../../chunk-RNP5R5I3.js';
|
|
31
|
-
import { formatTimeAgo } from '../../../chunk-
|
|
32
|
+
import { formatTimeAgo } from '../../../chunk-SGXXJE52.js';
|
|
32
33
|
import '../../../chunk-KRWALB24.js';
|
|
33
34
|
import '../../../chunk-SLH2QLKV.js';
|
|
34
35
|
import '../../../chunk-DK2HVHCY.js';
|
|
@@ -47,7 +48,7 @@ import { notifications } from '@mantine/notifications';
|
|
|
47
48
|
// src/features/monitoring/requests/manifest.ts
|
|
48
49
|
var submittedRequestsManifest = {
|
|
49
50
|
key: "submitted-requests",
|
|
50
|
-
featureId: "monitoring"
|
|
51
|
+
featureId: "monitoring.submitted-requests"
|
|
51
52
|
};
|
|
52
53
|
var TYPE_COLORS = {
|
|
53
54
|
bug: "red",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { ReactNode, ComponentType } from 'react';
|
|
3
4
|
import { EventSourceMessage } from '@microsoft/fetch-event-source';
|
|
4
5
|
|
|
@@ -92,6 +93,8 @@ interface SerializedAgentDefinition {
|
|
|
92
93
|
version: string;
|
|
93
94
|
type: 'agent';
|
|
94
95
|
status: 'dev' | 'prod';
|
|
96
|
+
links?: ResourceLink[];
|
|
97
|
+
category?: ResourceCategory;
|
|
95
98
|
/** Whether this resource is archived and should be excluded from registration and deployment */
|
|
96
99
|
archived?: boolean;
|
|
97
100
|
systemPrompt: string;
|
|
@@ -147,6 +150,8 @@ interface SerializedWorkflowDefinition {
|
|
|
147
150
|
version: string;
|
|
148
151
|
type: 'workflow';
|
|
149
152
|
status: 'dev' | 'prod';
|
|
153
|
+
links?: ResourceLink[];
|
|
154
|
+
category?: ResourceCategory;
|
|
150
155
|
/** Whether this resource is archived and should be excluded from registration and deployment */
|
|
151
156
|
archived?: boolean;
|
|
152
157
|
};
|
|
@@ -347,8 +352,10 @@ interface ResourceDefinition {
|
|
|
347
352
|
type: ResourceType;
|
|
348
353
|
/** Environment/deployment status */
|
|
349
354
|
status: ResourceStatus;
|
|
350
|
-
/**
|
|
351
|
-
|
|
355
|
+
/** Graph links to Organization Model nodes */
|
|
356
|
+
links?: ResourceLink[];
|
|
357
|
+
/** Infrastructure category for filtering */
|
|
358
|
+
category?: ResourceCategory;
|
|
352
359
|
/** Whether the agent supports multi-turn sessions (agents only) */
|
|
353
360
|
sessionCapable?: boolean;
|
|
354
361
|
/** Whether the resource is local (monorepo) or remote (externally deployed) */
|
|
@@ -357,32 +364,27 @@ interface ResourceDefinition {
|
|
|
357
364
|
archived?: boolean;
|
|
358
365
|
}
|
|
359
366
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
/**
|
|
382
|
-
* ResourceDomain - Strongly typed domain identifier
|
|
383
|
-
* Use this type for all domain references to ensure compile-time validation.
|
|
384
|
-
*/
|
|
385
|
-
type ResourceDomain = (typeof DOMAINS)[keyof typeof DOMAINS];
|
|
367
|
+
declare const LinkSchema: z.ZodObject<{
|
|
368
|
+
nodeId: z.ZodString;
|
|
369
|
+
kind: z.ZodEnum<{
|
|
370
|
+
contains: "contains";
|
|
371
|
+
references: "references";
|
|
372
|
+
exposes: "exposes";
|
|
373
|
+
maps_to: "maps_to";
|
|
374
|
+
"operates-on": "operates-on";
|
|
375
|
+
uses: "uses";
|
|
376
|
+
}>;
|
|
377
|
+
}, z.core.$strip>;
|
|
378
|
+
type Link = z.infer<typeof LinkSchema>;
|
|
379
|
+
|
|
380
|
+
declare const ResourceCategorySchema: z.ZodEnum<{
|
|
381
|
+
production: "production";
|
|
382
|
+
diagnostic: "diagnostic";
|
|
383
|
+
internal: "internal";
|
|
384
|
+
testing: "testing";
|
|
385
|
+
}>;
|
|
386
|
+
type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
|
|
387
|
+
type ResourceLink = Link;
|
|
386
388
|
|
|
387
389
|
interface ResourcesPageProps {
|
|
388
390
|
/** Initial filter type from the URL search param (caller-managed) */
|
|
@@ -534,50 +536,27 @@ interface UseExecutionPanelStateOptions {
|
|
|
534
536
|
|
|
535
537
|
type TaskFilterStatus = 'all' | 'pending' | 'completed' | 'expired';
|
|
536
538
|
|
|
537
|
-
interface FeatureNavLink {
|
|
538
|
-
label: string;
|
|
539
|
-
link: string;
|
|
540
|
-
featureKey?: string;
|
|
541
|
-
onClick?: () => void;
|
|
542
|
-
links?: FeatureNavLink[];
|
|
543
|
-
}
|
|
544
|
-
interface FeatureNavEntry {
|
|
545
|
-
label: string;
|
|
546
|
-
icon: ComponentType;
|
|
547
|
-
link?: string;
|
|
548
|
-
featureKey?: string;
|
|
549
|
-
requiresAdmin?: boolean;
|
|
550
|
-
dataOnboardingTourId?: string;
|
|
551
|
-
links?: FeatureNavLink[];
|
|
552
|
-
}
|
|
553
539
|
type FeatureSidebarComponent = ComponentType;
|
|
540
|
+
type FeatureIconComponent = ComponentType<{
|
|
541
|
+
size?: number;
|
|
542
|
+
stroke?: number;
|
|
543
|
+
}>;
|
|
554
544
|
interface FeatureModule {
|
|
555
|
-
/** Unique stable identifier for this feature
|
|
545
|
+
/** Unique stable identifier for this feature module. */
|
|
556
546
|
key: string;
|
|
557
|
-
/**
|
|
547
|
+
/** Organization Model feature id this module presents. */
|
|
558
548
|
featureId: string;
|
|
559
|
-
/**
|
|
560
|
-
* Capability identifiers contributed by this feature.
|
|
561
|
-
* Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
|
|
562
|
-
* Not queried at runtime — kept for semantic graph completeness so that
|
|
563
|
-
* capability membership is fully represented in the resolved model even when
|
|
564
|
-
* a surface does not declare it directly.
|
|
565
|
-
*/
|
|
549
|
+
/** Capability identifiers contributed by this feature module. */
|
|
566
550
|
capabilityIds?: string[];
|
|
567
|
-
/**
|
|
568
|
-
|
|
569
|
-
/** Sidebar component rendered when
|
|
551
|
+
/** Icon used when this feature node appears in shell navigation. */
|
|
552
|
+
icon?: FeatureIconComponent;
|
|
553
|
+
/** Sidebar component rendered when this feature's subtree route is active. */
|
|
570
554
|
sidebar?: FeatureSidebarComponent;
|
|
571
|
-
/**
|
|
572
|
-
subshellRoutes?: string[];
|
|
573
|
-
/**
|
|
574
|
-
* Operations-only bridge surface connecting this feature to the organization graph.
|
|
575
|
-
* Ignored by all other features. Only one manifest in the registry should set this.
|
|
576
|
-
*/
|
|
555
|
+
/** Operations-only bridge connecting this feature to the organization graph node. */
|
|
577
556
|
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
578
557
|
}
|
|
579
558
|
interface OrganizationGraphFeatureBridge {
|
|
580
|
-
|
|
559
|
+
featureId: string;
|
|
581
560
|
}
|
|
582
561
|
|
|
583
562
|
interface CommandQueuePageProps {
|
|
@@ -628,10 +607,10 @@ interface CommandViewSidebarContentProps {
|
|
|
628
607
|
* Shown in the shared Operations subshell sidebar when on /operations/command-view.
|
|
629
608
|
*
|
|
630
609
|
* Contains:
|
|
631
|
-
* - Execution health donut chart (filtered by
|
|
610
|
+
* - Execution health donut chart (filtered by resource facet + status)
|
|
632
611
|
* - Environment filter (All/Prod/Dev)
|
|
633
612
|
* - Show integrations toggle
|
|
634
|
-
* -
|
|
613
|
+
* - Resource facet filters (collapsible)
|
|
635
614
|
* - Selected node details + executions/tasks (lazy loaded)
|
|
636
615
|
*/
|
|
637
616
|
declare function CommandViewSidebarContent({ timeRange }: CommandViewSidebarContentProps): react_jsx_runtime.JSX.Element;
|