@elevasis/ui 2.5.0 → 2.7.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-CKBJVNSA.js → chunk-6FDGVZFL.js} +2 -2
- package/dist/{chunk-3VTACYBT.js → chunk-HRIJZKFL.js} +2 -3
- package/dist/{chunk-S5EXLTGK.js → chunk-IFH4L6CR.js} +181 -7
- package/dist/{chunk-GEJZ6WLM.js → chunk-N6GYYWY3.js} +1 -1
- package/dist/{chunk-ZGV3X3UQ.js → chunk-SBND6P3L.js} +2 -3
- package/dist/{chunk-TNYUWKSJ.js → chunk-SPMKW4VO.js} +56 -91
- package/dist/{chunk-XGUMNEIR.js → chunk-T6R3V4GW.js} +3 -4
- package/dist/{chunk-DRBMVLJE.js → chunk-TENLM2GN.js} +2 -2
- package/dist/{chunk-5RYRL7DP.js → chunk-V6Z2U6ZV.js} +1 -1
- package/dist/{chunk-URFYQRJO.js → chunk-VGBMSGYC.js} +1 -1
- package/dist/{chunk-RBRSRRG4.js → chunk-X4HUZINF.js} +3 -4
- package/dist/{chunk-UXYE5ZBY.js → chunk-Z5RHDI7T.js} +4 -13
- package/dist/components/index.d.ts +4 -9
- package/dist/components/index.js +32 -23
- package/dist/features/auth/index.js +9 -2
- package/dist/features/crm/index.d.ts +1 -1
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.d.ts +2 -62
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.d.ts +1 -1
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +1 -1
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.d.ts +1 -1
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +79 -79
- package/dist/features/operations/index.js +7 -7
- package/dist/features/seo/index.d.ts +1 -1
- package/dist/features/settings/index.d.ts +3 -2
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +2 -1
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +2 -1
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +187 -43
- package/dist/index.js +4 -4
- package/dist/initialization/index.d.ts +2 -1
- package/dist/organization/index.d.ts +2 -1
- package/dist/provider/index.d.ts +185 -42
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +185 -42
- package/dist/provider/published.js +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +58 -86
|
@@ -1626,26 +1626,42 @@ 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
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
})
|
|
1636
|
-
|
|
1637
|
-
declare const FeatureKeySchema = z.enum([
|
|
1638
|
-
'acquisition',
|
|
1639
|
-
'delivery',
|
|
1640
|
-
'operations',
|
|
1641
|
-
'monitoring',
|
|
1642
|
-
'settings',
|
|
1643
|
-
'seo',
|
|
1644
|
-
'calibration'
|
|
1645
|
-
])
|
|
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;
|
|
1646
1636
|
|
|
1647
|
-
|
|
1648
|
-
|
|
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;
|
|
1649
1665
|
|
|
1650
1666
|
/**
|
|
1651
1667
|
* Resource Registry type definitions
|
|
@@ -1659,6 +1675,12 @@ type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
|
1659
1675
|
*/
|
|
1660
1676
|
type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
|
|
1661
1677
|
|
|
1678
|
+
interface ExecuteAsyncResult {
|
|
1679
|
+
executionId: string;
|
|
1680
|
+
status: string;
|
|
1681
|
+
resourceId: string;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1662
1684
|
interface EventSourceMessage {
|
|
1663
1685
|
id: string;
|
|
1664
1686
|
event: string;
|
|
@@ -1688,6 +1710,43 @@ interface SSEConnectionManagerLike {
|
|
|
1688
1710
|
}>;
|
|
1689
1711
|
}
|
|
1690
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
|
+
|
|
1691
1750
|
interface FeatureNavLink {
|
|
1692
1751
|
label: string;
|
|
1693
1752
|
link: string;
|
|
@@ -1708,7 +1767,7 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
1708
1767
|
interface FeatureModule {
|
|
1709
1768
|
key: string;
|
|
1710
1769
|
label?: string;
|
|
1711
|
-
accessFeatureKey
|
|
1770
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
1712
1771
|
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
1713
1772
|
capabilityIds?: string[];
|
|
1714
1773
|
navEntry?: FeatureNavEntry;
|
|
@@ -1720,65 +1779,6 @@ interface OrganizationGraphFeatureBridge {
|
|
|
1720
1779
|
surfaceId: string;
|
|
1721
1780
|
}
|
|
1722
1781
|
|
|
1723
|
-
interface ResourcesSidebarProps {
|
|
1724
|
-
timeRange: TimeRange;
|
|
1725
|
-
}
|
|
1726
|
-
/**
|
|
1727
|
-
* Resources sidebar - shows execution health donut, domain filters and search
|
|
1728
|
-
*/
|
|
1729
|
-
declare function ResourcesSidebar({ timeRange }: ResourcesSidebarProps): react_jsx_runtime.JSX.Element;
|
|
1730
|
-
|
|
1731
|
-
interface ResourceDetailPageRenderExecutionPanelArgs {
|
|
1732
|
-
resourceId: string;
|
|
1733
|
-
resourceType: ResourceType$1;
|
|
1734
|
-
resourceName: string;
|
|
1735
|
-
resourceDefinition: AIResourceDefinition;
|
|
1736
|
-
onConnectionStatus: (connected: boolean, count: number) => void;
|
|
1737
|
-
}
|
|
1738
|
-
interface ResourceDetailPageProps {
|
|
1739
|
-
/** Resource type (workflow, agent, etc.) */
|
|
1740
|
-
type: ResourceType$1;
|
|
1741
|
-
/** Resource identifier */
|
|
1742
|
-
resourceId: string;
|
|
1743
|
-
/** Current time range value — caller passes from its own store */
|
|
1744
|
-
timeRange: TimeRange;
|
|
1745
|
-
/**
|
|
1746
|
-
* Render-prop slot for the consumer's ExecutionPanel. The shared layout owns connection
|
|
1747
|
-
* state and passes it to the slot via `onConnectionStatus`. The resolved
|
|
1748
|
-
* `resourceDefinition` is threaded through so the execution panel does not refetch.
|
|
1749
|
-
*/
|
|
1750
|
-
renderExecutionPanel: (args: ResourceDetailPageRenderExecutionPanelArgs) => ReactNode;
|
|
1751
|
-
/** Override "Resources" back-link in the header. Defaults to `/operations/resources`. */
|
|
1752
|
-
onNavigateToResources?: () => void;
|
|
1753
|
-
/** Override "Go to Sessions" link in the header. Defaults to `/operations/sessions?agent=<resourceId>`. */
|
|
1754
|
-
onNavigateToSessions?: () => void;
|
|
1755
|
-
/** Override "Back to Operations" in the not-found state. Defaults to `/operations`. */
|
|
1756
|
-
onNavigateBack?: () => void;
|
|
1757
|
-
}
|
|
1758
|
-
declare function ResourceDetailPage({ type, resourceId, timeRange, renderExecutionPanel, onNavigateToResources, onNavigateToSessions, onNavigateBack }: ResourceDetailPageProps): react_jsx_runtime.JSX.Element;
|
|
1759
|
-
|
|
1760
|
-
interface ExecuteAsyncResult {
|
|
1761
|
-
executionId: string;
|
|
1762
|
-
status: string;
|
|
1763
|
-
resourceId: string;
|
|
1764
|
-
}
|
|
1765
|
-
|
|
1766
|
-
interface UseExecutionPanelStateOptions {
|
|
1767
|
-
resourceId: string;
|
|
1768
|
-
manager: SSEConnectionManagerLike;
|
|
1769
|
-
/**
|
|
1770
|
-
* Base URL of the API server (e.g. 'https://api.elevasis.io' or 'http://localhost:5170').
|
|
1771
|
-
* Provided by the consuming app -- the library does not read environment variables directly.
|
|
1772
|
-
*/
|
|
1773
|
-
apiUrl: string;
|
|
1774
|
-
limit?: number;
|
|
1775
|
-
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
1776
|
-
selectedId?: string | null;
|
|
1777
|
-
onSelectedIdChange?: (id: string | null) => void;
|
|
1778
|
-
}
|
|
1779
|
-
|
|
1780
|
-
type TaskFilterStatus = 'all' | 'pending' | 'completed' | 'expired';
|
|
1781
|
-
|
|
1782
1782
|
interface CommandQueuePageProps {
|
|
1783
1783
|
timeRange?: TimeRange;
|
|
1784
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-IFH4L6CR.js';
|
|
2
2
|
import '../../chunk-ROSMICXG.js';
|
|
3
3
|
import '../../chunk-IDACMRGQ.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-VGBMSGYC.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-Z5RHDI7T.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-TENLM2GN.js';
|
|
14
|
+
import '../../chunk-V6Z2U6ZV.js';
|
|
15
15
|
import '../../chunk-LXHZYSMQ.js';
|
|
16
16
|
import '../../chunk-22UVE3RA.js';
|
|
17
|
-
import '../../chunk-
|
|
17
|
+
import '../../chunk-N6GYYWY3.js';
|
|
18
18
|
import '../../chunk-47YILFON.js';
|
|
19
19
|
import '../../chunk-CYXZHBP4.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-SPMKW4VO.js';
|
|
21
21
|
import '../../chunk-RX4UWZZR.js';
|
|
22
22
|
import '../../chunk-Y3D3WFJG.js';
|
|
23
23
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -49,7 +49,7 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
49
49
|
interface FeatureModule {
|
|
50
50
|
key: string;
|
|
51
51
|
label?: string;
|
|
52
|
-
accessFeatureKey
|
|
52
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
53
53
|
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
54
54
|
capabilityIds?: string[];
|
|
55
55
|
navEntry?: FeatureNavEntry;
|
|
@@ -2620,13 +2620,14 @@ type SupabaseUserProfile = Tables<'users'>;
|
|
|
2620
2620
|
/**
|
|
2621
2621
|
* Per-user-per-org config (stored in org_memberships.config)
|
|
2622
2622
|
* Controls which features a specific member can access within their org
|
|
2623
|
-
* Valid feature keys: operations, monitoring, acquisition, calibration, seo
|
|
2623
|
+
* Valid feature keys: operations, monitoring, acquisition, delivery, calibration, seo
|
|
2624
2624
|
*/
|
|
2625
2625
|
interface MembershipFeatureConfig {
|
|
2626
2626
|
features?: {
|
|
2627
2627
|
operations?: boolean;
|
|
2628
2628
|
monitoring?: boolean;
|
|
2629
2629
|
acquisition?: boolean;
|
|
2630
|
+
delivery?: boolean;
|
|
2630
2631
|
calibration?: boolean;
|
|
2631
2632
|
seo?: boolean;
|
|
2632
2633
|
};
|
|
@@ -2851,7 +2852,7 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2851
2852
|
interface FeatureModule {
|
|
2852
2853
|
key: string;
|
|
2853
2854
|
label?: string;
|
|
2854
|
-
accessFeatureKey
|
|
2855
|
+
accessFeatureKey: OrganizationModelFeatureKey;
|
|
2855
2856
|
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2856
2857
|
capabilityIds?: string[];
|
|
2857
2858
|
navEntry?: FeatureNavEntry;
|
|
@@ -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-6FDGVZFL.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-TENLM2GN.js';
|
|
7
|
+
import '../../chunk-V6Z2U6ZV.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
9
|
import '../../chunk-22UVE3RA.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-N6GYYWY3.js';
|
|
11
11
|
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-SPMKW4VO.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -4214,13 +4214,14 @@ interface SessionTokenUsage {
|
|
|
4214
4214
|
/**
|
|
4215
4215
|
* Per-user-per-org config (stored in org_memberships.config)
|
|
4216
4216
|
* Controls which features a specific member can access within their org
|
|
4217
|
-
* Valid feature keys: operations, monitoring, acquisition, calibration, seo
|
|
4217
|
+
* Valid feature keys: operations, monitoring, acquisition, delivery, calibration, seo
|
|
4218
4218
|
*/
|
|
4219
4219
|
interface MembershipFeatureConfig {
|
|
4220
4220
|
features?: {
|
|
4221
4221
|
operations?: boolean;
|
|
4222
4222
|
monitoring?: boolean;
|
|
4223
4223
|
acquisition?: boolean;
|
|
4224
|
+
delivery?: boolean;
|
|
4224
4225
|
calibration?: boolean;
|
|
4225
4226
|
seo?: boolean;
|
|
4226
4227
|
};
|
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-TENLM2GN.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-V6Z2U6ZV.js';
|
|
3
3
|
export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
|
|
4
4
|
import '../chunk-22UVE3RA.js';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-N6GYYWY3.js';
|
|
6
6
|
import '../chunk-47YILFON.js';
|
|
7
7
|
import '../chunk-CYXZHBP4.js';
|
|
8
|
-
export { createUseFeatureAccess } from '../chunk-
|
|
8
|
+
export { createUseFeatureAccess } from '../chunk-SPMKW4VO.js';
|
|
9
9
|
import '../chunk-RX4UWZZR.js';
|
|
10
10
|
import '../chunk-Y3D3WFJG.js';
|
|
11
11
|
import '../chunk-3KMDHCAR.js';
|
|
@@ -4662,13 +4662,14 @@ interface SessionTokenUsage {
|
|
|
4662
4662
|
/**
|
|
4663
4663
|
* Per-user-per-org config (stored in org_memberships.config)
|
|
4664
4664
|
* Controls which features a specific member can access within their org
|
|
4665
|
-
* Valid feature keys: operations, monitoring, acquisition, calibration, seo
|
|
4665
|
+
* Valid feature keys: operations, monitoring, acquisition, delivery, calibration, seo
|
|
4666
4666
|
*/
|
|
4667
4667
|
interface MembershipFeatureConfig {
|
|
4668
4668
|
features?: {
|
|
4669
4669
|
operations?: boolean;
|
|
4670
4670
|
monitoring?: boolean;
|
|
4671
4671
|
acquisition?: boolean;
|
|
4672
|
+
delivery?: boolean;
|
|
4672
4673
|
calibration?: boolean;
|
|
4673
4674
|
seo?: boolean;
|
|
4674
4675
|
};
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
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 { 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-V6Z2U6ZV.js';
|
|
2
2
|
export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
|
|
3
3
|
import '../chunk-22UVE3RA.js';
|
|
4
|
-
import '../chunk-
|
|
4
|
+
import '../chunk-N6GYYWY3.js';
|
|
5
5
|
import '../chunk-47YILFON.js';
|
|
6
6
|
import '../chunk-CYXZHBP4.js';
|
|
7
|
-
export { createUseFeatureAccess } from '../chunk-
|
|
7
|
+
export { createUseFeatureAccess } from '../chunk-SPMKW4VO.js';
|
|
8
8
|
import '../chunk-RX4UWZZR.js';
|
|
9
9
|
import '../chunk-Y3D3WFJG.js';
|
|
10
10
|
import '../chunk-3KMDHCAR.js';
|