@elevasis/ui 2.7.0 → 2.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{chunk-T6R3V4GW.js → chunk-4JPW5U5I.js} +8 -9
  2. package/dist/{chunk-V6Z2U6ZV.js → chunk-4PHPENKX.js} +3044 -1753
  3. package/dist/chunk-7M2VOCYN.js +1 -0
  4. package/dist/{chunk-VGBMSGYC.js → chunk-7PDDPNQS.js} +1 -1
  5. package/dist/{chunk-X4HUZINF.js → chunk-AQQYVAFK.js} +23 -15
  6. package/dist/{chunk-YIWLA2B6.js → chunk-C2OFFC7J.js} +0 -1
  7. package/dist/{chunk-Z5RHDI7T.js → chunk-CTWYIRKW.js} +1 -2
  8. package/dist/{chunk-IFH4L6CR.js → chunk-F5QSLYUB.js} +4 -6
  9. package/dist/{chunk-6FDGVZFL.js → chunk-KGEYEUR5.js} +1 -3
  10. package/dist/{chunk-SMJLS23U.js → chunk-NYMKWGKN.js} +18 -1
  11. package/dist/{chunk-SPMKW4VO.js → chunk-OPT74SGF.js} +96 -82
  12. package/dist/{chunk-HRIJZKFL.js → chunk-UE5QQDCR.js} +7 -8
  13. package/dist/{chunk-N6GYYWY3.js → chunk-YCHZ4U5V.js} +10 -2
  14. package/dist/{chunk-SBND6P3L.js → chunk-ZZ35VSNF.js} +1 -3
  15. package/dist/components/index.d.ts +147 -70
  16. package/dist/components/index.js +17 -17
  17. package/dist/features/auth/index.d.ts +3 -3
  18. package/dist/features/crm/index.d.ts +66 -6
  19. package/dist/features/crm/index.js +5 -5
  20. package/dist/features/dashboard/index.js +5 -5
  21. package/dist/features/delivery/index.d.ts +69 -5
  22. package/dist/features/delivery/index.js +5 -5
  23. package/dist/features/lead-gen/index.d.ts +66 -6
  24. package/dist/features/lead-gen/index.js +8 -8
  25. package/dist/features/monitoring/index.d.ts +20 -1
  26. package/dist/features/monitoring/index.js +6 -6
  27. package/dist/features/operations/index.d.ts +20 -1
  28. package/dist/features/operations/index.js +7 -7
  29. package/dist/features/seo/index.d.ts +20 -1
  30. package/dist/features/seo/index.js +1 -1
  31. package/dist/features/settings/index.d.ts +20 -1
  32. package/dist/features/settings/index.js +5 -5
  33. package/dist/hooks/index.d.ts +7735 -7720
  34. package/dist/hooks/index.js +4 -4
  35. package/dist/hooks/published.d.ts +3493 -47
  36. package/dist/hooks/published.js +3 -3
  37. package/dist/index.d.ts +1416 -1375
  38. package/dist/index.js +4 -4
  39. package/dist/layout/index.d.ts +60 -2
  40. package/dist/layout/index.js +1 -1
  41. package/dist/provider/index.d.ts +30 -4
  42. package/dist/provider/index.js +2 -2
  43. package/dist/provider/published.d.ts +20 -2
  44. package/dist/provider/published.js +1 -1
  45. package/package.json +1 -1
  46. package/dist/chunk-TENLM2GN.js +0 -1303
@@ -1,13 +1,54 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ReactNode, ComponentType } from 'react';
2
3
  import { z } from 'zod';
3
- import { ComponentType, ReactNode } from 'react';
4
4
  import * as _tanstack_react_query from '@tanstack/react-query';
5
5
 
6
- declare const LeadGenSidebar: () => react_jsx_runtime.JSX.Element;
6
+ interface LeadGenSidebarProps {
7
+ /** Replace the default `LeadGenSidebarMiddle` with custom middle content. Leave unset for the default layout. */
8
+ children?: ReactNode;
9
+ }
10
+ declare const LeadGenSidebar: ({ children }?: LeadGenSidebarProps) => react_jsx_runtime.JSX.Element;
7
11
 
8
12
  declare const LeadGenSidebarTop: () => react_jsx_runtime.JSX.Element;
9
13
 
10
- declare const LeadGenSidebarMiddle: () => react_jsx_runtime.JSX.Element;
14
+ /**
15
+ * Shared nav-item shape used by feature sidebar middle components.
16
+ *
17
+ * Matches the subset of {@link SubshellNavItemProps} that the existing
18
+ * hardcoded item arrays use. Consumers import this type alongside the
19
+ * exported item arrays (e.g. `CRM_ITEMS`) to type their custom arrays.
20
+ *
21
+ * @example
22
+ * import { NavItem, CRM_ITEMS } from '@elevasis/ui/features/crm'
23
+ *
24
+ * const customItems: NavItem[] = [
25
+ * ...CRM_ITEMS,
26
+ * { label: 'Reports', to: '/crm/reports', icon: IconFileText, exact: false },
27
+ * ]
28
+ */
29
+ interface NavItem {
30
+ /** Display label for the nav entry. */
31
+ label: string;
32
+ /** Route path the item links to. */
33
+ to: string;
34
+ /** Tabler icon component (or any component accepting `size` + `style`). */
35
+ icon: ComponentType<{
36
+ size?: number;
37
+ style?: React.CSSProperties;
38
+ }>;
39
+ /**
40
+ * When `true`, the item is only active when the path matches exactly.
41
+ * When `false`, it is active for any path that starts with `to`.
42
+ */
43
+ exact: boolean;
44
+ }
45
+
46
+ declare const LEAD_GEN_ITEMS: NavItem[];
47
+ interface LeadGenSidebarMiddleProps {
48
+ /** Override the default nav items. Defaults to {@link LEAD_GEN_ITEMS}. */
49
+ items?: NavItem[];
50
+ }
51
+ declare const LeadGenSidebarMiddle: ({ items }?: LeadGenSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
11
52
 
12
53
  /**
13
54
  * Full ListConfig shape. `qualification` is required; everything else optional.
@@ -182,14 +223,33 @@ interface FeatureNavEntry {
182
223
  }
183
224
  type FeatureSidebarComponent = ComponentType;
184
225
  interface FeatureModule {
226
+ /** Unique stable identifier for this feature (e.g. `'crm'`, `'delivery'`). */
185
227
  key: string;
186
- label?: string;
228
+ /** Feature key used for access-flag gating in the organization model. */
187
229
  accessFeatureKey: OrganizationModelFeatureKey;
230
+ /**
231
+ * Semantic domain identifiers contributed by this feature.
232
+ * Merged with surface-derived domain IDs during resolution.
233
+ */
188
234
  domainIds?: OrganizationModelSemanticDomain['id'][];
235
+ /**
236
+ * Capability identifiers contributed by this feature.
237
+ * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
238
+ * Not queried at runtime — kept for semantic graph completeness so that
239
+ * capability membership is fully represented in the resolved model even when
240
+ * a surface does not declare it directly.
241
+ */
189
242
  capabilityIds?: string[];
243
+ /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
190
244
  navEntry?: FeatureNavEntry;
245
+ /** Sidebar component rendered when a matching subshell route is active. */
191
246
  sidebar?: FeatureSidebarComponent;
247
+ /** Route path prefixes that activate this feature's sidebar and subshell context. */
192
248
  subshellRoutes?: string[];
249
+ /**
250
+ * Operations-only bridge surface connecting this feature to the organization graph.
251
+ * Ignored by all other features. Only one manifest in the registry should set this.
252
+ */
193
253
  organizationGraph?: OrganizationGraphFeatureBridge;
194
254
  }
195
255
  interface OrganizationGraphFeatureBridge {
@@ -471,5 +531,5 @@ declare function LeadGenCompaniesPage(): react_jsx_runtime.JSX.Element;
471
531
 
472
532
  declare function LeadGenContactsPage(): react_jsx_runtime.JSX.Element;
473
533
 
474
- export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, buildListConfig, companyKeys, contactKeys, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useUpdateCompany, useUpdateContact };
475
- export type { AcqCompanyWithCount, AcqContactWithCompany, LeadGenCompanyListItem, LeadGenContactListItem, LeadGenListTemplateValue, LeadGenRouteLink };
534
+ export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, buildListConfig, companyKeys, contactKeys, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useUpdateCompany, useUpdateContact };
535
+ export type { AcqCompanyWithCount, AcqContactWithCompany, LeadGenCompanyListItem, LeadGenContactListItem, LeadGenListTemplateValue, LeadGenRouteLink, LeadGenSidebarMiddleProps };
@@ -1,26 +1,26 @@
1
- export { CompanyDetailModal, ContactDetailModal, 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-T6R3V4GW.js';
2
- import '../../chunk-IFH4L6CR.js';
1
+ export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-4JPW5U5I.js';
2
+ import '../../chunk-F5QSLYUB.js';
3
3
  import '../../chunk-ROSMICXG.js';
4
4
  import '../../chunk-IDACMRGQ.js';
5
- import '../../chunk-VGBMSGYC.js';
5
+ import '../../chunk-7PDDPNQS.js';
6
6
  import '../../chunk-TUMSNGTX.js';
7
7
  import '../../chunk-BZZCNLT6.js';
8
8
  import '../../chunk-27COZ5AH.js';
9
9
  import '../../chunk-PDHTXPSF.js';
10
10
  import '../../chunk-GBMNCNHX.js';
11
- import '../../chunk-Z5RHDI7T.js';
11
+ import '../../chunk-CTWYIRKW.js';
12
12
  import '../../chunk-LGKLC5MG.js';
13
13
  import '../../chunk-KFICYU6S.js';
14
14
  import '../../chunk-YEX4MQSY.js';
15
15
  import '../../chunk-XA34RETF.js';
16
- import '../../chunk-TENLM2GN.js';
17
- export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-V6Z2U6ZV.js';
16
+ import '../../chunk-7M2VOCYN.js';
17
+ export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-4PHPENKX.js';
18
18
  import '../../chunk-LXHZYSMQ.js';
19
19
  import '../../chunk-22UVE3RA.js';
20
- import '../../chunk-N6GYYWY3.js';
20
+ import '../../chunk-YCHZ4U5V.js';
21
21
  import '../../chunk-47YILFON.js';
22
22
  import '../../chunk-CYXZHBP4.js';
23
- import '../../chunk-SPMKW4VO.js';
23
+ import '../../chunk-OPT74SGF.js';
24
24
  import '../../chunk-RX4UWZZR.js';
25
25
  import '../../chunk-Y3D3WFJG.js';
26
26
  import '../../chunk-3KMDHCAR.js';
@@ -158,14 +158,33 @@ interface FeatureNavEntry {
158
158
  }
159
159
  type FeatureSidebarComponent = ComponentType;
160
160
  interface FeatureModule {
161
+ /** Unique stable identifier for this feature (e.g. `'crm'`, `'delivery'`). */
161
162
  key: string;
162
- label?: string;
163
+ /** Feature key used for access-flag gating in the organization model. */
163
164
  accessFeatureKey: OrganizationModelFeatureKey;
165
+ /**
166
+ * Semantic domain identifiers contributed by this feature.
167
+ * Merged with surface-derived domain IDs during resolution.
168
+ */
164
169
  domainIds?: OrganizationModelSemanticDomain['id'][];
170
+ /**
171
+ * Capability identifiers contributed by this feature.
172
+ * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
173
+ * Not queried at runtime — kept for semantic graph completeness so that
174
+ * capability membership is fully represented in the resolved model even when
175
+ * a surface does not declare it directly.
176
+ */
165
177
  capabilityIds?: string[];
178
+ /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
166
179
  navEntry?: FeatureNavEntry;
180
+ /** Sidebar component rendered when a matching subshell route is active. */
167
181
  sidebar?: FeatureSidebarComponent;
182
+ /** Route path prefixes that activate this feature's sidebar and subshell context. */
168
183
  subshellRoutes?: string[];
184
+ /**
185
+ * Operations-only bridge surface connecting this feature to the organization graph.
186
+ * Ignored by all other features. Only one manifest in the registry should set this.
187
+ */
169
188
  organizationGraph?: OrganizationGraphFeatureBridge;
170
189
  }
171
190
  interface OrganizationGraphFeatureBridge {
@@ -1,19 +1,19 @@
1
- export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-SBND6P3L.js';
2
- import '../../chunk-VGBMSGYC.js';
1
+ export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-ZZ35VSNF.js';
2
+ import '../../chunk-7PDDPNQS.js';
3
3
  import '../../chunk-PDHTXPSF.js';
4
4
  import '../../chunk-GBMNCNHX.js';
5
5
  import '../../chunk-LGKLC5MG.js';
6
6
  import '../../chunk-KFICYU6S.js';
7
7
  import '../../chunk-YEX4MQSY.js';
8
8
  import '../../chunk-XA34RETF.js';
9
- import '../../chunk-TENLM2GN.js';
10
- import '../../chunk-V6Z2U6ZV.js';
9
+ import '../../chunk-7M2VOCYN.js';
10
+ import '../../chunk-4PHPENKX.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-22UVE3RA.js';
13
- import '../../chunk-N6GYYWY3.js';
13
+ import '../../chunk-YCHZ4U5V.js';
14
14
  import '../../chunk-47YILFON.js';
15
15
  import '../../chunk-CYXZHBP4.js';
16
- import '../../chunk-SPMKW4VO.js';
16
+ import '../../chunk-OPT74SGF.js';
17
17
  import '../../chunk-RX4UWZZR.js';
18
18
  import '../../chunk-Y3D3WFJG.js';
19
19
  import '../../chunk-3KMDHCAR.js';
@@ -1765,14 +1765,33 @@ interface FeatureNavEntry {
1765
1765
  }
1766
1766
  type FeatureSidebarComponent = ComponentType;
1767
1767
  interface FeatureModule {
1768
+ /** Unique stable identifier for this feature (e.g. `'crm'`, `'delivery'`). */
1768
1769
  key: string;
1769
- label?: string;
1770
+ /** Feature key used for access-flag gating in the organization model. */
1770
1771
  accessFeatureKey: OrganizationModelFeatureKey;
1772
+ /**
1773
+ * Semantic domain identifiers contributed by this feature.
1774
+ * Merged with surface-derived domain IDs during resolution.
1775
+ */
1771
1776
  domainIds?: OrganizationModelSemanticDomain['id'][];
1777
+ /**
1778
+ * Capability identifiers contributed by this feature.
1779
+ * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
1780
+ * Not queried at runtime — kept for semantic graph completeness so that
1781
+ * capability membership is fully represented in the resolved model even when
1782
+ * a surface does not declare it directly.
1783
+ */
1772
1784
  capabilityIds?: string[];
1785
+ /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
1773
1786
  navEntry?: FeatureNavEntry;
1787
+ /** Sidebar component rendered when a matching subshell route is active. */
1774
1788
  sidebar?: FeatureSidebarComponent;
1789
+ /** Route path prefixes that activate this feature's sidebar and subshell context. */
1775
1790
  subshellRoutes?: string[];
1791
+ /**
1792
+ * Operations-only bridge surface connecting this feature to the organization graph.
1793
+ * Ignored by all other features. Only one manifest in the registry should set this.
1794
+ */
1776
1795
  organizationGraph?: OrganizationGraphFeatureBridge;
1777
1796
  }
1778
1797
  interface OrganizationGraphFeatureBridge {
@@ -1,23 +1,23 @@
1
- export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, 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-IFH4L6CR.js';
1
+ export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, 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-F5QSLYUB.js';
2
2
  import '../../chunk-ROSMICXG.js';
3
3
  import '../../chunk-IDACMRGQ.js';
4
- import '../../chunk-VGBMSGYC.js';
4
+ import '../../chunk-7PDDPNQS.js';
5
5
  import '../../chunk-BZZCNLT6.js';
6
6
  import '../../chunk-27COZ5AH.js';
7
7
  import '../../chunk-GBMNCNHX.js';
8
- export { OperationsOverview } from '../../chunk-Z5RHDI7T.js';
8
+ export { OperationsOverview } from '../../chunk-CTWYIRKW.js';
9
9
  import '../../chunk-LGKLC5MG.js';
10
10
  import '../../chunk-KFICYU6S.js';
11
11
  import '../../chunk-YEX4MQSY.js';
12
12
  import '../../chunk-XA34RETF.js';
13
- import '../../chunk-TENLM2GN.js';
14
- import '../../chunk-V6Z2U6ZV.js';
13
+ import '../../chunk-7M2VOCYN.js';
14
+ import '../../chunk-4PHPENKX.js';
15
15
  import '../../chunk-LXHZYSMQ.js';
16
16
  import '../../chunk-22UVE3RA.js';
17
- import '../../chunk-N6GYYWY3.js';
17
+ import '../../chunk-YCHZ4U5V.js';
18
18
  import '../../chunk-47YILFON.js';
19
19
  import '../../chunk-CYXZHBP4.js';
20
- import '../../chunk-SPMKW4VO.js';
20
+ import '../../chunk-OPT74SGF.js';
21
21
  import '../../chunk-RX4UWZZR.js';
22
22
  import '../../chunk-Y3D3WFJG.js';
23
23
  import '../../chunk-3KMDHCAR.js';
@@ -47,14 +47,33 @@ interface FeatureNavEntry {
47
47
  }
48
48
  type FeatureSidebarComponent = ComponentType;
49
49
  interface FeatureModule {
50
+ /** Unique stable identifier for this feature (e.g. `'crm'`, `'delivery'`). */
50
51
  key: string;
51
- label?: string;
52
+ /** Feature key used for access-flag gating in the organization model. */
52
53
  accessFeatureKey: OrganizationModelFeatureKey;
54
+ /**
55
+ * Semantic domain identifiers contributed by this feature.
56
+ * Merged with surface-derived domain IDs during resolution.
57
+ */
53
58
  domainIds?: OrganizationModelSemanticDomain['id'][];
59
+ /**
60
+ * Capability identifiers contributed by this feature.
61
+ * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
62
+ * Not queried at runtime — kept for semantic graph completeness so that
63
+ * capability membership is fully represented in the resolved model even when
64
+ * a surface does not declare it directly.
65
+ */
54
66
  capabilityIds?: string[];
67
+ /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
55
68
  navEntry?: FeatureNavEntry;
69
+ /** Sidebar component rendered when a matching subshell route is active. */
56
70
  sidebar?: FeatureSidebarComponent;
71
+ /** Route path prefixes that activate this feature's sidebar and subshell context. */
57
72
  subshellRoutes?: string[];
73
+ /**
74
+ * Operations-only bridge surface connecting this feature to the organization graph.
75
+ * Ignored by all other features. Only one manifest in the registry should set this.
76
+ */
58
77
  organizationGraph?: OrganizationGraphFeatureBridge;
59
78
  }
60
79
  interface OrganizationGraphFeatureBridge {
@@ -1,4 +1,4 @@
1
- export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../../chunk-YIWLA2B6.js';
1
+ export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../../chunk-C2OFFC7J.js';
2
2
  import '../../chunk-27COZ5AH.js';
3
3
  import '../../chunk-2IFYDILW.js';
4
4
  import '../../chunk-DT3QYZVU.js';
@@ -2850,14 +2850,33 @@ interface FeatureNavEntry {
2850
2850
  }
2851
2851
  type FeatureSidebarComponent = ComponentType;
2852
2852
  interface FeatureModule {
2853
+ /** Unique stable identifier for this feature (e.g. `'crm'`, `'delivery'`). */
2853
2854
  key: string;
2854
- label?: string;
2855
+ /** Feature key used for access-flag gating in the organization model. */
2855
2856
  accessFeatureKey: OrganizationModelFeatureKey;
2857
+ /**
2858
+ * Semantic domain identifiers contributed by this feature.
2859
+ * Merged with surface-derived domain IDs during resolution.
2860
+ */
2856
2861
  domainIds?: OrganizationModelSemanticDomain['id'][];
2862
+ /**
2863
+ * Capability identifiers contributed by this feature.
2864
+ * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
2865
+ * Not queried at runtime — kept for semantic graph completeness so that
2866
+ * capability membership is fully represented in the resolved model even when
2867
+ * a surface does not declare it directly.
2868
+ */
2857
2869
  capabilityIds?: string[];
2870
+ /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
2858
2871
  navEntry?: FeatureNavEntry;
2872
+ /** Sidebar component rendered when a matching subshell route is active. */
2859
2873
  sidebar?: FeatureSidebarComponent;
2874
+ /** Route path prefixes that activate this feature's sidebar and subshell context. */
2860
2875
  subshellRoutes?: string[];
2876
+ /**
2877
+ * Operations-only bridge surface connecting this feature to the organization graph.
2878
+ * Ignored by all other features. Only one manifest in the registry should set this.
2879
+ */
2861
2880
  organizationGraph?: OrganizationGraphFeatureBridge;
2862
2881
  }
2863
2882
  interface OrganizationGraphFeatureBridge {
@@ -1,16 +1,16 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-6FDGVZFL.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-KGEYEUR5.js';
2
2
  import '../../chunk-PDHTXPSF.js';
3
3
  import '../../chunk-GBMNCNHX.js';
4
4
  import '../../chunk-YEX4MQSY.js';
5
5
  import '../../chunk-VNUOQQNY.js';
6
- import '../../chunk-TENLM2GN.js';
7
- import '../../chunk-V6Z2U6ZV.js';
6
+ import '../../chunk-7M2VOCYN.js';
7
+ import '../../chunk-4PHPENKX.js';
8
8
  import '../../chunk-LXHZYSMQ.js';
9
9
  import '../../chunk-22UVE3RA.js';
10
- import '../../chunk-N6GYYWY3.js';
10
+ import '../../chunk-YCHZ4U5V.js';
11
11
  import '../../chunk-47YILFON.js';
12
12
  import '../../chunk-CYXZHBP4.js';
13
- import '../../chunk-SPMKW4VO.js';
13
+ import '../../chunk-OPT74SGF.js';
14
14
  import '../../chunk-RX4UWZZR.js';
15
15
  import '../../chunk-Y3D3WFJG.js';
16
16
  import '../../chunk-3KMDHCAR.js';