@elevasis/ui 2.40.1 → 2.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/index.d.ts +108 -0
- package/dist/app/index.js +6 -7
- package/dist/auth/index.js +3 -4
- package/dist/charts/index.js +3 -4
- package/dist/{chunk-7MTWRSUZ.js → chunk-56O7QQE7.js} +1 -2
- package/dist/{chunk-SJNIOGVX.js → chunk-A2XN6PR2.js} +2 -3
- package/dist/{chunk-K7GKKETO.js → chunk-FIMGOWOT.js} +1073 -586
- package/dist/{chunk-RX6RSKWC.js → chunk-JAN2ZXN5.js} +105 -23
- package/dist/{chunk-LJDYY3XB.js → chunk-JHVEA5NE.js} +1 -1
- package/dist/{chunk-X7D6SUKR.js → chunk-QVQMOQXB.js} +8 -2
- package/dist/{chunk-IUQAP4IO.js → chunk-S4R2ZQS7.js} +1 -1
- package/dist/{chunk-7PHY5ONQ.js → chunk-VAAU2Z3S.js} +1 -1
- package/dist/{chunk-6EV47QQW.js → chunk-YPWN2WQ3.js} +1 -1
- package/dist/components/index.js +8 -9
- package/dist/components/navigation/index.js +2 -3
- package/dist/features/auth/index.js +9 -10
- package/dist/features/clients/index.js +8 -9
- package/dist/features/crm/index.js +8 -9
- package/dist/features/dashboard/index.js +8 -9
- package/dist/features/delivery/index.js +8 -9
- package/dist/features/knowledge/index.js +2 -3
- package/dist/features/lead-gen/index.d.ts +81 -0
- package/dist/features/lead-gen/index.js +8 -9
- package/dist/features/monitoring/index.js +8 -9
- package/dist/features/monitoring/requests/index.d.ts +69 -7
- package/dist/features/monitoring/requests/index.js +136 -15
- package/dist/features/operations/index.d.ts +79 -0
- package/dist/features/operations/index.js +8 -9
- package/dist/features/settings/index.js +8 -9
- package/dist/hooks/access/index.js +2 -3
- package/dist/hooks/delivery/index.js +8 -9
- package/dist/hooks/index.d.ts +18 -6
- package/dist/hooks/index.js +8 -9
- package/dist/hooks/published.d.ts +18 -6
- package/dist/hooks/published.js +8 -9
- package/dist/index.d.ts +151 -7
- package/dist/index.js +8 -9
- package/dist/knowledge/index.d.ts +81 -0
- package/dist/knowledge/index.js +5 -5
- package/dist/layout/index.d.ts +18 -2
- package/dist/layout/index.js +3 -1
- package/dist/organization/index.js +8 -9
- package/dist/provider/index.d.ts +120 -1
- package/dist/provider/index.js +5 -6
- package/dist/provider/published.d.ts +121 -2
- package/dist/provider/published.js +4 -5
- package/package.json +4 -4
- package/dist/chunk-J3FLIZY4.js +0 -423
package/dist/index.d.ts
CHANGED
|
@@ -5360,6 +5360,84 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5360
5360
|
primary: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<SidebarNode, unknown, z$1.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
5361
5361
|
bottom: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<SidebarNode, unknown, z$1.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
5362
5362
|
}, z$1.core.$strip>>;
|
|
5363
|
+
topbar: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
5364
|
+
id: z$1.ZodString;
|
|
5365
|
+
label: z$1.ZodString;
|
|
5366
|
+
tooltip: z$1.ZodOptional<z$1.ZodString>;
|
|
5367
|
+
icon: z$1.ZodOptional<z$1.ZodUnion<readonly [z$1.ZodEnum<{
|
|
5368
|
+
message: "message";
|
|
5369
|
+
error: "error";
|
|
5370
|
+
agent: "agent";
|
|
5371
|
+
workflow: "workflow";
|
|
5372
|
+
"google-sheets": "google-sheets";
|
|
5373
|
+
dashboard: "dashboard";
|
|
5374
|
+
calendar: "calendar";
|
|
5375
|
+
sales: "sales";
|
|
5376
|
+
crm: "crm";
|
|
5377
|
+
"lead-gen": "lead-gen";
|
|
5378
|
+
projects: "projects";
|
|
5379
|
+
clients: "clients";
|
|
5380
|
+
operations: "operations";
|
|
5381
|
+
monitoring: "monitoring";
|
|
5382
|
+
knowledge: "knowledge";
|
|
5383
|
+
settings: "settings";
|
|
5384
|
+
admin: "admin";
|
|
5385
|
+
archive: "archive";
|
|
5386
|
+
business: "business";
|
|
5387
|
+
finance: "finance";
|
|
5388
|
+
platform: "platform";
|
|
5389
|
+
seo: "seo";
|
|
5390
|
+
playbook: "playbook";
|
|
5391
|
+
strategy: "strategy";
|
|
5392
|
+
reference: "reference";
|
|
5393
|
+
integration: "integration";
|
|
5394
|
+
database: "database";
|
|
5395
|
+
user: "user";
|
|
5396
|
+
team: "team";
|
|
5397
|
+
gmail: "gmail";
|
|
5398
|
+
attio: "attio";
|
|
5399
|
+
overview: "overview";
|
|
5400
|
+
"command-view": "command-view";
|
|
5401
|
+
"command-queue": "command-queue";
|
|
5402
|
+
pipeline: "pipeline";
|
|
5403
|
+
lists: "lists";
|
|
5404
|
+
resources: "resources";
|
|
5405
|
+
approve: "approve";
|
|
5406
|
+
reject: "reject";
|
|
5407
|
+
retry: "retry";
|
|
5408
|
+
edit: "edit";
|
|
5409
|
+
view: "view";
|
|
5410
|
+
launch: "launch";
|
|
5411
|
+
"message-plus": "message-plus";
|
|
5412
|
+
escalate: "escalate";
|
|
5413
|
+
promote: "promote";
|
|
5414
|
+
submit: "submit";
|
|
5415
|
+
email: "email";
|
|
5416
|
+
success: "success";
|
|
5417
|
+
warning: "warning";
|
|
5418
|
+
info: "info";
|
|
5419
|
+
pending: "pending";
|
|
5420
|
+
bolt: "bolt";
|
|
5421
|
+
building: "building";
|
|
5422
|
+
briefcase: "briefcase";
|
|
5423
|
+
apps: "apps";
|
|
5424
|
+
graph: "graph";
|
|
5425
|
+
shield: "shield";
|
|
5426
|
+
users: "users";
|
|
5427
|
+
"chart-bar": "chart-bar";
|
|
5428
|
+
search: "search";
|
|
5429
|
+
}>, z$1.ZodString]>>;
|
|
5430
|
+
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
5431
|
+
enabled: z$1.ZodDefault<z$1.ZodBoolean>;
|
|
5432
|
+
devOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5433
|
+
requiresAdmin: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
5434
|
+
targets: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodObject<{
|
|
5435
|
+
systems: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
5436
|
+
entities: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
5437
|
+
resources: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
5438
|
+
actions: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
5439
|
+
}, z$1.core.$strip>>>;
|
|
5440
|
+
}, z$1.core.$strip>>>;
|
|
5363
5441
|
}, z$1.core.$strip>>;
|
|
5364
5442
|
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
5365
5443
|
mission: z$1.ZodDefault<z$1.ZodString>;
|
|
@@ -6028,6 +6106,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6028
6106
|
edit: "edit";
|
|
6029
6107
|
view: "view";
|
|
6030
6108
|
launch: "launch";
|
|
6109
|
+
"message-plus": "message-plus";
|
|
6031
6110
|
escalate: "escalate";
|
|
6032
6111
|
promote: "promote";
|
|
6033
6112
|
submit: "submit";
|
|
@@ -9753,14 +9832,14 @@ declare const RequestTypeEnum: z$1.ZodEnum<{
|
|
|
9753
9832
|
bug: "bug";
|
|
9754
9833
|
question: "question";
|
|
9755
9834
|
}>;
|
|
9756
|
-
type RequestSeverity = z$1.infer<typeof RequestSeverityEnum>;
|
|
9835
|
+
type RequestSeverity$1 = z$1.infer<typeof RequestSeverityEnum>;
|
|
9757
9836
|
type RequestStatus = z$1.infer<typeof RequestStatusEnum>;
|
|
9758
9837
|
type RequestSource = z$1.infer<typeof RequestSourceEnum>;
|
|
9759
|
-
type RequestType = z$1.infer<typeof RequestTypeEnum>;
|
|
9838
|
+
type RequestType$1 = z$1.infer<typeof RequestTypeEnum>;
|
|
9760
9839
|
|
|
9761
9840
|
interface RequestsListFilters {
|
|
9762
|
-
type?: RequestType;
|
|
9763
|
-
severity?: RequestSeverity;
|
|
9841
|
+
type?: RequestType$1;
|
|
9842
|
+
severity?: RequestSeverity$1;
|
|
9764
9843
|
status?: RequestStatus;
|
|
9765
9844
|
source?: RequestSource;
|
|
9766
9845
|
limit?: number;
|
|
@@ -9846,6 +9925,18 @@ declare function useUpdateRequestStatus(): _tanstack_react_query.UseMutationResu
|
|
|
9846
9925
|
|
|
9847
9926
|
declare function useDeleteRequest(): _tanstack_react_query.UseMutationResult<string, Error, string, unknown>;
|
|
9848
9927
|
|
|
9928
|
+
type RequestType = 'feature' | 'bug' | 'question' | 'other';
|
|
9929
|
+
type RequestSeverity = 'critical' | 'warning' | 'info';
|
|
9930
|
+
interface SubmitRequestInput {
|
|
9931
|
+
title: string;
|
|
9932
|
+
description: string;
|
|
9933
|
+
type: RequestType;
|
|
9934
|
+
severity?: RequestSeverity;
|
|
9935
|
+
category?: string;
|
|
9936
|
+
affectedPage?: string;
|
|
9937
|
+
}
|
|
9938
|
+
declare function useSubmitRequest(): _tanstack_react_query.UseMutationResult<unknown, Error, SubmitRequestInput, unknown>;
|
|
9939
|
+
|
|
9849
9940
|
interface ClientsListFilters {
|
|
9850
9941
|
status?: ClientStatus;
|
|
9851
9942
|
search?: string;
|
|
@@ -14189,6 +14280,22 @@ interface TopbarProps {
|
|
|
14189
14280
|
}
|
|
14190
14281
|
declare const Topbar: ({ version, leftContent, children }: TopbarProps) => react_jsx_runtime.JSX.Element;
|
|
14191
14282
|
|
|
14283
|
+
interface TopbarActionsProps {
|
|
14284
|
+
isPlatformAdmin?: boolean;
|
|
14285
|
+
isDev?: boolean;
|
|
14286
|
+
}
|
|
14287
|
+
/**
|
|
14288
|
+
* Renders all OM-declared topbar actions visible to the current user.
|
|
14289
|
+
*
|
|
14290
|
+
* Reads `navigation.topbar` from the organization model via `ElevasisSystemsProvider`,
|
|
14291
|
+
* applies gating (enabled / devOnly / requiresAdmin), joins each surviving node to its
|
|
14292
|
+
* registered `TopbarActionModule`, and delegates rendering to the module's `render` callback.
|
|
14293
|
+
*
|
|
14294
|
+
* Place inside an `AppTopbar` next to other topbar controls. Requires
|
|
14295
|
+
* `ElevasisSystemsProvider` in the tree with `topbarActions` registered.
|
|
14296
|
+
*/
|
|
14297
|
+
declare function TopbarActions({ isPlatformAdmin, isDev }: TopbarActionsProps): react_jsx_runtime.JSX.Element;
|
|
14298
|
+
|
|
14192
14299
|
declare const TopbarContainer: ({ children }: {
|
|
14193
14300
|
children: React.ReactNode;
|
|
14194
14301
|
}) => react_jsx_runtime.JSX.Element;
|
|
@@ -16073,6 +16180,39 @@ interface ResolvedShellRouteMatch {
|
|
|
16073
16180
|
interface ShellRuntime {
|
|
16074
16181
|
resolveRoute: (path: string) => ResolvedShellRouteMatch;
|
|
16075
16182
|
}
|
|
16183
|
+
/**
|
|
16184
|
+
* A resolved topbar action — the OM node after gating/filtering, with icon resolved
|
|
16185
|
+
* from the semantic icon registry. Passed to `TopbarActionModule.render`.
|
|
16186
|
+
*/
|
|
16187
|
+
interface ResolvedTopbarAction {
|
|
16188
|
+
id: string;
|
|
16189
|
+
label: string;
|
|
16190
|
+
tooltip?: string;
|
|
16191
|
+
icon: TablerIconComponent;
|
|
16192
|
+
order: number;
|
|
16193
|
+
}
|
|
16194
|
+
/**
|
|
16195
|
+
* A topbar action module — binds a registry key to UI behavior (a render callback).
|
|
16196
|
+
* The key must match `navigation.topbar[id]`. The OM supplies data + visibility;
|
|
16197
|
+
* the module supplies behavior.
|
|
16198
|
+
*/
|
|
16199
|
+
interface TopbarActionModule {
|
|
16200
|
+
/** Stable key that matches the `id` of a `navigation.topbar` node. */
|
|
16201
|
+
key: string;
|
|
16202
|
+
/** Render the topbar action. Receives the resolved OM node (icon pre-resolved). */
|
|
16203
|
+
render: (ctx: {
|
|
16204
|
+
node: ResolvedTopbarAction;
|
|
16205
|
+
}) => ReactNode;
|
|
16206
|
+
}
|
|
16207
|
+
/** A joined entry emitted by `getTopbarActions`: resolved OM node + module behavior. */
|
|
16208
|
+
interface ResolvedTopbarActionEntry {
|
|
16209
|
+
node: ResolvedTopbarAction;
|
|
16210
|
+
render: TopbarActionModule['render'];
|
|
16211
|
+
}
|
|
16212
|
+
interface TopbarActionsProjectionOptions {
|
|
16213
|
+
isPlatformAdmin?: boolean;
|
|
16214
|
+
isDev?: boolean;
|
|
16215
|
+
}
|
|
16076
16216
|
interface OrganizationGraphSystemBridge {
|
|
16077
16217
|
systemId?: string;
|
|
16078
16218
|
}
|
|
@@ -16083,6 +16223,8 @@ interface OrganizationGraphContextValue {
|
|
|
16083
16223
|
}
|
|
16084
16224
|
interface ElevasisSystemsProviderProps {
|
|
16085
16225
|
systems?: SystemModule[];
|
|
16226
|
+
/** Registered topbar action modules. OM node presence controls visibility; module supplies behavior. */
|
|
16227
|
+
topbarActions?: TopbarActionModule[];
|
|
16086
16228
|
organizationModel?: ElevasisOrganizationModel;
|
|
16087
16229
|
timeRange?: TimeRange;
|
|
16088
16230
|
operationsApiUrl?: string;
|
|
@@ -16096,6 +16238,8 @@ interface ElevasisSystemsContextValue {
|
|
|
16096
16238
|
shellModel: ResolvedShellModel;
|
|
16097
16239
|
shellRuntime: ShellRuntime;
|
|
16098
16240
|
getSidebarLinks: (options?: ShellSidebarProjectionOptions) => ShellSidebarLinkGroup[];
|
|
16241
|
+
/** Returns the list of topbar actions visible to the current user, in order. */
|
|
16242
|
+
getTopbarActions: (options?: TopbarActionsProjectionOptions) => ResolvedTopbarActionEntry[];
|
|
16099
16243
|
enabledResolvedSystems: ResolvedSystemModule[];
|
|
16100
16244
|
resolvedSystems: ResolvedSystemModule[];
|
|
16101
16245
|
organizationGraph: OrganizationGraphContextValue;
|
|
@@ -16530,7 +16674,7 @@ declare function useCrmActions(): ActionDef[];
|
|
|
16530
16674
|
|
|
16531
16675
|
declare function useElevasisSystems(): ElevasisSystemsContextValue;
|
|
16532
16676
|
declare function useOptionalElevasisSystems(): ElevasisSystemsContextValue | null;
|
|
16533
|
-
declare function ElevasisSystemsProvider({ systems, organizationModel, timeRange, operationsApiUrl, operationsSSEManager, deliveryApiUrl, deliverySSEManager, disabledSubsectionPaths, children }: ElevasisSystemsProviderProps): react_jsx_runtime.JSX.Element;
|
|
16677
|
+
declare function ElevasisSystemsProvider({ systems, topbarActions, organizationModel, timeRange, operationsApiUrl, operationsSSEManager, deliveryApiUrl, deliverySSEManager, disabledSubsectionPaths, children }: ElevasisSystemsProviderProps): react_jsx_runtime.JSX.Element;
|
|
16534
16678
|
|
|
16535
16679
|
declare function SystemShell({ children }: {
|
|
16536
16680
|
children: ReactNode;
|
|
@@ -17179,5 +17323,5 @@ declare function InitializationProvider({ children }: {
|
|
|
17179
17323
|
children: ReactNode;
|
|
17180
17324
|
}): React$1.FunctionComponentElement<React$1.ProviderProps<AppInitializationState | null>>;
|
|
17181
17325
|
|
|
17182
|
-
export { AGENT_CONSTANTS, APIClientError, APIErrorAlert, API_URL, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, AmbientBloomGrid, ApiClientProvider, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppBackground, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, AuthProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberBackground, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisServiceProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilmGrain, FilterBar, FloatingMotes, FloatingOrbs, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, InitializationContext, InitializationProvider, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LIMIT_ACTIVITY_FEED, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationContext, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PerspectiveGrid, PipelineFunnelWidget, PresetsProvider, ProfileProvider, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RadiantGlow, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, ResourceStatusColors, RichTextEditor, RoleBadge, RouterProvider, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, ScrollToTop, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, SystemShell, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TabCountBadge, TabSection, TableSelectionToolbar, TanStackRouterBridge, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarContainer, TrendIndicator, TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, UserProfileService, Vignette, VisualizerContainer, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WaveBackground, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, answerValueSchema, brochureStyles, brochureTheme, buildErrorReport, calculateBarPosition, calculateGraphHeight, calculateProgress, checkboxWithOtherSchema, clientsKeys, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createCustomValue, createElevasisQueryClient, createOrganizationsSlice, createPresetValue, createSurveyConfig, createTestSystemsProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, debounce, defaultTheme, deliveryManifest, executionsKeys, extendSemanticIconRegistry, extractAnswerValue, extractMultiAnswerValues, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatStatusLabel, formatTimeAgo, generateShades, getAnswerString, getCustomValueText, getEdgeColor, getEdgeOpacity, getEnrichmentColor, getErrorInfo, getErrorTitle, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getMultiAnswerStrings, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getSemanticIconComponent, getSeriesColor, getStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, hasCustomValue, hasPresetValue, iconMap, isAPIClientError, isCustomValue, isPresetValue, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mantineThemeOverride, mdxComponents, mergeTheme, milestoneKeys, milestoneStatusColors, monitoringManifest, multiAnswerValueSchema, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, PRESETS as presets, projectActivityKeys, projectKeys, projectStatusColors, radioWithOtherSchema, requestsKeys, resolveSemanticIconComponent, restoreConsole, scheduleKeys, seoManifest, sessionsKeys, settingsManifest, setupBrowserMocks, shouldAnimateEdge, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, sortData, subshellNavItemIconSize, subsidebarWidth, suppressKnownWarnings, taskKeys, taskStatusColors, taskTypeColors, topbarHeight, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCardStyle, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisServices, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphHighlighting, useGraphTheme, useInFlightExecutions, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNewKnowledgeMapLayout, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useTypeform, useTypeformContext, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
|
|
17183
|
-
export type { AccessGuardProps, AccessKeyInput, AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityEntry, ActivityFilters$1 as ActivityFilters, ActivityFiltersProps, ActivityTableProps, ActivityTrendChartProps, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, AnswerValue, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppErrorBoundaryProps, AppInitializationState, AppearanceConfig, ArrayItemAnswer, ArrayQuestion, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BaseEdgeProps, BaseExecutionLogsProps, BaseQuestion, BreadcrumbItem, BreadcrumbsProps, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChartFrameProps, ChatMessage, CheckboxQuestion, ClientDetailResponse, ClientResponse, ClientStatus, ClientStatusResponse, ClientsListFilters, CollapsibleSidebarGroupProps, ColorShadesTuple, CombinedTrendChartProps, ContentQuestion, ContextViewerProps, CostByModelTableProps, CostTrendChartProps, CrashErrorFallbackProps, CreateApiKeyRequest, CreateApiKeyResponse, CreateClientRequest, CreateCredentialRequest, CreateCredentialResponse, CreateElevasisQueryClientOptions, CreateOrgRoleInput, CreateRoleModalProps, CreateScheduleInput, CreateSessionResponse, CreateTestSystemsProviderOptions, CredentialListItem, CrmOverviewProps, CyberAreaChartProps, CyberColors, CyberDonutProps, CyberDonutSegment, CyberSeries, CyberVariant, DealDetail, DealKanbanCardProps, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisSystemsContextValue, ElevasisSystemsProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorAnalysisCardProps, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorReportCardProps, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionBreakdownTableProps, ExecutionErrorDetails, ExecutionHealthCardProps, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogEntry, ExecutionLogsFilters$1 as ExecutionLogsFilters, ExecutionLogsFiltersProps, ExecutionLogsPageResponse, ExecutionLogsTableProps, ExecutionPathState, ExecutionStatus, FailingResource, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphFitViewHandlerProps, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, HeroStatsRowProps, InitializationError, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LeadGenStageKey, LinkItem, LinkProps, LinksGroupProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListRecordsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, LogLevel, MdxRendererProps, MembershipWithDetails, MessageEvent, MessageType, MultiAnswerValue, NavItem, NavigationButtonProps, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphSystemBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PageCondition, PermissionRow, PresetEntry, PresetName, ProfileContextValue, ProjectsSidebarMiddleProps, ProtectedRouteProps, RadioQuestion, RemoveCompaniesFromListResult, RequestRow, RequestsListFilters, ResolvedShellModel, ResolvedShellRouteMatch, ResolvedShellSystem, ResolvedSystemAccess, ResolvedSystemModule, ResolvedSystemSemantics, ResourceFilterFacet, ResourceHealthPanelProps, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RichTextEditorProps, RouterAdapter, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SerializedKnowledgeMap, SerializedKnowledgeNode, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, ShellSidebarLinkGroup, ShellSidebarLinkItem, ShellSidebarProjectionOptions, SidebarNestedProps, SortDirection, SortState, StaleDealSummaryItem, StatCardProps, StatefulItem, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StepExecutionData, StyledMarkdownProps, SubmitActionRequest, SubmitActionResponse, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, SupabaseUserProfile, SystemHealthExecutionSummary, SystemHealthResponse, SystemIconComponent, SystemModule, SystemSidebarComponent, TabSectionProps, TablerIcon, TablerIconComponent, TaskFilterStatus, TaskSchedule, TextQuestion, TextareaQuestion, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TopbarProps, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, TrendIndicatorProps, TypeformActions, TypeformAnswerValue, TypeformAnswers, TypeformArrayFieldProps, TypeformCheckboxGroupProps, TypeformConfig, TypeformContextValue, TypeformErrors, TypeformInputQuestion, TypeformNavigationProps, TypeformOption, TypeformPage, TypeformProgressProps, TypeformQuestion, TypeformRadioGroupProps, TypeformState, TypeformStyles, TypeformSurveyProps, TypeformTextInputProps, TypeformTheme, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateClientRequest, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseAccessResult, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseBreadcrumbsOptions, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseInFlightExecutionsOptions, UseListProgressOptions, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseSystemHealthParams, UseTypeformReturn, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, VerifyCredentialResponse, WaveVariant, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput, ZodFormRendererProps };
|
|
17326
|
+
export { AGENT_CONSTANTS, APIClientError, APIErrorAlert, API_URL, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, AmbientBloomGrid, ApiClientProvider, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppBackground, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, AuthProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberBackground, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisServiceProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilmGrain, FilterBar, FloatingMotes, FloatingOrbs, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, InitializationContext, InitializationProvider, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LIMIT_ACTIVITY_FEED, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationContext, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PerspectiveGrid, PipelineFunnelWidget, PresetsProvider, ProfileProvider, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RadiantGlow, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, ResourceStatusColors, RichTextEditor, RoleBadge, RouterProvider, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, ScrollToTop, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, SystemShell, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TabCountBadge, TabSection, TableSelectionToolbar, TanStackRouterBridge, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, UserProfileService, Vignette, VisualizerContainer, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WaveBackground, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, answerValueSchema, brochureStyles, brochureTheme, buildErrorReport, calculateBarPosition, calculateGraphHeight, calculateProgress, checkboxWithOtherSchema, clientsKeys, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createCustomValue, createElevasisQueryClient, createOrganizationsSlice, createPresetValue, createSurveyConfig, createTestSystemsProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, debounce, defaultTheme, deliveryManifest, executionsKeys, extendSemanticIconRegistry, extractAnswerValue, extractMultiAnswerValues, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatStatusLabel, formatTimeAgo, generateShades, getAnswerString, getCustomValueText, getEdgeColor, getEdgeOpacity, getEnrichmentColor, getErrorInfo, getErrorTitle, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getMultiAnswerStrings, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getSemanticIconComponent, getSeriesColor, getStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, hasCustomValue, hasPresetValue, iconMap, isAPIClientError, isCustomValue, isPresetValue, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mantineThemeOverride, mdxComponents, mergeTheme, milestoneKeys, milestoneStatusColors, monitoringManifest, multiAnswerValueSchema, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, PRESETS as presets, projectActivityKeys, projectKeys, projectStatusColors, radioWithOtherSchema, requestsKeys, resolveSemanticIconComponent, restoreConsole, scheduleKeys, seoManifest, sessionsKeys, settingsManifest, setupBrowserMocks, shouldAnimateEdge, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, sortData, subshellNavItemIconSize, subsidebarWidth, suppressKnownWarnings, taskKeys, taskStatusColors, taskTypeColors, topbarHeight, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCardStyle, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisServices, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphHighlighting, useGraphTheme, useInFlightExecutions, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNewKnowledgeMapLayout, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useTypeform, useTypeformContext, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
|
|
17327
|
+
export type { AccessGuardProps, AccessKeyInput, AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityEntry, ActivityFilters$1 as ActivityFilters, ActivityFiltersProps, ActivityTableProps, ActivityTrendChartProps, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, AnswerValue, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppErrorBoundaryProps, AppInitializationState, AppearanceConfig, ArrayItemAnswer, ArrayQuestion, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BaseEdgeProps, BaseExecutionLogsProps, BaseQuestion, BreadcrumbItem, BreadcrumbsProps, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChartFrameProps, ChatMessage, CheckboxQuestion, ClientDetailResponse, ClientResponse, ClientStatus, ClientStatusResponse, ClientsListFilters, CollapsibleSidebarGroupProps, ColorShadesTuple, CombinedTrendChartProps, ContentQuestion, ContextViewerProps, CostByModelTableProps, CostTrendChartProps, CrashErrorFallbackProps, CreateApiKeyRequest, CreateApiKeyResponse, CreateClientRequest, CreateCredentialRequest, CreateCredentialResponse, CreateElevasisQueryClientOptions, CreateOrgRoleInput, CreateRoleModalProps, CreateScheduleInput, CreateSessionResponse, CreateTestSystemsProviderOptions, CredentialListItem, CrmOverviewProps, CyberAreaChartProps, CyberColors, CyberDonutProps, CyberDonutSegment, CyberSeries, CyberVariant, DealDetail, DealKanbanCardProps, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisSystemsContextValue, ElevasisSystemsProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorAnalysisCardProps, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorReportCardProps, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionBreakdownTableProps, ExecutionErrorDetails, ExecutionHealthCardProps, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogEntry, ExecutionLogsFilters$1 as ExecutionLogsFilters, ExecutionLogsFiltersProps, ExecutionLogsPageResponse, ExecutionLogsTableProps, ExecutionPathState, ExecutionStatus, FailingResource, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphFitViewHandlerProps, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, HeroStatsRowProps, InitializationError, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LeadGenStageKey, LinkItem, LinkProps, LinksGroupProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListRecordsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, LogLevel, MdxRendererProps, MembershipWithDetails, MessageEvent, MessageType, MultiAnswerValue, NavItem, NavigationButtonProps, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphSystemBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PageCondition, PermissionRow, PresetEntry, PresetName, ProfileContextValue, ProjectsSidebarMiddleProps, ProtectedRouteProps, RadioQuestion, RemoveCompaniesFromListResult, RequestRow, RequestSeverity, RequestType, RequestsListFilters, ResolvedShellModel, ResolvedShellRouteMatch, ResolvedShellSystem, ResolvedSystemAccess, ResolvedSystemModule, ResolvedSystemSemantics, ResourceFilterFacet, ResourceHealthPanelProps, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RichTextEditorProps, RouterAdapter, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SerializedKnowledgeMap, SerializedKnowledgeNode, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, ShellSidebarLinkGroup, ShellSidebarLinkItem, ShellSidebarProjectionOptions, SidebarNestedProps, SortDirection, SortState, StaleDealSummaryItem, StatCardProps, StatefulItem, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StepExecutionData, StyledMarkdownProps, SubmitActionRequest, SubmitActionResponse, SubmitRequestInput, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, SupabaseUserProfile, SystemHealthExecutionSummary, SystemHealthResponse, SystemIconComponent, SystemModule, SystemSidebarComponent, TabSectionProps, TablerIcon, TablerIconComponent, TaskFilterStatus, TaskSchedule, TextQuestion, TextareaQuestion, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TopbarActionsProps, TopbarProps, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, TrendIndicatorProps, TypeformActions, TypeformAnswerValue, TypeformAnswers, TypeformArrayFieldProps, TypeformCheckboxGroupProps, TypeformConfig, TypeformContextValue, TypeformErrors, TypeformInputQuestion, TypeformNavigationProps, TypeformOption, TypeformPage, TypeformProgressProps, TypeformQuestion, TypeformRadioGroupProps, TypeformState, TypeformStyles, TypeformSurveyProps, TypeformTextInputProps, TypeformTheme, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateClientRequest, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseAccessResult, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseBreadcrumbsOptions, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseInFlightExecutionsOptions, UseListProgressOptions, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseSystemHealthParams, UseTypeformReturn, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, VerifyCredentialResponse, WaveVariant, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput, ZodFormRendererProps };
|
package/dist/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export { createElevasisQueryClient } from './chunk-73EWE2EW.js';
|
|
2
|
-
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-
|
|
2
|
+
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-JAN2ZXN5.js';
|
|
3
3
|
export { useAvailablePresets } from './chunk-B2DZLPDL.js';
|
|
4
4
|
export { AppErrorBoundary, CrashErrorFallback, ErrorReportCard, buildErrorReport } from './chunk-66U7JOWV.js';
|
|
5
5
|
export { TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, brochureStyles, brochureTheme, createCustomValue, createPresetValue, createSurveyConfig, defaultTheme, extractAnswerValue, extractMultiAnswerValues, getAnswerString, getCustomValueText, getMultiAnswerStrings, hasCustomValue, hasPresetValue, isCustomValue, isPresetValue, mergeTheme, useCardStyle, useTypeform, useTypeformContext } from './chunk-AUDNF2Q7.js';
|
|
6
6
|
export { answerValueSchema, checkboxWithOtherSchema, multiAnswerValueSchema, radioWithOtherSchema } from './chunk-6M6OLGQY.js';
|
|
7
7
|
import './chunk-BRXELOHC.js';
|
|
8
|
-
export { useBreadcrumbs } from './chunk-
|
|
8
|
+
export { useBreadcrumbs } from './chunk-VAAU2Z3S.js';
|
|
9
9
|
import './chunk-CXY7FMUM.js';
|
|
10
10
|
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, observabilityKeys, useCyberColors, useErrorTrends } from './chunk-4DRI3G36.js';
|
|
11
11
|
export { createUseAppInitialization } from './chunk-SJHM4WDG.js';
|
|
12
12
|
import './chunk-ZTWA5H77.js';
|
|
13
13
|
import './chunk-5EYJ2GIN.js';
|
|
14
|
-
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellLoader, SubshellNavList, SubshellSidebarLoader, Topbar, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from './chunk-
|
|
14
|
+
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellLoader, SubshellNavList, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from './chunk-QVQMOQXB.js';
|
|
15
15
|
import './chunk-CLDCYJQT.js';
|
|
16
16
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from './chunk-TYRUKGGD.js';
|
|
17
17
|
export { SubshellNavItem } from './chunk-X4WBGKJQ.js';
|
|
@@ -19,12 +19,12 @@ export { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
|
19
19
|
export { GRAPH_CONSTANTS, calculateGraphHeight, Graph_module_css_default as graphStyles, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-HENXLGVD.js';
|
|
20
20
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-7FPLLSHN.js';
|
|
21
21
|
import './chunk-RNP5R5I3.js';
|
|
22
|
-
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from './chunk-
|
|
22
|
+
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from './chunk-A2XN6PR2.js';
|
|
23
23
|
export { TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride } from './chunk-5JYKCULK.js';
|
|
24
24
|
export { PresetsProvider, usePresetsContext } from './chunk-6D4LCJ52.js';
|
|
25
25
|
export { generateShades, getPreset, PRESETS as presets } from './chunk-WF7CONXF.js';
|
|
26
26
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from './chunk-WLOQ4IBG.js';
|
|
27
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, OrganizationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from './chunk-
|
|
27
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, OrganizationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from './chunk-YPWN2WQ3.js';
|
|
28
28
|
export { APIErrorAlert, ActivityTimeline, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator } from './chunk-CTJBPF3Z.js';
|
|
29
29
|
export { StyledMarkdown } from './chunk-3KMDHCAR.js';
|
|
30
30
|
export { CardHeader } from './chunk-S3XR4II4.js';
|
|
@@ -36,11 +36,10 @@ export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
|
|
|
36
36
|
export { RouterProvider, useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
37
37
|
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from './chunk-RXH4D6TY.js';
|
|
38
38
|
export { ResourceStatusColors } from './chunk-KRWALB24.js';
|
|
39
|
-
export { AccessGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from './chunk-
|
|
40
|
-
export { AccessKeys, useAccess } from './chunk-
|
|
41
|
-
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from './chunk-J3FLIZY4.js';
|
|
39
|
+
export { AccessGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from './chunk-JHVEA5NE.js';
|
|
40
|
+
export { AccessKeys, useAccess } from './chunk-56O7QQE7.js';
|
|
42
41
|
export { InitializationContext, InitializationProvider, useInitialization } from './chunk-6DO4PE3O.js';
|
|
43
|
-
export { DEFAULT_SEMANTIC_ICON_REGISTRY, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from './chunk-
|
|
42
|
+
export { DEFAULT_SEMANTIC_ICON_REGISTRY, ElevasisSystemsProvider, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent, useElevasisSystems, useOptionalElevasisSystems } from './chunk-FIMGOWOT.js';
|
|
44
43
|
export { OrganizationContext, useOrganization } from './chunk-DD3CCMCZ.js';
|
|
45
44
|
export { ProfileProvider, UserProfileService, useProfile, useUserProfile } from './chunk-W2SFTXMT.js';
|
|
46
45
|
export { GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING } from './chunk-6ROXVZ3L.js';
|
|
@@ -246,6 +246,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
246
246
|
edit: "edit";
|
|
247
247
|
view: "view";
|
|
248
248
|
launch: "launch";
|
|
249
|
+
"message-plus": "message-plus";
|
|
249
250
|
escalate: "escalate";
|
|
250
251
|
promote: "promote";
|
|
251
252
|
submit: "submit";
|
|
@@ -347,6 +348,7 @@ declare const OrganizationModelIconTokenSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
|
347
348
|
edit: "edit";
|
|
348
349
|
view: "view";
|
|
349
350
|
launch: "launch";
|
|
351
|
+
"message-plus": "message-plus";
|
|
350
352
|
escalate: "escalate";
|
|
351
353
|
promote: "promote";
|
|
352
354
|
submit: "submit";
|
|
@@ -560,6 +562,84 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
560
562
|
primary: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<SidebarNode, unknown, z.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
561
563
|
bottom: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<SidebarNode, unknown, z.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
562
564
|
}, z.core.$strip>>;
|
|
565
|
+
topbar: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
566
|
+
id: z.ZodString;
|
|
567
|
+
label: z.ZodString;
|
|
568
|
+
tooltip: z.ZodOptional<z.ZodString>;
|
|
569
|
+
icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
570
|
+
message: "message";
|
|
571
|
+
error: "error";
|
|
572
|
+
agent: "agent";
|
|
573
|
+
workflow: "workflow";
|
|
574
|
+
"google-sheets": "google-sheets";
|
|
575
|
+
dashboard: "dashboard";
|
|
576
|
+
calendar: "calendar";
|
|
577
|
+
sales: "sales";
|
|
578
|
+
crm: "crm";
|
|
579
|
+
"lead-gen": "lead-gen";
|
|
580
|
+
projects: "projects";
|
|
581
|
+
clients: "clients";
|
|
582
|
+
operations: "operations";
|
|
583
|
+
monitoring: "monitoring";
|
|
584
|
+
knowledge: "knowledge";
|
|
585
|
+
settings: "settings";
|
|
586
|
+
admin: "admin";
|
|
587
|
+
archive: "archive";
|
|
588
|
+
business: "business";
|
|
589
|
+
finance: "finance";
|
|
590
|
+
platform: "platform";
|
|
591
|
+
seo: "seo";
|
|
592
|
+
playbook: "playbook";
|
|
593
|
+
strategy: "strategy";
|
|
594
|
+
reference: "reference";
|
|
595
|
+
integration: "integration";
|
|
596
|
+
database: "database";
|
|
597
|
+
user: "user";
|
|
598
|
+
team: "team";
|
|
599
|
+
gmail: "gmail";
|
|
600
|
+
attio: "attio";
|
|
601
|
+
overview: "overview";
|
|
602
|
+
"command-view": "command-view";
|
|
603
|
+
"command-queue": "command-queue";
|
|
604
|
+
pipeline: "pipeline";
|
|
605
|
+
lists: "lists";
|
|
606
|
+
resources: "resources";
|
|
607
|
+
approve: "approve";
|
|
608
|
+
reject: "reject";
|
|
609
|
+
retry: "retry";
|
|
610
|
+
edit: "edit";
|
|
611
|
+
view: "view";
|
|
612
|
+
launch: "launch";
|
|
613
|
+
"message-plus": "message-plus";
|
|
614
|
+
escalate: "escalate";
|
|
615
|
+
promote: "promote";
|
|
616
|
+
submit: "submit";
|
|
617
|
+
email: "email";
|
|
618
|
+
success: "success";
|
|
619
|
+
warning: "warning";
|
|
620
|
+
info: "info";
|
|
621
|
+
pending: "pending";
|
|
622
|
+
bolt: "bolt";
|
|
623
|
+
building: "building";
|
|
624
|
+
briefcase: "briefcase";
|
|
625
|
+
apps: "apps";
|
|
626
|
+
graph: "graph";
|
|
627
|
+
shield: "shield";
|
|
628
|
+
users: "users";
|
|
629
|
+
"chart-bar": "chart-bar";
|
|
630
|
+
search: "search";
|
|
631
|
+
}>, z.ZodString]>>;
|
|
632
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
633
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
634
|
+
devOnly: z.ZodOptional<z.ZodBoolean>;
|
|
635
|
+
requiresAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
636
|
+
targets: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
|
637
|
+
systems: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
638
|
+
entities: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
639
|
+
resources: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
640
|
+
actions: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
641
|
+
}, z.core.$strip>>>;
|
|
642
|
+
}, z.core.$strip>>>;
|
|
563
643
|
}, z.core.$strip>>;
|
|
564
644
|
identity: z.ZodDefault<z.ZodObject<{
|
|
565
645
|
mission: z.ZodDefault<z.ZodString>;
|
|
@@ -1228,6 +1308,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1228
1308
|
edit: "edit";
|
|
1229
1309
|
view: "view";
|
|
1230
1310
|
launch: "launch";
|
|
1311
|
+
"message-plus": "message-plus";
|
|
1231
1312
|
escalate: "escalate";
|
|
1232
1313
|
promote: "promote";
|
|
1233
1314
|
submit: "submit";
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
2
|
-
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-
|
|
3
|
-
import { PageContainer } from '../chunk-
|
|
1
|
+
import { getKnowledgeIconToken, getKnowledgeGraphNodeCommand, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-S4R2ZQS7.js';
|
|
2
|
+
export { KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_TREE_GROUPS, getKnowledgeIconToken, getSharedOrganizationGraph } from '../chunk-S4R2ZQS7.js';
|
|
3
|
+
import { PageContainer } from '../chunk-QVQMOQXB.js';
|
|
4
4
|
import '../chunk-CLDCYJQT.js';
|
|
5
5
|
import '../chunk-X4WBGKJQ.js';
|
|
6
6
|
import '../chunk-IIMU5YAJ.js';
|
|
@@ -12,8 +12,8 @@ import '../chunk-NYBEU5TE.js';
|
|
|
12
12
|
import '../chunk-DT3QYZVU.js';
|
|
13
13
|
import '../chunk-2IFYDILW.js';
|
|
14
14
|
import '../chunk-Q7DJKLEN.js';
|
|
15
|
-
import { SemanticIcon, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema } from '../chunk-
|
|
16
|
-
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-
|
|
15
|
+
import { SemanticIcon, SystemEntrySchema, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, SurfaceDefinitionSchema, RoleSchema, PolicySchema, EntitySchema, ActionSchema } from '../chunk-FIMGOWOT.js';
|
|
16
|
+
export { SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from '../chunk-FIMGOWOT.js';
|
|
17
17
|
import { getSystem, OntologyIdSchema, ontologyGraphNodeId, compileOrganizationOntology, parseOntologyId } from '../chunk-RH5VWWSC.js';
|
|
18
18
|
import '../chunk-I2KLQ2HA.js';
|
|
19
19
|
import { createContext, Children, isValidElement, cloneElement, useMemo, useContext, useRef, useState, useEffect } from 'react';
|
package/dist/layout/index.d.ts
CHANGED
|
@@ -572,9 +572,25 @@ interface TopbarProps {
|
|
|
572
572
|
}
|
|
573
573
|
declare const Topbar: ({ version, leftContent, children }: TopbarProps) => react_jsx_runtime.JSX.Element;
|
|
574
574
|
|
|
575
|
+
interface TopbarActionsProps {
|
|
576
|
+
isPlatformAdmin?: boolean;
|
|
577
|
+
isDev?: boolean;
|
|
578
|
+
}
|
|
579
|
+
/**
|
|
580
|
+
* Renders all OM-declared topbar actions visible to the current user.
|
|
581
|
+
*
|
|
582
|
+
* Reads `navigation.topbar` from the organization model via `ElevasisSystemsProvider`,
|
|
583
|
+
* applies gating (enabled / devOnly / requiresAdmin), joins each surviving node to its
|
|
584
|
+
* registered `TopbarActionModule`, and delegates rendering to the module's `render` callback.
|
|
585
|
+
*
|
|
586
|
+
* Place inside an `AppTopbar` next to other topbar controls. Requires
|
|
587
|
+
* `ElevasisSystemsProvider` in the tree with `topbarActions` registered.
|
|
588
|
+
*/
|
|
589
|
+
declare function TopbarActions({ isPlatformAdmin, isDev }: TopbarActionsProps): react_jsx_runtime.JSX.Element;
|
|
590
|
+
|
|
575
591
|
declare const TopbarContainer: ({ children }: {
|
|
576
592
|
children: React.ReactNode;
|
|
577
593
|
}) => react_jsx_runtime.JSX.Element;
|
|
578
594
|
|
|
579
|
-
export { AmbientBloomGrid, AppBackground, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberBackground, CyberParticles, FilmGrain, FloatingMotes, FloatingOrbs, LinksGroup, PageContainer, PerspectiveGrid, RadiantGlow, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, Topbar, TopbarContainer, Vignette, WaveBackground, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, subshellNavItemIconSize, subsidebarWidth, topbarHeight, useSidebar, useSidebarCollapse };
|
|
580
|
-
export type { CollapsibleSidebarGroupProps, CyberVariant, LinkItem, LinksGroupProps, NavItem, SidebarNestedProps, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, TopbarProps, WaveVariant };
|
|
595
|
+
export { AmbientBloomGrid, AppBackground, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberBackground, CyberParticles, FilmGrain, FloatingMotes, FloatingOrbs, LinksGroup, PageContainer, PerspectiveGrid, RadiantGlow, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, Topbar, TopbarActions, TopbarContainer, Vignette, WaveBackground, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, subshellNavItemIconSize, subsidebarWidth, topbarHeight, useSidebar, useSidebarCollapse };
|
|
596
|
+
export type { CollapsibleSidebarGroupProps, CyberVariant, LinkItem, LinksGroupProps, NavItem, SidebarNestedProps, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, TopbarActionsProps, TopbarProps, WaveVariant };
|
package/dist/layout/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellLoader, SubshellNavList, SubshellSidebarLoader, Topbar, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-
|
|
1
|
+
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellLoader, SubshellNavList, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-QVQMOQXB.js';
|
|
2
2
|
export { SubshellNavItem } from '../chunk-X4WBGKJQ.js';
|
|
3
3
|
export { SubshellSidebarSection } from '../chunk-IIMU5YAJ.js';
|
|
4
4
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-WLOQ4IBG.js';
|
|
@@ -7,4 +7,6 @@ import '../chunk-NYBEU5TE.js';
|
|
|
7
7
|
export { sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, subshellNavItemIconSize, topbarHeight } from '../chunk-DT3QYZVU.js';
|
|
8
8
|
import '../chunk-2IFYDILW.js';
|
|
9
9
|
import '../chunk-Q7DJKLEN.js';
|
|
10
|
+
import '../chunk-FIMGOWOT.js';
|
|
11
|
+
import '../chunk-RH5VWWSC.js';
|
|
10
12
|
import '../chunk-I2KLQ2HA.js';
|