t3code-cli 0.13.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +87 -1
- package/dist/application.d.ts +2 -0
- package/dist/application.js +1 -1
- package/dist/auth.d.ts +50 -0
- package/dist/auth.js +1 -1
- package/dist/bin.d.ts +1 -0
- package/dist/bin.js +355 -606
- package/dist/cli.d.ts +66 -0
- package/dist/cli.js +1 -1
- package/dist/client-runtime/authorization.d.ts +2 -0
- package/dist/client-runtime/authorization.js +2 -0
- package/dist/client-runtime/connection.d.ts +2 -0
- package/dist/client-runtime/connection.js +2 -0
- package/dist/client-runtime/environment.d.ts +57 -0
- package/dist/client-runtime/environment.js +2 -0
- package/dist/client-runtime/errors.d.ts +28 -0
- package/dist/client-runtime/errors.js +35 -0
- package/dist/client-runtime/operations/projects.d.ts +2 -0
- package/dist/client-runtime/operations/projects.js +2 -0
- package/dist/client-runtime/operations.d.ts +2 -0
- package/dist/client-runtime/operations.js +2 -0
- package/dist/client-runtime/platform.d.ts +26 -0
- package/dist/client-runtime/platform.js +74 -0
- package/dist/client-runtime/relay.d.ts +121 -0
- package/dist/client-runtime/relay.js +245 -0
- package/dist/client-runtime/rpc.d.ts +2 -0
- package/dist/client-runtime/rpc.js +2 -0
- package/dist/client-runtime/state/assets.d.ts +40 -0
- package/dist/client-runtime/state/assets.js +53 -0
- package/dist/client-runtime/state/auth.d.ts +98 -0
- package/dist/client-runtime/state/auth.js +48 -0
- package/dist/client-runtime/state/connections.d.ts +2 -0
- package/dist/client-runtime/state/connections.js +52 -0
- package/dist/client-runtime/state/entities.d.ts +33 -0
- package/dist/client-runtime/state/entities.js +2 -0
- package/dist/client-runtime/state/filesystem.d.ts +42 -0
- package/dist/client-runtime/state/filesystem.js +48 -0
- package/dist/client-runtime/state/git.d.ts +43 -0
- package/dist/client-runtime/state/git.js +18 -0
- package/dist/client-runtime/state/models.d.ts +2 -0
- package/dist/client-runtime/state/models.js +2 -0
- package/dist/client-runtime/state/orchestration.d.ts +128 -0
- package/dist/client-runtime/state/orchestration.js +20 -0
- package/dist/client-runtime/state/presentation.d.ts +277 -0
- package/dist/client-runtime/state/presentation.js +34 -0
- package/dist/client-runtime/state/preview.d.ts +447 -0
- package/dist/client-runtime/state/preview.js +103 -0
- package/dist/client-runtime/state/project-grouping.d.ts +26 -0
- package/dist/client-runtime/state/project-grouping.js +73 -0
- package/dist/client-runtime/state/projects.d.ts +192 -0
- package/dist/client-runtime/state/projects.js +2 -0
- package/dist/client-runtime/state/relay.d.ts +10 -0
- package/dist/client-runtime/state/relay.js +19 -0
- package/dist/client-runtime/state/review.d.ts +28 -0
- package/dist/client-runtime/state/review.js +11 -0
- package/dist/client-runtime/state/runtime.d.ts +2 -0
- package/dist/client-runtime/state/runtime.js +2 -0
- package/dist/client-runtime/state/server.d.ts +1495 -0
- package/dist/client-runtime/state/server.js +207 -0
- package/dist/client-runtime/state/session.d.ts +532 -0
- package/dist/client-runtime/state/session.js +21 -0
- package/dist/client-runtime/state/shell.d.ts +529 -0
- package/dist/client-runtime/state/shell.js +2 -0
- package/dist/client-runtime/state/source-control.d.ts +92 -0
- package/dist/client-runtime/state/source-control.js +36 -0
- package/dist/client-runtime/state/terminal.d.ts +237 -0
- package/dist/client-runtime/state/terminal.js +173 -0
- package/dist/client-runtime/state/thread-settled.d.ts +104 -0
- package/dist/client-runtime/state/thread-settled.js +157 -0
- package/dist/client-runtime/state/thread-sort.d.ts +23 -0
- package/dist/client-runtime/state/thread-sort.js +47 -0
- package/dist/client-runtime/state/threads.d.ts +538 -0
- package/dist/client-runtime/state/threads.js +934 -0
- package/dist/client-runtime/state/vcs.d.ts +442 -0
- package/dist/client-runtime/state/vcs.js +756 -0
- package/dist/config.d.ts +84 -0
- package/dist/config.js +1 -1
- package/dist/connection.d.ts +7 -0
- package/dist/connection.js +1 -1
- package/dist/contracts.d.ts +2 -0
- package/dist/contracts.js +2 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/node.d.ts +6 -0
- package/dist/node.js +1 -1
- package/dist/orchestration.d.ts +1420 -0
- package/dist/orchestration.js +1 -1
- package/dist/preview.d.ts +2 -0
- package/dist/preview.js +2 -0
- package/dist/rpc.d.ts +6043 -0
- package/dist/rpc.js +1 -1
- package/dist/runtime.d.ts +2 -0
- package/dist/runtime.js +2 -2
- package/dist/shared/DrainableWorker.d.ts +28 -0
- package/dist/shared/DrainableWorker.js +24 -0
- package/dist/shared/KeyedCoalescingWorker.d.ts +13 -0
- package/dist/shared/KeyedCoalescingWorker.js +89 -0
- package/dist/shared/Net.d.ts +43 -0
- package/dist/shared/Net.js +126 -0
- package/dist/shared/String.d.ts +4 -0
- package/dist/shared/String.js +8 -0
- package/dist/shared/Struct.d.ts +5 -0
- package/dist/shared/Struct.js +2 -0
- package/dist/shared/advertisedEndpoint.d.ts +2 -0
- package/dist/shared/advertisedEndpoint.js +2 -0
- package/dist/shared/agentAwareness.d.ts +27 -0
- package/dist/shared/agentAwareness.js +54 -0
- package/dist/shared/backgroundActivitySettings.d.ts +23 -0
- package/dist/shared/backgroundActivitySettings.js +2 -0
- package/dist/shared/chatList.d.ts +12 -0
- package/dist/shared/chatList.js +14 -0
- package/dist/shared/cliArgs.d.ts +33 -0
- package/dist/shared/cliArgs.js +103 -0
- package/dist/shared/composerInlineTokens.d.ts +20 -0
- package/dist/shared/composerInlineTokens.js +72 -0
- package/dist/shared/composerTrigger.d.ts +26 -0
- package/dist/shared/composerTrigger.js +97 -0
- package/dist/shared/connectAuth.d.ts +58 -0
- package/dist/shared/connectAuth.js +89 -0
- package/dist/shared/devHome.d.ts +21 -0
- package/dist/shared/devHome.js +65 -0
- package/dist/shared/devProxy.d.ts +15 -0
- package/dist/shared/devProxy.js +22 -0
- package/dist/shared/dpop.d.ts +32 -0
- package/dist/shared/dpop.js +2724 -0
- package/dist/shared/dpopCommon.d.ts +2 -0
- package/dist/shared/dpopCommon.js +2 -0
- package/dist/shared/filePreview.d.ts +8 -0
- package/dist/shared/filePreview.js +31 -0
- package/dist/shared/git.d.ts +41 -0
- package/dist/shared/git.js +2 -0
- package/dist/shared/hostProcess.d.ts +13 -0
- package/dist/shared/hostProcess.js +2 -0
- package/dist/shared/httpObservability.d.ts +5 -0
- package/dist/shared/httpObservability.js +2 -0
- package/dist/shared/httpReadiness.d.ts +38 -0
- package/dist/shared/httpReadiness.js +110 -0
- package/dist/shared/keybindings.d.ts +35 -0
- package/dist/shared/keybindings.js +330 -0
- package/dist/shared/logging.d.ts +39 -0
- package/dist/shared/logging.js +2 -0
- package/dist/shared/model.d.ts +44 -0
- package/dist/shared/model.js +2 -0
- package/dist/shared/oauthScope.d.ts +23 -0
- package/dist/shared/oauthScope.js +2 -0
- package/dist/shared/observability.d.ts +105 -0
- package/dist/shared/observability.js +346 -0
- package/dist/shared/orchestrationTiming.d.ts +16 -0
- package/dist/shared/orchestrationTiming.js +32 -0
- package/dist/shared/path.d.ts +2 -0
- package/dist/shared/path.js +2 -0
- package/dist/shared/preview.d.ts +35 -0
- package/dist/shared/preview.js +103 -0
- package/dist/shared/previewViewport.d.ts +16 -0
- package/dist/shared/previewViewport.js +159 -0
- package/dist/shared/projectFavicon.d.ts +5 -0
- package/dist/shared/projectFavicon.js +13 -0
- package/dist/shared/projectScripts.d.ts +19 -0
- package/dist/shared/projectScripts.js +18 -0
- package/dist/shared/qrCode.d.ts +87 -0
- package/dist/shared/qrCode.js +870 -0
- package/dist/shared/relayAuth.d.ts +27 -0
- package/dist/shared/relayAuth.js +83 -0
- package/dist/shared/relayClient.d.ts +58 -0
- package/dist/shared/relayClient.js +245 -0
- package/dist/shared/relayJwt.d.ts +39 -0
- package/dist/shared/relayJwt.js +2 -0
- package/dist/shared/relaySigning.d.ts +4 -0
- package/dist/shared/relaySigning.js +2 -0
- package/dist/shared/relayTracing.d.ts +25 -0
- package/dist/shared/relayTracing.js +2 -0
- package/dist/shared/relayUrl.d.ts +5 -0
- package/dist/shared/relayUrl.js +2 -0
- package/dist/shared/remote.d.ts +57 -0
- package/dist/shared/remote.js +2 -0
- package/dist/shared/schemaJson.d.ts +35 -0
- package/dist/shared/schemaJson.js +2 -0
- package/dist/shared/schemaYaml.d.ts +86 -0
- package/dist/shared/schemaYaml.js +99 -0
- package/dist/shared/searchRanking.d.ts +30 -0
- package/dist/shared/searchRanking.js +99 -0
- package/dist/shared/semver.d.ts +23 -0
- package/dist/shared/semver.js +124 -0
- package/dist/shared/serverSettings.d.ts +19 -0
- package/dist/shared/serverSettings.js +103 -0
- package/dist/shared/shell.d.ts +51 -0
- package/dist/shared/shell.js +408 -0
- package/dist/shared/sourceControl.d.ts +26 -0
- package/dist/shared/sourceControl.js +2 -0
- package/dist/shared/t3ProjectFile.d.ts +27 -0
- package/dist/shared/t3ProjectFile.js +25 -0
- package/dist/shared/terminalLabels.d.ts +16 -0
- package/dist/shared/terminalLabels.js +28 -0
- package/dist/shared/toolActivity.d.ts +16 -0
- package/dist/shared/toolActivity.js +159 -0
- package/dist/shared.d.ts +43036 -0
- package/dist/shared.js +25428 -12277
- package/dist/t3tools.d.ts +2 -0
- package/dist/t3tools.js +1 -1
- package/package.json +39 -21
- package/src/auth/index.ts +2 -0
- package/src/auth/pairing.ts +8 -5
- package/src/auth/service.ts +2 -1
- package/src/auth/transport.ts +4 -0
- package/src/auth/type.ts +6 -0
- package/src/bin.ts +10 -7
- package/src/cli/auth.ts +7 -1
- package/src/contracts/index.ts +8 -0
- package/src/orchestration/layer.ts +36 -0
- package/src/orchestration/service.ts +5 -0
- package/src/preview/index.ts +11 -0
- package/src/preview/service.ts +52 -0
- package/src/rpc/error.ts +2 -0
- package/src/rpc/layer.ts +5 -4
- package/src/rpc/operation.ts +5 -4
- package/src/rpc/ws-group.ts +6 -0
- package/src/runtime/index.ts +1 -0
- package/src/runtime/layer.ts +5 -0
- package/src/sql/node-sqlite-client.ts +3 -0
- package/dist/src/application/actions.d.ts +0 -25
- package/dist/src/application/error.d.ts +0 -3
- package/dist/src/application/index.d.ts +0 -4
- package/dist/src/application/layer.d.ts +0 -117
- package/dist/src/application/model-selection.d.ts +0 -34
- package/dist/src/application/models.d.ts +0 -8
- package/dist/src/application/project-commands.d.ts +0 -44
- package/dist/src/application/projects.d.ts +0 -23
- package/dist/src/application/service.d.ts +0 -243
- package/dist/src/application/shell-sequence.d.ts +0 -96
- package/dist/src/application/terminals.d.ts +0 -66
- package/dist/src/application/thread-commands.d.ts +0 -157
- package/dist/src/application/thread-update.d.ts +0 -8
- package/dist/src/application/thread-wait.d.ts +0 -106
- package/dist/src/application/threads.d.ts +0 -660
- package/dist/src/auth/error.d.ts +0 -50
- package/dist/src/auth/index.d.ts +0 -10
- package/dist/src/auth/layer.d.ts +0 -53
- package/dist/src/auth/local-base-dir.d.ts +0 -8
- package/dist/src/auth/local-origin.d.ts +0 -18
- package/dist/src/auth/local-token.d.ts +0 -26
- package/dist/src/auth/local.d.ts +0 -24
- package/dist/src/auth/pairing.d.ts +0 -22
- package/dist/src/auth/remote-error.d.ts +0 -3
- package/dist/src/auth/schema.d.ts +0 -58
- package/dist/src/auth/service.d.ts +0 -27
- package/dist/src/auth/transport.d.ts +0 -22
- package/dist/src/auth/type.d.ts +0 -83
- package/dist/src/cli/env/flag.d.ts +0 -2
- package/dist/src/cli/env/index.d.ts +0 -2
- package/dist/src/cli/env/selection-layer.d.ts +0 -3
- package/dist/src/cli/flags.d.ts +0 -20
- package/dist/src/cli/format/index.d.ts +0 -1
- package/dist/src/cli/format/output.d.ts +0 -12
- package/dist/src/cli/index.d.ts +0 -5
- package/dist/src/cli/runtime/index.d.ts +0 -1
- package/dist/src/cli/runtime/service.d.ts +0 -16
- package/dist/src/cli/scope/index.d.ts +0 -1
- package/dist/src/cli/scope/resolve.d.ts +0 -20
- package/dist/src/cli-path/layer.d.ts +0 -3
- package/dist/src/cli-path/service.d.ts +0 -8
- package/dist/src/config/config.d.ts +0 -49
- package/dist/src/config/credential/cipher-node.d.ts +0 -3
- package/dist/src/config/credential/cipher-web.d.ts +0 -3
- package/dist/src/config/credential/cipher.d.ts +0 -29
- package/dist/src/config/credential/env.d.ts +0 -3
- package/dist/src/config/credential/error.d.ts +0 -8
- package/dist/src/config/credential/index.d.ts +0 -6
- package/dist/src/config/credential/service.d.ts +0 -34
- package/dist/src/config/env/env.d.ts +0 -55
- package/dist/src/config/env/index.d.ts +0 -2
- package/dist/src/config/env/layout.d.ts +0 -11
- package/dist/src/config/environment-name/index.d.ts +0 -1
- package/dist/src/config/environment-name/name.d.ts +0 -10
- package/dist/src/config/error.d.ts +0 -11
- package/dist/src/config/index.d.ts +0 -10
- package/dist/src/config/keystore/error.d.ts +0 -8
- package/dist/src/config/keystore/file.d.ts +0 -9
- package/dist/src/config/keystore/index.d.ts +0 -4
- package/dist/src/config/keystore/keyring-node.d.ts +0 -4
- package/dist/src/config/keystore/service.d.ts +0 -33
- package/dist/src/config/paths/index.d.ts +0 -1
- package/dist/src/config/paths/paths.d.ts +0 -6
- package/dist/src/config/persist/file-mode.d.ts +0 -4
- package/dist/src/config/persist/migration.d.ts +0 -68
- package/dist/src/config/persist/persist.d.ts +0 -40
- package/dist/src/config/persist/schema.d.ts +0 -68
- package/dist/src/config/resolve/resolve.d.ts +0 -40
- package/dist/src/config/selection/index.d.ts +0 -1
- package/dist/src/config/selection/resolve.d.ts +0 -4
- package/dist/src/config/selection/service.d.ts +0 -10
- package/dist/src/config/types.d.ts +0 -36
- package/dist/src/config/url/error.d.ts +0 -10
- package/dist/src/config/url/index.d.ts +0 -2
- package/dist/src/config/url/url.d.ts +0 -6
- package/dist/src/connection/error.d.ts +0 -10
- package/dist/src/connection/index.d.ts +0 -4
- package/dist/src/connection/layer.d.ts +0 -3
- package/dist/src/connection/prepared.d.ts +0 -14
- package/dist/src/connection/service.d.ts +0 -13
- package/dist/src/connection/type.d.ts +0 -10
- package/dist/src/contracts/index.d.ts +0 -1
- package/dist/src/domain/error.d.ts +0 -57
- package/dist/src/domain/helpers.d.ts +0 -179
- package/dist/src/domain/model-config.d.ts +0 -330
- package/dist/src/domain/thread-activities.d.ts +0 -14
- package/dist/src/domain/thread-lifecycle.d.ts +0 -120
- package/dist/src/index.d.ts +0 -3
- package/dist/src/node/connection.d.ts +0 -2
- package/dist/src/node/index.d.ts +0 -1
- package/dist/src/orchestration/index.d.ts +0 -2
- package/dist/src/orchestration/layer.d.ts +0 -1419
- package/dist/src/orchestration/service.d.ts +0 -28
- package/dist/src/rpc/error.d.ts +0 -16
- package/dist/src/rpc/index.d.ts +0 -6
- package/dist/src/rpc/layer.d.ts +0 -5862
- package/dist/src/rpc/operation.d.ts +0 -24
- package/dist/src/rpc/service.d.ts +0 -15
- package/dist/src/rpc/session.d.ts +0 -22
- package/dist/src/rpc/ws-group.d.ts +0 -1984
- package/dist/src/runtime/index.d.ts +0 -1
- package/dist/src/runtime/layer.d.ts +0 -15
- package/dist/src/sql/node-sqlite-client.d.ts +0 -10
- package/dist/src/sql/service.d.ts +0 -17
- package/dist/src/t3tools/index.d.ts +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { $C as EnvironmentCloudEndpointUnavailableError, $S as VcsStatusLocalResult, $T as ThreadId, $_ as OrchestrationMessageRole, $b as TerminalRestartInput, $c as ResourceMonitorSampleNowCommand, $d as ProviderRuntimeErrorEvent, $f as RuntimeContentStreamKind, $g as OpenCodeSettings, $h as PickedElementPayload, $l as ServerProcessDiagnosticsResult, $m as DesktopPreviewTabState, $p as ProviderInstanceRef, $s as WsServerUpdateProviderRpc, $u as MAX_WHEN_EXPRESSION_DEPTH, $v as ThreadSessionStopRequestedPayload, $w as AuthClientPresentationMetadata, $x as VcsError, $y as PreviewAutomationStatus, AC as AdvertisedEndpointProvider, AS as GitPullRequestMaterializationError, AT as ClientActivityReportInput, A_ as ModelSelection, Ab as PreviewSessionLookupError, Ac as WsVcsRemoveWorktreeRpc, Ad as CanonicalItemType, Af as ProviderRuntimeThreadRealtimeStartedEvent, Ag as DEFAULT_BACKGROUND_ACTIVITY_PROFILE, Ah as DesktopUpdateActionResult, Al as isExternalLauncherError, Am as DesktopPreviewAutomationScrollInputSchema, Ap as ToolDeniedPayload, As as WsPreviewReportStatusRpc, Au as ServerSignalProcessResult, Av as ProjectionPendingApprovalStatus, Aw as RepositoryIdentityLocator, Ax as AssetProjectFaviconNotFoundError, Ay as PreviewAutomationHostFocus, BC as RelayClientInstallProgressEventSchema, BS as TextGenerationError, BT as EventId, B_ as OrchestrationEvent, Bb as TerminalCloseInput, Bc as RESOURCE_MONITOR_PROTOCOL_VERSION, Bd as McpOauthCompletedPayload, Bf as ProviderRuntimeTurnAbortedEvent, Bg as DEFAULT_SIDEBAR_THREAD_SORT_ORDER, Bh as DesktopUpdateStatus, Bl as ServerConfigStreamEvent, Bm as DesktopPreviewPointerEvent, Bp as TurnStartedPayload, Bs as WsServerGetConfigRpc, Bu as isProviderAvailable, Bv as ThreadActivityAppendedPayload, Bw as AuthAccessStreamError, Bx as AssetWorkspaceRootNormalizationError, By as PreviewAutomationRecordingArtifact, CC as SourceControlRepositoryInfo, CS as GitActionProgressPhase, CT as ServerAuthPolicy, C_ as ClientOrchestrationCommand, Cb as PreviewNavStatus, Cc as WsTerminalWriteRpc, Cd as ProviderOptionSelection, Cf as ProviderRuntimeTaskProgressEvent, Cg as ClaudeSettings, Ch as DesktopSshPasswordPromptCancelledResultSchema, Cl as ExternalLauncherBrowserSpawnError, Cm as DesktopPreviewAnnotationTheme, Cp as ThreadRealtimeErrorPayload, Cs as WsPreviewAutomationFocusHostRpc, Cu as ServerProviders, Cv as ProjectCreatedPayload, Cw as EnvironmentConnectionState, Cx as ProjectWriteFileResult, Cy as PreviewAutomationConsoleEntry, DC as AdvertisedEndpoint, DS as GitManagerServiceError, DT as BackgroundScope, D_ as DispatchResult, Db as PreviewRenderedViewportSize, Dc as WsVcsListRefsRpc, Dd as AccountRateLimitsUpdatedPayload, Df as ProviderRuntimeThreadRealtimeClosedEvent, Dg as CodexSettings, Dh as DesktopSshPasswordPromptResolutionInputSchema, Dl as ExternalLauncherUnknownEditorError, Dm as DesktopPreviewAutomationClickInputSchema, Dp as ThreadStateChangedPayload, Ds as WsPreviewNavigateRpc, Du as ServerSelfUpdateInput, Dv as ProjectScriptIcon, Dw as ExecutionEnvironmentPlatformArch, Dx as AssetCreateUrlResult, Dy as PreviewAutomationEvaluateInput, EC as VcsDiscoveryItem, ES as GitManagerError, ET as BackgroundPolicySnapshot, E_ as DEFAULT_RUNTIME_MODE, Eb as PreviewRefreshInput, Ec as WsVcsInitRpc, Ed as SelectProviderOptionDescriptor, Ef as ProviderRuntimeThreadRealtimeAudioDeltaEvent, Eg as ClientSettingsSchema, Eh as DesktopSshPasswordPromptRequestSchema, El as ExternalLauncherError, Em as DesktopPreviewArtifactInputSchema, Ep as ThreadStartedPayload, Es as WsPreviewListRpc, Eu as ServerSelfUpdateError, Ev as ProjectScript, Ew as ExecutionEnvironmentPlatform, Ex as AssetCreateUrlInput, Ey as PreviewAutomationError, FC as DesktopBackendBootstrap, FS as GitRunStackedActionResult, FT as ApprovalRequestId, F_ as OrchestrationCheckpointStatus, Fb as PreviewViewportSize, Fc as DesktopHostTelemetryMessage, Fd as FilesPersistedPayload, Ff as ProviderRuntimeToolDeniedEvent, Fg as DEFAULT_SERVER_SETTINGS, Fh as DesktopUpdateCheckResultSchema, Fl as ServerConfig, Fm as DesktopPreviewColorSchemeSchema, Fp as TurnCompletedPayload, Fs as WsProjectsWriteFileRpc, Fu as ServerTraceDiagnosticsResult, Fv as ProviderRequestKind, Fw as ServerSelfUpdateMethod, Fx as AssetWorkspaceAssetNotFoundError, Fy as PreviewAutomationNetworkEntry, GC as AuthClientSessionRevokeResult, GS as VcsInitInput, GT as PositiveInt, G_ as OrchestrationGetFullThreadDiffResult, Gb as TerminalError, Gc as ResourceMonitorConfigureCommand, Gd as ProviderRuntimeAccountRateLimitsUpdatedEvent, Gf as ProviderRuntimeTurnProposedDeltaEvent, Gg as GrokSettings, Gh as DesktopWslStateSchema, Gl as ServerConfigUpdatedPayload, Gm as DesktopPreviewRecordingFrameSchema, Gp as isToolLifecycleItemType, Gs as WsServerGetTraceDiagnosticsRpc, Gu as KeybindingWhen, Gv as ThreadDeletedPayload, Gw as AuthAccessTokenResult, Gx as FilesystemBrowseResult, Gy as PreviewAutomationResizeInput, HC as RelayClientInstallProgressStageSchema, HS as VcsCreateRefResult, HT as MessageId, H_ as OrchestrationEventType, Hb as TerminalCwdNotDirectoryError, Hc as ResourceAttributionSnapshot, Hd as ModelReroutedPayload, Hf as ProviderRuntimeTurnDiffUpdatedEvent, Hg as DEFAULT_UNIFIED_SETTINGS, Hh as DesktopWslDistro, Hl as ServerConfigStreamProviderStatusesEvent, Hm as DesktopPreviewRecordingArtifact, Hp as UserInputQuestionOption, Hs as WsServerGetProcessResourceHistoryRpc, Hu as KeybindingRule, Hv as ThreadArchivedPayload, Hw as AuthAccessStreamPairingLinkRemovedEvent, Hx as FilesystemBrowseError, Hy as PreviewAutomationRemoteUnavailableError, IC as RelayClientInstallFailedError, IS as GitRunStackedActionToast, IT as AuthSessionId, I_ as OrchestrationCheckpointSummary, Ib as DEFAULT_TERMINAL_ID, Ic as DesktopHostTelemetrySnapshot, Id as HookCompletedPayload, If as ProviderRuntimeToolKind, Ig as DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Ih as DesktopUpdateReleaseNote, Il as ServerConfigIssue, Im as DesktopPreviewConfigInputSchema, Ip as TurnDiffUpdatedPayload, Is as WsReviewGetDiffPreviewRpc, Iu as ServerTraceDiagnosticsSpanOccurrence, Iv as ProviderSandboxMode, Iw as AuthAccessReadScope, Ix as AssetWorkspaceContextNotFoundError, Iy as PreviewAutomationNoAvailableHostError, JC as EnvironmentAuthHttpApi, JS as VcsPullInput, JT as RpcClientId, J_ as OrchestrationGetTurnDiffInput, Jb as TerminalMetadataStreamEvent, Jc as ResourceMonitorExternalProcess, Jd as ProviderRuntimeApprovalResolvedEvent, Jf as ProviderRuntimeUserInputRequestedEvent, Jg as MAX_SIDEBAR_THREAD_PREVIEW_COUNT, Jh as PRIMARY_LOCAL_ENVIRONMENT_ID, Jl as ServerLifecycleStreamReadyEvent, Jm as DesktopPreviewScreenshotArtifact, Jp as ProviderInstanceConfigMap, Js as WsServerRemoveKeybindingRpc, Ju as KeybindingsConfigError, Jv as ThreadMetaUpdatedPayload, Jw as AuthAdministrativeScopes, Jx as ReviewDiffPreviewResult, Jy as PreviewAutomationResultTooLargeError, KC as AuthOtherClientSessionsRevokeResult, KS as VcsListRefsInput, KT as ProjectId, K_ as OrchestrationGetSnapshotError, Kb as TerminalEvent, Kc as ResourceMonitorErrorEvent, Kd as ProviderRuntimeAccountUpdatedEvent, Kf as ProviderRuntimeTurnStartedEvent, Kg as MAX_GLASS_OPACITY, Kh as EnvironmentApi, Kl as ServerLifecycleReadyPayload, Km as DesktopPreviewRecordingSaveInputSchema, Kp as ProviderDriverKind, Ks as WsServerProbeRpc, Ku as KeybindingWhenNode, Kv as ThreadInteractionModeSetPayload, Kw as AuthAccessTokenType, Kx as ReviewDiffPreviewError, Ky as PreviewAutomationResizeResult, LC as RelayClientInstallFailureReason, LS as GitRunStackedActionToastCta, LT as CheckpointRef, L_ as OrchestrationCommand, Lb as TerminalAttachInput, Lc as DesktopTelemetryControlMessage, Ld as HookProgressPayload, Lf as ProviderRuntimeToolProgressEvent, Lg as DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, Lh as DesktopUpdateReleaseNoteSchema, Ll as ServerConfigKeybindingsUpdatedPayload, Lm as DesktopPreviewNavStatus, Lp as TurnPlanUpdatedPayload, Ls as WsRpcGroup, Lu as ServerTraceDiagnosticsSpanSummary, Lv as ProviderSessionRuntimeStatus, Lw as AuthAccessSnapshot, Lx as AssetWorkspaceContextResolutionError, Ly as PreviewAutomationOpenInput, MC as AdvertisedEndpointReachability, MS as GitResolvePullRequestResult, MT as HostPowerSnapshot, M_ as OrchestrationActorKind, Mb as PreviewTabId, Mc as DesktopElectronProcessMetric, Md as ConfigWarningPayload, Mf as ProviderRuntimeThreadStateChangedEvent, Mg as DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, Mh as DesktopUpdateChannel, Ml as T3ProjectFileScript, Mm as DesktopPreviewAutomationWaitForInputSchema, Mp as ToolProgressPayload, Ms as WsProjectsListEntriesRpc, Mu as ServerTraceDiagnosticsFailureSummary, Mv as ProviderApprovalDecision, Mw as ScopedThreadRef, Mx as AssetResource, My as PreviewAutomationInvalidSelectorError, NC as AdvertisedEndpointSource, NS as GitResolvedPullRequest, NT as HostPowerSource, N_ as OrchestrationAggregateKind, Nb as PreviewViewportPresetId, Nc as DesktopElectronProcessType, Nd as ContentDeltaPayload, Nf as ProviderRuntimeThreadTokenUsageUpdatedEvent, Ng as DEFAULT_GLASS_OPACITY, Nh as DesktopUpdateChannelSchema, Nl as T3_PROJECT_FILE_NAME, Nm as DesktopPreviewBridge, Np as ToolSummaryPayload, Ns as WsProjectsReadFileRpc, Nu as ServerTraceDiagnosticsLogEvent, Nv as ProviderApprovalPolicy, Nw as ScopedThreadSessionRef, Nx as AssetSigningKeyLoadError, Ny as PreviewAutomationMalformedResponseError, OC as AdvertisedEndpointCompatibility, OS as GitPreparePullRequestThreadInput, OT as ClientActivityClientId, O_ as DispatchableClientOrchestrationCommand, Ob as PreviewReportStatusInput, Oc as WsVcsPullRpc, Od as AccountUpdatedPayload, Of as ProviderRuntimeThreadRealtimeErrorEvent, Og as CursorSettings, Oh as DesktopTheme, Ol as ExternalLauncherUnsupportedEditorError, Om as DesktopPreviewAutomationEvaluateInputSchema, Op as ThreadTokenUsageSnapshot, Os as WsPreviewOpenRpc, Ou as ServerSelfUpdateResult, Ov as ProjectionCheckpointRow, Ow as ExecutionEnvironmentPlatformOs, Ox as AssetPreviewTypeValidationError, Oy as PreviewAutomationExecutionError, PC as AdvertisedEndpointStatus, PS as GitRunStackedActionInput, PT as HostPowerThermalState, P_ as OrchestrationCheckpointFile, Pb as PreviewViewportSetting, Pc as DesktopHostTelemetryHello, Pd as DeprecationNoticePayload, Pf as ProviderRuntimeToolCompletedEvent, Pg as DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, Ph as DesktopUpdateCheckResult, Pl as T3_PROJECT_FILE_SCHEMA_URL, Pm as DesktopPreviewColorScheme, Pp as TurnAbortedPayload, Ps as WsProjectsSearchEntriesRpc, Pu as ServerTraceDiagnosticsRecentFailure, Pv as ProviderInteractionMode, Pw as ServerSelfUpdateCapability, Px as AssetWorkspaceAssetInspectionError, Py as PreviewAutomationNavigateInput, QC as EnvironmentAuthenticatedPrincipal, QS as VcsStatusInput, QT as RuntimeTaskId, Q_ as OrchestrationMessage, Qb as TerminalResizeInput, Qc as ResourceMonitorReadHistoryCommand, Qd as ProviderRuntimeDeprecationNoticeEvent, Qf as RequestResolvedPayload, Qg as ObservabilitySettings, Qh as PickFolderOptionsSchema, Ql as ServerProcessDiagnosticsEntry, Qm as DesktopPreviewTabInputSchema, Qp as ProviderInstanceId, Qs as WsServerSignalProcessRpc, Qu as MAX_SCRIPT_ID_LENGTH, Qv as ThreadSessionSetPayload, Qw as AuthClientMetadataDeviceType, Qx as VcsDriverKind, Qy as PreviewAutomationSnapshot, RC as RelayClientInstallFailureReasonSchema, RS as GitRunStackedActionToastRunAction, RT as CommandId, R_ as OrchestrationCommandReceiptStatus, Rb as TerminalAttachStreamEvent, Rc as DesktopTelemetrySetDiagnosticsDemand, Rd as HookStartedPayload, Rf as ProviderRuntimeToolStartedEvent, Rg as DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, Rh as DesktopUpdateState, Rl as ServerConfigProviderStatusesPayload, Rm as DesktopPreviewNavStatusSchema, Rp as TurnProposedCompletedPayload, Rs as WsServerDiscoverSourceControlRpc, Ru as ServerUpsertKeybindingInput, Rv as ProviderUserInputAnswers, Rw as AuthAccessStreamClientRemovedEvent, Rx as AssetWorkspacePathValidationError, Ry as PreviewAutomationOperation, SC as SourceControlRepositoryError, SS as GitActionProgressKind, ST as ServerAuthDescriptor, S_ as ChatImageAttachment, Sb as PreviewListResult, Sc as WsTerminalRestartRpc, Sd as ProviderOptionDescriptorType, Sf as ProviderRuntimeTaskCompletedEvent, Sg as BackgroundActivitySettings, Sh as DesktopSshHttpBaseUrlInputSchema, Sl as EditorLaunchStyle, Sm as DesktopEnvironmentBootstrapSchema, Sp as ThreadRealtimeClosedPayload, Ss as WsPreviewAutomationConnectRpc, Su as ServerProviderVersionAdvisoryStatus, Sv as ProjectCreateCommand, Sw as EnvironmentSessionPrincipalShape, Sx as ProjectWriteFileInput, Sy as PreviewAutomationConnectionId, TC as SourceControlRepositoryVisibility, TS as GitCommandError, TT as BackgroundBooleanState, T_ as DEFAULT_PROVIDER_INTERACTION_MODE, Tb as PreviewOpenInput, Tc as WsVcsCreateWorktreeRpc, Td as ProviderOptionSelections, Tf as ProviderRuntimeThreadMetadataUpdatedEvent, Tg as ClientSettingsPatch, Th as DesktopSshPasswordPromptRequest, Tl as ExternalLauncherEditorSpawnError, Tm as DesktopPreviewAnnotationThemeSchema, Tp as ThreadRealtimeStartedPayload, Ts as WsPreviewCloseRpc, Tu as ServerRemoveKeybindingResult, Tv as ProjectMetaUpdatedPayload, Tw as ExecutionEnvironmentDescriptor, Tx as AssetAttachmentNotFoundError, Ty as PreviewAutomationElement, UC as RelayClientStatus, US as VcsCreateWorktreeInput, UT as NonNegativeInt, U_ as OrchestrationGetFullThreadDiffError, Ub as TerminalCwdNotFoundError, Uc as ResourceMonitorCapabilities, Ud as ProviderRefs, Uf as ProviderRuntimeTurnPlanUpdatedEvent, Ug as EnvironmentIdentificationMode, Uh as DesktopWslDistroSchema, Ul as ServerConfigStreamSettingsUpdatedEvent, Um as DesktopPreviewRecordingArtifactSchema, Up as UserInputRequestedPayload, Us as WsServerGetResourceTelemetryHistoryRpc, Uu as KeybindingShortcut, Uv as ThreadCheckpointRevertRequestedPayload, Uw as AuthAccessStreamPairingLinkUpsertedEvent, Ux as FilesystemBrowseFailure, Uy as PreviewAutomationRequest, VC as RelayClientInstallProgressStage, VS as VcsCreateRefInput, VT as IsoDateTime, V_ as OrchestrationEventMetadata, Vb as TerminalCwdError, Vc as ResourceAttributionEntry, Vd as McpStatusUpdatedPayload, Vf as ProviderRuntimeTurnCompletedEvent, Vg as DEFAULT_TIMESTAMP_FORMAT, Vh as DesktopUpdateStatusSchema, Vl as ServerConfigStreamKeybindingsUpdatedEvent, Vm as DesktopPreviewPointerEventSchema, Vp as UserInputQuestion, Vs as WsServerGetProcessDiagnosticsRpc, Vu as KeybindingCommand, Vv as ThreadApprovalResponseRequestedPayload, Vw as AuthAccessStreamEvent, Vx as FilesystemBrowseEntry, Vy as PreviewAutomationRecordingStatus, WC as RelayClientStatusSchema, WS as VcsCreateWorktreeResult, WT as PortSchema, W_ as OrchestrationGetFullThreadDiffInput, Wb as TerminalCwdStatError, Wc as ResourceMonitorCommand, Wd as ProviderRequestId, Wf as ProviderRuntimeTurnProposedCompletedEvent, Wg as GlassOpacity, Wh as DesktopWslState, Wl as ServerConfigStreamSnapshotEvent, Wm as DesktopPreviewRecordingFrame, Wp as UserInputResolvedPayload, Ws as WsServerGetSettingsRpc, Wu as KeybindingValue, Wv as ThreadCreatedPayload, Ww as AuthAccessStreamSnapshotEvent, Wx as FilesystemBrowseInput, Wy as PreviewAutomationRequestQueueClosedError, XC as EnvironmentAuthInvalidReason, XS as VcsRef, XT as RuntimeRequestId, X_ as OrchestrationLatestTurn, Xb as TerminalOpenInput, Xc as ResourceMonitorHistoryChunkEvent, Xd as ProviderRuntimeConfigWarningEvent, Xf as ProviderRuntimeWarningEvent, Xg as MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Xh as PersistedSavedEnvironmentRecordSchema, Xl as ServerLifecycleWelcomePayload, Xm as DesktopPreviewSetColorSchemeInputSchema, Xp as ProviderInstanceEnvironmentVariable, Xs as WsServerReportHostPowerStateRpc, Xu as MAX_KEYBINDING_VALUE_LENGTH, Xv as ThreadRevertedPayload, Xw as AuthBrowserSessionResult, Xx as ReviewDiffPreviewSourceKind, Xy as PreviewAutomationSetColorSchemeInput, YC as EnvironmentAuthInvalidError, YS as VcsPullResult, YT as RuntimeItemId, Y_ as OrchestrationGetTurnDiffResult, Yb as TerminalNotRunningError, Yc as ResourceMonitorHelloEvent, Yd as ProviderRuntimeAuthStatusEvent, Yf as ProviderRuntimeUserInputResolvedEvent, Yg as MIN_GLASS_OPACITY, Yh as PersistedSavedEnvironmentRecord, Yl as ServerLifecycleStreamWelcomeEvent, Ym as DesktopPreviewScreenshotArtifactSchema, Yp as ProviderInstanceEnvironment, Ys as WsServerReportClientActivityRpc, Yu as MAX_KEYBINDINGS_COUNT, Yv as ThreadProposedPlanUpsertedPayload, Yw as AuthBrowserSessionRequest, Yx as ReviewDiffPreviewSource, Yy as PreviewAutomationScrollInput, ZC as EnvironmentAuthenticatedAuth, ZS as VcsRemoveWorktreeInput, ZT as RuntimeSessionId, Z_ as OrchestrationLatestTurnState, Zb as TerminalResizeError, Zc as ResourceMonitorProcessSample, Zd as ProviderRuntimeContentDeltaEvent, Zf as RequestOpenedPayload, Zg as MIN_SIDEBAR_THREAD_PREVIEW_COUNT, Zh as PickFolderOptions, Zl as ServerObservability, Zm as DesktopPreviewTabIdSchema, Zp as ProviderInstanceEnvironmentVariableName, Zs as WsServerRetryResourceTelemetryRpc, Zu as MAX_KEYBINDING_WHEN_LENGTH, Zv as ThreadRuntimeModeSetPayload, Zw as AuthClientMetadata, Zx as VcsDriverCapabilities, Zy as PreviewAutomationSetColorSchemeResult, _C as SourceControlProviderKind, _S as VcsRemote, _T as AuthTokenExchangeGrantType, __ as UnifiedSettings, _b as PreviewCloseInput, _c as WsTerminalAttachRpc, _d as ModelCapabilities, _f as ProviderRuntimeRequestResolvedEvent, _g as PreviewAnnotationStyleChange, _h as DesktopSshEnvironmentEnsureResultSchema, _l as ResourceTelemetrySnapshot, _m as DesktopAppStageLabelSchema, _p as TaskCompletedPayload, _s as WsOrchestrationGetArchivedShellSnapshotRpc, _u as ServerProviderUpdateInput, _v as OrchestrationThreadShell, _w as EnvironmentRequestInvalidError, _x as ProjectReadFileResult, _y as PreviewAutomationActionEvent, aC as ChangeRequest, aS as VcsProcessErrorContext, aT as AuthOrchestrationOperateScope, a_ as ServerSettingsError, ab as PreviewAutomationTypeInput, ac as WsSourceControlLookupRepositoryRpc, ad as ResolvedKeybindingsConfig, af as ProviderRuntimeHookCompletedEvent, ag as PreviewAnnotationPayload, ah as DesktopRuntimeInfo, al as ResourceTelemetryAggregate, am as ProviderRespondToUserInputInput, ap as RuntimePlanStep, au as ServerProcessSignal, av as OrchestrationRpcSchemas, aw as EnvironmentHttpBadRequestError, ax as TerminalThreadInput, ay as ThreadTurnStartBootstrap, bC as SourceControlPublishStatus, bS as VcsUnsupportedOperationError, bT as EnvironmentAuthorizationError, b_ as ChatAttachment, bb as PreviewInvalidUrlError, bc as WsTerminalOpenRpc, bd as ProviderOptionChoice, bf as ProviderRuntimeSessionStartedEvent, bg as BackgroundActivityProfile, bh as DesktopSshHostSource, bl as EDITORS, bm as DesktopDiscoveredSshHostSchema, bp as ThreadMetadataUpdatedPayload, bs as WsOrchestrationSubscribeShellRpc, bu as ServerProviderUpdatedPayload, bv as PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, bw as EnvironmentResourceNotFoundReason, bx as ProjectSearchEntriesResult, by as PreviewAutomationClientId, cC as SourceControlCloneRepositoryInput, cS as VcsProcessExitFailureKind, cT as AuthPairingLink, c_ as SidebarAutoSettleAfterDays, cb as PreviewAutomationWaitForInput, cc as WsSubscribeBackgroundPolicyRpc, cd as THREAD_KEYBINDING_COMMANDS, cf as ProviderRuntimeItemCompletedEvent, cg as PreviewAnnotationPointSchema, ch as DesktopServerExposureModeSchema, cl as ResourceTelemetryHistory, cm as ProviderSessionStartInput, cp as RuntimeSessionState, cs as WS_METHODS, cu as ServerProviderAuthStatus, cv as OrchestrationShellSnapshot, cw as EnvironmentHttpForbiddenError, cx as ProjectEntriesFailure, cy as ThreadUnarchivedPayload, dC as SourceControlDiscoveryStatus, dS as VcsProcessOutputReadError, dT as AuthReviewWriteScope, d_ as SidebarThreadPreviewCount, db as DiscoveredLocalServerList, dc as WsSubscribeResourceTelemetryRpc, dd as BooleanProviderOptionDescriptor, df as ProviderRuntimeMcpOauthCompletedEvent, dg as PreviewAnnotationRegionTarget, dh as DesktopSshBearerBootstrapInputSchema, dl as ResourceTelemetryIoSemantics, dm as ContextMenuItem, dp as RuntimeWarningPayload, ds as WsCloudInstallRelayClientRpc, du as ServerProviderModel, dv as OrchestrationSubscribeShellInput, dw as EnvironmentInternalError, dx as ProjectFileOperation, dy as TurnCountRange, eC as VcsStatusRemoteResult, eE as TrimmedNonEmptyString, eS as VcsFreshness, eT as AuthClientSession, e_ as ProviderSettingsFormAnnotation, eb as PreviewAutomationStreamEvent, ec as WsServerUpdateServerRpc, ed as MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, ef as ProviderRuntimeEvent, eg as PickedElementPayloadSchema, eh as DesktopPreviewTabStateSchema, el as ResourceMonitorSetExternalProcessesCommand, em as defaultInstanceIdForDriver, ep as RuntimeErrorClass, eu as ServerProcessResourceHistoryBucket, ev as OrchestrationProject, ew as EnvironmentCloudLinkStateResult, ex as TerminalSessionInput, ey as ThreadSettledPayload, fC as SourceControlProviderAuth, fS as VcsProcessSpawnError, fT as AuthRevokeClientSessionInput, f_ as SidebarThreadSortOrder, fb as FILL_PREVIEW_VIEWPORT, fc as WsSubscribeServerConfigRpc, fd as DEFAULT_MODEL, ff as ProviderRuntimeMcpStatusUpdatedEvent, fg as PreviewAnnotationRegionTargetSchema, fh as DesktopSshBearerRequestInputSchema, fl as ResourceTelemetryProcess, fm as ContextMenuItemSchema, fp as SessionConfiguredPayload, fs as WsFilesystemBrowseRpc, fu as ServerProviderSkill, fv as OrchestrationSubscribeThreadInput, fw as EnvironmentInternalErrorReason, fx as ProjectListEntriesError, fy as UploadChatAttachment, gC as SourceControlProviderInfo, gS as VcsProcessTimeoutFailure, gT as AuthTerminalOperateScope, g_ as TimestampFormat, gb as PREVIEW_VIEWPORT_PRESET_IDS, gc as WsSubscribeVcsStatusRpc, gd as MODEL_SLUG_ALIASES_BY_PROVIDER, gf as ProviderRuntimeRequestOpenedEvent, gg as PreviewAnnotationStrokeTargetSchema, gh as DesktopSshEnvironmentEnsureOptionsSchema, gl as ResourceTelemetryRetryResult, gm as DesktopAppStageLabel, gp as TOOL_LIFECYCLE_ITEM_TYPES, gs as WsOrchestrationDispatchCommandRpc, gu as ServerProviderUpdateError, gv as OrchestrationThreadDetailSnapshot, gw as EnvironmentOrchestrationHttpApi, gx as ProjectReadFileInput, gy as PREVIEW_AUTOMATION_V1_OPERATIONS, hC as SourceControlProviderError, hS as VcsProcessTimeoutError, hT as AuthStandardClientScopes, h_ as ThreadEnvMode, hb as PREVIEW_VIEWPORT_MIN_DIMENSION, hc as WsSubscribeTerminalMetadataRpc, hd as DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, hf as ProviderRuntimeModelReroutedEvent, hg as PreviewAnnotationStrokeTarget, hh as DesktopSshEnvironmentEnsureInputSchema, hl as ResourceTelemetryProcessSummary, hm as DesktopAppBrandingSchema, hp as SessionStateChangedPayload, hs as WsGitRunStackedActionRpc, hu as ServerProviderState, hv as OrchestrationThreadActivityTone, hw as EnvironmentOperationForbiddenReason, hx as ProjectReadFileError, hy as PREVIEW_AUTOMATION_OPERATIONS, iC as VcsSwitchRefResult, iS as VcsOutputDecodeError, iT as AuthEnvironmentScopes, i_ as ServerSettings, ib as PreviewAutomationTimeoutError, ic as WsSourceControlCloneRepositoryRpc, id as ResolvedKeybindingRule, if as ProviderRuntimeFilesPersistedEvent, ig as PreviewAnnotationElementTargetSchema, ih as DesktopRuntimeArchSchema, il as ResourceMonitorSnapshotEvent, im as ProviderRespondToRequestInput, ip as RuntimeItemStatus, iu as ServerProcessResourceHistorySummary, iv as OrchestrationReadModel, iw as EnvironmentHttpApi, ix as TerminalSummary, iy as ThreadTurnInterruptRequestedPayload, jC as AdvertisedEndpointProviderKind, jS as GitPullRequestRefInput, jT as ClientKind, j_ as ORCHESTRATION_WS_METHODS, jb as PreviewSessionSnapshot, jc as WsVcsSwitchRefRpc, jd as CanonicalRequestType, jf as ProviderRuntimeThreadStartedEvent, jg as DEFAULT_CLIENT_SETTINGS, jh as DesktopUpdateActionResultSchema, jl as T3ProjectFile, jm as DesktopPreviewAutomationTypeInputSchema, jp as ToolLifecycleItemType, js as WsPreviewResizeRpc, ju as ServerTraceDiagnosticsErrorKind, jv as ProjectionThreadTurnStatus, jw as ScopedProjectRef, jx as AssetProjectFaviconResolutionError, jy as PreviewAutomationHostIdentity, kC as AdvertisedEndpointHostedHttpsCompatibility, kS as GitPreparePullRequestThreadResult, kT as ClientActivityLease, k_ as InternalOrchestrationCommand, kb as PreviewResizeInput, kc as WsVcsRefreshStatusRpc, kd as AuthStatusPayload, kf as ProviderRuntimeThreadRealtimeItemAddedEvent, kg as DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, kh as DesktopThemeSchema, kl as LaunchEditorInput, km as DesktopPreviewAutomationPressInputSchema, kp as ThreadTokenUsageUpdatedPayload, ks as WsPreviewRefreshRpc, ku as ServerSignalProcessInput, kv as ProjectionPendingApprovalDecision, kw as RepositoryIdentity, kx as AssetProjectFaviconInspectionError, ky as PreviewAutomationHost, lC as SourceControlCloneRepositoryResult, lS as VcsProcessMissingExitCodeError, lT as AuthRelayReadScope, l_ as SidebarProjectGroupingMode, lb as PreviewUrlResolution, lc as WsSubscribeDiscoveredLocalServersRpc, ld as ThreadJumpKeybindingCommand, lf as ProviderRuntimeItemStartedEvent, lg as PreviewAnnotationRect, lh as DesktopServerExposureState, ll as ResourceTelemetryHistoryBucket, lm as ProviderStopSessionInput, lp as RuntimeThreadState, ls as WsAssetsCreateUrlRpc, lu as ServerProviderAvailability, lv as OrchestrationShellStreamEvent, lw as EnvironmentHttpInternalServerError, lx as ProjectEntry, ly as ThreadUnsettledPayload, mC as SourceControlProviderDiscoveryItem, mS as VcsProcessStdinWriteError, mT as AuthSessionState, m_ as SourceControlWritingStyleSettings, mb as PREVIEW_VIEWPORT_MAX_DIMENSION, mc as WsSubscribeTerminalEventsRpc, md as DEFAULT_TEXT_GENERATION_MODEL, mf as ProviderRuntimeMessageDeltaEvent, mg as PreviewAnnotationScreenshotSchema, mh as DesktopSshEnvironmentBootstrapSchema, ml as ResourceTelemetryProcessIdentity, mm as DesktopAppBranding, mp as SessionStartedPayload, ms as WsGitResolvePullRequestRpc, mu as ServerProviderSlashCommandInput, mv as OrchestrationThreadActivity, mw as EnvironmentOperationForbiddenError, mx as ProjectListEntriesResult, my as BrowserNavigationTarget, nC as VcsStatusStreamEvent, nE as TurnId, nS as VcsListRemotesResult, nT as AuthEnvironmentBootstrapTokenType, n_ as ProviderSettingsFormSchemaAnnotation, nb as PreviewAutomationTabTargetInput, nc as WsServerUpsertKeybindingRpc, nd as ModelPickerJumpKeybindingCommand, nf as ProviderRuntimeEventType, ng as PickedElementStackFrameSchema, nh as DesktopPreviewWebviewConfigSchema, nl as ResourceMonitorSetStreamingCommand, nm as ProviderEvent, np as RuntimeEventRaw, nu as ServerProcessResourceHistoryInput, nv as OrchestrationProposedPlan, nw as EnvironmentCloudRelayConfigResult, nx as TerminalSessionSnapshot, ny as ThreadTurnDiff, oC as ChangeRequestState, oS as VcsProcessExitError, oT as AuthOrchestrationReadScope, o_ as ServerSettingsOperation, ob as PreviewAutomationUnavailableError, oc as WsSourceControlPublishRepositoryRpc, od as SCRIPT_RUN_COMMAND_PATTERN, of as ProviderRuntimeHookProgressEvent, og as PreviewAnnotationPayloadSchema, oh as DesktopRuntimeInfoSchema, ol as ResourceTelemetryGroups, om as ProviderSendTurnInput, op as RuntimePlanStepStatus, ou as ServerProvider, ov as OrchestrationSession, ow as EnvironmentHttpCommonError, ox as TerminalWriteError, oy as ThreadTurnStartCommand, pC as SourceControlProviderAuthStatus, pS as VcsProcessSpawnFailure, pT as AuthRevokePairingLinkInput, p_ as SourceControlWritingStyleMode, pb as PREVIEW_VIEWPORT_MAX_AREA, pc as WsSubscribeServerLifecycleRpc, pd as DEFAULT_MODEL_BY_PROVIDER, pf as ProviderRuntimeMessageCompletedEvent, pg as PreviewAnnotationScreenshot, ph as DesktopSshEnvironmentBootstrap, pl as ResourceTelemetryProcessCategory, pm as ContextMenuItemSchemaType, pp as SessionExitedPayload, ps as WsGitPreparePullRequestThreadRpc, pu as ServerProviderSlashCommand, pv as OrchestrationThread, pw as EnvironmentMetadataHttpApi, px as ProjectListEntriesInput, py as UploadChatImageAttachment, qC as AuthPairingLinkRevokeResult, qS as VcsListRefsResult, qT as ProviderItemId, q_ as OrchestrationGetTurnDiffError, qb as TerminalHistoryError, qc as ResourceMonitorEvent, qd as ProviderRuntimeApprovalRequestedEvent, qf as ProviderRuntimeTurnStatus, qg as MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, qh as LocalApi, ql as ServerLifecycleStreamEvent, qm as DesktopPreviewRegisterWebviewInputSchema, qp as ProviderInstanceConfig, qs as WsServerRefreshProvidersRpc, qu as KeybindingsConfig, qv as ThreadMessageSentPayload, qw as AuthAccessWriteScope, qx as ReviewDiffPreviewInput, qy as PreviewAutomationResponse, rC as VcsSwitchRefInput, rS as VcsListWorkspaceFilesResult, rT as AuthEnvironmentScope, r_ as ProviderSettingsOrder, rb as PreviewAutomationTargetNotEditableError, rc as WsShellOpenInEditorRpc, rd as ModelPickerKeybindingCommand, rf as ProviderRuntimeEventV2, rg as PreviewAnnotationElementTarget, rh as DesktopRuntimeArch, rl as ResourceMonitorShutdownCommand, rm as ProviderInterruptTurnInput, rp as RuntimeEventRawSource, ru as ServerProcessResourceHistoryResult, rv as OrchestrationProposedPlanId, rw as EnvironmentConnectHttpApi, rx as TerminalSessionStatus, ry as ThreadTurnDiffCompletedPayload, sC as SourceControlCloneProtocol, sS as VcsProcessExitFailure, sT as AuthPairingCredentialResult, s_ as ServerSettingsPatch, sb as PreviewAutomationUnsupportedClientError, sc as WsSubscribeAuthAccessRpc, sd as THREAD_JUMP_KEYBINDING_COMMANDS, sf as ProviderRuntimeHookStartedEvent, sg as PreviewAnnotationPoint, sh as DesktopServerExposureMode, sl as ResourceTelemetryHealth, sm as ProviderSession, sp as RuntimeSessionExitKind, su as ServerProviderAuth, sv as OrchestrationSessionStatus, sw as EnvironmentHttpConflictError, sx as TerminalWriteInput, sy as ThreadTurnStartRequestedPayload, tC as VcsStatusResult, tE as TrimmedString, tS as VcsFreshnessSource, tT as AuthCreatePairingCredentialInput, t_ as ProviderSettingsFormControl, tb as PreviewAutomationTabNotFoundError, tc as WsServerUpdateSettingsRpc, td as MODEL_PICKER_KEYBINDING_COMMANDS, tf as ProviderRuntimeEventBase, tg as PickedElementStackFrame, th as DesktopPreviewWebviewConfig, tl as ResourceMonitorSetSampleIntervalCommand, tm as isProviderDriverKind, tp as RuntimeErrorPayload, tu as ServerProcessResourceHistoryFailureTag, tv as OrchestrationProjectShell, tw as EnvironmentCloudPreferencesRequest, tx as TerminalSessionLookupError, ty as ThreadSnoozedPayload, uC as SourceControlDiscoveryResult, uS as VcsProcessOutputLimitError, uT as AuthRelayWriteScope, u_ as SidebarProjectSortOrder, ub as DiscoveredLocalServer, uc as WsSubscribePreviewEventsRpc, ud as ThreadKeybindingCommand, uf as ProviderRuntimeItemUpdatedEvent, ug as PreviewAnnotationRectSchema, uh as DesktopServerExposureStateSchema, ul as ResourceTelemetryHistoryInput, um as ProviderTurnStartResult, up as RuntimeTurnState, us as WsCloudGetRelayClientStatusRpc, uu as ServerProviderContinuation, uv as OrchestrationShellStreamItem, uw as EnvironmentHttpUnauthorizedError, ux as ProjectFileFailure, uy as ThreadUnsnoozedPayload, vC as SourceControlPublishRepositoryInput, vS as VcsRepositoryDetectionError, vT as AuthTokenExchangeRequest, v_ as makeProviderSettingsSchema, vb as PreviewError, vc as WsTerminalClearRpc, vd as PREFERRED_DEFAULT_CODEX_MODELS, vf as ProviderRuntimeSessionConfiguredEvent, vg as PreviewAnnotationStyleChangeSchema, vh as DesktopSshEnvironmentTarget, vl as ResourceTelemetrySourceHealth, vm as DesktopBridge, vp as TaskProgressPayload, vs as WsOrchestrationGetFullThreadDiffRpc, vu as ServerProviderUpdateState, vv as OrchestrationThreadStreamItem, vw as EnvironmentRequestInvalidReason, vx as ProjectSearchEntriesError, vy as PreviewAutomationClickInput, wC as SourceControlRepositoryLookupInput, wS as GitActionProgressStream, wT as ServerAuthSessionMethod, w_ as CorrelationId, wb as PreviewNavigateInput, wc as WsVcsCreateRefRpc, wd as ProviderOptionSelectionValue, wf as ProviderRuntimeTaskStartedEvent, wg as ClientSettings, wh as DesktopSshPasswordPromptCancelledType, wl as ExternalLauncherCommandNotFoundError, wm as DesktopPreviewAnnotationThemeInputSchema, wp as ThreadRealtimeItemAddedPayload, ws as WsPreviewAutomationRespondRpc, wu as ServerRemoveKeybindingInput, wv as ProjectDeletedPayload, ww as ExecutionEnvironmentCapabilities, wx as AssetAccessError, wy as PreviewAutomationControlInterruptedError, xC as SourceControlRepositoryCloneUrls, xS as GitActionProgressEvent, xT as ServerAuthBootstrapMethod, x_ as ChatAttachmentId, xb as PreviewListInput, xc as WsTerminalResizeRpc, xd as ProviderOptionDescriptor, xf as ProviderRuntimeSessionStateChangedEvent, xg as BackgroundActivityProfileSelection, xh as DesktopSshHostSourceSchema, xl as EditorId, xm as DesktopEnvironmentBootstrap, xp as ThreadRealtimeAudioDeltaPayload, xs as WsOrchestrationSubscribeThreadRpc, xu as ServerProviderVersionAdvisory, xv as PROVIDER_SEND_TURN_MAX_INPUT_CHARS, xw as EnvironmentScopeRequiredError, xx as ProjectWriteFileError, xy as PreviewAutomationColorScheme, yC as SourceControlPublishRepositoryResult, yS as VcsRepositoryIdentity, yT as AuthWebSocketTicketResult, y_ as AssistantDeliveryMode, yb as PreviewEvent, yc as WsTerminalCloseRpc, yd as PROVIDER_DISPLAY_NAMES, yf as ProviderRuntimeSessionExitedEvent, yg as BackgroundActivityOverrides, yh as DesktopSshEnvironmentTargetSchema, yl as ResourceTelemetrySourceStatus, ym as DesktopDiscoveredSshHost, yp as TaskStartedPayload, ys as WsOrchestrationGetTurnDiffRpc, yu as ServerProviderUpdateStatus, yv as PROVIDER_SEND_TURN_MAX_ATTACHMENTS, yw as EnvironmentResourceNotFoundError, yx as ProjectSearchEntriesInput, yy as PreviewAutomationClientDisconnectedError, zC as RelayClientInstallProgressEvent, zS as GitStackedAction, zT as EnvironmentId, z_ as OrchestrationDispatchCommandError, zb as TerminalClearInput, zc as DesktopTelemetrySetHostPowerIntervals, zd as ItemLifecyclePayload, zf as ProviderRuntimeToolSummaryEvent, zg as DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, zh as DesktopUpdateStateSchema, zl as ServerConfigSettingsUpdatedPayload, zm as DesktopPreviewNavigateInputSchema, zp as TurnProposedDeltaPayload, zs as WsServerGetBackgroundPolicyRpc, zu as ServerUpsertKeybindingResult, zv as RuntimeMode, zw as AuthAccessStreamClientUpsertedEvent, zx as AssetWorkspaceResolutionError, zy as PreviewAutomationPressInput } from "./shared.js";
|
|
2
|
+
export { AccountRateLimitsUpdatedPayload, AccountUpdatedPayload, AdvertisedEndpoint, AdvertisedEndpointCompatibility, AdvertisedEndpointHostedHttpsCompatibility, AdvertisedEndpointProvider, AdvertisedEndpointProviderKind, AdvertisedEndpointReachability, AdvertisedEndpointSource, AdvertisedEndpointStatus, ApprovalRequestId, AssetAccessError, AssetAttachmentNotFoundError, AssetCreateUrlInput, AssetCreateUrlResult, AssetPreviewTypeValidationError, AssetProjectFaviconInspectionError, AssetProjectFaviconNotFoundError, AssetProjectFaviconResolutionError, AssetResource, AssetSigningKeyLoadError, AssetWorkspaceAssetInspectionError, AssetWorkspaceAssetNotFoundError, AssetWorkspaceContextNotFoundError, AssetWorkspaceContextResolutionError, AssetWorkspacePathValidationError, AssetWorkspaceResolutionError, AssetWorkspaceRootNormalizationError, AssistantDeliveryMode, AuthAccessReadScope, AuthAccessSnapshot, AuthAccessStreamClientRemovedEvent, AuthAccessStreamClientUpsertedEvent, AuthAccessStreamError, AuthAccessStreamEvent, AuthAccessStreamPairingLinkRemovedEvent, AuthAccessStreamPairingLinkUpsertedEvent, AuthAccessStreamSnapshotEvent, AuthAccessTokenResult, AuthAccessTokenType, AuthAccessWriteScope, AuthAdministrativeScopes, AuthBrowserSessionRequest, AuthBrowserSessionResult, AuthClientMetadata, AuthClientMetadataDeviceType, AuthClientPresentationMetadata, AuthClientSession, AuthClientSessionRevokeResult, AuthCreatePairingCredentialInput, AuthEnvironmentBootstrapTokenType, AuthEnvironmentScope, AuthEnvironmentScopes, AuthOrchestrationOperateScope, AuthOrchestrationReadScope, AuthOtherClientSessionsRevokeResult, AuthPairingCredentialResult, AuthPairingLink, AuthPairingLinkRevokeResult, AuthRelayReadScope, AuthRelayWriteScope, AuthReviewWriteScope, AuthRevokeClientSessionInput, AuthRevokePairingLinkInput, AuthSessionId, AuthSessionState, AuthStandardClientScopes, AuthStatusPayload, AuthTerminalOperateScope, AuthTokenExchangeGrantType, AuthTokenExchangeRequest, AuthWebSocketTicketResult, BackgroundActivityOverrides, BackgroundActivityProfile, BackgroundActivityProfileSelection, BackgroundActivitySettings, BackgroundBooleanState, BackgroundPolicySnapshot, BackgroundScope, BooleanProviderOptionDescriptor, BrowserNavigationTarget, CanonicalItemType, CanonicalRequestType, ChangeRequest, ChangeRequestState, ChatAttachment, ChatAttachmentId, ChatImageAttachment, CheckpointRef, ClaudeSettings, ClientActivityClientId, ClientActivityLease, ClientActivityReportInput, ClientKind, ClientOrchestrationCommand, ClientSettings, ClientSettingsPatch, ClientSettingsSchema, CodexSettings, CommandId, ConfigWarningPayload, ContentDeltaPayload, ContextMenuItem, ContextMenuItemSchema, ContextMenuItemSchemaType, CorrelationId, CursorSettings, DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, DEFAULT_BACKGROUND_ACTIVITY_PROFILE, DEFAULT_CLIENT_SETTINGS, DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, DEFAULT_GLASS_OPACITY, DEFAULT_MODEL, DEFAULT_MODEL_BY_PROVIDER, DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, DEFAULT_PROVIDER_INTERACTION_MODE, DEFAULT_RUNTIME_MODE, DEFAULT_SERVER_SETTINGS, DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, DEFAULT_SIDEBAR_THREAD_SORT_ORDER, DEFAULT_TERMINAL_ID, DEFAULT_TEXT_GENERATION_MODEL, DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, DEFAULT_TIMESTAMP_FORMAT, DEFAULT_UNIFIED_SETTINGS, DeprecationNoticePayload, DesktopAppBranding, DesktopAppBrandingSchema, DesktopAppStageLabel, DesktopAppStageLabelSchema, DesktopBackendBootstrap, DesktopBridge, DesktopDiscoveredSshHost, DesktopDiscoveredSshHostSchema, DesktopElectronProcessMetric, DesktopElectronProcessType, DesktopEnvironmentBootstrap, DesktopEnvironmentBootstrapSchema, DesktopHostTelemetryHello, DesktopHostTelemetryMessage, DesktopHostTelemetrySnapshot, DesktopPreviewAnnotationTheme, DesktopPreviewAnnotationThemeInputSchema, DesktopPreviewAnnotationThemeSchema, DesktopPreviewArtifactInputSchema, DesktopPreviewAutomationClickInputSchema, DesktopPreviewAutomationEvaluateInputSchema, DesktopPreviewAutomationPressInputSchema, DesktopPreviewAutomationScrollInputSchema, DesktopPreviewAutomationTypeInputSchema, DesktopPreviewAutomationWaitForInputSchema, DesktopPreviewBridge, DesktopPreviewColorScheme, DesktopPreviewColorSchemeSchema, DesktopPreviewConfigInputSchema, DesktopPreviewNavStatus, DesktopPreviewNavStatusSchema, DesktopPreviewNavigateInputSchema, DesktopPreviewPointerEvent, DesktopPreviewPointerEventSchema, DesktopPreviewRecordingArtifact, DesktopPreviewRecordingArtifactSchema, DesktopPreviewRecordingFrame, DesktopPreviewRecordingFrameSchema, DesktopPreviewRecordingSaveInputSchema, DesktopPreviewRegisterWebviewInputSchema, DesktopPreviewScreenshotArtifact, DesktopPreviewScreenshotArtifactSchema, DesktopPreviewSetColorSchemeInputSchema, DesktopPreviewTabIdSchema, DesktopPreviewTabInputSchema, DesktopPreviewTabState, DesktopPreviewTabStateSchema, DesktopPreviewWebviewConfig, DesktopPreviewWebviewConfigSchema, DesktopRuntimeArch, DesktopRuntimeArchSchema, DesktopRuntimeInfo, DesktopRuntimeInfoSchema, DesktopServerExposureMode, DesktopServerExposureModeSchema, DesktopServerExposureState, DesktopServerExposureStateSchema, DesktopSshBearerBootstrapInputSchema, DesktopSshBearerRequestInputSchema, DesktopSshEnvironmentBootstrap, DesktopSshEnvironmentBootstrapSchema, DesktopSshEnvironmentEnsureInputSchema, DesktopSshEnvironmentEnsureOptionsSchema, DesktopSshEnvironmentEnsureResultSchema, DesktopSshEnvironmentTarget, DesktopSshEnvironmentTargetSchema, DesktopSshHostSource, DesktopSshHostSourceSchema, DesktopSshHttpBaseUrlInputSchema, DesktopSshPasswordPromptCancelledResultSchema, DesktopSshPasswordPromptCancelledType, DesktopSshPasswordPromptRequest, DesktopSshPasswordPromptRequestSchema, DesktopSshPasswordPromptResolutionInputSchema, DesktopTelemetryControlMessage, DesktopTelemetrySetDiagnosticsDemand, DesktopTelemetrySetHostPowerIntervals, DesktopTheme, DesktopThemeSchema, DesktopUpdateActionResult, DesktopUpdateActionResultSchema, DesktopUpdateChannel, DesktopUpdateChannelSchema, DesktopUpdateCheckResult, DesktopUpdateCheckResultSchema, DesktopUpdateReleaseNote, DesktopUpdateReleaseNoteSchema, DesktopUpdateState, DesktopUpdateStateSchema, DesktopUpdateStatus, DesktopUpdateStatusSchema, DesktopWslDistro, DesktopWslDistroSchema, DesktopWslState, DesktopWslStateSchema, DiscoveredLocalServer, DiscoveredLocalServerList, DispatchResult, DispatchableClientOrchestrationCommand, EDITORS, EditorId, EditorLaunchStyle, EnvironmentApi, EnvironmentAuthHttpApi, EnvironmentAuthInvalidError, EnvironmentAuthInvalidReason, EnvironmentAuthenticatedAuth, EnvironmentAuthenticatedPrincipal, EnvironmentAuthorizationError, EnvironmentCloudEndpointUnavailableError, EnvironmentCloudLinkStateResult, EnvironmentCloudPreferencesRequest, EnvironmentCloudRelayConfigResult, EnvironmentConnectHttpApi, EnvironmentConnectionState, EnvironmentHttpApi, EnvironmentHttpBadRequestError, EnvironmentHttpCommonError, EnvironmentHttpConflictError, EnvironmentHttpForbiddenError, EnvironmentHttpInternalServerError, EnvironmentHttpUnauthorizedError, EnvironmentId, EnvironmentIdentificationMode, EnvironmentInternalError, EnvironmentInternalErrorReason, EnvironmentMetadataHttpApi, EnvironmentOperationForbiddenError, EnvironmentOperationForbiddenReason, EnvironmentOrchestrationHttpApi, EnvironmentRequestInvalidError, EnvironmentRequestInvalidReason, EnvironmentResourceNotFoundError, EnvironmentResourceNotFoundReason, EnvironmentScopeRequiredError, EnvironmentSessionPrincipalShape, EventId, ExecutionEnvironmentCapabilities, ExecutionEnvironmentDescriptor, ExecutionEnvironmentPlatform, ExecutionEnvironmentPlatformArch, ExecutionEnvironmentPlatformOs, ExternalLauncherBrowserSpawnError, ExternalLauncherCommandNotFoundError, ExternalLauncherEditorSpawnError, ExternalLauncherError, ExternalLauncherUnknownEditorError, ExternalLauncherUnsupportedEditorError, FILL_PREVIEW_VIEWPORT, FilesPersistedPayload, FilesystemBrowseEntry, FilesystemBrowseError, FilesystemBrowseFailure, FilesystemBrowseInput, FilesystemBrowseResult, GitActionProgressEvent, GitActionProgressKind, GitActionProgressPhase, GitActionProgressStream, GitCommandError, GitManagerError, GitManagerServiceError, GitPreparePullRequestThreadInput, GitPreparePullRequestThreadResult, GitPullRequestMaterializationError, GitPullRequestRefInput, GitResolvePullRequestResult, GitResolvedPullRequest, GitRunStackedActionInput, GitRunStackedActionResult, GitRunStackedActionToast, GitRunStackedActionToastCta, GitRunStackedActionToastRunAction, GitStackedAction, GlassOpacity, GrokSettings, HookCompletedPayload, HookProgressPayload, HookStartedPayload, HostPowerSnapshot, HostPowerSource, HostPowerThermalState, InternalOrchestrationCommand, IsoDateTime, ItemLifecyclePayload, KeybindingCommand, KeybindingRule, KeybindingShortcut, KeybindingValue, KeybindingWhen, KeybindingWhenNode, KeybindingsConfig, KeybindingsConfigError, LaunchEditorInput, LocalApi, MAX_GLASS_OPACITY, MAX_KEYBINDINGS_COUNT, MAX_KEYBINDING_VALUE_LENGTH, MAX_KEYBINDING_WHEN_LENGTH, MAX_SCRIPT_ID_LENGTH, MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MAX_SIDEBAR_THREAD_PREVIEW_COUNT, MAX_WHEN_EXPRESSION_DEPTH, MIN_GLASS_OPACITY, MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MIN_SIDEBAR_THREAD_PREVIEW_COUNT, MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, MODEL_PICKER_KEYBINDING_COMMANDS, MODEL_SLUG_ALIASES_BY_PROVIDER, McpOauthCompletedPayload, McpStatusUpdatedPayload, MessageId, ModelCapabilities, ModelPickerJumpKeybindingCommand, ModelPickerKeybindingCommand, ModelReroutedPayload, ModelSelection, NonNegativeInt, ORCHESTRATION_WS_METHODS, ObservabilitySettings, OpenCodeSettings, OrchestrationActorKind, OrchestrationAggregateKind, OrchestrationCheckpointFile, OrchestrationCheckpointStatus, OrchestrationCheckpointSummary, OrchestrationCommand, OrchestrationCommandReceiptStatus, OrchestrationDispatchCommandError, OrchestrationEvent, OrchestrationEventMetadata, OrchestrationEventType, OrchestrationGetFullThreadDiffError, OrchestrationGetFullThreadDiffInput, OrchestrationGetFullThreadDiffResult, OrchestrationGetSnapshotError, OrchestrationGetTurnDiffError, OrchestrationGetTurnDiffInput, OrchestrationGetTurnDiffResult, OrchestrationLatestTurn, OrchestrationLatestTurnState, OrchestrationMessage, OrchestrationMessageRole, OrchestrationProject, OrchestrationProjectShell, OrchestrationProposedPlan, OrchestrationProposedPlanId, OrchestrationReadModel, OrchestrationRpcSchemas, OrchestrationSession, OrchestrationSessionStatus, OrchestrationShellSnapshot, OrchestrationShellStreamEvent, OrchestrationShellStreamItem, OrchestrationSubscribeShellInput, OrchestrationSubscribeThreadInput, OrchestrationThread, OrchestrationThreadActivity, OrchestrationThreadActivityTone, OrchestrationThreadDetailSnapshot, OrchestrationThreadShell, OrchestrationThreadStreamItem, PREFERRED_DEFAULT_CODEX_MODELS, PREVIEW_AUTOMATION_OPERATIONS, PREVIEW_AUTOMATION_V1_OPERATIONS, PREVIEW_VIEWPORT_MAX_AREA, PREVIEW_VIEWPORT_MAX_DIMENSION, PREVIEW_VIEWPORT_MIN_DIMENSION, PREVIEW_VIEWPORT_PRESET_IDS, PRIMARY_LOCAL_ENVIRONMENT_ID, PROVIDER_DISPLAY_NAMES, PROVIDER_SEND_TURN_MAX_ATTACHMENTS, PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, PROVIDER_SEND_TURN_MAX_INPUT_CHARS, PersistedSavedEnvironmentRecord, PersistedSavedEnvironmentRecordSchema, PickFolderOptions, PickFolderOptionsSchema, PickedElementPayload, PickedElementPayloadSchema, PickedElementStackFrame, PickedElementStackFrameSchema, PortSchema, PositiveInt, PreviewAnnotationElementTarget, PreviewAnnotationElementTargetSchema, PreviewAnnotationPayload, PreviewAnnotationPayloadSchema, PreviewAnnotationPoint, PreviewAnnotationPointSchema, PreviewAnnotationRect, PreviewAnnotationRectSchema, PreviewAnnotationRegionTarget, PreviewAnnotationRegionTargetSchema, PreviewAnnotationScreenshot, PreviewAnnotationScreenshotSchema, PreviewAnnotationStrokeTarget, PreviewAnnotationStrokeTargetSchema, PreviewAnnotationStyleChange, PreviewAnnotationStyleChangeSchema, PreviewAutomationActionEvent, PreviewAutomationClickInput, PreviewAutomationClientDisconnectedError, PreviewAutomationClientId, PreviewAutomationColorScheme, PreviewAutomationConnectionId, PreviewAutomationConsoleEntry, PreviewAutomationControlInterruptedError, PreviewAutomationElement, PreviewAutomationError, PreviewAutomationEvaluateInput, PreviewAutomationExecutionError, PreviewAutomationHost, PreviewAutomationHostFocus, PreviewAutomationHostIdentity, PreviewAutomationInvalidSelectorError, PreviewAutomationMalformedResponseError, PreviewAutomationNavigateInput, PreviewAutomationNetworkEntry, PreviewAutomationNoAvailableHostError, PreviewAutomationOpenInput, PreviewAutomationOperation, PreviewAutomationPressInput, PreviewAutomationRecordingArtifact, PreviewAutomationRecordingStatus, PreviewAutomationRemoteUnavailableError, PreviewAutomationRequest, PreviewAutomationRequestQueueClosedError, PreviewAutomationResizeInput, PreviewAutomationResizeResult, PreviewAutomationResponse, PreviewAutomationResultTooLargeError, PreviewAutomationScrollInput, PreviewAutomationSetColorSchemeInput, PreviewAutomationSetColorSchemeResult, PreviewAutomationSnapshot, PreviewAutomationStatus, PreviewAutomationStreamEvent, PreviewAutomationTabNotFoundError, PreviewAutomationTabTargetInput, PreviewAutomationTargetNotEditableError, PreviewAutomationTimeoutError, PreviewAutomationTypeInput, PreviewAutomationUnavailableError, PreviewAutomationUnsupportedClientError, PreviewAutomationWaitForInput, PreviewCloseInput, PreviewError, PreviewEvent, PreviewInvalidUrlError, PreviewListInput, PreviewListResult, PreviewNavStatus, PreviewNavigateInput, PreviewOpenInput, PreviewRefreshInput, PreviewRenderedViewportSize, PreviewReportStatusInput, PreviewResizeInput, PreviewSessionLookupError, PreviewSessionSnapshot, PreviewTabId, PreviewUrlResolution, PreviewViewportPresetId, PreviewViewportSetting, PreviewViewportSize, ProjectCreateCommand, ProjectCreatedPayload, ProjectDeletedPayload, ProjectEntriesFailure, ProjectEntry, ProjectFileFailure, ProjectFileOperation, ProjectId, ProjectListEntriesError, ProjectListEntriesInput, ProjectListEntriesResult, ProjectMetaUpdatedPayload, ProjectReadFileError, ProjectReadFileInput, ProjectReadFileResult, ProjectScript, ProjectScriptIcon, ProjectSearchEntriesError, ProjectSearchEntriesInput, ProjectSearchEntriesResult, ProjectWriteFileError, ProjectWriteFileInput, ProjectWriteFileResult, ProjectionCheckpointRow, ProjectionPendingApprovalDecision, ProjectionPendingApprovalStatus, ProjectionThreadTurnStatus, ProviderApprovalDecision, ProviderApprovalPolicy, ProviderDriverKind, ProviderEvent, ProviderInstanceConfig, ProviderInstanceConfigMap, ProviderInstanceEnvironment, ProviderInstanceEnvironmentVariable, ProviderInstanceEnvironmentVariableName, ProviderInstanceId, ProviderInstanceRef, ProviderInteractionMode, ProviderInterruptTurnInput, ProviderItemId, ProviderOptionChoice, ProviderOptionDescriptor, ProviderOptionDescriptorType, ProviderOptionSelection, ProviderOptionSelectionValue, ProviderOptionSelections, ProviderRefs, ProviderRequestId, ProviderRequestKind, ProviderRespondToRequestInput, ProviderRespondToUserInputInput, ProviderRuntimeAccountRateLimitsUpdatedEvent, ProviderRuntimeAccountUpdatedEvent, ProviderRuntimeApprovalRequestedEvent, ProviderRuntimeApprovalResolvedEvent, ProviderRuntimeAuthStatusEvent, ProviderRuntimeConfigWarningEvent, ProviderRuntimeContentDeltaEvent, ProviderRuntimeDeprecationNoticeEvent, ProviderRuntimeErrorEvent, ProviderRuntimeEvent, ProviderRuntimeEventBase, ProviderRuntimeEventType, ProviderRuntimeEventV2, ProviderRuntimeFilesPersistedEvent, ProviderRuntimeHookCompletedEvent, ProviderRuntimeHookProgressEvent, ProviderRuntimeHookStartedEvent, ProviderRuntimeItemCompletedEvent, ProviderRuntimeItemStartedEvent, ProviderRuntimeItemUpdatedEvent, ProviderRuntimeMcpOauthCompletedEvent, ProviderRuntimeMcpStatusUpdatedEvent, ProviderRuntimeMessageCompletedEvent, ProviderRuntimeMessageDeltaEvent, ProviderRuntimeModelReroutedEvent, ProviderRuntimeRequestOpenedEvent, ProviderRuntimeRequestResolvedEvent, ProviderRuntimeSessionConfiguredEvent, ProviderRuntimeSessionExitedEvent, ProviderRuntimeSessionStartedEvent, ProviderRuntimeSessionStateChangedEvent, ProviderRuntimeTaskCompletedEvent, ProviderRuntimeTaskProgressEvent, ProviderRuntimeTaskStartedEvent, ProviderRuntimeThreadMetadataUpdatedEvent, ProviderRuntimeThreadRealtimeAudioDeltaEvent, ProviderRuntimeThreadRealtimeClosedEvent, ProviderRuntimeThreadRealtimeErrorEvent, ProviderRuntimeThreadRealtimeItemAddedEvent, ProviderRuntimeThreadRealtimeStartedEvent, ProviderRuntimeThreadStartedEvent, ProviderRuntimeThreadStateChangedEvent, ProviderRuntimeThreadTokenUsageUpdatedEvent, ProviderRuntimeToolCompletedEvent, ProviderRuntimeToolDeniedEvent, ProviderRuntimeToolKind, ProviderRuntimeToolProgressEvent, ProviderRuntimeToolStartedEvent, ProviderRuntimeToolSummaryEvent, ProviderRuntimeTurnAbortedEvent, ProviderRuntimeTurnCompletedEvent, ProviderRuntimeTurnDiffUpdatedEvent, ProviderRuntimeTurnPlanUpdatedEvent, ProviderRuntimeTurnProposedCompletedEvent, ProviderRuntimeTurnProposedDeltaEvent, ProviderRuntimeTurnStartedEvent, ProviderRuntimeTurnStatus, ProviderRuntimeUserInputRequestedEvent, ProviderRuntimeUserInputResolvedEvent, ProviderRuntimeWarningEvent, ProviderSandboxMode, ProviderSendTurnInput, ProviderSession, ProviderSessionRuntimeStatus, ProviderSessionStartInput, ProviderSettingsFormAnnotation, ProviderSettingsFormControl, ProviderSettingsFormSchemaAnnotation, ProviderSettingsOrder, ProviderStopSessionInput, ProviderTurnStartResult, ProviderUserInputAnswers, RESOURCE_MONITOR_PROTOCOL_VERSION, RelayClientInstallFailedError, RelayClientInstallFailureReason, RelayClientInstallFailureReasonSchema, RelayClientInstallProgressEvent, RelayClientInstallProgressEventSchema, RelayClientInstallProgressStage, RelayClientInstallProgressStageSchema, RelayClientStatus, RelayClientStatusSchema, RepositoryIdentity, RepositoryIdentityLocator, RequestOpenedPayload, RequestResolvedPayload, ResolvedKeybindingRule, ResolvedKeybindingsConfig, ResourceAttributionEntry, ResourceAttributionSnapshot, ResourceMonitorCapabilities, ResourceMonitorCommand, ResourceMonitorConfigureCommand, ResourceMonitorErrorEvent, ResourceMonitorEvent, ResourceMonitorExternalProcess, ResourceMonitorHelloEvent, ResourceMonitorHistoryChunkEvent, ResourceMonitorProcessSample, ResourceMonitorReadHistoryCommand, ResourceMonitorSampleNowCommand, ResourceMonitorSetExternalProcessesCommand, ResourceMonitorSetSampleIntervalCommand, ResourceMonitorSetStreamingCommand, ResourceMonitorShutdownCommand, ResourceMonitorSnapshotEvent, ResourceTelemetryAggregate, ResourceTelemetryGroups, ResourceTelemetryHealth, ResourceTelemetryHistory, ResourceTelemetryHistoryBucket, ResourceTelemetryHistoryInput, ResourceTelemetryIoSemantics, ResourceTelemetryProcess, ResourceTelemetryProcessCategory, ResourceTelemetryProcessIdentity, ResourceTelemetryProcessSummary, ResourceTelemetryRetryResult, ResourceTelemetrySnapshot, ResourceTelemetrySourceHealth, ResourceTelemetrySourceStatus, ReviewDiffPreviewError, ReviewDiffPreviewInput, ReviewDiffPreviewResult, ReviewDiffPreviewSource, ReviewDiffPreviewSourceKind, RpcClientId, RuntimeContentStreamKind, RuntimeErrorClass, RuntimeErrorPayload, RuntimeEventRaw, RuntimeEventRawSource, RuntimeItemId, RuntimeItemStatus, RuntimeMode, RuntimePlanStep, RuntimePlanStepStatus, RuntimeRequestId, RuntimeSessionExitKind, RuntimeSessionId, RuntimeSessionState, RuntimeTaskId, RuntimeThreadState, RuntimeTurnState, RuntimeWarningPayload, SCRIPT_RUN_COMMAND_PATTERN, ScopedProjectRef, ScopedThreadRef, ScopedThreadSessionRef, SelectProviderOptionDescriptor, ServerAuthBootstrapMethod, ServerAuthDescriptor, ServerAuthPolicy, ServerAuthSessionMethod, ServerConfig, ServerConfigIssue, ServerConfigKeybindingsUpdatedPayload, ServerConfigProviderStatusesPayload, ServerConfigSettingsUpdatedPayload, ServerConfigStreamEvent, ServerConfigStreamKeybindingsUpdatedEvent, ServerConfigStreamProviderStatusesEvent, ServerConfigStreamSettingsUpdatedEvent, ServerConfigStreamSnapshotEvent, ServerConfigUpdatedPayload, ServerLifecycleReadyPayload, ServerLifecycleStreamEvent, ServerLifecycleStreamReadyEvent, ServerLifecycleStreamWelcomeEvent, ServerLifecycleWelcomePayload, ServerObservability, ServerProcessDiagnosticsEntry, ServerProcessDiagnosticsResult, ServerProcessResourceHistoryBucket, ServerProcessResourceHistoryFailureTag, ServerProcessResourceHistoryInput, ServerProcessResourceHistoryResult, ServerProcessResourceHistorySummary, ServerProcessSignal, ServerProvider, ServerProviderAuth, ServerProviderAuthStatus, ServerProviderAvailability, ServerProviderContinuation, ServerProviderModel, ServerProviderSkill, ServerProviderSlashCommand, ServerProviderSlashCommandInput, ServerProviderState, ServerProviderUpdateError, ServerProviderUpdateInput, ServerProviderUpdateState, ServerProviderUpdateStatus, ServerProviderUpdatedPayload, ServerProviderVersionAdvisory, ServerProviderVersionAdvisoryStatus, ServerProviders, ServerRemoveKeybindingInput, ServerRemoveKeybindingResult, ServerSelfUpdateCapability, ServerSelfUpdateError, ServerSelfUpdateInput, ServerSelfUpdateMethod, ServerSelfUpdateResult, ServerSettings, ServerSettingsError, ServerSettingsOperation, ServerSettingsPatch, ServerSignalProcessInput, ServerSignalProcessResult, ServerTraceDiagnosticsErrorKind, ServerTraceDiagnosticsFailureSummary, ServerTraceDiagnosticsLogEvent, ServerTraceDiagnosticsRecentFailure, ServerTraceDiagnosticsResult, ServerTraceDiagnosticsSpanOccurrence, ServerTraceDiagnosticsSpanSummary, ServerUpsertKeybindingInput, ServerUpsertKeybindingResult, SessionConfiguredPayload, SessionExitedPayload, SessionStartedPayload, SessionStateChangedPayload, SidebarAutoSettleAfterDays, SidebarProjectGroupingMode, SidebarProjectSortOrder, SidebarThreadPreviewCount, SidebarThreadSortOrder, SourceControlCloneProtocol, SourceControlCloneRepositoryInput, SourceControlCloneRepositoryResult, SourceControlDiscoveryResult, SourceControlDiscoveryStatus, SourceControlProviderAuth, SourceControlProviderAuthStatus, SourceControlProviderDiscoveryItem, SourceControlProviderError, SourceControlProviderInfo, SourceControlProviderKind, SourceControlPublishRepositoryInput, SourceControlPublishRepositoryResult, SourceControlPublishStatus, SourceControlRepositoryCloneUrls, SourceControlRepositoryError, SourceControlRepositoryInfo, SourceControlRepositoryLookupInput, SourceControlRepositoryVisibility, SourceControlWritingStyleMode, SourceControlWritingStyleSettings, T3ProjectFile, T3ProjectFileScript, T3_PROJECT_FILE_NAME, T3_PROJECT_FILE_SCHEMA_URL, THREAD_JUMP_KEYBINDING_COMMANDS, THREAD_KEYBINDING_COMMANDS, TOOL_LIFECYCLE_ITEM_TYPES, TaskCompletedPayload, TaskProgressPayload, TaskStartedPayload, TerminalAttachInput, TerminalAttachStreamEvent, TerminalClearInput, TerminalCloseInput, TerminalCwdError, TerminalCwdNotDirectoryError, TerminalCwdNotFoundError, TerminalCwdStatError, TerminalError, TerminalEvent, TerminalHistoryError, TerminalMetadataStreamEvent, TerminalNotRunningError, TerminalOpenInput, TerminalResizeError, TerminalResizeInput, TerminalRestartInput, TerminalSessionInput, TerminalSessionLookupError, TerminalSessionSnapshot, TerminalSessionStatus, TerminalSummary, TerminalThreadInput, TerminalWriteError, TerminalWriteInput, TextGenerationError, ThreadActivityAppendedPayload, ThreadApprovalResponseRequestedPayload, ThreadArchivedPayload, ThreadCheckpointRevertRequestedPayload, ThreadCreatedPayload, ThreadDeletedPayload, ThreadEnvMode, ThreadId, ThreadInteractionModeSetPayload, ThreadJumpKeybindingCommand, ThreadKeybindingCommand, ThreadMessageSentPayload, ThreadMetaUpdatedPayload, ThreadMetadataUpdatedPayload, ThreadProposedPlanUpsertedPayload, ThreadRealtimeAudioDeltaPayload, ThreadRealtimeClosedPayload, ThreadRealtimeErrorPayload, ThreadRealtimeItemAddedPayload, ThreadRealtimeStartedPayload, ThreadRevertedPayload, ThreadRuntimeModeSetPayload, ThreadSessionSetPayload, ThreadSessionStopRequestedPayload, ThreadSettledPayload, ThreadSnoozedPayload, ThreadStartedPayload, ThreadStateChangedPayload, ThreadTokenUsageSnapshot, ThreadTokenUsageUpdatedPayload, ThreadTurnDiff, ThreadTurnDiffCompletedPayload, ThreadTurnInterruptRequestedPayload, ThreadTurnStartBootstrap, ThreadTurnStartCommand, ThreadTurnStartRequestedPayload, ThreadUnarchivedPayload, ThreadUnsettledPayload, ThreadUnsnoozedPayload, TimestampFormat, ToolDeniedPayload, ToolLifecycleItemType, ToolProgressPayload, ToolSummaryPayload, TrimmedNonEmptyString, TrimmedString, TurnAbortedPayload, TurnCompletedPayload, TurnCountRange, TurnDiffUpdatedPayload, TurnId, TurnPlanUpdatedPayload, TurnProposedCompletedPayload, TurnProposedDeltaPayload, TurnStartedPayload, UnifiedSettings, UploadChatAttachment, UploadChatImageAttachment, UserInputQuestion, UserInputQuestionOption, UserInputRequestedPayload, UserInputResolvedPayload, VcsCreateRefInput, VcsCreateRefResult, VcsCreateWorktreeInput, VcsCreateWorktreeResult, VcsDiscoveryItem, VcsDriverCapabilities, VcsDriverKind, VcsError, VcsFreshness, VcsFreshnessSource, VcsInitInput, VcsListRefsInput, VcsListRefsResult, VcsListRemotesResult, VcsListWorkspaceFilesResult, VcsOutputDecodeError, VcsProcessErrorContext, VcsProcessExitError, VcsProcessExitFailure, VcsProcessExitFailureKind, VcsProcessMissingExitCodeError, VcsProcessOutputLimitError, VcsProcessOutputReadError, VcsProcessSpawnError, VcsProcessSpawnFailure, VcsProcessStdinWriteError, VcsProcessTimeoutError, VcsProcessTimeoutFailure, VcsPullInput, VcsPullResult, VcsRef, VcsRemote, VcsRemoveWorktreeInput, VcsRepositoryDetectionError, VcsRepositoryIdentity, VcsStatusInput, VcsStatusLocalResult, VcsStatusRemoteResult, VcsStatusResult, VcsStatusStreamEvent, VcsSwitchRefInput, VcsSwitchRefResult, VcsUnsupportedOperationError, WS_METHODS, WsAssetsCreateUrlRpc, WsCloudGetRelayClientStatusRpc, WsCloudInstallRelayClientRpc, WsFilesystemBrowseRpc, WsGitPreparePullRequestThreadRpc, WsGitResolvePullRequestRpc, WsGitRunStackedActionRpc, WsOrchestrationDispatchCommandRpc, WsOrchestrationGetArchivedShellSnapshotRpc, WsOrchestrationGetFullThreadDiffRpc, WsOrchestrationGetTurnDiffRpc, WsOrchestrationSubscribeShellRpc, WsOrchestrationSubscribeThreadRpc, WsPreviewAutomationConnectRpc, WsPreviewAutomationFocusHostRpc, WsPreviewAutomationRespondRpc, WsPreviewCloseRpc, WsPreviewListRpc, WsPreviewNavigateRpc, WsPreviewOpenRpc, WsPreviewRefreshRpc, WsPreviewReportStatusRpc, WsPreviewResizeRpc, WsProjectsListEntriesRpc, WsProjectsReadFileRpc, WsProjectsSearchEntriesRpc, WsProjectsWriteFileRpc, WsReviewGetDiffPreviewRpc, WsRpcGroup, WsServerDiscoverSourceControlRpc, WsServerGetBackgroundPolicyRpc, WsServerGetConfigRpc, WsServerGetProcessDiagnosticsRpc, WsServerGetProcessResourceHistoryRpc, WsServerGetResourceTelemetryHistoryRpc, WsServerGetSettingsRpc, WsServerGetTraceDiagnosticsRpc, WsServerProbeRpc, WsServerRefreshProvidersRpc, WsServerRemoveKeybindingRpc, WsServerReportClientActivityRpc, WsServerReportHostPowerStateRpc, WsServerRetryResourceTelemetryRpc, WsServerSignalProcessRpc, WsServerUpdateProviderRpc, WsServerUpdateServerRpc, WsServerUpdateSettingsRpc, WsServerUpsertKeybindingRpc, WsShellOpenInEditorRpc, WsSourceControlCloneRepositoryRpc, WsSourceControlLookupRepositoryRpc, WsSourceControlPublishRepositoryRpc, WsSubscribeAuthAccessRpc, WsSubscribeBackgroundPolicyRpc, WsSubscribeDiscoveredLocalServersRpc, WsSubscribePreviewEventsRpc, WsSubscribeResourceTelemetryRpc, WsSubscribeServerConfigRpc, WsSubscribeServerLifecycleRpc, WsSubscribeTerminalEventsRpc, WsSubscribeTerminalMetadataRpc, WsSubscribeVcsStatusRpc, WsTerminalAttachRpc, WsTerminalClearRpc, WsTerminalCloseRpc, WsTerminalOpenRpc, WsTerminalResizeRpc, WsTerminalRestartRpc, WsTerminalWriteRpc, WsVcsCreateRefRpc, WsVcsCreateWorktreeRpc, WsVcsInitRpc, WsVcsListRefsRpc, WsVcsPullRpc, WsVcsRefreshStatusRpc, WsVcsRemoveWorktreeRpc, WsVcsSwitchRefRpc, defaultInstanceIdForDriver, isExternalLauncherError, isProviderAvailable, isProviderDriverKind, isToolLifecycleItemType, makeProviderSettingsSchema };
|
package/dist/t3tools.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $a as ServerConfigStreamSettingsUpdatedEvent, $c as TerminalEvent, $d as AdvertisedEndpointProvider, $f as OrchestrationCheckpointFile, $h as HostPowerSource, $i as VcsStatusResult, $l as DesktopSshEnvironmentTargetSchema, $m as ScopedThreadSessionRef, $n as ResourceMonitorCommand, $o as BackgroundActivityProfileSelection, $p as ProviderSessionRuntimeStatus, $r as FilesystemBrowseFailure, $s as ExternalLauncherUnsupportedEditorError, $t as WsServerGetSettingsRpc, $u as PreviewAutomationPressInput, Aa as VcsListRemotesResult, Ac as ThreadTokenUsageSnapshot, Ad as PREVIEW_VIEWPORT_PRESET_IDS, Af as EnvironmentInternalError, Ag as TrimmedNonEmptyString, Ah as AuthRelayWriteScope, Ai as GitPreparePullRequestThreadResult, Al as DesktopPreviewNavStatusSchema, Am as DEFAULT_TEXT_GENERATION_MODEL, An as WsTerminalResizeRpc, Ao as ServerProviderUpdatedPayload, Ap as OrchestrationSubscribeThreadInput, Ar as ReviewDiffPreviewInput, As as OpenCodeSettings, At as WsOrchestrationSubscribeThreadRpc, Au as PREVIEW_AUTOMATION_V1_OPERATIONS, Ba as VcsProcessTimeoutError, Bc as ProviderSessionStartInput, Bd as PreviewRefreshInput, Bf as EnvironmentScopeRequiredError, Bh as EnvironmentAuthorizationError, Bi as VcsCreateRefResult, Bl as DesktopPreviewTabInputSchema, Bm as ProviderOptionSelectionValue, Bn as WsVcsSwitchRefRpc, Bo as ServerSignalProcessResult, Bp as ProjectCreateCommand, Br as AssetProjectFaviconNotFoundError, Bs as SourceControlWritingStyleMode, Bt as WsPreviewResizeRpc, Bu as PreviewAutomationError, Ca as SourceControlRepositoryVisibility, Cc as CanonicalRequestType, Cd as PreviewUrlResolution, Cf as EnvironmentHttpApi, Cg as ProviderItemId, Ch as AuthEnvironmentScope, Ci as GitActionProgressKind, Cl as DesktopPreviewAutomationEvaluateInputSchema, Cm as ThreadUnarchivedPayload, Cn as WsSubscribeTerminalEventsRpc, Co as ServerProviderSlashCommand, Cp as OrchestrationRpcSchemas, Cr as ResourceTelemetryProcessIdentity, Cs as MAX_GLASS_OPACITY, Ct as WsGitResolvePullRequestRpc, Cu as PreviewAnnotationRectSchema, Da as VcsError, Dc as ProviderRuntimeTurnStatus, Dd as PREVIEW_VIEWPORT_MAX_AREA, Df as EnvironmentHttpForbiddenError, Dg as RuntimeSessionId, Dh as AuthPairingCredentialResult, Di as GitManagerError, Dl as DesktopPreviewAutomationWaitForInputSchema, Dm as BooleanProviderOptionDescriptor, Dn as WsTerminalClearRpc, Do as ServerProviderUpdateInput, Dp as OrchestrationShellStreamEvent, Dr as ResourceTelemetrySourceHealth, Ds as MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Dt as WsOrchestrationGetFullThreadDiffRpc, Du as PreviewAnnotationStyleChangeSchema, Ea as VcsDriverKind, Ec as ProviderRuntimeEventV2, Ed as FILL_PREVIEW_VIEWPORT, Ef as EnvironmentHttpConflictError, Eg as RuntimeRequestId, Eh as AuthOrchestrationReadScope, Ei as GitCommandError, El as DesktopPreviewAutomationTypeInputSchema, Em as TurnCountRange, En as WsTerminalAttachRpc, Eo as ServerProviderUpdateError, Ep as OrchestrationShellSnapshot, Er as ResourceTelemetrySnapshot, Es as MIN_GLASS_OPACITY, Et as WsOrchestrationGetArchivedShellSnapshotRpc, Eu as PreviewAnnotationStrokeTargetSchema, Fa as VcsProcessMissingExitCodeError, Fc as ProviderInterruptTurnInput, Fd as PreviewListInput, Ff as EnvironmentOrchestrationHttpApi, Fh as AuthStandardClientScopes, Fi as GitRunStackedActionResult, Fl as DesktopPreviewRecordingSaveInputSchema, Fm as PROVIDER_DISPLAY_NAMES, Fn as WsVcsInitRpc, Fo as ServerRemoveKeybindingResult, Fp as OrchestrationThreadShell, Fr as AssetAttachmentNotFoundError, Fs as SidebarAutoSettleAfterDays, Ft as WsPreviewListRpc, Fu as PreviewAutomationColorScheme, Ga as ServerConfig, Gc as TerminalAttachStreamEvent, Gd as PreviewSessionSnapshot, Gf as CorrelationId, Gh as BackgroundBooleanState, Gi as VcsListRefsResult, Gl as DesktopServerExposureModeSchema, Gm as ExecutionEnvironmentDescriptor, Gn as DesktopHostTelemetrySnapshot, Go as ServerTraceDiagnosticsResult, Gp as ProjectScriptIcon, Gr as AssetWorkspaceAssetNotFoundError, Gs as EDITORS, Gt as WsReviewGetDiffPreviewRpc, Gu as PreviewAutomationHostIdentity, Ha as VcsRepositoryDetectionError, Hc as ProviderTurnStartResult, Hd as PreviewReportStatusInput, Hf as ChatAttachment, Hh as ServerAuthDescriptor, Hi as VcsCreateWorktreeResult, Hl as DesktopPreviewWebviewConfigSchema, Hm as SelectProviderOptionDescriptor, Hn as DesktopElectronProcessType, Ho as ServerTraceDiagnosticsFailureSummary, Hp as ProjectDeletedPayload, Hr as AssetResource, Hs as ThreadEnvMode, Ht as WsProjectsReadFileRpc, Hu as PreviewAutomationExecutionError, Ia as VcsProcessOutputLimitError, Ic as ProviderRespondToRequestInput, Id as PreviewListResult, If as EnvironmentRequestInvalidError, Ih as AuthTerminalOperateScope, Ii as GitRunStackedActionToastRunAction, Il as DesktopPreviewRegisterWebviewInputSchema, Im as ProviderOptionChoice, In as WsVcsListRefsRpc, Io as ServerSelfUpdateError, Ip as OrchestrationThreadStreamItem, Ir as AssetCreateUrlInput, Is as SidebarProjectGroupingMode, It as WsPreviewNavigateRpc, Iu as PreviewAutomationConnectionId, Ja as ServerConfigProviderStatusesPayload, Jc as TerminalCwdError, Jd as PreviewViewportSetting, Jf as DispatchResult, Jh as ClientActivityClientId, Ji as VcsRef, Jl as DesktopSshBearerRequestInputSchema, Jm as ExecutionEnvironmentPlatformOs, Jn as DesktopTelemetrySetHostPowerIntervals, Jo as ServerUpsertKeybindingInput, Jp as ProviderApprovalDecision, Jr as AssetWorkspacePathValidationError, Js as ExternalLauncherBrowserSpawnError, Jt as WsServerGetBackgroundPolicyRpc, Ju as PreviewAutomationNavigateInput, Ka as ServerConfigIssue, Kc as TerminalClearInput, Kd as PreviewTabId, Kf as DEFAULT_PROVIDER_INTERACTION_MODE, Kh as BackgroundPolicySnapshot, Ki as VcsPullInput, Kl as DesktopServerExposureStateSchema, Km as ExecutionEnvironmentPlatform, Kn as DesktopTelemetryControlMessage, Ko as ServerTraceDiagnosticsSpanOccurrence, Kp as ProjectionPendingApprovalDecision, Kr as AssetWorkspaceContextNotFoundError, Ks as EditorId, Kt as WsRpcGroup, Ku as PreviewAutomationInvalidSelectorError, La as VcsProcessOutputReadError, Lc as ProviderRespondToUserInputInput, Ld as PreviewNavStatus, Lf as EnvironmentRequestInvalidReason, Lh as AuthTokenExchangeGrantType, Li as GitStackedAction, Ll as DesktopPreviewScreenshotArtifactSchema, Lm as ProviderOptionDescriptor, Ln as WsVcsPullRpc, Lo as ServerSelfUpdateInput, Lp as PROVIDER_SEND_TURN_MAX_ATTACHMENTS, Lr as AssetCreateUrlResult, Ls as SidebarProjectSortOrder, Lt as WsPreviewOpenRpc, Lu as PreviewAutomationConsoleEntry, Ma as VcsOutputDecodeError, Mc as UserInputQuestion, Md as PreviewError, Mf as EnvironmentMetadataHttpApi, Mg as TurnId, Mh as AuthRevokeClientSessionInput, Mi as GitPullRequestRefInput, Ml as DesktopPreviewPointerEventSchema, Mm as MODEL_SLUG_ALIASES_BY_PROVIDER, Mn as WsTerminalWriteRpc, Mo as ServerProviderVersionAdvisoryStatus, Mp as OrchestrationThreadActivity, Mr as ReviewDiffPreviewSource, Ms as ServerSettingsError, Mt as WsPreviewAutomationFocusHostRpc, Mu as PreviewAutomationClickInput, Na as VcsProcessExitError, Nc as isToolLifecycleItemType, Nd as PreviewEvent, Nf as EnvironmentOperationForbiddenError, Nh as AuthRevokePairingLinkInput, Ni as GitResolvePullRequestResult, Nl as DesktopPreviewRecordingArtifactSchema, Nm as ModelCapabilities, Nn as WsVcsCreateRefRpc, No as ServerProviders, Np as OrchestrationThreadActivityTone, Nr as ReviewDiffPreviewSourceKind, Ns as ServerSettingsOperation, Nt as WsPreviewAutomationRespondRpc, Nu as PreviewAutomationClientDisconnectedError, Oa as VcsFreshness, Oc as RuntimeEventRaw, Od as PREVIEW_VIEWPORT_MAX_DIMENSION, Of as EnvironmentHttpInternalServerError, Og as RuntimeTaskId, Oh as AuthPairingLink, Oi as GitManagerServiceError, Ol as DesktopPreviewColorSchemeSchema, Om as DEFAULT_MODEL, On as WsTerminalCloseRpc, Oo as ServerProviderUpdateState, Op as OrchestrationShellStreamItem, Or as ResourceTelemetrySourceStatus, Os as MIN_SIDEBAR_THREAD_PREVIEW_COUNT, Ot as WsOrchestrationGetTurnDiffRpc, Ou as BrowserNavigationTarget, Pa as VcsProcessExitFailureKind, Pc as ProviderEvent, Pd as PreviewInvalidUrlError, Pf as EnvironmentOperationForbiddenReason, Ph as AuthSessionState, Pi as GitRunStackedActionInput, Pl as DesktopPreviewRecordingFrameSchema, Pm as PREFERRED_DEFAULT_CODEX_MODELS, Pn as WsVcsCreateWorktreeRpc, Po as ServerRemoveKeybindingInput, Pp as OrchestrationThreadDetailSnapshot, Pr as AssetAccessError, Ps as ServerSettingsPatch, Pt as WsPreviewCloseRpc, Pu as PreviewAutomationClientId, Qa as ServerConfigStreamProviderStatusesEvent, Qc as TerminalError, Qd as AdvertisedEndpointHostedHttpsCompatibility, Qf as OrchestrationAggregateKind, Qh as HostPowerSnapshot, Qi as VcsStatusRemoteResult, Ql as DesktopSshEnvironmentEnsureResultSchema, Qm as ScopedThreadRef, Qn as ResourceMonitorCapabilities, Qo as BackgroundActivityProfile, Qp as ProviderSandboxMode, Qr as FilesystemBrowseError, Qs as ExternalLauncherUnknownEditorError, Qt as WsServerGetResourceTelemetryHistoryRpc, Qu as PreviewAutomationOperation, Ra as VcsProcessSpawnError, Rc as ProviderSendTurnInput, Rd as PreviewNavigateInput, Rf as EnvironmentResourceNotFoundError, Rh as AuthTokenExchangeRequest, Ri as TextGenerationError, Rl as DesktopPreviewSetColorSchemeInputSchema, Rm as ProviderOptionDescriptorType, Rn as WsVcsRefreshStatusRpc, Ro as ServerSelfUpdateResult, Rp as PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, Rr as AssetPreviewTypeValidationError, Rs as SidebarThreadPreviewCount, Rt as WsPreviewRefreshRpc, Ru as PreviewAutomationControlInterruptedError, Sa as SourceControlRepositoryLookupInput, Sc as CanonicalItemType, Sd as PreviewAutomationWaitForInput, Sf as EnvironmentConnectHttpApi, Sg as ProjectId, Sh as AuthEnvironmentBootstrapTokenType, Si as GitActionProgressEvent, Sl as DesktopPreviewAutomationClickInputSchema, Sm as ThreadTurnStartRequestedPayload, Sn as WsSubscribeServerLifecycleRpc, So as ServerProviderSkill, Sp as OrchestrationReadModel, Sr as ResourceTelemetryProcessCategory, Ss as GrokSettings, St as WsGitPreparePullRequestThreadRpc, Su as PreviewAnnotationPointSchema, Ta as VcsDriverCapabilities, Tc as ProviderRuntimeEvent, Td as DiscoveredLocalServerList, Tf as EnvironmentHttpCommonError, Tg as RuntimeItemId, Th as AuthOrchestrationOperateScope, Ti as GitActionProgressStream, Tl as DesktopPreviewAutomationScrollInputSchema, Tm as ThreadUnsnoozedPayload, Tn as WsSubscribeVcsStatusRpc, To as ServerProviderState, Tp as OrchestrationSessionStatus, Tr as ResourceTelemetryRetryResult, Ts as MAX_SIDEBAR_THREAD_PREVIEW_COUNT, Tt as WsOrchestrationDispatchCommandRpc, Tu as PreviewAnnotationScreenshotSchema, Ua as VcsRepositoryIdentity, Uc as DEFAULT_TERMINAL_ID, Ud as PreviewResizeInput, Uf as ChatImageAttachment, Uh as ServerAuthPolicy, Ui as VcsInitInput, Ul as DesktopRuntimeArchSchema, Um as EnvironmentConnectionState, Un as DesktopHostTelemetryHello, Uo as ServerTraceDiagnosticsLogEvent, Up as ProjectMetaUpdatedPayload, Ur as AssetSigningKeyLoadError, Us as TimestampFormat, Ut as WsProjectsSearchEntriesRpc, Uu as PreviewAutomationHost, Va as VcsRemote, Vc as ProviderStopSessionInput, Vd as PreviewRenderedViewportSize, Vf as AssistantDeliveryMode, Vh as ServerAuthBootstrapMethod, Vi as VcsCreateWorktreeInput, Vl as DesktopPreviewTabStateSchema, Vm as ProviderOptionSelections, Vn as DesktopElectronProcessMetric, Vo as ServerTraceDiagnosticsErrorKind, Vp as ProjectCreatedPayload, Vr as AssetProjectFaviconResolutionError, Vs as SourceControlWritingStyleSettings, Vt as WsProjectsListEntriesRpc, Vu as PreviewAutomationEvaluateInput, Wa as VcsUnsupportedOperationError, Wc as TerminalAttachInput, Wd as PreviewSessionLookupError, Wf as ClientOrchestrationCommand, Wh as ServerAuthSessionMethod, Wi as VcsListRefsInput, Wl as DesktopRuntimeInfoSchema, Wm as ExecutionEnvironmentCapabilities, Wn as DesktopHostTelemetryMessage, Wo as ServerTraceDiagnosticsRecentFailure, Wp as ProjectScript, Wr as AssetWorkspaceAssetInspectionError, Ws as makeProviderSettingsSchema, Wt as WsProjectsWriteFileRpc, Wu as PreviewAutomationHostFocus, Xa as ServerConfigStreamEvent, Xc as TerminalCwdNotFoundError, Xd as AdvertisedEndpoint, Xf as ORCHESTRATION_WS_METHODS, Xh as ClientActivityReportInput, Xi as VcsStatusInput, Xl as DesktopSshEnvironmentEnsureInputSchema, Xm as RepositoryIdentityLocator, Xn as ResourceAttributionEntry, Xo as isProviderAvailable, Xp as ProviderInteractionMode, Xr as AssetWorkspaceRootNormalizationError, Xs as ExternalLauncherEditorSpawnError, Xt as WsServerGetProcessDiagnosticsRpc, Xu as PreviewAutomationNoAvailableHostError, Ya as ServerConfigSettingsUpdatedPayload, Yc as TerminalCwdNotDirectoryError, Yd as PreviewViewportSize, Yf as ModelSelection, Yh as ClientActivityLease, Yi as VcsRemoveWorktreeInput, Yl as DesktopSshEnvironmentBootstrapSchema, Ym as RepositoryIdentity, Yn as RESOURCE_MONITOR_PROTOCOL_VERSION, Yo as ServerUpsertKeybindingResult, Yp as ProviderApprovalPolicy, Yr as AssetWorkspaceResolutionError, Ys as ExternalLauncherCommandNotFoundError, Yt as WsServerGetConfigRpc, Yu as PreviewAutomationNetworkEntry, Za as ServerConfigStreamKeybindingsUpdatedEvent, Zc as TerminalCwdStatError, Zd as AdvertisedEndpointCompatibility, Zf as OrchestrationActorKind, Zh as ClientKind, Zi as VcsStatusLocalResult, Zl as DesktopSshEnvironmentEnsureOptionsSchema, Zm as ScopedProjectRef, Zn as ResourceAttributionSnapshot, Zo as BackgroundActivityOverrides, Zp as ProviderRequestKind, Zr as FilesystemBrowseEntry, Zs as ExternalLauncherError, Zt as WsServerGetProcessResourceHistoryRpc, Zu as PreviewAutomationOpenInput, _a as SourceControlPublishRepositoryResult, _c as ResolvedKeybindingRule, _d as PreviewAutomationTargetNotEditableError, _f as EnvironmentAuthenticatedPrincipal, _g as IsoDateTime, _h as AuthClientMetadata, _i as ProjectWriteFileResult, _l as DesktopDiscoveredSshHostSchema, _m as ThreadSnoozedPayload, _n as WsSubscribeBackgroundPolicyRpc, _o as ServerProviderAuth, _p as OrchestrationMessageRole, _r as ResourceTelemetryHistory, _s as DEFAULT_SIDEBAR_THREAD_SORT_ORDER, _t as WS_METHODS, _u as PickFolderOptionsSchema, aa as SourceControlCloneProtocol, ac as KeybindingValue, ad as PreviewAutomationResizeInput, af as RelayClientInstallFailedError, ag as ProviderInstanceEnvironmentVariable, ah as AuthAccessStreamClientUpsertedEvent, ai as ProjectFileOperation, al as TerminalResizeInput, am as ThreadCheckpointRevertRequestedPayload, an as WsServerReportHostPowerStateRpc, ao as ServerLifecycleStreamWelcomeEvent, ap as OrchestrationEvent, ar as ResourceMonitorHistoryChunkEvent, as as CursorSettings, au as DesktopSshPasswordPromptResolutionInputSchema, ba as SourceControlRepositoryError, bc as THREAD_JUMP_KEYBINDING_COMMANDS, bd as PreviewAutomationUnavailableError, bf as EnvironmentCloudPreferencesRequest, bg as PortSchema, bh as AuthClientSession, bi as T3_PROJECT_FILE_NAME, bl as DesktopPreviewAnnotationThemeSchema, bm as ThreadTurnInterruptRequestedPayload, bn as WsSubscribeResourceTelemetryRpc, bo as ServerProviderContinuation, bp as OrchestrationProposedPlan, br as ResourceTelemetryIoSemantics, bs as EnvironmentIdentificationMode, bt as WsCloudInstallRelayClientRpc, bu as PreviewAnnotationElementTargetSchema, ca as SourceControlDiscoveryResult, cc as KeybindingsConfig, cd as PreviewAutomationResultTooLargeError, cf as RelayClientInstallProgressStageSchema, cg as ProviderInstanceRef, ch as AuthAccessStreamPairingLinkRemovedEvent, ci as ProjectListEntriesResult, cl as TerminalSessionSnapshot, cm as ThreadInteractionModeSetPayload, cn as WsServerUpdateProviderRpc, co as ServerProcessDiagnosticsEntry, cp as OrchestrationGetFullThreadDiffError, cr as ResourceMonitorSampleNowCommand, cs as DEFAULT_CLIENT_SETTINGS, cu as DesktopUpdateChannelSchema, da as SourceControlProviderAuthStatus, dc as MAX_KEYBINDING_VALUE_LENGTH, dd as PreviewAutomationSetColorSchemeResult, df as AuthOtherClientSessionsRevokeResult, dg as ApprovalRequestId, dh as AuthAccessTokenResult, di as ProjectReadFileResult, dl as TerminalThreadInput, dm as ThreadProposedPlanUpsertedPayload, dn as WsServerUpsertKeybindingRpc, do as ServerProcessResourceHistoryFailureTag, dp as OrchestrationGetSnapshotError, dr as ResourceMonitorSetStreamingCommand, ds as DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, du as DesktopUpdateStateSchema, ea as VcsStatusStreamEvent, ec as LaunchEditorInput, ed as PreviewAutomationRecordingArtifact, ef as AdvertisedEndpointProviderKind, eg as HostPowerThermalState, eh as ServerSelfUpdateCapability, ei as FilesystemBrowseInput, el as TerminalHistoryError, em as ProviderUserInputAnswers, en as WsServerGetTraceDiagnosticsRpc, eo as ServerConfigStreamSnapshotEvent, ep as OrchestrationCheckpointStatus, er as ResourceMonitorConfigureCommand, es as BackgroundActivitySettings, eu as DesktopSshHostSourceSchema, fa as SourceControlProviderDiscoveryItem, fc as MAX_KEYBINDING_WHEN_LENGTH, fd as PreviewAutomationSnapshot, ff as AuthPairingLinkRevokeResult, fg as AuthSessionId, fh as AuthAccessTokenType, fi as ProjectSearchEntriesError, fl as TerminalWriteError, fm as ThreadRevertedPayload, fn as WsShellOpenInEditorRpc, fo as ServerProcessResourceHistoryInput, fp as OrchestrationGetTurnDiffError, fr as ResourceMonitorShutdownCommand, fs as DEFAULT_SERVER_SETTINGS, fu as DesktopUpdateStatusSchema, ga as SourceControlPublishRepositoryInput, gc as MODEL_PICKER_KEYBINDING_COMMANDS, gd as PreviewAutomationTabTargetInput, gf as EnvironmentAuthenticatedAuth, gg as EventId, gh as AuthBrowserSessionResult, gi as ProjectWriteFileInput, gl as DesktopAppStageLabelSchema, gm as ThreadSettledPayload, gn as WsSubscribeAuthAccessRpc, go as ServerProvider, gp as OrchestrationMessage, gr as ResourceTelemetryHealth, gs as DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, gu as PersistedSavedEnvironmentRecordSchema, ha as SourceControlProviderKind, hc as MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, hd as PreviewAutomationTabNotFoundError, hf as EnvironmentAuthInvalidReason, hg as EnvironmentId, hh as AuthBrowserSessionRequest, hi as ProjectWriteFileError, hl as DesktopAppBrandingSchema, hm as ThreadSessionStopRequestedPayload, hn as WsSourceControlPublishRepositoryRpc, ho as ServerProcessSignal, hp as OrchestrationLatestTurn, hr as ResourceTelemetryGroups, hs as DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, hu as PRIMARY_LOCAL_ENVIRONMENT_ID, ia as ChangeRequestState, ic as KeybindingShortcut, id as PreviewAutomationRequestQueueClosedError, if as DesktopBackendBootstrap, ig as ProviderInstanceEnvironment, ih as AuthAccessStreamClientRemovedEvent, ii as ProjectFileFailure, il as TerminalResizeError, im as ThreadArchivedPayload, in as WsServerReportClientActivityRpc, io as ServerLifecycleStreamReadyEvent, ip as OrchestrationDispatchCommandError, ir as ResourceMonitorHelloEvent, is as CodexSettings, iu as DesktopSshPasswordPromptRequestSchema, ja as VcsListWorkspaceFilesResult, jc as ToolLifecycleItemType, jd as PreviewCloseInput, jf as EnvironmentInternalErrorReason, jg as TrimmedString, jh as AuthReviewWriteScope, ji as GitPullRequestMaterializationError, jl as DesktopPreviewNavigateInputSchema, jm as DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, jn as WsTerminalRestartRpc, jo as ServerProviderVersionAdvisory, jp as OrchestrationThread, jr as ReviewDiffPreviewResult, js as ServerSettings, jt as WsPreviewAutomationConnectRpc, ju as PreviewAutomationActionEvent, ka as VcsFreshnessSource, kc as TOOL_LIFECYCLE_ITEM_TYPES, kd as PREVIEW_VIEWPORT_MIN_DIMENSION, kf as EnvironmentHttpUnauthorizedError, kg as ThreadId, kh as AuthRelayReadScope, ki as GitPreparePullRequestThreadInput, kl as DesktopPreviewConfigInputSchema, km as DEFAULT_MODEL_BY_PROVIDER, kn as WsTerminalOpenRpc, ko as ServerProviderUpdateStatus, kp as OrchestrationSubscribeShellInput, kr as ReviewDiffPreviewError, ks as ObservabilitySettings, kt as WsOrchestrationSubscribeShellRpc, ku as PREVIEW_AUTOMATION_OPERATIONS, la as SourceControlDiscoveryStatus, lc as KeybindingsConfigError, ld as PreviewAutomationScrollInput, lf as RelayClientStatusSchema, lg as defaultInstanceIdForDriver, lh as AuthAccessStreamPairingLinkUpsertedEvent, li as ProjectReadFileError, ll as TerminalSessionStatus, lm as ThreadMessageSentPayload, ln as WsServerUpdateServerRpc, lo as ServerProcessDiagnosticsResult, lp as OrchestrationGetFullThreadDiffInput, lr as ResourceMonitorSetExternalProcessesCommand, ls as DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, lu as DesktopUpdateCheckResultSchema, ma as SourceControlProviderInfo, mc as MAX_WHEN_EXPRESSION_DEPTH, md as PreviewAutomationStreamEvent, mf as EnvironmentAuthInvalidError, mg as CommandId, mh as AuthAdministrativeScopes, mi as ProjectSearchEntriesResult, ml as ContextMenuItemSchema, mm as ThreadSessionSetPayload, mn as WsSourceControlLookupRepositoryRpc, mo as ServerProcessResourceHistorySummary, mp as OrchestrationGetTurnDiffResult, mr as ResourceTelemetryAggregate, ms as DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, mu as DesktopWslStateSchema, na as VcsSwitchRefResult, nc as KeybindingCommand, nd as PreviewAutomationRemoteUnavailableError, nf as AdvertisedEndpointSource, ng as ProviderInstanceConfig, nh as AuthAccessReadScope, ni as ProjectEntriesFailure, nl as TerminalNotRunningError, nm as ThreadActivityAppendedPayload, nn as WsServerRefreshProvidersRpc, no as ServerLifecycleReadyPayload, np as OrchestrationCommand, nr as ResourceMonitorEvent, ns as ClientSettingsPatch, nu as DesktopSshPasswordPromptCancelledResultSchema, oa as SourceControlCloneRepositoryInput, oc as KeybindingWhen, od as PreviewAutomationResizeResult, of as RelayClientInstallFailureReasonSchema, og as ProviderInstanceEnvironmentVariableName, oh as AuthAccessStreamError, oi as ProjectListEntriesError, ol as TerminalRestartInput, om as ThreadCreatedPayload, on as WsServerRetryResourceTelemetryRpc, oo as ServerLifecycleWelcomePayload, op as OrchestrationEventMetadata, or as ResourceMonitorProcessSample, os as DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, ou as DesktopThemeSchema, pa as SourceControlProviderError, pc as MAX_SCRIPT_ID_LENGTH, pd as PreviewAutomationStatus, pf as EnvironmentAuthHttpApi, pg as CheckpointRef, ph as AuthAccessWriteScope, pi as ProjectSearchEntriesInput, pl as TerminalWriteInput, pm as ThreadRuntimeModeSetPayload, pn as WsSourceControlCloneRepositoryRpc, po as ServerProcessResourceHistoryResult, pp as OrchestrationGetTurnDiffInput, pr as ResourceMonitorSnapshotEvent, ps as DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, pu as DesktopWslDistroSchema, qa as ServerConfigKeybindingsUpdatedPayload, qc as TerminalCloseInput, qd as PreviewViewportPresetId, qf as DEFAULT_RUNTIME_MODE, qh as BackgroundScope, qi as VcsPullResult, ql as DesktopSshBearerBootstrapInputSchema, qm as ExecutionEnvironmentPlatformArch, qn as DesktopTelemetrySetDiagnosticsDemand, qo as ServerTraceDiagnosticsSpanSummary, qp as ProjectionPendingApprovalStatus, qr as AssetWorkspaceContextResolutionError, qs as EditorLaunchStyle, qt as WsServerDiscoverSourceControlRpc, qu as PreviewAutomationMalformedResponseError, ra as ChangeRequest, rc as KeybindingRule, rd as PreviewAutomationRequest, rf as AdvertisedEndpointStatus, rg as ProviderInstanceConfigMap, rh as AuthAccessSnapshot, ri as ProjectEntry, rl as TerminalOpenInput, rm as ThreadApprovalResponseRequestedPayload, rn as WsServerRemoveKeybindingRpc, ro as ServerLifecycleStreamEvent, rp as OrchestrationCommandReceiptStatus, rr as ResourceMonitorExternalProcess, rs as ClientSettingsSchema, ru as DesktopSshPasswordPromptCancelledType, sa as SourceControlCloneRepositoryResult, sc as KeybindingWhenNode, sd as PreviewAutomationResponse, sf as RelayClientInstallProgressEventSchema, sg as ProviderInstanceId, sh as AuthAccessStreamEvent, si as ProjectListEntriesInput, sl as TerminalSessionLookupError, sm as ThreadDeletedPayload, sn as WsServerSignalProcessRpc, so as ServerObservability, sp as OrchestrationEventType, sr as ResourceMonitorReadHistoryCommand, ss as DEFAULT_BACKGROUND_ACTIVITY_PROFILE, su as DesktopUpdateActionResultSchema, ta as VcsSwitchRefInput, tc as isExternalLauncherError, td as PreviewAutomationRecordingStatus, tf as AdvertisedEndpointReachability, tg as ProviderDriverKind, th as ServerSelfUpdateMethod, ti as FilesystemBrowseResult, tl as TerminalMetadataStreamEvent, tm as RuntimeMode, tn as WsServerProbeRpc, to as ServerConfigUpdatedPayload, tp as OrchestrationCheckpointSummary, tr as ResourceMonitorErrorEvent, ts as ClaudeSettings, tu as DesktopSshHttpBaseUrlInputSchema, ua as SourceControlProviderAuth, uc as MAX_KEYBINDINGS_COUNT, ud as PreviewAutomationSetColorSchemeInput, uf as AuthClientSessionRevokeResult, ug as isProviderDriverKind, uh as AuthAccessStreamSnapshotEvent, ui as ProjectReadFileInput, ul as TerminalSummary, um as ThreadMetaUpdatedPayload, un as WsServerUpdateSettingsRpc, uo as ServerProcessResourceHistoryBucket, up as OrchestrationGetFullThreadDiffResult, ur as ResourceMonitorSetSampleIntervalCommand, us as DEFAULT_GLASS_OPACITY, uu as DesktopUpdateReleaseNoteSchema, va as SourceControlPublishStatus, vc as ResolvedKeybindingsConfig, vd as PreviewAutomationTimeoutError, vf as EnvironmentCloudEndpointUnavailableError, vg as MessageId, vh as AuthClientMetadataDeviceType, vi as T3ProjectFile, vl as DesktopEnvironmentBootstrapSchema, vm as ThreadTurnDiff, vn as WsSubscribeDiscoveredLocalServersRpc, vo as ServerProviderAuthStatus, vp as OrchestrationProject, vr as ResourceTelemetryHistoryBucket, vs as DEFAULT_TIMESTAMP_FORMAT, vt as WsAssetsCreateUrlRpc, vu as PickedElementPayloadSchema, wa as VcsDiscoveryItem, wc as ItemLifecyclePayload, wd as DiscoveredLocalServer, wf as EnvironmentHttpBadRequestError, wg as RpcClientId, wh as AuthEnvironmentScopes, wi as GitActionProgressPhase, wl as DesktopPreviewAutomationPressInputSchema, wm as ThreadUnsettledPayload, wn as WsSubscribeTerminalMetadataRpc, wo as ServerProviderSlashCommandInput, wp as OrchestrationSession, wr as ResourceTelemetryProcessSummary, ws as MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, wt as WsGitRunStackedActionRpc, wu as PreviewAnnotationRegionTargetSchema, xa as SourceControlRepositoryInfo, xc as THREAD_KEYBINDING_COMMANDS, xd as PreviewAutomationUnsupportedClientError, xf as EnvironmentCloudRelayConfigResult, xg as PositiveInt, xh as AuthCreatePairingCredentialInput, xi as T3_PROJECT_FILE_SCHEMA_URL, xl as DesktopPreviewArtifactInputSchema, xm as ThreadTurnStartCommand, xn as WsSubscribeServerConfigRpc, xo as ServerProviderModel, xp as OrchestrationProposedPlanId, xr as ResourceTelemetryProcess, xs as GlassOpacity, xt as WsFilesystemBrowseRpc, xu as PreviewAnnotationPayloadSchema, ya as SourceControlRepositoryCloneUrls, yc as SCRIPT_RUN_COMMAND_PATTERN, yd as PreviewAutomationTypeInput, yf as EnvironmentCloudLinkStateResult, yg as NonNegativeInt, yh as AuthClientPresentationMetadata, yi as T3ProjectFileScript, yl as DesktopPreviewAnnotationThemeInputSchema, ym as ThreadTurnDiffCompletedPayload, yn as WsSubscribePreviewEventsRpc, yo as ServerProviderAvailability, yp as OrchestrationProjectShell, yr as ResourceTelemetryHistoryInput, ys as DEFAULT_UNIFIED_SETTINGS, yt as WsCloudGetRelayClientStatusRpc, yu as PickedElementStackFrameSchema, za as VcsProcessStdinWriteError, zc as ProviderSession, zd as PreviewOpenInput, zf as EnvironmentResourceNotFoundReason, zh as AuthWebSocketTicketResult, zi as VcsCreateRefInput, zl as DesktopPreviewTabIdSchema, zm as ProviderOptionSelection, zn as WsVcsRemoveWorktreeRpc, zo as ServerSignalProcessInput, zp as PROVIDER_SEND_TURN_MAX_INPUT_CHARS, zr as AssetProjectFaviconInspectionError, zs as SidebarThreadSortOrder, zt as WsPreviewReportStatusRpc, zu as PreviewAutomationElement } from "./shared.js";
|
|
1
|
+
import { $S as PortSchema, $_ as PreviewListInput, $b as ThreadTurnInterruptRequestedPayload, $c as WsVcsInitRpc, $d as VcsProcessMissingExitCodeError, $f as ServerRemoveKeybindingResult, $g as PreviewAutomationColorScheme, $h as DesktopPreviewRecordingSaveInputSchema, $l as AssetAttachmentNotFoundError, $m as ProviderInterruptTurnInput, $p as SidebarAutoSettleAfterDays, $s as WsPreviewListRpc, $u as GitRunStackedActionResult, $v as EnvironmentConnectHttpApi, $x as AuthClientSession, $y as OrchestrationProposedPlan, AS as ClientKind, A_ as PreviewAutomationSnapshot, Ab as ProviderRequestKind, Ac as WsShellOpenInEditorRpc, Ad as SourceControlProviderDiscoveryItem, Af as ServerProcessResourceHistoryInput, Ag as DesktopUpdateStatusSchema, Ah as TerminalWriteError, Al as ResourceMonitorShutdownCommand, Am as MAX_KEYBINDING_WHEN_LENGTH, Ap as DEFAULT_SERVER_SETTINGS, Au as ProjectSearchEntriesError, Av as AdvertisedEndpointProvider, Ax as ScopedProjectRef, Ay as OrchestrationActorKind, BS as ProviderInstanceId, B_ as PreviewAutomationWaitForInput, Bb as ThreadDeletedPayload, Bc as WsSubscribeServerLifecycleRpc, Bd as SourceControlRepositoryLookupInput, Bf as ServerProviderSkill, Bg as PreviewAnnotationPointSchema, Bh as DesktopPreviewAutomationClickInputSchema, Bl as ResourceTelemetryProcessCategory, Bm as CanonicalItemType, Bp as GrokSettings, Bs as WsGitPreparePullRequestThreadRpc, Bu as GitActionProgressEvent, Bv as RelayClientStatusSchema, Bx as AuthAccessStreamEvent, By as OrchestrationEventType, CS as ServerAuthSessionMethod, C_ as PreviewAutomationResizeInput, Cb as ProjectScript, Cc as WsServerReportHostPowerStateRpc, Cd as SourceControlCloneProtocol, Cf as ServerLifecycleStreamWelcomeEvent, Cg as DesktopSshPasswordPromptResolutionInputSchema, Ch as TerminalResizeInput, Cl as ResourceMonitorHistoryChunkEvent, Cm as KeybindingValue, Cp as CursorSettings, Cu as ProjectFileOperation, Cx as ExecutionEnvironmentCapabilities, Cy as ClientOrchestrationCommand, DS as ClientActivityClientId, D_ as PreviewAutomationScrollInput, Db as ProviderApprovalDecision, Dc as WsServerUpdateServerRpc, Dd as SourceControlDiscoveryStatus, Df as ServerProcessDiagnosticsResult, Dg as DesktopUpdateCheckResultSchema, Dh as TerminalSessionStatus, Dl as ResourceMonitorSetExternalProcessesCommand, Dm as KeybindingsConfigError, Dp as DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, Du as ProjectReadFileError, Dv as AdvertisedEndpoint, Dx as ExecutionEnvironmentPlatformOs, Dy as DispatchResult, ES as BackgroundScope, E_ as PreviewAutomationResultTooLargeError, Eb as ProjectionPendingApprovalStatus, Ec as WsServerUpdateProviderRpc, Ed as SourceControlDiscoveryResult, Ef as ServerProcessDiagnosticsEntry, Eg as DesktopUpdateChannelSchema, Eh as TerminalSessionSnapshot, El as ResourceMonitorSampleNowCommand, Em as KeybindingsConfig, Ep as DEFAULT_CLIENT_SETTINGS, Eu as ProjectListEntriesResult, Ex as ExecutionEnvironmentPlatformArch, Ey as DEFAULT_RUNTIME_MODE, FS as ProviderInstanceConfig, F_ as PreviewAutomationTargetNotEditableError, Fb as ThreadActivityAppendedPayload, Fc as WsSubscribeBackgroundPolicyRpc, Fd as SourceControlPublishRepositoryResult, Ff as ServerProviderAuth, Fg as PickFolderOptionsSchema, Fh as DesktopDiscoveredSshHostSchema, Fl as ResourceTelemetryHistory, Fm as ResolvedKeybindingRule, Fp as DEFAULT_SIDEBAR_THREAD_SORT_ORDER, Fs as WS_METHODS, Fu as ProjectWriteFileResult, Fv as DesktopBackendBootstrap, Fx as AuthAccessReadScope, Fy as OrchestrationCommand, GS as AuthSessionId, G_ as PREVIEW_VIEWPORT_MAX_AREA, Gb as ThreadRevertedPayload, Gc as WsTerminalClearRpc, Gd as VcsError, Gf as ServerProviderUpdateInput, Gg as PreviewAnnotationStyleChangeSchema, Gh as DesktopPreviewAutomationWaitForInputSchema, Gl as ResourceTelemetrySourceHealth, Gm as ProviderRuntimeTurnStatus, Gp as MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Gs as WsOrchestrationGetFullThreadDiffRpc, Gu as GitManagerError, Gv as EnvironmentAuthInvalidError, Gx as AuthAccessTokenType, Gy as OrchestrationGetTurnDiffError, HS as defaultInstanceIdForDriver, H_ as DiscoveredLocalServer, Hb as ThreadMessageSentPayload, Hc as WsSubscribeTerminalMetadataRpc, Hd as VcsDiscoveryItem, Hf as ServerProviderSlashCommandInput, Hg as PreviewAnnotationRegionTargetSchema, Hh as DesktopPreviewAutomationPressInputSchema, Hl as ResourceTelemetryProcessSummary, Hm as ItemLifecyclePayload, Hp as MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Hs as WsGitRunStackedActionRpc, Hu as GitActionProgressPhase, Hv as AuthOtherClientSessionsRevokeResult, Hx as AuthAccessStreamPairingLinkUpsertedEvent, Hy as OrchestrationGetFullThreadDiffInput, IS as ProviderInstanceConfigMap, I_ as PreviewAutomationTimeoutError, Ib as ThreadApprovalResponseRequestedPayload, Ic as WsSubscribeDiscoveredLocalServersRpc, Id as SourceControlPublishStatus, If as ServerProviderAuthStatus, Ig as PickedElementPayloadSchema, Ih as DesktopEnvironmentBootstrapSchema, Il as ResourceTelemetryHistoryBucket, Im as ResolvedKeybindingsConfig, Ip as DEFAULT_TIMESTAMP_FORMAT, Is as WsAssetsCreateUrlRpc, Iu as T3ProjectFile, Iv as RelayClientInstallFailedError, Ix as AuthAccessSnapshot, Iy as OrchestrationCommandReceiptStatus, JS as EnvironmentId, J_ as PREVIEW_VIEWPORT_PRESET_IDS, Jb as ThreadSessionStopRequestedPayload, Jc as WsTerminalResizeRpc, Jd as VcsListRemotesResult, Jf as ServerProviderUpdatedPayload, Jg as PREVIEW_AUTOMATION_V1_OPERATIONS, Jh as DesktopPreviewNavStatusSchema, Jl as ReviewDiffPreviewInput, Jm as ThreadTokenUsageSnapshot, Jp as OpenCodeSettings, Js as WsOrchestrationSubscribeThreadRpc, Ju as GitPreparePullRequestThreadResult, Jv as EnvironmentAuthenticatedPrincipal, Jx as AuthBrowserSessionRequest, Jy as OrchestrationLatestTurn, KS as CheckpointRef, K_ as PREVIEW_VIEWPORT_MAX_DIMENSION, Kb as ThreadRuntimeModeSetPayload, Kc as WsTerminalCloseRpc, Kd as VcsFreshness, Kf as ServerProviderUpdateState, Kg as BrowserNavigationTarget, Kh as DesktopPreviewColorSchemeSchema, Kl as ResourceTelemetrySourceStatus, Km as RuntimeEventRaw, Kp as MIN_SIDEBAR_THREAD_PREVIEW_COUNT, Ks as WsOrchestrationGetTurnDiffRpc, Ku as GitManagerServiceError, Kv as EnvironmentAuthInvalidReason, Kx as AuthAccessWriteScope, Ky as OrchestrationGetTurnDiffInput, LS as ProviderInstanceEnvironment, L_ as PreviewAutomationTypeInput, Lb as ThreadArchivedPayload, Lc as WsSubscribePreviewEventsRpc, Ld as SourceControlRepositoryCloneUrls, Lf as ServerProviderAvailability, Lg as PickedElementStackFrameSchema, Lh as DesktopPreviewAnnotationThemeInputSchema, Ll as ResourceTelemetryHistoryInput, Lm as SCRIPT_RUN_COMMAND_PATTERN, Lp as DEFAULT_UNIFIED_SETTINGS, Ls as WsCloudGetRelayClientStatusRpc, Lu as T3ProjectFileScript, Lv as RelayClientInstallFailureReasonSchema, Lx as AuthAccessStreamClientRemovedEvent, Ly as OrchestrationDispatchCommandError, MS as HostPowerSource, M_ as PreviewAutomationStreamEvent, Mb as ProviderSessionRuntimeStatus, Mc as WsSourceControlLookupRepositoryRpc, Md as SourceControlProviderInfo, Mf as ServerProcessResourceHistorySummary, Mg as DesktopWslStateSchema, Mh as ContextMenuItemSchema, Ml as ResourceTelemetryAggregate, Mm as MAX_WHEN_EXPRESSION_DEPTH, Mp as DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, Mu as ProjectSearchEntriesResult, Mv as AdvertisedEndpointReachability, Mx as ScopedThreadSessionRef, My as OrchestrationCheckpointFile, NS as HostPowerThermalState, N_ as PreviewAutomationTabNotFoundError, Nb as ProviderUserInputAnswers, Nc as WsSourceControlPublishRepositoryRpc, Nd as SourceControlProviderKind, Nf as ServerProcessSignal, Ng as PRIMARY_LOCAL_ENVIRONMENT_ID, Nh as DesktopAppBrandingSchema, Nl as ResourceTelemetryGroups, Nm as MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, Np as DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, Nu as ProjectWriteFileError, Nv as AdvertisedEndpointSource, Nx as ServerSelfUpdateCapability, Ny as OrchestrationCheckpointStatus, OS as ClientActivityLease, O_ as PreviewAutomationSetColorSchemeInput, Ob as ProviderApprovalPolicy, Oc as WsServerUpdateSettingsRpc, Od as SourceControlProviderAuth, Of as ServerProcessResourceHistoryBucket, Og as DesktopUpdateReleaseNoteSchema, Oh as TerminalSummary, Ol as ResourceMonitorSetSampleIntervalCommand, Om as MAX_KEYBINDINGS_COUNT, Op as DEFAULT_GLASS_OPACITY, Ou as ProjectReadFileInput, Ov as AdvertisedEndpointCompatibility, Ox as RepositoryIdentity, Oy as ModelSelection, PS as ProviderDriverKind, P_ as PreviewAutomationTabTargetInput, Pb as RuntimeMode, Pc as WsSubscribeAuthAccessRpc, Pd as SourceControlPublishRepositoryInput, Pf as ServerProvider, Pg as PersistedSavedEnvironmentRecordSchema, Ph as DesktopAppStageLabelSchema, Pl as ResourceTelemetryHealth, Pm as MODEL_PICKER_KEYBINDING_COMMANDS, Pp as DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, Pu as ProjectWriteFileInput, Pv as AdvertisedEndpointStatus, Px as ServerSelfUpdateMethod, Py as OrchestrationCheckpointSummary, QS as NonNegativeInt, Q_ as PreviewInvalidUrlError, Qb as ThreadTurnDiffCompletedPayload, Qc as WsVcsCreateWorktreeRpc, Qd as VcsProcessExitFailureKind, Qf as ServerRemoveKeybindingInput, Qg as PreviewAutomationClientId, Qh as DesktopPreviewRecordingFrameSchema, Ql as AssetAccessError, Qm as ProviderEvent, Qp as ServerSettingsPatch, Qs as WsPreviewCloseRpc, Qu as GitRunStackedActionInput, Qv as EnvironmentCloudRelayConfigResult, Qx as AuthClientPresentationMetadata, Qy as OrchestrationProjectShell, RS as ProviderInstanceEnvironmentVariable, R_ as PreviewAutomationUnavailableError, Rb as ThreadCheckpointRevertRequestedPayload, Rc as WsSubscribeResourceTelemetryRpc, Rd as SourceControlRepositoryError, Rf as ServerProviderContinuation, Rg as PreviewAnnotationElementTargetSchema, Rh as DesktopPreviewAnnotationThemeSchema, Rl as ResourceTelemetryIoSemantics, Rm as THREAD_JUMP_KEYBINDING_COMMANDS, Rp as EnvironmentIdentificationMode, Rs as WsCloudInstallRelayClientRpc, Ru as T3_PROJECT_FILE_NAME, Rv as RelayClientInstallProgressEventSchema, Rx as AuthAccessStreamClientUpsertedEvent, Ry as OrchestrationEvent, SS as ServerAuthPolicy, S_ as PreviewAutomationRequestQueueClosedError, Sb as ProjectMetaUpdatedPayload, Sc as WsServerReportClientActivityRpc, Sd as ChangeRequestState, Sf as ServerLifecycleStreamReadyEvent, Sg as DesktopSshPasswordPromptRequestSchema, Sh as TerminalResizeError, Sl as ResourceMonitorHelloEvent, Sm as KeybindingShortcut, Sp as CodexSettings, Su as ProjectFileFailure, Sx as EnvironmentConnectionState, Sy as ChatImageAttachment, TS as BackgroundPolicySnapshot, T_ as PreviewAutomationResponse, Tb as ProjectionPendingApprovalDecision, Tc as WsServerSignalProcessRpc, Td as SourceControlCloneRepositoryResult, Tf as ServerObservability, Tg as DesktopUpdateActionResultSchema, Th as TerminalSessionLookupError, Tl as ResourceMonitorReadHistoryCommand, Tm as KeybindingWhenNode, Tp as DEFAULT_BACKGROUND_ACTIVITY_PROFILE, Tu as ProjectListEntriesInput, Tx as ExecutionEnvironmentPlatform, Ty as DEFAULT_PROVIDER_INTERACTION_MODE, US as isProviderDriverKind, U_ as DiscoveredLocalServerList, Ub as ThreadMetaUpdatedPayload, Uc as WsSubscribeVcsStatusRpc, Ud as VcsDriverCapabilities, Uf as ServerProviderState, Ug as PreviewAnnotationScreenshotSchema, Uh as DesktopPreviewAutomationScrollInputSchema, Ul as ResourceTelemetryRetryResult, Um as ProviderRuntimeEvent, Up as MAX_SIDEBAR_THREAD_PREVIEW_COUNT, Us as WsOrchestrationDispatchCommandRpc, Uu as GitActionProgressStream, Uv as AuthPairingLinkRevokeResult, Ux as AuthAccessStreamSnapshotEvent, Uy as OrchestrationGetFullThreadDiffResult, VS as ProviderInstanceRef, V_ as PreviewUrlResolution, Vb as ThreadInteractionModeSetPayload, Vc as WsSubscribeTerminalEventsRpc, Vd as SourceControlRepositoryVisibility, Vf as ServerProviderSlashCommand, Vg as PreviewAnnotationRectSchema, Vh as DesktopPreviewAutomationEvaluateInputSchema, Vl as ResourceTelemetryProcessIdentity, Vm as CanonicalRequestType, Vp as MAX_GLASS_OPACITY, Vs as WsGitResolvePullRequestRpc, Vu as GitActionProgressKind, Vv as AuthClientSessionRevokeResult, Vx as AuthAccessStreamPairingLinkRemovedEvent, Vy as OrchestrationGetFullThreadDiffError, WS as ApprovalRequestId, W_ as FILL_PREVIEW_VIEWPORT, Wb as ThreadProposedPlanUpsertedPayload, Wc as WsTerminalAttachRpc, Wd as VcsDriverKind, Wf as ServerProviderUpdateError, Wg as PreviewAnnotationStrokeTargetSchema, Wh as DesktopPreviewAutomationTypeInputSchema, Wl as ResourceTelemetrySnapshot, Wm as ProviderRuntimeEventV2, Wp as MIN_GLASS_OPACITY, Ws as WsOrchestrationGetArchivedShellSnapshotRpc, Wu as GitCommandError, Wv as EnvironmentAuthHttpApi, Wx as AuthAccessTokenResult, Wy as OrchestrationGetSnapshotError, XS as IsoDateTime, X_ as PreviewError, Xb as ThreadSnoozedPayload, Xc as WsTerminalWriteRpc, Xd as VcsOutputDecodeError, Xf as ServerProviderVersionAdvisoryStatus, Xg as PreviewAutomationClickInput, Xh as DesktopPreviewPointerEventSchema, Xl as ReviewDiffPreviewSource, Xm as UserInputQuestion, Xp as ServerSettingsError, Xs as WsPreviewAutomationFocusHostRpc, Xu as GitPullRequestRefInput, Xv as EnvironmentCloudLinkStateResult, Xx as AuthClientMetadata, Xy as OrchestrationMessageRole, YS as EventId, Y_ as PreviewCloseInput, Yb as ThreadSettledPayload, Yc as WsTerminalRestartRpc, Yd as VcsListWorkspaceFilesResult, Yf as ServerProviderVersionAdvisory, Yg as PreviewAutomationActionEvent, Yh as DesktopPreviewNavigateInputSchema, Yl as ReviewDiffPreviewResult, Ym as ToolLifecycleItemType, Yp as ServerSettings, Ys as WsPreviewAutomationConnectRpc, Yu as GitPullRequestMaterializationError, Yv as EnvironmentCloudEndpointUnavailableError, Yx as AuthBrowserSessionResult, Yy as OrchestrationMessage, ZS as MessageId, Z_ as PreviewEvent, Zb as ThreadTurnDiff, Zc as WsVcsCreateRefRpc, Zd as VcsProcessExitError, Zf as ServerProviders, Zg as PreviewAutomationClientDisconnectedError, Zh as DesktopPreviewRecordingArtifactSchema, Zl as ReviewDiffPreviewSourceKind, Zm as isToolLifecycleItemType, Zp as ServerSettingsOperation, Zs as WsPreviewAutomationRespondRpc, Zu as GitResolvePullRequestResult, Zv as EnvironmentCloudPreferencesRequest, Zx as AuthClientMetadataDeviceType, Zy as OrchestrationProject, _S as AuthTokenExchangeRequest, __ as PreviewAutomationPressInput, _b as PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, _c as WsServerGetSettingsRpc, _d as VcsStatusResult, _f as ServerConfigStreamSettingsUpdatedEvent, _g as DesktopSshEnvironmentTargetSchema, _h as TerminalEvent, _l as ResourceMonitorCommand, _m as ExternalLauncherUnsupportedEditorError, _p as BackgroundActivityProfileSelection, _u as FilesystemBrowseFailure, _x as ProviderOptionDescriptorType, _y as EnvironmentScopeRequiredError, aC as RuntimeRequestId, aS as AuthOrchestrationReadScope, a_ as PreviewAutomationEvaluateInput, ab as OrchestrationShellSnapshot, ac as WsProjectsListEntriesRpc, ad as VcsCreateWorktreeInput, af as VcsRemote, ag as DesktopPreviewTabStateSchema, ah as ProviderStopSessionInput, al as DesktopElectronProcessMetric, am as SourceControlWritingStyleSettings, ap as ServerTraceDiagnosticsErrorKind, au as AssetProjectFaviconResolutionError, av as PreviewRenderedViewportSize, ax as TurnCountRange, ay as EnvironmentHttpInternalServerError, bS as ServerAuthBootstrapMethod, b_ as PreviewAutomationRemoteUnavailableError, bb as ProjectCreatedPayload, bc as WsServerRefreshProvidersRpc, bd as VcsSwitchRefResult, bf as ServerLifecycleReadyPayload, bg as DesktopSshPasswordPromptCancelledResultSchema, bh as TerminalNotRunningError, bl as ResourceMonitorEvent, bm as KeybindingCommand, bp as ClientSettingsPatch, bu as ProjectEntriesFailure, bx as ProviderOptionSelections, by as AssistantDeliveryMode, cC as ThreadId, cS as AuthRelayReadScope, c_ as PreviewAutomationHostFocus, cb as OrchestrationSubscribeShellInput, cc as WsProjectsWriteFileRpc, cd as VcsListRefsInput, cf as VcsUnsupportedOperationError, cg as DesktopRuntimeInfoSchema, ch as TerminalAttachInput, cl as DesktopHostTelemetryMessage, cm as makeProviderSettingsSchema, cp as ServerTraceDiagnosticsRecentFailure, cu as AssetWorkspaceAssetInspectionError, cv as PreviewSessionLookupError, cx as DEFAULT_MODEL_BY_PROVIDER, cy as EnvironmentInternalErrorReason, dC as TurnId, dS as AuthRevokeClientSessionInput, d_ as PreviewAutomationMalformedResponseError, db as OrchestrationThreadActivity, dc as WsServerDiscoverSourceControlRpc, dd as VcsPullResult, df as ServerConfigKeybindingsUpdatedPayload, dg as DesktopSshBearerBootstrapInputSchema, dh as TerminalCloseInput, dl as DesktopTelemetrySetDiagnosticsDemand, dm as EditorLaunchStyle, dp as ServerTraceDiagnosticsSpanSummary, du as AssetWorkspaceContextResolutionError, dv as PreviewViewportPresetId, dx as MODEL_SLUG_ALIASES_BY_PROVIDER, dy as EnvironmentOperationForbiddenReason, eC as PositiveInt, eS as AuthCreatePairingCredentialInput, e_ as PreviewAutomationConnectionId, eb as OrchestrationProposedPlanId, ec as WsPreviewNavigateRpc, ed as GitRunStackedActionToastRunAction, ef as VcsProcessOutputLimitError, eg as DesktopPreviewRegisterWebviewInputSchema, eh as ProviderRespondToRequestInput, el as WsVcsListRefsRpc, em as SidebarProjectGroupingMode, ep as ServerSelfUpdateError, eu as AssetCreateUrlInput, ev as PreviewListResult, ex as ThreadTurnStartCommand, ey as EnvironmentHttpApi, fS as AuthRevokePairingLinkInput, f_ as PreviewAutomationNavigateInput, fb as OrchestrationThreadActivityTone, fc as WsServerGetBackgroundPolicyRpc, fd as VcsRef, ff as ServerConfigProviderStatusesPayload, fg as DesktopSshBearerRequestInputSchema, fh as TerminalCwdError, fl as DesktopTelemetrySetHostPowerIntervals, fm as ExternalLauncherBrowserSpawnError, fp as ServerUpsertKeybindingInput, fu as AssetWorkspacePathValidationError, fv as PreviewViewportSetting, fx as ModelCapabilities, fy as EnvironmentOrchestrationHttpApi, gS as AuthTokenExchangeGrantType, g_ as PreviewAutomationOperation, gb as PROVIDER_SEND_TURN_MAX_ATTACHMENTS, gc as WsServerGetResourceTelemetryHistoryRpc, gd as VcsStatusRemoteResult, gf as ServerConfigStreamProviderStatusesEvent, gg as DesktopSshEnvironmentEnsureResultSchema, gh as TerminalError, gl as ResourceMonitorCapabilities, gm as ExternalLauncherUnknownEditorError, gp as BackgroundActivityProfile, gu as FilesystemBrowseError, gx as ProviderOptionDescriptor, gy as EnvironmentResourceNotFoundReason, hS as AuthTerminalOperateScope, h_ as PreviewAutomationOpenInput, hb as OrchestrationThreadStreamItem, hc as WsServerGetProcessResourceHistoryRpc, hd as VcsStatusLocalResult, hf as ServerConfigStreamKeybindingsUpdatedEvent, hg as DesktopSshEnvironmentEnsureOptionsSchema, hh as TerminalCwdStatError, hl as ResourceAttributionSnapshot, hm as ExternalLauncherError, hp as BackgroundActivityOverrides, hu as FilesystemBrowseEntry, hx as ProviderOptionChoice, hy as EnvironmentResourceNotFoundError, iC as RuntimeItemId, iS as AuthOrchestrationOperateScope, i_ as PreviewAutomationError, ib as OrchestrationSessionStatus, ic as WsPreviewResizeRpc, id as VcsCreateRefResult, if as VcsProcessTimeoutError, ig as DesktopPreviewTabInputSchema, ih as ProviderSessionStartInput, il as WsVcsSwitchRefRpc, im as SourceControlWritingStyleMode, ip as ServerSignalProcessResult, iu as AssetProjectFaviconNotFoundError, iv as PreviewRefreshInput, ix as ThreadUnsnoozedPayload, iy as EnvironmentHttpForbiddenError, jS as HostPowerSnapshot, j_ as PreviewAutomationStatus, jb as ProviderSandboxMode, jc as WsSourceControlCloneRepositoryRpc, jd as SourceControlProviderError, jf as ServerProcessResourceHistoryResult, jg as DesktopWslDistroSchema, jh as TerminalWriteInput, jl as ResourceMonitorSnapshotEvent, jm as MAX_SCRIPT_ID_LENGTH, jp as DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, ju as ProjectSearchEntriesInput, jv as AdvertisedEndpointProviderKind, jx as ScopedThreadRef, jy as OrchestrationAggregateKind, kS as ClientActivityReportInput, k_ as PreviewAutomationSetColorSchemeResult, kb as ProviderInteractionMode, kc as WsServerUpsertKeybindingRpc, kd as SourceControlProviderAuthStatus, kf as ServerProcessResourceHistoryFailureTag, kg as DesktopUpdateStateSchema, kh as TerminalThreadInput, kl as ResourceMonitorSetStreamingCommand, km as MAX_KEYBINDING_VALUE_LENGTH, kp as DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, ku as ProjectReadFileResult, kv as AdvertisedEndpointHostedHttpsCompatibility, kx as RepositoryIdentityLocator, ky as ORCHESTRATION_WS_METHODS, lC as TrimmedNonEmptyString, lS as AuthRelayWriteScope, l_ as PreviewAutomationHostIdentity, lb as OrchestrationSubscribeThreadInput, lc as WsReviewGetDiffPreviewRpc, ld as VcsListRefsResult, lf as ServerConfig, lg as DesktopServerExposureModeSchema, lh as TerminalAttachStreamEvent, ll as DesktopHostTelemetrySnapshot, lm as EDITORS, lp as ServerTraceDiagnosticsResult, lu as AssetWorkspaceAssetNotFoundError, lv as PreviewSessionSnapshot, lx as DEFAULT_TEXT_GENERATION_MODEL, ly as EnvironmentMetadataHttpApi, mS as AuthStandardClientScopes, m_ as PreviewAutomationNoAvailableHostError, mb as OrchestrationThreadShell, mc as WsServerGetProcessDiagnosticsRpc, md as VcsStatusInput, mf as ServerConfigStreamEvent, mg as DesktopSshEnvironmentEnsureInputSchema, mh as TerminalCwdNotFoundError, ml as ResourceAttributionEntry, mm as ExternalLauncherEditorSpawnError, mp as isProviderAvailable, mu as AssetWorkspaceRootNormalizationError, mx as PROVIDER_DISPLAY_NAMES, my as EnvironmentRequestInvalidReason, nC as ProviderItemId, nS as AuthEnvironmentScope, n_ as PreviewAutomationControlInterruptedError, nb as OrchestrationRpcSchemas, nc as WsPreviewRefreshRpc, nd as TextGenerationError, nf as VcsProcessSpawnError, ng as DesktopPreviewSetColorSchemeInputSchema, nh as ProviderSendTurnInput, nl as WsVcsRefreshStatusRpc, nm as SidebarThreadPreviewCount, np as ServerSelfUpdateResult, nu as AssetPreviewTypeValidationError, nv as PreviewNavigateInput, nx as ThreadUnarchivedPayload, ny as EnvironmentHttpCommonError, oC as RuntimeSessionId, oS as AuthPairingCredentialResult, o_ as PreviewAutomationExecutionError, ob as OrchestrationShellStreamEvent, oc as WsProjectsReadFileRpc, od as VcsCreateWorktreeResult, of as VcsRepositoryDetectionError, og as DesktopPreviewWebviewConfigSchema, oh as ProviderTurnStartResult, ol as DesktopElectronProcessType, om as ThreadEnvMode, op as ServerTraceDiagnosticsFailureSummary, ou as AssetResource, ov as PreviewReportStatusInput, ox as BooleanProviderOptionDescriptor, oy as EnvironmentHttpUnauthorizedError, pS as AuthSessionState, p_ as PreviewAutomationNetworkEntry, pb as OrchestrationThreadDetailSnapshot, pc as WsServerGetConfigRpc, pd as VcsRemoveWorktreeInput, pf as ServerConfigSettingsUpdatedPayload, pg as DesktopSshEnvironmentBootstrapSchema, ph as TerminalCwdNotDirectoryError, pl as RESOURCE_MONITOR_PROTOCOL_VERSION, pm as ExternalLauncherCommandNotFoundError, pp as ServerUpsertKeybindingResult, pu as AssetWorkspaceResolutionError, pv as PreviewViewportSize, px as PREFERRED_DEFAULT_CODEX_MODELS, py as EnvironmentRequestInvalidError, qS as CommandId, q_ as PREVIEW_VIEWPORT_MIN_DIMENSION, qb as ThreadSessionSetPayload, qc as WsTerminalOpenRpc, qd as VcsFreshnessSource, qf as ServerProviderUpdateStatus, qg as PREVIEW_AUTOMATION_OPERATIONS, qh as DesktopPreviewConfigInputSchema, ql as ReviewDiffPreviewError, qm as TOOL_LIFECYCLE_ITEM_TYPES, qp as ObservabilitySettings, qs as WsOrchestrationSubscribeShellRpc, qu as GitPreparePullRequestThreadInput, qv as EnvironmentAuthenticatedAuth, qx as AuthAdministrativeScopes, qy as OrchestrationGetTurnDiffResult, rC as RpcClientId, rS as AuthEnvironmentScopes, r_ as PreviewAutomationElement, rb as OrchestrationSession, rc as WsPreviewReportStatusRpc, rd as VcsCreateRefInput, rf as VcsProcessStdinWriteError, rg as DesktopPreviewTabIdSchema, rh as ProviderSession, rl as WsVcsRemoveWorktreeRpc, rm as SidebarThreadSortOrder, rp as ServerSignalProcessInput, ru as AssetProjectFaviconInspectionError, rv as PreviewOpenInput, rx as ThreadUnsettledPayload, ry as EnvironmentHttpConflictError, sC as RuntimeTaskId, sS as AuthPairingLink, s_ as PreviewAutomationHost, sb as OrchestrationShellStreamItem, sc as WsProjectsSearchEntriesRpc, sd as VcsInitInput, sf as VcsRepositoryIdentity, sg as DesktopRuntimeArchSchema, sh as DEFAULT_TERMINAL_ID, sl as DesktopHostTelemetryHello, sm as TimestampFormat, sp as ServerTraceDiagnosticsLogEvent, su as AssetSigningKeyLoadError, sv as PreviewResizeInput, sx as DEFAULT_MODEL, sy as EnvironmentInternalError, tC as ProjectId, tS as AuthEnvironmentBootstrapTokenType, t_ as PreviewAutomationConsoleEntry, tb as OrchestrationReadModel, tc as WsPreviewOpenRpc, td as GitStackedAction, tf as VcsProcessOutputReadError, tg as DesktopPreviewScreenshotArtifactSchema, th as ProviderRespondToUserInputInput, tl as WsVcsPullRpc, tm as SidebarProjectSortOrder, tp as ServerSelfUpdateInput, tu as AssetCreateUrlResult, tv as PreviewNavStatus, tx as ThreadTurnStartRequestedPayload, ty as EnvironmentHttpBadRequestError, uC as TrimmedString, uS as AuthReviewWriteScope, u_ as PreviewAutomationInvalidSelectorError, ub as OrchestrationThread, uc as WsRpcGroup, ud as VcsPullInput, uf as ServerConfigIssue, ug as DesktopServerExposureStateSchema, uh as TerminalClearInput, ul as DesktopTelemetryControlMessage, um as EditorId, up as ServerTraceDiagnosticsSpanOccurrence, uu as AssetWorkspaceContextNotFoundError, uv as PreviewTabId, ux as DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, uy as EnvironmentOperationForbiddenError, vS as AuthWebSocketTicketResult, v_ as PreviewAutomationRecordingArtifact, vb as PROVIDER_SEND_TURN_MAX_INPUT_CHARS, vc as WsServerGetTraceDiagnosticsRpc, vd as VcsStatusStreamEvent, vf as ServerConfigStreamSnapshotEvent, vg as DesktopSshHostSourceSchema, vh as TerminalHistoryError, vl as ResourceMonitorConfigureCommand, vm as LaunchEditorInput, vp as BackgroundActivitySettings, vu as FilesystemBrowseInput, vx as ProviderOptionSelection, wS as BackgroundBooleanState, w_ as PreviewAutomationResizeResult, wb as ProjectScriptIcon, wc as WsServerRetryResourceTelemetryRpc, wd as SourceControlCloneRepositoryInput, wf as ServerLifecycleWelcomePayload, wg as DesktopThemeSchema, wh as TerminalRestartInput, wl as ResourceMonitorProcessSample, wm as KeybindingWhen, wp as DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, wu as ProjectListEntriesError, wx as ExecutionEnvironmentDescriptor, wy as CorrelationId, xS as ServerAuthDescriptor, x_ as PreviewAutomationRequest, xb as ProjectDeletedPayload, xc as WsServerRemoveKeybindingRpc, xd as ChangeRequest, xf as ServerLifecycleStreamEvent, xg as DesktopSshPasswordPromptCancelledType, xh as TerminalOpenInput, xl as ResourceMonitorExternalProcess, xm as KeybindingRule, xp as ClientSettingsSchema, xu as ProjectEntry, xx as SelectProviderOptionDescriptor, xy as ChatAttachment, yS as EnvironmentAuthorizationError, y_ as PreviewAutomationRecordingStatus, yb as ProjectCreateCommand, yc as WsServerProbeRpc, yd as VcsSwitchRefInput, yf as ServerConfigUpdatedPayload, yg as DesktopSshHttpBaseUrlInputSchema, yh as TerminalMetadataStreamEvent, yl as ResourceMonitorErrorEvent, ym as isExternalLauncherError, yp as ClaudeSettings, yu as FilesystemBrowseResult, yx as ProviderOptionSelectionValue, zS as ProviderInstanceEnvironmentVariableName, z_ as PreviewAutomationUnsupportedClientError, zb as ThreadCreatedPayload, zc as WsSubscribeServerConfigRpc, zd as SourceControlRepositoryInfo, zf as ServerProviderModel, zg as PreviewAnnotationPayloadSchema, zh as DesktopPreviewArtifactInputSchema, zl as ResourceTelemetryProcess, zm as THREAD_KEYBINDING_COMMANDS, zp as GlassOpacity, zs as WsFilesystemBrowseRpc, zu as T3_PROJECT_FILE_SCHEMA_URL, zv as RelayClientInstallProgressStageSchema, zx as AuthAccessStreamError, zy as OrchestrationEventMetadata } from "./shared.js";
|
|
2
2
|
export { AdvertisedEndpoint, AdvertisedEndpointCompatibility, AdvertisedEndpointHostedHttpsCompatibility, AdvertisedEndpointProvider, AdvertisedEndpointProviderKind, AdvertisedEndpointReachability, AdvertisedEndpointSource, AdvertisedEndpointStatus, ApprovalRequestId, AssetAccessError, AssetAttachmentNotFoundError, AssetCreateUrlInput, AssetCreateUrlResult, AssetPreviewTypeValidationError, AssetProjectFaviconInspectionError, AssetProjectFaviconNotFoundError, AssetProjectFaviconResolutionError, AssetResource, AssetSigningKeyLoadError, AssetWorkspaceAssetInspectionError, AssetWorkspaceAssetNotFoundError, AssetWorkspaceContextNotFoundError, AssetWorkspaceContextResolutionError, AssetWorkspacePathValidationError, AssetWorkspaceResolutionError, AssetWorkspaceRootNormalizationError, AssistantDeliveryMode, AuthAccessReadScope, AuthAccessSnapshot, AuthAccessStreamClientRemovedEvent, AuthAccessStreamClientUpsertedEvent, AuthAccessStreamError, AuthAccessStreamEvent, AuthAccessStreamPairingLinkRemovedEvent, AuthAccessStreamPairingLinkUpsertedEvent, AuthAccessStreamSnapshotEvent, AuthAccessTokenResult, AuthAccessTokenType, AuthAccessWriteScope, AuthAdministrativeScopes, AuthBrowserSessionRequest, AuthBrowserSessionResult, AuthClientMetadata, AuthClientMetadataDeviceType, AuthClientPresentationMetadata, AuthClientSession, AuthClientSessionRevokeResult, AuthCreatePairingCredentialInput, AuthEnvironmentBootstrapTokenType, AuthEnvironmentScope, AuthEnvironmentScopes, AuthOrchestrationOperateScope, AuthOrchestrationReadScope, AuthOtherClientSessionsRevokeResult, AuthPairingCredentialResult, AuthPairingLink, AuthPairingLinkRevokeResult, AuthRelayReadScope, AuthRelayWriteScope, AuthReviewWriteScope, AuthRevokeClientSessionInput, AuthRevokePairingLinkInput, AuthSessionId, AuthSessionState, AuthStandardClientScopes, AuthTerminalOperateScope, AuthTokenExchangeGrantType, AuthTokenExchangeRequest, AuthWebSocketTicketResult, BackgroundActivityOverrides, BackgroundActivityProfile, BackgroundActivityProfileSelection, BackgroundActivitySettings, BackgroundBooleanState, BackgroundPolicySnapshot, BackgroundScope, BooleanProviderOptionDescriptor, BrowserNavigationTarget, CanonicalItemType, CanonicalRequestType, ChangeRequest, ChangeRequestState, ChatAttachment, ChatImageAttachment, CheckpointRef, ClaudeSettings, ClientActivityClientId, ClientActivityLease, ClientActivityReportInput, ClientKind, ClientOrchestrationCommand, ClientSettingsPatch, ClientSettingsSchema, CodexSettings, CommandId, ContextMenuItemSchema, CorrelationId, CursorSettings, DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, DEFAULT_BACKGROUND_ACTIVITY_PROFILE, DEFAULT_CLIENT_SETTINGS, DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, DEFAULT_GLASS_OPACITY, DEFAULT_MODEL, DEFAULT_MODEL_BY_PROVIDER, DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, DEFAULT_PROVIDER_INTERACTION_MODE, DEFAULT_RUNTIME_MODE, DEFAULT_SERVER_SETTINGS, DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, DEFAULT_SIDEBAR_THREAD_SORT_ORDER, DEFAULT_TERMINAL_ID, DEFAULT_TEXT_GENERATION_MODEL, DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, DEFAULT_TIMESTAMP_FORMAT, DEFAULT_UNIFIED_SETTINGS, DesktopAppBrandingSchema, DesktopAppStageLabelSchema, DesktopBackendBootstrap, DesktopDiscoveredSshHostSchema, DesktopElectronProcessMetric, DesktopElectronProcessType, DesktopEnvironmentBootstrapSchema, DesktopHostTelemetryHello, DesktopHostTelemetryMessage, DesktopHostTelemetrySnapshot, DesktopPreviewAnnotationThemeInputSchema, DesktopPreviewAnnotationThemeSchema, DesktopPreviewArtifactInputSchema, DesktopPreviewAutomationClickInputSchema, DesktopPreviewAutomationEvaluateInputSchema, DesktopPreviewAutomationPressInputSchema, DesktopPreviewAutomationScrollInputSchema, DesktopPreviewAutomationTypeInputSchema, DesktopPreviewAutomationWaitForInputSchema, DesktopPreviewColorSchemeSchema, DesktopPreviewConfigInputSchema, DesktopPreviewNavStatusSchema, DesktopPreviewNavigateInputSchema, DesktopPreviewPointerEventSchema, DesktopPreviewRecordingArtifactSchema, DesktopPreviewRecordingFrameSchema, DesktopPreviewRecordingSaveInputSchema, DesktopPreviewRegisterWebviewInputSchema, DesktopPreviewScreenshotArtifactSchema, DesktopPreviewSetColorSchemeInputSchema, DesktopPreviewTabIdSchema, DesktopPreviewTabInputSchema, DesktopPreviewTabStateSchema, DesktopPreviewWebviewConfigSchema, DesktopRuntimeArchSchema, DesktopRuntimeInfoSchema, DesktopServerExposureModeSchema, DesktopServerExposureStateSchema, DesktopSshBearerBootstrapInputSchema, DesktopSshBearerRequestInputSchema, DesktopSshEnvironmentBootstrapSchema, DesktopSshEnvironmentEnsureInputSchema, DesktopSshEnvironmentEnsureOptionsSchema, DesktopSshEnvironmentEnsureResultSchema, DesktopSshEnvironmentTargetSchema, DesktopSshHostSourceSchema, DesktopSshHttpBaseUrlInputSchema, DesktopSshPasswordPromptCancelledResultSchema, DesktopSshPasswordPromptCancelledType, DesktopSshPasswordPromptRequestSchema, DesktopSshPasswordPromptResolutionInputSchema, DesktopTelemetryControlMessage, DesktopTelemetrySetDiagnosticsDemand, DesktopTelemetrySetHostPowerIntervals, DesktopThemeSchema, DesktopUpdateActionResultSchema, DesktopUpdateChannelSchema, DesktopUpdateCheckResultSchema, DesktopUpdateReleaseNoteSchema, DesktopUpdateStateSchema, DesktopUpdateStatusSchema, DesktopWslDistroSchema, DesktopWslStateSchema, DiscoveredLocalServer, DiscoveredLocalServerList, DispatchResult, EDITORS, EditorId, EditorLaunchStyle, EnvironmentAuthHttpApi, EnvironmentAuthInvalidError, EnvironmentAuthInvalidReason, EnvironmentAuthenticatedAuth, EnvironmentAuthenticatedPrincipal, EnvironmentAuthorizationError, EnvironmentCloudEndpointUnavailableError, EnvironmentCloudLinkStateResult, EnvironmentCloudPreferencesRequest, EnvironmentCloudRelayConfigResult, EnvironmentConnectHttpApi, EnvironmentConnectionState, EnvironmentHttpApi, EnvironmentHttpBadRequestError, EnvironmentHttpCommonError, EnvironmentHttpConflictError, EnvironmentHttpForbiddenError, EnvironmentHttpInternalServerError, EnvironmentHttpUnauthorizedError, EnvironmentId, EnvironmentIdentificationMode, EnvironmentInternalError, EnvironmentInternalErrorReason, EnvironmentMetadataHttpApi, EnvironmentOperationForbiddenError, EnvironmentOperationForbiddenReason, EnvironmentOrchestrationHttpApi, EnvironmentRequestInvalidError, EnvironmentRequestInvalidReason, EnvironmentResourceNotFoundError, EnvironmentResourceNotFoundReason, EnvironmentScopeRequiredError, EventId, ExecutionEnvironmentCapabilities, ExecutionEnvironmentDescriptor, ExecutionEnvironmentPlatform, ExecutionEnvironmentPlatformArch, ExecutionEnvironmentPlatformOs, ExternalLauncherBrowserSpawnError, ExternalLauncherCommandNotFoundError, ExternalLauncherEditorSpawnError, ExternalLauncherError, ExternalLauncherUnknownEditorError, ExternalLauncherUnsupportedEditorError, FILL_PREVIEW_VIEWPORT, FilesystemBrowseEntry, FilesystemBrowseError, FilesystemBrowseFailure, FilesystemBrowseInput, FilesystemBrowseResult, GitActionProgressEvent, GitActionProgressKind, GitActionProgressPhase, GitActionProgressStream, GitCommandError, GitManagerError, GitManagerServiceError, GitPreparePullRequestThreadInput, GitPreparePullRequestThreadResult, GitPullRequestMaterializationError, GitPullRequestRefInput, GitResolvePullRequestResult, GitRunStackedActionInput, GitRunStackedActionResult, GitRunStackedActionToastRunAction, GitStackedAction, GlassOpacity, GrokSettings, HostPowerSnapshot, HostPowerSource, HostPowerThermalState, IsoDateTime, ItemLifecyclePayload, KeybindingCommand, KeybindingRule, KeybindingShortcut, KeybindingValue, KeybindingWhen, KeybindingWhenNode, KeybindingsConfig, KeybindingsConfigError, LaunchEditorInput, MAX_GLASS_OPACITY, MAX_KEYBINDINGS_COUNT, MAX_KEYBINDING_VALUE_LENGTH, MAX_KEYBINDING_WHEN_LENGTH, MAX_SCRIPT_ID_LENGTH, MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MAX_SIDEBAR_THREAD_PREVIEW_COUNT, MAX_WHEN_EXPRESSION_DEPTH, MIN_GLASS_OPACITY, MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MIN_SIDEBAR_THREAD_PREVIEW_COUNT, MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, MODEL_PICKER_KEYBINDING_COMMANDS, MODEL_SLUG_ALIASES_BY_PROVIDER, MessageId, ModelCapabilities, ModelSelection, NonNegativeInt, ORCHESTRATION_WS_METHODS, ObservabilitySettings, OpenCodeSettings, OrchestrationActorKind, OrchestrationAggregateKind, OrchestrationCheckpointFile, OrchestrationCheckpointStatus, OrchestrationCheckpointSummary, OrchestrationCommand, OrchestrationCommandReceiptStatus, OrchestrationDispatchCommandError, OrchestrationEvent, OrchestrationEventMetadata, OrchestrationEventType, OrchestrationGetFullThreadDiffError, OrchestrationGetFullThreadDiffInput, OrchestrationGetFullThreadDiffResult, OrchestrationGetSnapshotError, OrchestrationGetTurnDiffError, OrchestrationGetTurnDiffInput, OrchestrationGetTurnDiffResult, OrchestrationLatestTurn, OrchestrationMessage, OrchestrationMessageRole, OrchestrationProject, OrchestrationProjectShell, OrchestrationProposedPlan, OrchestrationProposedPlanId, OrchestrationReadModel, OrchestrationRpcSchemas, OrchestrationSession, OrchestrationSessionStatus, OrchestrationShellSnapshot, OrchestrationShellStreamEvent, OrchestrationShellStreamItem, OrchestrationSubscribeShellInput, OrchestrationSubscribeThreadInput, OrchestrationThread, OrchestrationThreadActivity, OrchestrationThreadActivityTone, OrchestrationThreadDetailSnapshot, OrchestrationThreadShell, OrchestrationThreadStreamItem, PREFERRED_DEFAULT_CODEX_MODELS, PREVIEW_AUTOMATION_OPERATIONS, PREVIEW_AUTOMATION_V1_OPERATIONS, PREVIEW_VIEWPORT_MAX_AREA, PREVIEW_VIEWPORT_MAX_DIMENSION, PREVIEW_VIEWPORT_MIN_DIMENSION, PREVIEW_VIEWPORT_PRESET_IDS, PRIMARY_LOCAL_ENVIRONMENT_ID, PROVIDER_DISPLAY_NAMES, PROVIDER_SEND_TURN_MAX_ATTACHMENTS, PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, PROVIDER_SEND_TURN_MAX_INPUT_CHARS, PersistedSavedEnvironmentRecordSchema, PickFolderOptionsSchema, PickedElementPayloadSchema, PickedElementStackFrameSchema, PortSchema, PositiveInt, PreviewAnnotationElementTargetSchema, PreviewAnnotationPayloadSchema, PreviewAnnotationPointSchema, PreviewAnnotationRectSchema, PreviewAnnotationRegionTargetSchema, PreviewAnnotationScreenshotSchema, PreviewAnnotationStrokeTargetSchema, PreviewAnnotationStyleChangeSchema, PreviewAutomationActionEvent, PreviewAutomationClickInput, PreviewAutomationClientDisconnectedError, PreviewAutomationClientId, PreviewAutomationColorScheme, PreviewAutomationConnectionId, PreviewAutomationConsoleEntry, PreviewAutomationControlInterruptedError, PreviewAutomationElement, PreviewAutomationError, PreviewAutomationEvaluateInput, PreviewAutomationExecutionError, PreviewAutomationHost, PreviewAutomationHostFocus, PreviewAutomationHostIdentity, PreviewAutomationInvalidSelectorError, PreviewAutomationMalformedResponseError, PreviewAutomationNavigateInput, PreviewAutomationNetworkEntry, PreviewAutomationNoAvailableHostError, PreviewAutomationOpenInput, PreviewAutomationOperation, PreviewAutomationPressInput, PreviewAutomationRecordingArtifact, PreviewAutomationRecordingStatus, PreviewAutomationRemoteUnavailableError, PreviewAutomationRequest, PreviewAutomationRequestQueueClosedError, PreviewAutomationResizeInput, PreviewAutomationResizeResult, PreviewAutomationResponse, PreviewAutomationResultTooLargeError, PreviewAutomationScrollInput, PreviewAutomationSetColorSchemeInput, PreviewAutomationSetColorSchemeResult, PreviewAutomationSnapshot, PreviewAutomationStatus, PreviewAutomationStreamEvent, PreviewAutomationTabNotFoundError, PreviewAutomationTabTargetInput, PreviewAutomationTargetNotEditableError, PreviewAutomationTimeoutError, PreviewAutomationTypeInput, PreviewAutomationUnavailableError, PreviewAutomationUnsupportedClientError, PreviewAutomationWaitForInput, PreviewCloseInput, PreviewError, PreviewEvent, PreviewInvalidUrlError, PreviewListInput, PreviewListResult, PreviewNavStatus, PreviewNavigateInput, PreviewOpenInput, PreviewRefreshInput, PreviewRenderedViewportSize, PreviewReportStatusInput, PreviewResizeInput, PreviewSessionLookupError, PreviewSessionSnapshot, PreviewTabId, PreviewUrlResolution, PreviewViewportPresetId, PreviewViewportSetting, PreviewViewportSize, ProjectCreateCommand, ProjectCreatedPayload, ProjectDeletedPayload, ProjectEntriesFailure, ProjectEntry, ProjectFileFailure, ProjectFileOperation, ProjectId, ProjectListEntriesError, ProjectListEntriesInput, ProjectListEntriesResult, ProjectMetaUpdatedPayload, ProjectReadFileError, ProjectReadFileInput, ProjectReadFileResult, ProjectScript, ProjectScriptIcon, ProjectSearchEntriesError, ProjectSearchEntriesInput, ProjectSearchEntriesResult, ProjectWriteFileError, ProjectWriteFileInput, ProjectWriteFileResult, ProjectionPendingApprovalDecision, ProjectionPendingApprovalStatus, ProviderApprovalDecision, ProviderApprovalPolicy, ProviderDriverKind, ProviderEvent, ProviderInstanceConfig, ProviderInstanceConfigMap, ProviderInstanceEnvironment, ProviderInstanceEnvironmentVariable, ProviderInstanceEnvironmentVariableName, ProviderInstanceId, ProviderInstanceRef, ProviderInteractionMode, ProviderInterruptTurnInput, ProviderItemId, ProviderOptionChoice, ProviderOptionDescriptor, ProviderOptionDescriptorType, ProviderOptionSelection, ProviderOptionSelectionValue, ProviderOptionSelections, ProviderRequestKind, ProviderRespondToRequestInput, ProviderRespondToUserInputInput, ProviderRuntimeEvent, ProviderRuntimeEventV2, ProviderRuntimeTurnStatus, ProviderSandboxMode, ProviderSendTurnInput, ProviderSession, ProviderSessionRuntimeStatus, ProviderSessionStartInput, ProviderStopSessionInput, ProviderTurnStartResult, ProviderUserInputAnswers, RESOURCE_MONITOR_PROTOCOL_VERSION, RelayClientInstallFailedError, RelayClientInstallFailureReasonSchema, RelayClientInstallProgressEventSchema, RelayClientInstallProgressStageSchema, RelayClientStatusSchema, RepositoryIdentity, RepositoryIdentityLocator, ResolvedKeybindingRule, ResolvedKeybindingsConfig, ResourceAttributionEntry, ResourceAttributionSnapshot, ResourceMonitorCapabilities, ResourceMonitorCommand, ResourceMonitorConfigureCommand, ResourceMonitorErrorEvent, ResourceMonitorEvent, ResourceMonitorExternalProcess, ResourceMonitorHelloEvent, ResourceMonitorHistoryChunkEvent, ResourceMonitorProcessSample, ResourceMonitorReadHistoryCommand, ResourceMonitorSampleNowCommand, ResourceMonitorSetExternalProcessesCommand, ResourceMonitorSetSampleIntervalCommand, ResourceMonitorSetStreamingCommand, ResourceMonitorShutdownCommand, ResourceMonitorSnapshotEvent, ResourceTelemetryAggregate, ResourceTelemetryGroups, ResourceTelemetryHealth, ResourceTelemetryHistory, ResourceTelemetryHistoryBucket, ResourceTelemetryHistoryInput, ResourceTelemetryIoSemantics, ResourceTelemetryProcess, ResourceTelemetryProcessCategory, ResourceTelemetryProcessIdentity, ResourceTelemetryProcessSummary, ResourceTelemetryRetryResult, ResourceTelemetrySnapshot, ResourceTelemetrySourceHealth, ResourceTelemetrySourceStatus, ReviewDiffPreviewError, ReviewDiffPreviewInput, ReviewDiffPreviewResult, ReviewDiffPreviewSource, ReviewDiffPreviewSourceKind, RpcClientId, RuntimeEventRaw, RuntimeItemId, RuntimeMode, RuntimeRequestId, RuntimeSessionId, RuntimeTaskId, SCRIPT_RUN_COMMAND_PATTERN, ScopedProjectRef, ScopedThreadRef, ScopedThreadSessionRef, SelectProviderOptionDescriptor, ServerAuthBootstrapMethod, ServerAuthDescriptor, ServerAuthPolicy, ServerAuthSessionMethod, ServerConfig, ServerConfigIssue, ServerConfigKeybindingsUpdatedPayload, ServerConfigProviderStatusesPayload, ServerConfigSettingsUpdatedPayload, ServerConfigStreamEvent, ServerConfigStreamKeybindingsUpdatedEvent, ServerConfigStreamProviderStatusesEvent, ServerConfigStreamSettingsUpdatedEvent, ServerConfigStreamSnapshotEvent, ServerConfigUpdatedPayload, ServerLifecycleReadyPayload, ServerLifecycleStreamEvent, ServerLifecycleStreamReadyEvent, ServerLifecycleStreamWelcomeEvent, ServerLifecycleWelcomePayload, ServerObservability, ServerProcessDiagnosticsEntry, ServerProcessDiagnosticsResult, ServerProcessResourceHistoryBucket, ServerProcessResourceHistoryFailureTag, ServerProcessResourceHistoryInput, ServerProcessResourceHistoryResult, ServerProcessResourceHistorySummary, ServerProcessSignal, ServerProvider, ServerProviderAuth, ServerProviderAuthStatus, ServerProviderAvailability, ServerProviderContinuation, ServerProviderModel, ServerProviderSkill, ServerProviderSlashCommand, ServerProviderSlashCommandInput, ServerProviderState, ServerProviderUpdateError, ServerProviderUpdateInput, ServerProviderUpdateState, ServerProviderUpdateStatus, ServerProviderUpdatedPayload, ServerProviderVersionAdvisory, ServerProviderVersionAdvisoryStatus, ServerProviders, ServerRemoveKeybindingInput, ServerRemoveKeybindingResult, ServerSelfUpdateCapability, ServerSelfUpdateError, ServerSelfUpdateInput, ServerSelfUpdateMethod, ServerSelfUpdateResult, ServerSettings, ServerSettingsError, ServerSettingsOperation, ServerSettingsPatch, ServerSignalProcessInput, ServerSignalProcessResult, ServerTraceDiagnosticsErrorKind, ServerTraceDiagnosticsFailureSummary, ServerTraceDiagnosticsLogEvent, ServerTraceDiagnosticsRecentFailure, ServerTraceDiagnosticsResult, ServerTraceDiagnosticsSpanOccurrence, ServerTraceDiagnosticsSpanSummary, ServerUpsertKeybindingInput, ServerUpsertKeybindingResult, SidebarAutoSettleAfterDays, SidebarProjectGroupingMode, SidebarProjectSortOrder, SidebarThreadPreviewCount, SidebarThreadSortOrder, SourceControlCloneProtocol, SourceControlCloneRepositoryInput, SourceControlCloneRepositoryResult, SourceControlDiscoveryResult, SourceControlDiscoveryStatus, SourceControlProviderAuth, SourceControlProviderAuthStatus, SourceControlProviderDiscoveryItem, SourceControlProviderError, SourceControlProviderInfo, SourceControlProviderKind, SourceControlPublishRepositoryInput, SourceControlPublishRepositoryResult, SourceControlPublishStatus, SourceControlRepositoryCloneUrls, SourceControlRepositoryError, SourceControlRepositoryInfo, SourceControlRepositoryLookupInput, SourceControlRepositoryVisibility, SourceControlWritingStyleMode, SourceControlWritingStyleSettings, T3ProjectFile, T3ProjectFileScript, T3_PROJECT_FILE_NAME, T3_PROJECT_FILE_SCHEMA_URL, THREAD_JUMP_KEYBINDING_COMMANDS, THREAD_KEYBINDING_COMMANDS, TOOL_LIFECYCLE_ITEM_TYPES, TerminalAttachInput, TerminalAttachStreamEvent, TerminalClearInput, TerminalCloseInput, TerminalCwdError, TerminalCwdNotDirectoryError, TerminalCwdNotFoundError, TerminalCwdStatError, TerminalError, TerminalEvent, TerminalHistoryError, TerminalMetadataStreamEvent, TerminalNotRunningError, TerminalOpenInput, TerminalResizeError, TerminalResizeInput, TerminalRestartInput, TerminalSessionLookupError, TerminalSessionSnapshot, TerminalSessionStatus, TerminalSummary, TerminalThreadInput, TerminalWriteError, TerminalWriteInput, TextGenerationError, ThreadActivityAppendedPayload, ThreadApprovalResponseRequestedPayload, ThreadArchivedPayload, ThreadCheckpointRevertRequestedPayload, ThreadCreatedPayload, ThreadDeletedPayload, ThreadEnvMode, ThreadId, ThreadInteractionModeSetPayload, ThreadMessageSentPayload, ThreadMetaUpdatedPayload, ThreadProposedPlanUpsertedPayload, ThreadRevertedPayload, ThreadRuntimeModeSetPayload, ThreadSessionSetPayload, ThreadSessionStopRequestedPayload, ThreadSettledPayload, ThreadSnoozedPayload, ThreadTokenUsageSnapshot, ThreadTurnDiff, ThreadTurnDiffCompletedPayload, ThreadTurnInterruptRequestedPayload, ThreadTurnStartCommand, ThreadTurnStartRequestedPayload, ThreadUnarchivedPayload, ThreadUnsettledPayload, ThreadUnsnoozedPayload, TimestampFormat, ToolLifecycleItemType, TrimmedNonEmptyString, TrimmedString, TurnCountRange, TurnId, UserInputQuestion, VcsCreateRefInput, VcsCreateRefResult, VcsCreateWorktreeInput, VcsCreateWorktreeResult, VcsDiscoveryItem, VcsDriverCapabilities, VcsDriverKind, VcsError, VcsFreshness, VcsFreshnessSource, VcsInitInput, VcsListRefsInput, VcsListRefsResult, VcsListRemotesResult, VcsListWorkspaceFilesResult, VcsOutputDecodeError, VcsProcessExitError, VcsProcessExitFailureKind, VcsProcessMissingExitCodeError, VcsProcessOutputLimitError, VcsProcessOutputReadError, VcsProcessSpawnError, VcsProcessStdinWriteError, VcsProcessTimeoutError, VcsPullInput, VcsPullResult, VcsRef, VcsRemote, VcsRemoveWorktreeInput, VcsRepositoryDetectionError, VcsRepositoryIdentity, VcsStatusInput, VcsStatusLocalResult, VcsStatusRemoteResult, VcsStatusResult, VcsStatusStreamEvent, VcsSwitchRefInput, VcsSwitchRefResult, VcsUnsupportedOperationError, WS_METHODS, WsAssetsCreateUrlRpc, WsCloudGetRelayClientStatusRpc, WsCloudInstallRelayClientRpc, WsFilesystemBrowseRpc, WsGitPreparePullRequestThreadRpc, WsGitResolvePullRequestRpc, WsGitRunStackedActionRpc, WsOrchestrationDispatchCommandRpc, WsOrchestrationGetArchivedShellSnapshotRpc, WsOrchestrationGetFullThreadDiffRpc, WsOrchestrationGetTurnDiffRpc, WsOrchestrationSubscribeShellRpc, WsOrchestrationSubscribeThreadRpc, WsPreviewAutomationConnectRpc, WsPreviewAutomationFocusHostRpc, WsPreviewAutomationRespondRpc, WsPreviewCloseRpc, WsPreviewListRpc, WsPreviewNavigateRpc, WsPreviewOpenRpc, WsPreviewRefreshRpc, WsPreviewReportStatusRpc, WsPreviewResizeRpc, WsProjectsListEntriesRpc, WsProjectsReadFileRpc, WsProjectsSearchEntriesRpc, WsProjectsWriteFileRpc, WsReviewGetDiffPreviewRpc, WsRpcGroup, WsServerDiscoverSourceControlRpc, WsServerGetBackgroundPolicyRpc, WsServerGetConfigRpc, WsServerGetProcessDiagnosticsRpc, WsServerGetProcessResourceHistoryRpc, WsServerGetResourceTelemetryHistoryRpc, WsServerGetSettingsRpc, WsServerGetTraceDiagnosticsRpc, WsServerProbeRpc, WsServerRefreshProvidersRpc, WsServerRemoveKeybindingRpc, WsServerReportClientActivityRpc, WsServerReportHostPowerStateRpc, WsServerRetryResourceTelemetryRpc, WsServerSignalProcessRpc, WsServerUpdateProviderRpc, WsServerUpdateServerRpc, WsServerUpdateSettingsRpc, WsServerUpsertKeybindingRpc, WsShellOpenInEditorRpc, WsSourceControlCloneRepositoryRpc, WsSourceControlLookupRepositoryRpc, WsSourceControlPublishRepositoryRpc, WsSubscribeAuthAccessRpc, WsSubscribeBackgroundPolicyRpc, WsSubscribeDiscoveredLocalServersRpc, WsSubscribePreviewEventsRpc, WsSubscribeResourceTelemetryRpc, WsSubscribeServerConfigRpc, WsSubscribeServerLifecycleRpc, WsSubscribeTerminalEventsRpc, WsSubscribeTerminalMetadataRpc, WsSubscribeVcsStatusRpc, WsTerminalAttachRpc, WsTerminalClearRpc, WsTerminalCloseRpc, WsTerminalOpenRpc, WsTerminalResizeRpc, WsTerminalRestartRpc, WsTerminalWriteRpc, WsVcsCreateRefRpc, WsVcsCreateWorktreeRpc, WsVcsInitRpc, WsVcsListRefsRpc, WsVcsPullRpc, WsVcsRefreshStatusRpc, WsVcsRemoveWorktreeRpc, WsVcsSwitchRefRpc, defaultInstanceIdForDriver, isExternalLauncherError, isProviderAvailable, isProviderDriverKind, isToolLifecycleItemType, makeProviderSettingsSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "t3code-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "CLI for t3code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
"codex",
|
|
9
9
|
"t3code"
|
|
10
10
|
],
|
|
11
|
-
"homepage": "https://github.com/tarik02/
|
|
11
|
+
"homepage": "https://github.com/tarik02-org/t3code-cli#readme",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/tarik02/
|
|
13
|
+
"url": "https://github.com/tarik02-org/t3code-cli/issues"
|
|
14
14
|
},
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"author": "tarik02 <taras.fomin@gmail.com>",
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/tarik02/
|
|
19
|
+
"url": "git+https://github.com/tarik02-org/t3code-cli.git"
|
|
20
20
|
},
|
|
21
21
|
"bin": {
|
|
22
22
|
"t3cli": "./dist/bin.js"
|
|
@@ -26,74 +26,89 @@
|
|
|
26
26
|
"src"
|
|
27
27
|
],
|
|
28
28
|
"type": "module",
|
|
29
|
-
"types": "./dist/
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
30
|
"exports": {
|
|
31
31
|
".": {
|
|
32
|
-
"types": "./dist/
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
33
|
"import": "./dist/index.js",
|
|
34
34
|
"default": "./dist/index.js"
|
|
35
35
|
},
|
|
36
36
|
"./application": {
|
|
37
|
-
"types": "./dist/
|
|
37
|
+
"types": "./dist/application.d.ts",
|
|
38
38
|
"import": "./dist/application.js",
|
|
39
39
|
"default": "./dist/application.js"
|
|
40
40
|
},
|
|
41
41
|
"./auth": {
|
|
42
|
-
"types": "./dist/
|
|
42
|
+
"types": "./dist/auth.d.ts",
|
|
43
43
|
"import": "./dist/auth.js",
|
|
44
44
|
"default": "./dist/auth.js"
|
|
45
45
|
},
|
|
46
46
|
"./cli": {
|
|
47
|
-
"types": "./dist/
|
|
47
|
+
"types": "./dist/cli.d.ts",
|
|
48
48
|
"import": "./dist/cli.js",
|
|
49
49
|
"default": "./dist/cli.js"
|
|
50
50
|
},
|
|
51
|
+
"./client-runtime/*": {
|
|
52
|
+
"types": "./dist/client-runtime/*.d.ts",
|
|
53
|
+
"import": "./dist/client-runtime/*.js",
|
|
54
|
+
"default": "./dist/client-runtime/*.js"
|
|
55
|
+
},
|
|
51
56
|
"./config": {
|
|
52
|
-
"types": "./dist/
|
|
57
|
+
"types": "./dist/config.d.ts",
|
|
53
58
|
"import": "./dist/config.js",
|
|
54
59
|
"default": "./dist/config.js"
|
|
55
60
|
},
|
|
56
61
|
"./connection": {
|
|
57
|
-
"types": "./dist/
|
|
62
|
+
"types": "./dist/connection.d.ts",
|
|
58
63
|
"import": "./dist/connection.js",
|
|
59
64
|
"default": "./dist/connection.js"
|
|
60
65
|
},
|
|
61
66
|
"./contracts": {
|
|
62
|
-
"types": "./dist/
|
|
67
|
+
"types": "./dist/contracts.d.ts",
|
|
63
68
|
"import": "./dist/contracts.js",
|
|
64
69
|
"default": "./dist/contracts.js"
|
|
65
70
|
},
|
|
66
71
|
"./node": {
|
|
67
|
-
"types": "./dist/
|
|
72
|
+
"types": "./dist/node.d.ts",
|
|
68
73
|
"import": "./dist/node.js",
|
|
69
74
|
"default": "./dist/node.js"
|
|
70
75
|
},
|
|
71
76
|
"./orchestration": {
|
|
72
|
-
"types": "./dist/
|
|
77
|
+
"types": "./dist/orchestration.d.ts",
|
|
73
78
|
"import": "./dist/orchestration.js",
|
|
74
79
|
"default": "./dist/orchestration.js"
|
|
75
80
|
},
|
|
81
|
+
"./preview": {
|
|
82
|
+
"types": "./dist/preview.d.ts",
|
|
83
|
+
"import": "./dist/preview.js",
|
|
84
|
+
"default": "./dist/preview.js"
|
|
85
|
+
},
|
|
76
86
|
"./rpc": {
|
|
77
|
-
"types": "./dist/
|
|
87
|
+
"types": "./dist/rpc.d.ts",
|
|
78
88
|
"import": "./dist/rpc.js",
|
|
79
89
|
"default": "./dist/rpc.js"
|
|
80
90
|
},
|
|
81
91
|
"./runtime": {
|
|
82
|
-
"types": "./dist/
|
|
92
|
+
"types": "./dist/runtime.d.ts",
|
|
83
93
|
"import": "./dist/runtime.js",
|
|
84
94
|
"default": "./dist/runtime.js"
|
|
85
95
|
},
|
|
96
|
+
"./shared/*": {
|
|
97
|
+
"types": "./dist/shared/*.d.ts",
|
|
98
|
+
"import": "./dist/shared/*.js",
|
|
99
|
+
"default": "./dist/shared/*.js"
|
|
100
|
+
},
|
|
86
101
|
"./t3tools": {
|
|
87
|
-
"types": "./dist/
|
|
102
|
+
"types": "./dist/t3tools.d.ts",
|
|
88
103
|
"import": "./dist/t3tools.js",
|
|
89
104
|
"default": "./dist/t3tools.js"
|
|
90
105
|
},
|
|
91
106
|
"./package.json": "./package.json"
|
|
92
107
|
},
|
|
93
108
|
"dependencies": {
|
|
94
|
-
"@effect/platform-node": "4.0.0-beta.
|
|
109
|
+
"@effect/platform-node": "4.0.0-beta.102",
|
|
95
110
|
"@napi-rs/keyring": "^1.3.0",
|
|
96
|
-
"effect": "4.0.0-beta.
|
|
111
|
+
"effect": "4.0.0-beta.102",
|
|
97
112
|
"marked": "^15.0.12",
|
|
98
113
|
"marked-terminal": "^7.3.0",
|
|
99
114
|
"string-width": "^8.2.2",
|
|
@@ -101,19 +116,21 @@
|
|
|
101
116
|
},
|
|
102
117
|
"devDependencies": {
|
|
103
118
|
"@changesets/cli": "^2.31.1",
|
|
104
|
-
"@effect/vitest": "4.0.0-beta.
|
|
119
|
+
"@effect/vitest": "4.0.0-beta.102",
|
|
105
120
|
"@t3tools/client-runtime": "link:upstream-t3code/packages/client-runtime",
|
|
121
|
+
"@t3tools/shared": "link:upstream-t3code/packages/shared",
|
|
106
122
|
"@total-typescript/shoehorn": "^0.1.2",
|
|
107
123
|
"@types/node": "^26.1.2",
|
|
108
124
|
"typescript": "^7.0.2",
|
|
109
125
|
"vite-plus": "^0.2.6",
|
|
126
|
+
"yaml": "^2.9.0",
|
|
110
127
|
"@t3tools/contracts": "0.0.30"
|
|
111
128
|
},
|
|
112
129
|
"engines": {
|
|
113
130
|
"node": ">=24.0.0"
|
|
114
131
|
},
|
|
115
132
|
"scripts": {
|
|
116
|
-
"build": "vp pack
|
|
133
|
+
"build": "vp pack",
|
|
117
134
|
"check": "vp check",
|
|
118
135
|
"format": "vp fmt",
|
|
119
136
|
"format:check": "vp fmt --check",
|
|
@@ -124,6 +141,7 @@
|
|
|
124
141
|
"release:version": "changeset version && pnpm format",
|
|
125
142
|
"release:check": "pnpm check && pnpm typecheck && pnpm pack --dry-run",
|
|
126
143
|
"release:publish": "changeset publish",
|
|
144
|
+
"sync-upstream": "node scripts/sync-upstream.ts",
|
|
127
145
|
"typecheck": "tsc --noEmit"
|
|
128
146
|
}
|
|
129
147
|
}
|
package/src/auth/index.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { T3Auth } from "./service.ts";
|
|
2
|
+
export type { AuthClientPresentationMetadata } from "../contracts/index.ts";
|
|
2
3
|
export { T3AuthLive, makeT3Auth } from "./layer.ts";
|
|
3
4
|
export { T3LocalAuth, T3LocalAuthLive, makeT3LocalAuth } from "./local.ts";
|
|
4
5
|
export { T3LocalAuthOrigin, T3LocalAuthOriginLive, makeT3LocalAuthOrigin } from "./local-origin.ts";
|
|
@@ -29,6 +30,7 @@ export type {
|
|
|
29
30
|
LocalAuthResult,
|
|
30
31
|
LocalAuthTokenInput,
|
|
31
32
|
LocalAuthTokenResult,
|
|
33
|
+
AuthPairInput,
|
|
32
34
|
PairingUrl,
|
|
33
35
|
PairResult,
|
|
34
36
|
PersistEnvironmentInput,
|
package/src/auth/pairing.ts
CHANGED
|
@@ -5,13 +5,13 @@ import { Url } from "effect/unstable/http";
|
|
|
5
5
|
|
|
6
6
|
import { AuthPairingUrlError, AuthTransportError } from "./error.ts";
|
|
7
7
|
import { T3AuthTransport } from "./transport.ts";
|
|
8
|
-
import type { PairingUrl, PairResult } from "./type.ts";
|
|
8
|
+
import type { AuthPairInput, PairingUrl, PairResult } from "./type.ts";
|
|
9
9
|
|
|
10
10
|
export class T3AuthPairing extends Context.Service<
|
|
11
11
|
T3AuthPairing,
|
|
12
12
|
{
|
|
13
13
|
readonly pair: (
|
|
14
|
-
|
|
14
|
+
input: AuthPairInput,
|
|
15
15
|
) => Effect.Effect<PairResult, AuthPairingUrlError | AuthTransportError>;
|
|
16
16
|
}
|
|
17
17
|
>()("t3cli/T3AuthPairing") {}
|
|
@@ -19,9 +19,12 @@ export class T3AuthPairing extends Context.Service<
|
|
|
19
19
|
export const makeT3AuthPairing = Effect.fn("makeT3AuthPairing")(function* () {
|
|
20
20
|
const transport = yield* T3AuthTransport;
|
|
21
21
|
|
|
22
|
-
const pair = Effect.fn("T3AuthPairingLive.pair")(function* (
|
|
23
|
-
const parsed = yield* parsePairingUrl(pairingUrl);
|
|
24
|
-
const result = yield* transport.bootstrapBearer(
|
|
22
|
+
const pair = Effect.fn("T3AuthPairingLive.pair")(function* (input: AuthPairInput) {
|
|
23
|
+
const parsed = yield* parsePairingUrl(input.pairingUrl);
|
|
24
|
+
const result = yield* transport.bootstrapBearer({
|
|
25
|
+
...parsed,
|
|
26
|
+
...(input.clientMetadata !== undefined ? { clientMetadata: input.clientMetadata } : {}),
|
|
27
|
+
});
|
|
25
28
|
return {
|
|
26
29
|
url: parsed.baseUrl,
|
|
27
30
|
token: result.sessionToken,
|
package/src/auth/service.ts
CHANGED
|
@@ -11,6 +11,7 @@ import type {
|
|
|
11
11
|
AuthUseResult,
|
|
12
12
|
LocalAuthInput,
|
|
13
13
|
LocalAuthResult,
|
|
14
|
+
AuthPairInput,
|
|
14
15
|
PairResult,
|
|
15
16
|
PersistEnvironmentInput,
|
|
16
17
|
} from "./type.ts";
|
|
@@ -18,7 +19,7 @@ import type {
|
|
|
18
19
|
export class T3Auth extends Context.Service<
|
|
19
20
|
T3Auth,
|
|
20
21
|
{
|
|
21
|
-
readonly pair: (
|
|
22
|
+
readonly pair: (input: AuthPairInput) => Effect.Effect<PairResult, AuthError>;
|
|
22
23
|
readonly local: (input: LocalAuthInput) => Effect.Effect<LocalAuthResult, AuthError>;
|
|
23
24
|
readonly writeConfig: (input: AuthConfigInput) => Effect.Effect<void, AuthError>;
|
|
24
25
|
readonly persistEnvironment: (
|
package/src/auth/transport.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as Effect from "effect/Effect";
|
|
|
9
9
|
import * as Layer from "effect/Layer";
|
|
10
10
|
import { HttpClient } from "effect/unstable/http";
|
|
11
11
|
|
|
12
|
+
import type { AuthClientPresentationMetadata } from "../contracts/index.ts";
|
|
12
13
|
import { AuthTransportError } from "./error.ts";
|
|
13
14
|
import {
|
|
14
15
|
type AuthBearerBootstrapResult,
|
|
@@ -27,6 +28,7 @@ export class T3AuthTransport extends Context.Service<
|
|
|
27
28
|
readonly bootstrapBearer: (input: {
|
|
28
29
|
readonly baseUrl: string;
|
|
29
30
|
readonly credential: string;
|
|
31
|
+
readonly clientMetadata?: AuthClientPresentationMetadata;
|
|
30
32
|
}) => Effect.Effect<AuthBearerBootstrapResult, AuthTransportError>;
|
|
31
33
|
readonly getSession: (
|
|
32
34
|
connection: AuthTransportConnection,
|
|
@@ -43,10 +45,12 @@ const makeT3AuthTransport = Effect.fn("makeT3AuthTransport")(function* () {
|
|
|
43
45
|
const bootstrapBearer = Effect.fn("AuthTransport.bootstrapBearer")(function* (input: {
|
|
44
46
|
readonly baseUrl: string;
|
|
45
47
|
readonly credential: string;
|
|
48
|
+
readonly clientMetadata?: AuthClientPresentationMetadata;
|
|
46
49
|
}) {
|
|
47
50
|
const result = yield* bootstrapRemoteBearerSession({
|
|
48
51
|
httpBaseUrl: input.baseUrl,
|
|
49
52
|
credential: input.credential,
|
|
53
|
+
...(input.clientMetadata !== undefined ? { clientMetadata: input.clientMetadata } : {}),
|
|
50
54
|
}).pipe(
|
|
51
55
|
Effect.provideService(HttpClient.HttpClient, httpClient),
|
|
52
56
|
Effect.mapError(
|
package/src/auth/type.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { AuthClientPresentationMetadata } from "../contracts/index.ts";
|
|
1
2
|
import type { AuthBearerBootstrapResult } from "./schema.ts";
|
|
2
3
|
import type { AuthSessionState } from "./schema.ts";
|
|
3
4
|
|
|
@@ -8,6 +9,11 @@ export type PairingUrl = {
|
|
|
8
9
|
readonly credential: string;
|
|
9
10
|
};
|
|
10
11
|
|
|
12
|
+
export interface AuthPairInput {
|
|
13
|
+
readonly pairingUrl: string;
|
|
14
|
+
readonly clientMetadata?: AuthClientPresentationMetadata;
|
|
15
|
+
}
|
|
16
|
+
|
|
11
17
|
export type AuthConfigInput = {
|
|
12
18
|
readonly name: string;
|
|
13
19
|
readonly url: string;
|