mcp-codex-worker 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +135 -0
- package/bin/mcp-codex-worker.mjs +17 -0
- package/dist/src/app.d.ts +29 -0
- package/dist/src/app.js +353 -0
- package/dist/src/app.js.map +1 -0
- package/dist/src/config/defaults.d.ts +11 -0
- package/dist/src/config/defaults.js +12 -0
- package/dist/src/config/defaults.js.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +64 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/mcp/tool-definitions.d.ts +180 -0
- package/dist/src/mcp/tool-definitions.js +241 -0
- package/dist/src/mcp/tool-definitions.js.map +1 -0
- package/dist/src/services/app-server-client.d.ts +65 -0
- package/dist/src/services/app-server-client.js +511 -0
- package/dist/src/services/app-server-client.js.map +1 -0
- package/dist/src/services/codex-runtime.d.ts +84 -0
- package/dist/src/services/codex-runtime.js +371 -0
- package/dist/src/services/codex-runtime.js.map +1 -0
- package/dist/src/services/fleet-mode.d.ts +3 -0
- package/dist/src/services/fleet-mode.js +21 -0
- package/dist/src/services/fleet-mode.js.map +1 -0
- package/dist/src/services/model-catalog.d.ts +22 -0
- package/dist/src/services/model-catalog.js +51 -0
- package/dist/src/services/model-catalog.js.map +1 -0
- package/dist/src/services/profile-manager.d.ts +29 -0
- package/dist/src/services/profile-manager.js +82 -0
- package/dist/src/services/profile-manager.js.map +1 -0
- package/dist/src/types/codex.d.ts +50 -0
- package/dist/src/types/codex.js +2 -0
- package/dist/src/types/codex.js.map +1 -0
- package/package.json +53 -0
- package/src/app.ts +417 -0
- package/src/config/defaults.ts +14 -0
- package/src/index.ts +84 -0
- package/src/mcp/tool-definitions.ts +280 -0
- package/src/protocol/AbsolutePathBuf.ts +14 -0
- package/src/protocol/AgentPath.ts +5 -0
- package/src/protocol/ApplyPatchApprovalParams.ts +21 -0
- package/src/protocol/ApplyPatchApprovalResponse.ts +6 -0
- package/src/protocol/AuthMode.ts +8 -0
- package/src/protocol/ClientInfo.ts +5 -0
- package/src/protocol/ClientNotification.ts +5 -0
- package/src/protocol/ClientRequest.ts +67 -0
- package/src/protocol/CollaborationMode.ts +10 -0
- package/src/protocol/ContentItem.ts +5 -0
- package/src/protocol/ConversationGitInfo.ts +5 -0
- package/src/protocol/ConversationSummary.ts +8 -0
- package/src/protocol/ExecCommandApprovalParams.ts +16 -0
- package/src/protocol/ExecCommandApprovalResponse.ts +6 -0
- package/src/protocol/ExecPolicyAmendment.ts +12 -0
- package/src/protocol/FileChange.ts +5 -0
- package/src/protocol/ForcedLoginMethod.ts +5 -0
- package/src/protocol/FunctionCallOutputBody.ts +6 -0
- package/src/protocol/FunctionCallOutputContentItem.ts +10 -0
- package/src/protocol/FuzzyFileSearchMatchType.ts +5 -0
- package/src/protocol/FuzzyFileSearchParams.ts +5 -0
- package/src/protocol/FuzzyFileSearchResponse.ts +6 -0
- package/src/protocol/FuzzyFileSearchResult.ts +9 -0
- package/src/protocol/FuzzyFileSearchSessionCompletedNotification.ts +5 -0
- package/src/protocol/FuzzyFileSearchSessionUpdatedNotification.ts +6 -0
- package/src/protocol/GetAuthStatusParams.ts +5 -0
- package/src/protocol/GetAuthStatusResponse.ts +6 -0
- package/src/protocol/GetConversationSummaryParams.ts +6 -0
- package/src/protocol/GetConversationSummaryResponse.ts +6 -0
- package/src/protocol/GhostCommit.ts +8 -0
- package/src/protocol/GitDiffToRemoteParams.ts +5 -0
- package/src/protocol/GitDiffToRemoteResponse.ts +6 -0
- package/src/protocol/GitSha.ts +5 -0
- package/src/protocol/ImageDetail.ts +5 -0
- package/src/protocol/InitializeCapabilities.ts +17 -0
- package/src/protocol/InitializeParams.ts +7 -0
- package/src/protocol/InitializeResponse.ts +20 -0
- package/src/protocol/InputModality.ts +8 -0
- package/src/protocol/LocalShellAction.ts +6 -0
- package/src/protocol/LocalShellExecAction.ts +5 -0
- package/src/protocol/LocalShellStatus.ts +5 -0
- package/src/protocol/MessagePhase.ts +11 -0
- package/src/protocol/ModeKind.ts +8 -0
- package/src/protocol/NetworkPolicyAmendment.ts +6 -0
- package/src/protocol/NetworkPolicyRuleAction.ts +5 -0
- package/src/protocol/ParsedCommand.ts +12 -0
- package/src/protocol/Personality.ts +5 -0
- package/src/protocol/PlanType.ts +5 -0
- package/src/protocol/RealtimeConversationVersion.ts +5 -0
- package/src/protocol/ReasoningEffort.ts +8 -0
- package/src/protocol/ReasoningItemContent.ts +5 -0
- package/src/protocol/ReasoningItemReasoningSummary.ts +5 -0
- package/src/protocol/ReasoningSummary.ts +10 -0
- package/src/protocol/RequestId.ts +5 -0
- package/src/protocol/Resource.ts +9 -0
- package/src/protocol/ResourceTemplate.ts +9 -0
- package/src/protocol/ResponseItem.ts +18 -0
- package/src/protocol/ReviewDecision.ts +10 -0
- package/src/protocol/ServerNotification.ts +60 -0
- package/src/protocol/ServerRequest.ts +18 -0
- package/src/protocol/ServiceTier.ts +5 -0
- package/src/protocol/SessionSource.ts +6 -0
- package/src/protocol/Settings.ts +9 -0
- package/src/protocol/SubAgentSource.ts +7 -0
- package/src/protocol/ThreadId.ts +5 -0
- package/src/protocol/Tool.ts +9 -0
- package/src/protocol/Verbosity.ts +9 -0
- package/src/protocol/WebSearchAction.ts +5 -0
- package/src/protocol/WebSearchContextSize.ts +5 -0
- package/src/protocol/WebSearchLocation.ts +5 -0
- package/src/protocol/WebSearchMode.ts +5 -0
- package/src/protocol/WebSearchToolConfig.ts +7 -0
- package/src/protocol/index.ts +75 -0
- package/src/protocol/serde_json/JsonValue.ts +5 -0
- package/src/protocol/v2/Account.ts +6 -0
- package/src/protocol/v2/AccountLoginCompletedNotification.ts +5 -0
- package/src/protocol/v2/AccountRateLimitsUpdatedNotification.ts +6 -0
- package/src/protocol/v2/AccountUpdatedNotification.ts +7 -0
- package/src/protocol/v2/AdditionalFileSystemPermissions.ts +6 -0
- package/src/protocol/v2/AdditionalNetworkPermissions.ts +5 -0
- package/src/protocol/v2/AdditionalPermissionProfile.ts +7 -0
- package/src/protocol/v2/AgentMessageDeltaNotification.ts +5 -0
- package/src/protocol/v2/AnalyticsConfig.ts +6 -0
- package/src/protocol/v2/AppBranding.ts +8 -0
- package/src/protocol/v2/AppInfo.ts +19 -0
- package/src/protocol/v2/AppListUpdatedNotification.ts +9 -0
- package/src/protocol/v2/AppMetadata.ts +7 -0
- package/src/protocol/v2/AppReview.ts +5 -0
- package/src/protocol/v2/AppScreenshot.ts +5 -0
- package/src/protocol/v2/AppSummary.ts +8 -0
- package/src/protocol/v2/AppToolApproval.ts +5 -0
- package/src/protocol/v2/AppToolsConfig.ts +6 -0
- package/src/protocol/v2/ApprovalsReviewer.ts +12 -0
- package/src/protocol/v2/AppsConfig.ts +8 -0
- package/src/protocol/v2/AppsDefaultConfig.ts +5 -0
- package/src/protocol/v2/AppsListParams.ts +24 -0
- package/src/protocol/v2/AppsListResponse.ts +14 -0
- package/src/protocol/v2/AskForApproval.ts +5 -0
- package/src/protocol/v2/ByteRange.ts +5 -0
- package/src/protocol/v2/CancelLoginAccountParams.ts +5 -0
- package/src/protocol/v2/CancelLoginAccountResponse.ts +6 -0
- package/src/protocol/v2/CancelLoginAccountStatus.ts +5 -0
- package/src/protocol/v2/ChatgptAuthTokensRefreshParams.ts +16 -0
- package/src/protocol/v2/ChatgptAuthTokensRefreshReason.ts +5 -0
- package/src/protocol/v2/ChatgptAuthTokensRefreshResponse.ts +5 -0
- package/src/protocol/v2/CodexErrorInfo.ts +12 -0
- package/src/protocol/v2/CollabAgentState.ts +6 -0
- package/src/protocol/v2/CollabAgentStatus.ts +5 -0
- package/src/protocol/v2/CollabAgentTool.ts +5 -0
- package/src/protocol/v2/CollabAgentToolCallStatus.ts +5 -0
- package/src/protocol/v2/CollaborationModeMask.ts +10 -0
- package/src/protocol/v2/CommandAction.ts +5 -0
- package/src/protocol/v2/CommandExecOutputDeltaNotification.ts +30 -0
- package/src/protocol/v2/CommandExecOutputStream.ts +8 -0
- package/src/protocol/v2/CommandExecParams.ts +97 -0
- package/src/protocol/v2/CommandExecResizeParams.ts +18 -0
- package/src/protocol/v2/CommandExecResizeResponse.ts +8 -0
- package/src/protocol/v2/CommandExecResponse.ts +24 -0
- package/src/protocol/v2/CommandExecTerminalSize.ts +16 -0
- package/src/protocol/v2/CommandExecTerminateParams.ts +13 -0
- package/src/protocol/v2/CommandExecTerminateResponse.ts +8 -0
- package/src/protocol/v2/CommandExecWriteParams.ts +22 -0
- package/src/protocol/v2/CommandExecWriteResponse.ts +8 -0
- package/src/protocol/v2/CommandExecutionApprovalDecision.ts +7 -0
- package/src/protocol/v2/CommandExecutionOutputDeltaNotification.ts +5 -0
- package/src/protocol/v2/CommandExecutionRequestApprovalParams.ts +57 -0
- package/src/protocol/v2/CommandExecutionRequestApprovalResponse.ts +6 -0
- package/src/protocol/v2/CommandExecutionSource.ts +5 -0
- package/src/protocol/v2/CommandExecutionStatus.ts +5 -0
- package/src/protocol/v2/Config.ts +23 -0
- package/src/protocol/v2/ConfigBatchWriteParams.ts +14 -0
- package/src/protocol/v2/ConfigEdit.ts +7 -0
- package/src/protocol/v2/ConfigLayer.ts +7 -0
- package/src/protocol/v2/ConfigLayerMetadata.ts +6 -0
- package/src/protocol/v2/ConfigLayerSource.ts +16 -0
- package/src/protocol/v2/ConfigReadParams.ts +11 -0
- package/src/protocol/v2/ConfigReadResponse.ts +8 -0
- package/src/protocol/v2/ConfigRequirements.ts +9 -0
- package/src/protocol/v2/ConfigRequirementsReadResponse.ts +10 -0
- package/src/protocol/v2/ConfigValueWriteParams.ts +11 -0
- package/src/protocol/v2/ConfigWarningNotification.ts +22 -0
- package/src/protocol/v2/ConfigWriteResponse.ts +12 -0
- package/src/protocol/v2/ContextCompactedNotification.ts +8 -0
- package/src/protocol/v2/CreditsSnapshot.ts +5 -0
- package/src/protocol/v2/DeprecationNoticeNotification.ts +13 -0
- package/src/protocol/v2/DynamicToolCallOutputContentItem.ts +5 -0
- package/src/protocol/v2/DynamicToolCallParams.ts +6 -0
- package/src/protocol/v2/DynamicToolCallResponse.ts +6 -0
- package/src/protocol/v2/DynamicToolCallStatus.ts +5 -0
- package/src/protocol/v2/DynamicToolSpec.ts +6 -0
- package/src/protocol/v2/ErrorNotification.ts +6 -0
- package/src/protocol/v2/ExecPolicyAmendment.ts +5 -0
- package/src/protocol/v2/ExperimentalFeature.ts +37 -0
- package/src/protocol/v2/ExperimentalFeatureEnablementSetParams.ts +12 -0
- package/src/protocol/v2/ExperimentalFeatureEnablementSetResponse.ts +9 -0
- package/src/protocol/v2/ExperimentalFeatureListParams.ts +13 -0
- package/src/protocol/v2/ExperimentalFeatureListResponse.ts +11 -0
- package/src/protocol/v2/ExperimentalFeatureStage.ts +5 -0
- package/src/protocol/v2/ExternalAgentConfigDetectParams.ts +13 -0
- package/src/protocol/v2/ExternalAgentConfigDetectResponse.ts +6 -0
- package/src/protocol/v2/ExternalAgentConfigImportParams.ts +6 -0
- package/src/protocol/v2/ExternalAgentConfigImportResponse.ts +5 -0
- package/src/protocol/v2/ExternalAgentConfigMigrationItem.ts +10 -0
- package/src/protocol/v2/ExternalAgentConfigMigrationItemType.ts +5 -0
- package/src/protocol/v2/FeedbackUploadParams.ts +5 -0
- package/src/protocol/v2/FeedbackUploadResponse.ts +5 -0
- package/src/protocol/v2/FileChangeApprovalDecision.ts +5 -0
- package/src/protocol/v2/FileChangeOutputDeltaNotification.ts +5 -0
- package/src/protocol/v2/FileChangeRequestApprovalParams.ts +14 -0
- package/src/protocol/v2/FileChangeRequestApprovalResponse.ts +6 -0
- package/src/protocol/v2/FileUpdateChange.ts +6 -0
- package/src/protocol/v2/FsChangedNotification.ts +17 -0
- package/src/protocol/v2/FsCopyParams.ts +21 -0
- package/src/protocol/v2/FsCopyResponse.ts +8 -0
- package/src/protocol/v2/FsCreateDirectoryParams.ts +17 -0
- package/src/protocol/v2/FsCreateDirectoryResponse.ts +8 -0
- package/src/protocol/v2/FsGetMetadataParams.ts +13 -0
- package/src/protocol/v2/FsGetMetadataResponse.ts +24 -0
- package/src/protocol/v2/FsReadDirectoryEntry.ts +20 -0
- package/src/protocol/v2/FsReadDirectoryParams.ts +13 -0
- package/src/protocol/v2/FsReadDirectoryResponse.ts +13 -0
- package/src/protocol/v2/FsReadFileParams.ts +13 -0
- package/src/protocol/v2/FsReadFileResponse.ts +12 -0
- package/src/protocol/v2/FsRemoveParams.ts +21 -0
- package/src/protocol/v2/FsRemoveResponse.ts +8 -0
- package/src/protocol/v2/FsUnwatchParams.ts +12 -0
- package/src/protocol/v2/FsUnwatchResponse.ts +8 -0
- package/src/protocol/v2/FsWatchParams.ts +13 -0
- package/src/protocol/v2/FsWatchResponse.ts +17 -0
- package/src/protocol/v2/FsWriteFileParams.ts +17 -0
- package/src/protocol/v2/FsWriteFileResponse.ts +8 -0
- package/src/protocol/v2/GetAccountParams.ts +13 -0
- package/src/protocol/v2/GetAccountRateLimitsResponse.ts +14 -0
- package/src/protocol/v2/GetAccountResponse.ts +6 -0
- package/src/protocol/v2/GitInfo.ts +5 -0
- package/src/protocol/v2/GrantedPermissionProfile.ts +7 -0
- package/src/protocol/v2/GuardianApprovalReview.ts +12 -0
- package/src/protocol/v2/GuardianApprovalReviewStatus.ts +8 -0
- package/src/protocol/v2/GuardianRiskLevel.ts +8 -0
- package/src/protocol/v2/HookCompletedNotification.ts +6 -0
- package/src/protocol/v2/HookEventName.ts +5 -0
- package/src/protocol/v2/HookExecutionMode.ts +5 -0
- package/src/protocol/v2/HookHandlerType.ts +5 -0
- package/src/protocol/v2/HookOutputEntry.ts +6 -0
- package/src/protocol/v2/HookOutputEntryKind.ts +5 -0
- package/src/protocol/v2/HookPromptFragment.ts +5 -0
- package/src/protocol/v2/HookRunStatus.ts +5 -0
- package/src/protocol/v2/HookRunSummary.ts +11 -0
- package/src/protocol/v2/HookScope.ts +5 -0
- package/src/protocol/v2/HookStartedNotification.ts +6 -0
- package/src/protocol/v2/ItemCompletedNotification.ts +6 -0
- package/src/protocol/v2/ItemGuardianApprovalReviewCompletedNotification.ts +15 -0
- package/src/protocol/v2/ItemGuardianApprovalReviewStartedNotification.ts +15 -0
- package/src/protocol/v2/ItemStartedNotification.ts +6 -0
- package/src/protocol/v2/ListMcpServerStatusParams.ts +13 -0
- package/src/protocol/v2/ListMcpServerStatusResponse.ts +11 -0
- package/src/protocol/v2/LoginAccountParams.ts +21 -0
- package/src/protocol/v2/LoginAccountResponse.ts +17 -0
- package/src/protocol/v2/LogoutAccountResponse.ts +5 -0
- package/src/protocol/v2/MarketplaceInterface.ts +5 -0
- package/src/protocol/v2/MarketplaceLoadErrorInfo.ts +6 -0
- package/src/protocol/v2/McpAuthStatus.ts +5 -0
- package/src/protocol/v2/McpElicitationArrayType.ts +5 -0
- package/src/protocol/v2/McpElicitationBooleanSchema.ts +6 -0
- package/src/protocol/v2/McpElicitationBooleanType.ts +5 -0
- package/src/protocol/v2/McpElicitationConstOption.ts +5 -0
- package/src/protocol/v2/McpElicitationEnumSchema.ts +8 -0
- package/src/protocol/v2/McpElicitationLegacyTitledEnumSchema.ts +6 -0
- package/src/protocol/v2/McpElicitationMultiSelectEnumSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationNumberSchema.ts +6 -0
- package/src/protocol/v2/McpElicitationNumberType.ts +5 -0
- package/src/protocol/v2/McpElicitationObjectType.ts +5 -0
- package/src/protocol/v2/McpElicitationPrimitiveSchema.ts +9 -0
- package/src/protocol/v2/McpElicitationSchema.ts +13 -0
- package/src/protocol/v2/McpElicitationSingleSelectEnumSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationStringFormat.ts +5 -0
- package/src/protocol/v2/McpElicitationStringSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationStringType.ts +5 -0
- package/src/protocol/v2/McpElicitationTitledEnumItems.ts +6 -0
- package/src/protocol/v2/McpElicitationTitledMultiSelectEnumSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationTitledSingleSelectEnumSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationUntitledEnumItems.ts +6 -0
- package/src/protocol/v2/McpElicitationUntitledMultiSelectEnumSchema.ts +7 -0
- package/src/protocol/v2/McpElicitationUntitledSingleSelectEnumSchema.ts +6 -0
- package/src/protocol/v2/McpServerElicitationAction.ts +5 -0
- package/src/protocol/v2/McpServerElicitationRequestParams.ts +16 -0
- package/src/protocol/v2/McpServerElicitationRequestResponse.ts +17 -0
- package/src/protocol/v2/McpServerOauthLoginCompletedNotification.ts +5 -0
- package/src/protocol/v2/McpServerOauthLoginParams.ts +5 -0
- package/src/protocol/v2/McpServerOauthLoginResponse.ts +5 -0
- package/src/protocol/v2/McpServerRefreshResponse.ts +5 -0
- package/src/protocol/v2/McpServerStartupState.ts +5 -0
- package/src/protocol/v2/McpServerStatus.ts +9 -0
- package/src/protocol/v2/McpServerStatusUpdatedNotification.ts +6 -0
- package/src/protocol/v2/McpToolCallError.ts +5 -0
- package/src/protocol/v2/McpToolCallProgressNotification.ts +5 -0
- package/src/protocol/v2/McpToolCallResult.ts +6 -0
- package/src/protocol/v2/McpToolCallStatus.ts +5 -0
- package/src/protocol/v2/MemoryCitation.ts +6 -0
- package/src/protocol/v2/MemoryCitationEntry.ts +5 -0
- package/src/protocol/v2/MergeStrategy.ts +5 -0
- package/src/protocol/v2/Model.ts +10 -0
- package/src/protocol/v2/ModelAvailabilityNux.ts +5 -0
- package/src/protocol/v2/ModelListParams.ts +17 -0
- package/src/protocol/v2/ModelListResponse.ts +11 -0
- package/src/protocol/v2/ModelRerouteReason.ts +5 -0
- package/src/protocol/v2/ModelReroutedNotification.ts +6 -0
- package/src/protocol/v2/ModelUpgradeInfo.ts +5 -0
- package/src/protocol/v2/NetworkAccess.ts +5 -0
- package/src/protocol/v2/NetworkApprovalContext.ts +6 -0
- package/src/protocol/v2/NetworkApprovalProtocol.ts +5 -0
- package/src/protocol/v2/NetworkDomainPermission.ts +5 -0
- package/src/protocol/v2/NetworkPolicyAmendment.ts +6 -0
- package/src/protocol/v2/NetworkPolicyRuleAction.ts +5 -0
- package/src/protocol/v2/NetworkRequirements.ts +32 -0
- package/src/protocol/v2/NetworkUnixSocketPermission.ts +5 -0
- package/src/protocol/v2/NonSteerableTurnKind.ts +5 -0
- package/src/protocol/v2/OverriddenMetadata.ts +7 -0
- package/src/protocol/v2/PatchApplyStatus.ts +5 -0
- package/src/protocol/v2/PatchChangeKind.ts +5 -0
- package/src/protocol/v2/PermissionGrantScope.ts +5 -0
- package/src/protocol/v2/PermissionsRequestApprovalParams.ts +6 -0
- package/src/protocol/v2/PermissionsRequestApprovalResponse.ts +7 -0
- package/src/protocol/v2/PlanDeltaNotification.ts +9 -0
- package/src/protocol/v2/PluginAuthPolicy.ts +5 -0
- package/src/protocol/v2/PluginDetail.ts +9 -0
- package/src/protocol/v2/PluginInstallParams.ts +10 -0
- package/src/protocol/v2/PluginInstallPolicy.ts +5 -0
- package/src/protocol/v2/PluginInstallResponse.ts +7 -0
- package/src/protocol/v2/PluginInterface.ts +11 -0
- package/src/protocol/v2/PluginListParams.ts +16 -0
- package/src/protocol/v2/PluginListResponse.ts +7 -0
- package/src/protocol/v2/PluginMarketplaceEntry.ts +8 -0
- package/src/protocol/v2/PluginReadParams.ts +6 -0
- package/src/protocol/v2/PluginReadResponse.ts +6 -0
- package/src/protocol/v2/PluginSource.ts +6 -0
- package/src/protocol/v2/PluginSummary.ts +9 -0
- package/src/protocol/v2/PluginUninstallParams.ts +9 -0
- package/src/protocol/v2/PluginUninstallResponse.ts +5 -0
- package/src/protocol/v2/ProfileV2.ts +19 -0
- package/src/protocol/v2/RateLimitSnapshot.ts +8 -0
- package/src/protocol/v2/RateLimitWindow.ts +5 -0
- package/src/protocol/v2/RawResponseItemCompletedNotification.ts +6 -0
- package/src/protocol/v2/ReadOnlyAccess.ts +6 -0
- package/src/protocol/v2/ReasoningEffortOption.ts +6 -0
- package/src/protocol/v2/ReasoningSummaryPartAddedNotification.ts +5 -0
- package/src/protocol/v2/ReasoningSummaryTextDeltaNotification.ts +5 -0
- package/src/protocol/v2/ReasoningTextDeltaNotification.ts +5 -0
- package/src/protocol/v2/RequestPermissionProfile.ts +7 -0
- package/src/protocol/v2/ResidencyRequirement.ts +5 -0
- package/src/protocol/v2/ReviewDelivery.ts +5 -0
- package/src/protocol/v2/ReviewStartParams.ts +12 -0
- package/src/protocol/v2/ReviewStartResponse.ts +13 -0
- package/src/protocol/v2/ReviewTarget.ts +9 -0
- package/src/protocol/v2/SandboxMode.ts +5 -0
- package/src/protocol/v2/SandboxPolicy.ts +8 -0
- package/src/protocol/v2/SandboxWorkspaceWrite.ts +5 -0
- package/src/protocol/v2/ServerRequestResolvedNotification.ts +6 -0
- package/src/protocol/v2/SessionSource.ts +6 -0
- package/src/protocol/v2/SkillDependencies.ts +6 -0
- package/src/protocol/v2/SkillErrorInfo.ts +5 -0
- package/src/protocol/v2/SkillInterface.ts +5 -0
- package/src/protocol/v2/SkillMetadata.ts +12 -0
- package/src/protocol/v2/SkillScope.ts +5 -0
- package/src/protocol/v2/SkillSummary.ts +6 -0
- package/src/protocol/v2/SkillToolDependency.ts +5 -0
- package/src/protocol/v2/SkillsChangedNotification.ts +11 -0
- package/src/protocol/v2/SkillsConfigWriteParams.ts +14 -0
- package/src/protocol/v2/SkillsConfigWriteResponse.ts +5 -0
- package/src/protocol/v2/SkillsListEntry.ts +7 -0
- package/src/protocol/v2/SkillsListExtraRootsForCwd.ts +5 -0
- package/src/protocol/v2/SkillsListParams.ts +18 -0
- package/src/protocol/v2/SkillsListResponse.ts +6 -0
- package/src/protocol/v2/TerminalInteractionNotification.ts +5 -0
- package/src/protocol/v2/TextElement.ts +14 -0
- package/src/protocol/v2/TextPosition.ts +13 -0
- package/src/protocol/v2/TextRange.ts +6 -0
- package/src/protocol/v2/Thread.ts +72 -0
- package/src/protocol/v2/ThreadActiveFlag.ts +5 -0
- package/src/protocol/v2/ThreadArchiveParams.ts +5 -0
- package/src/protocol/v2/ThreadArchiveResponse.ts +5 -0
- package/src/protocol/v2/ThreadArchivedNotification.ts +5 -0
- package/src/protocol/v2/ThreadClosedNotification.ts +5 -0
- package/src/protocol/v2/ThreadCompactStartParams.ts +5 -0
- package/src/protocol/v2/ThreadCompactStartResponse.ts +5 -0
- package/src/protocol/v2/ThreadForkParams.ts +34 -0
- package/src/protocol/v2/ThreadForkResponse.ts +15 -0
- package/src/protocol/v2/ThreadItem.ts +100 -0
- package/src/protocol/v2/ThreadListParams.ts +43 -0
- package/src/protocol/v2/ThreadListResponse.ts +11 -0
- package/src/protocol/v2/ThreadLoadedListParams.ts +13 -0
- package/src/protocol/v2/ThreadLoadedListResponse.ts +14 -0
- package/src/protocol/v2/ThreadMetadataGitInfoUpdateParams.ts +20 -0
- package/src/protocol/v2/ThreadMetadataUpdateParams.ts +12 -0
- package/src/protocol/v2/ThreadMetadataUpdateResponse.ts +6 -0
- package/src/protocol/v2/ThreadNameUpdatedNotification.ts +5 -0
- package/src/protocol/v2/ThreadReadParams.ts +9 -0
- package/src/protocol/v2/ThreadReadResponse.ts +6 -0
- package/src/protocol/v2/ThreadRealtimeAudioChunk.ts +8 -0
- package/src/protocol/v2/ThreadRealtimeClosedNotification.ts +8 -0
- package/src/protocol/v2/ThreadRealtimeErrorNotification.ts +8 -0
- package/src/protocol/v2/ThreadRealtimeItemAddedNotification.ts +9 -0
- package/src/protocol/v2/ThreadRealtimeOutputAudioDeltaNotification.ts +9 -0
- package/src/protocol/v2/ThreadRealtimeStartedNotification.ts +9 -0
- package/src/protocol/v2/ThreadRealtimeTranscriptUpdatedNotification.ts +9 -0
- package/src/protocol/v2/ThreadResumeParams.ts +43 -0
- package/src/protocol/v2/ThreadResumeResponse.ts +15 -0
- package/src/protocol/v2/ThreadRollbackParams.ts +12 -0
- package/src/protocol/v2/ThreadRollbackResponse.ts +14 -0
- package/src/protocol/v2/ThreadSetNameParams.ts +5 -0
- package/src/protocol/v2/ThreadSetNameResponse.ts +5 -0
- package/src/protocol/v2/ThreadShellCommandParams.ts +12 -0
- package/src/protocol/v2/ThreadShellCommandResponse.ts +5 -0
- package/src/protocol/v2/ThreadSortKey.ts +5 -0
- package/src/protocol/v2/ThreadSourceKind.ts +5 -0
- package/src/protocol/v2/ThreadStartParams.ts +23 -0
- package/src/protocol/v2/ThreadStartResponse.ts +15 -0
- package/src/protocol/v2/ThreadStartedNotification.ts +6 -0
- package/src/protocol/v2/ThreadStatus.ts +6 -0
- package/src/protocol/v2/ThreadStatusChangedNotification.ts +6 -0
- package/src/protocol/v2/ThreadTokenUsage.ts +6 -0
- package/src/protocol/v2/ThreadTokenUsageUpdatedNotification.ts +6 -0
- package/src/protocol/v2/ThreadUnarchiveParams.ts +5 -0
- package/src/protocol/v2/ThreadUnarchiveResponse.ts +6 -0
- package/src/protocol/v2/ThreadUnarchivedNotification.ts +5 -0
- package/src/protocol/v2/ThreadUnsubscribeParams.ts +5 -0
- package/src/protocol/v2/ThreadUnsubscribeResponse.ts +6 -0
- package/src/protocol/v2/ThreadUnsubscribeStatus.ts +5 -0
- package/src/protocol/v2/TokenUsageBreakdown.ts +5 -0
- package/src/protocol/v2/ToolRequestUserInputAnswer.ts +8 -0
- package/src/protocol/v2/ToolRequestUserInputOption.ts +8 -0
- package/src/protocol/v2/ToolRequestUserInputParams.ts +9 -0
- package/src/protocol/v2/ToolRequestUserInputQuestion.ts +9 -0
- package/src/protocol/v2/ToolRequestUserInputResponse.ts +9 -0
- package/src/protocol/v2/ToolsV2.ts +6 -0
- package/src/protocol/v2/Turn.ts +18 -0
- package/src/protocol/v2/TurnCompletedNotification.ts +6 -0
- package/src/protocol/v2/TurnDiffUpdatedNotification.ts +9 -0
- package/src/protocol/v2/TurnError.ts +6 -0
- package/src/protocol/v2/TurnInterruptParams.ts +5 -0
- package/src/protocol/v2/TurnInterruptResponse.ts +5 -0
- package/src/protocol/v2/TurnPlanStep.ts +6 -0
- package/src/protocol/v2/TurnPlanStepStatus.ts +5 -0
- package/src/protocol/v2/TurnPlanUpdatedNotification.ts +6 -0
- package/src/protocol/v2/TurnStartParams.ts +54 -0
- package/src/protocol/v2/TurnStartResponse.ts +6 -0
- package/src/protocol/v2/TurnStartedNotification.ts +6 -0
- package/src/protocol/v2/TurnStatus.ts +5 -0
- package/src/protocol/v2/TurnSteerParams.ts +11 -0
- package/src/protocol/v2/TurnSteerResponse.ts +5 -0
- package/src/protocol/v2/UserInput.ts +10 -0
- package/src/protocol/v2/WebSearchAction.ts +5 -0
- package/src/protocol/v2/WindowsSandboxSetupCompletedNotification.ts +6 -0
- package/src/protocol/v2/WindowsSandboxSetupMode.ts +5 -0
- package/src/protocol/v2/WindowsSandboxSetupStartParams.ts +7 -0
- package/src/protocol/v2/WindowsSandboxSetupStartResponse.ts +5 -0
- package/src/protocol/v2/WindowsWorldWritableWarningNotification.ts +5 -0
- package/src/protocol/v2/WriteStatus.ts +5 -0
- package/src/protocol/v2/index.ts +346 -0
- package/src/services/app-server-client.ts +636 -0
- package/src/services/codex-runtime.ts +500 -0
- package/src/services/fleet-mode.ts +29 -0
- package/src/services/model-catalog.ts +86 -0
- package/src/services/profile-manager.ts +113 -0
- package/src/types/codex.ts +57 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { ToolRequestUserInputOption } from "./ToolRequestUserInputOption";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* EXPERIMENTAL. Represents one request_user_input question and its required options.
|
|
8
|
+
*/
|
|
9
|
+
export type ToolRequestUserInputQuestion = { id: string, header: string, question: string, isOther: boolean, isSecret: boolean, options: Array<ToolRequestUserInputOption> | null, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { ToolRequestUserInputAnswer } from "./ToolRequestUserInputAnswer";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* EXPERIMENTAL. Response payload mapping question ids to answers.
|
|
8
|
+
*/
|
|
9
|
+
export type ToolRequestUserInputResponse = { answers: { [key in string]?: ToolRequestUserInputAnswer }, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { WebSearchToolConfig } from "../WebSearchToolConfig";
|
|
5
|
+
|
|
6
|
+
export type ToolsV2 = { web_search: WebSearchToolConfig | null, view_image: boolean | null, };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { ThreadItem } from "./ThreadItem";
|
|
5
|
+
import type { TurnError } from "./TurnError";
|
|
6
|
+
import type { TurnStatus } from "./TurnStatus";
|
|
7
|
+
|
|
8
|
+
export type Turn = { id: string,
|
|
9
|
+
/**
|
|
10
|
+
* Only populated on a `thread/resume` or `thread/fork` response.
|
|
11
|
+
* For all other responses and notifications returning a Turn,
|
|
12
|
+
* the items field will be an empty list.
|
|
13
|
+
*/
|
|
14
|
+
items: Array<ThreadItem>, status: TurnStatus,
|
|
15
|
+
/**
|
|
16
|
+
* Only populated when the Turn's status is failed.
|
|
17
|
+
*/
|
|
18
|
+
error: TurnError | null, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { Turn } from "./Turn";
|
|
5
|
+
|
|
6
|
+
export type TurnCompletedNotification = { threadId: string, turn: Turn, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Notification that the turn-level unified diff has changed.
|
|
7
|
+
* Contains the latest aggregated diff across all file changes in the turn.
|
|
8
|
+
*/
|
|
9
|
+
export type TurnDiffUpdatedNotification = { threadId: string, turnId: string, diff: string, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { CodexErrorInfo } from "./CodexErrorInfo";
|
|
5
|
+
|
|
6
|
+
export type TurnError = { message: string, codexErrorInfo: CodexErrorInfo | null, additionalDetails: string | null, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { TurnPlanStepStatus } from "./TurnPlanStepStatus";
|
|
5
|
+
|
|
6
|
+
export type TurnPlanStep = { step: string, status: TurnPlanStepStatus, };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { TurnPlanStep } from "./TurnPlanStep";
|
|
5
|
+
|
|
6
|
+
export type TurnPlanUpdatedNotification = { threadId: string, turnId: string, explanation: string | null, plan: Array<TurnPlanStep>, };
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { CollaborationMode } from "../CollaborationMode";
|
|
5
|
+
import type { Personality } from "../Personality";
|
|
6
|
+
import type { ReasoningEffort } from "../ReasoningEffort";
|
|
7
|
+
import type { ReasoningSummary } from "../ReasoningSummary";
|
|
8
|
+
import type { ServiceTier } from "../ServiceTier";
|
|
9
|
+
import type { JsonValue } from "../serde_json/JsonValue";
|
|
10
|
+
import type { ApprovalsReviewer } from "./ApprovalsReviewer";
|
|
11
|
+
import type { AskForApproval } from "./AskForApproval";
|
|
12
|
+
import type { SandboxPolicy } from "./SandboxPolicy";
|
|
13
|
+
import type { UserInput } from "./UserInput";
|
|
14
|
+
|
|
15
|
+
export type TurnStartParams = {threadId: string, input: Array<UserInput>, /**
|
|
16
|
+
* Override the working directory for this turn and subsequent turns.
|
|
17
|
+
*/
|
|
18
|
+
cwd?: string | null, /**
|
|
19
|
+
* Override the approval policy for this turn and subsequent turns.
|
|
20
|
+
*/
|
|
21
|
+
approvalPolicy?: AskForApproval | null, /**
|
|
22
|
+
* Override where approval requests are routed for review on this turn and
|
|
23
|
+
* subsequent turns.
|
|
24
|
+
*/
|
|
25
|
+
approvalsReviewer?: ApprovalsReviewer | null, /**
|
|
26
|
+
* Override the sandbox policy for this turn and subsequent turns.
|
|
27
|
+
*/
|
|
28
|
+
sandboxPolicy?: SandboxPolicy | null, /**
|
|
29
|
+
* Override the model for this turn and subsequent turns.
|
|
30
|
+
*/
|
|
31
|
+
model?: string | null, /**
|
|
32
|
+
* Override the service tier for this turn and subsequent turns.
|
|
33
|
+
*/
|
|
34
|
+
serviceTier?: ServiceTier | null | null, /**
|
|
35
|
+
* Override the reasoning effort for this turn and subsequent turns.
|
|
36
|
+
*/
|
|
37
|
+
effort?: ReasoningEffort | null, /**
|
|
38
|
+
* Override the reasoning summary for this turn and subsequent turns.
|
|
39
|
+
*/
|
|
40
|
+
summary?: ReasoningSummary | null, /**
|
|
41
|
+
* Override the personality for this turn and subsequent turns.
|
|
42
|
+
*/
|
|
43
|
+
personality?: Personality | null, /**
|
|
44
|
+
* Optional JSON Schema used to constrain the final assistant message for
|
|
45
|
+
* this turn.
|
|
46
|
+
*/
|
|
47
|
+
outputSchema?: JsonValue | null, /**
|
|
48
|
+
* EXPERIMENTAL - Set a pre-set collaboration mode.
|
|
49
|
+
* Takes precedence over model, reasoning_effort, and developer instructions if set.
|
|
50
|
+
*
|
|
51
|
+
* For `collaboration_mode.settings.developer_instructions`, `null` means
|
|
52
|
+
* "use the built-in instructions for the selected mode".
|
|
53
|
+
*/
|
|
54
|
+
collaborationMode?: CollaborationMode | null};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { UserInput } from "./UserInput";
|
|
5
|
+
|
|
6
|
+
export type TurnSteerParams = { threadId: string, input: Array<UserInput>,
|
|
7
|
+
/**
|
|
8
|
+
* Required active turn id precondition. The request fails when it does not
|
|
9
|
+
* match the currently active turn.
|
|
10
|
+
*/
|
|
11
|
+
expectedTurnId: string, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { TextElement } from "./TextElement";
|
|
5
|
+
|
|
6
|
+
export type UserInput = { "type": "text", text: string,
|
|
7
|
+
/**
|
|
8
|
+
* UI-defined spans within `text` used to render or persist special elements.
|
|
9
|
+
*/
|
|
10
|
+
text_elements: Array<TextElement>, } | { "type": "image", url: string, } | { "type": "localImage", path: string, } | { "type": "skill", name: string, path: string, } | { "type": "mention", name: string, path: string, };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
|
|
5
|
+
export type WebSearchAction = { "type": "search", query: string | null, queries: Array<string> | null, } | { "type": "openPage", url: string | null, } | { "type": "findInPage", url: string | null, pattern: string | null, } | { "type": "other" };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { WindowsSandboxSetupMode } from "./WindowsSandboxSetupMode";
|
|
5
|
+
|
|
6
|
+
export type WindowsSandboxSetupCompletedNotification = { mode: WindowsSandboxSetupMode, success: boolean, error: string | null, };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
import type { AbsolutePathBuf } from "../AbsolutePathBuf";
|
|
5
|
+
import type { WindowsSandboxSetupMode } from "./WindowsSandboxSetupMode";
|
|
6
|
+
|
|
7
|
+
export type WindowsSandboxSetupStartParams = { mode: WindowsSandboxSetupMode, cwd?: AbsolutePathBuf | null, };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
4
|
+
|
|
5
|
+
export type WindowsWorldWritableWarningNotification = { samplePaths: Array<string>, extraCount: number, failedScan: boolean, };
|
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
2
|
+
|
|
3
|
+
export type { Account } from "./Account";
|
|
4
|
+
export type { AccountLoginCompletedNotification } from "./AccountLoginCompletedNotification";
|
|
5
|
+
export type { AccountRateLimitsUpdatedNotification } from "./AccountRateLimitsUpdatedNotification";
|
|
6
|
+
export type { AccountUpdatedNotification } from "./AccountUpdatedNotification";
|
|
7
|
+
export type { AdditionalFileSystemPermissions } from "./AdditionalFileSystemPermissions";
|
|
8
|
+
export type { AdditionalNetworkPermissions } from "./AdditionalNetworkPermissions";
|
|
9
|
+
export type { AdditionalPermissionProfile } from "./AdditionalPermissionProfile";
|
|
10
|
+
export type { AgentMessageDeltaNotification } from "./AgentMessageDeltaNotification";
|
|
11
|
+
export type { AnalyticsConfig } from "./AnalyticsConfig";
|
|
12
|
+
export type { AppBranding } from "./AppBranding";
|
|
13
|
+
export type { AppInfo } from "./AppInfo";
|
|
14
|
+
export type { AppListUpdatedNotification } from "./AppListUpdatedNotification";
|
|
15
|
+
export type { AppMetadata } from "./AppMetadata";
|
|
16
|
+
export type { AppReview } from "./AppReview";
|
|
17
|
+
export type { AppScreenshot } from "./AppScreenshot";
|
|
18
|
+
export type { AppSummary } from "./AppSummary";
|
|
19
|
+
export type { AppToolApproval } from "./AppToolApproval";
|
|
20
|
+
export type { AppToolsConfig } from "./AppToolsConfig";
|
|
21
|
+
export type { ApprovalsReviewer } from "./ApprovalsReviewer";
|
|
22
|
+
export type { AppsConfig } from "./AppsConfig";
|
|
23
|
+
export type { AppsDefaultConfig } from "./AppsDefaultConfig";
|
|
24
|
+
export type { AppsListParams } from "./AppsListParams";
|
|
25
|
+
export type { AppsListResponse } from "./AppsListResponse";
|
|
26
|
+
export type { AskForApproval } from "./AskForApproval";
|
|
27
|
+
export type { ByteRange } from "./ByteRange";
|
|
28
|
+
export type { CancelLoginAccountParams } from "./CancelLoginAccountParams";
|
|
29
|
+
export type { CancelLoginAccountResponse } from "./CancelLoginAccountResponse";
|
|
30
|
+
export type { CancelLoginAccountStatus } from "./CancelLoginAccountStatus";
|
|
31
|
+
export type { ChatgptAuthTokensRefreshParams } from "./ChatgptAuthTokensRefreshParams";
|
|
32
|
+
export type { ChatgptAuthTokensRefreshReason } from "./ChatgptAuthTokensRefreshReason";
|
|
33
|
+
export type { ChatgptAuthTokensRefreshResponse } from "./ChatgptAuthTokensRefreshResponse";
|
|
34
|
+
export type { CodexErrorInfo } from "./CodexErrorInfo";
|
|
35
|
+
export type { CollabAgentState } from "./CollabAgentState";
|
|
36
|
+
export type { CollabAgentStatus } from "./CollabAgentStatus";
|
|
37
|
+
export type { CollabAgentTool } from "./CollabAgentTool";
|
|
38
|
+
export type { CollabAgentToolCallStatus } from "./CollabAgentToolCallStatus";
|
|
39
|
+
export type { CollaborationModeMask } from "./CollaborationModeMask";
|
|
40
|
+
export type { CommandAction } from "./CommandAction";
|
|
41
|
+
export type { CommandExecOutputDeltaNotification } from "./CommandExecOutputDeltaNotification";
|
|
42
|
+
export type { CommandExecOutputStream } from "./CommandExecOutputStream";
|
|
43
|
+
export type { CommandExecParams } from "./CommandExecParams";
|
|
44
|
+
export type { CommandExecResizeParams } from "./CommandExecResizeParams";
|
|
45
|
+
export type { CommandExecResizeResponse } from "./CommandExecResizeResponse";
|
|
46
|
+
export type { CommandExecResponse } from "./CommandExecResponse";
|
|
47
|
+
export type { CommandExecTerminalSize } from "./CommandExecTerminalSize";
|
|
48
|
+
export type { CommandExecTerminateParams } from "./CommandExecTerminateParams";
|
|
49
|
+
export type { CommandExecTerminateResponse } from "./CommandExecTerminateResponse";
|
|
50
|
+
export type { CommandExecWriteParams } from "./CommandExecWriteParams";
|
|
51
|
+
export type { CommandExecWriteResponse } from "./CommandExecWriteResponse";
|
|
52
|
+
export type { CommandExecutionApprovalDecision } from "./CommandExecutionApprovalDecision";
|
|
53
|
+
export type { CommandExecutionOutputDeltaNotification } from "./CommandExecutionOutputDeltaNotification";
|
|
54
|
+
export type { CommandExecutionRequestApprovalParams } from "./CommandExecutionRequestApprovalParams";
|
|
55
|
+
export type { CommandExecutionRequestApprovalResponse } from "./CommandExecutionRequestApprovalResponse";
|
|
56
|
+
export type { CommandExecutionSource } from "./CommandExecutionSource";
|
|
57
|
+
export type { CommandExecutionStatus } from "./CommandExecutionStatus";
|
|
58
|
+
export type { Config } from "./Config";
|
|
59
|
+
export type { ConfigBatchWriteParams } from "./ConfigBatchWriteParams";
|
|
60
|
+
export type { ConfigEdit } from "./ConfigEdit";
|
|
61
|
+
export type { ConfigLayer } from "./ConfigLayer";
|
|
62
|
+
export type { ConfigLayerMetadata } from "./ConfigLayerMetadata";
|
|
63
|
+
export type { ConfigLayerSource } from "./ConfigLayerSource";
|
|
64
|
+
export type { ConfigReadParams } from "./ConfigReadParams";
|
|
65
|
+
export type { ConfigReadResponse } from "./ConfigReadResponse";
|
|
66
|
+
export type { ConfigRequirements } from "./ConfigRequirements";
|
|
67
|
+
export type { ConfigRequirementsReadResponse } from "./ConfigRequirementsReadResponse";
|
|
68
|
+
export type { ConfigValueWriteParams } from "./ConfigValueWriteParams";
|
|
69
|
+
export type { ConfigWarningNotification } from "./ConfigWarningNotification";
|
|
70
|
+
export type { ConfigWriteResponse } from "./ConfigWriteResponse";
|
|
71
|
+
export type { ContextCompactedNotification } from "./ContextCompactedNotification";
|
|
72
|
+
export type { CreditsSnapshot } from "./CreditsSnapshot";
|
|
73
|
+
export type { DeprecationNoticeNotification } from "./DeprecationNoticeNotification";
|
|
74
|
+
export type { DynamicToolCallOutputContentItem } from "./DynamicToolCallOutputContentItem";
|
|
75
|
+
export type { DynamicToolCallParams } from "./DynamicToolCallParams";
|
|
76
|
+
export type { DynamicToolCallResponse } from "./DynamicToolCallResponse";
|
|
77
|
+
export type { DynamicToolCallStatus } from "./DynamicToolCallStatus";
|
|
78
|
+
export type { DynamicToolSpec } from "./DynamicToolSpec";
|
|
79
|
+
export type { ErrorNotification } from "./ErrorNotification";
|
|
80
|
+
export type { ExecPolicyAmendment } from "./ExecPolicyAmendment";
|
|
81
|
+
export type { ExperimentalFeature } from "./ExperimentalFeature";
|
|
82
|
+
export type { ExperimentalFeatureEnablementSetParams } from "./ExperimentalFeatureEnablementSetParams";
|
|
83
|
+
export type { ExperimentalFeatureEnablementSetResponse } from "./ExperimentalFeatureEnablementSetResponse";
|
|
84
|
+
export type { ExperimentalFeatureListParams } from "./ExperimentalFeatureListParams";
|
|
85
|
+
export type { ExperimentalFeatureListResponse } from "./ExperimentalFeatureListResponse";
|
|
86
|
+
export type { ExperimentalFeatureStage } from "./ExperimentalFeatureStage";
|
|
87
|
+
export type { ExternalAgentConfigDetectParams } from "./ExternalAgentConfigDetectParams";
|
|
88
|
+
export type { ExternalAgentConfigDetectResponse } from "./ExternalAgentConfigDetectResponse";
|
|
89
|
+
export type { ExternalAgentConfigImportParams } from "./ExternalAgentConfigImportParams";
|
|
90
|
+
export type { ExternalAgentConfigImportResponse } from "./ExternalAgentConfigImportResponse";
|
|
91
|
+
export type { ExternalAgentConfigMigrationItem } from "./ExternalAgentConfigMigrationItem";
|
|
92
|
+
export type { ExternalAgentConfigMigrationItemType } from "./ExternalAgentConfigMigrationItemType";
|
|
93
|
+
export type { FeedbackUploadParams } from "./FeedbackUploadParams";
|
|
94
|
+
export type { FeedbackUploadResponse } from "./FeedbackUploadResponse";
|
|
95
|
+
export type { FileChangeApprovalDecision } from "./FileChangeApprovalDecision";
|
|
96
|
+
export type { FileChangeOutputDeltaNotification } from "./FileChangeOutputDeltaNotification";
|
|
97
|
+
export type { FileChangeRequestApprovalParams } from "./FileChangeRequestApprovalParams";
|
|
98
|
+
export type { FileChangeRequestApprovalResponse } from "./FileChangeRequestApprovalResponse";
|
|
99
|
+
export type { FileUpdateChange } from "./FileUpdateChange";
|
|
100
|
+
export type { FsChangedNotification } from "./FsChangedNotification";
|
|
101
|
+
export type { FsCopyParams } from "./FsCopyParams";
|
|
102
|
+
export type { FsCopyResponse } from "./FsCopyResponse";
|
|
103
|
+
export type { FsCreateDirectoryParams } from "./FsCreateDirectoryParams";
|
|
104
|
+
export type { FsCreateDirectoryResponse } from "./FsCreateDirectoryResponse";
|
|
105
|
+
export type { FsGetMetadataParams } from "./FsGetMetadataParams";
|
|
106
|
+
export type { FsGetMetadataResponse } from "./FsGetMetadataResponse";
|
|
107
|
+
export type { FsReadDirectoryEntry } from "./FsReadDirectoryEntry";
|
|
108
|
+
export type { FsReadDirectoryParams } from "./FsReadDirectoryParams";
|
|
109
|
+
export type { FsReadDirectoryResponse } from "./FsReadDirectoryResponse";
|
|
110
|
+
export type { FsReadFileParams } from "./FsReadFileParams";
|
|
111
|
+
export type { FsReadFileResponse } from "./FsReadFileResponse";
|
|
112
|
+
export type { FsRemoveParams } from "./FsRemoveParams";
|
|
113
|
+
export type { FsRemoveResponse } from "./FsRemoveResponse";
|
|
114
|
+
export type { FsUnwatchParams } from "./FsUnwatchParams";
|
|
115
|
+
export type { FsUnwatchResponse } from "./FsUnwatchResponse";
|
|
116
|
+
export type { FsWatchParams } from "./FsWatchParams";
|
|
117
|
+
export type { FsWatchResponse } from "./FsWatchResponse";
|
|
118
|
+
export type { FsWriteFileParams } from "./FsWriteFileParams";
|
|
119
|
+
export type { FsWriteFileResponse } from "./FsWriteFileResponse";
|
|
120
|
+
export type { GetAccountParams } from "./GetAccountParams";
|
|
121
|
+
export type { GetAccountRateLimitsResponse } from "./GetAccountRateLimitsResponse";
|
|
122
|
+
export type { GetAccountResponse } from "./GetAccountResponse";
|
|
123
|
+
export type { GitInfo } from "./GitInfo";
|
|
124
|
+
export type { GrantedPermissionProfile } from "./GrantedPermissionProfile";
|
|
125
|
+
export type { GuardianApprovalReview } from "./GuardianApprovalReview";
|
|
126
|
+
export type { GuardianApprovalReviewStatus } from "./GuardianApprovalReviewStatus";
|
|
127
|
+
export type { GuardianRiskLevel } from "./GuardianRiskLevel";
|
|
128
|
+
export type { HookCompletedNotification } from "./HookCompletedNotification";
|
|
129
|
+
export type { HookEventName } from "./HookEventName";
|
|
130
|
+
export type { HookExecutionMode } from "./HookExecutionMode";
|
|
131
|
+
export type { HookHandlerType } from "./HookHandlerType";
|
|
132
|
+
export type { HookOutputEntry } from "./HookOutputEntry";
|
|
133
|
+
export type { HookOutputEntryKind } from "./HookOutputEntryKind";
|
|
134
|
+
export type { HookPromptFragment } from "./HookPromptFragment";
|
|
135
|
+
export type { HookRunStatus } from "./HookRunStatus";
|
|
136
|
+
export type { HookRunSummary } from "./HookRunSummary";
|
|
137
|
+
export type { HookScope } from "./HookScope";
|
|
138
|
+
export type { HookStartedNotification } from "./HookStartedNotification";
|
|
139
|
+
export type { ItemCompletedNotification } from "./ItemCompletedNotification";
|
|
140
|
+
export type { ItemGuardianApprovalReviewCompletedNotification } from "./ItemGuardianApprovalReviewCompletedNotification";
|
|
141
|
+
export type { ItemGuardianApprovalReviewStartedNotification } from "./ItemGuardianApprovalReviewStartedNotification";
|
|
142
|
+
export type { ItemStartedNotification } from "./ItemStartedNotification";
|
|
143
|
+
export type { ListMcpServerStatusParams } from "./ListMcpServerStatusParams";
|
|
144
|
+
export type { ListMcpServerStatusResponse } from "./ListMcpServerStatusResponse";
|
|
145
|
+
export type { LoginAccountParams } from "./LoginAccountParams";
|
|
146
|
+
export type { LoginAccountResponse } from "./LoginAccountResponse";
|
|
147
|
+
export type { LogoutAccountResponse } from "./LogoutAccountResponse";
|
|
148
|
+
export type { MarketplaceInterface } from "./MarketplaceInterface";
|
|
149
|
+
export type { MarketplaceLoadErrorInfo } from "./MarketplaceLoadErrorInfo";
|
|
150
|
+
export type { McpAuthStatus } from "./McpAuthStatus";
|
|
151
|
+
export type { McpElicitationArrayType } from "./McpElicitationArrayType";
|
|
152
|
+
export type { McpElicitationBooleanSchema } from "./McpElicitationBooleanSchema";
|
|
153
|
+
export type { McpElicitationBooleanType } from "./McpElicitationBooleanType";
|
|
154
|
+
export type { McpElicitationConstOption } from "./McpElicitationConstOption";
|
|
155
|
+
export type { McpElicitationEnumSchema } from "./McpElicitationEnumSchema";
|
|
156
|
+
export type { McpElicitationLegacyTitledEnumSchema } from "./McpElicitationLegacyTitledEnumSchema";
|
|
157
|
+
export type { McpElicitationMultiSelectEnumSchema } from "./McpElicitationMultiSelectEnumSchema";
|
|
158
|
+
export type { McpElicitationNumberSchema } from "./McpElicitationNumberSchema";
|
|
159
|
+
export type { McpElicitationNumberType } from "./McpElicitationNumberType";
|
|
160
|
+
export type { McpElicitationObjectType } from "./McpElicitationObjectType";
|
|
161
|
+
export type { McpElicitationPrimitiveSchema } from "./McpElicitationPrimitiveSchema";
|
|
162
|
+
export type { McpElicitationSchema } from "./McpElicitationSchema";
|
|
163
|
+
export type { McpElicitationSingleSelectEnumSchema } from "./McpElicitationSingleSelectEnumSchema";
|
|
164
|
+
export type { McpElicitationStringFormat } from "./McpElicitationStringFormat";
|
|
165
|
+
export type { McpElicitationStringSchema } from "./McpElicitationStringSchema";
|
|
166
|
+
export type { McpElicitationStringType } from "./McpElicitationStringType";
|
|
167
|
+
export type { McpElicitationTitledEnumItems } from "./McpElicitationTitledEnumItems";
|
|
168
|
+
export type { McpElicitationTitledMultiSelectEnumSchema } from "./McpElicitationTitledMultiSelectEnumSchema";
|
|
169
|
+
export type { McpElicitationTitledSingleSelectEnumSchema } from "./McpElicitationTitledSingleSelectEnumSchema";
|
|
170
|
+
export type { McpElicitationUntitledEnumItems } from "./McpElicitationUntitledEnumItems";
|
|
171
|
+
export type { McpElicitationUntitledMultiSelectEnumSchema } from "./McpElicitationUntitledMultiSelectEnumSchema";
|
|
172
|
+
export type { McpElicitationUntitledSingleSelectEnumSchema } from "./McpElicitationUntitledSingleSelectEnumSchema";
|
|
173
|
+
export type { McpServerElicitationAction } from "./McpServerElicitationAction";
|
|
174
|
+
export type { McpServerElicitationRequestParams } from "./McpServerElicitationRequestParams";
|
|
175
|
+
export type { McpServerElicitationRequestResponse } from "./McpServerElicitationRequestResponse";
|
|
176
|
+
export type { McpServerOauthLoginCompletedNotification } from "./McpServerOauthLoginCompletedNotification";
|
|
177
|
+
export type { McpServerOauthLoginParams } from "./McpServerOauthLoginParams";
|
|
178
|
+
export type { McpServerOauthLoginResponse } from "./McpServerOauthLoginResponse";
|
|
179
|
+
export type { McpServerRefreshResponse } from "./McpServerRefreshResponse";
|
|
180
|
+
export type { McpServerStartupState } from "./McpServerStartupState";
|
|
181
|
+
export type { McpServerStatus } from "./McpServerStatus";
|
|
182
|
+
export type { McpServerStatusUpdatedNotification } from "./McpServerStatusUpdatedNotification";
|
|
183
|
+
export type { McpToolCallError } from "./McpToolCallError";
|
|
184
|
+
export type { McpToolCallProgressNotification } from "./McpToolCallProgressNotification";
|
|
185
|
+
export type { McpToolCallResult } from "./McpToolCallResult";
|
|
186
|
+
export type { McpToolCallStatus } from "./McpToolCallStatus";
|
|
187
|
+
export type { MemoryCitation } from "./MemoryCitation";
|
|
188
|
+
export type { MemoryCitationEntry } from "./MemoryCitationEntry";
|
|
189
|
+
export type { MergeStrategy } from "./MergeStrategy";
|
|
190
|
+
export type { Model } from "./Model";
|
|
191
|
+
export type { ModelAvailabilityNux } from "./ModelAvailabilityNux";
|
|
192
|
+
export type { ModelListParams } from "./ModelListParams";
|
|
193
|
+
export type { ModelListResponse } from "./ModelListResponse";
|
|
194
|
+
export type { ModelRerouteReason } from "./ModelRerouteReason";
|
|
195
|
+
export type { ModelReroutedNotification } from "./ModelReroutedNotification";
|
|
196
|
+
export type { ModelUpgradeInfo } from "./ModelUpgradeInfo";
|
|
197
|
+
export type { NetworkAccess } from "./NetworkAccess";
|
|
198
|
+
export type { NetworkApprovalContext } from "./NetworkApprovalContext";
|
|
199
|
+
export type { NetworkApprovalProtocol } from "./NetworkApprovalProtocol";
|
|
200
|
+
export type { NetworkDomainPermission } from "./NetworkDomainPermission";
|
|
201
|
+
export type { NetworkPolicyAmendment } from "./NetworkPolicyAmendment";
|
|
202
|
+
export type { NetworkPolicyRuleAction } from "./NetworkPolicyRuleAction";
|
|
203
|
+
export type { NetworkRequirements } from "./NetworkRequirements";
|
|
204
|
+
export type { NetworkUnixSocketPermission } from "./NetworkUnixSocketPermission";
|
|
205
|
+
export type { NonSteerableTurnKind } from "./NonSteerableTurnKind";
|
|
206
|
+
export type { OverriddenMetadata } from "./OverriddenMetadata";
|
|
207
|
+
export type { PatchApplyStatus } from "./PatchApplyStatus";
|
|
208
|
+
export type { PatchChangeKind } from "./PatchChangeKind";
|
|
209
|
+
export type { PermissionGrantScope } from "./PermissionGrantScope";
|
|
210
|
+
export type { PermissionsRequestApprovalParams } from "./PermissionsRequestApprovalParams";
|
|
211
|
+
export type { PermissionsRequestApprovalResponse } from "./PermissionsRequestApprovalResponse";
|
|
212
|
+
export type { PlanDeltaNotification } from "./PlanDeltaNotification";
|
|
213
|
+
export type { PluginAuthPolicy } from "./PluginAuthPolicy";
|
|
214
|
+
export type { PluginDetail } from "./PluginDetail";
|
|
215
|
+
export type { PluginInstallParams } from "./PluginInstallParams";
|
|
216
|
+
export type { PluginInstallPolicy } from "./PluginInstallPolicy";
|
|
217
|
+
export type { PluginInstallResponse } from "./PluginInstallResponse";
|
|
218
|
+
export type { PluginInterface } from "./PluginInterface";
|
|
219
|
+
export type { PluginListParams } from "./PluginListParams";
|
|
220
|
+
export type { PluginListResponse } from "./PluginListResponse";
|
|
221
|
+
export type { PluginMarketplaceEntry } from "./PluginMarketplaceEntry";
|
|
222
|
+
export type { PluginReadParams } from "./PluginReadParams";
|
|
223
|
+
export type { PluginReadResponse } from "./PluginReadResponse";
|
|
224
|
+
export type { PluginSource } from "./PluginSource";
|
|
225
|
+
export type { PluginSummary } from "./PluginSummary";
|
|
226
|
+
export type { PluginUninstallParams } from "./PluginUninstallParams";
|
|
227
|
+
export type { PluginUninstallResponse } from "./PluginUninstallResponse";
|
|
228
|
+
export type { ProfileV2 } from "./ProfileV2";
|
|
229
|
+
export type { RateLimitSnapshot } from "./RateLimitSnapshot";
|
|
230
|
+
export type { RateLimitWindow } from "./RateLimitWindow";
|
|
231
|
+
export type { RawResponseItemCompletedNotification } from "./RawResponseItemCompletedNotification";
|
|
232
|
+
export type { ReadOnlyAccess } from "./ReadOnlyAccess";
|
|
233
|
+
export type { ReasoningEffortOption } from "./ReasoningEffortOption";
|
|
234
|
+
export type { ReasoningSummaryPartAddedNotification } from "./ReasoningSummaryPartAddedNotification";
|
|
235
|
+
export type { ReasoningSummaryTextDeltaNotification } from "./ReasoningSummaryTextDeltaNotification";
|
|
236
|
+
export type { ReasoningTextDeltaNotification } from "./ReasoningTextDeltaNotification";
|
|
237
|
+
export type { RequestPermissionProfile } from "./RequestPermissionProfile";
|
|
238
|
+
export type { ResidencyRequirement } from "./ResidencyRequirement";
|
|
239
|
+
export type { ReviewDelivery } from "./ReviewDelivery";
|
|
240
|
+
export type { ReviewStartParams } from "./ReviewStartParams";
|
|
241
|
+
export type { ReviewStartResponse } from "./ReviewStartResponse";
|
|
242
|
+
export type { ReviewTarget } from "./ReviewTarget";
|
|
243
|
+
export type { SandboxMode } from "./SandboxMode";
|
|
244
|
+
export type { SandboxPolicy } from "./SandboxPolicy";
|
|
245
|
+
export type { SandboxWorkspaceWrite } from "./SandboxWorkspaceWrite";
|
|
246
|
+
export type { ServerRequestResolvedNotification } from "./ServerRequestResolvedNotification";
|
|
247
|
+
export type { SessionSource } from "./SessionSource";
|
|
248
|
+
export type { SkillDependencies } from "./SkillDependencies";
|
|
249
|
+
export type { SkillErrorInfo } from "./SkillErrorInfo";
|
|
250
|
+
export type { SkillInterface } from "./SkillInterface";
|
|
251
|
+
export type { SkillMetadata } from "./SkillMetadata";
|
|
252
|
+
export type { SkillScope } from "./SkillScope";
|
|
253
|
+
export type { SkillSummary } from "./SkillSummary";
|
|
254
|
+
export type { SkillToolDependency } from "./SkillToolDependency";
|
|
255
|
+
export type { SkillsChangedNotification } from "./SkillsChangedNotification";
|
|
256
|
+
export type { SkillsConfigWriteParams } from "./SkillsConfigWriteParams";
|
|
257
|
+
export type { SkillsConfigWriteResponse } from "./SkillsConfigWriteResponse";
|
|
258
|
+
export type { SkillsListEntry } from "./SkillsListEntry";
|
|
259
|
+
export type { SkillsListExtraRootsForCwd } from "./SkillsListExtraRootsForCwd";
|
|
260
|
+
export type { SkillsListParams } from "./SkillsListParams";
|
|
261
|
+
export type { SkillsListResponse } from "./SkillsListResponse";
|
|
262
|
+
export type { TerminalInteractionNotification } from "./TerminalInteractionNotification";
|
|
263
|
+
export type { TextElement } from "./TextElement";
|
|
264
|
+
export type { TextPosition } from "./TextPosition";
|
|
265
|
+
export type { TextRange } from "./TextRange";
|
|
266
|
+
export type { Thread } from "./Thread";
|
|
267
|
+
export type { ThreadActiveFlag } from "./ThreadActiveFlag";
|
|
268
|
+
export type { ThreadArchiveParams } from "./ThreadArchiveParams";
|
|
269
|
+
export type { ThreadArchiveResponse } from "./ThreadArchiveResponse";
|
|
270
|
+
export type { ThreadArchivedNotification } from "./ThreadArchivedNotification";
|
|
271
|
+
export type { ThreadClosedNotification } from "./ThreadClosedNotification";
|
|
272
|
+
export type { ThreadCompactStartParams } from "./ThreadCompactStartParams";
|
|
273
|
+
export type { ThreadCompactStartResponse } from "./ThreadCompactStartResponse";
|
|
274
|
+
export type { ThreadForkParams } from "./ThreadForkParams";
|
|
275
|
+
export type { ThreadForkResponse } from "./ThreadForkResponse";
|
|
276
|
+
export type { ThreadItem } from "./ThreadItem";
|
|
277
|
+
export type { ThreadListParams } from "./ThreadListParams";
|
|
278
|
+
export type { ThreadListResponse } from "./ThreadListResponse";
|
|
279
|
+
export type { ThreadLoadedListParams } from "./ThreadLoadedListParams";
|
|
280
|
+
export type { ThreadLoadedListResponse } from "./ThreadLoadedListResponse";
|
|
281
|
+
export type { ThreadMetadataGitInfoUpdateParams } from "./ThreadMetadataGitInfoUpdateParams";
|
|
282
|
+
export type { ThreadMetadataUpdateParams } from "./ThreadMetadataUpdateParams";
|
|
283
|
+
export type { ThreadMetadataUpdateResponse } from "./ThreadMetadataUpdateResponse";
|
|
284
|
+
export type { ThreadNameUpdatedNotification } from "./ThreadNameUpdatedNotification";
|
|
285
|
+
export type { ThreadReadParams } from "./ThreadReadParams";
|
|
286
|
+
export type { ThreadReadResponse } from "./ThreadReadResponse";
|
|
287
|
+
export type { ThreadRealtimeAudioChunk } from "./ThreadRealtimeAudioChunk";
|
|
288
|
+
export type { ThreadRealtimeClosedNotification } from "./ThreadRealtimeClosedNotification";
|
|
289
|
+
export type { ThreadRealtimeErrorNotification } from "./ThreadRealtimeErrorNotification";
|
|
290
|
+
export type { ThreadRealtimeItemAddedNotification } from "./ThreadRealtimeItemAddedNotification";
|
|
291
|
+
export type { ThreadRealtimeOutputAudioDeltaNotification } from "./ThreadRealtimeOutputAudioDeltaNotification";
|
|
292
|
+
export type { ThreadRealtimeStartedNotification } from "./ThreadRealtimeStartedNotification";
|
|
293
|
+
export type { ThreadRealtimeTranscriptUpdatedNotification } from "./ThreadRealtimeTranscriptUpdatedNotification";
|
|
294
|
+
export type { ThreadResumeParams } from "./ThreadResumeParams";
|
|
295
|
+
export type { ThreadResumeResponse } from "./ThreadResumeResponse";
|
|
296
|
+
export type { ThreadRollbackParams } from "./ThreadRollbackParams";
|
|
297
|
+
export type { ThreadRollbackResponse } from "./ThreadRollbackResponse";
|
|
298
|
+
export type { ThreadSetNameParams } from "./ThreadSetNameParams";
|
|
299
|
+
export type { ThreadSetNameResponse } from "./ThreadSetNameResponse";
|
|
300
|
+
export type { ThreadShellCommandParams } from "./ThreadShellCommandParams";
|
|
301
|
+
export type { ThreadShellCommandResponse } from "./ThreadShellCommandResponse";
|
|
302
|
+
export type { ThreadSortKey } from "./ThreadSortKey";
|
|
303
|
+
export type { ThreadSourceKind } from "./ThreadSourceKind";
|
|
304
|
+
export type { ThreadStartParams } from "./ThreadStartParams";
|
|
305
|
+
export type { ThreadStartResponse } from "./ThreadStartResponse";
|
|
306
|
+
export type { ThreadStartedNotification } from "./ThreadStartedNotification";
|
|
307
|
+
export type { ThreadStatus } from "./ThreadStatus";
|
|
308
|
+
export type { ThreadStatusChangedNotification } from "./ThreadStatusChangedNotification";
|
|
309
|
+
export type { ThreadTokenUsage } from "./ThreadTokenUsage";
|
|
310
|
+
export type { ThreadTokenUsageUpdatedNotification } from "./ThreadTokenUsageUpdatedNotification";
|
|
311
|
+
export type { ThreadUnarchiveParams } from "./ThreadUnarchiveParams";
|
|
312
|
+
export type { ThreadUnarchiveResponse } from "./ThreadUnarchiveResponse";
|
|
313
|
+
export type { ThreadUnarchivedNotification } from "./ThreadUnarchivedNotification";
|
|
314
|
+
export type { ThreadUnsubscribeParams } from "./ThreadUnsubscribeParams";
|
|
315
|
+
export type { ThreadUnsubscribeResponse } from "./ThreadUnsubscribeResponse";
|
|
316
|
+
export type { ThreadUnsubscribeStatus } from "./ThreadUnsubscribeStatus";
|
|
317
|
+
export type { TokenUsageBreakdown } from "./TokenUsageBreakdown";
|
|
318
|
+
export type { ToolRequestUserInputAnswer } from "./ToolRequestUserInputAnswer";
|
|
319
|
+
export type { ToolRequestUserInputOption } from "./ToolRequestUserInputOption";
|
|
320
|
+
export type { ToolRequestUserInputParams } from "./ToolRequestUserInputParams";
|
|
321
|
+
export type { ToolRequestUserInputQuestion } from "./ToolRequestUserInputQuestion";
|
|
322
|
+
export type { ToolRequestUserInputResponse } from "./ToolRequestUserInputResponse";
|
|
323
|
+
export type { ToolsV2 } from "./ToolsV2";
|
|
324
|
+
export type { Turn } from "./Turn";
|
|
325
|
+
export type { TurnCompletedNotification } from "./TurnCompletedNotification";
|
|
326
|
+
export type { TurnDiffUpdatedNotification } from "./TurnDiffUpdatedNotification";
|
|
327
|
+
export type { TurnError } from "./TurnError";
|
|
328
|
+
export type { TurnInterruptParams } from "./TurnInterruptParams";
|
|
329
|
+
export type { TurnInterruptResponse } from "./TurnInterruptResponse";
|
|
330
|
+
export type { TurnPlanStep } from "./TurnPlanStep";
|
|
331
|
+
export type { TurnPlanStepStatus } from "./TurnPlanStepStatus";
|
|
332
|
+
export type { TurnPlanUpdatedNotification } from "./TurnPlanUpdatedNotification";
|
|
333
|
+
export type { TurnStartParams } from "./TurnStartParams";
|
|
334
|
+
export type { TurnStartResponse } from "./TurnStartResponse";
|
|
335
|
+
export type { TurnStartedNotification } from "./TurnStartedNotification";
|
|
336
|
+
export type { TurnStatus } from "./TurnStatus";
|
|
337
|
+
export type { TurnSteerParams } from "./TurnSteerParams";
|
|
338
|
+
export type { TurnSteerResponse } from "./TurnSteerResponse";
|
|
339
|
+
export type { UserInput } from "./UserInput";
|
|
340
|
+
export type { WebSearchAction } from "./WebSearchAction";
|
|
341
|
+
export type { WindowsSandboxSetupCompletedNotification } from "./WindowsSandboxSetupCompletedNotification";
|
|
342
|
+
export type { WindowsSandboxSetupMode } from "./WindowsSandboxSetupMode";
|
|
343
|
+
export type { WindowsSandboxSetupStartParams } from "./WindowsSandboxSetupStartParams";
|
|
344
|
+
export type { WindowsSandboxSetupStartResponse } from "./WindowsSandboxSetupStartResponse";
|
|
345
|
+
export type { WindowsWorldWritableWarningNotification } from "./WindowsWorldWritableWarningNotification";
|
|
346
|
+
export type { WriteStatus } from "./WriteStatus";
|