@elevasis/ui 1.11.2 → 1.13.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/{CoreAuthKitInner-3J4RVQO6.js → CoreAuthKitInner-I32JCNE7.js} +1 -1
- package/dist/auth/context.js +1 -1
- package/dist/auth/index.js +5 -5
- package/dist/charts/index.js +9 -8
- package/dist/{chunk-WUQWCUCB.js → chunk-3VTC7OWU.js} +2 -2
- package/dist/{chunk-KPRCFAI4.js → chunk-4HLCZVS6.js} +8 -33
- package/dist/{chunk-AQZGGSZZ.js → chunk-4TWGUI3L.js} +30 -8
- package/dist/{chunk-THXI3CDT.js → chunk-7RAT54LF.js} +9 -276
- package/dist/{chunk-FWZJH3TL.js → chunk-ALA56RGZ.js} +1 -1
- package/dist/{chunk-GZVH423C.js → chunk-BK4EIWNU.js} +11 -5
- package/dist/{chunk-7PLEQFHO.js → chunk-BRJ3QZ4E.js} +1 -1
- package/dist/{chunk-7NX3WNBO.js → chunk-C27S6IIV.js} +4 -4
- package/dist/{chunk-3PURTICE.js → chunk-CKFTPEBC.js} +2 -2
- package/dist/{chunk-ARZM3OTI.js → chunk-EQNXEBGZ.js} +1 -1
- package/dist/{chunk-3I2LOKQU.js → chunk-GU46QC4Z.js} +2 -2
- package/dist/{chunk-2YBPRE6H.js → chunk-HGNP6EVB.js} +3 -4
- package/dist/{chunk-564T2YKH.js → chunk-HLZMP7GN.js} +45 -24
- package/dist/chunk-HRG3KPL6.js +295 -0
- package/dist/{chunk-JGJSZ3UE.js → chunk-NJJ3NQ7B.js} +1 -1
- package/dist/{chunk-CC6BRHQK.js → chunk-RM6ACTB3.js} +2 -2
- package/dist/chunk-SZHARWKU.js +15 -0
- package/dist/{chunk-6TMW6VQ2.js → chunk-V5GGPIDD.js} +2 -2
- package/dist/{chunk-YGYF6G7W.js → chunk-YHTK43DV.js} +1 -11
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +69 -27
- package/dist/execution/index.d.ts +2 -0
- package/dist/hooks/index.css +45 -0
- package/dist/hooks/index.d.ts +19 -3
- package/dist/hooks/index.js +14 -12
- package/dist/hooks/published.css +45 -0
- package/dist/hooks/published.d.ts +17 -1
- package/dist/hooks/published.js +13 -11
- package/dist/index.css +45 -0
- package/dist/index.d.ts +69 -63
- package/dist/index.js +16 -14
- package/dist/initialization/index.js +4 -4
- package/dist/layout/index.d.ts +6 -2
- package/dist/layout/index.js +4 -2
- package/dist/organization/index.d.ts +5 -2
- package/dist/organization/index.js +4 -4
- package/dist/profile/index.d.ts +14 -4
- package/dist/profile/index.js +2 -2
- package/dist/provider/index.css +45 -0
- package/dist/provider/index.d.ts +34 -57
- package/dist/provider/index.js +8 -6
- package/dist/provider/published.css +44 -0
- package/dist/provider/published.d.ts +32 -27
- package/dist/provider/published.js +7 -5
- package/dist/supabase/index.js +2 -2
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/hooks/index.css
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
/* src/components/display/ElevasisLoader.module.css */
|
|
2
|
+
.wrapper {
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
width: var(--loader-size);
|
|
7
|
+
height: var(--loader-size);
|
|
8
|
+
overflow: visible;
|
|
9
|
+
}
|
|
10
|
+
.loader {
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
display: block;
|
|
14
|
+
overflow: visible;
|
|
15
|
+
}
|
|
16
|
+
.chevron {
|
|
17
|
+
stroke: var(--loader-color);
|
|
18
|
+
stroke-width: 2;
|
|
19
|
+
stroke-linecap: square;
|
|
20
|
+
stroke-linejoin: miter;
|
|
21
|
+
fill: none;
|
|
22
|
+
opacity: 0.15;
|
|
23
|
+
animation: chevronPulse 2s ease-in-out infinite;
|
|
24
|
+
filter: drop-shadow(0 0 1.5px var(--loader-color));
|
|
25
|
+
}
|
|
26
|
+
.c1 {
|
|
27
|
+
animation-delay: 0s;
|
|
28
|
+
}
|
|
29
|
+
.c2 {
|
|
30
|
+
animation-delay: 0.2s;
|
|
31
|
+
}
|
|
32
|
+
.c3 {
|
|
33
|
+
animation-delay: 0.4s;
|
|
34
|
+
}
|
|
35
|
+
@keyframes chevronPulse {
|
|
36
|
+
0%, 100% {
|
|
37
|
+
opacity: 0.12;
|
|
38
|
+
filter: drop-shadow(0 0 1px var(--loader-color));
|
|
39
|
+
}
|
|
40
|
+
40%, 60% {
|
|
41
|
+
opacity: 1;
|
|
42
|
+
filter: drop-shadow(0 0 3px var(--loader-color));
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
1
46
|
/* src/theme/custom.css */
|
|
2
47
|
.mantine-Accordion-control:hover {
|
|
3
48
|
background-color: var(--color-surface-hover);
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -3945,6 +3945,8 @@ interface APIExecutionDetail$1 extends APIExecutionSummary$1 {
|
|
|
3945
3945
|
apiVersion?: string | null;
|
|
3946
3946
|
resourceVersion?: string | null;
|
|
3947
3947
|
sdkVersion?: string | null;
|
|
3948
|
+
isArchived?: boolean;
|
|
3949
|
+
archivedLogCount?: number;
|
|
3948
3950
|
}
|
|
3949
3951
|
|
|
3950
3952
|
/**
|
|
@@ -4487,6 +4489,8 @@ interface APIExecutionDetail extends APIExecutionSummary {
|
|
|
4487
4489
|
apiVersion?: string | null
|
|
4488
4490
|
resourceVersion?: string | null
|
|
4489
4491
|
sdkVersion?: string | null
|
|
4492
|
+
isArchived?: boolean
|
|
4493
|
+
archivedLogCount?: number
|
|
4490
4494
|
}
|
|
4491
4495
|
|
|
4492
4496
|
// API request/response types
|
|
@@ -4623,6 +4627,18 @@ declare function useResources(): _tanstack_react_query.UseQueryResult<{
|
|
|
4623
4627
|
*/
|
|
4624
4628
|
declare function useResourceDefinition(resourceId: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<AIResourceDefinition, Error>;
|
|
4625
4629
|
|
|
4630
|
+
interface ArchivedLogsState {
|
|
4631
|
+
logs: ExecutionLogMessage$1[] | null;
|
|
4632
|
+
isLoading: boolean;
|
|
4633
|
+
error: string | null;
|
|
4634
|
+
fetch: () => void;
|
|
4635
|
+
}
|
|
4636
|
+
/**
|
|
4637
|
+
* Hook to fetch archived execution logs from storage on demand.
|
|
4638
|
+
* Returns logs as null until explicitly fetched via the fetch() callback.
|
|
4639
|
+
*/
|
|
4640
|
+
declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
|
|
4641
|
+
|
|
4626
4642
|
interface UseActivitiesParams {
|
|
4627
4643
|
limit?: number;
|
|
4628
4644
|
offset?: number;
|
|
@@ -6112,7 +6128,7 @@ declare function useUpdateWebhookEndpoint(): _tanstack_react_query.UseMutationRe
|
|
|
6112
6128
|
* Provides a ready-to-use apiRequest function and organization state.
|
|
6113
6129
|
*
|
|
6114
6130
|
* For standalone usage (testing, embedding), use ElevasisServiceProvider directly.
|
|
6115
|
-
* For standard SDK usage,
|
|
6131
|
+
* For standard SDK usage, ElevasisUIProvider composes this automatically when apiUrl is provided.
|
|
6116
6132
|
*/
|
|
6117
6133
|
interface ElevasisServiceContextValue {
|
|
6118
6134
|
apiRequest: <T>(endpoint: string, options?: RequestInit) => Promise<T>;
|
|
@@ -6124,7 +6140,7 @@ interface ElevasisServiceContextValue {
|
|
|
6124
6140
|
* Hook to access the ElevasisServiceProvider context.
|
|
6125
6141
|
* Provides apiRequest, organizationId, and isReady.
|
|
6126
6142
|
*
|
|
6127
|
-
* Throws if used outside of an ElevasisServiceProvider or
|
|
6143
|
+
* Throws if used outside of an ElevasisServiceProvider or ElevasisUIProvider (with apiUrl).
|
|
6128
6144
|
*/
|
|
6129
6145
|
declare function useElevasisServices(): ElevasisServiceContextValue;
|
|
6130
6146
|
|
|
@@ -6542,5 +6558,5 @@ interface UseResourceExecutionsOptions {
|
|
|
6542
6558
|
*/
|
|
6543
6559
|
declare function useResourceExecutions({ resourceId, timeRange, enabled }: UseResourceExecutionsOptions): _tanstack_react_query.UseQueryResult<ResourceExecutionsResponse, Error>;
|
|
6544
6560
|
|
|
6545
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, createUseFeatureAccess, executionsKeys, filterByDomainFilters, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useArchiveSession, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
6561
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, createUseFeatureAccess, executionsKeys, filterByDomainFilters, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
6546
6562
|
export type { ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CostBreakdownItem, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter$1 as StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useOrganizationMembers, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-
|
|
2
|
-
export { OperationsService, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification } from '../chunk-
|
|
3
|
-
export { observabilityKeys, useErrorTrends } from '../chunk-
|
|
4
|
-
import '../chunk-
|
|
1
|
+
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteDeployment, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useOrganizationMembers, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateMemberConfig, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-C27S6IIV.js';
|
|
2
|
+
export { OperationsService, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification } from '../chunk-4TWGUI3L.js';
|
|
3
|
+
export { observabilityKeys, useErrorTrends } from '../chunk-EQNXEBGZ.js';
|
|
4
|
+
import '../chunk-NJJ3NQ7B.js';
|
|
5
5
|
import '../chunk-F6RBK7NJ.js';
|
|
6
|
-
import '../chunk-
|
|
6
|
+
import '../chunk-GU46QC4Z.js';
|
|
7
7
|
import '../chunk-RNP5R5I3.js';
|
|
8
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-4HLCZVS6.js';
|
|
9
9
|
import '../chunk-WNRHQAJA.js';
|
|
10
|
-
import '../chunk-
|
|
11
|
-
import '../chunk-
|
|
10
|
+
import '../chunk-HLZMP7GN.js';
|
|
11
|
+
import '../chunk-HRG3KPL6.js';
|
|
12
|
+
import '../chunk-SZHARWKU.js';
|
|
13
|
+
import '../chunk-HGNP6EVB.js';
|
|
12
14
|
import '../chunk-RULQSZYX.js';
|
|
13
15
|
export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-FCFLBMVI.js';
|
|
14
|
-
import '../chunk-
|
|
15
|
-
import '../chunk-
|
|
16
|
-
import '../chunk-
|
|
16
|
+
import '../chunk-ALA56RGZ.js';
|
|
17
|
+
import '../chunk-3VTC7OWU.js';
|
|
18
|
+
import '../chunk-BK4EIWNU.js';
|
|
17
19
|
import '../chunk-DD3CCMCZ.js';
|
|
18
|
-
import '../chunk-
|
|
20
|
+
import '../chunk-BRJ3QZ4E.js';
|
package/dist/hooks/published.css
CHANGED
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
/* src/components/display/ElevasisLoader.module.css */
|
|
2
|
+
.wrapper {
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
width: var(--loader-size);
|
|
7
|
+
height: var(--loader-size);
|
|
8
|
+
overflow: visible;
|
|
9
|
+
}
|
|
10
|
+
.loader {
|
|
11
|
+
width: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
display: block;
|
|
14
|
+
overflow: visible;
|
|
15
|
+
}
|
|
16
|
+
.chevron {
|
|
17
|
+
stroke: var(--loader-color);
|
|
18
|
+
stroke-width: 2;
|
|
19
|
+
stroke-linecap: square;
|
|
20
|
+
stroke-linejoin: miter;
|
|
21
|
+
fill: none;
|
|
22
|
+
opacity: 0.15;
|
|
23
|
+
animation: chevronPulse 2s ease-in-out infinite;
|
|
24
|
+
filter: drop-shadow(0 0 1.5px var(--loader-color));
|
|
25
|
+
}
|
|
26
|
+
.c1 {
|
|
27
|
+
animation-delay: 0s;
|
|
28
|
+
}
|
|
29
|
+
.c2 {
|
|
30
|
+
animation-delay: 0.2s;
|
|
31
|
+
}
|
|
32
|
+
.c3 {
|
|
33
|
+
animation-delay: 0.4s;
|
|
34
|
+
}
|
|
35
|
+
@keyframes chevronPulse {
|
|
36
|
+
0%, 100% {
|
|
37
|
+
opacity: 0.12;
|
|
38
|
+
filter: drop-shadow(0 0 1px var(--loader-color));
|
|
39
|
+
}
|
|
40
|
+
40%, 60% {
|
|
41
|
+
opacity: 1;
|
|
42
|
+
filter: drop-shadow(0 0 3px var(--loader-color));
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
1
46
|
/* src/theme/custom.css */
|
|
2
47
|
.mantine-Accordion-control:hover {
|
|
3
48
|
background-color: var(--color-surface-hover);
|
|
@@ -322,6 +322,8 @@ interface APIExecutionDetail$1 extends APIExecutionSummary$1 {
|
|
|
322
322
|
apiVersion?: string | null
|
|
323
323
|
resourceVersion?: string | null
|
|
324
324
|
sdkVersion?: string | null
|
|
325
|
+
isArchived?: boolean
|
|
326
|
+
archivedLogCount?: number
|
|
325
327
|
}
|
|
326
328
|
|
|
327
329
|
// API request/response types
|
|
@@ -4319,6 +4321,8 @@ interface APIExecutionDetail extends APIExecutionSummary {
|
|
|
4319
4321
|
apiVersion?: string | null;
|
|
4320
4322
|
resourceVersion?: string | null;
|
|
4321
4323
|
sdkVersion?: string | null;
|
|
4324
|
+
isArchived?: boolean;
|
|
4325
|
+
archivedLogCount?: number;
|
|
4322
4326
|
}
|
|
4323
4327
|
|
|
4324
4328
|
/**
|
|
@@ -4484,6 +4488,18 @@ declare function useResources(): _tanstack_react_query.UseQueryResult<{
|
|
|
4484
4488
|
*/
|
|
4485
4489
|
declare function useResourceDefinition(resourceId: string, enabled?: boolean): _tanstack_react_query.UseQueryResult<AIResourceDefinition, Error>;
|
|
4486
4490
|
|
|
4491
|
+
interface ArchivedLogsState {
|
|
4492
|
+
logs: ExecutionLogMessage[] | null;
|
|
4493
|
+
isLoading: boolean;
|
|
4494
|
+
error: string | null;
|
|
4495
|
+
fetch: () => void;
|
|
4496
|
+
}
|
|
4497
|
+
/**
|
|
4498
|
+
* Hook to fetch archived execution logs from storage on demand.
|
|
4499
|
+
* Returns logs as null until explicitly fetched via the fetch() callback.
|
|
4500
|
+
*/
|
|
4501
|
+
declare function useArchivedLogs(executionId: string | undefined): ArchivedLogsState;
|
|
4502
|
+
|
|
4487
4503
|
interface UseScheduledTasksOptions {
|
|
4488
4504
|
status?: 'active' | 'paused' | 'completed' | 'cancelled';
|
|
4489
4505
|
targetResourceType?: 'agent' | 'workflow';
|
|
@@ -5987,5 +6003,5 @@ declare function useSessionWebSocket(sessionId: string, apiUrl: string): {
|
|
|
5987
6003
|
lastTokenUsage: SessionTokenUsage | null;
|
|
5988
6004
|
};
|
|
5989
6005
|
|
|
5990
|
-
export { OperationsService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, createUseFeatureAccess, executionsKeys, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification };
|
|
6006
|
+
export { OperationsService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, createUseFeatureAccess, executionsKeys, isSessionCapable, observabilityKeys, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification };
|
|
5991
6007
|
export type { ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CostBreakdownItem, CreateScheduleInput, CreateSessionResponse, DeleteExecutionParams, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListSchedulesFilters, ListSchedulesResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
|
-
export { OperationsService, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification } from '../chunk-
|
|
2
|
-
export { observabilityKeys, useErrorTrends } from '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
export { OperationsService, createUseFeatureAccess, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateSchedule, useCreateSession, useDashboardMetrics, useDeleteExecution, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateSchedule, useWarningNotification } from '../chunk-4TWGUI3L.js';
|
|
2
|
+
export { observabilityKeys, useErrorTrends } from '../chunk-EQNXEBGZ.js';
|
|
3
|
+
import '../chunk-NJJ3NQ7B.js';
|
|
4
4
|
import '../chunk-F6RBK7NJ.js';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-GU46QC4Z.js';
|
|
6
6
|
import '../chunk-RNP5R5I3.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-4HLCZVS6.js';
|
|
8
8
|
import '../chunk-WNRHQAJA.js';
|
|
9
|
-
import '../chunk-
|
|
10
|
-
import '../chunk-
|
|
9
|
+
import '../chunk-HLZMP7GN.js';
|
|
10
|
+
import '../chunk-HRG3KPL6.js';
|
|
11
|
+
import '../chunk-SZHARWKU.js';
|
|
12
|
+
import '../chunk-HGNP6EVB.js';
|
|
11
13
|
import '../chunk-RULQSZYX.js';
|
|
12
14
|
export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-FCFLBMVI.js';
|
|
13
|
-
import '../chunk-
|
|
14
|
-
import '../chunk-
|
|
15
|
-
import '../chunk-
|
|
15
|
+
import '../chunk-ALA56RGZ.js';
|
|
16
|
+
import '../chunk-3VTC7OWU.js';
|
|
17
|
+
import '../chunk-BK4EIWNU.js';
|
|
16
18
|
import '../chunk-DD3CCMCZ.js';
|
|
17
|
-
import '../chunk-
|
|
19
|
+
import '../chunk-BRJ3QZ4E.js';
|
package/dist/index.css
CHANGED
|
@@ -386,6 +386,51 @@
|
|
|
386
386
|
}
|
|
387
387
|
}
|
|
388
388
|
|
|
389
|
+
/* src/components/display/ElevasisLoader.module.css */
|
|
390
|
+
.wrapper {
|
|
391
|
+
display: inline-flex;
|
|
392
|
+
align-items: center;
|
|
393
|
+
justify-content: center;
|
|
394
|
+
width: var(--loader-size);
|
|
395
|
+
height: var(--loader-size);
|
|
396
|
+
overflow: visible;
|
|
397
|
+
}
|
|
398
|
+
.loader {
|
|
399
|
+
width: 100%;
|
|
400
|
+
height: 100%;
|
|
401
|
+
display: block;
|
|
402
|
+
overflow: visible;
|
|
403
|
+
}
|
|
404
|
+
.chevron {
|
|
405
|
+
stroke: var(--loader-color);
|
|
406
|
+
stroke-width: 2;
|
|
407
|
+
stroke-linecap: square;
|
|
408
|
+
stroke-linejoin: miter;
|
|
409
|
+
fill: none;
|
|
410
|
+
opacity: 0.15;
|
|
411
|
+
animation: chevronPulse 2s ease-in-out infinite;
|
|
412
|
+
filter: drop-shadow(0 0 1.5px var(--loader-color));
|
|
413
|
+
}
|
|
414
|
+
.c1 {
|
|
415
|
+
animation-delay: 0s;
|
|
416
|
+
}
|
|
417
|
+
.c2 {
|
|
418
|
+
animation-delay: 0.2s;
|
|
419
|
+
}
|
|
420
|
+
.c3 {
|
|
421
|
+
animation-delay: 0.4s;
|
|
422
|
+
}
|
|
423
|
+
@keyframes chevronPulse {
|
|
424
|
+
0%, 100% {
|
|
425
|
+
opacity: 0.12;
|
|
426
|
+
filter: drop-shadow(0 0 1px var(--loader-color));
|
|
427
|
+
}
|
|
428
|
+
40%, 60% {
|
|
429
|
+
opacity: 1;
|
|
430
|
+
filter: drop-shadow(0 0 3px var(--loader-color));
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
389
434
|
/* src/theme/custom.css */
|
|
390
435
|
.mantine-Accordion-control:hover {
|
|
391
436
|
background-color: var(--color-surface-hover);
|