@opengeni/react 0.25.0 → 0.26.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-AVPU5PMC.js → chunk-F4CFWKVI.js} +332 -64
- package/dist/chunk-F4CFWKVI.js.map +1 -0
- package/dist/chunk-GQN2QIR2.js +3767 -0
- package/dist/chunk-GQN2QIR2.js.map +1 -0
- package/dist/{chunk-I3BJZIG5.js → chunk-HIWPQYWI.js} +2 -120
- package/dist/chunk-HIWPQYWI.js.map +1 -0
- package/dist/chunk-M7X4JZOD.js +121 -0
- package/dist/chunk-M7X4JZOD.js.map +1 -0
- package/dist/{chunk-SHOFILHJ.js → chunk-MP6237JB.js} +570 -984
- package/dist/chunk-MP6237JB.js.map +1 -0
- package/dist/chunk-OZDLELJQ.js +937 -0
- package/dist/chunk-OZDLELJQ.js.map +1 -0
- package/dist/{chunk-RDPDU4TA.js → chunk-TMH6HZWF.js} +3 -3
- package/dist/{chunk-6XUS5VFM.js → chunk-YU5PGUK7.js} +6 -4
- package/dist/{chunk-6XUS5VFM.js.map → chunk-YU5PGUK7.js.map} +1 -1
- package/dist/{composer-BXb0Q1HF.d.ts → composer-DoC4veX1.d.ts} +4 -75
- package/dist/composer.d.ts +2 -1
- package/dist/composer.js +4 -3
- package/dist/index.d.ts +14 -259
- package/dist/index.js +1016 -5140
- package/dist/index.js.map +1 -1
- package/dist/machines.js +3 -2
- package/dist/session-Du_FsrZ1.d.ts +264 -0
- package/dist/session-ui-BqQDH7YV.d.ts +183 -0
- package/dist/session-ui.d.ts +7 -0
- package/dist/session-ui.js +17 -0
- package/dist/session-ui.js.map +1 -0
- package/dist/session.d.ts +3 -1
- package/dist/session.js +26 -9
- package/dist/use-file-attachments-C0kpHrs9.d.ts +76 -0
- package/dist/{session-BEvtFWhe.d.ts → use-turn-queue-3rkJwjFv.d.ts} +3 -185
- package/package.json +6 -2
- package/src/components/message-timeline.tsx +92 -52
- package/src/hooks/use-composer.ts +456 -69
- package/src/hooks/use-file-attachments.ts +1 -1
- package/src/hooks/use-goal.ts +1 -1
- package/src/hooks/use-session-events.ts +5 -0
- package/src/hooks/use-session-lineage.ts +1 -1
- package/src/hooks/use-session.ts +9 -6
- package/src/session-ui.ts +13 -0
- package/src/session.ts +15 -0
- package/src/timeline/activity-rail.tsx +1 -1
- package/dist/chunk-AVPU5PMC.js.map +0 -1
- package/dist/chunk-I3BJZIG5.js.map +0 -1
- package/dist/chunk-SHOFILHJ.js.map +0 -1
- /package/dist/{chunk-RDPDU4TA.js.map → chunk-TMH6HZWF.js.map} +0 -0
|
@@ -2,9 +2,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { KeyboardEvent, ButtonHTMLAttributes, ClipboardEvent, RefObject, DragEvent, ChangeEvent, ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
4
4
|
import * as _opengeni_sdk from '@opengeni/sdk';
|
|
5
|
-
import { Permission, SessionStatus,
|
|
6
|
-
import { S as SessionClientLike
|
|
5
|
+
import { Permission, SessionStatus, EffectiveSessionControl, ClientModel, TranscriptionLifecycleStatus, TranscriptionErrorCode, TranscriptionEvent, TranscriptionAdapter, WorkspaceTranscriptionPolicy, TranscriptionTargetSelection, TranscriptionDiagnostic, TranscriptionPolicyBlockReason } from '@opengeni/sdk';
|
|
6
|
+
import { S as SessionClientLike } from './session-context-rgrfElMl.js';
|
|
7
7
|
import { C as ComposerState } from './use-composer-BnEzheSk.js';
|
|
8
|
+
import { U as UseFileAttachmentsResult } from './use-file-attachments-C0kpHrs9.js';
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* The slash-command registry. A command is a SESSION / OPERATOR control — an
|
|
@@ -155,78 +156,6 @@ type UseSlashCommandsResult = {
|
|
|
155
156
|
};
|
|
156
157
|
declare function useSlashCommands(options: UseSlashCommandsOptions): UseSlashCommandsResult;
|
|
157
158
|
|
|
158
|
-
type UseFileAttachmentsOptions = ClientOverride & {
|
|
159
|
-
/**
|
|
160
|
-
* Only files matching this predicate are accepted by {@link
|
|
161
|
-
* UseFileAttachmentsResult.addFromPaste} (the clipboard path). Defaults to
|
|
162
|
-
* `image/*` — the console's historical paste filter. {@link
|
|
163
|
-
* UseFileAttachmentsResult.addFiles} (the explicit picker / drop path)
|
|
164
|
-
* bypasses it.
|
|
165
|
-
*/
|
|
166
|
-
pasteFilter?: ((file: File) => boolean) | undefined;
|
|
167
|
-
};
|
|
168
|
-
type FileAttachment = {
|
|
169
|
-
id: string;
|
|
170
|
-
name: string;
|
|
171
|
-
contentType: string;
|
|
172
|
-
sizeBytes: number;
|
|
173
|
-
status: "uploading" | "ready" | "failed";
|
|
174
|
-
/** The SDK `FileAsset` once the upload finishes. */
|
|
175
|
-
file?: FileAsset | undefined;
|
|
176
|
-
/** Object-URL for an inline preview; minted for `image/*` files only. */
|
|
177
|
-
previewUrl?: string | undefined;
|
|
178
|
-
error?: string | undefined;
|
|
179
|
-
};
|
|
180
|
-
type UseFileAttachmentsResult = {
|
|
181
|
-
attachments: FileAttachment[];
|
|
182
|
-
/**
|
|
183
|
-
* `FileResourceRef[]` for every attachment that finished uploading — feed
|
|
184
|
-
* straight into `useComposer`'s `sendExtras.resources`.
|
|
185
|
-
*/
|
|
186
|
-
readyResources: FileResourceRef[];
|
|
187
|
-
/** True while any attachment is still uploading (drives progress UI). */
|
|
188
|
-
uploading: boolean;
|
|
189
|
-
/**
|
|
190
|
-
* True while any attachment still needs an explicit outcome: wait for an
|
|
191
|
-
* upload, retry a failure, or remove it. This is the loss-prevention send
|
|
192
|
-
* gate; failed cards must never be silently omitted from a message.
|
|
193
|
-
*/
|
|
194
|
-
hasUnresolved: boolean;
|
|
195
|
-
/** Explicit picker / drop path — uploads every file, no filter. */
|
|
196
|
-
addFiles: (files: Iterable<File>) => void;
|
|
197
|
-
/** Clipboard path — applies `pasteFilter` (default `image/*`) then uploads. */
|
|
198
|
-
addFromPaste: (event: {
|
|
199
|
-
clipboardData: DataTransfer | null;
|
|
200
|
-
}) => void;
|
|
201
|
-
/** Restore already-ready server assets without recreating browser-local bytes. */
|
|
202
|
-
restoreReadyFiles: (files: Iterable<FileAsset>) => void;
|
|
203
|
-
/**
|
|
204
|
-
* Re-run the upload for a `failed` attachment, in place (same id, same
|
|
205
|
-
* source file). No-op for an id that isn't a known failed upload.
|
|
206
|
-
*/
|
|
207
|
-
retry: (id: string) => void;
|
|
208
|
-
/** Remove one attachment; revokes its object-URL. */
|
|
209
|
-
remove: (id: string) => void;
|
|
210
|
-
/**
|
|
211
|
-
* Remove only finalized files whose durable ids were accepted by a send.
|
|
212
|
-
* Attachments added while that request was in flight remain queued for the
|
|
213
|
-
* next message.
|
|
214
|
-
*/
|
|
215
|
-
removeReadyFiles: (fileIds: Iterable<string>) => void;
|
|
216
|
-
/** Remove all attachments and revoke every object-URL. */
|
|
217
|
-
clear: () => void;
|
|
218
|
-
};
|
|
219
|
-
/**
|
|
220
|
-
* Upload-and-track state for files attached to the next message. Owns the
|
|
221
|
-
* full client-side upload layer: a per-file `uploading | ready | failed`
|
|
222
|
-
* status machine driven by the SDK's `client.uploadFile`, object-URL image
|
|
223
|
-
* previews with create/revoke lifecycle, the `image/*` clipboard paste filter,
|
|
224
|
-
* and a `FileResourceRef[]` projection that drops straight into a message's
|
|
225
|
-
* `resources`. Workspace-scoped, so it resolves both client and workspace from
|
|
226
|
-
* the {@link OpenGeniProvider} (or a per-call `{ client, workspaceId }`).
|
|
227
|
-
*/
|
|
228
|
-
declare function useFileAttachments(options?: UseFileAttachmentsOptions): UseFileAttachmentsResult;
|
|
229
|
-
|
|
230
159
|
declare const OPEN_WORKSTREAM_CONTROL_EVENT = "opengeni:open-workstream-control";
|
|
231
160
|
type ComposerDelivery = Pick<ComposerState, "value" | "setValue" | "send" | "steer" | "sending" | "canSend" | "error" | "clearError">;
|
|
232
161
|
type ComposerDraftState = Pick<ComposerState, "draftConflict" | "draftSaving" | "resolveDraftConflict" | "restoredResources" | "removeRestoredResource">;
|
|
@@ -596,4 +525,4 @@ type ComposerTranscriptionControlProps = {
|
|
|
596
525
|
/** One provider-neutral microphone control for the nearest editable composer. */
|
|
597
526
|
declare function ComposerTranscriptionControl({ adapter, policy, selection, messages: overrides, className, lifecycleTimeouts, onDiagnostic, }: ComposerTranscriptionControlProps): react_jsx_runtime.JSX.Element;
|
|
598
527
|
|
|
599
|
-
export {
|
|
528
|
+
export { Footer as $, Actions as A, type ComposerAttachButtonProps as B, type ComposerControlLinks as C, type ComposerCommandPaletteProps as D, type ComposerControlState as E, type ComposerControlsProps as F, type ComposerDelivery as G, type ComposerDraftState as H, INITIAL_TRANSCRIPTION_CONTROL_STATE as I, type ComposerFooterProps as J, type ComposerFrameProps as K, type ComposerHintProps as L, type ComposerInputProps as M, type Notice as N, OPEN_WORKSTREAM_CONTROL_EVENT as O, type ComposerModelPickerProps as P, type ComposerPauseButtonProps as Q, type ComposerRootProps as R, type SlashCommand as S, type TranscriptionControlAction as T, type UseSlashCommandsOptions as U, type ComposerSendButtonProps as V, type ComposerSubmitBlocker as W, type ComposerSubmitMode as X, type ComposerSurfaceProps as Y, Confirmation as Z, Controls as _, type ComposerTranscriptionControlProps as a, Frame as a0, Help as a1, Hint as a2, Input as a3, ModelPicker as a4, PauseButton as a5, PausedState as a6, RestoredResources as a7, Root as a8, SendButton as a9, Status as aa, Surface as ab, type UseChatComposerControllerOptions as ac, useChatComposer as ad, useChatComposerController as ae, type SlashCommandContext as b, type ChatComposerMessages as c, type SlashArg as d, type CommandContext as e, type CommandResult as f, ComposerTranscriptionControl as g, type ComposerTranscriptionMessages as h, type ConfirmState as i, type SlashCommandHandlers as j, type TranscriptionControlState as k, type TranscriptionControlTransition as l, type UseSlashCommandsResult as m, type UseTranscriptionOptions as n, type UseTranscriptionResult as o, appendFinalTranscript as p, defaultChatComposerMessages as q, useTranscription as r, AttachButton as s, transitionTranscriptionControl as t, useSlashCommands as u, Attachments as v, type ChatComposerContextValue as w, type ChatComposerController as x, CommandPalette as y, type ComposerActionsProps as z };
|
package/dist/composer.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export { A as Actions,
|
|
1
|
+
export { A as Actions, s as AttachButton, v as Attachments, w as ChatComposerContextValue, x as ChatComposerController, c as ChatComposerMessages, y as CommandPalette, z as ComposerActionsProps, B as ComposerAttachButtonProps, D as ComposerCommandPaletteProps, C as ComposerControlLinks, E as ComposerControlState, F as ComposerControlsProps, G as ComposerDelivery, H as ComposerDraftState, J as ComposerFooterProps, K as ComposerFrameProps, L as ComposerHintProps, M as ComposerInputProps, P as ComposerModelPickerProps, Q as ComposerPauseButtonProps, R as ComposerRootProps, V as ComposerSendButtonProps, W as ComposerSubmitBlocker, X as ComposerSubmitMode, Y as ComposerSurfaceProps, g as ComposerTranscriptionControl, a as ComposerTranscriptionControlProps, h as ComposerTranscriptionMessages, Z as Confirmation, _ as Controls, $ as Footer, a0 as Frame, a1 as Help, a2 as Hint, a3 as Input, a4 as ModelPicker, O as OPEN_WORKSTREAM_CONTROL_EVENT, a5 as PauseButton, a6 as PausedState, a7 as RestoredResources, a8 as Root, a9 as SendButton, aa as Status, ab as Surface, ac as UseChatComposerControllerOptions, q as defaultChatComposerMessages, ad as useChatComposer, ae as useChatComposerController } from './composer-DoC4veX1.js';
|
|
2
2
|
import 'react/jsx-runtime';
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@opengeni/sdk';
|
|
5
5
|
import './session-context-rgrfElMl.js';
|
|
6
6
|
import './use-composer-BnEzheSk.js';
|
|
7
|
+
import './use-file-attachments-C0kpHrs9.js';
|
package/dist/composer.js
CHANGED
|
@@ -23,10 +23,11 @@ import {
|
|
|
23
23
|
defaultChatComposerMessages,
|
|
24
24
|
useChatComposer,
|
|
25
25
|
useChatComposerController
|
|
26
|
-
} from "./chunk-
|
|
26
|
+
} from "./chunk-TMH6HZWF.js";
|
|
27
27
|
import "./chunk-TK7G6XLT.js";
|
|
28
|
-
import "./chunk-
|
|
29
|
-
import "./chunk-
|
|
28
|
+
import "./chunk-F4CFWKVI.js";
|
|
29
|
+
import "./chunk-HIWPQYWI.js";
|
|
30
|
+
import "./chunk-M7X4JZOD.js";
|
|
30
31
|
export {
|
|
31
32
|
Actions,
|
|
32
33
|
AttachButton,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
import { S as SessionClientLike, C as ClientOverride } from './session-context-rgrfElMl.js';
|
|
2
2
|
export { a as EmbeddedHumanInputSessionClientLike, b as EmbeddedSessionClientLike, c as EmbeddedSessionMcpApprovalPolicyClientLike, O as OpenGeniContextValue, u as useOpenGeni, d as useOpenGeniClient } from './session-context-rgrfElMl.js';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { WorkspaceControlEvent,
|
|
4
|
+
import { WorkspaceControlEvent, EffectiveSessionControl, ClientModel, ScheduledTask, Session, VariableSet, CreateVariableSetRequest, UpdateVariableSetRequest, VariableSetVariableMetadata, RigChange, Rig, UpdateRigRequest, RigVersion, ProposeRigChangeRequest, CreateRigRequest, CapabilityPack, PackInstallation, RegisterCapabilityPackRequest, WorkspaceRegisteredPack, EnablePackRequest, Workspace, CreateWorkspaceRequest, UpdateWorkspaceRequest, BillingBalance, UsageEvent, SessionEvent, SessionCapabilities, DesktopStreamCapability, DesktopConnectionState, DesktopRfbFactory, TerminalCapability, OpenGeniRequestOptions, FsReadResponse, FsWriteResponse, WorkspaceCaptureManifest, GitFileDiff, WorkspaceCaptureDegradedReason, MachineState, Permission, SessionStatus as SessionStatus$1, CapabilityUnavailableReason, MachineView, CodexAccountsResponse, CodexAccount, CodexRotationSettings } from '@opengeni/sdk';
|
|
5
5
|
export { MachineKind, MachineMetricsSeriesResponse, MachineState, MachineView, MachinesResponse, MetricSample } from '@opengeni/sdk';
|
|
6
6
|
import * as react from 'react';
|
|
7
|
-
import { ReactNode, ClipboardEvent, RefObject
|
|
8
|
-
import {
|
|
7
|
+
import { ReactNode, ClipboardEvent, RefObject } from 'react';
|
|
8
|
+
import { P as PendingApproval } from './session-Du_FsrZ1.js';
|
|
9
|
+
export { B as BrowserSessionEventWindow, a as PendingHumanInputRequest, S as SESSION_EVENT_BROWSER_MAX_BYTES, b as SESSION_EVENT_BROWSER_MAX_COUNT, c as SESSION_EVENT_BROWSER_PENDING_MAX_BYTES, d as SESSION_EVENT_BROWSER_PENDING_MAX_COUNT, e as SESSION_EVENT_BROWSER_SINGLE_EVENT_MAX_BYTES, f as SessionEventsConnectionState, U as UseGoalOptions, g as UseGoalResult, h as UseHumanInputRequestsOptions, i as UseHumanInputRequestsResult, j as UseSessionControlOptions, k as UseSessionControlResult, l as UseSessionEventsOptions, m as UseSessionEventsResult, n as UseSessionLineageOptions, o as UseSessionLineageResult, p as UseSessionMcpApprovalPolicyOptions, q as UseSessionMcpApprovalPolicyResult, r as UseSessionOptions, s as UseSessionResult, t as approvalsFromRequiresAction, u as boundBrowserSessionEventWindow, v as buildTimeline, w as creditExhaustedFromEvents, x as extractSessionRef, y as groupTimeline, z as humanInputRequestFromEvent, A as isGoalEvent, C as isHumanInputEvent, D as isLineageRefreshEvent, E as isSessionMcpApprovalPolicyEvent, F as isTitleEvent, G as projectPendingApprovals, H as projectPendingHumanInputRequests, I as sessionStatusFromEvents, J as toolDisplayName, K as useGoal, L as useHumanInputRequests, M as useSession, N as useSessionControl, O as useSessionEvents, Q as useSessionLineage, R as useSessionMcpApprovalPolicy } from './session-Du_FsrZ1.js';
|
|
10
|
+
import { C as ComposerState, S as SessionEventFeedOptions } from './use-composer-BnEzheSk.js';
|
|
9
11
|
export { a as ComposerSendExtras, F as FILE_ONLY_MESSAGE_TEXT, U as UseComposerOptions, c as composeSendInput, s as shouldSteerOnKey, b as shouldSubmitOnKey, u as useComposer } from './use-composer-BnEzheSk.js';
|
|
10
|
-
import {
|
|
11
|
-
export {
|
|
12
|
-
import {
|
|
13
|
-
export {
|
|
12
|
+
import { C as ComposerControlLinks, a as ComposerTranscriptionControlProps, S as SlashCommand, b as SlashCommandContext, c as ChatComposerMessages, d as SlashArg, e as CommandContext } from './composer-DoC4veX1.js';
|
|
13
|
+
export { f as CommandResult, g as ComposerTranscriptionControl, h as ComposerTranscriptionMessages, i as ConfirmState, I as INITIAL_TRANSCRIPTION_CONTROL_STATE, N as Notice, O as OPEN_WORKSTREAM_CONTROL_EVENT, j as SlashCommandHandlers, T as TranscriptionControlAction, k as TranscriptionControlState, l as TranscriptionControlTransition, U as UseSlashCommandsOptions, m as UseSlashCommandsResult, n as UseTranscriptionOptions, o as UseTranscriptionResult, p as appendFinalTranscript, q as defaultChatComposerMessages, t as transitionTranscriptionControl, u as useSlashCommands, r as useTranscription } from './composer-DoC4veX1.js';
|
|
14
|
+
import { U as UseFileAttachmentsResult } from './use-file-attachments-C0kpHrs9.js';
|
|
15
|
+
export { F as FileAttachment, a as UseFileAttachmentsOptions, u as useFileAttachments } from './use-file-attachments-C0kpHrs9.js';
|
|
16
|
+
import { A as ActivityItem, T as TurnOutcome } from './use-turn-queue-3rkJwjFv.js';
|
|
17
|
+
export { a as AgentMessageItem, b as AuthNeededItem, G as GoalItem, N as NoticeItem, Q as QueueMutationKind, R as ReasoningItem, S as SandboxItem, c as SessionStatusItem, d as TimelineGroup, e as TimelineItem, f as ToolCallItem, g as TurnEndItem, U as UseTurnQueueOptions, h as UseTurnQueueResult, i as UserMessageItem, W as WorkerItem, j as isTurnQueueEvent, u as useTurnQueue } from './use-turn-queue-3rkJwjFv.js';
|
|
18
|
+
import { c as createToolRegistry, T as ToolRegistry } from './session-ui-BqQDH7YV.js';
|
|
19
|
+
export { C as CreateToolRegistryOptions, H as HumanInputAnswerDraft, a as HumanInputForm, b as HumanInputFormMessages, d as HumanInputFormProps, M as MessageTimeline, e as MessageTimelineProps, Q as QueueSurface, f as QueueSurfaceProps, g as TimelineRow, h as ToolRegistryEntry, i as ToolRenderer, j as ToolRendererProps, k as answersFromDrafts, l as defaultHumanInputFormMessages, r as rawTypeOf } from './session-ui-BqQDH7YV.js';
|
|
14
20
|
export { CONNECTION_STATUS_META, ConnectionDot, ConnectionDotProps, ConnectionStatus, ConnectionStatusMeta, ConnectionStatusPill, ConnectionStatusPillProps, DeviceFlowPhase, EnrollmentConsent, EnrollmentConsentMachine, EnrollmentConsentPhase, EnrollmentConsentProps, EnrollmentDeviceFlow, EnrollmentDeviceFlowProps, HEALTH_TOKEN, HealthLevel, HealthVerdict, MACHINE_STATE_BADGE_META, METRICS, METRIC_WINDOWS, MachineCard, MachineCardProps, MachineDetail, MachineDetailProps, MachineDockBar, MachineDockBarProps, MachineHealthPill, MachineHealthPillProps, MachineMetrics, MachineMetricsProps, MachineStateBadgeMeta, MachineStatusPill, MachineStatusPillProps, MachinesClientLike, MachinesDashboard, MachinesDashboardProps, MetricDef, MetricHistoryChart, MetricHistoryChartProps, MetricKey, MetricSparkline, MetricSparklineProps, MetricWindow, SeriesPoint, SharedMachineDisclosure, SharedMachineDisclosureProps, UseMachinesOptions, UseMachinesResult, WINDOW_LABEL, connectionStatusForState, deriveHealth, healthPulses, pointsFor, useMachines } from './machines.js';
|
|
15
21
|
import { ClassValue } from 'clsx';
|
|
16
22
|
|
|
@@ -26,45 +32,6 @@ type OpenGeniProviderProps = {
|
|
|
26
32
|
*/
|
|
27
33
|
declare function OpenGeniProvider({ client, workspaceId, onWorkspaceControlEvent, children, }: OpenGeniProviderProps): react_jsx_runtime.JSX.Element;
|
|
28
34
|
|
|
29
|
-
type UseSessionOptions = ClientOverride & SessionEventFeedOptions & {
|
|
30
|
-
/** Re-fetch on an interval (ms). Off by default — pair with `useSessionEvents` for live status. */
|
|
31
|
-
pollIntervalMs?: number | undefined;
|
|
32
|
-
};
|
|
33
|
-
type UseSessionResult = {
|
|
34
|
-
session: Session | null;
|
|
35
|
-
loading: boolean;
|
|
36
|
-
error: Error | null;
|
|
37
|
-
refresh: () => Promise<void>;
|
|
38
|
-
/** Manually rename the session (PATCH, source='user'). Returns the updated session, or null on failure. */
|
|
39
|
-
updateTitle: (title: string) => Promise<Session | null>;
|
|
40
|
-
/** True while a rename is in flight. */
|
|
41
|
-
updating: boolean;
|
|
42
|
-
mutationError: Error | null;
|
|
43
|
-
clearMutationError: () => void;
|
|
44
|
-
};
|
|
45
|
-
/** Event types that change the session title (auto + cross-client renames). */
|
|
46
|
-
declare function isTitleEvent(event: Pick<SessionEvent, "type">): boolean;
|
|
47
|
-
/** Fetch one session (with optional polling), live-patching its title on `session.title_set`. */
|
|
48
|
-
declare function useSession(sessionId: string | null | undefined, options?: UseSessionOptions): UseSessionResult;
|
|
49
|
-
|
|
50
|
-
/** The sole human prompt queue: compact above Goal, Agents, and composer. */
|
|
51
|
-
type QueueSurfaceCommonProps = {
|
|
52
|
-
/** Focus the composer owned by this queue after checkout/removal. */
|
|
53
|
-
onRequestComposerFocus?: (() => void) | undefined;
|
|
54
|
-
};
|
|
55
|
-
type QueueSurfaceProps = (QueueSurfaceCommonProps & {
|
|
56
|
-
queue: UseTurnQueueResult;
|
|
57
|
-
composer: ComposerState;
|
|
58
|
-
readOnly?: false | undefined;
|
|
59
|
-
}) | (QueueSurfaceCommonProps & {
|
|
60
|
-
queue: UseTurnQueueResult;
|
|
61
|
-
composer?: undefined;
|
|
62
|
-
readOnly: true;
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
/** The sole human prompt queue: compact above Goal, Agents, and composer. */
|
|
66
|
-
declare const QueueSurface: (props: QueueSurfaceProps) => react_jsx_runtime.JSX.Element | null;
|
|
67
|
-
|
|
68
35
|
type ChatComposerProps = {
|
|
69
36
|
composer: ComposerState;
|
|
70
37
|
/** Canonical workstream control, separate from lifecycle status. */
|
|
@@ -108,44 +75,6 @@ type ChatComposerProps = {
|
|
|
108
75
|
*/
|
|
109
76
|
declare function ChatComposer({ composer, effectiveControl, queuedAheadCount, canControlWorkspace, controlLinks, placeholder, disabled, autoFocus, hint, controlsStart, transcription, header, onPaste, attachments, models, selectedModel, onSelectModel, className, commands, commandContext, onClearView, messages, }: ChatComposerProps): react_jsx_runtime.JSX.Element;
|
|
110
77
|
|
|
111
|
-
/** Event types that change the session goal (set/updated/completed/paused/...). */
|
|
112
|
-
declare function isGoalEvent(event: Pick<SessionEvent, "type">): boolean;
|
|
113
|
-
type UseGoalOptions = ClientOverride & SessionEventFeedOptions & {
|
|
114
|
-
/** Optional safety-net polling (ms). Off by default — event refreshes drive updates. */
|
|
115
|
-
pollIntervalMs?: number | undefined;
|
|
116
|
-
};
|
|
117
|
-
type UseGoalResult = {
|
|
118
|
-
/** The session goal, or null when the session has none. */
|
|
119
|
-
goal: SessionGoal | null;
|
|
120
|
-
/** Convenience flags over `goal.status`. */
|
|
121
|
-
isActive: boolean;
|
|
122
|
-
isPaused: boolean;
|
|
123
|
-
isCompleted: boolean;
|
|
124
|
-
loading: boolean;
|
|
125
|
-
error: Error | null;
|
|
126
|
-
refresh: () => Promise<void>;
|
|
127
|
-
/** Pause the goal loop (PATCH status=paused). */
|
|
128
|
-
pause: (rationale?: string) => Promise<SessionGoal | null>;
|
|
129
|
-
/** Resume a paused goal: resets counters and re-arms continuations. */
|
|
130
|
-
resume: () => Promise<SessionGoal | null>;
|
|
131
|
-
/** Clear the session goal; goal-less sessions remain a successful no-op. */
|
|
132
|
-
clearGoal: () => Promise<void>;
|
|
133
|
-
/** Alias for `clearGoal`. */
|
|
134
|
-
deleteGoal: () => Promise<void>;
|
|
135
|
-
/** True while a pause/resume/clear is in flight. */
|
|
136
|
-
updating: boolean;
|
|
137
|
-
mutationError: Error | null;
|
|
138
|
-
clearMutationError: () => void;
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* The session's goal: state, the autonomy counters (`autoContinuations`,
|
|
142
|
-
* `noProgressStreak`), and pause/resume control. A goal-less session yields
|
|
143
|
-
* `goal: null` (the 404 is absorbed). Live-updates on goal, turn, session,
|
|
144
|
-
* control, and system-update events — pass `options.events` from
|
|
145
|
-
* `useSessionEvents` to reuse its stream.
|
|
146
|
-
*/
|
|
147
|
-
declare function useGoal(sessionId: string | null | undefined, options?: UseGoalOptions): UseGoalResult;
|
|
148
|
-
|
|
149
78
|
type UseScheduledTasksOptions = ClientOverride & {
|
|
150
79
|
limit?: number | undefined;
|
|
151
80
|
pollIntervalMs?: number | undefined;
|
|
@@ -189,22 +118,6 @@ type UseWorkspaceSessionsResult = {
|
|
|
189
118
|
/** List the workspace's sessions — the data behind fleet and manager views. */
|
|
190
119
|
declare function useWorkspaceSessions(options?: UseWorkspaceSessionsOptions): UseWorkspaceSessionsResult;
|
|
191
120
|
|
|
192
|
-
type UseSessionLineageOptions = ClientOverride & {
|
|
193
|
-
events?: SessionEvent[] | undefined;
|
|
194
|
-
/** Refresh interval (ms). Off by default. */
|
|
195
|
-
pollIntervalMs?: number | undefined;
|
|
196
|
-
enabled?: boolean | undefined;
|
|
197
|
-
};
|
|
198
|
-
type UseSessionLineageResult = {
|
|
199
|
-
lineage: SessionLineageResponse | null;
|
|
200
|
-
loading: boolean;
|
|
201
|
-
error: Error | null;
|
|
202
|
-
refresh: () => Promise<void>;
|
|
203
|
-
};
|
|
204
|
-
declare function isLineageRefreshEvent(event: SessionEvent): boolean;
|
|
205
|
-
/** Read the ancestors + descendant tree for one session. Data-only; no UI state. */
|
|
206
|
-
declare function useSessionLineage(sessionId: string | null | undefined, options?: UseSessionLineageOptions): UseSessionLineageResult;
|
|
207
|
-
|
|
208
121
|
type UseVariableSetsOptions = ClientOverride & {
|
|
209
122
|
pollIntervalMs?: number | undefined;
|
|
210
123
|
enabled?: boolean | undefined;
|
|
@@ -1066,91 +979,6 @@ type ApprovalSurfaceProps = {
|
|
|
1066
979
|
*/
|
|
1067
980
|
declare function ApprovalSurface({ approvals, onApprove, onReject, responding, error, messages: overrides, renderApproval, className, }: ApprovalSurfaceProps): react_jsx_runtime.JSX.Element | null;
|
|
1068
981
|
|
|
1069
|
-
type HumanInputAnswerDraft = {
|
|
1070
|
-
values: string[];
|
|
1071
|
-
other: string;
|
|
1072
|
-
otherSelected: boolean;
|
|
1073
|
-
};
|
|
1074
|
-
type HumanInputFormMessages = {
|
|
1075
|
-
title: string;
|
|
1076
|
-
description: string;
|
|
1077
|
-
submit: string;
|
|
1078
|
-
skip: string;
|
|
1079
|
-
submitting: string;
|
|
1080
|
-
other: string;
|
|
1081
|
-
deadlineLabel: string;
|
|
1082
|
-
formatDeadline: (value: string) => string;
|
|
1083
|
-
required: string;
|
|
1084
|
-
minLength: (count: number) => string;
|
|
1085
|
-
maxLength: (count: number) => string;
|
|
1086
|
-
otherRequired: string;
|
|
1087
|
-
minSelections: (count: number) => string;
|
|
1088
|
-
maxSelections: (count: number) => string;
|
|
1089
|
-
};
|
|
1090
|
-
declare const defaultHumanInputFormMessages: HumanInputFormMessages;
|
|
1091
|
-
type HumanInputFormProps = {
|
|
1092
|
-
request: Pick<SessionHumanInputRequest, "id" | "questions" | "allowSkip" | "expiresAt">;
|
|
1093
|
-
onSubmit: (response: SubmitHumanInputResponseRequest) => void | Promise<void>;
|
|
1094
|
-
submitting?: boolean | undefined;
|
|
1095
|
-
error?: string | null | undefined;
|
|
1096
|
-
title?: ReactNode;
|
|
1097
|
-
description?: ReactNode;
|
|
1098
|
-
submitLabel?: string | undefined;
|
|
1099
|
-
skipLabel?: string | undefined;
|
|
1100
|
-
messages?: Partial<HumanInputFormMessages> | undefined;
|
|
1101
|
-
autoFocus?: boolean | undefined;
|
|
1102
|
-
className?: string | undefined;
|
|
1103
|
-
};
|
|
1104
|
-
/**
|
|
1105
|
-
* Styled but host-neutral renderer for one structured request. Hosts can use
|
|
1106
|
-
* the headless `useHumanInputRequests` hook instead, or replace the title and
|
|
1107
|
-
* description while retaining accessible field semantics and validation.
|
|
1108
|
-
*/
|
|
1109
|
-
declare function HumanInputForm({ request, onSubmit, submitting, error, title, description, submitLabel, skipLabel, messages: messageOverrides, autoFocus, className, }: HumanInputFormProps): react_jsx_runtime.JSX.Element;
|
|
1110
|
-
declare function answersFromDrafts(questions: HumanInputQuestion[], drafts: Record<string, HumanInputAnswerDraft>, messageOverrides?: Partial<HumanInputFormMessages>): {
|
|
1111
|
-
answers: HumanInputAnswer[];
|
|
1112
|
-
errors: Record<string, string>;
|
|
1113
|
-
};
|
|
1114
|
-
|
|
1115
|
-
type ToolRendererProps = {
|
|
1116
|
-
item: ToolCallItem;
|
|
1117
|
-
};
|
|
1118
|
-
type ToolRenderer = ComponentType<ToolRendererProps>;
|
|
1119
|
-
/** A registry entry: which key it matches and the component that renders it. */
|
|
1120
|
-
type ToolRegistryEntry = {
|
|
1121
|
-
match: "rawType";
|
|
1122
|
-
type: string;
|
|
1123
|
-
render: ToolRenderer;
|
|
1124
|
-
} | {
|
|
1125
|
-
match: "name";
|
|
1126
|
-
name: string;
|
|
1127
|
-
render: ToolRenderer;
|
|
1128
|
-
};
|
|
1129
|
-
type ToolRegistry = {
|
|
1130
|
-
/** Resolve the renderer for a call (never null — falls back to generic). */
|
|
1131
|
-
resolve: (item: ToolCallItem) => ToolRenderer;
|
|
1132
|
-
/** The generic fallback renderer. */
|
|
1133
|
-
fallback: ToolRenderer;
|
|
1134
|
-
};
|
|
1135
|
-
type CreateToolRegistryOptions = {
|
|
1136
|
-
/**
|
|
1137
|
-
* Entries that take precedence over the built-ins. Earlier entries win, so a
|
|
1138
|
-
* consumer can shadow a default renderer for the same key.
|
|
1139
|
-
*/
|
|
1140
|
-
entries?: ToolRegistryEntry[] | undefined;
|
|
1141
|
-
/** Replace the generic fallback used for unmatched tools. */
|
|
1142
|
-
fallback?: ToolRenderer | undefined;
|
|
1143
|
-
};
|
|
1144
|
-
/** The `raw.type` of a projected tool call, when the provider item carries one. */
|
|
1145
|
-
declare function rawTypeOf(item: ToolCallItem): string | null;
|
|
1146
|
-
/**
|
|
1147
|
-
* Build a tool registry from a set of entries and a fallback. The returned
|
|
1148
|
-
* registry resolves in priority order: `raw.type` entries first, then `name`
|
|
1149
|
-
* entries, then the fallback. Consumer `entries` are consulted before the
|
|
1150
|
-
* built-in `baseEntries`, so they shadow defaults cleanly.
|
|
1151
|
-
*/
|
|
1152
|
-
declare function createToolRegistry(baseEntries: ToolRegistryEntry[], baseFallback: ToolRenderer, options?: CreateToolRegistryOptions): ToolRegistry;
|
|
1153
|
-
|
|
1154
982
|
/** The built-in tool renderer registry: every first-party tool plus a fallback. */
|
|
1155
983
|
declare const defaultToolRegistry: ToolRegistry;
|
|
1156
984
|
/** Build a registry that extends the built-ins with consumer entries/fallback. */
|
|
@@ -1524,79 +1352,6 @@ type ModelPickerProps = {
|
|
|
1524
1352
|
*/
|
|
1525
1353
|
declare function ModelPicker({ models, value, onChange, disabled, className, label, }: ModelPickerProps): react_jsx_runtime.JSX.Element | null;
|
|
1526
1354
|
|
|
1527
|
-
type MessageTimelineProps = {
|
|
1528
|
-
/** Raw session events (projected internally) … */
|
|
1529
|
-
events?: SessionEvent[] | undefined;
|
|
1530
|
-
/** … or pre-projected items (e.g. from `useSessionEvents().timeline`). */
|
|
1531
|
-
items?: TimelineItem[] | undefined;
|
|
1532
|
-
/** Current session status; drives the live "working" indicator. */
|
|
1533
|
-
status?: SessionStatus$1 | null | undefined;
|
|
1534
|
-
/** Plug a markdown renderer for message bodies (e.g. streamdown). */
|
|
1535
|
-
renderMessageText?: ((text: string, item: AgentMessageItem | UserMessageItem) => ReactNode) | undefined;
|
|
1536
|
-
/** Drill into a spawned worker session. */
|
|
1537
|
-
onOpenSession?: ((sessionId: string) => void) | undefined;
|
|
1538
|
-
/**
|
|
1539
|
-
* Deep-link a memory row (a `memory.saved` / `memory.corrected` step) to its
|
|
1540
|
-
* record in the host's memory pane. Opt-in, exactly like `onReconnect`: the
|
|
1541
|
-
* library draws no "View in memory" affordance without a handler — the memory
|
|
1542
|
-
* row is then non-interactive rich content. This is the switch that makes the
|
|
1543
|
-
* deep-link a first-party OpenGeni capability without other SDK consumers
|
|
1544
|
-
* opting into it. The app supplies it (it owns routing to the memory pane).
|
|
1545
|
-
*/
|
|
1546
|
-
onMemoryClick?: ((memoryId: string) => void) | undefined;
|
|
1547
|
-
/**
|
|
1548
|
-
* Start the reconnect flow when a tool needs its connection reauthorized. The
|
|
1549
|
-
* app supplies this (it owns the SDK client + workspace): it typically kicks
|
|
1550
|
-
* off `startConnectionOAuth` and redirects, or routes to credential entry.
|
|
1551
|
-
* Rejecting surfaces a calm inline error on the card; the library never draws
|
|
1552
|
-
* a Reconnect button without a handler to run it.
|
|
1553
|
-
*/
|
|
1554
|
-
onReconnect?: ((item: AuthNeededItem) => void | Promise<void>) | undefined;
|
|
1555
|
-
/**
|
|
1556
|
-
* Resolve a provider domain (from a reconnect card) to a logo URL the host
|
|
1557
|
-
* serves itself — the app maps it through its catalog + `catalogAssetUrl`.
|
|
1558
|
-
* Return null/undefined to fall back to a calm monogram. The library never
|
|
1559
|
-
* fetches an off-origin favicon (CSP + privacy); an unresolved logo is a
|
|
1560
|
-
* monogram, not an external image.
|
|
1561
|
-
*/
|
|
1562
|
-
resolveProviderLogo?: ((providerDomain: string) => string | null | undefined) | undefined;
|
|
1563
|
-
/**
|
|
1564
|
-
* The tool-renderer registry that resolves how each tool call is drawn.
|
|
1565
|
-
* Defaults to {@link defaultToolRegistry}; pass a registry from
|
|
1566
|
-
* `createDefaultToolRegistry({ entries })` to add custom tool renderers.
|
|
1567
|
-
*/
|
|
1568
|
-
toolRegistry?: ToolRegistry | undefined;
|
|
1569
|
-
/** Follow new events when pinned to the bottom. Defaults to true. */
|
|
1570
|
-
autoFollow?: boolean | undefined;
|
|
1571
|
-
/** Older durable history exists above the current window (see useSessionEvents). */
|
|
1572
|
-
hasOlder?: boolean | undefined;
|
|
1573
|
-
/** An older window is being fetched; shows the quiet top shimmer. */
|
|
1574
|
-
loadingOlder?: boolean | undefined;
|
|
1575
|
-
/** Called when the reader nears the top and older history should backfill. */
|
|
1576
|
-
onLoadOlder?: (() => void) | undefined;
|
|
1577
|
-
emptyState?: ReactNode | undefined;
|
|
1578
|
-
className?: string | undefined;
|
|
1579
|
-
};
|
|
1580
|
-
/**
|
|
1581
|
-
* The session timeline: chat messages with streaming deltas, collapsed
|
|
1582
|
-
* activity clusters (reasoning, tool calls, sandbox work), spawned-worker
|
|
1583
|
-
* cards, goal markers, and status transitions. Owns stick-to-bottom scrolling
|
|
1584
|
-
* with a "jump to latest" affordance when the reader scrolls back.
|
|
1585
|
-
*/
|
|
1586
|
-
declare function MessageTimeline({ events, items, status, renderMessageText, onOpenSession, onMemoryClick, onReconnect, resolveProviderLogo, toolRegistry, autoFollow, hasOlder, loadingOlder, onLoadOlder, emptyState, className, }: MessageTimelineProps): react_jsx_runtime.JSX.Element;
|
|
1587
|
-
/**
|
|
1588
|
-
* Render one non-activity timeline item (chat message, status divider, goal
|
|
1589
|
-
* landmark, notice). Exported so the component demo draws the EXACT same rows as
|
|
1590
|
-
* the live app — no forked bubble/goal markup.
|
|
1591
|
-
*/
|
|
1592
|
-
declare function TimelineRow({ item, renderMessageText, onReconnect, resolveProviderLogo, onOpenSession, }: {
|
|
1593
|
-
item: TimelineItem;
|
|
1594
|
-
renderMessageText?: ((text: string, item: AgentMessageItem | UserMessageItem) => ReactNode) | undefined;
|
|
1595
|
-
onReconnect?: ((item: AuthNeededItem) => void | Promise<void>) | undefined;
|
|
1596
|
-
resolveProviderLogo?: ((providerDomain: string) => string | null | undefined) | undefined;
|
|
1597
|
-
onOpenSession?: ((sessionId: string) => void) | undefined;
|
|
1598
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
1599
|
-
|
|
1600
1355
|
/**
|
|
1601
1356
|
* The default renderer for chat message bodies in {@link MessageTimeline}.
|
|
1602
1357
|
*
|
|
@@ -2388,4 +2143,4 @@ declare function isCreditExhaustion(input: {
|
|
|
2388
2143
|
*/
|
|
2389
2144
|
declare function humanizeFailureReason(reason: string | null): string | null;
|
|
2390
2145
|
|
|
2391
|
-
export { ActivityDisclosure, type ActivityDisclosureProps, ActivityItem, ActivityRail, type ActivityRailProps,
|
|
2146
|
+
export { ActivityDisclosure, type ActivityDisclosureProps, ActivityItem, ActivityRail, type ActivityRailProps, type ApplyPatchOperation, ApprovalSurface, type ApprovalSurfaceMessages, type ApprovalSurfaceProps, BodyNote, CREDIT_EXHAUSTION_MESSAGE, CapturedFileUnavailableError, type CapturedFileUnavailableReason, ChatComposer, ChatComposerMessages, type ChatComposerProps, ClientOverride, CodeEditor, type CodeEditorProps, type CodexAccountsClientLike, CommandContext, CommandPalette, type CommandPaletteProps, ComposerState, ComposerTranscriptionControlProps, type DeriveMachineChipInput, DesktopViewer, type DesktopViewerProps, type DesktopWebSocketFactory, type DesktopWebSocketLike, type DiffTheme, DiffView, type DiffViewProps, type DisclosureChip, DisclosureDefaultsProvider, FileBrowser, type FileBrowserProps, type FileTreeNode, type FileTreeStatus, FileWriteConflictError, FleetTile, type FleetTileProps, LightboxProvider, type MachineChip, type MachineChipState, Markdown, type MarkdownProps, MediaEmpty, MediaSkeleton, ModelPicker, type ModelPickerProps, OpenGeniProvider, type OpenGeniProviderProps, type ParsedCommandLine, PayloadBlock, PendingApproval, PierreDiff, type PierreDiffProps, PierreFile, type PierreFileProps, SESSION_STATUS_META, SandboxFiles, type SandboxFilesProps, type SandboxGitFileDiff, SandboxTerminal, type SandboxTerminalProps, SandboxWorkspace, type SandboxWorkspaceProps, type SandboxWorkspaceSurface, type SandboxWriteFileOptions, ScreenshotFigure, type SessionCapabilitiesState, SessionClientLike, SessionStatus, type SessionStatusMeta, type SessionStatusProps, SlashArg, SlashCommand, SlashCommandContext, StatusDot, type StatusDotProps, TermBlock, type TerminalChunk, type TerminalStreamStatus, Thumbnail, ToolRegistry, TurnOutcome, TurnSummary, type TurnSummaryProps, type UseAvailableModelsOptions, type UseAvailableModelsResult, type UseBillingUsageOptions, type UseBillingUsageResult, type UseCodexAccountsOptions, type UseCodexAccountsResult, type UseDesktopStreamOptions, type UseDesktopStreamResult, type UseEnvironmentsOptions, type UseEnvironmentsResult, UseFileAttachmentsResult, type UseMachineChipOptions, type UsePacksOptions, type UsePacksResult, type UseRelayFrameStreamOptions, type UseRelayFrameStreamResult, type UseRigChangesOptions, type UseRigChangesResult, type UseRigOptions, type UseRigResult, type UseRigVersionsOptions, type UseRigVersionsResult, type UseRigsOptions, type UseRigsResult, type UseSandboxFilesOptions, type UseSandboxFilesResult, type UseSandboxGitOptions, type UseSandboxGitResult, type UseSandboxTerminalOptions, type UseSandboxTerminalResult, type UseSandboxWorkspaceTabsOptions, type UseSandboxWorkspaceTabsResult, type UseScheduledTasksOptions, type UseScheduledTasksResult, type UseSessionCapabilitiesOptions, type UseSessionCapabilitiesResult, type UseTerminalStreamOptions, type UseTerminalStreamResult, type UseVariableSetsOptions, type UseVariableSetsResult, type UseWorkspaceCaptureOptions, type UseWorkspaceCaptureResult, type UseWorkspaceEditOptions, type UseWorkspaceEditResult, type UseWorkspaceSessionsOptions, type UseWorkspaceSessionsResult, type UseWorkspacesOptions, type UseWorkspacesResult, WORKBENCH_SURFACES, WORKBENCH_TAB_CHANGES, WORKBENCH_TAB_DESKTOP, WORKBENCH_TAB_FILES, WORKBENCH_TAB_TERMINAL, WorkspaceDock, type WorkspaceDockProps, type WorkspaceEditConflict, type WorkspaceEditState, type WorkspaceMachine, type WorkspaceNotification, type WorkspaceTab, type XtermTheme, applyPatchOps, argHint, cn, controlCaret, createDefaultToolRegistry, createToolRegistry, defaultApprovalSurfaceMessages, defaultCommands, defaultToolRegistry, deriveMachineChip, execTruncated, filterCommands, firstMissingRequiredArg, formatAsOf, formatBytes, formatRelativeTime, gitFileDiffToPatch, hasPermission, humanizeFailureReason, initialWorkspaceTab, isApplyPatch, isCodexAccountEvent, isCreditExhaustion, isExecSessionLostBanner, languageForPath, looksBinary, matchCommand, parseCommandLine, parseExecBannerSessionId, parseToolArgs, redactSecrets, sandboxCommandExitCode, sessionDisplayTitle, stringifyPayload, stripExecBanner, tailPeek, truncate, tryParseJson, unwrapMcpOutput, useAvailableModels, useBillingUsage, useCodexAccounts, useDesktopStream, useEnvironments, useLightbox, useLightboxOptional, useMachineChip, usePacks, useRelayFrameStream, useRig, useRigChanges, useRigVersions, useRigs, useSandboxFiles, useSandboxGit, useSandboxTerminal, useSandboxWorkspaceTabs, useScheduledTasks, useSessionCapabilities, useTerminalStream, useVariableSets, useWorkspaceCapture, useWorkspaceEdit, useWorkspaceSessions, useWorkspaces, v4aToGitFileDiff, xtermThemeFromTokens };
|