@elevasis/ui 2.28.1 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/index.js +2 -2
- package/dist/app/index.js +4 -4
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-PBNIW7KV.js → chunk-3DUOPXOJ.js} +139 -8
- package/dist/{chunk-5R27NFOI.js → chunk-5CW2HXQA.js} +4 -4
- package/dist/{chunk-UOHOKDKL.js → chunk-65RQE3XF.js} +5 -5
- package/dist/{chunk-TVJROM2V.js → chunk-6NHCE7JM.js} +49 -28
- package/dist/{chunk-GJXAAYZ3.js → chunk-6WXDE5LZ.js} +1 -1
- package/dist/{chunk-ZPXV5KI3.js → chunk-7E3FUTND.js} +1 -1
- package/dist/{chunk-M6OJ43NL.js → chunk-A7R2URMV.js} +60 -25
- package/dist/{chunk-YNYGUVGW.js → chunk-AK5E6ILJ.js} +8 -7
- package/dist/{chunk-MZCDRBSI.js → chunk-CEHUFNAL.js} +1 -1
- package/dist/{chunk-CT5IR4ZA.js → chunk-CLUP5H3C.js} +6 -9
- package/dist/{chunk-MYEOTM7D.js → chunk-CN2HC4D4.js} +5 -1
- package/dist/{chunk-JS7VBTC4.js → chunk-FFDAE2QI.js} +82 -2
- package/dist/{chunk-MCRKFDKB.js → chunk-FGDUK74A.js} +4 -4
- package/dist/{chunk-N63RKL3L.js → chunk-HNFQCOD2.js} +4 -4
- package/dist/{chunk-SRNIHB7Y.js → chunk-HXZQWMKE.js} +1 -2
- package/dist/{chunk-3HCTCMAS.js → chunk-OHGNCWJP.js} +3 -3
- package/dist/{chunk-AYSO5A3R.js → chunk-OIMPGKDB.js} +2 -2
- package/dist/{chunk-NU5FNTOB.js → chunk-OWESKPTJ.js} +58 -7
- package/dist/{chunk-K4Q5QUHZ.js → chunk-QNL7UI5G.js} +4 -4
- package/dist/{chunk-HNN3QALL.js → chunk-SZWXQHKO.js} +2 -2
- package/dist/{chunk-MJMFIWEB.js → chunk-Y3YJKKEB.js} +1 -1
- package/dist/components/index.js +25 -25
- package/dist/features/crm/index.js +9 -9
- package/dist/features/dashboard/index.js +10 -10
- package/dist/features/delivery/index.js +9 -9
- package/dist/features/knowledge/index.js +33 -19
- package/dist/features/lead-gen/index.d.ts +17 -1
- package/dist/features/lead-gen/index.js +10 -10
- package/dist/features/monitoring/index.js +11 -11
- package/dist/features/monitoring/requests/index.js +8 -8
- package/dist/features/operations/index.js +14 -14
- package/dist/features/settings/index.js +9 -9
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.js +8 -8
- package/dist/hooks/published.js +8 -8
- package/dist/index.d.ts +1 -3
- package/dist/index.js +8 -8
- package/dist/knowledge/index.d.ts +1 -1
- package/dist/knowledge/index.js +102 -2
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.js +5 -5
- package/dist/test-utils/index.js +2 -2
- package/dist/utils/index.d.ts +1 -3
- package/dist/utils/index.js +1 -1
- package/dist/vite/index.js +2 -2
- package/dist/vite-plugin-knowledge/index.js +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -7516,8 +7516,6 @@ declare const LIMIT_ACTIVITY_FEED = 50;
|
|
|
7516
7516
|
declare const DEBOUNCE_FILTER = 150;
|
|
7517
7517
|
/** Slider input debounce delay (500ms). */
|
|
7518
7518
|
declare const DEBOUNCE_SLIDER = 500;
|
|
7519
|
-
/** OAuth popup closed-check polling interval (500ms). */
|
|
7520
|
-
declare const OAUTH_POPUP_CHECK_INTERVAL = 500;
|
|
7521
7519
|
/** OAuth flow maximum duration before timeout (5 min). */
|
|
7522
7520
|
declare const OAUTH_FLOW_TIMEOUT = 300000;
|
|
7523
7521
|
|
|
@@ -12462,5 +12460,5 @@ declare function InitializationProvider({ children }: {
|
|
|
12462
12460
|
children: ReactNode;
|
|
12463
12461
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
12464
12462
|
|
|
12465
|
-
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, CrmActionsProvider, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, ListActionsProvider, NotificationProvider, OAUTH_FLOW_TIMEOUT,
|
|
12463
|
+
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, CrmActionsProvider, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, ListActionsProvider, NotificationProvider, OAUTH_FLOW_TIMEOUT, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceStatusColors, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calculateBarPosition, calculateGraphHeight, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, debounce, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, requestsKeys, restoreConsole, scheduleKeys, sessionsKeys, setupBrowserMocks, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useHasPermission, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrgRoles, useOrganization, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
|
|
12466
12464
|
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateOrgRoleInput, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus, FailingResource, FeatureAccessResult, FeatureIconComponent, FeatureModule, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LeadGenStageKey, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, RemoveCompaniesFromListResult, RequestRow, RequestsListFilters, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellFeature, ResolvedShellModel, ResolvedShellRouteMatch, ResourceFilterFacet, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StaleDealSummaryItem, StatefulItem, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
package/dist/index.js
CHANGED
|
@@ -3,25 +3,25 @@ export { useAvailablePresets } from './chunk-XBMCDGHA.js';
|
|
|
3
3
|
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-22UVE3RA.js';
|
|
4
4
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-E4WQGJNS.js';
|
|
5
5
|
import './chunk-7M2VOCYN.js';
|
|
6
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, 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, useHasPermission, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, 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, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-
|
|
6
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, 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, useHasPermission, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, 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, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-HNFQCOD2.js';
|
|
7
7
|
export { observabilityKeys, useErrorTrends } from './chunk-VKMNWHTL.js';
|
|
8
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from './chunk-
|
|
8
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from './chunk-CEHUFNAL.js';
|
|
9
9
|
import './chunk-BRXELOHC.js';
|
|
10
10
|
export { useMergedExecution } from './chunk-3ZMAGTWF.js';
|
|
11
11
|
export { createTestFeaturesProvider } from './chunk-VMJVQAFZ.js';
|
|
12
|
-
export { ElevasisUIProvider } from './chunk-
|
|
12
|
+
export { ElevasisUIProvider } from './chunk-OIMPGKDB.js';
|
|
13
13
|
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride, usePresetsContext } from './chunk-LH4GPYDX.js';
|
|
14
14
|
export { generateShades, getPreset, PRESETS as presets } from './chunk-HLFFKKT3.js';
|
|
15
15
|
import './chunk-WLOQ4IBG.js';
|
|
16
|
-
export { FeatureShell } from './chunk-
|
|
17
|
-
import './chunk-
|
|
16
|
+
export { FeatureShell } from './chunk-Y3YJKKEB.js';
|
|
17
|
+
import './chunk-6WXDE5LZ.js';
|
|
18
18
|
import './chunk-3KMDHCAR.js';
|
|
19
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from './chunk-
|
|
19
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from './chunk-OWESKPTJ.js';
|
|
20
20
|
import './chunk-SZHARWKU.js';
|
|
21
21
|
export { ElevasisFeaturesProvider, createFeatureAccessHook, useElevasisFeatures, useOptionalElevasisFeatures } from './chunk-V3HUIZJX.js';
|
|
22
22
|
import './chunk-TKAYX2SP.js';
|
|
23
23
|
import './chunk-NYBEU5TE.js';
|
|
24
|
-
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-
|
|
24
|
+
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-7E3FUTND.js';
|
|
25
25
|
export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
|
|
26
26
|
export { RouterProvider, useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
27
27
|
export { OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from './chunk-GESXCQWY.js';
|
|
@@ -30,7 +30,7 @@ export { AppearanceProvider, useAppearance } from './chunk-E565XMTQ.js';
|
|
|
30
30
|
export { createUseAppInitialization } from './chunk-KU7ZDWQ7.js';
|
|
31
31
|
import './chunk-DT3QYZVU.js';
|
|
32
32
|
import './chunk-RNP5R5I3.js';
|
|
33
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT,
|
|
33
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, 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, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, 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-HXZQWMKE.js';
|
|
34
34
|
export { ResourceStatusColors } from './chunk-KRWALB24.js';
|
|
35
35
|
export { AdminGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from './chunk-WFTNY755.js';
|
|
36
36
|
export { InitializationContext, InitializationProvider, useInitialization } from './chunk-WKJ47GIW.js';
|
|
@@ -1219,7 +1219,7 @@ type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
|
1219
1219
|
type OrgKnowledgeNode = z.infer<typeof OrgKnowledgeNodeSchema>;
|
|
1220
1220
|
type OrgKnowledgeKind = z.infer<typeof OrgKnowledgeKindSchema>;
|
|
1221
1221
|
|
|
1222
|
-
type OrganizationGraphNodeKind = 'organization' | 'feature' | 'surface' | 'entity' | 'capability' | 'resource' | 'knowledge';
|
|
1222
|
+
type OrganizationGraphNodeKind = 'organization' | 'feature' | 'surface' | 'entity' | 'capability' | 'stage' | 'resource' | 'knowledge';
|
|
1223
1223
|
type OrganizationGraphEdgeKind = 'contains' | 'references' | 'exposes' | 'maps_to' | 'operates-on' | 'uses' | 'governs';
|
|
1224
1224
|
|
|
1225
1225
|
interface OrganizationGraphNode {
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NodeDescribeShell, NodeMetadataFooter, EdgeRelationshipGroup, NodeHeader, getKnowledgeIconToken, KindChip, KeyField } from '../chunk-
|
|
2
|
-
export { EdgeRelationshipGroup, KNOWLEDGE_ICON_TOKEN_BY_KIND, KindChip, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, RelatedKnowledgeSection, getKnowledgeIconToken } from '../chunk-
|
|
1
|
+
import { NodeDescribeShell, NodeMetadataFooter, EdgeRelationshipGroup, NodeHeader, getKnowledgeIconToken, KindChip, KeyField, EdgeChip, EdgeGroup } from '../chunk-CLUP5H3C.js';
|
|
2
|
+
export { EdgeRelationshipGroup, KNOWLEDGE_ICON_TOKEN_BY_KIND, KindChip, KnowledgeSearchBar, KnowledgeTree, NodeDescribeShell, NodeHeader, NodeMetadataFooter, RelatedKnowledgeSection, getKnowledgeIconToken } from '../chunk-CLUP5H3C.js';
|
|
3
3
|
import '../chunk-X2SUMO3P.js';
|
|
4
4
|
import '../chunk-JDNEWB5F.js';
|
|
5
5
|
import { SemanticIcon } from '../chunk-JCGD4GM6.js';
|
|
@@ -5581,6 +5581,47 @@ function OrganizationDescribeView({
|
|
|
5581
5581
|
}
|
|
5582
5582
|
);
|
|
5583
5583
|
}
|
|
5584
|
+
function CapabilityDescribeView({ node, graph, knowledgeNodes, onNavigateToNode }) {
|
|
5585
|
+
const workflowEdge = graph.edges.find((e) => e.kind === "maps_to" && e.sourceId === node.id);
|
|
5586
|
+
const usedByStageIds = graph.edges.filter((e) => e.kind === "uses" && e.targetId === node.id).map((e) => e.sourceId).filter((id, i, arr) => arr.indexOf(id) === i);
|
|
5587
|
+
return /* @__PURE__ */ jsx(
|
|
5588
|
+
NodeDescribeShell,
|
|
5589
|
+
{
|
|
5590
|
+
header: /* @__PURE__ */ jsx(NodeHeader, { title: node.label, kind: node.kind, description: node.description }),
|
|
5591
|
+
content: /* @__PURE__ */ jsx(Stack, { gap: 4, children: node.sourceId && /* @__PURE__ */ jsx(KeyField, { label: "Capability ID", value: node.sourceId }) }),
|
|
5592
|
+
relationships: /* @__PURE__ */ jsxs(Stack, { gap: "xs", children: [
|
|
5593
|
+
workflowEdge && /* @__PURE__ */ jsxs(Stack, { gap: 4, children: [
|
|
5594
|
+
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", fw: 500, children: "Workflow" }),
|
|
5595
|
+
/* @__PURE__ */ jsx(
|
|
5596
|
+
EdgeChip,
|
|
5597
|
+
{
|
|
5598
|
+
id: workflowEdge.targetId,
|
|
5599
|
+
onClick: onNavigateToNode ? () => onNavigateToNode(workflowEdge.targetId) : void 0
|
|
5600
|
+
}
|
|
5601
|
+
)
|
|
5602
|
+
] }),
|
|
5603
|
+
usedByStageIds.length > 0 && /* @__PURE__ */ jsx(
|
|
5604
|
+
EdgeGroup,
|
|
5605
|
+
{
|
|
5606
|
+
label: `Used by stages (${usedByStageIds.length})`,
|
|
5607
|
+
ids: usedByStageIds,
|
|
5608
|
+
onNavigateToNode
|
|
5609
|
+
}
|
|
5610
|
+
),
|
|
5611
|
+
/* @__PURE__ */ jsx(
|
|
5612
|
+
EdgeRelationshipGroup,
|
|
5613
|
+
{
|
|
5614
|
+
nodeId: node.id,
|
|
5615
|
+
graph,
|
|
5616
|
+
knowledgeNodes,
|
|
5617
|
+
onNavigateToNode
|
|
5618
|
+
}
|
|
5619
|
+
)
|
|
5620
|
+
] }),
|
|
5621
|
+
footer: /* @__PURE__ */ jsx(NodeMetadataFooter, { node })
|
|
5622
|
+
}
|
|
5623
|
+
);
|
|
5624
|
+
}
|
|
5584
5625
|
function ResourceDescribeView({ node, graph, knowledgeNodes, onNavigateToNode }) {
|
|
5585
5626
|
return /* @__PURE__ */ jsx(
|
|
5586
5627
|
NodeDescribeShell,
|
|
@@ -5607,6 +5648,45 @@ function ResourceDescribeView({ node, graph, knowledgeNodes, onNavigateToNode })
|
|
|
5607
5648
|
}
|
|
5608
5649
|
);
|
|
5609
5650
|
}
|
|
5651
|
+
function StageDescribeView({ node, graph, knowledgeNodes, onNavigateToNode }) {
|
|
5652
|
+
const capabilityIds = graph.edges.filter((e) => e.kind === "uses" && e.sourceId === node.id).map((e) => e.targetId).filter((id, i, arr) => arr.indexOf(id) === i);
|
|
5653
|
+
const dependsOnStageIds = graph.edges.filter((e) => e.kind === "references" && e.sourceId === node.id).map((e) => e.targetId).filter((id, i, arr) => arr.indexOf(id) === i);
|
|
5654
|
+
return /* @__PURE__ */ jsx(
|
|
5655
|
+
NodeDescribeShell,
|
|
5656
|
+
{
|
|
5657
|
+
header: /* @__PURE__ */ jsx(NodeHeader, { title: node.label, kind: node.kind, description: node.description }),
|
|
5658
|
+
content: /* @__PURE__ */ jsx(Stack, { gap: 4, children: node.sourceId && /* @__PURE__ */ jsx(KeyField, { label: "Stage Key", value: node.sourceId }) }),
|
|
5659
|
+
relationships: /* @__PURE__ */ jsxs(Stack, { gap: "xs", children: [
|
|
5660
|
+
capabilityIds.length > 0 && /* @__PURE__ */ jsx(
|
|
5661
|
+
EdgeGroup,
|
|
5662
|
+
{
|
|
5663
|
+
label: `Capabilities (${capabilityIds.length})`,
|
|
5664
|
+
ids: capabilityIds,
|
|
5665
|
+
onNavigateToNode
|
|
5666
|
+
}
|
|
5667
|
+
),
|
|
5668
|
+
dependsOnStageIds.length > 0 && /* @__PURE__ */ jsx(
|
|
5669
|
+
EdgeGroup,
|
|
5670
|
+
{
|
|
5671
|
+
label: `Depends on (${dependsOnStageIds.length})`,
|
|
5672
|
+
ids: dependsOnStageIds,
|
|
5673
|
+
onNavigateToNode
|
|
5674
|
+
}
|
|
5675
|
+
),
|
|
5676
|
+
/* @__PURE__ */ jsx(
|
|
5677
|
+
EdgeRelationshipGroup,
|
|
5678
|
+
{
|
|
5679
|
+
nodeId: node.id,
|
|
5680
|
+
graph,
|
|
5681
|
+
knowledgeNodes,
|
|
5682
|
+
onNavigateToNode
|
|
5683
|
+
}
|
|
5684
|
+
)
|
|
5685
|
+
] }),
|
|
5686
|
+
footer: /* @__PURE__ */ jsx(NodeMetadataFooter, { node })
|
|
5687
|
+
}
|
|
5688
|
+
);
|
|
5689
|
+
}
|
|
5610
5690
|
function resolveKnowledgeNode(graphNode, knowledgeNodes) {
|
|
5611
5691
|
const knowledgeId = graphNode.sourceId ?? graphNode.id.replace(/^knowledge:/, "");
|
|
5612
5692
|
return knowledgeNodes.find((knowledgeNode) => knowledgeNode.id === knowledgeId);
|
|
@@ -5672,6 +5752,26 @@ function DescribeNodeView({ node, graph, knowledgeNodes = [], onNavigateToNode }
|
|
|
5672
5752
|
onNavigateToNode
|
|
5673
5753
|
}
|
|
5674
5754
|
) });
|
|
5755
|
+
case "stage":
|
|
5756
|
+
return /* @__PURE__ */ jsx(GraphNodeFrame, { children: /* @__PURE__ */ jsx(
|
|
5757
|
+
StageDescribeView,
|
|
5758
|
+
{
|
|
5759
|
+
node,
|
|
5760
|
+
graph,
|
|
5761
|
+
knowledgeNodes,
|
|
5762
|
+
onNavigateToNode
|
|
5763
|
+
}
|
|
5764
|
+
) });
|
|
5765
|
+
case "capability":
|
|
5766
|
+
return /* @__PURE__ */ jsx(GraphNodeFrame, { children: /* @__PURE__ */ jsx(
|
|
5767
|
+
CapabilityDescribeView,
|
|
5768
|
+
{
|
|
5769
|
+
node,
|
|
5770
|
+
graph,
|
|
5771
|
+
knowledgeNodes,
|
|
5772
|
+
onNavigateToNode
|
|
5773
|
+
}
|
|
5774
|
+
) });
|
|
5675
5775
|
default:
|
|
5676
5776
|
return /* @__PURE__ */ jsx(GraphNodeFrame, { children: /* @__PURE__ */ jsx(
|
|
5677
5777
|
GenericDescribeView,
|
package/dist/provider/index.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
export { createTestFeaturesProvider } from '../chunk-VMJVQAFZ.js';
|
|
2
|
-
export { ElevasisUIProvider } from '../chunk-
|
|
2
|
+
export { ElevasisUIProvider } from '../chunk-OIMPGKDB.js';
|
|
3
3
|
import '../chunk-LH4GPYDX.js';
|
|
4
4
|
import '../chunk-HLFFKKT3.js';
|
|
5
5
|
import '../chunk-WLOQ4IBG.js';
|
|
6
|
-
export { FeatureShell } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
export { FeatureShell } from '../chunk-Y3YJKKEB.js';
|
|
7
|
+
import '../chunk-6WXDE5LZ.js';
|
|
8
8
|
import '../chunk-3KMDHCAR.js';
|
|
9
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-
|
|
9
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, useCrmActions, useListActions, useNotificationAdapter } from '../chunk-OWESKPTJ.js';
|
|
10
10
|
import '../chunk-SZHARWKU.js';
|
|
11
11
|
export { ElevasisFeaturesProvider, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-V3HUIZJX.js';
|
|
12
12
|
import '../chunk-TKAYX2SP.js';
|
|
13
13
|
import '../chunk-NYBEU5TE.js';
|
|
14
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-7E3FUTND.js';
|
|
15
15
|
import '../chunk-2IFYDILW.js';
|
|
16
16
|
import '../chunk-Q7DJKLEN.js';
|
|
17
17
|
import '../chunk-GESXCQWY.js';
|
|
@@ -20,7 +20,7 @@ export { AppearanceProvider, useAppearance } from '../chunk-E565XMTQ.js';
|
|
|
20
20
|
import '../chunk-KU7ZDWQ7.js';
|
|
21
21
|
import '../chunk-DT3QYZVU.js';
|
|
22
22
|
import '../chunk-RNP5R5I3.js';
|
|
23
|
-
import '../chunk-
|
|
23
|
+
import '../chunk-HXZQWMKE.js';
|
|
24
24
|
import '../chunk-KRWALB24.js';
|
|
25
25
|
import '../chunk-WFTNY755.js';
|
|
26
26
|
import '../chunk-WKJ47GIW.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { FeatureShell } from '../chunk-
|
|
2
|
-
import '../chunk-
|
|
1
|
+
export { FeatureShell } from '../chunk-Y3YJKKEB.js';
|
|
2
|
+
import '../chunk-6WXDE5LZ.js';
|
|
3
3
|
import '../chunk-3KMDHCAR.js';
|
|
4
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
4
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-OWESKPTJ.js';
|
|
5
5
|
import '../chunk-SZHARWKU.js';
|
|
6
6
|
export { ElevasisFeaturesProvider, useElevasisFeatures, useOptionalElevasisFeatures } from '../chunk-V3HUIZJX.js';
|
|
7
7
|
import '../chunk-TKAYX2SP.js';
|
|
8
8
|
import '../chunk-NYBEU5TE.js';
|
|
9
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-7E3FUTND.js';
|
|
10
10
|
import '../chunk-2IFYDILW.js';
|
|
11
11
|
import '../chunk-Q7DJKLEN.js';
|
|
12
12
|
import '../chunk-GESXCQWY.js';
|
|
@@ -15,7 +15,7 @@ export { AppearanceProvider, useAppearance } from '../chunk-E565XMTQ.js';
|
|
|
15
15
|
import '../chunk-KU7ZDWQ7.js';
|
|
16
16
|
import '../chunk-DT3QYZVU.js';
|
|
17
17
|
import '../chunk-RNP5R5I3.js';
|
|
18
|
-
import '../chunk-
|
|
18
|
+
import '../chunk-HXZQWMKE.js';
|
|
19
19
|
import '../chunk-KRWALB24.js';
|
|
20
20
|
import '../chunk-WFTNY755.js';
|
|
21
21
|
import '../chunk-WKJ47GIW.js';
|
package/dist/test-utils/index.js
CHANGED
|
@@ -3,8 +3,8 @@ export { handlers, server } from '../chunk-7XKCG5CT.js';
|
|
|
3
3
|
import { mockWorkOSUser, mockUseAuth, mockUnauthenticatedUser, mockAuthenticatedUser, mockAuthLoading, createMockUseAuth } from '../chunk-DRQPEMJI.js';
|
|
4
4
|
export { createMockUseAuth, mockAuthLoading, mockAuthenticatedUser, mockUnauthenticatedUser, mockUseAuth, mockWorkOSUser } from '../chunk-DRQPEMJI.js';
|
|
5
5
|
import '../chunk-XCYKC6OZ.js';
|
|
6
|
-
import { ApiClientProvider } from '../chunk-
|
|
7
|
-
import '../chunk-
|
|
6
|
+
import { ApiClientProvider } from '../chunk-7E3FUTND.js';
|
|
7
|
+
import '../chunk-HXZQWMKE.js';
|
|
8
8
|
import '../chunk-KRWALB24.js';
|
|
9
9
|
import '../chunk-DD3CCMCZ.js';
|
|
10
10
|
import { ElevasisServiceProvider } from '../chunk-5WWZXCS5.js';
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -317,8 +317,6 @@ declare const LIMIT_ACTIVITY_FEED = 50;
|
|
|
317
317
|
declare const DEBOUNCE_FILTER = 150;
|
|
318
318
|
/** Slider input debounce delay (500ms). */
|
|
319
319
|
declare const DEBOUNCE_SLIDER = 500;
|
|
320
|
-
/** OAuth popup closed-check polling interval (500ms). */
|
|
321
|
-
declare const OAUTH_POPUP_CHECK_INTERVAL = 500;
|
|
322
320
|
/** OAuth flow maximum duration before timeout (5 min). */
|
|
323
321
|
declare const OAUTH_FLOW_TIMEOUT = 300000;
|
|
324
322
|
|
|
@@ -343,5 +341,5 @@ declare function restoreConsole(): void;
|
|
|
343
341
|
|
|
344
342
|
declare function setupBrowserMocks(): void;
|
|
345
343
|
|
|
346
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT,
|
|
344
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceStatusColors, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, 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 };
|
|
347
345
|
export type { TablerIcon };
|
package/dist/utils/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT,
|
|
1
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, 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, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, 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-HXZQWMKE.js';
|
|
2
2
|
export { ResourceStatusColors } from '../chunk-KRWALB24.js';
|
|
3
3
|
import '../chunk-I2KLQ2HA.js';
|
package/dist/vite/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { knowledgePlugin } from '../chunk-
|
|
2
|
-
export { knowledgePlugin } from '../chunk-
|
|
1
|
+
import { knowledgePlugin } from '../chunk-CN2HC4D4.js';
|
|
2
|
+
export { knowledgePlugin } from '../chunk-CN2HC4D4.js';
|
|
3
3
|
import '../chunk-I2KLQ2HA.js';
|
|
4
4
|
|
|
5
5
|
// src/vite/index.ts
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { knowledgePlugin } from '../chunk-
|
|
1
|
+
export { knowledgePlugin } from '../chunk-CN2HC4D4.js';
|
|
2
2
|
import '../chunk-I2KLQ2HA.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.29.0",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -248,10 +248,10 @@
|
|
|
248
248
|
"msw": "^2.11.0",
|
|
249
249
|
"vitest": "^3.2.4",
|
|
250
250
|
"@elevasis/sdk": "1.18.0",
|
|
251
|
-
"@repo/core": "0.
|
|
252
|
-
"@repo/
|
|
251
|
+
"@repo/core": "0.20.0",
|
|
252
|
+
"@repo/elevasis-core": "1.0.0",
|
|
253
253
|
"@repo/eslint-config": "0.0.0",
|
|
254
|
-
"@repo/
|
|
254
|
+
"@repo/typescript-config": "0.0.0"
|
|
255
255
|
},
|
|
256
256
|
"dependencies": {
|
|
257
257
|
"@dagrejs/dagre": "^1.1.4",
|