@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.
Files changed (66) hide show
  1. package/dist/api/index.js +2 -2
  2. package/dist/app/index.js +4 -4
  3. package/dist/charts/index.js +3 -3
  4. package/dist/{chunk-FMFX4K6E.js → chunk-7GG6OSD7.js} +34 -9
  5. package/dist/{chunk-GTYUP7MB.js → chunk-ATEHYDL3.js} +5 -21
  6. package/dist/{chunk-AL23U6C3.js → chunk-BIWHHWCJ.js} +1 -2
  7. package/dist/{chunk-JR5WNTLA.js → chunk-BJWIKEQG.js} +6 -11
  8. package/dist/{chunk-GP3AFJYG.js → chunk-CZK67OHH.js} +6 -11
  9. package/dist/{chunk-TO7QXDBX.js → chunk-DMYELNGA.js} +2 -2
  10. package/dist/{chunk-2CFOFSSG.js → chunk-EDX6WIN3.js} +6 -11
  11. package/dist/{chunk-PJVG3ISO.js → chunk-EGKNRM6P.js} +6 -8
  12. package/dist/{chunk-ZE2KQSHL.js → chunk-I5WRKH25.js} +4 -4
  13. package/dist/chunk-KVW56ERD.js +24 -0
  14. package/dist/{chunk-YP6T426C.js → chunk-LQU62KHD.js} +144 -432
  15. package/dist/{chunk-OUYH2SBS.js → chunk-LVUCBY7X.js} +2 -2
  16. package/dist/chunk-S7RL77QS.js +48 -0
  17. package/dist/{chunk-OD7GWIZS.js → chunk-SGXXJE52.js} +1 -121
  18. package/dist/{chunk-R7OJCNL3.js → chunk-T6INEVX6.js} +1 -1
  19. package/dist/{chunk-CTTY6FUT.js → chunk-TSSKOQBX.js} +2 -2
  20. package/dist/{chunk-Q4QJOSVS.js → chunk-ULZ2B3NC.js} +1 -1
  21. package/dist/chunk-VQESMHQV.js +336 -0
  22. package/dist/{chunk-MZFJWCPH.js → chunk-XLZZOFGM.js} +5 -19
  23. package/dist/{chunk-BHR7IV72.js → chunk-XUYBOO32.js} +1 -1
  24. package/dist/{chunk-M7W7CGPL.js → chunk-Z6FAH4XV.js} +1 -1
  25. package/dist/components/index.d.ts +46 -87
  26. package/dist/components/index.js +27 -26
  27. package/dist/components/navigation/index.d.ts +1 -13
  28. package/dist/components/navigation/index.js +11 -1
  29. package/dist/execution/index.d.ts +27 -0
  30. package/dist/features/crm/index.d.ts +12 -35
  31. package/dist/features/crm/index.js +11 -10
  32. package/dist/features/dashboard/index.d.ts +25 -27
  33. package/dist/features/dashboard/index.js +12 -11
  34. package/dist/features/delivery/index.d.ts +12 -35
  35. package/dist/features/delivery/index.js +11 -10
  36. package/dist/features/lead-gen/index.d.ts +14 -37
  37. package/dist/features/lead-gen/index.js +11 -10
  38. package/dist/features/monitoring/index.d.ts +12 -35
  39. package/dist/features/monitoring/index.js +13 -12
  40. package/dist/features/monitoring/requests/index.d.ts +13 -36
  41. package/dist/features/monitoring/requests/index.js +11 -10
  42. package/dist/features/operations/index.d.ts +44 -65
  43. package/dist/features/operations/index.js +14 -13
  44. package/dist/features/seo/index.d.ts +12 -35
  45. package/dist/features/seo/index.js +1 -1
  46. package/dist/features/settings/index.d.ts +12 -35
  47. package/dist/features/settings/index.js +11 -10
  48. package/dist/hooks/delivery/index.js +2 -2
  49. package/dist/hooks/index.d.ts +46 -66
  50. package/dist/hooks/index.js +10 -9
  51. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +92 -121
  52. package/dist/hooks/published.d.ts +46 -66
  53. package/dist/hooks/published.js +10 -9
  54. package/dist/index.d.ts +365 -452
  55. package/dist/index.js +10 -9
  56. package/dist/provider/index.d.ts +62 -125
  57. package/dist/provider/index.js +8 -7
  58. package/dist/provider/published.d.ts +62 -125
  59. package/dist/provider/published.js +6 -5
  60. package/dist/test-utils/index.js +2 -2
  61. package/dist/types/index.d.ts +108 -135
  62. package/dist/utils/index.d.ts +26 -59
  63. package/dist/utils/index.js +1 -1
  64. package/package.json +4 -4
  65. package/dist/chunk-LR5CRY5A.js +0 -514
  66. package/dist/chunk-MG3NF7QL.js +0 -63
@@ -4,8 +4,8 @@ import * as React$1 from 'react';
4
4
  import React__default, { ComponentType, ReactNode, CSSProperties, ReactElement } from 'react';
5
5
  import { Icon, IconCheck } from '@tabler/icons-react';
6
6
  import { Components } from 'react-markdown';
7
- import { UseFormReturnType } from '@mantine/form';
8
7
  import { z } from 'zod';
8
+ import { UseFormReturnType } from '@mantine/form';
9
9
  import { NodeProps, Node, EdgeProps, Edge } from '@xyflow/react';
10
10
  export { default as graphStyles } from '../graph/Graph.module.css';
11
11
  import * as _tanstack_react_query from '@tanstack/react-query';
@@ -731,6 +731,8 @@ interface SerializedAgentDefinition {
731
731
  version: string;
732
732
  type: 'agent';
733
733
  status: 'dev' | 'prod';
734
+ links?: ResourceLink[];
735
+ category?: ResourceCategory;
734
736
  /** Whether this resource is archived and should be excluded from registration and deployment */
735
737
  archived?: boolean;
736
738
  systemPrompt: string;
@@ -786,6 +788,8 @@ interface SerializedWorkflowDefinition {
786
788
  version: string;
787
789
  type: 'workflow';
788
790
  status: 'dev' | 'prod';
791
+ links?: ResourceLink[];
792
+ category?: ResourceCategory;
789
793
  /** Whether this resource is archived and should be excluded from registration and deployment */
790
794
  archived?: boolean;
791
795
  };
@@ -4193,8 +4197,10 @@ interface ResourceDefinition {
4193
4197
  type: ResourceType;
4194
4198
  /** Environment/deployment status */
4195
4199
  status: ResourceStatus;
4196
- /** Domain tags for filtering and organization */
4197
- domains?: ResourceDomain[];
4200
+ /** Graph links to Organization Model nodes */
4201
+ links?: ResourceLink[];
4202
+ /** Infrastructure category for filtering */
4203
+ category?: ResourceCategory;
4198
4204
  /** Whether the agent supports multi-turn sessions (agents only) */
4199
4205
  sessionCapable?: boolean;
4200
4206
  /** Whether the resource is local (monorepo) or remote (externally deployed) */
@@ -4203,32 +4209,27 @@ interface ResourceDefinition {
4203
4209
  archived?: boolean;
4204
4210
  }
4205
4211
 
4206
- /**
4207
- * Standard Domain Definitions
4208
- * Centralized domain constants and definitions for all organization resources.
4209
- */
4212
+ declare const LinkSchema: z.ZodObject<{
4213
+ nodeId: z.ZodString;
4214
+ kind: z.ZodEnum<{
4215
+ contains: "contains";
4216
+ references: "references";
4217
+ exposes: "exposes";
4218
+ maps_to: "maps_to";
4219
+ "operates-on": "operates-on";
4220
+ uses: "uses";
4221
+ }>;
4222
+ }, z.core.$strip>;
4223
+ type Link = z.infer<typeof LinkSchema>;
4210
4224
 
4211
- declare const DOMAINS: {
4212
- readonly INBOUND_PIPELINE: "inbound-pipeline";
4213
- readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
4214
- readonly SUPPORT: "support";
4215
- readonly CLIENT_SUPPORT: "client-support";
4216
- readonly DELIVERY: "delivery";
4217
- readonly OPERATIONS: "operations";
4218
- readonly FINANCE: "finance";
4219
- readonly EXECUTIVE: "executive";
4220
- readonly INSTANTLY: "instantly";
4221
- readonly TESTING: "testing";
4222
- readonly INTERNAL: "internal";
4223
- readonly INTEGRATION: "integration";
4224
- readonly UTILITY: "utility";
4225
- readonly DIAGNOSTIC: "diagnostic";
4226
- };
4227
- /**
4228
- * ResourceDomain - Strongly typed domain identifier
4229
- * Use this type for all domain references to ensure compile-time validation.
4230
- */
4231
- type ResourceDomain = (typeof DOMAINS)[keyof typeof DOMAINS];
4225
+ declare const ResourceCategorySchema: z.ZodEnum<{
4226
+ production: "production";
4227
+ diagnostic: "diagnostic";
4228
+ internal: "internal";
4229
+ testing: "testing";
4230
+ }>;
4231
+ type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
4232
+ type ResourceLink = Link;
4232
4233
 
4233
4234
  type ExecutionStatus = 'pending' | 'running' | 'completed' | 'failed' | 'warning';
4234
4235
  interface APIExecutionSummary {
@@ -5198,13 +5199,6 @@ interface RunResourceButtonProps {
5198
5199
  label?: string;
5199
5200
  icon?: ReactNode;
5200
5201
  color?: string;
5201
- organizationModel?: {
5202
- resourceMappings?: Array<{
5203
- resourceId: string;
5204
- label?: string;
5205
- color?: string;
5206
- }>;
5207
- };
5208
5202
  onSuccess?: (result: ExecuteAsyncResult) => void;
5209
5203
  onError?: (error: Error) => void;
5210
5204
  }
@@ -5214,9 +5208,9 @@ interface RunResourceButtonProps {
5214
5208
  * - If getInput() returns a plain object, executes immediately.
5215
5209
  * - If getInput() returns { schema, defaults? }, opens a modal with ZodFormRenderer.
5216
5210
  *
5217
- * Label and color resolve from: explicit props > resourceMappings entry > defaults.
5211
+ * Label and color resolve from explicit props, then defaults.
5218
5212
  */
5219
- declare function RunResourceButton({ resourceId, resourceType, getInput, label, icon, color, organizationModel, onSuccess, onError }: RunResourceButtonProps): react_jsx_runtime.JSX.Element;
5213
+ declare function RunResourceButton({ resourceId, resourceType, getInput, label, icon, color, onSuccess, onError }: RunResourceButtonProps): react_jsx_runtime.JSX.Element;
5220
5214
 
5221
5215
  /**
5222
5216
  * Graph Component Types
@@ -6109,23 +6103,11 @@ declare function MdxRenderer({ compiledSource }: MdxRendererProps): react_jsx_ru
6109
6103
  declare const mdxComponents: Record<string, React.ComponentType<Record<string, unknown>>>;
6110
6104
 
6111
6105
  interface UseBreadcrumbsOptions {
6112
- /** Navigation items to match against for proper labels */
6113
- navItems?: Array<{
6114
- label: string;
6115
- link?: string;
6116
- links?: Array<{
6117
- label: string;
6118
- link?: string;
6119
- links?: Array<{
6120
- label: string;
6121
- link: string;
6122
- }>;
6123
- }>;
6124
- }>;
6106
+ labelsByPath?: Record<string, string>;
6125
6107
  }
6126
6108
 
6127
6109
  type BreadcrumbsProps = UseBreadcrumbsOptions;
6128
- declare const Breadcrumbs: ({ navItems }: BreadcrumbsProps) => react_jsx_runtime.JSX.Element;
6110
+ declare const Breadcrumbs: (props: BreadcrumbsProps) => react_jsx_runtime.JSX.Element;
6129
6111
 
6130
6112
  interface KanbanBoardProps {
6131
6113
  /** Required column configuration. If omitted or empty, the board shows a configuration-required state. */
@@ -6309,50 +6291,27 @@ interface QuickCreateActionsProps {
6309
6291
  }
6310
6292
  declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
6311
6293
 
6312
- interface FeatureNavLink {
6313
- label: string;
6314
- link: string;
6315
- featureKey?: string;
6316
- onClick?: () => void;
6317
- links?: FeatureNavLink[];
6318
- }
6319
- interface FeatureNavEntry {
6320
- label: string;
6321
- icon: ComponentType;
6322
- link?: string;
6323
- featureKey?: string;
6324
- requiresAdmin?: boolean;
6325
- dataOnboardingTourId?: string;
6326
- links?: FeatureNavLink[];
6327
- }
6328
6294
  type FeatureSidebarComponent = ComponentType;
6295
+ type FeatureIconComponent = ComponentType<{
6296
+ size?: number;
6297
+ stroke?: number;
6298
+ }>;
6329
6299
  interface FeatureModule {
6330
- /** Unique stable identifier for this feature (e.g. `'crm'`, `'projects'`). */
6300
+ /** Unique stable identifier for this feature module. */
6331
6301
  key: string;
6332
- /** Feature ID used for access-flag gating — must match the `id` of a feature in the organization model. */
6302
+ /** Organization Model feature id this module presents. */
6333
6303
  featureId: string;
6334
- /**
6335
- * Capability identifiers contributed by this feature.
6336
- * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
6337
- * Not queried at runtime — kept for semantic graph completeness so that
6338
- * capability membership is fully represented in the resolved model even when
6339
- * a surface does not declare it directly.
6340
- */
6304
+ /** Capability identifiers contributed by this feature module. */
6341
6305
  capabilityIds?: string[];
6342
- /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
6343
- navEntry?: FeatureNavEntry;
6344
- /** Sidebar component rendered when a matching subshell route is active. */
6306
+ /** Icon used when this feature node appears in shell navigation. */
6307
+ icon?: FeatureIconComponent;
6308
+ /** Sidebar component rendered when this feature's subtree route is active. */
6345
6309
  sidebar?: FeatureSidebarComponent;
6346
- /** Route path prefixes that activate this feature's sidebar and subshell context. */
6347
- subshellRoutes?: string[];
6348
- /**
6349
- * Operations-only bridge surface connecting this feature to the organization graph.
6350
- * Ignored by all other features. Only one manifest in the registry should set this.
6351
- */
6310
+ /** Operations-only bridge connecting this feature to the organization graph node. */
6352
6311
  organizationGraph?: OrganizationGraphFeatureBridge;
6353
6312
  }
6354
6313
  interface OrganizationGraphFeatureBridge {
6355
- surfaceId: string;
6314
+ featureId: string;
6356
6315
  }
6357
6316
 
6358
6317
  declare const crmManifest: FeatureModule;
@@ -6394,7 +6353,7 @@ declare function LeadGenRouteShell({ title, caption, body, links }: {
6394
6353
  links?: LeadGenRouteLink[];
6395
6354
  }): react_jsx_runtime.JSX.Element;
6396
6355
  declare function getStatusColor(status: string | null): "green" | "red" | "gray";
6397
- declare function getEnrichmentColor(status: string): "green" | "red" | "gray" | "yellow";
6356
+ declare function getEnrichmentColor(status: string): "yellow" | "green" | "red" | "gray";
6398
6357
  declare const LIST_TEMPLATE_OPTIONS: readonly [{
6399
6358
  readonly value: "blank";
6400
6359
  readonly label: "Blank";
@@ -1,23 +1,23 @@
1
- import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
1
+ import { useBreadcrumbs } from '../chunk-S7RL77QS.js';
2
2
  import '../chunk-6GUW5GGF.js';
3
- export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-JR5WNTLA.js';
4
- export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-GP3AFJYG.js';
5
- export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-YP6T426C.js';
3
+ export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-BJWIKEQG.js';
4
+ export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-CZK67OHH.js';
5
+ export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-LQU62KHD.js';
6
6
  import '../chunk-ROSMICXG.js';
7
7
  import '../chunk-3JCMO7SD.js';
8
8
  import '../chunk-ZTWA5H77.js';
9
- import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-PJVG3ISO.js';
10
- export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-PJVG3ISO.js';
9
+ import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-EGKNRM6P.js';
10
+ export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, FormFieldRenderer, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, RunResourceButton, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, ZodFormRenderer, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-EGKNRM6P.js';
11
11
  import '../chunk-442LZPIR.js';
12
- import { NotificationList } from '../chunk-GTYUP7MB.js';
13
- export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-GTYUP7MB.js';
14
- export { ResourceHealthPanel } from '../chunk-ZE2KQSHL.js';
12
+ import { NotificationList } from '../chunk-ATEHYDL3.js';
13
+ export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-ATEHYDL3.js';
14
+ export { ResourceHealthPanel } from '../chunk-I5WRKH25.js';
15
15
  export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
16
- import '../chunk-CTTY6FUT.js';
17
- export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-AL23U6C3.js';
18
- export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-MZFJWCPH.js';
16
+ import '../chunk-TSSKOQBX.js';
17
+ export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-BIWHHWCJ.js';
18
+ export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-XLZZOFGM.js';
19
19
  import { AppShellLoader } from '../chunk-M25JL54Z.js';
20
- export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-2CFOFSSG.js';
20
+ export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-EDX6WIN3.js';
21
21
  import '../chunk-BZZCNLT6.js';
22
22
  export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
23
23
  import '../chunk-CEWTOKE7.js';
@@ -29,27 +29,28 @@ export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk
29
29
  import '../chunk-TIIPYB2Z.js';
30
30
  export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-E4WQGJNS.js';
31
31
  import '../chunk-7M2VOCYN.js';
32
- import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-FMFX4K6E.js';
32
+ import { useCommandViewLayout, useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, usePaginationState, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications } from '../chunk-7GG6OSD7.js';
33
33
  import '../chunk-BRXELOHC.js';
34
34
  import '../chunk-QSTH6T77.js';
35
- import { showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-M7W7CGPL.js';
36
- export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-M7W7CGPL.js';
35
+ import { showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-Z6FAH4XV.js';
36
+ export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-Z6FAH4XV.js';
37
37
  import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
38
38
  export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
39
39
  import '../chunk-3ZMAGTWF.js';
40
- import '../chunk-Q4QJOSVS.js';
41
- import '../chunk-TO7QXDBX.js';
40
+ import '../chunk-ULZ2B3NC.js';
41
+ import '../chunk-DMYELNGA.js';
42
42
  import '../chunk-Q5HC6ENG.js';
43
43
  import '../chunk-WLOQ4IBG.js';
44
- import '../chunk-LR5CRY5A.js';
45
- import '../chunk-OUYH2SBS.js';
44
+ import '../chunk-KVW56ERD.js';
45
+ import '../chunk-LVUCBY7X.js';
46
+ import '../chunk-VQESMHQV.js';
46
47
  import { SubshellContentContainer } from '../chunk-RX4UWZZR.js';
47
- import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-BHR7IV72.js';
48
- export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-BHR7IV72.js';
48
+ import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-XUYBOO32.js';
49
+ export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-XUYBOO32.js';
49
50
  export { ElevasisLoader } from '../chunk-SZHARWKU.js';
50
51
  export { StyledMarkdown } from '../chunk-3KMDHCAR.js';
51
52
  export { NavigationButton } from '../chunk-NYBEU5TE.js';
52
- import '../chunk-R7OJCNL3.js';
53
+ import '../chunk-T6INEVX6.js';
53
54
  import '../chunk-2IFYDILW.js';
54
55
  import { useRouterContext } from '../chunk-Q7DJKLEN.js';
55
56
  import '../chunk-7YQKVWSD.js';
@@ -58,7 +59,7 @@ import { useAppearance } from '../chunk-QJ2KCHKX.js';
58
59
  import '../chunk-HQ7M6PBW.js';
59
60
  import '../chunk-DT3QYZVU.js';
60
61
  import '../chunk-RNP5R5I3.js';
61
- import { getResourceIcon, getResourceColor, formatDateTime, PAGE_SIZE_DEFAULT, formatTimeAgo } from '../chunk-OD7GWIZS.js';
62
+ import { getResourceIcon, getResourceColor, formatDateTime, PAGE_SIZE_DEFAULT, formatTimeAgo } from '../chunk-SGXXJE52.js';
62
63
  import '../chunk-KRWALB24.js';
63
64
  import '../chunk-SLH2QLKV.js';
64
65
  import { useInitialization } from '../chunk-DK2HVHCY.js';
@@ -3034,9 +3035,9 @@ function MdxRenderer({ compiledSource }) {
3034
3035
  if (!Content) return null;
3035
3036
  return /* @__PURE__ */ jsx(Content, { components: mdxComponents });
3036
3037
  }
3037
- var Breadcrumbs = ({ navItems }) => {
3038
+ var Breadcrumbs = (props) => {
3038
3039
  const { Link: Link2 } = useRouterContext();
3039
- const breadcrumbs = useBreadcrumbs({ navItems });
3040
+ const breadcrumbs = useBreadcrumbs(props);
3040
3041
  const items = breadcrumbs.map((item) => {
3041
3042
  const isActive = item.isActive;
3042
3043
  if (isActive) {
@@ -4,19 +4,7 @@ interface BreadcrumbItem {
4
4
  isActive?: boolean;
5
5
  }
6
6
  interface UseBreadcrumbsOptions {
7
- /** Navigation items to match against for proper labels */
8
- navItems?: Array<{
9
- label: string;
10
- link?: string;
11
- links?: Array<{
12
- label: string;
13
- link?: string;
14
- links?: Array<{
15
- label: string;
16
- link: string;
17
- }>;
18
- }>;
19
- }>;
7
+ labelsByPath?: Record<string, string>;
20
8
  }
21
9
  declare const useBreadcrumbs: (options?: UseBreadcrumbsOptions) => BreadcrumbItem[];
22
10
 
@@ -1,3 +1,13 @@
1
- export { useBreadcrumbs } from '../../chunk-MG3NF7QL.js';
1
+ export { useBreadcrumbs } from '../../chunk-S7RL77QS.js';
2
+ import '../../chunk-VQESMHQV.js';
2
3
  import '../../chunk-Q7DJKLEN.js';
4
+ import '../../chunk-7YQKVWSD.js';
5
+ import '../../chunk-6IA2OMAE.js';
6
+ import '../../chunk-HQ7M6PBW.js';
7
+ import '../../chunk-RNP5R5I3.js';
8
+ import '../../chunk-DK2HVHCY.js';
9
+ import '../../chunk-DD3CCMCZ.js';
10
+ import '../../chunk-QHSW4WHM.js';
11
+ import '../../chunk-IRW7JMQ4.js';
12
+ import '../../chunk-BRJ3QZ4E.js';
3
13
  import '../../chunk-I2KLQ2HA.js';
@@ -1,3 +1,4 @@
1
+ import { z } from 'zod';
1
2
  import { Node, Edge } from '@xyflow/react';
2
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
4
 
@@ -294,6 +295,8 @@ interface SerializedAgentDefinition {
294
295
  version: string;
295
296
  type: 'agent';
296
297
  status: 'dev' | 'prod';
298
+ links?: ResourceLink[];
299
+ category?: ResourceCategory;
297
300
  /** Whether this resource is archived and should be excluded from registration and deployment */
298
301
  archived?: boolean;
299
302
  systemPrompt: string;
@@ -349,6 +352,8 @@ interface SerializedWorkflowDefinition {
349
352
  version: string;
350
353
  type: 'workflow';
351
354
  status: 'dev' | 'prod';
355
+ links?: ResourceLink[];
356
+ category?: ResourceCategory;
352
357
  /** Whether this resource is archived and should be excluded from registration and deployment */
353
358
  archived?: boolean;
354
359
  };
@@ -514,6 +519,28 @@ interface AgentIterationData {
514
519
  */
515
520
  type ResourceStatus = 'dev' | 'prod';
516
521
 
522
+ declare const LinkSchema: z.ZodObject<{
523
+ nodeId: z.ZodString;
524
+ kind: z.ZodEnum<{
525
+ contains: "contains";
526
+ references: "references";
527
+ exposes: "exposes";
528
+ maps_to: "maps_to";
529
+ "operates-on": "operates-on";
530
+ uses: "uses";
531
+ }>;
532
+ }, z.core.$strip>;
533
+ type Link = z.infer<typeof LinkSchema>;
534
+
535
+ declare const ResourceCategorySchema: z.ZodEnum<{
536
+ production: "production";
537
+ diagnostic: "diagnostic";
538
+ internal: "internal";
539
+ testing: "testing";
540
+ }>;
541
+ type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
542
+ type ResourceLink = Link;
543
+
517
544
  type ExecutionStatus = 'pending' | 'running' | 'completed' | 'failed' | 'warning';
518
545
  interface APIExecutionSummary {
519
546
  id: string;
@@ -2871,50 +2871,27 @@ interface QuickCreateActionsProps {
2871
2871
  }
2872
2872
  declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
2873
2873
 
2874
- interface FeatureNavLink {
2875
- label: string;
2876
- link: string;
2877
- featureKey?: string;
2878
- onClick?: () => void;
2879
- links?: FeatureNavLink[];
2880
- }
2881
- interface FeatureNavEntry {
2882
- label: string;
2883
- icon: ComponentType;
2884
- link?: string;
2885
- featureKey?: string;
2886
- requiresAdmin?: boolean;
2887
- dataOnboardingTourId?: string;
2888
- links?: FeatureNavLink[];
2889
- }
2890
2874
  type FeatureSidebarComponent = ComponentType;
2875
+ type FeatureIconComponent = ComponentType<{
2876
+ size?: number;
2877
+ stroke?: number;
2878
+ }>;
2891
2879
  interface FeatureModule {
2892
- /** Unique stable identifier for this feature (e.g. `'crm'`, `'projects'`). */
2880
+ /** Unique stable identifier for this feature module. */
2893
2881
  key: string;
2894
- /** Feature ID used for access-flag gating — must match the `id` of a feature in the organization model. */
2882
+ /** Organization Model feature id this module presents. */
2895
2883
  featureId: string;
2896
- /**
2897
- * Capability identifiers contributed by this feature.
2898
- * Merged into `ResolvedFeatureSemantics.capabilityIds` at resolution time.
2899
- * Not queried at runtime — kept for semantic graph completeness so that
2900
- * capability membership is fully represented in the resolved model even when
2901
- * a surface does not declare it directly.
2902
- */
2884
+ /** Capability identifiers contributed by this feature module. */
2903
2885
  capabilityIds?: string[];
2904
- /** Top-level navigation entry rendered in the app shell when this feature is enabled. */
2905
- navEntry?: FeatureNavEntry;
2906
- /** Sidebar component rendered when a matching subshell route is active. */
2886
+ /** Icon used when this feature node appears in shell navigation. */
2887
+ icon?: FeatureIconComponent;
2888
+ /** Sidebar component rendered when this feature's subtree route is active. */
2907
2889
  sidebar?: FeatureSidebarComponent;
2908
- /** Route path prefixes that activate this feature's sidebar and subshell context. */
2909
- subshellRoutes?: string[];
2910
- /**
2911
- * Operations-only bridge surface connecting this feature to the organization graph.
2912
- * Ignored by all other features. Only one manifest in the registry should set this.
2913
- */
2890
+ /** Operations-only bridge connecting this feature to the organization graph node. */
2914
2891
  organizationGraph?: OrganizationGraphFeatureBridge;
2915
2892
  }
2916
2893
  interface OrganizationGraphFeatureBridge {
2917
- surfaceId: string;
2894
+ featureId: string;
2918
2895
  }
2919
2896
 
2920
2897
  declare const crmManifest: FeatureModule;
@@ -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-2CFOFSSG.js';
1
+ export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-EDX6WIN3.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
- import '../../chunk-FMFX4K6E.js';
9
+ import '../../chunk-7GG6OSD7.js';
10
10
  import '../../chunk-BRXELOHC.js';
11
11
  import '../../chunk-QSTH6T77.js';
12
- import '../../chunk-M7W7CGPL.js';
12
+ import '../../chunk-Z6FAH4XV.js';
13
13
  import '../../chunk-22UVE3RA.js';
14
14
  import '../../chunk-3ZMAGTWF.js';
15
- import '../../chunk-Q4QJOSVS.js';
16
- import '../../chunk-TO7QXDBX.js';
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-LR5CRY5A.js';
20
- import '../../chunk-OUYH2SBS.js';
19
+ import '../../chunk-KVW56ERD.js';
20
+ import '../../chunk-LVUCBY7X.js';
21
+ import '../../chunk-VQESMHQV.js';
21
22
  import '../../chunk-RX4UWZZR.js';
22
- import '../../chunk-BHR7IV72.js';
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-R7OJCNL3.js';
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-OD7GWIZS.js';
36
+ import '../../chunk-SGXXJE52.js';
36
37
  import '../../chunk-KRWALB24.js';
37
38
  import '../../chunk-SLH2QLKV.js';
38
39
  import '../../chunk-DK2HVHCY.js';
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { ReactNode } from 'react';
3
+ import { z } from 'zod';
3
4
 
4
5
  /**
5
6
  * Time range selector for dashboard metrics
@@ -113,8 +114,10 @@ interface ResourceDefinition {
113
114
  type: ResourceType;
114
115
  /** Environment/deployment status */
115
116
  status: ResourceStatus;
116
- /** Domain tags for filtering and organization */
117
- domains?: ResourceDomain[];
117
+ /** Graph links to Organization Model nodes */
118
+ links?: ResourceLink[];
119
+ /** Infrastructure category for filtering */
120
+ category?: ResourceCategory;
118
121
  /** Whether the agent supports multi-turn sessions (agents only) */
119
122
  sessionCapable?: boolean;
120
123
  /** Whether the resource is local (monorepo) or remote (externally deployed) */
@@ -123,32 +126,27 @@ interface ResourceDefinition {
123
126
  archived?: boolean;
124
127
  }
125
128
 
126
- /**
127
- * Standard Domain Definitions
128
- * Centralized domain constants and definitions for all organization resources.
129
- */
129
+ declare const LinkSchema: z.ZodObject<{
130
+ nodeId: z.ZodString;
131
+ kind: z.ZodEnum<{
132
+ contains: "contains";
133
+ references: "references";
134
+ exposes: "exposes";
135
+ maps_to: "maps_to";
136
+ "operates-on": "operates-on";
137
+ uses: "uses";
138
+ }>;
139
+ }, z.core.$strip>;
140
+ type Link = z.infer<typeof LinkSchema>;
130
141
 
131
- declare const DOMAINS: {
132
- readonly INBOUND_PIPELINE: "inbound-pipeline";
133
- readonly LEAD_GEN_PIPELINE: "lead-gen-pipeline";
134
- readonly SUPPORT: "support";
135
- readonly CLIENT_SUPPORT: "client-support";
136
- readonly DELIVERY: "delivery";
137
- readonly OPERATIONS: "operations";
138
- readonly FINANCE: "finance";
139
- readonly EXECUTIVE: "executive";
140
- readonly INSTANTLY: "instantly";
141
- readonly TESTING: "testing";
142
- readonly INTERNAL: "internal";
143
- readonly INTEGRATION: "integration";
144
- readonly UTILITY: "utility";
145
- readonly DIAGNOSTIC: "diagnostic";
146
- };
147
- /**
148
- * ResourceDomain - Strongly typed domain identifier
149
- * Use this type for all domain references to ensure compile-time validation.
150
- */
151
- type ResourceDomain = (typeof DOMAINS)[keyof typeof DOMAINS];
142
+ declare const ResourceCategorySchema: z.ZodEnum<{
143
+ production: "production";
144
+ diagnostic: "diagnostic";
145
+ internal: "internal";
146
+ testing: "testing";
147
+ }>;
148
+ type ResourceCategory = z.infer<typeof ResourceCategorySchema>;
149
+ type ResourceLink = Link;
152
150
 
153
151
  interface OperationsOverviewProps {
154
152
  /**
@@ -1,27 +1,28 @@
1
- export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-PJVG3ISO.js';
1
+ export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-EGKNRM6P.js';
2
2
  import '../../chunk-LGKLC5MG.js';
3
- import '../../chunk-CTTY6FUT.js';
3
+ import '../../chunk-TSSKOQBX.js';
4
4
  import '../../chunk-M25JL54Z.js';
5
5
  import '../../chunk-E4WQGJNS.js';
6
6
  import '../../chunk-7M2VOCYN.js';
7
- import '../../chunk-FMFX4K6E.js';
7
+ import '../../chunk-7GG6OSD7.js';
8
8
  import '../../chunk-BRXELOHC.js';
9
9
  import '../../chunk-QSTH6T77.js';
10
- import '../../chunk-M7W7CGPL.js';
10
+ import '../../chunk-Z6FAH4XV.js';
11
11
  import '../../chunk-22UVE3RA.js';
12
12
  import '../../chunk-3ZMAGTWF.js';
13
- import '../../chunk-Q4QJOSVS.js';
14
- import '../../chunk-TO7QXDBX.js';
13
+ import '../../chunk-ULZ2B3NC.js';
14
+ import '../../chunk-DMYELNGA.js';
15
15
  import '../../chunk-Q5HC6ENG.js';
16
16
  import '../../chunk-WLOQ4IBG.js';
17
- import '../../chunk-LR5CRY5A.js';
18
- import '../../chunk-OUYH2SBS.js';
17
+ import '../../chunk-KVW56ERD.js';
18
+ import '../../chunk-LVUCBY7X.js';
19
+ import '../../chunk-VQESMHQV.js';
19
20
  import '../../chunk-RX4UWZZR.js';
20
- import '../../chunk-BHR7IV72.js';
21
+ import '../../chunk-XUYBOO32.js';
21
22
  import '../../chunk-SZHARWKU.js';
22
23
  import '../../chunk-3KMDHCAR.js';
23
24
  import '../../chunk-NYBEU5TE.js';
24
- import '../../chunk-R7OJCNL3.js';
25
+ import '../../chunk-T6INEVX6.js';
25
26
  import '../../chunk-2IFYDILW.js';
26
27
  import '../../chunk-Q7DJKLEN.js';
27
28
  import '../../chunk-7YQKVWSD.js';
@@ -30,7 +31,7 @@ import '../../chunk-QJ2KCHKX.js';
30
31
  import '../../chunk-HQ7M6PBW.js';
31
32
  import '../../chunk-DT3QYZVU.js';
32
33
  import '../../chunk-RNP5R5I3.js';
33
- import '../../chunk-OD7GWIZS.js';
34
+ import '../../chunk-SGXXJE52.js';
34
35
  import '../../chunk-KRWALB24.js';
35
36
  import '../../chunk-SLH2QLKV.js';
36
37
  import '../../chunk-DK2HVHCY.js';