@jrkropp/codex-js 0.1.4 → 0.2.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/CHANGELOG.md +6 -0
- package/README.md +57 -617
- package/dist/client/index.d.ts +2 -16
- package/dist/client/index.js +2522 -16
- package/dist/index.d.ts +2 -25
- package/dist/index.js +699 -20
- package/dist/internal/codex/app-server/src/bespoke_event_handling.d.ts +5 -0
- package/dist/internal/codex/app-server/src/connection_rpc_gate.d.ts +11 -0
- package/dist/internal/codex/app-server/src/dynamic_tools.d.ts +5 -0
- package/dist/internal/codex/app-server/src/message_processor.d.ts +88 -0
- package/dist/internal/codex/app-server/src/outgoing_message.d.ts +73 -0
- package/dist/internal/codex/app-server/src/request_processors/common.d.ts +25 -0
- package/dist/internal/codex/app-server/src/request_processors/mcp_processor.d.ts +32 -0
- package/dist/internal/codex/app-server/src/request_processors/request_errors.d.ts +9 -0
- package/dist/internal/codex/app-server/src/request_processors/thread_processor.d.ts +38 -0
- package/dist/internal/codex/app-server/src/request_processors/token_usage_replay.d.ts +22 -0
- package/dist/internal/codex/app-server/src/request_processors/turn_processor.d.ts +21 -0
- package/dist/internal/codex/app-server/src/request_processors.d.ts +5 -0
- package/dist/internal/codex/app-server/src/request_serialization.d.ts +7 -0
- package/dist/internal/codex/app-server/src/runtime.d.ts +96 -0
- package/dist/internal/codex/app-server/src/server_request_response.d.ts +30 -0
- package/dist/internal/codex/app-server/src/session_factory.d.ts +30 -0
- package/dist/internal/codex/app-server/src/session_task_runner.d.ts +44 -0
- package/dist/internal/codex/app-server/src/thread_state.d.ts +56 -0
- package/dist/internal/codex/app-server-client/src/lib.d.ts +48 -0
- package/dist/{index-77U_Oc-a.d.ts → internal/codex/app-server-client/src/pending_requests.d.ts} +7 -18
- package/dist/internal/codex/app-server-client/src/remote.d.ts +18 -0
- package/dist/{session-BRYzi8OT.d.ts → internal/codex/app-server-client/src/session.d.ts} +5 -9
- package/dist/{thread_event_store-C0zYzukG.d.ts → internal/codex/app-server-client/src/thread_event_store.d.ts} +14 -14
- package/dist/internal/codex/app-server-client/src/thread_projection.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/AbsolutePathBuf.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/AgentPath.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ApplyPatchApprovalParams.d.ts +22 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ApplyPatchApprovalResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/AuthMode.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ClientInfo.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ClientNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ClientRequest.d.ts +410 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/CollaborationMode.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ContentItem.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ConversationGitInfo.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ConversationSummary.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ExecCommandApprovalParams.d.ts +18 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ExecCommandApprovalResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ExecPolicyAmendment.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FileChange.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ForcedLoginMethod.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FunctionCallOutputBody.d.ts +2 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FunctionCallOutputContentItem.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchMatchType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchResult.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchSessionCompletedNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/FuzzyFileSearchSessionUpdatedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GetAuthStatusParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GetAuthStatusResponse.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GetConversationSummaryParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GetConversationSummaryResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GitDiffToRemoteParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GitDiffToRemoteResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/GitSha.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ImageDetail.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/InitializeCapabilities.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/InitializeParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/InitializeResponse.d.ts +18 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/InputModality.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/InternalSessionSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/LocalShellAction.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/LocalShellExecAction.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/LocalShellStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/MessagePhase.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ModeKind.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/NetworkPolicyAmendment.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/NetworkPolicyRuleAction.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ParsedCommand.d.ts +24 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/Personality.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/PlanType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/RealtimeConversationVersion.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/RealtimeOutputModality.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/RealtimeVoice.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/RealtimeVoicesList.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ReasoningEffort.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ReasoningItemContent.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ReasoningItemReasoningSummary.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ReasoningSummary.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/RequestId.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/Resource.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ResourceContent.d.ts +21 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ResourceTemplate.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ResponseItem.d.ts +78 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ReviewDecision.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ServerNotification.d.ts +260 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ServerRequest.d.ts +50 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/SessionSource.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/Settings.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/SubAgentSource.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ThreadId.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/ThreadMemoryMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/Tool.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/Verbosity.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/WebSearchAction.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/WebSearchContextSize.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/WebSearchLocation.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/WebSearchMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/WebSearchToolConfig.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/index.d.ts +77 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/serde_json/JsonValue.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/Account.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AccountLoginCompletedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AccountRateLimitsUpdatedNotification.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AccountUpdatedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ActivePermissionProfile.d.ts +18 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ActivePermissionProfileModification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AddCreditsNudgeCreditType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AddCreditsNudgeEmailStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AdditionalFileSystemPermissions.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AdditionalNetworkPermissions.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AdditionalPermissionProfile.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AgentMessageDeltaNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AnalyticsConfig.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppBranding.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppInfo.d.ts +30 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppListUpdatedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppMetadata.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppReview.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppScreenshot.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppSummary.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppToolApproval.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppToolsConfig.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ApprovalsReviewer.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppsConfig.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppsDefaultConfig.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppsListParams.d.ts +21 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AppsListResponse.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AskForApproval.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/AutoReviewDecisionSource.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ByteRange.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CancelLoginAccountParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CancelLoginAccountResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CancelLoginAccountStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ChatgptAuthTokensRefreshParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ChatgptAuthTokensRefreshReason.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ChatgptAuthTokensRefreshResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CodexErrorInfo.d.ts +28 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollabAgentState.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollabAgentStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollabAgentTool.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollabAgentToolCallStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollaborationModeListParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollaborationModeListResponse.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CollaborationModeMask.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandAction.d.ts +19 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecOutputDeltaNotification.d.ts +27 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecOutputStream.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecParams.d.ts +82 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecResizeParams.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecResizeResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecResponse.d.ts +21 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecTerminalSize.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecTerminateParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecTerminateResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecWriteParams.d.ts +19 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecWriteResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionApprovalDecision.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionOutputDeltaNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionRequestApprovalParams.d.ts +40 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionRequestApprovalResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandExecutionStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CommandMigration.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/Config.d.ts +47 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigBatchWriteParams.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigEdit.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigLayer.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigLayerMetadata.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigLayerSource.d.ts +30 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigReadParams.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigReadResponse.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigRequirements.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigRequirementsReadResponse.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigValueWriteParams.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigWarningNotification.d.ts +19 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfigWriteResponse.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfiguredHookHandler.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ConfiguredHookMatcherGroup.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ContextCompactedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/CreditsSnapshot.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeprecationNoticeNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyAlgorithm.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyCreateParams.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyCreateResponse.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyProtectionClass.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyProtectionPolicy.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyPublicParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeyPublicResponse.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeySignParams.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeySignPayload.d.ts +62 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DeviceKeySignResponse.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DynamicToolCallOutputContentItem.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DynamicToolCallParams.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DynamicToolCallResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DynamicToolCallStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/DynamicToolSpec.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ErrorNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExecPolicyAmendment.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeature.d.ts +34 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeatureEnablementSetParams.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeatureEnablementSetResponse.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeatureListParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeatureListResponse.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExperimentalFeatureStage.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigDetectParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigDetectResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigImportCompletedNotification.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigImportParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigImportResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigMigrationItem.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ExternalAgentConfigMigrationItemType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FeedbackUploadParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FeedbackUploadResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileChangeApprovalDecision.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileChangeOutputDeltaNotification.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileChangePatchUpdatedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileChangeRequestApprovalParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileChangeRequestApprovalResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileSystemAccessMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileSystemPath.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileSystemSandboxEntry.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileSystemSpecialPath.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FileUpdateChange.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsChangedNotification.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsCopyParams.d.ts +18 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsCopyResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsCreateDirectoryParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsCreateDirectoryResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsGetMetadataParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsGetMetadataResponse.d.ts +25 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsReadDirectoryEntry.d.ts +17 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsReadDirectoryParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsReadDirectoryResponse.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsReadFileParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsReadFileResponse.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsRemoveParams.d.ts +18 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsRemoveResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsUnwatchParams.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsUnwatchResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsWatchParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsWatchResponse.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsWriteFileParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/FsWriteFileResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GetAccountParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GetAccountRateLimitsResponse.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GetAccountResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GitInfo.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GrantedPermissionProfile.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianApprovalReview.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianApprovalReviewAction.d.ts +37 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianApprovalReviewStatus.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianCommandSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianRiskLevel.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianUserAuthorization.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/GuardianWarningNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookCompletedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookErrorInfo.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookEventName.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookExecutionMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookHandlerType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookMetadata.d.ts +22 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookMigration.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookOutputEntry.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookOutputEntryKind.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookPromptFragment.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookRunStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookRunSummary.d.ts +24 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookScope.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookStartedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HookTrustStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HooksListEntry.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HooksListParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/HooksListResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ItemCompletedNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ItemGuardianApprovalReviewCompletedNotification.d.ts +32 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ItemGuardianApprovalReviewStartedNotification.d.ts +30 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ItemStartedNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ListMcpServerStatusParams.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ListMcpServerStatusResponse.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/LoginAccountParams.d.ts +27 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/LoginAccountResponse.d.ts +23 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/LogoutAccountResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ManagedHooksRequirements.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceAddParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceAddResponse.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceInterface.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceLoadErrorInfo.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceRemoveParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceRemoveResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceUpgradeErrorInfo.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceUpgradeParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MarketplaceUpgradeResponse.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpAuthStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationArrayType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationBooleanSchema.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationBooleanType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationConstOption.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationEnumSchema.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationLegacyTitledEnumSchema.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationMultiSelectEnumSchema.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationNumberSchema.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationNumberType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationObjectType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationPrimitiveSchema.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationSchema.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationSingleSelectEnumSchema.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationStringFormat.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationStringSchema.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationStringType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationTitledEnumItems.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationTitledMultiSelectEnumSchema.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationTitledSingleSelectEnumSchema.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationUntitledEnumItems.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationUntitledMultiSelectEnumSchema.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpElicitationUntitledSingleSelectEnumSchema.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpResourceReadParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpResourceReadResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerElicitationAction.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerElicitationRequestParams.d.ts +26 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerElicitationRequestResponse.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerMigration.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerOauthLoginCompletedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerOauthLoginParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerOauthLoginResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerRefreshResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerStartupState.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerStatus.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerStatusDetail.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerStatusUpdatedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerToolCallParams.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpServerToolCallResponse.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpToolCallError.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpToolCallProgressNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpToolCallResult.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/McpToolCallStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MemoryCitation.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MemoryCitationEntry.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MergeStrategy.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/MigrationDetails.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/Model.d.ts +26 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelAvailabilityNux.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelListParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelListResponse.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelProviderCapabilitiesReadParams.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelProviderCapabilitiesReadResponse.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelRerouteReason.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelReroutedNotification.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelServiceTier.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelUpgradeInfo.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelVerification.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ModelVerificationNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkAccess.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkApprovalContext.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkApprovalProtocol.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkDomainPermission.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkPolicyAmendment.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkPolicyRuleAction.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkRequirements.d.ts +40 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NetworkUnixSocketPermission.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/NonSteerableTurnKind.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/OverriddenMetadata.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PatchApplyStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PatchChangeKind.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionGrantScope.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionProfile.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionProfileFileSystemPermissions.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionProfileModificationParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionProfileNetworkPermissions.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionProfileSelectionParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionsRequestApprovalParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PermissionsRequestApprovalResponse.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PlanDeltaNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginAuthPolicy.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginAvailability.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginDetail.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginInstallParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginInstallPolicy.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginInstallResponse.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginInterface.d.ts +42 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginListMarketplaceKind.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginListParams.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginListResponse.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginMarketplaceEntry.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginReadParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginReadResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareContext.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareDeleteParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareDeleteResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareDiscoverability.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareListItem.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareListParams.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareListResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSharePrincipal.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSharePrincipalType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareSaveParams.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareSaveResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareTarget.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareUpdateTargetsParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginShareUpdateTargetsResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSkillReadParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSkillReadResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSource.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginSummary.d.ts +25 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginUninstallParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginUninstallResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/PluginsMigration.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ProcessExitedNotification.d.ts +39 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ProcessOutputDeltaNotification.d.ts +23 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ProcessOutputStream.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ProcessTerminalSize.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ProfileV2.d.ts +29 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RateLimitReachedType.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RateLimitSnapshot.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RateLimitWindow.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RawResponseItemCompletedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReasoningEffortOption.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReasoningSummaryPartAddedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReasoningSummaryTextDeltaNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReasoningTextDeltaNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RemoteControlClientConnectionAudience.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RemoteControlClientEnrollmentAudience.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RemoteControlConnectionStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RemoteControlStatusChangedNotification.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/RequestPermissionProfile.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ResidencyRequirement.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReviewDelivery.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReviewStartParams.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReviewStartResponse.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ReviewTarget.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SandboxMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SandboxPolicy.d.ts +17 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SandboxWorkspaceWrite.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SendAddCreditsNudgeEmailParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SendAddCreditsNudgeEmailResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ServerRequestResolvedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SessionMigration.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SessionSource.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillDependencies.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillErrorInfo.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillInterface.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillMetadata.d.ts +17 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillScope.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillSummary.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillToolDependency.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsChangedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsConfigWriteParams.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsConfigWriteResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsListEntry.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsListExtraRootsForCwd.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsListParams.d.ts +15 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SkillsListResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SortDirection.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/SubagentMigration.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TerminalInteractionNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TextElement.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TextPosition.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TextRange.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/Thread.d.ts +84 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadActiveFlag.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadApproveGuardianDeniedActionParams.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadApproveGuardianDeniedActionResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadArchiveParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadArchiveResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadArchivedNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadClosedNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadCompactStartParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadCompactStartResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadForkParams.d.ts +38 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadForkResponse.d.ts +26 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadGoal.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadGoalClearedNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadGoalStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadGoalUpdatedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadInjectItemsParams.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadInjectItemsResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadItem.d.ts +180 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadListParams.d.ts +51 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadListResponse.d.ts +16 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadLoadedListParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadLoadedListResponse.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadMetadataGitInfoUpdateParams.d.ts +17 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadMetadataUpdateParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadMetadataUpdateResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadNameUpdatedNotification.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadReadParams.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadReadResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeAudioChunk.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeClosedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeErrorNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeItemAddedNotification.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeOutputAudioDeltaNotification.d.ts +8 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeSdpNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeStartTransport.d.ts +13 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeStartedNotification.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeTranscriptDeltaNotification.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRealtimeTranscriptDoneNotification.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadResumeParams.d.ts +37 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadResumeResponse.d.ts +26 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRollbackParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadRollbackResponse.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadSetNameParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadSetNameResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadShellCommandParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadShellCommandResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadSortKey.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadSourceKind.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStartParams.d.ts +31 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStartResponse.d.ts +26 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStartSource.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStartedNotification.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStatus.d.ts +11 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadStatusChangedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadTokenUsage.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadTokenUsageUpdatedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnarchiveParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnarchiveResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnarchivedNotification.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnsubscribeParams.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnsubscribeResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ThreadUnsubscribeStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TokenUsageBreakdown.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolRequestUserInputAnswer.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolRequestUserInputOption.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolRequestUserInputParams.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolRequestUserInputQuestion.d.ts +12 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolRequestUserInputResponse.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/ToolsV2.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/Turn.d.ts +32 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnCompletedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnDiffUpdatedNotification.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnEnvironmentParams.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnError.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnInterruptParams.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnInterruptResponse.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnItemsView.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnPlanStep.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnPlanStepStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnPlanUpdatedNotification.d.ts +7 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnStartParams.d.ts +44 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnStartResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnStartedNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnSteerParams.d.ts +9 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/TurnSteerResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/UserInput.d.ts +23 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WarningNotification.d.ts +10 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WebSearchAction.d.ts +14 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxReadiness.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxReadinessResponse.d.ts +4 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxSetupCompletedNotification.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxSetupMode.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxSetupStartParams.d.ts +6 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxSetupStartResponse.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsWorldWritableWarningNotification.d.ts +5 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WriteStatus.d.ts +1 -0
- package/dist/internal/codex/app-server-protocol/schema/typescript/v2/index.d.ts +457 -0
- package/dist/internal/codex/app-server-protocol/src/protocol/common.d.ts +36 -0
- package/dist/internal/codex/app-server-protocol/src/protocol/event-mapping.d.ts +41 -0
- package/dist/internal/codex/app-server-protocol/src/protocol/index.d.ts +3 -0
- package/dist/internal/codex/app-server-protocol/src/protocol/thread-resume.d.ts +11 -0
- package/dist/internal/codex/app-server-transport/src/outgoing_message.d.ts +27 -0
- package/dist/internal/codex/app-server-transport/src/transport/mod.d.ts +78 -0
- package/dist/internal/codex/codex-api/src/common.d.ts +100 -0
- package/dist/internal/codex/codex-api/src/endpoint/responses.d.ts +28 -0
- package/dist/internal/codex/codex-api/src/endpoint/responses_websocket.d.ts +54 -0
- package/dist/internal/codex/codex-api/src/error.d.ts +21 -0
- package/dist/internal/codex/codex-api/src/index.d.ts +9 -0
- package/dist/internal/codex/codex-api/src/provider.d.ts +22 -0
- package/dist/internal/codex/codex-api/src/rate_limits.d.ts +3 -0
- package/dist/internal/codex/codex-api/src/requests/responses.d.ts +16 -0
- package/dist/internal/codex/codex-api/src/sse/responses.d.ts +13 -0
- package/dist/internal/codex/codex-api/src/stream_events_utils.d.ts +23 -0
- package/dist/internal/codex/codex-mcp/src/auth_elicitation.d.ts +41 -0
- package/dist/internal/codex/codex-mcp/src/codex_apps.d.ts +57 -0
- package/dist/internal/codex/codex-mcp/src/connection_manager.d.ts +72 -0
- package/dist/internal/codex/codex-mcp/src/elicitation.d.ts +77 -0
- package/dist/internal/codex/codex-mcp/src/mcp/auth.d.ts +64 -0
- package/dist/internal/codex/codex-mcp/src/mcp/mod.d.ts +16 -0
- package/dist/internal/codex/codex-mcp/src/rmcp_client.d.ts +221 -0
- package/dist/internal/codex/codex-mcp/src/tools.d.ts +37 -0
- package/dist/internal/codex/config/src/config_toml.d.ts +14 -0
- package/dist/internal/codex/config/src/index.d.ts +7 -0
- package/dist/internal/codex/config/src/loader/mod.d.ts +21 -0
- package/dist/internal/codex/config/src/merge.d.ts +22 -0
- package/dist/internal/codex/config/src/permissions_toml.d.ts +6 -0
- package/dist/internal/codex/config/src/profile_toml.d.ts +1 -0
- package/dist/internal/codex/config/src/thread_config.d.ts +43 -0
- package/dist/internal/codex/config/src/types.d.ts +121 -0
- package/dist/internal/codex/core/src/agent/agent_resolver.d.ts +3 -0
- package/dist/internal/codex/core/src/agent/control.d.ts +76 -0
- package/dist/internal/codex/core/src/agent/mailbox.d.ts +28 -0
- package/dist/internal/codex/core/src/agent/mod.d.ts +6 -0
- package/dist/internal/codex/core/src/agent/registry.d.ts +54 -0
- package/dist/internal/codex/core/src/agent/role.d.ts +19 -0
- package/dist/internal/codex/core/src/agent/status.d.ts +3 -0
- package/dist/internal/codex/core/src/auth.d.ts +65 -0
- package/dist/internal/codex/core/src/client.d.ts +129 -0
- package/dist/internal/codex/core/src/collaboration-mode-presets.d.ts +9 -0
- package/dist/internal/codex/core/src/compact-task-runner.d.ts +18 -0
- package/dist/internal/codex/core/src/compact.d.ts +12 -0
- package/dist/internal/codex/core/src/config/agent_roles.d.ts +6 -0
- package/dist/internal/codex/core/src/config/managed_features.d.ts +7 -0
- package/dist/internal/codex/core/src/config/mod.d.ts +9 -0
- package/dist/internal/codex/core/src/config/network_proxy_spec.d.ts +5 -0
- package/dist/internal/codex/core/src/config/permissions.d.ts +30 -0
- package/dist/internal/codex/core/src/config-types.d.ts +28 -0
- package/dist/internal/codex/core/src/context/collaboration-mode-instructions.d.ts +10 -0
- package/dist/internal/codex/core/src/context/context-updates.d.ts +10 -0
- package/dist/internal/codex/core/src/context/environment-context.d.ts +24 -0
- package/dist/internal/codex/core/src/context/fragment.d.ts +22 -0
- package/dist/internal/codex/core/src/context/permissions-instructions.d.ts +8 -0
- package/dist/internal/codex/core/src/context/prompt-context.d.ts +8 -0
- package/dist/internal/codex/core/src/context/turn-aborted.d.ts +3 -0
- package/dist/internal/codex/core/src/context/user-instructions.d.ts +7 -0
- package/dist/internal/codex/core/src/context_manager/history.d.ts +60 -0
- package/dist/internal/codex/core/src/context_manager/normalize.d.ts +6 -0
- package/dist/internal/codex/core/src/event-mapping.d.ts +9 -0
- package/dist/internal/codex/core/src/exec-output.d.ts +20 -0
- package/dist/internal/codex/core/src/goals/index.d.ts +2 -0
- package/dist/internal/codex/core/src/goals/runtime.d.ts +32 -0
- package/dist/internal/codex/core/src/goals/types.d.ts +95 -0
- package/dist/internal/codex/core/src/goals.d.ts +1 -0
- package/dist/internal/codex/core/src/hooks/dispatcher.d.ts +5 -0
- package/dist/internal/codex/core/src/hooks/index.d.ts +4 -0
- package/dist/internal/codex/core/src/hooks/output-parser.d.ts +9 -0
- package/dist/internal/codex/core/src/hooks/runtime.d.ts +125 -0
- package/dist/internal/codex/core/src/hooks/types.d.ts +40 -0
- package/dist/internal/codex/core/src/ids.d.ts +5 -0
- package/dist/internal/codex/core/src/index.d.ts +98 -0
- package/dist/internal/codex/core/src/items.d.ts +137 -0
- package/dist/internal/codex/core/src/mcp/index.d.ts +10 -0
- package/dist/internal/codex/core/src/mcp/manager.d.ts +73 -0
- package/dist/internal/codex/core/src/mcp/types.d.ts +165 -0
- package/dist/internal/codex/core/src/mcp.d.ts +1 -0
- package/dist/internal/codex/core/src/memory.d.ts +21 -0
- package/dist/internal/codex/core/src/model-provider.d.ts +193 -0
- package/dist/internal/codex/core/src/models.d.ts +158 -0
- package/dist/internal/codex/core/src/plan-mode.d.ts +1 -0
- package/dist/internal/codex/core/src/protocol/dynamic_tools.d.ts +48 -0
- package/dist/internal/codex/core/src/protocol/user_input.d.ts +30 -0
- package/dist/internal/codex/core/src/protocol.d.ts +893 -0
- package/dist/internal/codex/core/src/rendered-thread.d.ts +30 -0
- package/dist/internal/codex/core/src/request_permissions.d.ts +52 -0
- package/dist/internal/codex/core/src/request_user_input.d.ts +47 -0
- package/dist/internal/codex/core/src/session/rollout-reconstruction.d.ts +11 -0
- package/dist/internal/codex/core/src/session/session-settings.d.ts +29 -0
- package/dist/internal/codex/core/src/session/session.d.ts +226 -0
- package/dist/internal/codex/core/src/session/turn-context.d.ts +71 -0
- package/dist/internal/codex/core/src/session/turn-timing.d.ts +12 -0
- package/dist/internal/codex/core/src/session/turn.d.ts +35 -0
- package/dist/internal/codex/core/src/state/session.d.ts +40 -0
- package/dist/internal/codex/core/src/state/turn.d.ts +83 -0
- package/dist/internal/codex/core/src/stream-parser.d.ts +36 -0
- package/dist/internal/codex/core/src/stream_events_utils.d.ts +43 -0
- package/dist/internal/codex/core/src/tasks/compact.d.ts +26 -0
- package/dist/internal/codex/core/src/tasks/mod.d.ts +43 -0
- package/dist/internal/codex/core/src/tasks/regular.d.ts +27 -0
- package/dist/internal/codex/core/src/templates.d.ts +12 -0
- package/dist/{thread-history-builder-zW0zeqcS.d.ts → internal/codex/core/src/thread-history-builder.d.ts} +14 -16
- package/dist/internal/codex/core/src/thread-store/index.d.ts +3 -0
- package/dist/{live-thread-BMvlflzM.d.ts → internal/codex/core/src/thread-store/live-thread.d.ts} +7 -8
- package/dist/{store-AGRxhgQ3.d.ts → internal/codex/core/src/thread-store/store.d.ts} +3 -6
- package/dist/{types-BTeabLYr.d.ts → internal/codex/core/src/thread-store/types.d.ts} +25 -26
- package/dist/internal/codex/core/src/tools/code_mode/execute_handler.d.ts +7 -0
- package/dist/internal/codex/core/src/tools/code_mode/execute_spec.d.ts +13 -0
- package/dist/internal/codex/core/src/tools/code_mode/mod.d.ts +5 -0
- package/dist/internal/codex/core/src/tools/code_mode/response_adapter.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/code_mode/wait_handler.d.ts +7 -0
- package/dist/internal/codex/core/src/tools/code_mode/wait_spec.d.ts +13 -0
- package/dist/internal/codex/core/src/tools/context.d.ts +155 -0
- package/dist/internal/codex/core/src/tools/events.d.ts +50 -0
- package/dist/internal/codex/core/src/tools/handlers/apply_patch.d.ts +14 -0
- package/dist/internal/codex/core/src/tools/handlers/apply_patch_spec.d.ts +16 -0
- package/dist/internal/codex/core/src/tools/handlers/dynamic.d.ts +17 -0
- package/dist/internal/codex/core/src/tools/handlers/goal.d.ts +20 -0
- package/dist/internal/codex/core/src/tools/handlers/goal_spec.d.ts +51 -0
- package/dist/internal/codex/core/src/tools/handlers/mcp.d.ts +23 -0
- package/dist/internal/codex/core/src/tools/handlers/mcp_resource.d.ts +24 -0
- package/dist/internal/codex/core/src/tools/handlers/mcp_resource_spec.d.ts +61 -0
- package/dist/internal/codex/core/src/tools/handlers/multi_agents.d.ts +50 -0
- package/dist/internal/codex/core/src/tools/handlers/multi_agents_common.d.ts +3 -0
- package/dist/internal/codex/core/src/tools/handlers/multi_agents_spec.d.ts +5 -0
- package/dist/internal/codex/core/src/tools/handlers/multi_agents_v2.d.ts +1 -0
- package/dist/internal/codex/core/src/tools/handlers/plan.d.ts +8 -0
- package/dist/internal/codex/core/src/tools/handlers/plan_spec.d.ts +35 -0
- package/dist/internal/codex/core/src/tools/handlers/request_permissions.d.ts +7 -0
- package/dist/internal/codex/core/src/tools/handlers/request_permissions_spec.d.ts +1 -0
- package/dist/internal/codex/core/src/tools/handlers/request_plugin_install.d.ts +8 -0
- package/dist/internal/codex/core/src/tools/handlers/request_plugin_install_spec.d.ts +12 -0
- package/dist/internal/codex/core/src/tools/handlers/request_user_input.d.ts +13 -0
- package/dist/internal/codex/core/src/tools/handlers/request_user_input_spec.d.ts +1 -0
- package/dist/internal/codex/core/src/tools/handlers/shell_spec.d.ts +60 -0
- package/dist/internal/codex/core/src/tools/handlers/test_sync.d.ts +1 -0
- package/dist/internal/codex/core/src/tools/handlers/test_sync_spec.d.ts +12 -0
- package/dist/internal/codex/core/src/tools/handlers/tool_search.d.ts +28 -0
- package/dist/internal/codex/core/src/tools/handlers/tool_search_spec.d.ts +21 -0
- package/dist/internal/codex/core/src/tools/handlers/unavailable_tool.d.ts +10 -0
- package/dist/internal/codex/core/src/tools/handlers/unified_exec/exec_command.d.ts +13 -0
- package/dist/internal/codex/core/src/tools/handlers/unified_exec/write_stdin.d.ts +8 -0
- package/dist/internal/codex/core/src/tools/handlers/unified_exec.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/hook_names.d.ts +6 -0
- package/dist/internal/codex/core/src/tools/hosted_spec.d.ts +9 -0
- package/dist/internal/codex/core/src/tools/network_approval.d.ts +11 -0
- package/dist/internal/codex/core/src/tools/orchestrator.d.ts +28 -0
- package/dist/internal/codex/core/src/tools/parallel.d.ts +33 -0
- package/dist/internal/codex/core/src/tools/registry.d.ts +27 -0
- package/dist/internal/codex/core/src/tools/responses_api.d.ts +34 -0
- package/dist/internal/codex/core/src/tools/router.d.ts +50 -0
- package/dist/internal/codex/core/src/tools/runtimes/apply_patch.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/runtimes/mod.d.ts +4 -0
- package/dist/internal/codex/core/src/tools/runtimes/shell.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/runtimes/unified_exec.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/sandboxing.d.ts +36 -0
- package/dist/internal/codex/core/src/tools/spec.d.ts +10 -0
- package/dist/internal/codex/core/src/tools/spec_plan.d.ts +2 -0
- package/dist/internal/codex/core/src/tools/spec_plan_types.d.ts +93 -0
- package/dist/internal/codex/core/src/tools/tool_dispatch_trace.d.ts +12 -0
- package/dist/internal/codex/core/src/tools/tool_name.d.ts +17 -0
- package/dist/internal/codex/core/src/tools/tool_search_entry.d.ts +35 -0
- package/dist/internal/codex/core/src/tools/tool_spec.d.ts +29 -0
- package/dist/{mod-DYVLSWO4.d.ts → internal/codex/thread-store/src/in_memory.d.ts} +8 -39
- package/dist/internal/codex/thread-store/src/index.d.ts +6 -0
- package/dist/internal/codex/thread-store/src/local/mod.d.ts +32 -0
- package/dist/internal/codex/utils/output-truncation/src/lib.d.ts +19 -0
- package/dist/internal/codex/utils/string/src/lib.d.ts +1 -0
- package/dist/internal/codex/utils/string/src/truncate.d.ts +5 -0
- package/dist/runtime/index.d.ts +47 -0
- package/dist/server/index.d.ts +2 -29
- package/dist/server/index.js +20488 -15
- package/dist/testing/index.d.ts +2 -9
- package/dist/testing/index.js +1698 -15
- package/package.json +61 -152
- package/dist/ClientNotification-B6-FhXQf.d.ts +0 -5
- package/dist/DynamicToolCallResponse-82DFjES2.d.ts +0 -8
- package/dist/DynamicToolSpec-CfnhqAYK.d.ts +0 -29
- package/dist/PermissionsRequestApprovalResponse-DxzPPDRb.d.ts +0 -55
- package/dist/ProviderStatusBanner-BlP6lzwE.d.ts +0 -441
- package/dist/ServerRequest-B5cKVJjr.d.ts +0 -2181
- package/dist/ThreadResumeResponse-DvmE1juU.d.ts +0 -1542
- package/dist/ToolRequestUserInputQuestion-CeZa5X1J.d.ts +0 -23
- package/dist/ToolRequestUserInputResponse-zcPLwbiK.d.ts +0 -17
- package/dist/TurnSteerResponse-0kBCfplh.d.ts +0 -209
- package/dist/WebSearchToolConfig-D3ep0625.d.ts +0 -18
- package/dist/chat-runtime-9RkXHC_w.d.ts +0 -382
- package/dist/chunk-2DZRMCI2.js +0 -1258
- package/dist/chunk-2DZRMCI2.js.map +0 -1
- package/dist/chunk-4DPLJPB5.js +0 -396
- package/dist/chunk-4DPLJPB5.js.map +0 -1
- package/dist/chunk-5JMJ6OI5.js +0 -3
- package/dist/chunk-5JMJ6OI5.js.map +0 -1
- package/dist/chunk-6ZMJ34KE.js +0 -1153
- package/dist/chunk-6ZMJ34KE.js.map +0 -1
- package/dist/chunk-CGBS37IU.js +0 -128
- package/dist/chunk-CGBS37IU.js.map +0 -1
- package/dist/chunk-DCMKA2A6.js +0 -18
- package/dist/chunk-DCMKA2A6.js.map +0 -1
- package/dist/chunk-DYLHN3HG.js +0 -937
- package/dist/chunk-DYLHN3HG.js.map +0 -1
- package/dist/chunk-FN3SWHRH.js +0 -934
- package/dist/chunk-FN3SWHRH.js.map +0 -1
- package/dist/chunk-LWQNX4LI.js +0 -13755
- package/dist/chunk-LWQNX4LI.js.map +0 -1
- package/dist/chunk-NCI4MAWZ.js +0 -7733
- package/dist/chunk-NCI4MAWZ.js.map +0 -1
- package/dist/chunk-O44XP7LH.js +0 -214
- package/dist/chunk-O44XP7LH.js.map +0 -1
- package/dist/chunk-PST3ZWX2.js +0 -555
- package/dist/chunk-PST3ZWX2.js.map +0 -1
- package/dist/chunk-SYPHCDRD.js +0 -1133
- package/dist/chunk-SYPHCDRD.js.map +0 -1
- package/dist/chunk-V4BMZWBM.js +0 -2401
- package/dist/chunk-V4BMZWBM.js.map +0 -1
- package/dist/chunk-W7S6HFCQ.js +0 -1983
- package/dist/chunk-W7S6HFCQ.js.map +0 -1
- package/dist/chunk-YHVCFD2D.js +0 -117
- package/dist/chunk-YHVCFD2D.js.map +0 -1
- package/dist/chunk-Z63UPBS3.js +0 -152
- package/dist/chunk-Z63UPBS3.js.map +0 -1
- package/dist/chunk-ZX5OIIJX.js +0 -3
- package/dist/chunk-ZX5OIIJX.js.map +0 -1
- package/dist/client/index.js.map +0 -1
- package/dist/codex-rs/app-server/index.d.ts +0 -161
- package/dist/codex-rs/app-server/index.js +0 -13
- package/dist/codex-rs/app-server/index.js.map +0 -1
- package/dist/codex-rs/app-server-protocol/index.d.ts +0 -1722
- package/dist/codex-rs/app-server-protocol/index.js +0 -6
- package/dist/codex-rs/app-server-protocol/index.js.map +0 -1
- package/dist/codex-rs/app-server-protocol/protocol.d.ts +0 -19
- package/dist/codex-rs/app-server-protocol/protocol.js +0 -4
- package/dist/codex-rs/app-server-protocol/protocol.js.map +0 -1
- package/dist/codex-rs/codex-api/index.d.ts +0 -104
- package/dist/codex-rs/codex-api/index.js +0 -11
- package/dist/codex-rs/codex-api/index.js.map +0 -1
- package/dist/codex-rs/config/index.d.ts +0 -88
- package/dist/codex-rs/config/index.js +0 -4
- package/dist/codex-rs/config/index.js.map +0 -1
- package/dist/codex-rs/core/config/index.d.ts +0 -61
- package/dist/codex-rs/core/config/index.js +0 -5
- package/dist/codex-rs/core/config/index.js.map +0 -1
- package/dist/codex-rs/core/index.d.ts +0 -1393
- package/dist/codex-rs/core/index.js +0 -11
- package/dist/codex-rs/core/index.js.map +0 -1
- package/dist/codex-rs/model-provider/index.d.ts +0 -2
- package/dist/codex-rs/model-provider/index.js +0 -4
- package/dist/codex-rs/model-provider/index.js.map +0 -1
- package/dist/codex-rs/models-manager/index.d.ts +0 -2
- package/dist/codex-rs/models-manager/index.js +0 -4
- package/dist/codex-rs/models-manager/index.js.map +0 -1
- package/dist/codex-rs/parity.d.ts +0 -26
- package/dist/codex-rs/parity.js +0 -3
- package/dist/codex-rs/parity.js.map +0 -1
- package/dist/codex-rs/thread-store/index.d.ts +0 -5
- package/dist/codex-rs/thread-store/index.js +0 -4
- package/dist/codex-rs/thread-store/index.js.map +0 -1
- package/dist/codex-rs/unsupported.d.ts +0 -15
- package/dist/codex-rs/unsupported.js +0 -22
- package/dist/codex-rs/unsupported.js.map +0 -1
- package/dist/codex-rs/utils/output-truncation.d.ts +0 -21
- package/dist/codex-rs/utils/output-truncation.js +0 -4
- package/dist/codex-rs/utils/output-truncation.js.map +0 -1
- package/dist/codex-rs/utils/string.d.ts +0 -7
- package/dist/codex-rs/utils/string.js +0 -3
- package/dist/codex-rs/utils/string.js.map +0 -1
- package/dist/common-CTyph5x8.d.ts +0 -40
- package/dist/event-mapping-CbISdQ1D.d.ts +0 -43
- package/dist/history-CfM-4V7b.d.ts +0 -1654
- package/dist/index-CoDZosq0.d.ts +0 -261
- package/dist/index.js.map +0 -1
- package/dist/lib-nXlaKiS-.d.ts +0 -48
- package/dist/merge-B_AWVmnI.d.ts +0 -24
- package/dist/plan-mode-Cv6KWb_S.d.ts +0 -14
- package/dist/proposed-plan-DpN1ma0Y.d.ts +0 -53
- package/dist/protocol-mpBcYHrm.d.ts +0 -1655
- package/dist/react/index.d.ts +0 -81
- package/dist/react/index.js +0 -19
- package/dist/react/index.js.map +0 -1
- package/dist/remote-ClZbq9KN.d.ts +0 -21
- package/dist/rendered-thread-AOxw3V5b.d.ts +0 -29
- package/dist/responses_websocket-BhxSgCzK.d.ts +0 -183
- package/dist/runtime-Cm6ml53h.d.ts +0 -528
- package/dist/server/index.js.map +0 -1
- package/dist/shadcn/index.d.ts +0 -68
- package/dist/shadcn/index.js +0 -334
- package/dist/shadcn/index.js.map +0 -1
- package/dist/sidebar-DMMij22z.d.ts +0 -87
- package/dist/spec_plan_types-CmsJ-Tfn.d.ts +0 -260
- package/dist/styles.css +0 -1
- package/dist/t3code/apps/web/components/chat.d.ts +0 -508
- package/dist/t3code/apps/web/components/chat.js +0 -12
- package/dist/t3code/apps/web/components/chat.js.map +0 -1
- package/dist/t3code/apps/web/index.d.ts +0 -12
- package/dist/t3code/apps/web/index.js +0 -13
- package/dist/t3code/apps/web/index.js.map +0 -1
- package/dist/testing/index.js.map +0 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { TextElement } from "./TextElement.js";
|
|
2
|
+
export type UserInput = {
|
|
3
|
+
"type": "text";
|
|
4
|
+
text: string;
|
|
5
|
+
/**
|
|
6
|
+
* UI-defined spans within `text` used to render or persist special elements.
|
|
7
|
+
*/
|
|
8
|
+
text_elements: Array<TextElement>;
|
|
9
|
+
} | {
|
|
10
|
+
"type": "image";
|
|
11
|
+
url: string;
|
|
12
|
+
} | {
|
|
13
|
+
"type": "localImage";
|
|
14
|
+
path: string;
|
|
15
|
+
} | {
|
|
16
|
+
"type": "skill";
|
|
17
|
+
name: string;
|
|
18
|
+
path: string;
|
|
19
|
+
} | {
|
|
20
|
+
"type": "mention";
|
|
21
|
+
name: string;
|
|
22
|
+
path: string;
|
|
23
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type WebSearchAction = {
|
|
2
|
+
"type": "search";
|
|
3
|
+
query: string | null;
|
|
4
|
+
queries: Array<string> | null;
|
|
5
|
+
} | {
|
|
6
|
+
"type": "openPage";
|
|
7
|
+
url: string | null;
|
|
8
|
+
} | {
|
|
9
|
+
"type": "findInPage";
|
|
10
|
+
url: string | null;
|
|
11
|
+
pattern: string | null;
|
|
12
|
+
} | {
|
|
13
|
+
"type": "other";
|
|
14
|
+
};
|
package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxReadiness.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type WindowsSandboxReadiness = "ready" | "notConfigured" | "updateRequired";
|
package/dist/internal/codex/app-server-protocol/schema/typescript/v2/WindowsSandboxSetupMode.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type WindowsSandboxSetupMode = "elevated" | "unelevated";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type WriteStatus = "ok" | "okOverridden";
|
|
@@ -0,0 +1,457 @@
|
|
|
1
|
+
export type { Account } from "./Account.js";
|
|
2
|
+
export type { AccountLoginCompletedNotification } from "./AccountLoginCompletedNotification.js";
|
|
3
|
+
export type { AccountRateLimitsUpdatedNotification } from "./AccountRateLimitsUpdatedNotification.js";
|
|
4
|
+
export type { AccountUpdatedNotification } from "./AccountUpdatedNotification.js";
|
|
5
|
+
export type { ActivePermissionProfile } from "./ActivePermissionProfile.js";
|
|
6
|
+
export type { ActivePermissionProfileModification } from "./ActivePermissionProfileModification.js";
|
|
7
|
+
export type { AddCreditsNudgeCreditType } from "./AddCreditsNudgeCreditType.js";
|
|
8
|
+
export type { AddCreditsNudgeEmailStatus } from "./AddCreditsNudgeEmailStatus.js";
|
|
9
|
+
export type { AdditionalFileSystemPermissions } from "./AdditionalFileSystemPermissions.js";
|
|
10
|
+
export type { AdditionalNetworkPermissions } from "./AdditionalNetworkPermissions.js";
|
|
11
|
+
export type { AdditionalPermissionProfile } from "./AdditionalPermissionProfile.js";
|
|
12
|
+
export type { AgentMessageDeltaNotification } from "./AgentMessageDeltaNotification.js";
|
|
13
|
+
export type { AnalyticsConfig } from "./AnalyticsConfig.js";
|
|
14
|
+
export type { AppBranding } from "./AppBranding.js";
|
|
15
|
+
export type { AppInfo } from "./AppInfo.js";
|
|
16
|
+
export type { AppListUpdatedNotification } from "./AppListUpdatedNotification.js";
|
|
17
|
+
export type { AppMetadata } from "./AppMetadata.js";
|
|
18
|
+
export type { AppReview } from "./AppReview.js";
|
|
19
|
+
export type { AppScreenshot } from "./AppScreenshot.js";
|
|
20
|
+
export type { AppSummary } from "./AppSummary.js";
|
|
21
|
+
export type { AppToolApproval } from "./AppToolApproval.js";
|
|
22
|
+
export type { AppToolsConfig } from "./AppToolsConfig.js";
|
|
23
|
+
export type { ApprovalsReviewer } from "./ApprovalsReviewer.js";
|
|
24
|
+
export type { AppsConfig } from "./AppsConfig.js";
|
|
25
|
+
export type { AppsDefaultConfig } from "./AppsDefaultConfig.js";
|
|
26
|
+
export type { AppsListParams } from "./AppsListParams.js";
|
|
27
|
+
export type { AppsListResponse } from "./AppsListResponse.js";
|
|
28
|
+
export type { AskForApproval } from "./AskForApproval.js";
|
|
29
|
+
export type { AutoReviewDecisionSource } from "./AutoReviewDecisionSource.js";
|
|
30
|
+
export type { ByteRange } from "./ByteRange.js";
|
|
31
|
+
export type { CancelLoginAccountParams } from "./CancelLoginAccountParams.js";
|
|
32
|
+
export type { CancelLoginAccountResponse } from "./CancelLoginAccountResponse.js";
|
|
33
|
+
export type { CancelLoginAccountStatus } from "./CancelLoginAccountStatus.js";
|
|
34
|
+
export type { ChatgptAuthTokensRefreshParams } from "./ChatgptAuthTokensRefreshParams.js";
|
|
35
|
+
export type { ChatgptAuthTokensRefreshReason } from "./ChatgptAuthTokensRefreshReason.js";
|
|
36
|
+
export type { ChatgptAuthTokensRefreshResponse } from "./ChatgptAuthTokensRefreshResponse.js";
|
|
37
|
+
export type { CodexErrorInfo } from "./CodexErrorInfo.js";
|
|
38
|
+
export type { CollabAgentState } from "./CollabAgentState.js";
|
|
39
|
+
export type { CollabAgentStatus } from "./CollabAgentStatus.js";
|
|
40
|
+
export type { CollabAgentTool } from "./CollabAgentTool.js";
|
|
41
|
+
export type { CollabAgentToolCallStatus } from "./CollabAgentToolCallStatus.js";
|
|
42
|
+
export type { CollaborationModeListParams } from "./CollaborationModeListParams.js";
|
|
43
|
+
export type { CollaborationModeListResponse } from "./CollaborationModeListResponse.js";
|
|
44
|
+
export type { CollaborationModeMask } from "./CollaborationModeMask.js";
|
|
45
|
+
export type { CommandAction } from "./CommandAction.js";
|
|
46
|
+
export type { CommandExecOutputDeltaNotification } from "./CommandExecOutputDeltaNotification.js";
|
|
47
|
+
export type { CommandExecOutputStream } from "./CommandExecOutputStream.js";
|
|
48
|
+
export type { CommandExecParams } from "./CommandExecParams.js";
|
|
49
|
+
export type { CommandExecResizeParams } from "./CommandExecResizeParams.js";
|
|
50
|
+
export type { CommandExecResizeResponse } from "./CommandExecResizeResponse.js";
|
|
51
|
+
export type { CommandExecResponse } from "./CommandExecResponse.js";
|
|
52
|
+
export type { CommandExecTerminalSize } from "./CommandExecTerminalSize.js";
|
|
53
|
+
export type { CommandExecTerminateParams } from "./CommandExecTerminateParams.js";
|
|
54
|
+
export type { CommandExecTerminateResponse } from "./CommandExecTerminateResponse.js";
|
|
55
|
+
export type { CommandExecWriteParams } from "./CommandExecWriteParams.js";
|
|
56
|
+
export type { CommandExecWriteResponse } from "./CommandExecWriteResponse.js";
|
|
57
|
+
export type { CommandExecutionApprovalDecision } from "./CommandExecutionApprovalDecision.js";
|
|
58
|
+
export type { CommandExecutionOutputDeltaNotification } from "./CommandExecutionOutputDeltaNotification.js";
|
|
59
|
+
export type { CommandExecutionRequestApprovalParams } from "./CommandExecutionRequestApprovalParams.js";
|
|
60
|
+
export type { CommandExecutionRequestApprovalResponse } from "./CommandExecutionRequestApprovalResponse.js";
|
|
61
|
+
export type { CommandExecutionSource } from "./CommandExecutionSource.js";
|
|
62
|
+
export type { CommandExecutionStatus } from "./CommandExecutionStatus.js";
|
|
63
|
+
export type { CommandMigration } from "./CommandMigration.js";
|
|
64
|
+
export type { Config } from "./Config.js";
|
|
65
|
+
export type { ConfigBatchWriteParams } from "./ConfigBatchWriteParams.js";
|
|
66
|
+
export type { ConfigEdit } from "./ConfigEdit.js";
|
|
67
|
+
export type { ConfigLayer } from "./ConfigLayer.js";
|
|
68
|
+
export type { ConfigLayerMetadata } from "./ConfigLayerMetadata.js";
|
|
69
|
+
export type { ConfigLayerSource } from "./ConfigLayerSource.js";
|
|
70
|
+
export type { ConfigReadParams } from "./ConfigReadParams.js";
|
|
71
|
+
export type { ConfigReadResponse } from "./ConfigReadResponse.js";
|
|
72
|
+
export type { ConfigRequirements } from "./ConfigRequirements.js";
|
|
73
|
+
export type { ConfigRequirementsReadResponse } from "./ConfigRequirementsReadResponse.js";
|
|
74
|
+
export type { ConfigValueWriteParams } from "./ConfigValueWriteParams.js";
|
|
75
|
+
export type { ConfigWarningNotification } from "./ConfigWarningNotification.js";
|
|
76
|
+
export type { ConfigWriteResponse } from "./ConfigWriteResponse.js";
|
|
77
|
+
export type { ConfiguredHookHandler } from "./ConfiguredHookHandler.js";
|
|
78
|
+
export type { ConfiguredHookMatcherGroup } from "./ConfiguredHookMatcherGroup.js";
|
|
79
|
+
export type { ContextCompactedNotification } from "./ContextCompactedNotification.js";
|
|
80
|
+
export type { CreditsSnapshot } from "./CreditsSnapshot.js";
|
|
81
|
+
export type { DeprecationNoticeNotification } from "./DeprecationNoticeNotification.js";
|
|
82
|
+
export type { DeviceKeyAlgorithm } from "./DeviceKeyAlgorithm.js";
|
|
83
|
+
export type { DeviceKeyCreateParams } from "./DeviceKeyCreateParams.js";
|
|
84
|
+
export type { DeviceKeyCreateResponse } from "./DeviceKeyCreateResponse.js";
|
|
85
|
+
export type { DeviceKeyProtectionClass } from "./DeviceKeyProtectionClass.js";
|
|
86
|
+
export type { DeviceKeyProtectionPolicy } from "./DeviceKeyProtectionPolicy.js";
|
|
87
|
+
export type { DeviceKeyPublicParams } from "./DeviceKeyPublicParams.js";
|
|
88
|
+
export type { DeviceKeyPublicResponse } from "./DeviceKeyPublicResponse.js";
|
|
89
|
+
export type { DeviceKeySignParams } from "./DeviceKeySignParams.js";
|
|
90
|
+
export type { DeviceKeySignPayload } from "./DeviceKeySignPayload.js";
|
|
91
|
+
export type { DeviceKeySignResponse } from "./DeviceKeySignResponse.js";
|
|
92
|
+
export type { DynamicToolCallOutputContentItem } from "./DynamicToolCallOutputContentItem.js";
|
|
93
|
+
export type { DynamicToolCallParams } from "./DynamicToolCallParams.js";
|
|
94
|
+
export type { DynamicToolCallResponse } from "./DynamicToolCallResponse.js";
|
|
95
|
+
export type { DynamicToolCallStatus } from "./DynamicToolCallStatus.js";
|
|
96
|
+
export type { DynamicToolSpec } from "./DynamicToolSpec.js";
|
|
97
|
+
export type { ErrorNotification } from "./ErrorNotification.js";
|
|
98
|
+
export type { ExecPolicyAmendment } from "./ExecPolicyAmendment.js";
|
|
99
|
+
export type { ExperimentalFeature } from "./ExperimentalFeature.js";
|
|
100
|
+
export type { ExperimentalFeatureEnablementSetParams } from "./ExperimentalFeatureEnablementSetParams.js";
|
|
101
|
+
export type { ExperimentalFeatureEnablementSetResponse } from "./ExperimentalFeatureEnablementSetResponse.js";
|
|
102
|
+
export type { ExperimentalFeatureListParams } from "./ExperimentalFeatureListParams.js";
|
|
103
|
+
export type { ExperimentalFeatureListResponse } from "./ExperimentalFeatureListResponse.js";
|
|
104
|
+
export type { ExperimentalFeatureStage } from "./ExperimentalFeatureStage.js";
|
|
105
|
+
export type { ExternalAgentConfigDetectParams } from "./ExternalAgentConfigDetectParams.js";
|
|
106
|
+
export type { ExternalAgentConfigDetectResponse } from "./ExternalAgentConfigDetectResponse.js";
|
|
107
|
+
export type { ExternalAgentConfigImportCompletedNotification } from "./ExternalAgentConfigImportCompletedNotification.js";
|
|
108
|
+
export type { ExternalAgentConfigImportParams } from "./ExternalAgentConfigImportParams.js";
|
|
109
|
+
export type { ExternalAgentConfigImportResponse } from "./ExternalAgentConfigImportResponse.js";
|
|
110
|
+
export type { ExternalAgentConfigMigrationItem } from "./ExternalAgentConfigMigrationItem.js";
|
|
111
|
+
export type { ExternalAgentConfigMigrationItemType } from "./ExternalAgentConfigMigrationItemType.js";
|
|
112
|
+
export type { FeedbackUploadParams } from "./FeedbackUploadParams.js";
|
|
113
|
+
export type { FeedbackUploadResponse } from "./FeedbackUploadResponse.js";
|
|
114
|
+
export type { FileChangeApprovalDecision } from "./FileChangeApprovalDecision.js";
|
|
115
|
+
export type { FileChangeOutputDeltaNotification } from "./FileChangeOutputDeltaNotification.js";
|
|
116
|
+
export type { FileChangePatchUpdatedNotification } from "./FileChangePatchUpdatedNotification.js";
|
|
117
|
+
export type { FileChangeRequestApprovalParams } from "./FileChangeRequestApprovalParams.js";
|
|
118
|
+
export type { FileChangeRequestApprovalResponse } from "./FileChangeRequestApprovalResponse.js";
|
|
119
|
+
export type { FileSystemAccessMode } from "./FileSystemAccessMode.js";
|
|
120
|
+
export type { FileSystemPath } from "./FileSystemPath.js";
|
|
121
|
+
export type { FileSystemSandboxEntry } from "./FileSystemSandboxEntry.js";
|
|
122
|
+
export type { FileSystemSpecialPath } from "./FileSystemSpecialPath.js";
|
|
123
|
+
export type { FileUpdateChange } from "./FileUpdateChange.js";
|
|
124
|
+
export type { FsChangedNotification } from "./FsChangedNotification.js";
|
|
125
|
+
export type { FsCopyParams } from "./FsCopyParams.js";
|
|
126
|
+
export type { FsCopyResponse } from "./FsCopyResponse.js";
|
|
127
|
+
export type { FsCreateDirectoryParams } from "./FsCreateDirectoryParams.js";
|
|
128
|
+
export type { FsCreateDirectoryResponse } from "./FsCreateDirectoryResponse.js";
|
|
129
|
+
export type { FsGetMetadataParams } from "./FsGetMetadataParams.js";
|
|
130
|
+
export type { FsGetMetadataResponse } from "./FsGetMetadataResponse.js";
|
|
131
|
+
export type { FsReadDirectoryEntry } from "./FsReadDirectoryEntry.js";
|
|
132
|
+
export type { FsReadDirectoryParams } from "./FsReadDirectoryParams.js";
|
|
133
|
+
export type { FsReadDirectoryResponse } from "./FsReadDirectoryResponse.js";
|
|
134
|
+
export type { FsReadFileParams } from "./FsReadFileParams.js";
|
|
135
|
+
export type { FsReadFileResponse } from "./FsReadFileResponse.js";
|
|
136
|
+
export type { FsRemoveParams } from "./FsRemoveParams.js";
|
|
137
|
+
export type { FsRemoveResponse } from "./FsRemoveResponse.js";
|
|
138
|
+
export type { FsUnwatchParams } from "./FsUnwatchParams.js";
|
|
139
|
+
export type { FsUnwatchResponse } from "./FsUnwatchResponse.js";
|
|
140
|
+
export type { FsWatchParams } from "./FsWatchParams.js";
|
|
141
|
+
export type { FsWatchResponse } from "./FsWatchResponse.js";
|
|
142
|
+
export type { FsWriteFileParams } from "./FsWriteFileParams.js";
|
|
143
|
+
export type { FsWriteFileResponse } from "./FsWriteFileResponse.js";
|
|
144
|
+
export type { GetAccountParams } from "./GetAccountParams.js";
|
|
145
|
+
export type { GetAccountRateLimitsResponse } from "./GetAccountRateLimitsResponse.js";
|
|
146
|
+
export type { GetAccountResponse } from "./GetAccountResponse.js";
|
|
147
|
+
export type { GitInfo } from "./GitInfo.js";
|
|
148
|
+
export type { GrantedPermissionProfile } from "./GrantedPermissionProfile.js";
|
|
149
|
+
export type { GuardianApprovalReview } from "./GuardianApprovalReview.js";
|
|
150
|
+
export type { GuardianApprovalReviewAction } from "./GuardianApprovalReviewAction.js";
|
|
151
|
+
export type { GuardianApprovalReviewStatus } from "./GuardianApprovalReviewStatus.js";
|
|
152
|
+
export type { GuardianCommandSource } from "./GuardianCommandSource.js";
|
|
153
|
+
export type { GuardianRiskLevel } from "./GuardianRiskLevel.js";
|
|
154
|
+
export type { GuardianUserAuthorization } from "./GuardianUserAuthorization.js";
|
|
155
|
+
export type { GuardianWarningNotification } from "./GuardianWarningNotification.js";
|
|
156
|
+
export type { HookCompletedNotification } from "./HookCompletedNotification.js";
|
|
157
|
+
export type { HookErrorInfo } from "./HookErrorInfo.js";
|
|
158
|
+
export type { HookEventName } from "./HookEventName.js";
|
|
159
|
+
export type { HookExecutionMode } from "./HookExecutionMode.js";
|
|
160
|
+
export type { HookHandlerType } from "./HookHandlerType.js";
|
|
161
|
+
export type { HookMetadata } from "./HookMetadata.js";
|
|
162
|
+
export type { HookMigration } from "./HookMigration.js";
|
|
163
|
+
export type { HookOutputEntry } from "./HookOutputEntry.js";
|
|
164
|
+
export type { HookOutputEntryKind } from "./HookOutputEntryKind.js";
|
|
165
|
+
export type { HookPromptFragment } from "./HookPromptFragment.js";
|
|
166
|
+
export type { HookRunStatus } from "./HookRunStatus.js";
|
|
167
|
+
export type { HookRunSummary } from "./HookRunSummary.js";
|
|
168
|
+
export type { HookScope } from "./HookScope.js";
|
|
169
|
+
export type { HookSource } from "./HookSource.js";
|
|
170
|
+
export type { HookStartedNotification } from "./HookStartedNotification.js";
|
|
171
|
+
export type { HookTrustStatus } from "./HookTrustStatus.js";
|
|
172
|
+
export type { HooksListEntry } from "./HooksListEntry.js";
|
|
173
|
+
export type { HooksListParams } from "./HooksListParams.js";
|
|
174
|
+
export type { HooksListResponse } from "./HooksListResponse.js";
|
|
175
|
+
export type { ItemCompletedNotification } from "./ItemCompletedNotification.js";
|
|
176
|
+
export type { ItemGuardianApprovalReviewCompletedNotification } from "./ItemGuardianApprovalReviewCompletedNotification.js";
|
|
177
|
+
export type { ItemGuardianApprovalReviewStartedNotification } from "./ItemGuardianApprovalReviewStartedNotification.js";
|
|
178
|
+
export type { ItemStartedNotification } from "./ItemStartedNotification.js";
|
|
179
|
+
export type { ListMcpServerStatusParams } from "./ListMcpServerStatusParams.js";
|
|
180
|
+
export type { ListMcpServerStatusResponse } from "./ListMcpServerStatusResponse.js";
|
|
181
|
+
export type { LoginAccountParams } from "./LoginAccountParams.js";
|
|
182
|
+
export type { LoginAccountResponse } from "./LoginAccountResponse.js";
|
|
183
|
+
export type { LogoutAccountResponse } from "./LogoutAccountResponse.js";
|
|
184
|
+
export type { ManagedHooksRequirements } from "./ManagedHooksRequirements.js";
|
|
185
|
+
export type { MarketplaceAddParams } from "./MarketplaceAddParams.js";
|
|
186
|
+
export type { MarketplaceAddResponse } from "./MarketplaceAddResponse.js";
|
|
187
|
+
export type { MarketplaceInterface } from "./MarketplaceInterface.js";
|
|
188
|
+
export type { MarketplaceLoadErrorInfo } from "./MarketplaceLoadErrorInfo.js";
|
|
189
|
+
export type { MarketplaceRemoveParams } from "./MarketplaceRemoveParams.js";
|
|
190
|
+
export type { MarketplaceRemoveResponse } from "./MarketplaceRemoveResponse.js";
|
|
191
|
+
export type { MarketplaceUpgradeErrorInfo } from "./MarketplaceUpgradeErrorInfo.js";
|
|
192
|
+
export type { MarketplaceUpgradeParams } from "./MarketplaceUpgradeParams.js";
|
|
193
|
+
export type { MarketplaceUpgradeResponse } from "./MarketplaceUpgradeResponse.js";
|
|
194
|
+
export type { McpAuthStatus } from "./McpAuthStatus.js";
|
|
195
|
+
export type { McpElicitationArrayType } from "./McpElicitationArrayType.js";
|
|
196
|
+
export type { McpElicitationBooleanSchema } from "./McpElicitationBooleanSchema.js";
|
|
197
|
+
export type { McpElicitationBooleanType } from "./McpElicitationBooleanType.js";
|
|
198
|
+
export type { McpElicitationConstOption } from "./McpElicitationConstOption.js";
|
|
199
|
+
export type { McpElicitationEnumSchema } from "./McpElicitationEnumSchema.js";
|
|
200
|
+
export type { McpElicitationLegacyTitledEnumSchema } from "./McpElicitationLegacyTitledEnumSchema.js";
|
|
201
|
+
export type { McpElicitationMultiSelectEnumSchema } from "./McpElicitationMultiSelectEnumSchema.js";
|
|
202
|
+
export type { McpElicitationNumberSchema } from "./McpElicitationNumberSchema.js";
|
|
203
|
+
export type { McpElicitationNumberType } from "./McpElicitationNumberType.js";
|
|
204
|
+
export type { McpElicitationObjectType } from "./McpElicitationObjectType.js";
|
|
205
|
+
export type { McpElicitationPrimitiveSchema } from "./McpElicitationPrimitiveSchema.js";
|
|
206
|
+
export type { McpElicitationSchema } from "./McpElicitationSchema.js";
|
|
207
|
+
export type { McpElicitationSingleSelectEnumSchema } from "./McpElicitationSingleSelectEnumSchema.js";
|
|
208
|
+
export type { McpElicitationStringFormat } from "./McpElicitationStringFormat.js";
|
|
209
|
+
export type { McpElicitationStringSchema } from "./McpElicitationStringSchema.js";
|
|
210
|
+
export type { McpElicitationStringType } from "./McpElicitationStringType.js";
|
|
211
|
+
export type { McpElicitationTitledEnumItems } from "./McpElicitationTitledEnumItems.js";
|
|
212
|
+
export type { McpElicitationTitledMultiSelectEnumSchema } from "./McpElicitationTitledMultiSelectEnumSchema.js";
|
|
213
|
+
export type { McpElicitationTitledSingleSelectEnumSchema } from "./McpElicitationTitledSingleSelectEnumSchema.js";
|
|
214
|
+
export type { McpElicitationUntitledEnumItems } from "./McpElicitationUntitledEnumItems.js";
|
|
215
|
+
export type { McpElicitationUntitledMultiSelectEnumSchema } from "./McpElicitationUntitledMultiSelectEnumSchema.js";
|
|
216
|
+
export type { McpElicitationUntitledSingleSelectEnumSchema } from "./McpElicitationUntitledSingleSelectEnumSchema.js";
|
|
217
|
+
export type { McpResourceReadParams } from "./McpResourceReadParams.js";
|
|
218
|
+
export type { McpResourceReadResponse } from "./McpResourceReadResponse.js";
|
|
219
|
+
export type { McpServerElicitationAction } from "./McpServerElicitationAction.js";
|
|
220
|
+
export type { McpServerElicitationRequestParams } from "./McpServerElicitationRequestParams.js";
|
|
221
|
+
export type { McpServerElicitationRequestResponse } from "./McpServerElicitationRequestResponse.js";
|
|
222
|
+
export type { McpServerMigration } from "./McpServerMigration.js";
|
|
223
|
+
export type { McpServerOauthLoginCompletedNotification } from "./McpServerOauthLoginCompletedNotification.js";
|
|
224
|
+
export type { McpServerOauthLoginParams } from "./McpServerOauthLoginParams.js";
|
|
225
|
+
export type { McpServerOauthLoginResponse } from "./McpServerOauthLoginResponse.js";
|
|
226
|
+
export type { McpServerRefreshResponse } from "./McpServerRefreshResponse.js";
|
|
227
|
+
export type { McpServerStartupState } from "./McpServerStartupState.js";
|
|
228
|
+
export type { McpServerStatus } from "./McpServerStatus.js";
|
|
229
|
+
export type { McpServerStatusDetail } from "./McpServerStatusDetail.js";
|
|
230
|
+
export type { McpServerStatusUpdatedNotification } from "./McpServerStatusUpdatedNotification.js";
|
|
231
|
+
export type { McpServerToolCallParams } from "./McpServerToolCallParams.js";
|
|
232
|
+
export type { McpServerToolCallResponse } from "./McpServerToolCallResponse.js";
|
|
233
|
+
export type { McpToolCallError } from "./McpToolCallError.js";
|
|
234
|
+
export type { McpToolCallProgressNotification } from "./McpToolCallProgressNotification.js";
|
|
235
|
+
export type { McpToolCallResult } from "./McpToolCallResult.js";
|
|
236
|
+
export type { McpToolCallStatus } from "./McpToolCallStatus.js";
|
|
237
|
+
export type { MemoryCitation } from "./MemoryCitation.js";
|
|
238
|
+
export type { MemoryCitationEntry } from "./MemoryCitationEntry.js";
|
|
239
|
+
export type { MergeStrategy } from "./MergeStrategy.js";
|
|
240
|
+
export type { MigrationDetails } from "./MigrationDetails.js";
|
|
241
|
+
export type { Model } from "./Model.js";
|
|
242
|
+
export type { ModelAvailabilityNux } from "./ModelAvailabilityNux.js";
|
|
243
|
+
export type { ModelListParams } from "./ModelListParams.js";
|
|
244
|
+
export type { ModelListResponse } from "./ModelListResponse.js";
|
|
245
|
+
export type { ModelProviderCapabilitiesReadParams } from "./ModelProviderCapabilitiesReadParams.js";
|
|
246
|
+
export type { ModelProviderCapabilitiesReadResponse } from "./ModelProviderCapabilitiesReadResponse.js";
|
|
247
|
+
export type { ModelRerouteReason } from "./ModelRerouteReason.js";
|
|
248
|
+
export type { ModelReroutedNotification } from "./ModelReroutedNotification.js";
|
|
249
|
+
export type { ModelServiceTier } from "./ModelServiceTier.js";
|
|
250
|
+
export type { ModelUpgradeInfo } from "./ModelUpgradeInfo.js";
|
|
251
|
+
export type { ModelVerification } from "./ModelVerification.js";
|
|
252
|
+
export type { ModelVerificationNotification } from "./ModelVerificationNotification.js";
|
|
253
|
+
export type { NetworkAccess } from "./NetworkAccess.js";
|
|
254
|
+
export type { NetworkApprovalContext } from "./NetworkApprovalContext.js";
|
|
255
|
+
export type { NetworkApprovalProtocol } from "./NetworkApprovalProtocol.js";
|
|
256
|
+
export type { NetworkDomainPermission } from "./NetworkDomainPermission.js";
|
|
257
|
+
export type { NetworkPolicyAmendment } from "./NetworkPolicyAmendment.js";
|
|
258
|
+
export type { NetworkPolicyRuleAction } from "./NetworkPolicyRuleAction.js";
|
|
259
|
+
export type { NetworkRequirements } from "./NetworkRequirements.js";
|
|
260
|
+
export type { NetworkUnixSocketPermission } from "./NetworkUnixSocketPermission.js";
|
|
261
|
+
export type { NonSteerableTurnKind } from "./NonSteerableTurnKind.js";
|
|
262
|
+
export type { OverriddenMetadata } from "./OverriddenMetadata.js";
|
|
263
|
+
export type { PatchApplyStatus } from "./PatchApplyStatus.js";
|
|
264
|
+
export type { PatchChangeKind } from "./PatchChangeKind.js";
|
|
265
|
+
export type { PermissionGrantScope } from "./PermissionGrantScope.js";
|
|
266
|
+
export type { PermissionProfile } from "./PermissionProfile.js";
|
|
267
|
+
export type { PermissionProfileFileSystemPermissions } from "./PermissionProfileFileSystemPermissions.js";
|
|
268
|
+
export type { PermissionProfileModificationParams } from "./PermissionProfileModificationParams.js";
|
|
269
|
+
export type { PermissionProfileNetworkPermissions } from "./PermissionProfileNetworkPermissions.js";
|
|
270
|
+
export type { PermissionProfileSelectionParams } from "./PermissionProfileSelectionParams.js";
|
|
271
|
+
export type { PermissionsRequestApprovalParams } from "./PermissionsRequestApprovalParams.js";
|
|
272
|
+
export type { PermissionsRequestApprovalResponse } from "./PermissionsRequestApprovalResponse.js";
|
|
273
|
+
export type { PlanDeltaNotification } from "./PlanDeltaNotification.js";
|
|
274
|
+
export type { PluginAuthPolicy } from "./PluginAuthPolicy.js";
|
|
275
|
+
export type { PluginAvailability } from "./PluginAvailability.js";
|
|
276
|
+
export type { PluginDetail } from "./PluginDetail.js";
|
|
277
|
+
export type { PluginInstallParams } from "./PluginInstallParams.js";
|
|
278
|
+
export type { PluginInstallPolicy } from "./PluginInstallPolicy.js";
|
|
279
|
+
export type { PluginInstallResponse } from "./PluginInstallResponse.js";
|
|
280
|
+
export type { PluginInterface } from "./PluginInterface.js";
|
|
281
|
+
export type { PluginListMarketplaceKind } from "./PluginListMarketplaceKind.js";
|
|
282
|
+
export type { PluginListParams } from "./PluginListParams.js";
|
|
283
|
+
export type { PluginListResponse } from "./PluginListResponse.js";
|
|
284
|
+
export type { PluginMarketplaceEntry } from "./PluginMarketplaceEntry.js";
|
|
285
|
+
export type { PluginReadParams } from "./PluginReadParams.js";
|
|
286
|
+
export type { PluginReadResponse } from "./PluginReadResponse.js";
|
|
287
|
+
export type { PluginShareContext } from "./PluginShareContext.js";
|
|
288
|
+
export type { PluginShareDeleteParams } from "./PluginShareDeleteParams.js";
|
|
289
|
+
export type { PluginShareDeleteResponse } from "./PluginShareDeleteResponse.js";
|
|
290
|
+
export type { PluginShareDiscoverability } from "./PluginShareDiscoverability.js";
|
|
291
|
+
export type { PluginShareListItem } from "./PluginShareListItem.js";
|
|
292
|
+
export type { PluginShareListParams } from "./PluginShareListParams.js";
|
|
293
|
+
export type { PluginShareListResponse } from "./PluginShareListResponse.js";
|
|
294
|
+
export type { PluginSharePrincipal } from "./PluginSharePrincipal.js";
|
|
295
|
+
export type { PluginSharePrincipalType } from "./PluginSharePrincipalType.js";
|
|
296
|
+
export type { PluginShareSaveParams } from "./PluginShareSaveParams.js";
|
|
297
|
+
export type { PluginShareSaveResponse } from "./PluginShareSaveResponse.js";
|
|
298
|
+
export type { PluginShareTarget } from "./PluginShareTarget.js";
|
|
299
|
+
export type { PluginShareUpdateTargetsParams } from "./PluginShareUpdateTargetsParams.js";
|
|
300
|
+
export type { PluginShareUpdateTargetsResponse } from "./PluginShareUpdateTargetsResponse.js";
|
|
301
|
+
export type { PluginSkillReadParams } from "./PluginSkillReadParams.js";
|
|
302
|
+
export type { PluginSkillReadResponse } from "./PluginSkillReadResponse.js";
|
|
303
|
+
export type { PluginSource } from "./PluginSource.js";
|
|
304
|
+
export type { PluginSummary } from "./PluginSummary.js";
|
|
305
|
+
export type { PluginUninstallParams } from "./PluginUninstallParams.js";
|
|
306
|
+
export type { PluginUninstallResponse } from "./PluginUninstallResponse.js";
|
|
307
|
+
export type { PluginsMigration } from "./PluginsMigration.js";
|
|
308
|
+
export type { ProcessExitedNotification } from "./ProcessExitedNotification.js";
|
|
309
|
+
export type { ProcessOutputDeltaNotification } from "./ProcessOutputDeltaNotification.js";
|
|
310
|
+
export type { ProcessOutputStream } from "./ProcessOutputStream.js";
|
|
311
|
+
export type { ProcessTerminalSize } from "./ProcessTerminalSize.js";
|
|
312
|
+
export type { ProfileV2 } from "./ProfileV2.js";
|
|
313
|
+
export type { RateLimitReachedType } from "./RateLimitReachedType.js";
|
|
314
|
+
export type { RateLimitSnapshot } from "./RateLimitSnapshot.js";
|
|
315
|
+
export type { RateLimitWindow } from "./RateLimitWindow.js";
|
|
316
|
+
export type { RawResponseItemCompletedNotification } from "./RawResponseItemCompletedNotification.js";
|
|
317
|
+
export type { ReasoningEffortOption } from "./ReasoningEffortOption.js";
|
|
318
|
+
export type { ReasoningSummaryPartAddedNotification } from "./ReasoningSummaryPartAddedNotification.js";
|
|
319
|
+
export type { ReasoningSummaryTextDeltaNotification } from "./ReasoningSummaryTextDeltaNotification.js";
|
|
320
|
+
export type { ReasoningTextDeltaNotification } from "./ReasoningTextDeltaNotification.js";
|
|
321
|
+
export type { RemoteControlClientConnectionAudience } from "./RemoteControlClientConnectionAudience.js";
|
|
322
|
+
export type { RemoteControlClientEnrollmentAudience } from "./RemoteControlClientEnrollmentAudience.js";
|
|
323
|
+
export type { RemoteControlConnectionStatus } from "./RemoteControlConnectionStatus.js";
|
|
324
|
+
export type { RemoteControlStatusChangedNotification } from "./RemoteControlStatusChangedNotification.js";
|
|
325
|
+
export type { RequestPermissionProfile } from "./RequestPermissionProfile.js";
|
|
326
|
+
export type { ResidencyRequirement } from "./ResidencyRequirement.js";
|
|
327
|
+
export type { ReviewDelivery } from "./ReviewDelivery.js";
|
|
328
|
+
export type { ReviewStartParams } from "./ReviewStartParams.js";
|
|
329
|
+
export type { ReviewStartResponse } from "./ReviewStartResponse.js";
|
|
330
|
+
export type { ReviewTarget } from "./ReviewTarget.js";
|
|
331
|
+
export type { SandboxMode } from "./SandboxMode.js";
|
|
332
|
+
export type { SandboxPolicy } from "./SandboxPolicy.js";
|
|
333
|
+
export type { SandboxWorkspaceWrite } from "./SandboxWorkspaceWrite.js";
|
|
334
|
+
export type { SendAddCreditsNudgeEmailParams } from "./SendAddCreditsNudgeEmailParams.js";
|
|
335
|
+
export type { SendAddCreditsNudgeEmailResponse } from "./SendAddCreditsNudgeEmailResponse.js";
|
|
336
|
+
export type { ServerRequestResolvedNotification } from "./ServerRequestResolvedNotification.js";
|
|
337
|
+
export type { SessionMigration } from "./SessionMigration.js";
|
|
338
|
+
export type { SessionSource } from "./SessionSource.js";
|
|
339
|
+
export type { SkillDependencies } from "./SkillDependencies.js";
|
|
340
|
+
export type { SkillErrorInfo } from "./SkillErrorInfo.js";
|
|
341
|
+
export type { SkillInterface } from "./SkillInterface.js";
|
|
342
|
+
export type { SkillMetadata } from "./SkillMetadata.js";
|
|
343
|
+
export type { SkillScope } from "./SkillScope.js";
|
|
344
|
+
export type { SkillSummary } from "./SkillSummary.js";
|
|
345
|
+
export type { SkillToolDependency } from "./SkillToolDependency.js";
|
|
346
|
+
export type { SkillsChangedNotification } from "./SkillsChangedNotification.js";
|
|
347
|
+
export type { SkillsConfigWriteParams } from "./SkillsConfigWriteParams.js";
|
|
348
|
+
export type { SkillsConfigWriteResponse } from "./SkillsConfigWriteResponse.js";
|
|
349
|
+
export type { SkillsListEntry } from "./SkillsListEntry.js";
|
|
350
|
+
export type { SkillsListExtraRootsForCwd } from "./SkillsListExtraRootsForCwd.js";
|
|
351
|
+
export type { SkillsListParams } from "./SkillsListParams.js";
|
|
352
|
+
export type { SkillsListResponse } from "./SkillsListResponse.js";
|
|
353
|
+
export type { SortDirection } from "./SortDirection.js";
|
|
354
|
+
export type { SubagentMigration } from "./SubagentMigration.js";
|
|
355
|
+
export type { TerminalInteractionNotification } from "./TerminalInteractionNotification.js";
|
|
356
|
+
export type { TextElement } from "./TextElement.js";
|
|
357
|
+
export type { TextPosition } from "./TextPosition.js";
|
|
358
|
+
export type { TextRange } from "./TextRange.js";
|
|
359
|
+
export type { Thread } from "./Thread.js";
|
|
360
|
+
export type { ThreadActiveFlag } from "./ThreadActiveFlag.js";
|
|
361
|
+
export type { ThreadApproveGuardianDeniedActionParams } from "./ThreadApproveGuardianDeniedActionParams.js";
|
|
362
|
+
export type { ThreadApproveGuardianDeniedActionResponse } from "./ThreadApproveGuardianDeniedActionResponse.js";
|
|
363
|
+
export type { ThreadArchiveParams } from "./ThreadArchiveParams.js";
|
|
364
|
+
export type { ThreadArchiveResponse } from "./ThreadArchiveResponse.js";
|
|
365
|
+
export type { ThreadArchivedNotification } from "./ThreadArchivedNotification.js";
|
|
366
|
+
export type { ThreadClosedNotification } from "./ThreadClosedNotification.js";
|
|
367
|
+
export type { ThreadCompactStartParams } from "./ThreadCompactStartParams.js";
|
|
368
|
+
export type { ThreadCompactStartResponse } from "./ThreadCompactStartResponse.js";
|
|
369
|
+
export type { ThreadForkParams } from "./ThreadForkParams.js";
|
|
370
|
+
export type { ThreadForkResponse } from "./ThreadForkResponse.js";
|
|
371
|
+
export type { ThreadGoal } from "./ThreadGoal.js";
|
|
372
|
+
export type { ThreadGoalClearedNotification } from "./ThreadGoalClearedNotification.js";
|
|
373
|
+
export type { ThreadGoalStatus } from "./ThreadGoalStatus.js";
|
|
374
|
+
export type { ThreadGoalUpdatedNotification } from "./ThreadGoalUpdatedNotification.js";
|
|
375
|
+
export type { ThreadInjectItemsParams } from "./ThreadInjectItemsParams.js";
|
|
376
|
+
export type { ThreadInjectItemsResponse } from "./ThreadInjectItemsResponse.js";
|
|
377
|
+
export type { ThreadItem } from "./ThreadItem.js";
|
|
378
|
+
export type { ThreadListParams } from "./ThreadListParams.js";
|
|
379
|
+
export type { ThreadListResponse } from "./ThreadListResponse.js";
|
|
380
|
+
export type { ThreadLoadedListParams } from "./ThreadLoadedListParams.js";
|
|
381
|
+
export type { ThreadLoadedListResponse } from "./ThreadLoadedListResponse.js";
|
|
382
|
+
export type { ThreadMetadataGitInfoUpdateParams } from "./ThreadMetadataGitInfoUpdateParams.js";
|
|
383
|
+
export type { ThreadMetadataUpdateParams } from "./ThreadMetadataUpdateParams.js";
|
|
384
|
+
export type { ThreadMetadataUpdateResponse } from "./ThreadMetadataUpdateResponse.js";
|
|
385
|
+
export type { ThreadNameUpdatedNotification } from "./ThreadNameUpdatedNotification.js";
|
|
386
|
+
export type { ThreadReadParams } from "./ThreadReadParams.js";
|
|
387
|
+
export type { ThreadReadResponse } from "./ThreadReadResponse.js";
|
|
388
|
+
export type { ThreadRealtimeAudioChunk } from "./ThreadRealtimeAudioChunk.js";
|
|
389
|
+
export type { ThreadRealtimeClosedNotification } from "./ThreadRealtimeClosedNotification.js";
|
|
390
|
+
export type { ThreadRealtimeErrorNotification } from "./ThreadRealtimeErrorNotification.js";
|
|
391
|
+
export type { ThreadRealtimeItemAddedNotification } from "./ThreadRealtimeItemAddedNotification.js";
|
|
392
|
+
export type { ThreadRealtimeOutputAudioDeltaNotification } from "./ThreadRealtimeOutputAudioDeltaNotification.js";
|
|
393
|
+
export type { ThreadRealtimeSdpNotification } from "./ThreadRealtimeSdpNotification.js";
|
|
394
|
+
export type { ThreadRealtimeStartTransport } from "./ThreadRealtimeStartTransport.js";
|
|
395
|
+
export type { ThreadRealtimeStartedNotification } from "./ThreadRealtimeStartedNotification.js";
|
|
396
|
+
export type { ThreadRealtimeTranscriptDeltaNotification } from "./ThreadRealtimeTranscriptDeltaNotification.js";
|
|
397
|
+
export type { ThreadRealtimeTranscriptDoneNotification } from "./ThreadRealtimeTranscriptDoneNotification.js";
|
|
398
|
+
export type { ThreadResumeParams } from "./ThreadResumeParams.js";
|
|
399
|
+
export type { ThreadResumeResponse } from "./ThreadResumeResponse.js";
|
|
400
|
+
export type { ThreadRollbackParams } from "./ThreadRollbackParams.js";
|
|
401
|
+
export type { ThreadRollbackResponse } from "./ThreadRollbackResponse.js";
|
|
402
|
+
export type { ThreadSetNameParams } from "./ThreadSetNameParams.js";
|
|
403
|
+
export type { ThreadSetNameResponse } from "./ThreadSetNameResponse.js";
|
|
404
|
+
export type { ThreadShellCommandParams } from "./ThreadShellCommandParams.js";
|
|
405
|
+
export type { ThreadShellCommandResponse } from "./ThreadShellCommandResponse.js";
|
|
406
|
+
export type { ThreadSortKey } from "./ThreadSortKey.js";
|
|
407
|
+
export type { ThreadSource } from "./ThreadSource.js";
|
|
408
|
+
export type { ThreadSourceKind } from "./ThreadSourceKind.js";
|
|
409
|
+
export type { ThreadStartParams } from "./ThreadStartParams.js";
|
|
410
|
+
export type { ThreadStartResponse } from "./ThreadStartResponse.js";
|
|
411
|
+
export type { ThreadStartSource } from "./ThreadStartSource.js";
|
|
412
|
+
export type { ThreadStartedNotification } from "./ThreadStartedNotification.js";
|
|
413
|
+
export type { ThreadStatus } from "./ThreadStatus.js";
|
|
414
|
+
export type { ThreadStatusChangedNotification } from "./ThreadStatusChangedNotification.js";
|
|
415
|
+
export type { ThreadTokenUsage } from "./ThreadTokenUsage.js";
|
|
416
|
+
export type { ThreadTokenUsageUpdatedNotification } from "./ThreadTokenUsageUpdatedNotification.js";
|
|
417
|
+
export type { ThreadUnarchiveParams } from "./ThreadUnarchiveParams.js";
|
|
418
|
+
export type { ThreadUnarchiveResponse } from "./ThreadUnarchiveResponse.js";
|
|
419
|
+
export type { ThreadUnarchivedNotification } from "./ThreadUnarchivedNotification.js";
|
|
420
|
+
export type { ThreadUnsubscribeParams } from "./ThreadUnsubscribeParams.js";
|
|
421
|
+
export type { ThreadUnsubscribeResponse } from "./ThreadUnsubscribeResponse.js";
|
|
422
|
+
export type { ThreadUnsubscribeStatus } from "./ThreadUnsubscribeStatus.js";
|
|
423
|
+
export type { TokenUsageBreakdown } from "./TokenUsageBreakdown.js";
|
|
424
|
+
export type { ToolRequestUserInputAnswer } from "./ToolRequestUserInputAnswer.js";
|
|
425
|
+
export type { ToolRequestUserInputOption } from "./ToolRequestUserInputOption.js";
|
|
426
|
+
export type { ToolRequestUserInputParams } from "./ToolRequestUserInputParams.js";
|
|
427
|
+
export type { ToolRequestUserInputQuestion } from "./ToolRequestUserInputQuestion.js";
|
|
428
|
+
export type { ToolRequestUserInputResponse } from "./ToolRequestUserInputResponse.js";
|
|
429
|
+
export type { ToolsV2 } from "./ToolsV2.js";
|
|
430
|
+
export type { Turn } from "./Turn.js";
|
|
431
|
+
export type { TurnCompletedNotification } from "./TurnCompletedNotification.js";
|
|
432
|
+
export type { TurnDiffUpdatedNotification } from "./TurnDiffUpdatedNotification.js";
|
|
433
|
+
export type { TurnEnvironmentParams } from "./TurnEnvironmentParams.js";
|
|
434
|
+
export type { TurnError } from "./TurnError.js";
|
|
435
|
+
export type { TurnInterruptParams } from "./TurnInterruptParams.js";
|
|
436
|
+
export type { TurnInterruptResponse } from "./TurnInterruptResponse.js";
|
|
437
|
+
export type { TurnItemsView } from "./TurnItemsView.js";
|
|
438
|
+
export type { TurnPlanStep } from "./TurnPlanStep.js";
|
|
439
|
+
export type { TurnPlanStepStatus } from "./TurnPlanStepStatus.js";
|
|
440
|
+
export type { TurnPlanUpdatedNotification } from "./TurnPlanUpdatedNotification.js";
|
|
441
|
+
export type { TurnStartParams } from "./TurnStartParams.js";
|
|
442
|
+
export type { TurnStartResponse } from "./TurnStartResponse.js";
|
|
443
|
+
export type { TurnStartedNotification } from "./TurnStartedNotification.js";
|
|
444
|
+
export type { TurnStatus } from "./TurnStatus.js";
|
|
445
|
+
export type { TurnSteerParams } from "./TurnSteerParams.js";
|
|
446
|
+
export type { TurnSteerResponse } from "./TurnSteerResponse.js";
|
|
447
|
+
export type { UserInput } from "./UserInput.js";
|
|
448
|
+
export type { WarningNotification } from "./WarningNotification.js";
|
|
449
|
+
export type { WebSearchAction } from "./WebSearchAction.js";
|
|
450
|
+
export type { WindowsSandboxReadiness } from "./WindowsSandboxReadiness.js";
|
|
451
|
+
export type { WindowsSandboxReadinessResponse } from "./WindowsSandboxReadinessResponse.js";
|
|
452
|
+
export type { WindowsSandboxSetupCompletedNotification } from "./WindowsSandboxSetupCompletedNotification.js";
|
|
453
|
+
export type { WindowsSandboxSetupMode } from "./WindowsSandboxSetupMode.js";
|
|
454
|
+
export type { WindowsSandboxSetupStartParams } from "./WindowsSandboxSetupStartParams.js";
|
|
455
|
+
export type { WindowsSandboxSetupStartResponse } from "./WindowsSandboxSetupStartResponse.js";
|
|
456
|
+
export type { WindowsWorldWritableWarningNotification } from "./WindowsWorldWritableWarningNotification.js";
|
|
457
|
+
export type { WriteStatus } from "./WriteStatus.js";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { ClientRequest, RequestId } from "../../schema/typescript/index.js";
|
|
2
|
+
export type ClientRequestSerializationScope = {
|
|
3
|
+
key: string;
|
|
4
|
+
type: "global";
|
|
5
|
+
} | {
|
|
6
|
+
threadId: string;
|
|
7
|
+
type: "thread";
|
|
8
|
+
} | {
|
|
9
|
+
path: string;
|
|
10
|
+
type: "threadPath";
|
|
11
|
+
} | {
|
|
12
|
+
processId: string;
|
|
13
|
+
type: "commandExecProcess";
|
|
14
|
+
} | {
|
|
15
|
+
processHandle: string;
|
|
16
|
+
type: "process";
|
|
17
|
+
} | {
|
|
18
|
+
sessionId: string;
|
|
19
|
+
type: "fuzzyFileSearchSession";
|
|
20
|
+
} | {
|
|
21
|
+
watchId: string;
|
|
22
|
+
type: "fsWatch";
|
|
23
|
+
} | {
|
|
24
|
+
serverName: string;
|
|
25
|
+
type: "mcpOauth";
|
|
26
|
+
};
|
|
27
|
+
export declare function clientRequestId(request: ClientRequest): RequestId;
|
|
28
|
+
export declare function clientRequestMethod(request: ClientRequest): string;
|
|
29
|
+
export declare function clientRequestExperimentalReason(request: ClientRequest | {
|
|
30
|
+
method: string;
|
|
31
|
+
params?: unknown;
|
|
32
|
+
}): string | null;
|
|
33
|
+
export declare function clientRequestSerializationScope(request: ClientRequest | {
|
|
34
|
+
method: string;
|
|
35
|
+
params?: unknown;
|
|
36
|
+
}): ClientRequestSerializationScope | null;
|