@elevasis/ui 2.4.1 → 2.6.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/{chunk-JT7WDIZI.js → chunk-4GZ6VZWO.js} +1 -1
- package/dist/{chunk-WSL5MNAI.js → chunk-6RGNVHG3.js} +6 -4
- package/dist/{chunk-WN764MR7.js → chunk-CC4WGHGG.js} +3 -2
- package/dist/{chunk-PEZ4WOPF.js → chunk-DQJM7T2N.js} +2 -2
- package/dist/{chunk-KRTZTBVP.js → chunk-FH5QGCXL.js} +8 -6
- package/dist/{chunk-2DZACNOX.js → chunk-MU5EZV3L.js} +5 -3
- package/dist/{chunk-ISHNN42L.js → chunk-O4PMRC6J.js} +223 -59
- package/dist/{chunk-ZG7MLOBE.js → chunk-PEDPD3PU.js} +1 -1
- package/dist/{chunk-5XGBMKUY.js → chunk-PHRDZFJT.js} +3 -3
- package/dist/{chunk-IPRMGSCV.js → chunk-POFDRPDI.js} +1 -1
- package/dist/{chunk-3ONP2CEB.js → chunk-X4BLH3JL.js} +6 -4
- package/dist/{chunk-J5KWNRSD.js → chunk-YIWLA2B6.js} +1 -0
- package/dist/{chunk-G3G2QEB6.js → chunk-ZB5PKIX5.js} +4 -13
- package/dist/components/index.d.ts +127 -105
- package/dist/components/index.js +16 -16
- package/dist/features/crm/index.d.ts +24 -0
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.d.ts +2 -37
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.d.ts +25 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +25 -1
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.d.ts +25 -0
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +83 -59
- package/dist/features/operations/index.js +7 -7
- package/dist/features/seo/index.d.ts +25 -0
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +24 -0
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +239 -239
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +169 -169
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +302 -254
- package/dist/index.js +4 -4
- package/dist/provider/index.d.ts +63 -15
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +63 -15
- package/dist/provider/published.js +1 -1
- package/dist/types/index.d.ts +134 -134
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ComponentType, ReactNode } from 'react';
|
|
3
2
|
import { z } from 'zod';
|
|
3
|
+
import { ComponentType, ReactNode } from 'react';
|
|
4
4
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
5
|
|
|
6
6
|
declare const LeadGenSidebar: () => react_jsx_runtime.JSX.Element;
|
|
@@ -143,6 +143,27 @@ type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
|
143
143
|
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
144
144
|
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
145
145
|
|
|
146
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
147
|
+
id: ModelIdSchema,
|
|
148
|
+
entityIds: ReferenceIdsSchema,
|
|
149
|
+
surfaceIds: ReferenceIdsSchema,
|
|
150
|
+
resourceIds: ReferenceIdsSchema,
|
|
151
|
+
capabilityIds: ReferenceIdsSchema
|
|
152
|
+
})
|
|
153
|
+
|
|
154
|
+
declare const FeatureKeySchema = z.enum([
|
|
155
|
+
'acquisition',
|
|
156
|
+
'delivery',
|
|
157
|
+
'operations',
|
|
158
|
+
'monitoring',
|
|
159
|
+
'settings',
|
|
160
|
+
'seo',
|
|
161
|
+
'calibration'
|
|
162
|
+
])
|
|
163
|
+
|
|
164
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
165
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
166
|
+
|
|
146
167
|
interface FeatureNavLink {
|
|
147
168
|
label: string;
|
|
148
169
|
link: string;
|
|
@@ -163,6 +184,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
163
184
|
interface FeatureModule {
|
|
164
185
|
key: string;
|
|
165
186
|
label?: string;
|
|
187
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
188
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
189
|
+
capabilityIds?: string[];
|
|
166
190
|
navEntry?: FeatureNavEntry;
|
|
167
191
|
sidebar?: FeatureSidebarComponent;
|
|
168
192
|
subshellRoutes?: string[];
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { CompanyDetailModal, ContactDetailModal, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, formatDate, getEnrichmentColor, getEnrichmentStatus, getStatusColor, leadGenManifest, useDeleteLists } from '../../chunk-X4BLH3JL.js';
|
|
2
|
+
import '../../chunk-FH5QGCXL.js';
|
|
3
3
|
import '../../chunk-ROSMICXG.js';
|
|
4
4
|
import '../../chunk-IDACMRGQ.js';
|
|
5
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-PEDPD3PU.js';
|
|
6
6
|
import '../../chunk-TUMSNGTX.js';
|
|
7
7
|
import '../../chunk-BZZCNLT6.js';
|
|
8
8
|
import '../../chunk-27COZ5AH.js';
|
|
9
9
|
import '../../chunk-PDHTXPSF.js';
|
|
10
10
|
import '../../chunk-GBMNCNHX.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-ZB5PKIX5.js';
|
|
12
12
|
import '../../chunk-LGKLC5MG.js';
|
|
13
13
|
import '../../chunk-KFICYU6S.js';
|
|
14
14
|
import '../../chunk-YEX4MQSY.js';
|
|
15
15
|
import '../../chunk-XA34RETF.js';
|
|
16
|
-
import '../../chunk-
|
|
17
|
-
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-
|
|
16
|
+
import '../../chunk-DQJM7T2N.js';
|
|
17
|
+
export { companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, useCompanies, useCompany, useContact, useContacts, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useUpdateCompany, useUpdateContact } from '../../chunk-POFDRPDI.js';
|
|
18
18
|
import '../../chunk-LXHZYSMQ.js';
|
|
19
19
|
import '../../chunk-22UVE3RA.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
21
21
|
import '../../chunk-47YILFON.js';
|
|
22
22
|
import '../../chunk-CYXZHBP4.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-O4PMRC6J.js';
|
|
24
24
|
import '../../chunk-RX4UWZZR.js';
|
|
25
25
|
import '../../chunk-Y3D3WFJG.js';
|
|
26
26
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { ComponentType } from 'react';
|
|
3
4
|
|
|
4
5
|
/**
|
|
@@ -118,6 +119,27 @@ interface NotificationCenterProps {
|
|
|
118
119
|
}
|
|
119
120
|
declare function NotificationCenter({ pageSize }: NotificationCenterProps): react_jsx_runtime.JSX.Element;
|
|
120
121
|
|
|
122
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
123
|
+
id: ModelIdSchema,
|
|
124
|
+
entityIds: ReferenceIdsSchema,
|
|
125
|
+
surfaceIds: ReferenceIdsSchema,
|
|
126
|
+
resourceIds: ReferenceIdsSchema,
|
|
127
|
+
capabilityIds: ReferenceIdsSchema
|
|
128
|
+
})
|
|
129
|
+
|
|
130
|
+
declare const FeatureKeySchema = z.enum([
|
|
131
|
+
'acquisition',
|
|
132
|
+
'delivery',
|
|
133
|
+
'operations',
|
|
134
|
+
'monitoring',
|
|
135
|
+
'settings',
|
|
136
|
+
'seo',
|
|
137
|
+
'calibration'
|
|
138
|
+
])
|
|
139
|
+
|
|
140
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
141
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
142
|
+
|
|
121
143
|
interface FeatureNavLink {
|
|
122
144
|
label: string;
|
|
123
145
|
link: string;
|
|
@@ -138,6 +160,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
138
160
|
interface FeatureModule {
|
|
139
161
|
key: string;
|
|
140
162
|
label?: string;
|
|
163
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
164
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
165
|
+
capabilityIds?: string[];
|
|
141
166
|
navEntry?: FeatureNavEntry;
|
|
142
167
|
sidebar?: FeatureSidebarComponent;
|
|
143
168
|
subshellRoutes?: string[];
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-PHRDZFJT.js';
|
|
2
|
+
import '../../chunk-PEDPD3PU.js';
|
|
3
3
|
import '../../chunk-PDHTXPSF.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
8
|
import '../../chunk-XA34RETF.js';
|
|
9
|
-
import '../../chunk-
|
|
10
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-DQJM7T2N.js';
|
|
10
|
+
import '../../chunk-POFDRPDI.js';
|
|
11
11
|
import '../../chunk-LXHZYSMQ.js';
|
|
12
12
|
import '../../chunk-22UVE3RA.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
14
14
|
import '../../chunk-47YILFON.js';
|
|
15
15
|
import '../../chunk-CYXZHBP4.js';
|
|
16
|
-
import '../../chunk-
|
|
16
|
+
import '../../chunk-O4PMRC6J.js';
|
|
17
17
|
import '../../chunk-RX4UWZZR.js';
|
|
18
18
|
import '../../chunk-Y3D3WFJG.js';
|
|
19
19
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1626,6 +1626,43 @@ interface OperationsOverviewProps {
|
|
|
1626
1626
|
}
|
|
1627
1627
|
declare function OperationsOverview({ timeRange, onResourceClick, onErrorsNavigate, onCommandQueueNavigate, onScheduledTasksNavigate, renderTrendChart }: OperationsOverviewProps): react_jsx_runtime.JSX.Element;
|
|
1628
1628
|
|
|
1629
|
+
interface ResourcesSidebarProps {
|
|
1630
|
+
timeRange: TimeRange;
|
|
1631
|
+
}
|
|
1632
|
+
/**
|
|
1633
|
+
* Resources sidebar - shows execution health donut, domain filters and search
|
|
1634
|
+
*/
|
|
1635
|
+
declare function ResourcesSidebar({ timeRange }: ResourcesSidebarProps): react_jsx_runtime.JSX.Element;
|
|
1636
|
+
|
|
1637
|
+
interface ResourceDetailPageRenderExecutionPanelArgs {
|
|
1638
|
+
resourceId: string;
|
|
1639
|
+
resourceType: ResourceType$1;
|
|
1640
|
+
resourceName: string;
|
|
1641
|
+
resourceDefinition: AIResourceDefinition;
|
|
1642
|
+
onConnectionStatus: (connected: boolean, count: number) => void;
|
|
1643
|
+
}
|
|
1644
|
+
interface ResourceDetailPageProps {
|
|
1645
|
+
/** Resource type (workflow, agent, etc.) */
|
|
1646
|
+
type: ResourceType$1;
|
|
1647
|
+
/** Resource identifier */
|
|
1648
|
+
resourceId: string;
|
|
1649
|
+
/** Current time range value — caller passes from its own store */
|
|
1650
|
+
timeRange: TimeRange;
|
|
1651
|
+
/**
|
|
1652
|
+
* Render-prop slot for the consumer's ExecutionPanel. The shared layout owns connection
|
|
1653
|
+
* state and passes it to the slot via `onConnectionStatus`. The resolved
|
|
1654
|
+
* `resourceDefinition` is threaded through so the execution panel does not refetch.
|
|
1655
|
+
*/
|
|
1656
|
+
renderExecutionPanel: (args: ResourceDetailPageRenderExecutionPanelArgs) => ReactNode;
|
|
1657
|
+
/** Override "Resources" back-link in the header. Defaults to `/operations/resources`. */
|
|
1658
|
+
onNavigateToResources?: () => void;
|
|
1659
|
+
/** Override "Go to Sessions" link in the header. Defaults to `/operations/sessions?agent=<resourceId>`. */
|
|
1660
|
+
onNavigateToSessions?: () => void;
|
|
1661
|
+
/** Override "Back to Operations" in the not-found state. Defaults to `/operations`. */
|
|
1662
|
+
onNavigateBack?: () => void;
|
|
1663
|
+
}
|
|
1664
|
+
declare function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel, onNavigateToResources, onNavigateToSessions, onNavigateBack }: ResourceDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1665
|
+
|
|
1629
1666
|
/**
|
|
1630
1667
|
* Resource Registry type definitions
|
|
1631
1668
|
*/
|
|
@@ -1638,6 +1675,12 @@ declare function OperationsOverview({ timeRange, onResourceClick, onErrorsNaviga
|
|
|
1638
1675
|
*/
|
|
1639
1676
|
type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
|
|
1640
1677
|
|
|
1678
|
+
interface ExecuteAsyncResult {
|
|
1679
|
+
executionId: string;
|
|
1680
|
+
status: string;
|
|
1681
|
+
resourceId: string;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1641
1684
|
interface EventSourceMessage {
|
|
1642
1685
|
id: string;
|
|
1643
1686
|
event: string;
|
|
@@ -1667,6 +1710,43 @@ interface SSEConnectionManagerLike {
|
|
|
1667
1710
|
}>;
|
|
1668
1711
|
}
|
|
1669
1712
|
|
|
1713
|
+
interface UseExecutionPanelStateOptions {
|
|
1714
|
+
resourceId: string;
|
|
1715
|
+
manager: SSEConnectionManagerLike;
|
|
1716
|
+
/**
|
|
1717
|
+
* Base URL of the API server (e.g. 'https://api.elevasis.io' or 'http://localhost:5170').
|
|
1718
|
+
* Provided by the consuming app -- the library does not read environment variables directly.
|
|
1719
|
+
*/
|
|
1720
|
+
apiUrl: string;
|
|
1721
|
+
limit?: number;
|
|
1722
|
+
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
1723
|
+
selectedId?: string | null;
|
|
1724
|
+
onSelectedIdChange?: (id: string | null) => void;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
type TaskFilterStatus = 'all' | 'pending' | 'completed' | 'expired';
|
|
1728
|
+
|
|
1729
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
1730
|
+
id: ModelIdSchema,
|
|
1731
|
+
entityIds: ReferenceIdsSchema,
|
|
1732
|
+
surfaceIds: ReferenceIdsSchema,
|
|
1733
|
+
resourceIds: ReferenceIdsSchema,
|
|
1734
|
+
capabilityIds: ReferenceIdsSchema
|
|
1735
|
+
})
|
|
1736
|
+
|
|
1737
|
+
declare const FeatureKeySchema = z.enum([
|
|
1738
|
+
'acquisition',
|
|
1739
|
+
'delivery',
|
|
1740
|
+
'operations',
|
|
1741
|
+
'monitoring',
|
|
1742
|
+
'settings',
|
|
1743
|
+
'seo',
|
|
1744
|
+
'calibration'
|
|
1745
|
+
])
|
|
1746
|
+
|
|
1747
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
1748
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
1749
|
+
|
|
1670
1750
|
interface FeatureNavLink {
|
|
1671
1751
|
label: string;
|
|
1672
1752
|
link: string;
|
|
@@ -1687,6 +1767,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
1687
1767
|
interface FeatureModule {
|
|
1688
1768
|
key: string;
|
|
1689
1769
|
label?: string;
|
|
1770
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
1771
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
1772
|
+
capabilityIds?: string[];
|
|
1690
1773
|
navEntry?: FeatureNavEntry;
|
|
1691
1774
|
sidebar?: FeatureSidebarComponent;
|
|
1692
1775
|
subshellRoutes?: string[];
|
|
@@ -1696,65 +1779,6 @@ interface OrganizationGraphFeatureBridge {
|
|
|
1696
1779
|
surfaceId: string;
|
|
1697
1780
|
}
|
|
1698
1781
|
|
|
1699
|
-
interface ResourcesSidebarProps {
|
|
1700
|
-
timeRange: TimeRange;
|
|
1701
|
-
}
|
|
1702
|
-
/**
|
|
1703
|
-
* Resources sidebar - shows execution health donut, domain filters and search
|
|
1704
|
-
*/
|
|
1705
|
-
declare function ResourcesSidebar({ timeRange }: ResourcesSidebarProps): react_jsx_runtime.JSX.Element;
|
|
1706
|
-
|
|
1707
|
-
interface ResourceDetailPageRenderExecutionPanelArgs {
|
|
1708
|
-
resourceId: string;
|
|
1709
|
-
resourceType: ResourceType$1;
|
|
1710
|
-
resourceName: string;
|
|
1711
|
-
resourceDefinition: AIResourceDefinition;
|
|
1712
|
-
onConnectionStatus: (connected: boolean, count: number) => void;
|
|
1713
|
-
}
|
|
1714
|
-
interface ResourceDetailPageProps {
|
|
1715
|
-
/** Resource type (workflow, agent, etc.) */
|
|
1716
|
-
type: ResourceType$1;
|
|
1717
|
-
/** Resource identifier */
|
|
1718
|
-
resourceId: string;
|
|
1719
|
-
/** Current time range value — caller passes from its own store */
|
|
1720
|
-
timeRange: TimeRange;
|
|
1721
|
-
/**
|
|
1722
|
-
* Render-prop slot for the consumer's ExecutionPanel. The shared layout owns connection
|
|
1723
|
-
* state and passes it to the slot via `onConnectionStatus`. The resolved
|
|
1724
|
-
* `resourceDefinition` is threaded through so the execution panel does not refetch.
|
|
1725
|
-
*/
|
|
1726
|
-
renderExecutionPanel: (args: ResourceDetailPageRenderExecutionPanelArgs) => ReactNode;
|
|
1727
|
-
/** Override "Resources" back-link in the header. Defaults to `/operations/resources`. */
|
|
1728
|
-
onNavigateToResources?: () => void;
|
|
1729
|
-
/** Override "Go to Sessions" link in the header. Defaults to `/operations/sessions?agent=<resourceId>`. */
|
|
1730
|
-
onNavigateToSessions?: () => void;
|
|
1731
|
-
/** Override "Back to Operations" in the not-found state. Defaults to `/operations`. */
|
|
1732
|
-
onNavigateBack?: () => void;
|
|
1733
|
-
}
|
|
1734
|
-
declare function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel, onNavigateToResources, onNavigateToSessions, onNavigateBack }: ResourceDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1735
|
-
|
|
1736
|
-
interface ExecuteAsyncResult {
|
|
1737
|
-
executionId: string;
|
|
1738
|
-
status: string;
|
|
1739
|
-
resourceId: string;
|
|
1740
|
-
}
|
|
1741
|
-
|
|
1742
|
-
interface UseExecutionPanelStateOptions {
|
|
1743
|
-
resourceId: string;
|
|
1744
|
-
manager: SSEConnectionManagerLike;
|
|
1745
|
-
/**
|
|
1746
|
-
* Base URL of the API server (e.g. 'https://api.elevasis.io' or 'http://localhost:5170').
|
|
1747
|
-
* Provided by the consuming app -- the library does not read environment variables directly.
|
|
1748
|
-
*/
|
|
1749
|
-
apiUrl: string;
|
|
1750
|
-
limit?: number;
|
|
1751
|
-
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
1752
|
-
selectedId?: string | null;
|
|
1753
|
-
onSelectedIdChange?: (id: string | null) => void;
|
|
1754
|
-
}
|
|
1755
|
-
|
|
1756
|
-
type TaskFilterStatus = 'all' | 'pending' | 'completed' | 'expired';
|
|
1757
|
-
|
|
1758
1782
|
interface CommandQueuePageProps {
|
|
1759
1783
|
timeRange?: TimeRange;
|
|
1760
1784
|
pageSize?: number;
|
|
@@ -1,23 +1,23 @@
|
|
|
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-
|
|
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-FH5QGCXL.js';
|
|
2
2
|
import '../../chunk-ROSMICXG.js';
|
|
3
3
|
import '../../chunk-IDACMRGQ.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-PEDPD3PU.js';
|
|
5
5
|
import '../../chunk-BZZCNLT6.js';
|
|
6
6
|
import '../../chunk-27COZ5AH.js';
|
|
7
7
|
import '../../chunk-GBMNCNHX.js';
|
|
8
|
-
export { OperationsOverview } from '../../chunk-
|
|
8
|
+
export { OperationsOverview } from '../../chunk-ZB5PKIX5.js';
|
|
9
9
|
import '../../chunk-LGKLC5MG.js';
|
|
10
10
|
import '../../chunk-KFICYU6S.js';
|
|
11
11
|
import '../../chunk-YEX4MQSY.js';
|
|
12
12
|
import '../../chunk-XA34RETF.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-DQJM7T2N.js';
|
|
14
|
+
import '../../chunk-POFDRPDI.js';
|
|
15
15
|
import '../../chunk-LXHZYSMQ.js';
|
|
16
16
|
import '../../chunk-22UVE3RA.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
18
18
|
import '../../chunk-47YILFON.js';
|
|
19
19
|
import '../../chunk-CYXZHBP4.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-O4PMRC6J.js';
|
|
21
21
|
import '../../chunk-RX4UWZZR.js';
|
|
22
22
|
import '../../chunk-Y3D3WFJG.js';
|
|
23
23
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { ComponentType } from 'react';
|
|
3
4
|
|
|
4
5
|
declare const SEOSidebar: () => react_jsx_runtime.JSX.Element;
|
|
@@ -7,6 +8,27 @@ declare const SEOSidebarTop: () => react_jsx_runtime.JSX.Element;
|
|
|
7
8
|
|
|
8
9
|
declare const SEOSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
9
10
|
|
|
11
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
12
|
+
id: ModelIdSchema,
|
|
13
|
+
entityIds: ReferenceIdsSchema,
|
|
14
|
+
surfaceIds: ReferenceIdsSchema,
|
|
15
|
+
resourceIds: ReferenceIdsSchema,
|
|
16
|
+
capabilityIds: ReferenceIdsSchema
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
declare const FeatureKeySchema = z.enum([
|
|
20
|
+
'acquisition',
|
|
21
|
+
'delivery',
|
|
22
|
+
'operations',
|
|
23
|
+
'monitoring',
|
|
24
|
+
'settings',
|
|
25
|
+
'seo',
|
|
26
|
+
'calibration'
|
|
27
|
+
])
|
|
28
|
+
|
|
29
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
30
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
31
|
+
|
|
10
32
|
interface FeatureNavLink {
|
|
11
33
|
label: string;
|
|
12
34
|
link: string;
|
|
@@ -27,6 +49,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
27
49
|
interface FeatureModule {
|
|
28
50
|
key: string;
|
|
29
51
|
label?: string;
|
|
52
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
53
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
54
|
+
capabilityIds?: string[];
|
|
30
55
|
navEntry?: FeatureNavEntry;
|
|
31
56
|
sidebar?: FeatureSidebarComponent;
|
|
32
57
|
subshellRoutes?: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../../chunk-
|
|
1
|
+
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../../chunk-YIWLA2B6.js';
|
|
2
2
|
import '../../chunk-27COZ5AH.js';
|
|
3
3
|
import '../../chunk-2IFYDILW.js';
|
|
4
4
|
import '../../chunk-DT3QYZVU.js';
|
|
@@ -2810,6 +2810,27 @@ interface OAuthIntegrationsCardProps {
|
|
|
2810
2810
|
}
|
|
2811
2811
|
declare function OAuthIntegrationsCard({ apiUrl }: OAuthIntegrationsCardProps): react_jsx_runtime.JSX.Element;
|
|
2812
2812
|
|
|
2813
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
2814
|
+
id: ModelIdSchema,
|
|
2815
|
+
entityIds: ReferenceIdsSchema,
|
|
2816
|
+
surfaceIds: ReferenceIdsSchema,
|
|
2817
|
+
resourceIds: ReferenceIdsSchema,
|
|
2818
|
+
capabilityIds: ReferenceIdsSchema
|
|
2819
|
+
})
|
|
2820
|
+
|
|
2821
|
+
declare const FeatureKeySchema = z.enum([
|
|
2822
|
+
'acquisition',
|
|
2823
|
+
'delivery',
|
|
2824
|
+
'operations',
|
|
2825
|
+
'monitoring',
|
|
2826
|
+
'settings',
|
|
2827
|
+
'seo',
|
|
2828
|
+
'calibration'
|
|
2829
|
+
])
|
|
2830
|
+
|
|
2831
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
2832
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
2833
|
+
|
|
2813
2834
|
interface FeatureNavLink {
|
|
2814
2835
|
label: string;
|
|
2815
2836
|
link: string;
|
|
@@ -2830,6 +2851,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2830
2851
|
interface FeatureModule {
|
|
2831
2852
|
key: string;
|
|
2832
2853
|
label?: string;
|
|
2854
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
2855
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2856
|
+
capabilityIds?: string[];
|
|
2833
2857
|
navEntry?: FeatureNavEntry;
|
|
2834
2858
|
sidebar?: FeatureSidebarComponent;
|
|
2835
2859
|
subshellRoutes?: string[];
|
|
@@ -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-CC4WGHGG.js';
|
|
2
2
|
import '../../chunk-PDHTXPSF.js';
|
|
3
3
|
import '../../chunk-GBMNCNHX.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
5
|
import '../../chunk-VNUOQQNY.js';
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
import '../../chunk-
|
|
6
|
+
import '../../chunk-DQJM7T2N.js';
|
|
7
|
+
import '../../chunk-POFDRPDI.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
9
|
import '../../chunk-22UVE3RA.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-4GZ6VZWO.js';
|
|
11
11
|
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-O4PMRC6J.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|