@elevasis/ui 2.53.0 → 2.55.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/app/index.js +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/charts/index.js +1 -1
- package/dist/{chunk-DQG7FEYZ.js → chunk-36PY65TF.js} +203 -29
- package/dist/components/index.js +1 -1
- package/dist/components/navigation/index.js +1 -1
- package/dist/features/auth/index.js +2 -2
- package/dist/features/clients/index.js +1 -1
- package/dist/features/crm/index.js +1 -1
- package/dist/features/dashboard/index.js +1 -1
- package/dist/features/delivery/index.js +1 -1
- package/dist/features/knowledge/index.js +1 -1
- package/dist/features/lead-gen/index.js +1 -1
- package/dist/features/monitoring/index.js +1 -1
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.d.ts +91 -30
- package/dist/features/operations/index.js +1 -1
- package/dist/features/public-agent-chat/index.d.ts +26 -2
- package/dist/features/public-agent-chat/index.js +104 -12
- package/dist/features/settings/index.js +1 -1
- package/dist/hooks/access/index.js +1 -1
- package/dist/hooks/delivery/index.js +1 -1
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/published.d.ts +2 -2
- package/dist/hooks/published.js +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/knowledge/index.js +2 -2
- package/dist/layout/index.js +1 -1
- package/dist/organization/index.js +1 -1
- package/dist/provider/index.js +1 -1
- package/dist/provider/published.js +1 -1
- package/package.json +4 -4
|
@@ -2114,25 +2114,6 @@ interface ExecuteWorkflowModalProps {
|
|
|
2114
2114
|
}
|
|
2115
2115
|
declare function ExecuteWorkflowModal({ opened, onClose, resource, isPending, error, result, onViewExecution, onReset, children }: ExecuteWorkflowModalProps): react_jsx_runtime.JSX.Element;
|
|
2116
2116
|
|
|
2117
|
-
interface SessionsPageProps {
|
|
2118
|
-
/** Whether the organization context is ready; blocks render until true */
|
|
2119
|
-
isReady: boolean;
|
|
2120
|
-
/** The currently selected agent resource ID (from URL search param) */
|
|
2121
|
-
agentParam?: string;
|
|
2122
|
-
/** Builds the URL for a session detail page */
|
|
2123
|
-
buildSessionDetailUrl: (sessionId: string) => string;
|
|
2124
|
-
/** Builds the URL for the sessions list with an agent pre-selected */
|
|
2125
|
-
buildSessionListUrl: (agentId: string) => string;
|
|
2126
|
-
/** Imperative navigation handler; receives a fully-built URL string */
|
|
2127
|
-
onNavigate: (to: string) => void;
|
|
2128
|
-
}
|
|
2129
|
-
/**
|
|
2130
|
-
* Agent Sessions page — agent grid + selected-agent session list.
|
|
2131
|
-
* Agent card selection, new-session creation, and navigation are delegated
|
|
2132
|
-
* to DI props so this component has no CC router dependency.
|
|
2133
|
-
*/
|
|
2134
|
-
declare function SessionsPage({ isReady, agentParam, buildSessionDetailUrl, buildSessionListUrl, onNavigate }: SessionsPageProps): react_jsx_runtime.JSX.Element;
|
|
2135
|
-
|
|
2136
2117
|
interface SessionListItem$1 {
|
|
2137
2118
|
sessionId: string;
|
|
2138
2119
|
resourceId: string;
|
|
@@ -2156,16 +2137,95 @@ interface WebSocketState {
|
|
|
2156
2137
|
error: string | null;
|
|
2157
2138
|
}
|
|
2158
2139
|
|
|
2140
|
+
interface SessionConversationViewProps {
|
|
2141
|
+
sessionId: string;
|
|
2142
|
+
apiUrl: string;
|
|
2143
|
+
onConnectionStateChange?: (state: WebSocketState) => void;
|
|
2144
|
+
emptyStateText?: string;
|
|
2145
|
+
emptyStateSubtext?: string;
|
|
2146
|
+
placeholder?: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* Draft-mode callback: present only when sessionId === 'new'.
|
|
2149
|
+
* Called with the first message text; the callee creates the session,
|
|
2150
|
+
* swaps the URL to the real sessionId, then sends turn #1.
|
|
2151
|
+
* When present the WebSocket connection is suppressed.
|
|
2152
|
+
*/
|
|
2153
|
+
onFirstSend?: (message: string) => Promise<void>;
|
|
2154
|
+
/**
|
|
2155
|
+
* Pending first message to flush as turn #1 once the WS connects after
|
|
2156
|
+
* the draft→live transition. Set by SessionChatPage after session creation;
|
|
2157
|
+
* cleared by calling onPendingSent.
|
|
2158
|
+
*/
|
|
2159
|
+
pendingFirstMessage?: string;
|
|
2160
|
+
/**
|
|
2161
|
+
* Called after flushing pendingFirstMessage so the parent page clears it
|
|
2162
|
+
* and avoids a double-send.
|
|
2163
|
+
*/
|
|
2164
|
+
onPendingSent?: () => void;
|
|
2165
|
+
}
|
|
2166
|
+
/**
|
|
2167
|
+
* Shared session-detail chat body.
|
|
2168
|
+
* Merges persisted message history with live WebSocket messages and renders ChatInterface.
|
|
2169
|
+
* Covers the plain session-detail profile only — AssistantPanel-specific props are excluded.
|
|
2170
|
+
*
|
|
2171
|
+
* Used by the command-center session-detail page and external template-family projects.
|
|
2172
|
+
*
|
|
2173
|
+
* When sessionId === 'new' (draft mode) and onFirstSend is provided, the WebSocket
|
|
2174
|
+
* connection is suppressed. The first submitted message is handed to onFirstSend, which
|
|
2175
|
+
* creates the real session row, swaps the URL, and sends turn #1.
|
|
2176
|
+
*/
|
|
2177
|
+
declare function SessionConversationView({ sessionId, apiUrl, onConnectionStateChange, emptyStateText, emptyStateSubtext, placeholder, onFirstSend, pendingFirstMessage, onPendingSent }: SessionConversationViewProps): react_jsx_runtime.JSX.Element;
|
|
2178
|
+
|
|
2179
|
+
interface SessionsPageProps {
|
|
2180
|
+
/** Whether the organization context is ready; blocks render until true */
|
|
2181
|
+
isReady: boolean;
|
|
2182
|
+
/** The currently selected agent resource ID (from URL search param) */
|
|
2183
|
+
agentParam?: string;
|
|
2184
|
+
/** Builds the URL for a session detail page */
|
|
2185
|
+
buildSessionDetailUrl: (sessionId: string) => string;
|
|
2186
|
+
/** Builds the URL for the sessions list with an agent pre-selected */
|
|
2187
|
+
buildSessionListUrl: (agentId: string) => string;
|
|
2188
|
+
/** Imperative navigation handler; receives a fully-built URL string */
|
|
2189
|
+
onNavigate: (to: string) => void;
|
|
2190
|
+
}
|
|
2191
|
+
/**
|
|
2192
|
+
* Agent Sessions page — agent grid + selected-agent session list.
|
|
2193
|
+
* Agent card selection, new-session creation, and navigation are delegated
|
|
2194
|
+
* to DI props so this component has no CC router dependency.
|
|
2195
|
+
*/
|
|
2196
|
+
declare function SessionsPage({ isReady, agentParam, buildSessionDetailUrl, buildSessionListUrl, onNavigate }: SessionsPageProps): react_jsx_runtime.JSX.Element;
|
|
2197
|
+
|
|
2159
2198
|
interface ConversationViewSlotArgs {
|
|
2160
2199
|
sessionId: string;
|
|
2161
2200
|
onConnectionStateChange?: (state: WebSocketState) => void;
|
|
2162
2201
|
emptyStateText?: string;
|
|
2163
2202
|
emptyStateSubtext?: string;
|
|
2164
2203
|
placeholder?: string;
|
|
2204
|
+
/**
|
|
2205
|
+
* Draft-mode callback: present only when sessionId === 'new'.
|
|
2206
|
+
* Called with the first message text; the callee creates the session,
|
|
2207
|
+
* swaps the URL to the real sessionId, then sends turn #1.
|
|
2208
|
+
* When present the conversation view must NOT open a WebSocket connection.
|
|
2209
|
+
*/
|
|
2210
|
+
onFirstSend?: (message: string) => Promise<void>;
|
|
2211
|
+
/**
|
|
2212
|
+
* Pending first message to flush as turn #1 once the WS connects after
|
|
2213
|
+
* the draft→live transition. Set by SessionChatPage after session creation;
|
|
2214
|
+
* cleared by calling onPendingSent.
|
|
2215
|
+
*/
|
|
2216
|
+
pendingFirstMessage?: string;
|
|
2217
|
+
/**
|
|
2218
|
+
* Called by SessionConversationView after flushing pendingFirstMessage,
|
|
2219
|
+
* so the parent page can clear it and avoid double-send.
|
|
2220
|
+
*/
|
|
2221
|
+
onPendingSent?: () => void;
|
|
2165
2222
|
}
|
|
2166
2223
|
interface SessionChatInterfaceProps {
|
|
2167
2224
|
sessionId: string;
|
|
2168
2225
|
onConnectionStateChange?: (state: WebSocketState) => void;
|
|
2226
|
+
onFirstSend?: (message: string) => Promise<void>;
|
|
2227
|
+
pendingFirstMessage?: string;
|
|
2228
|
+
onPendingSent?: () => void;
|
|
2169
2229
|
renderConversationView: (args: ConversationViewSlotArgs) => ReactNode;
|
|
2170
2230
|
}
|
|
2171
2231
|
/**
|
|
@@ -2174,7 +2234,7 @@ interface SessionChatInterfaceProps {
|
|
|
2174
2234
|
* allowing CC-local ConversationView (WebSocket-backed) to be injected
|
|
2175
2235
|
* without coupling @repo/ui to CC-specific infrastructure.
|
|
2176
2236
|
*/
|
|
2177
|
-
declare function SessionChatInterface({ sessionId, onConnectionStateChange, renderConversationView }: SessionChatInterfaceProps): react_jsx_runtime.JSX.Element;
|
|
2237
|
+
declare function SessionChatInterface({ sessionId, onConnectionStateChange, onFirstSend, pendingFirstMessage, onPendingSent, renderConversationView }: SessionChatInterfaceProps): react_jsx_runtime.JSX.Element;
|
|
2178
2238
|
|
|
2179
2239
|
interface SessionChatPageProps {
|
|
2180
2240
|
/** Session ID sourced from the URL param; host extracts it from the router */
|
|
@@ -2189,27 +2249,28 @@ interface SessionChatPageProps {
|
|
|
2189
2249
|
buildSessionListUrl: () => string;
|
|
2190
2250
|
/** Organization name used for CLI copy strings in the session sidebar */
|
|
2191
2251
|
organizationName: string;
|
|
2252
|
+
/** Builds the session detail URL for a given sessionId (used for URL swap on draft→live) */
|
|
2253
|
+
buildSessionDetailUrl?: (sessionId: string) => string;
|
|
2192
2254
|
}
|
|
2193
2255
|
/**
|
|
2194
2256
|
* Session chat detail page.
|
|
2195
2257
|
* Guards on isReady + session load, then renders the full chat layout
|
|
2196
2258
|
* (header, chat area, execution logs, memory snapshot).
|
|
2197
2259
|
* WebSocket connectivity is injected via renderConversationView.
|
|
2260
|
+
*
|
|
2261
|
+
* When sessionId === 'new' (draft mode), renders an empty conversation without
|
|
2262
|
+
* creating a DB row. On first send, creates the session, swaps the URL to the
|
|
2263
|
+
* real sessionId via in-component state (not router), and flushes turn #1 once
|
|
2264
|
+
* the WS connects.
|
|
2198
2265
|
*/
|
|
2199
|
-
declare function SessionChatPage({ sessionId, isReady, renderConversationView, buildExecutionUrl, buildSessionListUrl: _buildSessionListUrl, organizationName }: SessionChatPageProps): react_jsx_runtime.JSX.Element;
|
|
2266
|
+
declare function SessionChatPage({ sessionId, isReady, renderConversationView, buildExecutionUrl, buildSessionListUrl: _buildSessionListUrl, organizationName, buildSessionDetailUrl }: SessionChatPageProps): react_jsx_runtime.JSX.Element;
|
|
2200
2267
|
|
|
2201
2268
|
interface SessionChatAreaProps {
|
|
2202
2269
|
sessionId: string;
|
|
2203
2270
|
session: SessionDTO;
|
|
2204
2271
|
organizationName: string;
|
|
2205
2272
|
onDeleted?: () => void;
|
|
2206
|
-
renderConversationView: (args:
|
|
2207
|
-
sessionId: string;
|
|
2208
|
-
onConnectionStateChange?: (state: WebSocketState) => void;
|
|
2209
|
-
emptyStateText?: string;
|
|
2210
|
-
emptyStateSubtext?: string;
|
|
2211
|
-
placeholder?: string;
|
|
2212
|
-
}) => ReactNode;
|
|
2273
|
+
renderConversationView: (args: ConversationViewSlotArgs) => ReactNode;
|
|
2213
2274
|
}
|
|
2214
2275
|
/**
|
|
2215
2276
|
* Consolidated chat area component with header, chat interface, and sidebar.
|
|
@@ -2389,5 +2450,5 @@ declare function aggregateSystemMetrics(model: OrganizationModel, systemPath: st
|
|
|
2389
2450
|
*/
|
|
2390
2451
|
declare function formatResourceAttribution(metrics: SystemMetrics): string;
|
|
2391
2452
|
|
|
2392
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest };
|
|
2393
|
-
export type { AgentExecutionPanelProps, AgentSessionGroupProps, CommandQueueDetailPageProps, CommandQueueDetailPageRichTextArgs, CommandQueuePageProps, CommandQueueShellProps, CommandViewPageProps, ConversationViewSlotArgs, ExecuteWorkflowModalProps, ExecuteWorkflowModalResource, ExecutionPanelProps, OperationalOverviewPanelProps, OperationsOverviewProps, ResourceDetailPageProps, ResourceDetailPageRenderExecuteDialogArgs, ResourceDetailPageRenderExecutionPanelArgs, ResourcesPageProps, ResourcesSidebarProps, SessionChatAreaProps, SessionChatInterfaceProps, SessionChatPageProps, SessionDetailsSidebarProps, SessionExecutionLogsProps, SessionHeaderProps, SessionListItemProps, SessionsPageProps, SessionsSidebarProps, SystemMetrics, SystemOpsViewProps, TaskFilterStatus, WorkflowExecutionPanelProps };
|
|
2453
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionConversationView, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest };
|
|
2454
|
+
export type { AgentExecutionPanelProps, AgentSessionGroupProps, CommandQueueDetailPageProps, CommandQueueDetailPageRichTextArgs, CommandQueuePageProps, CommandQueueShellProps, CommandViewPageProps, ConversationViewSlotArgs, ExecuteWorkflowModalProps, ExecuteWorkflowModalResource, ExecutionPanelProps, OperationalOverviewPanelProps, OperationsOverviewProps, ResourceDetailPageProps, ResourceDetailPageRenderExecuteDialogArgs, ResourceDetailPageRenderExecutionPanelArgs, ResourcesPageProps, ResourcesSidebarProps, SessionChatAreaProps, SessionChatInterfaceProps, SessionChatPageProps, SessionConversationViewProps, SessionDetailsSidebarProps, SessionExecutionLogsProps, SessionHeaderProps, SessionListItemProps, SessionsPageProps, SessionsSidebarProps, SystemMetrics, SystemOpsViewProps, TaskFilterStatus, WorkflowExecutionPanelProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionConversationView, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-36PY65TF.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -126,6 +126,22 @@ interface PublicAgentChatConnectionState {
|
|
|
126
126
|
error: string | null;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
/**
|
|
130
|
+
* Context passed to the `renderIntro` render-prop. Provides the start action,
|
|
131
|
+
* loading state, resolved display strings, raw branding, and the agent slug.
|
|
132
|
+
*/
|
|
133
|
+
interface PublicAgentIntroRenderContext {
|
|
134
|
+
/** Begins the authorize → session flow (the same action the default CTA runs). */
|
|
135
|
+
start: () => void;
|
|
136
|
+
/** True while a session is being created — disable the button / show a spinner. */
|
|
137
|
+
starting: boolean;
|
|
138
|
+
/** Resolved display strings (prop/branding-derived), provided for convenience. */
|
|
139
|
+
title: string;
|
|
140
|
+
subtitle?: string;
|
|
141
|
+
/** Raw grant branding record, so a custom intro can still read intro/instructions/etc. if it wants. */
|
|
142
|
+
branding: Record<string, unknown>;
|
|
143
|
+
slug: string;
|
|
144
|
+
}
|
|
129
145
|
interface PublicAgentChatProps {
|
|
130
146
|
apiUrl: string;
|
|
131
147
|
slug: string;
|
|
@@ -142,8 +158,16 @@ interface PublicAgentChatProps {
|
|
|
142
158
|
* a specific public agent.
|
|
143
159
|
*/
|
|
144
160
|
showAgentActivity?: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Render the entire pre-session intro screen yourself. When provided, this fully
|
|
163
|
+
* replaces the default branding-driven intro panel (paragraph + instructions + CTA).
|
|
164
|
+
* Compose any header/headline, body, styled callouts (e.g. a yellow Alert), and one or
|
|
165
|
+
* more buttons; wire your button(s) to `ctx.start()`. When omitted, the default
|
|
166
|
+
* branding-driven intro renders unchanged.
|
|
167
|
+
*/
|
|
168
|
+
renderIntro?: (ctx: PublicAgentIntroRenderContext) => React.ReactNode;
|
|
145
169
|
}
|
|
146
|
-
declare function PublicAgentChat({ apiUrl, slug, visitorId, metadata, title, className, style, onSessionReady, showAgentActivity }: PublicAgentChatProps): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare function PublicAgentChat({ apiUrl, slug, visitorId, metadata, title, className, style, onSessionReady, showAgentActivity, renderIntro }: PublicAgentChatProps): react_jsx_runtime.JSX.Element;
|
|
147
171
|
|
|
148
172
|
interface PublicAgentChatRoutePageProps extends PublicAgentChatProps {
|
|
149
173
|
pageStyle?: React.CSSProperties;
|
|
@@ -172,4 +196,4 @@ declare const publicAgentChatKeys: {
|
|
|
172
196
|
};
|
|
173
197
|
|
|
174
198
|
export { PublicAgentChat, PublicAgentChatRoutePage, publicAgentChatKeys, usePublicAgentChatMessages, usePublicAgentChatWebSocket };
|
|
175
|
-
export type { PublicAgentChatAuthorizeResponse, PublicAgentChatConnectionState, PublicAgentChatGrant, PublicAgentChatMessagesResponse, PublicAgentChatMetadataResponse, PublicAgentChatProps, PublicAgentChatRoutePageProps, PublicAgentChatSessionResponse };
|
|
199
|
+
export type { PublicAgentChatAuthorizeResponse, PublicAgentChatConnectionState, PublicAgentChatGrant, PublicAgentChatMessagesResponse, PublicAgentChatMetadataResponse, PublicAgentChatProps, PublicAgentChatRoutePageProps, PublicAgentChatSessionResponse, PublicAgentIntroRenderContext };
|
|
@@ -386,7 +386,8 @@ function PublicAgentChat({
|
|
|
386
386
|
className,
|
|
387
387
|
style,
|
|
388
388
|
onSessionReady,
|
|
389
|
-
showAgentActivity = false
|
|
389
|
+
showAgentActivity = false,
|
|
390
|
+
renderIntro
|
|
390
391
|
}) {
|
|
391
392
|
const [grant, setGrant] = useState(null);
|
|
392
393
|
const [capabilityToken, setCapabilityToken] = useState(null);
|
|
@@ -395,6 +396,7 @@ function PublicAgentChat({
|
|
|
395
396
|
const [error, setError] = useState(null);
|
|
396
397
|
const [accessCode, setAccessCode] = useState("");
|
|
397
398
|
const [input, setInput] = useState("");
|
|
399
|
+
const [isCreatingSession, setIsCreatingSession] = useState(false);
|
|
398
400
|
const autoStartedRef = useRef(false);
|
|
399
401
|
const greetingTimeRef = useRef(/* @__PURE__ */ new Date());
|
|
400
402
|
const displayTitle = resolveAgentTitle(title, slug, grant);
|
|
@@ -419,7 +421,7 @@ function PublicAgentChat({
|
|
|
419
421
|
setGrant(payload.grant);
|
|
420
422
|
if (payload.grant.requiresCode) {
|
|
421
423
|
setStatus("code-required");
|
|
422
|
-
} else if (hasIntroContent(payload.grant)) {
|
|
424
|
+
} else if (renderIntro || hasIntroContent(payload.grant)) {
|
|
423
425
|
setStatus("intro");
|
|
424
426
|
} else {
|
|
425
427
|
setStatus("authorizing");
|
|
@@ -432,7 +434,54 @@ function PublicAgentChat({
|
|
|
432
434
|
return () => {
|
|
433
435
|
cancelled = true;
|
|
434
436
|
};
|
|
435
|
-
}, [apiUrl, slug]);
|
|
437
|
+
}, [apiUrl, slug, renderIntro]);
|
|
438
|
+
const pendingFirstMessageRef = useRef(null);
|
|
439
|
+
const authorize = useCallback(
|
|
440
|
+
async (code) => {
|
|
441
|
+
if (!grant) return;
|
|
442
|
+
try {
|
|
443
|
+
setError(null);
|
|
444
|
+
setStatus("authorizing");
|
|
445
|
+
const authorization = await fetchJson(
|
|
446
|
+
`${apiUrl}/api/public/agent-chat/${encodeURIComponent(slug)}/authorize`,
|
|
447
|
+
{
|
|
448
|
+
method: "POST",
|
|
449
|
+
headers: { "Content-Type": "application/json" },
|
|
450
|
+
body: JSON.stringify({
|
|
451
|
+
...code ? { code } : {},
|
|
452
|
+
...visitorId ? { visitorId } : {}
|
|
453
|
+
})
|
|
454
|
+
}
|
|
455
|
+
);
|
|
456
|
+
setCapabilityToken(authorization.capabilityToken);
|
|
457
|
+
setStatus("ready");
|
|
458
|
+
} catch (requestError) {
|
|
459
|
+
setError(requestError instanceof Error ? requestError.message : "Unable to start agent chat");
|
|
460
|
+
setStatus(grant.requiresCode ? "code-required" : "error");
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
[apiUrl, grant, slug, visitorId]
|
|
464
|
+
);
|
|
465
|
+
const createSession = useCallback(
|
|
466
|
+
async (boundCapabilityToken) => {
|
|
467
|
+
const createdSession = await fetchJson(
|
|
468
|
+
`${apiUrl}/api/public/agent-chat/${encodeURIComponent(slug)}/sessions`,
|
|
469
|
+
{
|
|
470
|
+
method: "POST",
|
|
471
|
+
headers: { "Content-Type": "application/json" },
|
|
472
|
+
body: JSON.stringify({
|
|
473
|
+
capabilityToken: boundCapabilityToken,
|
|
474
|
+
...metadata ? { metadata } : {}
|
|
475
|
+
})
|
|
476
|
+
}
|
|
477
|
+
);
|
|
478
|
+
setSession(createdSession);
|
|
479
|
+
setCapabilityToken(createdSession.capabilityToken ?? boundCapabilityToken);
|
|
480
|
+
onSessionReady?.(createdSession);
|
|
481
|
+
return createdSession;
|
|
482
|
+
},
|
|
483
|
+
[apiUrl, slug, metadata, onSessionReady]
|
|
484
|
+
);
|
|
436
485
|
const startSession = useCallback(
|
|
437
486
|
async (code) => {
|
|
438
487
|
if (!grant) return;
|
|
@@ -474,12 +523,18 @@ function PublicAgentChat({
|
|
|
474
523
|
[apiUrl, grant, metadata, onSessionReady, slug, visitorId]
|
|
475
524
|
);
|
|
476
525
|
useEffect(() => {
|
|
477
|
-
if (!grant || grant.requiresCode || hasIntroContent(grant) || autoStartedRef.current) {
|
|
526
|
+
if (!grant || grant.requiresCode || renderIntro || hasIntroContent(grant) || autoStartedRef.current) {
|
|
478
527
|
return;
|
|
479
528
|
}
|
|
480
529
|
autoStartedRef.current = true;
|
|
481
|
-
void
|
|
482
|
-
}, [grant,
|
|
530
|
+
void authorize();
|
|
531
|
+
}, [grant, authorize, renderIntro]);
|
|
532
|
+
useEffect(() => {
|
|
533
|
+
if (!state.isConnected || !pendingFirstMessageRef.current) return;
|
|
534
|
+
const pending = pendingFirstMessageRef.current;
|
|
535
|
+
pendingFirstMessageRef.current = null;
|
|
536
|
+
sendMessage(pending);
|
|
537
|
+
}, [state.isConnected, sendMessage]);
|
|
483
538
|
const allMessages = useMemo(() => {
|
|
484
539
|
const merged = mergeSessionMessages(historyMessages, liveMessages);
|
|
485
540
|
const greeting = brandingText(brandingRecord(grant?.branding).greeting);
|
|
@@ -497,11 +552,23 @@ function PublicAgentChat({
|
|
|
497
552
|
}, [historyMessages, liveMessages, grant]);
|
|
498
553
|
const handleSend = () => {
|
|
499
554
|
const trimmed = input.trim();
|
|
500
|
-
if (!trimmed || state.isProcessing) return;
|
|
555
|
+
if (!trimmed || state.isProcessing || isCreatingSession) return;
|
|
556
|
+
if (!session && capabilityToken) {
|
|
557
|
+
setInput("");
|
|
558
|
+
setIsCreatingSession(true);
|
|
559
|
+
pendingFirstMessageRef.current = trimmed;
|
|
560
|
+
void createSession(capabilityToken).catch((requestError) => {
|
|
561
|
+
pendingFirstMessageRef.current = null;
|
|
562
|
+
setError(requestError instanceof Error ? requestError.message : "Unable to start agent chat");
|
|
563
|
+
}).finally(() => {
|
|
564
|
+
setIsCreatingSession(false);
|
|
565
|
+
});
|
|
566
|
+
return;
|
|
567
|
+
}
|
|
501
568
|
sendMessage(trimmed);
|
|
502
569
|
setInput("");
|
|
503
570
|
};
|
|
504
|
-
if (status === "loading" || status === "authorizing") {
|
|
571
|
+
if (status === "loading" || status === "authorizing" && !renderIntro) {
|
|
505
572
|
return /* @__PURE__ */ jsx(
|
|
506
573
|
PublicAgentChatFrame,
|
|
507
574
|
{
|
|
@@ -567,8 +634,32 @@ function PublicAgentChat({
|
|
|
567
634
|
}
|
|
568
635
|
);
|
|
569
636
|
}
|
|
570
|
-
if (status === "intro" && grant) {
|
|
637
|
+
if ((status === "intro" || renderIntro && status === "authorizing") && grant) {
|
|
571
638
|
const branding = brandingRecord(grant.branding);
|
|
639
|
+
if (renderIntro) {
|
|
640
|
+
const ctx = {
|
|
641
|
+
start: () => {
|
|
642
|
+
void startSession();
|
|
643
|
+
},
|
|
644
|
+
starting: status === "authorizing",
|
|
645
|
+
title: displayTitle,
|
|
646
|
+
subtitle: displaySubtitle,
|
|
647
|
+
branding,
|
|
648
|
+
slug
|
|
649
|
+
};
|
|
650
|
+
return /* @__PURE__ */ jsx(
|
|
651
|
+
PublicAgentChatFrame,
|
|
652
|
+
{
|
|
653
|
+
className,
|
|
654
|
+
style,
|
|
655
|
+
title: displayTitle,
|
|
656
|
+
subtitle: displaySubtitle,
|
|
657
|
+
statusTone: "ready",
|
|
658
|
+
children: renderIntro(ctx)
|
|
659
|
+
}
|
|
660
|
+
);
|
|
661
|
+
}
|
|
662
|
+
const headlineText = brandingText(branding.headline);
|
|
572
663
|
const introText = brandingText(branding.intro);
|
|
573
664
|
const instructions = Array.isArray(branding.instructions) ? branding.instructions.filter((item) => typeof item === "string") : [];
|
|
574
665
|
const ctaLabel = brandingText(branding.ctaLabel) ?? "Start the conversation";
|
|
@@ -593,6 +684,7 @@ function PublicAgentChat({
|
|
|
593
684
|
boxShadow: "var(--card-shadow)"
|
|
594
685
|
},
|
|
595
686
|
children: /* @__PURE__ */ jsxs(Stack, { gap: "lg", children: [
|
|
687
|
+
headlineText && /* @__PURE__ */ jsx(Title, { order: 2, children: headlineText }),
|
|
596
688
|
introText && /* @__PURE__ */ jsx(Text, { size: "sm", style: { color: "var(--color-text)", lineHeight: 1.6 }, children: introText }),
|
|
597
689
|
instructions.length > 0 && /* @__PURE__ */ jsx(List, { size: "sm", style: { color: "var(--color-text-dimmed)" }, children: instructions.map((item, index) => /* @__PURE__ */ jsx(List.Item, { children: item }, index)) }),
|
|
598
690
|
/* @__PURE__ */ jsx(
|
|
@@ -631,7 +723,7 @@ function PublicAgentChat({
|
|
|
631
723
|
style,
|
|
632
724
|
title: displayTitle,
|
|
633
725
|
subtitle: displaySubtitle,
|
|
634
|
-
statusTone: state.isConnected ? "ready" : "loading",
|
|
726
|
+
statusTone: state.isConnected || !session && capabilityToken ? "ready" : "loading",
|
|
635
727
|
children: /* @__PURE__ */ jsx(Box, { style: { flex: "1 1 auto", minHeight: 0, display: "flex", flexDirection: "column" }, children: /* @__PURE__ */ jsx(
|
|
636
728
|
ChatInterface,
|
|
637
729
|
{
|
|
@@ -640,8 +732,8 @@ function PublicAgentChat({
|
|
|
640
732
|
onInputChange: setInput,
|
|
641
733
|
onSendMessage: handleSend,
|
|
642
734
|
style: { flex: "1 1 auto", minHeight: 0, height: "100%" },
|
|
643
|
-
isProcessing: state.isProcessing,
|
|
644
|
-
isConnected: state.isConnected,
|
|
735
|
+
isProcessing: state.isProcessing || isCreatingSession,
|
|
736
|
+
isConnected: state.isConnected || !session && capabilityToken !== null,
|
|
645
737
|
error: state.error,
|
|
646
738
|
onClearError: clearError,
|
|
647
739
|
emptyStateText: "No messages yet",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-36PY65TF.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-36PY65TF.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -7261,7 +7261,7 @@ declare const sessionsKeys: {
|
|
|
7261
7261
|
resourceId?: string;
|
|
7262
7262
|
}) => readonly ["sessions", "list", SupabaseOrgId | null, {
|
|
7263
7263
|
resourceId?: string;
|
|
7264
|
-
} |
|
|
7264
|
+
}] | readonly ["sessions", "list", SupabaseOrgId | null];
|
|
7265
7265
|
session: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", "detail", SupabaseOrgId | null, string];
|
|
7266
7266
|
executions: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions"];
|
|
7267
7267
|
execution: (org: SupabaseOrgId | null, sessionId: string, executionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions", string];
|
|
@@ -7741,7 +7741,7 @@ declare const operationsKeys: {
|
|
|
7741
7741
|
resourceId?: string;
|
|
7742
7742
|
}) => readonly ["operations", "sessions", WorkOsOrgId, {
|
|
7743
7743
|
resourceId?: string;
|
|
7744
|
-
} |
|
|
7744
|
+
}] | readonly ["operations", "sessions", WorkOsOrgId];
|
|
7745
7745
|
session: (org: WorkOsOrgId, sessionId: string) => readonly ["operations", "session", WorkOsOrgId, string];
|
|
7746
7746
|
};
|
|
7747
7747
|
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
1
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-36PY65TF.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -7261,7 +7261,7 @@ declare const sessionsKeys: {
|
|
|
7261
7261
|
resourceId?: string;
|
|
7262
7262
|
}) => readonly ["sessions", "list", SupabaseOrgId | null, {
|
|
7263
7263
|
resourceId?: string;
|
|
7264
|
-
} |
|
|
7264
|
+
}] | readonly ["sessions", "list", SupabaseOrgId | null];
|
|
7265
7265
|
session: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", "detail", SupabaseOrgId | null, string];
|
|
7266
7266
|
executions: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions"];
|
|
7267
7267
|
execution: (org: SupabaseOrgId | null, sessionId: string, executionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions", string];
|
|
@@ -7741,7 +7741,7 @@ declare const operationsKeys: {
|
|
|
7741
7741
|
resourceId?: string;
|
|
7742
7742
|
}) => readonly ["operations", "sessions", WorkOsOrgId, {
|
|
7743
7743
|
resourceId?: string;
|
|
7744
|
-
} |
|
|
7744
|
+
}] | readonly ["operations", "sessions", WorkOsOrgId];
|
|
7745
7745
|
session: (org: WorkOsOrgId, sessionId: string) => readonly ["operations", "session", WorkOsOrgId, string];
|
|
7746
7746
|
};
|
|
7747
7747
|
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
1
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-36PY65TF.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -9764,7 +9764,7 @@ declare const sessionsKeys: {
|
|
|
9764
9764
|
resourceId?: string;
|
|
9765
9765
|
}) => readonly ["sessions", "list", SupabaseOrgId | null, {
|
|
9766
9766
|
resourceId?: string;
|
|
9767
|
-
} |
|
|
9767
|
+
}] | readonly ["sessions", "list", SupabaseOrgId | null];
|
|
9768
9768
|
session: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", "detail", SupabaseOrgId | null, string];
|
|
9769
9769
|
executions: (org: SupabaseOrgId | null, sessionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions"];
|
|
9770
9770
|
execution: (org: SupabaseOrgId | null, sessionId: string, executionId: string) => readonly ["sessions", SupabaseOrgId | null, string, "executions", string];
|
|
@@ -10254,7 +10254,7 @@ declare const operationsKeys: {
|
|
|
10254
10254
|
resourceId?: string;
|
|
10255
10255
|
}) => readonly ["operations", "sessions", WorkOsOrgId, {
|
|
10256
10256
|
resourceId?: string;
|
|
10257
|
-
} |
|
|
10257
|
+
}] | readonly ["operations", "sessions", WorkOsOrgId];
|
|
10258
10258
|
session: (org: WorkOsOrgId, sessionId: string) => readonly ["operations", "session", WorkOsOrgId, string];
|
|
10259
10259
|
};
|
|
10260
10260
|
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { createElevasisQueryClient } from './chunk-4UA62IDF.js';
|
|
2
|
-
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-DQG7FEYZ.js';
|
|
2
|
+
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-36PY65TF.js';
|
|
3
3
|
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride, useAvailablePresets, usePresetsContext } from './chunk-NZ2F5RQ4.js';
|
|
4
4
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground, generateShades, getPreset, PRESETS as presets } from './chunk-OJJK27GC.js';
|
|
5
5
|
import './chunk-ZTWA5H77.js';
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, PageContainer, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, PolicySchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
2
|
-
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-
|
|
1
|
+
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, PageContainer, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, PolicySchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-36PY65TF.js';
|
|
2
|
+
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-36PY65TF.js';
|
|
3
3
|
import { usePresetsContext } from '../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../chunk-OJJK27GC.js';
|
|
5
5
|
import '../chunk-ZTWA5H77.js';
|
package/dist/layout/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-
|
|
1
|
+
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-36PY65TF.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|