@elevasis/ui 2.2.1 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-F6RBK7NJ.js → chunk-22UVE3RA.js} +1 -1
- package/dist/{chunk-O6KZ46EJ.js → chunk-2VEXBZNO.js} +5 -5
- package/dist/{chunk-2JTCPVZX.js → chunk-3MQKSLZ7.js} +2 -2
- package/dist/{chunk-3WMJWXZY.js → chunk-47YILFON.js} +96 -68
- package/dist/{chunk-J5TBNCMD.js → chunk-IPRMGSCV.js} +4 -4
- package/dist/{chunk-MZPVNRPL.js → chunk-ISHNN42L.js} +134 -10
- package/dist/{chunk-LH7RCX4Y.js → chunk-JT7WDIZI.js} +2 -2
- package/dist/{chunk-JT3FN6TE.js → chunk-PEZ4WOPF.js} +2 -2
- package/dist/{chunk-YOZEGIZA.js → chunk-U2CEWNXK.js} +3893 -1559
- package/dist/{chunk-M66JAN7R.js → chunk-VNUOQQNY.js} +1 -1
- package/dist/{chunk-5KBVISVJ.js → chunk-WN764MR7.js} +3 -3
- package/dist/{chunk-PFONCU6C.js → chunk-ZG7MLOBE.js} +1 -1
- package/dist/components/index.css +17 -14
- package/dist/components/index.d.ts +12 -1
- package/dist/components/index.js +852 -43
- package/dist/features/auth/index.css +17 -14
- package/dist/features/dashboard/index.css +17 -14
- package/dist/features/dashboard/index.d.ts +4 -0
- package/dist/features/dashboard/index.js +7 -7
- package/dist/features/monitoring/index.css +17 -14
- package/dist/features/monitoring/index.d.ts +4 -0
- package/dist/features/monitoring/index.js +8 -8
- package/dist/features/operations/index.css +17 -14
- package/dist/features/operations/index.d.ts +26 -14
- package/dist/features/operations/index.js +9 -9
- package/dist/features/settings/index.css +17 -14
- package/dist/features/settings/index.d.ts +4 -0
- package/dist/features/settings/index.js +8 -8
- package/dist/graph/index.css +0 -14
- package/dist/graph/index.js +1 -1
- package/dist/hooks/index.css +17 -14
- package/dist/hooks/index.d.ts +4 -1
- package/dist/hooks/index.js +6 -6
- package/dist/hooks/published.css +17 -14
- package/dist/hooks/published.d.ts +4 -1
- package/dist/hooks/published.js +5 -5
- package/dist/index.css +17 -14
- package/dist/index.d.ts +307 -249
- package/dist/index.js +7 -7
- package/dist/provider/index.css +7 -0
- package/dist/provider/index.d.ts +58 -2
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +58 -2
- package/dist/provider/published.js +1 -1
- package/dist/theme/index.js +2 -2
- package/package.json +9 -3
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -269,6 +269,10 @@ interface FeatureModule {
|
|
|
269
269
|
navEntry?: FeatureNavEntry;
|
|
270
270
|
sidebar?: FeatureSidebarComponent;
|
|
271
271
|
subshellRoutes?: string[];
|
|
272
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
273
|
+
}
|
|
274
|
+
interface OrganizationGraphFeatureBridge {
|
|
275
|
+
surfaceId: string;
|
|
272
276
|
}
|
|
273
277
|
|
|
274
278
|
/**
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest } from '../../chunk-
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest } from '../../chunk-2VEXBZNO.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
3
|
import '../../chunk-KFICYU6S.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
|
-
import '../../chunk-
|
|
6
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
6
|
+
import '../../chunk-IPRMGSCV.js';
|
|
7
7
|
import '../../chunk-LXHZYSMQ.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-22UVE3RA.js';
|
|
9
9
|
import '../../chunk-XA34RETF.js';
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-JT7WDIZI.js';
|
|
11
|
+
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-ISHNN42L.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -141,6 +141,10 @@ interface FeatureModule {
|
|
|
141
141
|
navEntry?: FeatureNavEntry;
|
|
142
142
|
sidebar?: FeatureSidebarComponent;
|
|
143
143
|
subshellRoutes?: string[];
|
|
144
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
145
|
+
}
|
|
146
|
+
interface OrganizationGraphFeatureBridge {
|
|
147
|
+
surfaceId: string;
|
|
144
148
|
}
|
|
145
149
|
|
|
146
150
|
declare const monitoringManifest: FeatureModule;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-3MQKSLZ7.js';
|
|
2
2
|
import '../../chunk-PDHTXPSF.js';
|
|
3
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-ZG7MLOBE.js';
|
|
4
4
|
import '../../chunk-GBMNCNHX.js';
|
|
5
5
|
import '../../chunk-LGKLC5MG.js';
|
|
6
6
|
import '../../chunk-KFICYU6S.js';
|
|
7
7
|
import '../../chunk-YEX4MQSY.js';
|
|
8
|
-
import '../../chunk-
|
|
9
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
9
|
+
import '../../chunk-IPRMGSCV.js';
|
|
10
10
|
import '../../chunk-LXHZYSMQ.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-22UVE3RA.js';
|
|
12
12
|
import '../../chunk-XA34RETF.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-JT7WDIZI.js';
|
|
14
|
+
import '../../chunk-47YILFON.js';
|
|
15
15
|
import '../../chunk-CYXZHBP4.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-ISHNN42L.js';
|
|
17
17
|
import '../../chunk-RX4UWZZR.js';
|
|
18
18
|
import '../../chunk-Y3D3WFJG.js';
|
|
19
19
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -1626,6 +1626,18 @@ interface OperationsOverviewProps {
|
|
|
1626
1626
|
}
|
|
1627
1627
|
declare function OperationsOverview({ timeRange, onResourceClick, onErrorsNavigate, onCommandQueueNavigate, onScheduledTasksNavigate, renderTrendChart }: OperationsOverviewProps): react_jsx_runtime.JSX.Element;
|
|
1628
1628
|
|
|
1629
|
+
/**
|
|
1630
|
+
* Resource Registry type definitions
|
|
1631
|
+
*/
|
|
1632
|
+
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* All resource types in the platform
|
|
1637
|
+
* Used as the discriminator field in ResourceDefinition
|
|
1638
|
+
*/
|
|
1639
|
+
type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
|
|
1640
|
+
|
|
1629
1641
|
interface EventSourceMessage {
|
|
1630
1642
|
id: string;
|
|
1631
1643
|
event: string;
|
|
@@ -1678,6 +1690,10 @@ interface FeatureModule {
|
|
|
1678
1690
|
navEntry?: FeatureNavEntry;
|
|
1679
1691
|
sidebar?: FeatureSidebarComponent;
|
|
1680
1692
|
subshellRoutes?: string[];
|
|
1693
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
1694
|
+
}
|
|
1695
|
+
interface OrganizationGraphFeatureBridge {
|
|
1696
|
+
surfaceId: string;
|
|
1681
1697
|
}
|
|
1682
1698
|
|
|
1683
1699
|
interface ResourcesSidebarProps {
|
|
@@ -1717,18 +1733,6 @@ interface ResourceDetailPageProps {
|
|
|
1717
1733
|
}
|
|
1718
1734
|
declare function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel, onNavigateToResources, onNavigateToSessions, onNavigateBack }: ResourceDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1719
1735
|
|
|
1720
|
-
/**
|
|
1721
|
-
* Resource Registry type definitions
|
|
1722
|
-
*/
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
/**
|
|
1727
|
-
* All resource types in the platform
|
|
1728
|
-
* Used as the discriminator field in ResourceDefinition
|
|
1729
|
-
*/
|
|
1730
|
-
type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
|
|
1731
|
-
|
|
1732
1736
|
interface ExecuteAsyncResult {
|
|
1733
1737
|
executionId: string;
|
|
1734
1738
|
status: string;
|
|
@@ -1778,10 +1782,18 @@ interface CommandQueueDetailPageProps {
|
|
|
1778
1782
|
declare function CommandQueueDetailPage({ taskId, orgName, renderRichText, onNavigateBack, onViewExecution }: CommandQueueDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1779
1783
|
|
|
1780
1784
|
interface CommandViewPageProps {
|
|
1781
|
-
timeRange
|
|
1785
|
+
timeRange?: TimeRange;
|
|
1782
1786
|
}
|
|
1783
1787
|
declare function CommandViewPage({ timeRange }: CommandViewPageProps): react_jsx_runtime.JSX.Element;
|
|
1784
1788
|
|
|
1789
|
+
type OrganizationGraphLens = 'default' | 'command-view';
|
|
1790
|
+
|
|
1791
|
+
interface OrganizationGraphPageProps {
|
|
1792
|
+
lens?: OrganizationGraphLens;
|
|
1793
|
+
timeRange?: TimeRange;
|
|
1794
|
+
}
|
|
1795
|
+
declare function OrganizationGraphPage({ lens, timeRange }: OrganizationGraphPageProps): react_jsx_runtime.JSX.Element;
|
|
1796
|
+
|
|
1785
1797
|
interface CalibrationPageProps {
|
|
1786
1798
|
/** The resource this calibration tab is embedded within */
|
|
1787
1799
|
resourceId: string;
|
|
@@ -2201,5 +2213,5 @@ declare function CommandQueueShell({ selectedCheckpoint, onSelectCheckpoint, sta
|
|
|
2201
2213
|
|
|
2202
2214
|
declare const operationsManifest: FeatureModule;
|
|
2203
2215
|
|
|
2204
|
-
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest };
|
|
2216
|
+
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest };
|
|
2205
2217
|
export type { AgentExecutionPanelProps, AgentSessionGroupProps, CalibrationPageProps, CalibrationProgressProps, CalibrationProjectDetailPageProps, CalibrationProjectDetailPageRenderCreateModalArgs, CalibrationProjectDetailPageRenderRunCardArgs, CalibrationProjectsPageProps, CalibrationRunDetailPageProps, CalibrationSidebarProps, CommandQueueDetailPageProps, CommandQueueDetailPageRichTextArgs, CommandQueuePageProps, CommandQueueShellProps, CommandViewPageProps, CommandViewSidebarContentProps, ConversationViewSlotArgs, ExecuteWorkflowModalProps, ExecuteWorkflowModalResource, ExecutionPanelProps, OperationsOverviewProps, ResourceDetailPageProps, ResourceDetailPageRenderExecutionPanelArgs, ResourceExecuteDialogProps, ResourceExecuteFormProps, ResourcesPageProps, ResourcesSidebarProps, SessionChatAreaProps, SessionChatInterfaceProps, SessionChatPageProps, SessionDetailsSidebarProps, SessionExecutionLogsProps, SessionHeaderProps, SessionListItemProps, SessionsPageProps, SessionsSidebarProps, TaskFilterStatus, WorkflowExecutionPanelProps };
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-U2CEWNXK.js';
|
|
2
2
|
import '../../chunk-ROSMICXG.js';
|
|
3
3
|
import '../../chunk-OCP2MBTY.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-ZG7MLOBE.js';
|
|
5
5
|
import '../../chunk-GBMNCNHX.js';
|
|
6
|
-
export { OperationsOverview } from '../../chunk-
|
|
6
|
+
export { OperationsOverview } from '../../chunk-2VEXBZNO.js';
|
|
7
7
|
import '../../chunk-LGKLC5MG.js';
|
|
8
8
|
import '../../chunk-KFICYU6S.js';
|
|
9
9
|
import '../../chunk-YEX4MQSY.js';
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
11
|
+
import '../../chunk-IPRMGSCV.js';
|
|
12
12
|
import '../../chunk-LXHZYSMQ.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-22UVE3RA.js';
|
|
14
14
|
import '../../chunk-XA34RETF.js';
|
|
15
|
-
import '../../chunk-
|
|
16
|
-
import '../../chunk-
|
|
15
|
+
import '../../chunk-JT7WDIZI.js';
|
|
16
|
+
import '../../chunk-47YILFON.js';
|
|
17
17
|
import '../../chunk-CYXZHBP4.js';
|
|
18
|
-
import '../../chunk-
|
|
18
|
+
import '../../chunk-ISHNN42L.js';
|
|
19
19
|
import '../../chunk-RX4UWZZR.js';
|
|
20
20
|
import '../../chunk-Y3D3WFJG.js';
|
|
21
21
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
|
@@ -2833,6 +2833,10 @@ interface FeatureModule {
|
|
|
2833
2833
|
navEntry?: FeatureNavEntry;
|
|
2834
2834
|
sidebar?: FeatureSidebarComponent;
|
|
2835
2835
|
subshellRoutes?: string[];
|
|
2836
|
+
organizationGraph?: OrganizationGraphFeatureBridge;
|
|
2837
|
+
}
|
|
2838
|
+
interface OrganizationGraphFeatureBridge {
|
|
2839
|
+
surfaceId: string;
|
|
2836
2840
|
}
|
|
2837
2841
|
|
|
2838
2842
|
declare const settingsManifest: FeatureModule;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-WN764MR7.js';
|
|
2
2
|
import '../../chunk-PDHTXPSF.js';
|
|
3
3
|
import '../../chunk-GBMNCNHX.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
|
-
import '../../chunk-
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-VNUOQQNY.js';
|
|
6
|
+
import '../../chunk-PEZ4WOPF.js';
|
|
7
|
+
import '../../chunk-IPRMGSCV.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
-
import '../../chunk-
|
|
11
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-22UVE3RA.js';
|
|
10
|
+
import '../../chunk-JT7WDIZI.js';
|
|
11
|
+
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-ISHNN42L.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|
package/dist/graph/index.css
CHANGED
|
@@ -93,14 +93,6 @@
|
|
|
93
93
|
opacity: 0;
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
97
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
98
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
99
|
-
outline: none !important;
|
|
100
|
-
}
|
|
101
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
102
|
-
box-shadow: none;
|
|
103
|
-
}
|
|
104
96
|
.graphContainer {
|
|
105
97
|
position: relative;
|
|
106
98
|
background-image:
|
|
@@ -141,12 +133,6 @@
|
|
|
141
133
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
142
134
|
position: relative;
|
|
143
135
|
}
|
|
144
|
-
.node :global(.react-flow__node.selected),
|
|
145
|
-
.node :global(.react-flow__node:focus),
|
|
146
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
147
|
-
outline: none !important;
|
|
148
|
-
box-shadow: none !important;
|
|
149
|
-
}
|
|
150
136
|
.node:nth-child(1) {
|
|
151
137
|
animation-delay: 0.05s;
|
|
152
138
|
}
|
package/dist/graph/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from '../chunk-
|
|
1
|
+
export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from '../chunk-22UVE3RA.js';
|
package/dist/hooks/index.css
CHANGED
|
@@ -196,6 +196,13 @@
|
|
|
196
196
|
.recharts-surface:focus {
|
|
197
197
|
outline: none;
|
|
198
198
|
}
|
|
199
|
+
.hide-scrollbar {
|
|
200
|
+
scrollbar-width: none;
|
|
201
|
+
-ms-overflow-style: none;
|
|
202
|
+
}
|
|
203
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
204
|
+
display: none;
|
|
205
|
+
}
|
|
199
206
|
|
|
200
207
|
/* src/graph/Graph.module.css */
|
|
201
208
|
@keyframes edgeFlow {
|
|
@@ -292,14 +299,6 @@
|
|
|
292
299
|
opacity: 0;
|
|
293
300
|
}
|
|
294
301
|
}
|
|
295
|
-
.graphContainer :global(.react-flow__node.selected),
|
|
296
|
-
.graphContainer :global(.react-flow__node:focus),
|
|
297
|
-
.graphContainer :global(.react-flow__node:focus-visible) {
|
|
298
|
-
outline: none !important;
|
|
299
|
-
}
|
|
300
|
-
.graphContainer :global(.react-flow__node.selected > *) {
|
|
301
|
-
box-shadow: none;
|
|
302
|
-
}
|
|
303
302
|
.graphContainer {
|
|
304
303
|
position: relative;
|
|
305
304
|
background-image:
|
|
@@ -340,12 +339,6 @@
|
|
|
340
339
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
341
340
|
position: relative;
|
|
342
341
|
}
|
|
343
|
-
.node :global(.react-flow__node.selected),
|
|
344
|
-
.node :global(.react-flow__node:focus),
|
|
345
|
-
.node :global(.react-flow__node:focus-visible) {
|
|
346
|
-
outline: none !important;
|
|
347
|
-
box-shadow: none !important;
|
|
348
|
-
}
|
|
349
342
|
.node:nth-child(1) {
|
|
350
343
|
animation-delay: 0.05s;
|
|
351
344
|
}
|
|
@@ -584,3 +577,13 @@
|
|
|
584
577
|
transform: none;
|
|
585
578
|
}
|
|
586
579
|
}
|
|
580
|
+
|
|
581
|
+
/* src/graph/Graph.globals.css */
|
|
582
|
+
.elevasis-graph-root .react-flow__node.selected,
|
|
583
|
+
.elevasis-graph-root .react-flow__node:focus,
|
|
584
|
+
.elevasis-graph-root .react-flow__node:focus-visible {
|
|
585
|
+
outline: none !important;
|
|
586
|
+
}
|
|
587
|
+
.elevasis-graph-root .react-flow__node.selected > * {
|
|
588
|
+
box-shadow: none;
|
|
589
|
+
}
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -10340,6 +10340,9 @@ declare function useDeploymentDocs(selectedDeploymentId?: string): {
|
|
|
10340
10340
|
*/
|
|
10341
10341
|
declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<CommandViewData, Error>;
|
|
10342
10342
|
|
|
10343
|
+
interface UseCommandViewStatsOptions {
|
|
10344
|
+
enabled?: boolean;
|
|
10345
|
+
}
|
|
10343
10346
|
/**
|
|
10344
10347
|
* Fetches Command View stats for the current organization
|
|
10345
10348
|
*
|
|
@@ -10349,7 +10352,7 @@ declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<Comm
|
|
|
10349
10352
|
* @param timeRange - Time range for stats aggregation ('24h' or '7d')
|
|
10350
10353
|
* @returns TanStack Query result with CommandViewStatsResponse
|
|
10351
10354
|
*/
|
|
10352
|
-
declare function useCommandViewStats(timeRange?: StatsTimeRange): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
|
|
10355
|
+
declare function useCommandViewStats(timeRange?: StatsTimeRange, options?: UseCommandViewStatsOptions): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
|
|
10353
10356
|
|
|
10354
10357
|
/**
|
|
10355
10358
|
* Command View Types
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-
|
|
2
|
-
export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, 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, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-
|
|
1
|
+
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-PEZ4WOPF.js';
|
|
2
|
+
export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, 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, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-IPRMGSCV.js';
|
|
3
3
|
export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
|
|
4
|
-
import '../chunk-
|
|
5
|
-
import '../chunk-
|
|
6
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-22UVE3RA.js';
|
|
5
|
+
import '../chunk-JT7WDIZI.js';
|
|
6
|
+
import '../chunk-47YILFON.js';
|
|
7
7
|
import '../chunk-CYXZHBP4.js';
|
|
8
|
-
export { createUseFeatureAccess } from '../chunk-
|
|
8
|
+
export { createUseFeatureAccess } from '../chunk-ISHNN42L.js';
|
|
9
9
|
import '../chunk-RX4UWZZR.js';
|
|
10
10
|
import '../chunk-Y3D3WFJG.js';
|
|
11
11
|
import '../chunk-3KMDHCAR.js';
|