@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
|
@@ -1,1722 +0,0 @@
|
|
|
1
|
-
import { k as SubAgentSource, i as ThreadId, F as FuzzyFileSearchResult, l as AuthMode, P as PlanType, h as AbsolutePathBuf, A as AdditionalNetworkPermissions, g as AdditionalFileSystemPermissions, J as JsonValue, m as AppInfo, f as ReasoningEffort, R as RateLimitSnapshot, H as HookEventName, n as HookHandlerType, o as HookSource, p as FileSystemSandboxEntry, c as Turn, T as Thread, q as AccountLoginCompletedNotification, r as AccountRateLimitsUpdatedNotification, s as AccountUpdatedNotification, t as AgentMessageDeltaNotification, u as AppBranding, v as AppListUpdatedNotification, w as AppMetadata, x as AppReview, y as AppScreenshot, z as AutoReviewDecisionSource, B as ByteRange, C as ChatgptAuthTokensRefreshParams, G as ChatgptAuthTokensRefreshReason, I as CodexErrorInfo, K as CollabAgentState, L as CollabAgentStatus, M as CollabAgentTool, O as CollabAgentToolCallStatus, Q as CommandAction, V as CommandExecOutputDeltaNotification, X as CommandExecOutputStream, Y as CommandExecutionOutputDeltaNotification, Z as CommandExecutionRequestApprovalParams, _ as CommandExecutionSource, $ as CommandExecutionStatus, a0 as ConfigWarningNotification, a1 as ContextCompactedNotification, a2 as CreditsSnapshot, a3 as DeprecationNoticeNotification, e as DynamicToolCallOutputContentItem, D as DynamicToolCallParams, a4 as DynamicToolCallStatus, a5 as ErrorNotification, E as ExecPolicyAmendment$1, a6 as ExternalAgentConfigImportCompletedNotification, a7 as FileChangeOutputDeltaNotification, a8 as FileChangePatchUpdatedNotification, a9 as FileChangeRequestApprovalParams, aa as FileSystemAccessMode, ab as FileSystemPath, ac as FileSystemSpecialPath, ad as FileUpdateChange, ae as FsChangedNotification, af as GitInfo, ag as GuardianApprovalReview, ah as GuardianApprovalReviewAction, ai as GuardianApprovalReviewStatus, aj as GuardianCommandSource, ak as GuardianRiskLevel, al as GuardianUserAuthorization, am as GuardianWarningNotification, an as HookCompletedNotification, ao as HookExecutionMode, ap as HookOutputEntry, aq as HookOutputEntryKind, ar as HookPromptFragment, as as HookRunStatus, at as HookRunSummary, au as HookScope, av as HookStartedNotification, aw as ItemCompletedNotification, ax as ItemGuardianApprovalReviewCompletedNotification, ay as ItemGuardianApprovalReviewStartedNotification, az as ItemStartedNotification, aA as McpElicitationArrayType, aB as McpElicitationBooleanSchema, aC as McpElicitationBooleanType, aD as McpElicitationConstOption, aE as McpElicitationEnumSchema, aF as McpElicitationLegacyTitledEnumSchema, aG as McpElicitationMultiSelectEnumSchema, aH as McpElicitationNumberSchema, aI as McpElicitationNumberType, aJ as McpElicitationObjectType, aK as McpElicitationPrimitiveSchema, aL as McpElicitationSchema, aM as McpElicitationSingleSelectEnumSchema, aN as McpElicitationStringFormat, aO as McpElicitationStringSchema, aP as McpElicitationStringType, aQ as McpElicitationTitledEnumItems, aR as McpElicitationTitledMultiSelectEnumSchema, aS as McpElicitationTitledSingleSelectEnumSchema, aT as McpElicitationUntitledEnumItems, aU as McpElicitationUntitledMultiSelectEnumSchema, aV as McpElicitationUntitledSingleSelectEnumSchema, aW as McpServerElicitationRequestParams, aX as McpServerOauthLoginCompletedNotification, aY as McpServerStartupState, aZ as McpServerStatusUpdatedNotification, a_ as McpToolCallError, a$ as McpToolCallProgressNotification, b0 as McpToolCallResult, b1 as McpToolCallStatus, b2 as MemoryCitation, b3 as MemoryCitationEntry, b4 as ModelRerouteReason, b5 as ModelReroutedNotification, b6 as ModelVerification, b7 as ModelVerificationNotification, b8 as NetworkApprovalContext, b9 as NetworkApprovalProtocol, N as NetworkPolicyAmendment$1, ba as NetworkPolicyRuleAction$1, bb as NonSteerableTurnKind, bc as PatchApplyStatus, bd as PatchChangeKind, be as PermissionsRequestApprovalParams, bf as PlanDeltaNotification, bg as ProcessExitedNotification, bh as ProcessOutputDeltaNotification, bi as ProcessOutputStream, bj as RateLimitReachedType, bk as RateLimitWindow, bl as RawResponseItemCompletedNotification, bm as ReasoningSummaryPartAddedNotification, bn as ReasoningSummaryTextDeltaNotification, bo as ReasoningTextDeltaNotification, bp as RemoteControlConnectionStatus, bq as RemoteControlStatusChangedNotification, br as RequestPermissionProfile, bs as ServerRequestResolvedNotification, bt as SessionSource$1, bu as SkillsChangedNotification, bv as TerminalInteractionNotification, bw as TextElement, bx as TextPosition, by as TextRange, bz as ThreadActiveFlag, bA as ThreadArchivedNotification, bB as ThreadClosedNotification, bC as ThreadGoal, bD as ThreadGoalClearedNotification, bE as ThreadGoalStatus, bF as ThreadGoalUpdatedNotification, b as ThreadItem, bG as ThreadNameUpdatedNotification, bH as ThreadRealtimeAudioChunk, bI as ThreadRealtimeClosedNotification, bJ as ThreadRealtimeErrorNotification, bK as ThreadRealtimeItemAddedNotification, bL as ThreadRealtimeOutputAudioDeltaNotification, bM as ThreadRealtimeSdpNotification, bN as ThreadRealtimeStartedNotification, bO as ThreadRealtimeTranscriptDeltaNotification, bP as ThreadRealtimeTranscriptDoneNotification, j as ThreadSource, bQ as ThreadStartedNotification, bR as ThreadStatus, bS as ThreadStatusChangedNotification, d as ThreadTokenUsage, bT as ThreadTokenUsageUpdatedNotification, bU as ThreadUnarchivedNotification, bV as TokenUsageBreakdown, bW as ToolRequestUserInputParams, bX as TurnCompletedNotification, bY as TurnDiffUpdatedNotification, bZ as TurnError, b_ as TurnItemsView, b$ as TurnPlanStep, c0 as TurnPlanStepStatus, c1 as TurnPlanUpdatedNotification, c2 as TurnStartedNotification, c3 as TurnStatus, U as UserInput, c4 as WarningNotification, c5 as WebSearchAction, c6 as WindowsSandboxSetupCompletedNotification, W as WindowsSandboxSetupMode, c7 as WindowsWorldWritableWarningNotification } from '../../ServerRequest-B5cKVJjr.js';
|
|
2
|
-
export { c8 as AgentPath, c9 as ApplyPatchApprovalParams, ca as ContentItem, cb as ExecCommandApprovalParams, cc as FileChange, cd as FunctionCallOutputBody, ce as FunctionCallOutputContentItem, cf as FuzzyFileSearchMatchType, cg as FuzzyFileSearchSessionCompletedNotification, ch as FuzzyFileSearchSessionUpdatedNotification, ci as ImageDetail, cj as LocalShellAction, ck as LocalShellExecAction, cl as LocalShellStatus, cm as MessagePhase, cn as ParsedCommand, co as RealtimeConversationVersion, cp as ReasoningItemContent, cq as ReasoningItemReasoningSummary, cr as ResponseItem, S as ServerNotification, a as ServerRequest, cs as WebSearchAction } from '../../ServerRequest-B5cKVJjr.js';
|
|
3
|
-
import { A as AskForApproval, p as ApprovalsReviewer, R as ReasoningSummary, q as SandboxMode, E as ExternalAgentConfigMigrationItem, P as PluginSharePrincipalType, S as SandboxPolicy, r as AddCreditsNudgeCreditType, s as AppsListParams, t as CancelLoginAccountParams, a as CollaborationModeListParams, u as CommandExecParams, v as CommandExecResizeParams, w as CommandExecTerminalSize, x as CommandExecTerminateParams, y as CommandExecWriteParams, z as CommandMigration, B as ConfigBatchWriteParams, D as ConfigEdit, F as ConfigReadParams, G as ConfigValueWriteParams, H as DeviceKeyCreateParams, J as DeviceKeyProtectionPolicy, K as DeviceKeyPublicParams, N as DeviceKeySignParams, O as DeviceKeySignPayload, Q as ExperimentalFeatureEnablementSetParams, U as ExperimentalFeatureListParams, V as ExternalAgentConfigDetectParams, W as ExternalAgentConfigImportParams, X as ExternalAgentConfigMigrationItemType, Y as FeedbackUploadParams, Z as FsCopyParams, _ as FsCreateDirectoryParams, $ as FsGetMetadataParams, a0 as FsReadDirectoryParams, a1 as FsReadFileParams, a2 as FsRemoveParams, a3 as FsUnwatchParams, a4 as FsWatchParams, a5 as FsWriteFileParams, a6 as GetAccountParams, a7 as HookMigration, a8 as HooksListParams, L as ListMcpServerStatusParams, a9 as LoginAccountParams, aa as MarketplaceAddParams, ab as MarketplaceRemoveParams, ac as MarketplaceUpgradeParams, M as McpResourceReadParams, ad as McpServerMigration, b as McpServerOauthLoginParams, ae as McpServerStatusDetail, c as McpServerToolCallParams, af as MergeStrategy, ag as MigrationDetails, ah as ModelListParams, ai as ModelProviderCapabilitiesReadParams, aj as NetworkAccess, ak as PluginInstallParams, al as PluginListMarketplaceKind, am as PluginListParams, an as PluginReadParams, ao as PluginShareDeleteParams, ap as PluginShareDiscoverability, aq as PluginShareListParams, ar as PluginShareSaveParams, as as PluginShareTarget, at as PluginShareUpdateTargetsParams, au as PluginSkillReadParams, av as PluginUninstallParams, aw as PluginsMigration, ax as RemoteControlClientConnectionAudience, ay as RemoteControlClientEnrollmentAudience, az as ReviewDelivery, aA as ReviewStartParams, aB as ReviewTarget, aC as SendAddCreditsNudgeEmailParams, aD as SessionMigration, aE as SkillsConfigWriteParams, aF as SkillsListExtraRootsForCwd, aG as SkillsListParams, aH as SortDirection, aI as SubagentMigration, aJ as ThreadApproveGuardianDeniedActionParams, T as ThreadArchiveParams, d as ThreadCompactStartParams, aK as ThreadForkParams, aL as ThreadInjectItemsParams, e as ThreadListParams, aM as ThreadLoadedListParams, aN as ThreadMetadataGitInfoUpdateParams, f as ThreadMetadataUpdateParams, g as ThreadReadParams, h as ThreadResumeParams, i as ThreadResumeResponse, aO as ThreadRollbackParams, j as ThreadSetNameParams, aP as ThreadShellCommandParams, aQ as ThreadSortKey, aR as ThreadSourceKind, k as ThreadStartParams, aS as ThreadStartSource, l as ThreadUnarchiveParams, aT as ThreadUnsubscribeParams, m as TurnInterruptParams, n as TurnStartParams, o as TurnSteerParams, aU as WindowsSandboxSetupStartParams } from '../../ThreadResumeResponse-DvmE1juU.js';
|
|
4
|
-
export { aV as ClientInfo, C as ClientRequest, aW as FuzzyFileSearchParams, aX as GetAuthStatusParams, aY as GetConversationSummaryParams, aZ as GitDiffToRemoteParams, a_ as InitializeCapabilities, I as InitializeParams, a$ as Personality } from '../../ThreadResumeResponse-DvmE1juU.js';
|
|
5
|
-
export { C as ClientNotification } from '../../ClientNotification-B6-FhXQf.js';
|
|
6
|
-
import { D as DynamicToolSpec } from '../../DynamicToolSpec-CfnhqAYK.js';
|
|
7
|
-
export { C as CollaborationMode, S as Settings } from '../../DynamicToolSpec-CfnhqAYK.js';
|
|
8
|
-
import { b as CollaborationModeListResponse, C as CollaborationModeMask, L as ListMcpServerStatusResponse, q as McpAuthStatus, c as McpResourceReadResponse, d as McpServerOauthLoginResponse, e as McpServerRefreshResponse, M as McpServerStatus, f as McpServerToolCallResponse, T as ThreadArchiveResponse, g as ThreadCompactStartResponse, h as ThreadListResponse, i as ThreadMetadataUpdateResponse, j as ThreadReadResponse, k as ThreadSetNameResponse, l as ThreadStartResponse, m as ThreadUnarchiveResponse, n as TurnInterruptResponse, o as TurnStartResponse, p as TurnSteerResponse } from '../../TurnSteerResponse-0kBCfplh.js';
|
|
9
|
-
export { I as InitializeResponse, a as ModeKind, R as Resource, r as ResourceContent, s as ResourceTemplate, t as Tool } from '../../TurnSteerResponse-0kBCfplh.js';
|
|
10
|
-
import { a as ToolRequestUserInputOption, T as ToolRequestUserInputQuestion } from '../../ToolRequestUserInputQuestion-CeZa5X1J.js';
|
|
11
|
-
export { R as RequestId } from '../../ToolRequestUserInputQuestion-CeZa5X1J.js';
|
|
12
|
-
import { a as WebSearchToolConfig, W as WebSearchMode } from '../../WebSearchToolConfig-D3ep0625.js';
|
|
13
|
-
export { b as WebSearchContextSize, c as WebSearchLocation } from '../../WebSearchToolConfig-D3ep0625.js';
|
|
14
|
-
import { a as CommandExecutionApprovalDecision, C as CommandExecutionRequestApprovalResponse, b as FileChangeApprovalDecision, F as FileChangeRequestApprovalResponse, G as GrantedPermissionProfile, c as McpServerElicitationAction, M as McpServerElicitationRequestResponse, d as PermissionGrantScope, P as PermissionsRequestApprovalResponse } from '../../PermissionsRequestApprovalResponse-DxzPPDRb.js';
|
|
15
|
-
import { D as DynamicToolCallResponse } from '../../DynamicToolCallResponse-82DFjES2.js';
|
|
16
|
-
import { a as ToolRequestUserInputAnswer, T as ToolRequestUserInputResponse } from '../../ToolRequestUserInputResponse-zcPLwbiK.js';
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Proposed execpolicy change to allow commands starting with this prefix.
|
|
20
|
-
*
|
|
21
|
-
* The `command` tokens form the prefix that would be added as an execpolicy
|
|
22
|
-
* `prefix_rule(..., decision="allow")`, letting the agent bypass approval for
|
|
23
|
-
* commands that start with this token sequence.
|
|
24
|
-
*/
|
|
25
|
-
type ExecPolicyAmendment = Array<string>;
|
|
26
|
-
|
|
27
|
-
type NetworkPolicyRuleAction = "allow" | "deny";
|
|
28
|
-
|
|
29
|
-
type NetworkPolicyAmendment = {
|
|
30
|
-
host: string;
|
|
31
|
-
action: NetworkPolicyRuleAction;
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* User's decision in response to an ExecApprovalRequest.
|
|
36
|
-
*/
|
|
37
|
-
type ReviewDecision = "approved" | {
|
|
38
|
-
"approved_execpolicy_amendment": {
|
|
39
|
-
proposed_execpolicy_amendment: ExecPolicyAmendment;
|
|
40
|
-
};
|
|
41
|
-
} | "approved_for_session" | {
|
|
42
|
-
"network_policy_amendment": {
|
|
43
|
-
network_policy_amendment: NetworkPolicyAmendment;
|
|
44
|
-
};
|
|
45
|
-
} | "denied" | "timed_out" | "abort";
|
|
46
|
-
|
|
47
|
-
type ApplyPatchApprovalResponse = {
|
|
48
|
-
decision: ReviewDecision;
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
type ConversationGitInfo = {
|
|
52
|
-
sha: string | null;
|
|
53
|
-
branch: string | null;
|
|
54
|
-
origin_url: string | null;
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
type InternalSessionSource = "memory_consolidation";
|
|
58
|
-
|
|
59
|
-
type SessionSource = "cli" | "vscode" | "exec" | "mcp" | {
|
|
60
|
-
"custom": string;
|
|
61
|
-
} | {
|
|
62
|
-
"internal": InternalSessionSource;
|
|
63
|
-
} | {
|
|
64
|
-
"subagent": SubAgentSource;
|
|
65
|
-
} | "unknown";
|
|
66
|
-
|
|
67
|
-
type ConversationSummary = {
|
|
68
|
-
conversationId: ThreadId;
|
|
69
|
-
path: string;
|
|
70
|
-
preview: string;
|
|
71
|
-
timestamp: string | null;
|
|
72
|
-
updatedAt: string | null;
|
|
73
|
-
modelProvider: string;
|
|
74
|
-
cwd: string;
|
|
75
|
-
cliVersion: string;
|
|
76
|
-
source: SessionSource;
|
|
77
|
-
gitInfo: ConversationGitInfo | null;
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
type ExecCommandApprovalResponse = {
|
|
81
|
-
decision: ReviewDecision;
|
|
82
|
-
};
|
|
83
|
-
|
|
84
|
-
type ForcedLoginMethod = "chatgpt" | "api";
|
|
85
|
-
|
|
86
|
-
type FuzzyFileSearchResponse = {
|
|
87
|
-
files: Array<FuzzyFileSearchResult>;
|
|
88
|
-
};
|
|
89
|
-
|
|
90
|
-
type GetAuthStatusResponse = {
|
|
91
|
-
authMethod: AuthMode | null;
|
|
92
|
-
authToken: string | null;
|
|
93
|
-
requiresOpenaiAuth: boolean | null;
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
type GetConversationSummaryResponse = {
|
|
97
|
-
summary: ConversationSummary;
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
type GitSha = string;
|
|
101
|
-
|
|
102
|
-
type GitDiffToRemoteResponse = {
|
|
103
|
-
sha: GitSha;
|
|
104
|
-
diff: string;
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* Canonical user-input modality tags advertised by a model.
|
|
109
|
-
*/
|
|
110
|
-
type InputModality = "text" | "image";
|
|
111
|
-
|
|
112
|
-
type RealtimeOutputModality = "text" | "audio";
|
|
113
|
-
|
|
114
|
-
type RealtimeVoice = "alloy" | "arbor" | "ash" | "ballad" | "breeze" | "cedar" | "coral" | "cove" | "echo" | "ember" | "juniper" | "maple" | "marin" | "sage" | "shimmer" | "sol" | "spruce" | "vale" | "verse";
|
|
115
|
-
|
|
116
|
-
type RealtimeVoicesList = {
|
|
117
|
-
v1: Array<RealtimeVoice>;
|
|
118
|
-
v2: Array<RealtimeVoice>;
|
|
119
|
-
defaultV1: RealtimeVoice;
|
|
120
|
-
defaultV2: RealtimeVoice;
|
|
121
|
-
};
|
|
122
|
-
|
|
123
|
-
type ThreadMemoryMode = "enabled" | "disabled";
|
|
124
|
-
|
|
125
|
-
/**
|
|
126
|
-
* Controls output length/detail on GPT-5 models via the Responses API.
|
|
127
|
-
* Serialized with lowercase values to match the OpenAI API.
|
|
128
|
-
*/
|
|
129
|
-
type Verbosity = "low" | "medium" | "high";
|
|
130
|
-
|
|
131
|
-
type Account = {
|
|
132
|
-
"type": "apiKey";
|
|
133
|
-
} | {
|
|
134
|
-
"type": "chatgpt";
|
|
135
|
-
email: string;
|
|
136
|
-
planType: PlanType;
|
|
137
|
-
} | {
|
|
138
|
-
"type": "amazonBedrock";
|
|
139
|
-
};
|
|
140
|
-
|
|
141
|
-
type ActivePermissionProfileModification = {
|
|
142
|
-
"type": "additionalWritableRoot";
|
|
143
|
-
path: AbsolutePathBuf;
|
|
144
|
-
};
|
|
145
|
-
|
|
146
|
-
type ActivePermissionProfile = {
|
|
147
|
-
/**
|
|
148
|
-
* Identifier from `default_permissions` or the implicit built-in default,
|
|
149
|
-
* such as `:workspace` or a user-defined `[permissions.<id>]` profile.
|
|
150
|
-
*/
|
|
151
|
-
id: string;
|
|
152
|
-
/**
|
|
153
|
-
* Parent profile identifier once permissions profiles support
|
|
154
|
-
* inheritance. This is currently always `null`.
|
|
155
|
-
*/
|
|
156
|
-
extends: string | null;
|
|
157
|
-
/**
|
|
158
|
-
* Bounded user-requested modifications applied on top of the named
|
|
159
|
-
* profile, if any.
|
|
160
|
-
*/
|
|
161
|
-
modifications: Array<ActivePermissionProfileModification>;
|
|
162
|
-
};
|
|
163
|
-
|
|
164
|
-
type AddCreditsNudgeEmailStatus = "sent" | "cooldown_active";
|
|
165
|
-
|
|
166
|
-
type AdditionalPermissionProfile = {
|
|
167
|
-
/**
|
|
168
|
-
* Partial overlay used for per-command permission requests.
|
|
169
|
-
*/
|
|
170
|
-
network: AdditionalNetworkPermissions | null;
|
|
171
|
-
fileSystem: AdditionalFileSystemPermissions | null;
|
|
172
|
-
};
|
|
173
|
-
|
|
174
|
-
type AnalyticsConfig = {
|
|
175
|
-
enabled: boolean | null;
|
|
176
|
-
} & ({
|
|
177
|
-
[key in string]?: number | string | boolean | Array<JsonValue> | {
|
|
178
|
-
[key in string]?: JsonValue;
|
|
179
|
-
} | null;
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
/**
|
|
183
|
-
* EXPERIMENTAL - app metadata summary for plugin responses.
|
|
184
|
-
*/
|
|
185
|
-
type AppSummary = {
|
|
186
|
-
id: string;
|
|
187
|
-
name: string;
|
|
188
|
-
description: string | null;
|
|
189
|
-
installUrl: string | null;
|
|
190
|
-
needsAuth: boolean;
|
|
191
|
-
};
|
|
192
|
-
|
|
193
|
-
type AppToolApproval = "auto" | "prompt" | "approve";
|
|
194
|
-
|
|
195
|
-
type AppToolsConfig = {
|
|
196
|
-
[key in string]?: {
|
|
197
|
-
enabled: boolean | null;
|
|
198
|
-
approval_mode: AppToolApproval | null;
|
|
199
|
-
};
|
|
200
|
-
};
|
|
201
|
-
|
|
202
|
-
type AppsDefaultConfig = {
|
|
203
|
-
enabled: boolean;
|
|
204
|
-
destructive_enabled: boolean;
|
|
205
|
-
open_world_enabled: boolean;
|
|
206
|
-
};
|
|
207
|
-
|
|
208
|
-
type AppsConfig = {
|
|
209
|
-
_default: AppsDefaultConfig | null;
|
|
210
|
-
} & ({
|
|
211
|
-
[key in string]?: {
|
|
212
|
-
enabled: boolean;
|
|
213
|
-
destructive_enabled: boolean | null;
|
|
214
|
-
open_world_enabled: boolean | null;
|
|
215
|
-
default_tools_approval_mode: AppToolApproval | null;
|
|
216
|
-
default_tools_enabled: boolean | null;
|
|
217
|
-
tools: AppToolsConfig | null;
|
|
218
|
-
};
|
|
219
|
-
});
|
|
220
|
-
|
|
221
|
-
/**
|
|
222
|
-
* EXPERIMENTAL - app list response.
|
|
223
|
-
*/
|
|
224
|
-
type AppsListResponse = {
|
|
225
|
-
data: Array<AppInfo>;
|
|
226
|
-
/**
|
|
227
|
-
* Opaque cursor to pass to the next call to continue after the last item.
|
|
228
|
-
* If None, there are no more items to return.
|
|
229
|
-
*/
|
|
230
|
-
nextCursor: string | null;
|
|
231
|
-
};
|
|
232
|
-
|
|
233
|
-
type CancelLoginAccountStatus = "canceled" | "notFound";
|
|
234
|
-
|
|
235
|
-
type CancelLoginAccountResponse = {
|
|
236
|
-
status: CancelLoginAccountStatus;
|
|
237
|
-
};
|
|
238
|
-
|
|
239
|
-
type ChatgptAuthTokensRefreshResponse = {
|
|
240
|
-
accessToken: string;
|
|
241
|
-
chatgptAccountId: string;
|
|
242
|
-
chatgptPlanType: string | null;
|
|
243
|
-
};
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* Empty success response for `command/exec/resize`.
|
|
247
|
-
*/
|
|
248
|
-
type CommandExecResizeResponse = Record<string, never>;
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
* Final buffered result for `command/exec`.
|
|
252
|
-
*/
|
|
253
|
-
type CommandExecResponse = {
|
|
254
|
-
/**
|
|
255
|
-
* Process exit code.
|
|
256
|
-
*/
|
|
257
|
-
exitCode: number;
|
|
258
|
-
/**
|
|
259
|
-
* Buffered stdout capture.
|
|
260
|
-
*
|
|
261
|
-
* Empty when stdout was streamed via `command/exec/outputDelta`.
|
|
262
|
-
*/
|
|
263
|
-
stdout: string;
|
|
264
|
-
/**
|
|
265
|
-
* Buffered stderr capture.
|
|
266
|
-
*
|
|
267
|
-
* Empty when stderr was streamed via `command/exec/outputDelta`.
|
|
268
|
-
*/
|
|
269
|
-
stderr: string;
|
|
270
|
-
};
|
|
271
|
-
|
|
272
|
-
/**
|
|
273
|
-
* Empty success response for `command/exec/terminate`.
|
|
274
|
-
*/
|
|
275
|
-
type CommandExecTerminateResponse = Record<string, never>;
|
|
276
|
-
|
|
277
|
-
/**
|
|
278
|
-
* Empty success response for `command/exec/write`.
|
|
279
|
-
*/
|
|
280
|
-
type CommandExecWriteResponse = Record<string, never>;
|
|
281
|
-
|
|
282
|
-
type ToolsV2 = {
|
|
283
|
-
web_search: WebSearchToolConfig | null;
|
|
284
|
-
view_image: boolean | null;
|
|
285
|
-
};
|
|
286
|
-
|
|
287
|
-
type ProfileV2 = {
|
|
288
|
-
model: string | null;
|
|
289
|
-
model_provider: string | null;
|
|
290
|
-
approval_policy: AskForApproval | null; /**
|
|
291
|
-
* [UNSTABLE] Optional profile-level override for where approval requests
|
|
292
|
-
* are routed for review. If omitted, the enclosing config default is
|
|
293
|
-
* used.
|
|
294
|
-
*/
|
|
295
|
-
approvals_reviewer: ApprovalsReviewer | null;
|
|
296
|
-
service_tier: string | null;
|
|
297
|
-
model_reasoning_effort: ReasoningEffort | null;
|
|
298
|
-
model_reasoning_summary: ReasoningSummary | null;
|
|
299
|
-
model_verbosity: Verbosity | null;
|
|
300
|
-
web_search: WebSearchMode | null;
|
|
301
|
-
tools: ToolsV2 | null;
|
|
302
|
-
chatgpt_base_url: string | null;
|
|
303
|
-
} & ({
|
|
304
|
-
[key in string]?: number | string | boolean | Array<JsonValue> | {
|
|
305
|
-
[key in string]?: JsonValue;
|
|
306
|
-
} | null;
|
|
307
|
-
});
|
|
308
|
-
|
|
309
|
-
type SandboxWorkspaceWrite = {
|
|
310
|
-
writable_roots: Array<string>;
|
|
311
|
-
network_access: boolean;
|
|
312
|
-
exclude_tmpdir_env_var: boolean;
|
|
313
|
-
exclude_slash_tmp: boolean;
|
|
314
|
-
};
|
|
315
|
-
|
|
316
|
-
type Config = {
|
|
317
|
-
model: string | null;
|
|
318
|
-
review_model: string | null;
|
|
319
|
-
model_context_window: bigint | null;
|
|
320
|
-
model_auto_compact_token_limit: bigint | null;
|
|
321
|
-
model_provider: string | null;
|
|
322
|
-
approval_policy: AskForApproval | null; /**
|
|
323
|
-
* [UNSTABLE] Optional default for where approval requests are routed for
|
|
324
|
-
* review.
|
|
325
|
-
*/
|
|
326
|
-
approvals_reviewer: ApprovalsReviewer | null;
|
|
327
|
-
sandbox_mode: SandboxMode | null;
|
|
328
|
-
sandbox_workspace_write: SandboxWorkspaceWrite | null;
|
|
329
|
-
forced_chatgpt_workspace_id: string | null;
|
|
330
|
-
forced_login_method: ForcedLoginMethod | null;
|
|
331
|
-
web_search: WebSearchMode | null;
|
|
332
|
-
tools: ToolsV2 | null;
|
|
333
|
-
profile: string | null;
|
|
334
|
-
profiles: {
|
|
335
|
-
[key in string]?: ProfileV2;
|
|
336
|
-
};
|
|
337
|
-
instructions: string | null;
|
|
338
|
-
developer_instructions: string | null;
|
|
339
|
-
compact_prompt: string | null;
|
|
340
|
-
model_reasoning_effort: ReasoningEffort | null;
|
|
341
|
-
model_reasoning_summary: ReasoningSummary | null;
|
|
342
|
-
model_verbosity: Verbosity | null;
|
|
343
|
-
service_tier: string | null;
|
|
344
|
-
analytics: AnalyticsConfig | null;
|
|
345
|
-
} & ({
|
|
346
|
-
[key in string]?: number | string | boolean | Array<JsonValue> | {
|
|
347
|
-
[key in string]?: JsonValue;
|
|
348
|
-
} | null;
|
|
349
|
-
});
|
|
350
|
-
|
|
351
|
-
type ConfigLayerSource = {
|
|
352
|
-
"type": "mdm";
|
|
353
|
-
domain: string;
|
|
354
|
-
key: string;
|
|
355
|
-
} | {
|
|
356
|
-
"type": "system";
|
|
357
|
-
/**
|
|
358
|
-
* This is the path to the system config.toml file, though it is not
|
|
359
|
-
* guaranteed to exist.
|
|
360
|
-
*/
|
|
361
|
-
file: AbsolutePathBuf;
|
|
362
|
-
} | {
|
|
363
|
-
"type": "user";
|
|
364
|
-
/**
|
|
365
|
-
* This is the path to the user's config.toml file, though it is not
|
|
366
|
-
* guaranteed to exist.
|
|
367
|
-
*/
|
|
368
|
-
file: AbsolutePathBuf;
|
|
369
|
-
} | {
|
|
370
|
-
"type": "project";
|
|
371
|
-
dotCodexFolder: AbsolutePathBuf;
|
|
372
|
-
} | {
|
|
373
|
-
"type": "sessionFlags";
|
|
374
|
-
} | {
|
|
375
|
-
"type": "legacyManagedConfigTomlFromFile";
|
|
376
|
-
file: AbsolutePathBuf;
|
|
377
|
-
} | {
|
|
378
|
-
"type": "legacyManagedConfigTomlFromMdm";
|
|
379
|
-
};
|
|
380
|
-
|
|
381
|
-
type ConfigLayer = {
|
|
382
|
-
name: ConfigLayerSource;
|
|
383
|
-
version: string;
|
|
384
|
-
config: JsonValue;
|
|
385
|
-
disabledReason: string | null;
|
|
386
|
-
};
|
|
387
|
-
|
|
388
|
-
type ConfigLayerMetadata = {
|
|
389
|
-
name: ConfigLayerSource;
|
|
390
|
-
version: string;
|
|
391
|
-
};
|
|
392
|
-
|
|
393
|
-
type ConfigReadResponse = {
|
|
394
|
-
config: Config;
|
|
395
|
-
origins: {
|
|
396
|
-
[key in string]?: ConfigLayerMetadata;
|
|
397
|
-
};
|
|
398
|
-
layers: Array<ConfigLayer> | null;
|
|
399
|
-
};
|
|
400
|
-
|
|
401
|
-
type ResidencyRequirement = "us";
|
|
402
|
-
|
|
403
|
-
type ConfigRequirements = {
|
|
404
|
-
allowedApprovalPolicies: Array<AskForApproval> | null;
|
|
405
|
-
allowedSandboxModes: Array<SandboxMode> | null;
|
|
406
|
-
allowedWebSearchModes: Array<WebSearchMode> | null;
|
|
407
|
-
featureRequirements: {
|
|
408
|
-
[key in string]?: boolean;
|
|
409
|
-
} | null;
|
|
410
|
-
enforceResidency: ResidencyRequirement | null;
|
|
411
|
-
};
|
|
412
|
-
|
|
413
|
-
type ConfigRequirementsReadResponse = {
|
|
414
|
-
/**
|
|
415
|
-
* Null if no requirements are configured (e.g. no requirements.toml/MDM entries).
|
|
416
|
-
*/
|
|
417
|
-
requirements: ConfigRequirements | null;
|
|
418
|
-
};
|
|
419
|
-
|
|
420
|
-
type OverriddenMetadata = {
|
|
421
|
-
message: string;
|
|
422
|
-
overridingLayer: ConfigLayerMetadata;
|
|
423
|
-
effectiveValue: JsonValue;
|
|
424
|
-
};
|
|
425
|
-
|
|
426
|
-
type WriteStatus = "ok" | "okOverridden";
|
|
427
|
-
|
|
428
|
-
type ConfigWriteResponse = {
|
|
429
|
-
status: WriteStatus;
|
|
430
|
-
version: string;
|
|
431
|
-
/**
|
|
432
|
-
* Canonical path to the config file that was written.
|
|
433
|
-
*/
|
|
434
|
-
filePath: AbsolutePathBuf;
|
|
435
|
-
overriddenMetadata: OverriddenMetadata | null;
|
|
436
|
-
};
|
|
437
|
-
|
|
438
|
-
type ConfiguredHookHandler = {
|
|
439
|
-
"type": "command";
|
|
440
|
-
command: string;
|
|
441
|
-
timeoutSec: bigint | null;
|
|
442
|
-
async: boolean;
|
|
443
|
-
statusMessage: string | null;
|
|
444
|
-
} | {
|
|
445
|
-
"type": "prompt";
|
|
446
|
-
} | {
|
|
447
|
-
"type": "agent";
|
|
448
|
-
};
|
|
449
|
-
|
|
450
|
-
type ConfiguredHookMatcherGroup = {
|
|
451
|
-
matcher: string | null;
|
|
452
|
-
hooks: Array<ConfiguredHookHandler>;
|
|
453
|
-
};
|
|
454
|
-
|
|
455
|
-
/**
|
|
456
|
-
* Device-key algorithm reported at enrollment and signing boundaries.
|
|
457
|
-
*/
|
|
458
|
-
type DeviceKeyAlgorithm = "ecdsa_p256_sha256";
|
|
459
|
-
|
|
460
|
-
/**
|
|
461
|
-
* Platform protection class for a controller-local device key.
|
|
462
|
-
*/
|
|
463
|
-
type DeviceKeyProtectionClass = "hardware_secure_enclave" | "hardware_tpm" | "os_protected_nonextractable";
|
|
464
|
-
|
|
465
|
-
/**
|
|
466
|
-
* Device-key metadata and public key returned by create/public APIs.
|
|
467
|
-
*/
|
|
468
|
-
type DeviceKeyCreateResponse = {
|
|
469
|
-
keyId: string;
|
|
470
|
-
/**
|
|
471
|
-
* SubjectPublicKeyInfo DER encoded as base64.
|
|
472
|
-
*/
|
|
473
|
-
publicKeySpkiDerBase64: string;
|
|
474
|
-
algorithm: DeviceKeyAlgorithm;
|
|
475
|
-
protectionClass: DeviceKeyProtectionClass;
|
|
476
|
-
};
|
|
477
|
-
|
|
478
|
-
/**
|
|
479
|
-
* Device-key public metadata returned by `device/key/public`.
|
|
480
|
-
*/
|
|
481
|
-
type DeviceKeyPublicResponse = {
|
|
482
|
-
keyId: string;
|
|
483
|
-
/**
|
|
484
|
-
* SubjectPublicKeyInfo DER encoded as base64.
|
|
485
|
-
*/
|
|
486
|
-
publicKeySpkiDerBase64: string;
|
|
487
|
-
algorithm: DeviceKeyAlgorithm;
|
|
488
|
-
protectionClass: DeviceKeyProtectionClass;
|
|
489
|
-
};
|
|
490
|
-
|
|
491
|
-
/**
|
|
492
|
-
* ASN.1 DER signature returned by `device/key/sign`.
|
|
493
|
-
*/
|
|
494
|
-
type DeviceKeySignResponse = {
|
|
495
|
-
/**
|
|
496
|
-
* ECDSA signature DER encoded as base64.
|
|
497
|
-
*/
|
|
498
|
-
signatureDerBase64: string;
|
|
499
|
-
/**
|
|
500
|
-
* Exact bytes signed by the device key, encoded as base64. Verifiers must verify this byte
|
|
501
|
-
* string directly and must not reserialize `payload`.
|
|
502
|
-
*/
|
|
503
|
-
signedPayloadBase64: string;
|
|
504
|
-
algorithm: DeviceKeyAlgorithm;
|
|
505
|
-
};
|
|
506
|
-
|
|
507
|
-
type ExperimentalFeatureStage = "beta" | "underDevelopment" | "stable" | "deprecated" | "removed";
|
|
508
|
-
|
|
509
|
-
type ExperimentalFeature = {
|
|
510
|
-
/**
|
|
511
|
-
* Stable key used in config.toml and CLI flag toggles.
|
|
512
|
-
*/
|
|
513
|
-
name: string;
|
|
514
|
-
/**
|
|
515
|
-
* Lifecycle stage of this feature flag.
|
|
516
|
-
*/
|
|
517
|
-
stage: ExperimentalFeatureStage;
|
|
518
|
-
/**
|
|
519
|
-
* User-facing display name shown in the experimental features UI.
|
|
520
|
-
* Null when this feature is not in beta.
|
|
521
|
-
*/
|
|
522
|
-
displayName: string | null;
|
|
523
|
-
/**
|
|
524
|
-
* Short summary describing what the feature does.
|
|
525
|
-
* Null when this feature is not in beta.
|
|
526
|
-
*/
|
|
527
|
-
description: string | null;
|
|
528
|
-
/**
|
|
529
|
-
* Announcement copy shown to users when the feature is introduced.
|
|
530
|
-
* Null when this feature is not in beta.
|
|
531
|
-
*/
|
|
532
|
-
announcement: string | null;
|
|
533
|
-
/**
|
|
534
|
-
* Whether this feature is currently enabled in the loaded config.
|
|
535
|
-
*/
|
|
536
|
-
enabled: boolean;
|
|
537
|
-
/**
|
|
538
|
-
* Whether this feature is enabled by default.
|
|
539
|
-
*/
|
|
540
|
-
defaultEnabled: boolean;
|
|
541
|
-
};
|
|
542
|
-
|
|
543
|
-
type ExperimentalFeatureEnablementSetResponse = {
|
|
544
|
-
/**
|
|
545
|
-
* Feature enablement entries updated by this request.
|
|
546
|
-
*/
|
|
547
|
-
enablement: {
|
|
548
|
-
[key in string]?: boolean;
|
|
549
|
-
};
|
|
550
|
-
};
|
|
551
|
-
|
|
552
|
-
type ExperimentalFeatureListResponse = {
|
|
553
|
-
data: Array<ExperimentalFeature>;
|
|
554
|
-
/**
|
|
555
|
-
* Opaque cursor to pass to the next call to continue after the last item.
|
|
556
|
-
* If None, there are no more items to return.
|
|
557
|
-
*/
|
|
558
|
-
nextCursor: string | null;
|
|
559
|
-
};
|
|
560
|
-
|
|
561
|
-
type ExternalAgentConfigDetectResponse = {
|
|
562
|
-
items: Array<ExternalAgentConfigMigrationItem>;
|
|
563
|
-
};
|
|
564
|
-
|
|
565
|
-
type ExternalAgentConfigImportResponse = Record<string, never>;
|
|
566
|
-
|
|
567
|
-
type FeedbackUploadResponse = {
|
|
568
|
-
threadId: string;
|
|
569
|
-
};
|
|
570
|
-
|
|
571
|
-
/**
|
|
572
|
-
* Successful response for `fs/copy`.
|
|
573
|
-
*/
|
|
574
|
-
type FsCopyResponse = Record<string, never>;
|
|
575
|
-
|
|
576
|
-
/**
|
|
577
|
-
* Successful response for `fs/createDirectory`.
|
|
578
|
-
*/
|
|
579
|
-
type FsCreateDirectoryResponse = Record<string, never>;
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* Metadata returned by `fs/getMetadata`.
|
|
583
|
-
*/
|
|
584
|
-
type FsGetMetadataResponse = {
|
|
585
|
-
/**
|
|
586
|
-
* Whether the path resolves to a directory.
|
|
587
|
-
*/
|
|
588
|
-
isDirectory: boolean;
|
|
589
|
-
/**
|
|
590
|
-
* Whether the path resolves to a regular file.
|
|
591
|
-
*/
|
|
592
|
-
isFile: boolean;
|
|
593
|
-
/**
|
|
594
|
-
* Whether the path itself is a symbolic link.
|
|
595
|
-
*/
|
|
596
|
-
isSymlink: boolean;
|
|
597
|
-
/**
|
|
598
|
-
* File creation time in Unix milliseconds when available, otherwise `0`.
|
|
599
|
-
*/
|
|
600
|
-
createdAtMs: number;
|
|
601
|
-
/**
|
|
602
|
-
* File modification time in Unix milliseconds when available, otherwise `0`.
|
|
603
|
-
*/
|
|
604
|
-
modifiedAtMs: number;
|
|
605
|
-
};
|
|
606
|
-
|
|
607
|
-
/**
|
|
608
|
-
* A directory entry returned by `fs/readDirectory`.
|
|
609
|
-
*/
|
|
610
|
-
type FsReadDirectoryEntry = {
|
|
611
|
-
/**
|
|
612
|
-
* Direct child entry name only, not an absolute or relative path.
|
|
613
|
-
*/
|
|
614
|
-
fileName: string;
|
|
615
|
-
/**
|
|
616
|
-
* Whether this entry resolves to a directory.
|
|
617
|
-
*/
|
|
618
|
-
isDirectory: boolean;
|
|
619
|
-
/**
|
|
620
|
-
* Whether this entry resolves to a regular file.
|
|
621
|
-
*/
|
|
622
|
-
isFile: boolean;
|
|
623
|
-
};
|
|
624
|
-
|
|
625
|
-
/**
|
|
626
|
-
* Directory entries returned by `fs/readDirectory`.
|
|
627
|
-
*/
|
|
628
|
-
type FsReadDirectoryResponse = {
|
|
629
|
-
/**
|
|
630
|
-
* Direct child entries in the requested directory.
|
|
631
|
-
*/
|
|
632
|
-
entries: Array<FsReadDirectoryEntry>;
|
|
633
|
-
};
|
|
634
|
-
|
|
635
|
-
/**
|
|
636
|
-
* Base64-encoded file contents returned by `fs/readFile`.
|
|
637
|
-
*/
|
|
638
|
-
type FsReadFileResponse = {
|
|
639
|
-
/**
|
|
640
|
-
* File contents encoded as base64.
|
|
641
|
-
*/
|
|
642
|
-
dataBase64: string;
|
|
643
|
-
};
|
|
644
|
-
|
|
645
|
-
/**
|
|
646
|
-
* Successful response for `fs/remove`.
|
|
647
|
-
*/
|
|
648
|
-
type FsRemoveResponse = Record<string, never>;
|
|
649
|
-
|
|
650
|
-
/**
|
|
651
|
-
* Successful response for `fs/unwatch`.
|
|
652
|
-
*/
|
|
653
|
-
type FsUnwatchResponse = Record<string, never>;
|
|
654
|
-
|
|
655
|
-
/**
|
|
656
|
-
* Successful response for `fs/watch`.
|
|
657
|
-
*/
|
|
658
|
-
type FsWatchResponse = {
|
|
659
|
-
/**
|
|
660
|
-
* Canonicalized path associated with the watch.
|
|
661
|
-
*/
|
|
662
|
-
path: AbsolutePathBuf;
|
|
663
|
-
};
|
|
664
|
-
|
|
665
|
-
/**
|
|
666
|
-
* Successful response for `fs/writeFile`.
|
|
667
|
-
*/
|
|
668
|
-
type FsWriteFileResponse = Record<string, never>;
|
|
669
|
-
|
|
670
|
-
type GetAccountRateLimitsResponse = {
|
|
671
|
-
/**
|
|
672
|
-
* Backward-compatible single-bucket view; mirrors the historical payload.
|
|
673
|
-
*/
|
|
674
|
-
rateLimits: RateLimitSnapshot;
|
|
675
|
-
/**
|
|
676
|
-
* Multi-bucket view keyed by metered `limit_id` (for example, `codex`).
|
|
677
|
-
*/
|
|
678
|
-
rateLimitsByLimitId: {
|
|
679
|
-
[key in string]?: RateLimitSnapshot;
|
|
680
|
-
} | null;
|
|
681
|
-
};
|
|
682
|
-
|
|
683
|
-
type GetAccountResponse = {
|
|
684
|
-
account: Account | null;
|
|
685
|
-
requiresOpenaiAuth: boolean;
|
|
686
|
-
};
|
|
687
|
-
|
|
688
|
-
type HookErrorInfo = {
|
|
689
|
-
path: string;
|
|
690
|
-
message: string;
|
|
691
|
-
};
|
|
692
|
-
|
|
693
|
-
type HookTrustStatus = "managed" | "untrusted" | "trusted" | "modified";
|
|
694
|
-
|
|
695
|
-
type HookMetadata = {
|
|
696
|
-
key: string;
|
|
697
|
-
eventName: HookEventName;
|
|
698
|
-
handlerType: HookHandlerType;
|
|
699
|
-
matcher: string | null;
|
|
700
|
-
command: string | null;
|
|
701
|
-
timeoutSec: bigint;
|
|
702
|
-
statusMessage: string | null;
|
|
703
|
-
sourcePath: AbsolutePathBuf;
|
|
704
|
-
source: HookSource;
|
|
705
|
-
pluginId: string | null;
|
|
706
|
-
displayOrder: bigint;
|
|
707
|
-
enabled: boolean;
|
|
708
|
-
isManaged: boolean;
|
|
709
|
-
currentHash: string;
|
|
710
|
-
trustStatus: HookTrustStatus;
|
|
711
|
-
};
|
|
712
|
-
|
|
713
|
-
type HooksListEntry = {
|
|
714
|
-
cwd: string;
|
|
715
|
-
hooks: Array<HookMetadata>;
|
|
716
|
-
warnings: Array<string>;
|
|
717
|
-
errors: Array<HookErrorInfo>;
|
|
718
|
-
};
|
|
719
|
-
|
|
720
|
-
type HooksListResponse = {
|
|
721
|
-
data: Array<HooksListEntry>;
|
|
722
|
-
};
|
|
723
|
-
|
|
724
|
-
type LoginAccountResponse = {
|
|
725
|
-
"type": "apiKey";
|
|
726
|
-
} | {
|
|
727
|
-
"type": "chatgpt";
|
|
728
|
-
loginId: string;
|
|
729
|
-
/**
|
|
730
|
-
* URL the client should open in a browser to initiate the OAuth flow.
|
|
731
|
-
*/
|
|
732
|
-
authUrl: string;
|
|
733
|
-
} | {
|
|
734
|
-
"type": "chatgptDeviceCode";
|
|
735
|
-
loginId: string;
|
|
736
|
-
/**
|
|
737
|
-
* URL the client should open in a browser to complete device code authorization.
|
|
738
|
-
*/
|
|
739
|
-
verificationUrl: string;
|
|
740
|
-
/**
|
|
741
|
-
* One-time code the user must enter after signing in.
|
|
742
|
-
*/
|
|
743
|
-
userCode: string;
|
|
744
|
-
} | {
|
|
745
|
-
"type": "chatgptAuthTokens";
|
|
746
|
-
};
|
|
747
|
-
|
|
748
|
-
type LogoutAccountResponse = Record<string, never>;
|
|
749
|
-
|
|
750
|
-
type ManagedHooksRequirements = {
|
|
751
|
-
managedDir: string | null;
|
|
752
|
-
windowsManagedDir: string | null;
|
|
753
|
-
PreToolUse: Array<ConfiguredHookMatcherGroup>;
|
|
754
|
-
PermissionRequest: Array<ConfiguredHookMatcherGroup>;
|
|
755
|
-
PostToolUse: Array<ConfiguredHookMatcherGroup>;
|
|
756
|
-
PreCompact: Array<ConfiguredHookMatcherGroup>;
|
|
757
|
-
PostCompact: Array<ConfiguredHookMatcherGroup>;
|
|
758
|
-
SessionStart: Array<ConfiguredHookMatcherGroup>;
|
|
759
|
-
UserPromptSubmit: Array<ConfiguredHookMatcherGroup>;
|
|
760
|
-
Stop: Array<ConfiguredHookMatcherGroup>;
|
|
761
|
-
};
|
|
762
|
-
|
|
763
|
-
type MarketplaceAddResponse = {
|
|
764
|
-
marketplaceName: string;
|
|
765
|
-
installedRoot: AbsolutePathBuf;
|
|
766
|
-
alreadyAdded: boolean;
|
|
767
|
-
};
|
|
768
|
-
|
|
769
|
-
type MarketplaceInterface = {
|
|
770
|
-
displayName: string | null;
|
|
771
|
-
};
|
|
772
|
-
|
|
773
|
-
type MarketplaceLoadErrorInfo = {
|
|
774
|
-
marketplacePath: AbsolutePathBuf;
|
|
775
|
-
message: string;
|
|
776
|
-
};
|
|
777
|
-
|
|
778
|
-
type MarketplaceRemoveResponse = {
|
|
779
|
-
marketplaceName: string;
|
|
780
|
-
installedRoot: AbsolutePathBuf | null;
|
|
781
|
-
};
|
|
782
|
-
|
|
783
|
-
type MarketplaceUpgradeErrorInfo = {
|
|
784
|
-
marketplaceName: string;
|
|
785
|
-
message: string;
|
|
786
|
-
};
|
|
787
|
-
|
|
788
|
-
type MarketplaceUpgradeResponse = {
|
|
789
|
-
selectedMarketplaces: Array<string>;
|
|
790
|
-
upgradedRoots: Array<AbsolutePathBuf>;
|
|
791
|
-
errors: Array<MarketplaceUpgradeErrorInfo>;
|
|
792
|
-
};
|
|
793
|
-
|
|
794
|
-
type ModelAvailabilityNux = {
|
|
795
|
-
message: string;
|
|
796
|
-
};
|
|
797
|
-
|
|
798
|
-
type ModelServiceTier = {
|
|
799
|
-
id: string;
|
|
800
|
-
name: string;
|
|
801
|
-
description: string;
|
|
802
|
-
};
|
|
803
|
-
|
|
804
|
-
type ModelUpgradeInfo = {
|
|
805
|
-
model: string;
|
|
806
|
-
upgradeCopy: string | null;
|
|
807
|
-
modelLink: string | null;
|
|
808
|
-
migrationMarkdown: string | null;
|
|
809
|
-
};
|
|
810
|
-
|
|
811
|
-
type ReasoningEffortOption = {
|
|
812
|
-
reasoningEffort: ReasoningEffort;
|
|
813
|
-
description: string;
|
|
814
|
-
};
|
|
815
|
-
|
|
816
|
-
type Model = {
|
|
817
|
-
id: string;
|
|
818
|
-
model: string;
|
|
819
|
-
upgrade: string | null;
|
|
820
|
-
upgradeInfo: ModelUpgradeInfo | null;
|
|
821
|
-
availabilityNux: ModelAvailabilityNux | null;
|
|
822
|
-
displayName: string;
|
|
823
|
-
description: string;
|
|
824
|
-
hidden: boolean;
|
|
825
|
-
supportedReasoningEfforts: Array<ReasoningEffortOption>;
|
|
826
|
-
defaultReasoningEffort: ReasoningEffort;
|
|
827
|
-
inputModalities: Array<InputModality>;
|
|
828
|
-
supportsPersonality: boolean;
|
|
829
|
-
/**
|
|
830
|
-
* Deprecated: use `serviceTiers` instead.
|
|
831
|
-
*/
|
|
832
|
-
additionalSpeedTiers: Array<string>;
|
|
833
|
-
serviceTiers: Array<ModelServiceTier>;
|
|
834
|
-
isDefault: boolean;
|
|
835
|
-
};
|
|
836
|
-
|
|
837
|
-
type ModelListResponse = {
|
|
838
|
-
data: Array<Model>;
|
|
839
|
-
/**
|
|
840
|
-
* Opaque cursor to pass to the next call to continue after the last item.
|
|
841
|
-
* If None, there are no more items to return.
|
|
842
|
-
*/
|
|
843
|
-
nextCursor: string | null;
|
|
844
|
-
};
|
|
845
|
-
|
|
846
|
-
type ModelProviderCapabilitiesReadResponse = {
|
|
847
|
-
namespaceTools: boolean;
|
|
848
|
-
imageGeneration: boolean;
|
|
849
|
-
webSearch: boolean;
|
|
850
|
-
};
|
|
851
|
-
|
|
852
|
-
type NetworkDomainPermission = "allow" | "deny";
|
|
853
|
-
|
|
854
|
-
type NetworkUnixSocketPermission = "allow" | "none";
|
|
855
|
-
|
|
856
|
-
type NetworkRequirements = {
|
|
857
|
-
enabled: boolean | null;
|
|
858
|
-
httpPort: number | null;
|
|
859
|
-
socksPort: number | null;
|
|
860
|
-
allowUpstreamProxy: boolean | null;
|
|
861
|
-
dangerouslyAllowNonLoopbackProxy: boolean | null;
|
|
862
|
-
dangerouslyAllowAllUnixSockets: boolean | null;
|
|
863
|
-
/**
|
|
864
|
-
* Canonical network permission map for `experimental_network`.
|
|
865
|
-
*/
|
|
866
|
-
domains: {
|
|
867
|
-
[key in string]?: NetworkDomainPermission;
|
|
868
|
-
} | null;
|
|
869
|
-
/**
|
|
870
|
-
* When true, only managed allowlist entries are respected while managed
|
|
871
|
-
* network enforcement is active.
|
|
872
|
-
*/
|
|
873
|
-
managedAllowedDomainsOnly: boolean | null;
|
|
874
|
-
/**
|
|
875
|
-
* Legacy compatibility view derived from `domains`.
|
|
876
|
-
*/
|
|
877
|
-
allowedDomains: Array<string> | null;
|
|
878
|
-
/**
|
|
879
|
-
* Legacy compatibility view derived from `domains`.
|
|
880
|
-
*/
|
|
881
|
-
deniedDomains: Array<string> | null;
|
|
882
|
-
/**
|
|
883
|
-
* Canonical unix socket permission map for `experimental_network`.
|
|
884
|
-
*/
|
|
885
|
-
unixSockets: {
|
|
886
|
-
[key in string]?: NetworkUnixSocketPermission;
|
|
887
|
-
} | null;
|
|
888
|
-
/**
|
|
889
|
-
* Legacy compatibility view derived from `unix_sockets`.
|
|
890
|
-
*/
|
|
891
|
-
allowUnixSockets: Array<string> | null;
|
|
892
|
-
allowLocalBinding: boolean | null;
|
|
893
|
-
};
|
|
894
|
-
|
|
895
|
-
type PermissionProfileFileSystemPermissions = {
|
|
896
|
-
"type": "restricted";
|
|
897
|
-
entries: Array<FileSystemSandboxEntry>;
|
|
898
|
-
globScanMaxDepth?: number;
|
|
899
|
-
} | {
|
|
900
|
-
"type": "unrestricted";
|
|
901
|
-
};
|
|
902
|
-
|
|
903
|
-
type PermissionProfileNetworkPermissions = {
|
|
904
|
-
enabled: boolean;
|
|
905
|
-
};
|
|
906
|
-
|
|
907
|
-
type PermissionProfile = {
|
|
908
|
-
"type": "managed";
|
|
909
|
-
network: PermissionProfileNetworkPermissions;
|
|
910
|
-
fileSystem: PermissionProfileFileSystemPermissions;
|
|
911
|
-
} | {
|
|
912
|
-
"type": "disabled";
|
|
913
|
-
} | {
|
|
914
|
-
"type": "external";
|
|
915
|
-
network: PermissionProfileNetworkPermissions;
|
|
916
|
-
};
|
|
917
|
-
|
|
918
|
-
type PermissionProfileModificationParams = {
|
|
919
|
-
"type": "additionalWritableRoot";
|
|
920
|
-
path: AbsolutePathBuf;
|
|
921
|
-
};
|
|
922
|
-
|
|
923
|
-
type PermissionProfileSelectionParams = {
|
|
924
|
-
"type": "profile";
|
|
925
|
-
id: string;
|
|
926
|
-
modifications?: Array<PermissionProfileModificationParams> | null;
|
|
927
|
-
};
|
|
928
|
-
|
|
929
|
-
type PluginAuthPolicy = "ON_INSTALL" | "ON_USE";
|
|
930
|
-
|
|
931
|
-
type PluginAvailability = "AVAILABLE" | "DISABLED_BY_ADMIN";
|
|
932
|
-
|
|
933
|
-
type PluginInstallPolicy = "NOT_AVAILABLE" | "AVAILABLE" | "INSTALLED_BY_DEFAULT";
|
|
934
|
-
|
|
935
|
-
type PluginInterface = {
|
|
936
|
-
displayName: string | null;
|
|
937
|
-
shortDescription: string | null;
|
|
938
|
-
longDescription: string | null;
|
|
939
|
-
developerName: string | null;
|
|
940
|
-
category: string | null;
|
|
941
|
-
capabilities: Array<string>;
|
|
942
|
-
websiteUrl: string | null;
|
|
943
|
-
privacyPolicyUrl: string | null;
|
|
944
|
-
termsOfServiceUrl: string | null;
|
|
945
|
-
/**
|
|
946
|
-
* Starter prompts for the plugin. Capped at 3 entries with a maximum of
|
|
947
|
-
* 128 characters per entry.
|
|
948
|
-
*/
|
|
949
|
-
defaultPrompt: Array<string> | null;
|
|
950
|
-
brandColor: string | null;
|
|
951
|
-
/**
|
|
952
|
-
* Local composer icon path, resolved from the installed plugin package.
|
|
953
|
-
*/
|
|
954
|
-
composerIcon: AbsolutePathBuf | null;
|
|
955
|
-
/**
|
|
956
|
-
* Remote composer icon URL from the plugin catalog.
|
|
957
|
-
*/
|
|
958
|
-
composerIconUrl: string | null;
|
|
959
|
-
/**
|
|
960
|
-
* Local logo path, resolved from the installed plugin package.
|
|
961
|
-
*/
|
|
962
|
-
logo: AbsolutePathBuf | null;
|
|
963
|
-
/**
|
|
964
|
-
* Remote logo URL from the plugin catalog.
|
|
965
|
-
*/
|
|
966
|
-
logoUrl: string | null;
|
|
967
|
-
/**
|
|
968
|
-
* Local screenshot paths, resolved from the installed plugin package.
|
|
969
|
-
*/
|
|
970
|
-
screenshots: Array<AbsolutePathBuf>;
|
|
971
|
-
/**
|
|
972
|
-
* Remote screenshot URLs from the plugin catalog.
|
|
973
|
-
*/
|
|
974
|
-
screenshotUrls: Array<string>;
|
|
975
|
-
};
|
|
976
|
-
|
|
977
|
-
type PluginShareContext = {
|
|
978
|
-
remotePluginId: string;
|
|
979
|
-
creatorAccountUserId: string | null;
|
|
980
|
-
creatorName: string | null;
|
|
981
|
-
};
|
|
982
|
-
|
|
983
|
-
type PluginSource = {
|
|
984
|
-
"type": "local";
|
|
985
|
-
path: AbsolutePathBuf;
|
|
986
|
-
} | {
|
|
987
|
-
"type": "git";
|
|
988
|
-
url: string;
|
|
989
|
-
path: string | null;
|
|
990
|
-
refName: string | null;
|
|
991
|
-
sha: string | null;
|
|
992
|
-
} | {
|
|
993
|
-
"type": "remote";
|
|
994
|
-
};
|
|
995
|
-
|
|
996
|
-
type PluginSummary = {
|
|
997
|
-
id: string;
|
|
998
|
-
name: string;
|
|
999
|
-
/**
|
|
1000
|
-
* Remote sharing context associated with this plugin when available.
|
|
1001
|
-
*/
|
|
1002
|
-
shareContext: PluginShareContext | null;
|
|
1003
|
-
source: PluginSource;
|
|
1004
|
-
installed: boolean;
|
|
1005
|
-
enabled: boolean;
|
|
1006
|
-
installPolicy: PluginInstallPolicy;
|
|
1007
|
-
authPolicy: PluginAuthPolicy;
|
|
1008
|
-
/**
|
|
1009
|
-
* Availability state for installing and using the plugin.
|
|
1010
|
-
*/
|
|
1011
|
-
availability: PluginAvailability;
|
|
1012
|
-
interface: PluginInterface | null;
|
|
1013
|
-
keywords: Array<string>;
|
|
1014
|
-
};
|
|
1015
|
-
|
|
1016
|
-
type SkillInterface = {
|
|
1017
|
-
displayName?: string;
|
|
1018
|
-
shortDescription?: string;
|
|
1019
|
-
iconSmall?: AbsolutePathBuf;
|
|
1020
|
-
iconLarge?: AbsolutePathBuf;
|
|
1021
|
-
brandColor?: string;
|
|
1022
|
-
defaultPrompt?: string;
|
|
1023
|
-
};
|
|
1024
|
-
|
|
1025
|
-
type SkillSummary = {
|
|
1026
|
-
name: string;
|
|
1027
|
-
description: string;
|
|
1028
|
-
shortDescription: string | null;
|
|
1029
|
-
interface: SkillInterface | null;
|
|
1030
|
-
path: AbsolutePathBuf | null;
|
|
1031
|
-
enabled: boolean;
|
|
1032
|
-
};
|
|
1033
|
-
|
|
1034
|
-
type PluginDetail = {
|
|
1035
|
-
marketplaceName: string;
|
|
1036
|
-
marketplacePath: AbsolutePathBuf | null;
|
|
1037
|
-
summary: PluginSummary;
|
|
1038
|
-
description: string | null;
|
|
1039
|
-
skills: Array<SkillSummary>;
|
|
1040
|
-
apps: Array<AppSummary>;
|
|
1041
|
-
mcpServers: Array<string>;
|
|
1042
|
-
};
|
|
1043
|
-
|
|
1044
|
-
type PluginInstallResponse = {
|
|
1045
|
-
authPolicy: PluginAuthPolicy;
|
|
1046
|
-
appsNeedingAuth: Array<AppSummary>;
|
|
1047
|
-
};
|
|
1048
|
-
|
|
1049
|
-
type PluginMarketplaceEntry = {
|
|
1050
|
-
name: string;
|
|
1051
|
-
/**
|
|
1052
|
-
* Local marketplace file path when the marketplace is backed by a local file.
|
|
1053
|
-
* Remote-only catalog marketplaces do not have a local path.
|
|
1054
|
-
*/
|
|
1055
|
-
path: AbsolutePathBuf | null;
|
|
1056
|
-
interface: MarketplaceInterface | null;
|
|
1057
|
-
plugins: Array<PluginSummary>;
|
|
1058
|
-
};
|
|
1059
|
-
|
|
1060
|
-
type PluginListResponse = {
|
|
1061
|
-
marketplaces: Array<PluginMarketplaceEntry>;
|
|
1062
|
-
marketplaceLoadErrors: Array<MarketplaceLoadErrorInfo>;
|
|
1063
|
-
featuredPluginIds: Array<string>;
|
|
1064
|
-
};
|
|
1065
|
-
|
|
1066
|
-
type PluginReadResponse = {
|
|
1067
|
-
plugin: PluginDetail;
|
|
1068
|
-
};
|
|
1069
|
-
|
|
1070
|
-
type PluginShareDeleteResponse = Record<string, never>;
|
|
1071
|
-
|
|
1072
|
-
type PluginShareListItem = {
|
|
1073
|
-
plugin: PluginSummary;
|
|
1074
|
-
shareUrl: string;
|
|
1075
|
-
localPluginPath: AbsolutePathBuf | null;
|
|
1076
|
-
};
|
|
1077
|
-
|
|
1078
|
-
type PluginShareListResponse = {
|
|
1079
|
-
data: Array<PluginShareListItem>;
|
|
1080
|
-
};
|
|
1081
|
-
|
|
1082
|
-
type PluginSharePrincipal = {
|
|
1083
|
-
principalType: PluginSharePrincipalType;
|
|
1084
|
-
principalId: string;
|
|
1085
|
-
name: string;
|
|
1086
|
-
};
|
|
1087
|
-
|
|
1088
|
-
type PluginShareSaveResponse = {
|
|
1089
|
-
remotePluginId: string;
|
|
1090
|
-
shareUrl: string;
|
|
1091
|
-
};
|
|
1092
|
-
|
|
1093
|
-
type PluginShareUpdateTargetsResponse = {
|
|
1094
|
-
principals: Array<PluginSharePrincipal>;
|
|
1095
|
-
};
|
|
1096
|
-
|
|
1097
|
-
type PluginSkillReadResponse = {
|
|
1098
|
-
contents: string | null;
|
|
1099
|
-
};
|
|
1100
|
-
|
|
1101
|
-
type PluginUninstallResponse = Record<string, never>;
|
|
1102
|
-
|
|
1103
|
-
/**
|
|
1104
|
-
* PTY size in character cells for `process/spawn` PTY sessions.
|
|
1105
|
-
*/
|
|
1106
|
-
type ProcessTerminalSize = {
|
|
1107
|
-
/**
|
|
1108
|
-
* Terminal height in character cells.
|
|
1109
|
-
*/
|
|
1110
|
-
rows: number;
|
|
1111
|
-
/**
|
|
1112
|
-
* Terminal width in character cells.
|
|
1113
|
-
*/
|
|
1114
|
-
cols: number;
|
|
1115
|
-
};
|
|
1116
|
-
|
|
1117
|
-
type ReviewStartResponse = {
|
|
1118
|
-
turn: Turn;
|
|
1119
|
-
/**
|
|
1120
|
-
* Identifies the thread where the review runs.
|
|
1121
|
-
*
|
|
1122
|
-
* For inline reviews, this is the original thread id.
|
|
1123
|
-
* For detached reviews, this is the id of the new review thread.
|
|
1124
|
-
*/
|
|
1125
|
-
reviewThreadId: string;
|
|
1126
|
-
};
|
|
1127
|
-
|
|
1128
|
-
type SendAddCreditsNudgeEmailResponse = {
|
|
1129
|
-
status: AddCreditsNudgeEmailStatus;
|
|
1130
|
-
};
|
|
1131
|
-
|
|
1132
|
-
type SkillToolDependency = {
|
|
1133
|
-
type: string;
|
|
1134
|
-
value: string;
|
|
1135
|
-
description?: string;
|
|
1136
|
-
transport?: string;
|
|
1137
|
-
command?: string;
|
|
1138
|
-
url?: string;
|
|
1139
|
-
};
|
|
1140
|
-
|
|
1141
|
-
type SkillDependencies = {
|
|
1142
|
-
tools: Array<SkillToolDependency>;
|
|
1143
|
-
};
|
|
1144
|
-
|
|
1145
|
-
type SkillErrorInfo = {
|
|
1146
|
-
path: string;
|
|
1147
|
-
message: string;
|
|
1148
|
-
};
|
|
1149
|
-
|
|
1150
|
-
type SkillScope = "user" | "repo" | "system" | "admin";
|
|
1151
|
-
|
|
1152
|
-
type SkillMetadata = {
|
|
1153
|
-
name: string;
|
|
1154
|
-
description: string;
|
|
1155
|
-
/**
|
|
1156
|
-
* Legacy short_description from SKILL.md. Prefer SKILL.json interface.short_description.
|
|
1157
|
-
*/
|
|
1158
|
-
shortDescription?: string;
|
|
1159
|
-
interface?: SkillInterface;
|
|
1160
|
-
dependencies?: SkillDependencies;
|
|
1161
|
-
path: AbsolutePathBuf;
|
|
1162
|
-
scope: SkillScope;
|
|
1163
|
-
enabled: boolean;
|
|
1164
|
-
};
|
|
1165
|
-
|
|
1166
|
-
type SkillsConfigWriteResponse = {
|
|
1167
|
-
effectiveEnabled: boolean;
|
|
1168
|
-
};
|
|
1169
|
-
|
|
1170
|
-
type SkillsListEntry = {
|
|
1171
|
-
cwd: string;
|
|
1172
|
-
skills: Array<SkillMetadata>;
|
|
1173
|
-
errors: Array<SkillErrorInfo>;
|
|
1174
|
-
};
|
|
1175
|
-
|
|
1176
|
-
type SkillsListResponse = {
|
|
1177
|
-
data: Array<SkillsListEntry>;
|
|
1178
|
-
};
|
|
1179
|
-
|
|
1180
|
-
type ThreadApproveGuardianDeniedActionResponse = Record<string, never>;
|
|
1181
|
-
|
|
1182
|
-
type ThreadForkResponse = {
|
|
1183
|
-
thread: Thread;
|
|
1184
|
-
model: string;
|
|
1185
|
-
modelProvider: string;
|
|
1186
|
-
serviceTier: string | null;
|
|
1187
|
-
cwd: AbsolutePathBuf; /**
|
|
1188
|
-
* Instruction source files currently loaded for this thread.
|
|
1189
|
-
*/
|
|
1190
|
-
instructionSources: Array<AbsolutePathBuf>;
|
|
1191
|
-
approvalPolicy: AskForApproval; /**
|
|
1192
|
-
* Reviewer currently used for approval requests on this thread.
|
|
1193
|
-
*/
|
|
1194
|
-
approvalsReviewer: ApprovalsReviewer; /**
|
|
1195
|
-
* Legacy sandbox policy retained for compatibility. Experimental clients
|
|
1196
|
-
* should prefer `permissionProfile` when they need exact runtime
|
|
1197
|
-
* permissions.
|
|
1198
|
-
*/
|
|
1199
|
-
sandbox: SandboxPolicy;
|
|
1200
|
-
reasoningEffort: ReasoningEffort | null;
|
|
1201
|
-
};
|
|
1202
|
-
|
|
1203
|
-
type ThreadInjectItemsResponse = Record<string, never>;
|
|
1204
|
-
|
|
1205
|
-
type ThreadLoadedListResponse = {
|
|
1206
|
-
/**
|
|
1207
|
-
* Thread ids for sessions currently loaded in memory.
|
|
1208
|
-
*/
|
|
1209
|
-
data: Array<string>;
|
|
1210
|
-
/**
|
|
1211
|
-
* Opaque cursor to pass to the next call to continue after the last item.
|
|
1212
|
-
* if None, there are no more items to return.
|
|
1213
|
-
*/
|
|
1214
|
-
nextCursor: string | null;
|
|
1215
|
-
};
|
|
1216
|
-
|
|
1217
|
-
/**
|
|
1218
|
-
* EXPERIMENTAL - transport used by thread realtime.
|
|
1219
|
-
*/
|
|
1220
|
-
type ThreadRealtimeStartTransport = {
|
|
1221
|
-
"type": "websocket";
|
|
1222
|
-
} | {
|
|
1223
|
-
"type": "webrtc";
|
|
1224
|
-
/**
|
|
1225
|
-
* SDP offer generated by a WebRTC RTCPeerConnection after configuring audio and the
|
|
1226
|
-
* realtime events data channel.
|
|
1227
|
-
*/
|
|
1228
|
-
sdp: string;
|
|
1229
|
-
};
|
|
1230
|
-
|
|
1231
|
-
type ThreadRollbackResponse = {
|
|
1232
|
-
/**
|
|
1233
|
-
* The updated thread after applying the rollback, with `turns` populated.
|
|
1234
|
-
*
|
|
1235
|
-
* The ThreadItems stored in each Turn are lossy since we explicitly do not
|
|
1236
|
-
* persist all agent interactions, such as command executions. This is the same
|
|
1237
|
-
* behavior as `thread/resume`.
|
|
1238
|
-
*/
|
|
1239
|
-
thread: Thread;
|
|
1240
|
-
};
|
|
1241
|
-
|
|
1242
|
-
type ThreadShellCommandResponse = Record<string, never>;
|
|
1243
|
-
|
|
1244
|
-
type ThreadUnsubscribeStatus = "notLoaded" | "notSubscribed" | "unsubscribed";
|
|
1245
|
-
|
|
1246
|
-
type ThreadUnsubscribeResponse = {
|
|
1247
|
-
status: ThreadUnsubscribeStatus;
|
|
1248
|
-
};
|
|
1249
|
-
|
|
1250
|
-
type TurnEnvironmentParams = {
|
|
1251
|
-
environmentId: string;
|
|
1252
|
-
cwd: AbsolutePathBuf;
|
|
1253
|
-
};
|
|
1254
|
-
|
|
1255
|
-
type WindowsSandboxReadiness = "ready" | "notConfigured" | "updateRequired";
|
|
1256
|
-
|
|
1257
|
-
type WindowsSandboxReadinessResponse = {
|
|
1258
|
-
status: WindowsSandboxReadiness;
|
|
1259
|
-
};
|
|
1260
|
-
|
|
1261
|
-
type WindowsSandboxSetupStartResponse = {
|
|
1262
|
-
started: boolean;
|
|
1263
|
-
};
|
|
1264
|
-
|
|
1265
|
-
type index_Account = Account;
|
|
1266
|
-
declare const index_AccountLoginCompletedNotification: typeof AccountLoginCompletedNotification;
|
|
1267
|
-
declare const index_AccountRateLimitsUpdatedNotification: typeof AccountRateLimitsUpdatedNotification;
|
|
1268
|
-
declare const index_AccountUpdatedNotification: typeof AccountUpdatedNotification;
|
|
1269
|
-
type index_ActivePermissionProfile = ActivePermissionProfile;
|
|
1270
|
-
type index_ActivePermissionProfileModification = ActivePermissionProfileModification;
|
|
1271
|
-
declare const index_AddCreditsNudgeCreditType: typeof AddCreditsNudgeCreditType;
|
|
1272
|
-
type index_AddCreditsNudgeEmailStatus = AddCreditsNudgeEmailStatus;
|
|
1273
|
-
declare const index_AdditionalFileSystemPermissions: typeof AdditionalFileSystemPermissions;
|
|
1274
|
-
declare const index_AdditionalNetworkPermissions: typeof AdditionalNetworkPermissions;
|
|
1275
|
-
type index_AdditionalPermissionProfile = AdditionalPermissionProfile;
|
|
1276
|
-
declare const index_AgentMessageDeltaNotification: typeof AgentMessageDeltaNotification;
|
|
1277
|
-
type index_AnalyticsConfig = AnalyticsConfig;
|
|
1278
|
-
declare const index_AppBranding: typeof AppBranding;
|
|
1279
|
-
declare const index_AppInfo: typeof AppInfo;
|
|
1280
|
-
declare const index_AppListUpdatedNotification: typeof AppListUpdatedNotification;
|
|
1281
|
-
declare const index_AppMetadata: typeof AppMetadata;
|
|
1282
|
-
declare const index_AppReview: typeof AppReview;
|
|
1283
|
-
declare const index_AppScreenshot: typeof AppScreenshot;
|
|
1284
|
-
type index_AppSummary = AppSummary;
|
|
1285
|
-
type index_AppToolApproval = AppToolApproval;
|
|
1286
|
-
type index_AppToolsConfig = AppToolsConfig;
|
|
1287
|
-
declare const index_ApprovalsReviewer: typeof ApprovalsReviewer;
|
|
1288
|
-
type index_AppsConfig = AppsConfig;
|
|
1289
|
-
type index_AppsDefaultConfig = AppsDefaultConfig;
|
|
1290
|
-
declare const index_AppsListParams: typeof AppsListParams;
|
|
1291
|
-
type index_AppsListResponse = AppsListResponse;
|
|
1292
|
-
declare const index_AskForApproval: typeof AskForApproval;
|
|
1293
|
-
declare const index_AutoReviewDecisionSource: typeof AutoReviewDecisionSource;
|
|
1294
|
-
declare const index_ByteRange: typeof ByteRange;
|
|
1295
|
-
declare const index_CancelLoginAccountParams: typeof CancelLoginAccountParams;
|
|
1296
|
-
type index_CancelLoginAccountResponse = CancelLoginAccountResponse;
|
|
1297
|
-
type index_CancelLoginAccountStatus = CancelLoginAccountStatus;
|
|
1298
|
-
declare const index_ChatgptAuthTokensRefreshParams: typeof ChatgptAuthTokensRefreshParams;
|
|
1299
|
-
declare const index_ChatgptAuthTokensRefreshReason: typeof ChatgptAuthTokensRefreshReason;
|
|
1300
|
-
type index_ChatgptAuthTokensRefreshResponse = ChatgptAuthTokensRefreshResponse;
|
|
1301
|
-
declare const index_CodexErrorInfo: typeof CodexErrorInfo;
|
|
1302
|
-
declare const index_CollabAgentState: typeof CollabAgentState;
|
|
1303
|
-
declare const index_CollabAgentStatus: typeof CollabAgentStatus;
|
|
1304
|
-
declare const index_CollabAgentTool: typeof CollabAgentTool;
|
|
1305
|
-
declare const index_CollabAgentToolCallStatus: typeof CollabAgentToolCallStatus;
|
|
1306
|
-
declare const index_CollaborationModeListParams: typeof CollaborationModeListParams;
|
|
1307
|
-
declare const index_CollaborationModeListResponse: typeof CollaborationModeListResponse;
|
|
1308
|
-
declare const index_CollaborationModeMask: typeof CollaborationModeMask;
|
|
1309
|
-
declare const index_CommandAction: typeof CommandAction;
|
|
1310
|
-
declare const index_CommandExecOutputDeltaNotification: typeof CommandExecOutputDeltaNotification;
|
|
1311
|
-
declare const index_CommandExecOutputStream: typeof CommandExecOutputStream;
|
|
1312
|
-
declare const index_CommandExecParams: typeof CommandExecParams;
|
|
1313
|
-
declare const index_CommandExecResizeParams: typeof CommandExecResizeParams;
|
|
1314
|
-
type index_CommandExecResizeResponse = CommandExecResizeResponse;
|
|
1315
|
-
type index_CommandExecResponse = CommandExecResponse;
|
|
1316
|
-
declare const index_CommandExecTerminalSize: typeof CommandExecTerminalSize;
|
|
1317
|
-
declare const index_CommandExecTerminateParams: typeof CommandExecTerminateParams;
|
|
1318
|
-
type index_CommandExecTerminateResponse = CommandExecTerminateResponse;
|
|
1319
|
-
declare const index_CommandExecWriteParams: typeof CommandExecWriteParams;
|
|
1320
|
-
type index_CommandExecWriteResponse = CommandExecWriteResponse;
|
|
1321
|
-
declare const index_CommandExecutionApprovalDecision: typeof CommandExecutionApprovalDecision;
|
|
1322
|
-
declare const index_CommandExecutionOutputDeltaNotification: typeof CommandExecutionOutputDeltaNotification;
|
|
1323
|
-
declare const index_CommandExecutionRequestApprovalParams: typeof CommandExecutionRequestApprovalParams;
|
|
1324
|
-
declare const index_CommandExecutionRequestApprovalResponse: typeof CommandExecutionRequestApprovalResponse;
|
|
1325
|
-
declare const index_CommandExecutionSource: typeof CommandExecutionSource;
|
|
1326
|
-
declare const index_CommandExecutionStatus: typeof CommandExecutionStatus;
|
|
1327
|
-
declare const index_CommandMigration: typeof CommandMigration;
|
|
1328
|
-
type index_Config = Config;
|
|
1329
|
-
declare const index_ConfigBatchWriteParams: typeof ConfigBatchWriteParams;
|
|
1330
|
-
declare const index_ConfigEdit: typeof ConfigEdit;
|
|
1331
|
-
type index_ConfigLayer = ConfigLayer;
|
|
1332
|
-
type index_ConfigLayerMetadata = ConfigLayerMetadata;
|
|
1333
|
-
type index_ConfigLayerSource = ConfigLayerSource;
|
|
1334
|
-
declare const index_ConfigReadParams: typeof ConfigReadParams;
|
|
1335
|
-
type index_ConfigReadResponse = ConfigReadResponse;
|
|
1336
|
-
type index_ConfigRequirements = ConfigRequirements;
|
|
1337
|
-
type index_ConfigRequirementsReadResponse = ConfigRequirementsReadResponse;
|
|
1338
|
-
declare const index_ConfigValueWriteParams: typeof ConfigValueWriteParams;
|
|
1339
|
-
declare const index_ConfigWarningNotification: typeof ConfigWarningNotification;
|
|
1340
|
-
type index_ConfigWriteResponse = ConfigWriteResponse;
|
|
1341
|
-
type index_ConfiguredHookHandler = ConfiguredHookHandler;
|
|
1342
|
-
type index_ConfiguredHookMatcherGroup = ConfiguredHookMatcherGroup;
|
|
1343
|
-
declare const index_ContextCompactedNotification: typeof ContextCompactedNotification;
|
|
1344
|
-
declare const index_CreditsSnapshot: typeof CreditsSnapshot;
|
|
1345
|
-
declare const index_DeprecationNoticeNotification: typeof DeprecationNoticeNotification;
|
|
1346
|
-
type index_DeviceKeyAlgorithm = DeviceKeyAlgorithm;
|
|
1347
|
-
declare const index_DeviceKeyCreateParams: typeof DeviceKeyCreateParams;
|
|
1348
|
-
type index_DeviceKeyCreateResponse = DeviceKeyCreateResponse;
|
|
1349
|
-
type index_DeviceKeyProtectionClass = DeviceKeyProtectionClass;
|
|
1350
|
-
declare const index_DeviceKeyProtectionPolicy: typeof DeviceKeyProtectionPolicy;
|
|
1351
|
-
declare const index_DeviceKeyPublicParams: typeof DeviceKeyPublicParams;
|
|
1352
|
-
type index_DeviceKeyPublicResponse = DeviceKeyPublicResponse;
|
|
1353
|
-
declare const index_DeviceKeySignParams: typeof DeviceKeySignParams;
|
|
1354
|
-
declare const index_DeviceKeySignPayload: typeof DeviceKeySignPayload;
|
|
1355
|
-
type index_DeviceKeySignResponse = DeviceKeySignResponse;
|
|
1356
|
-
declare const index_DynamicToolCallOutputContentItem: typeof DynamicToolCallOutputContentItem;
|
|
1357
|
-
declare const index_DynamicToolCallParams: typeof DynamicToolCallParams;
|
|
1358
|
-
declare const index_DynamicToolCallResponse: typeof DynamicToolCallResponse;
|
|
1359
|
-
declare const index_DynamicToolCallStatus: typeof DynamicToolCallStatus;
|
|
1360
|
-
declare const index_DynamicToolSpec: typeof DynamicToolSpec;
|
|
1361
|
-
declare const index_ErrorNotification: typeof ErrorNotification;
|
|
1362
|
-
type index_ExperimentalFeature = ExperimentalFeature;
|
|
1363
|
-
declare const index_ExperimentalFeatureEnablementSetParams: typeof ExperimentalFeatureEnablementSetParams;
|
|
1364
|
-
type index_ExperimentalFeatureEnablementSetResponse = ExperimentalFeatureEnablementSetResponse;
|
|
1365
|
-
declare const index_ExperimentalFeatureListParams: typeof ExperimentalFeatureListParams;
|
|
1366
|
-
type index_ExperimentalFeatureListResponse = ExperimentalFeatureListResponse;
|
|
1367
|
-
type index_ExperimentalFeatureStage = ExperimentalFeatureStage;
|
|
1368
|
-
declare const index_ExternalAgentConfigDetectParams: typeof ExternalAgentConfigDetectParams;
|
|
1369
|
-
type index_ExternalAgentConfigDetectResponse = ExternalAgentConfigDetectResponse;
|
|
1370
|
-
declare const index_ExternalAgentConfigImportCompletedNotification: typeof ExternalAgentConfigImportCompletedNotification;
|
|
1371
|
-
declare const index_ExternalAgentConfigImportParams: typeof ExternalAgentConfigImportParams;
|
|
1372
|
-
type index_ExternalAgentConfigImportResponse = ExternalAgentConfigImportResponse;
|
|
1373
|
-
declare const index_ExternalAgentConfigMigrationItem: typeof ExternalAgentConfigMigrationItem;
|
|
1374
|
-
declare const index_ExternalAgentConfigMigrationItemType: typeof ExternalAgentConfigMigrationItemType;
|
|
1375
|
-
declare const index_FeedbackUploadParams: typeof FeedbackUploadParams;
|
|
1376
|
-
type index_FeedbackUploadResponse = FeedbackUploadResponse;
|
|
1377
|
-
declare const index_FileChangeApprovalDecision: typeof FileChangeApprovalDecision;
|
|
1378
|
-
declare const index_FileChangeOutputDeltaNotification: typeof FileChangeOutputDeltaNotification;
|
|
1379
|
-
declare const index_FileChangePatchUpdatedNotification: typeof FileChangePatchUpdatedNotification;
|
|
1380
|
-
declare const index_FileChangeRequestApprovalParams: typeof FileChangeRequestApprovalParams;
|
|
1381
|
-
declare const index_FileChangeRequestApprovalResponse: typeof FileChangeRequestApprovalResponse;
|
|
1382
|
-
declare const index_FileSystemAccessMode: typeof FileSystemAccessMode;
|
|
1383
|
-
declare const index_FileSystemPath: typeof FileSystemPath;
|
|
1384
|
-
declare const index_FileSystemSandboxEntry: typeof FileSystemSandboxEntry;
|
|
1385
|
-
declare const index_FileSystemSpecialPath: typeof FileSystemSpecialPath;
|
|
1386
|
-
declare const index_FileUpdateChange: typeof FileUpdateChange;
|
|
1387
|
-
declare const index_FsChangedNotification: typeof FsChangedNotification;
|
|
1388
|
-
declare const index_FsCopyParams: typeof FsCopyParams;
|
|
1389
|
-
type index_FsCopyResponse = FsCopyResponse;
|
|
1390
|
-
declare const index_FsCreateDirectoryParams: typeof FsCreateDirectoryParams;
|
|
1391
|
-
type index_FsCreateDirectoryResponse = FsCreateDirectoryResponse;
|
|
1392
|
-
declare const index_FsGetMetadataParams: typeof FsGetMetadataParams;
|
|
1393
|
-
type index_FsGetMetadataResponse = FsGetMetadataResponse;
|
|
1394
|
-
type index_FsReadDirectoryEntry = FsReadDirectoryEntry;
|
|
1395
|
-
declare const index_FsReadDirectoryParams: typeof FsReadDirectoryParams;
|
|
1396
|
-
type index_FsReadDirectoryResponse = FsReadDirectoryResponse;
|
|
1397
|
-
declare const index_FsReadFileParams: typeof FsReadFileParams;
|
|
1398
|
-
type index_FsReadFileResponse = FsReadFileResponse;
|
|
1399
|
-
declare const index_FsRemoveParams: typeof FsRemoveParams;
|
|
1400
|
-
type index_FsRemoveResponse = FsRemoveResponse;
|
|
1401
|
-
declare const index_FsUnwatchParams: typeof FsUnwatchParams;
|
|
1402
|
-
type index_FsUnwatchResponse = FsUnwatchResponse;
|
|
1403
|
-
declare const index_FsWatchParams: typeof FsWatchParams;
|
|
1404
|
-
type index_FsWatchResponse = FsWatchResponse;
|
|
1405
|
-
declare const index_FsWriteFileParams: typeof FsWriteFileParams;
|
|
1406
|
-
type index_FsWriteFileResponse = FsWriteFileResponse;
|
|
1407
|
-
declare const index_GetAccountParams: typeof GetAccountParams;
|
|
1408
|
-
type index_GetAccountRateLimitsResponse = GetAccountRateLimitsResponse;
|
|
1409
|
-
type index_GetAccountResponse = GetAccountResponse;
|
|
1410
|
-
declare const index_GitInfo: typeof GitInfo;
|
|
1411
|
-
declare const index_GrantedPermissionProfile: typeof GrantedPermissionProfile;
|
|
1412
|
-
declare const index_GuardianApprovalReview: typeof GuardianApprovalReview;
|
|
1413
|
-
declare const index_GuardianApprovalReviewAction: typeof GuardianApprovalReviewAction;
|
|
1414
|
-
declare const index_GuardianApprovalReviewStatus: typeof GuardianApprovalReviewStatus;
|
|
1415
|
-
declare const index_GuardianCommandSource: typeof GuardianCommandSource;
|
|
1416
|
-
declare const index_GuardianRiskLevel: typeof GuardianRiskLevel;
|
|
1417
|
-
declare const index_GuardianUserAuthorization: typeof GuardianUserAuthorization;
|
|
1418
|
-
declare const index_GuardianWarningNotification: typeof GuardianWarningNotification;
|
|
1419
|
-
declare const index_HookCompletedNotification: typeof HookCompletedNotification;
|
|
1420
|
-
type index_HookErrorInfo = HookErrorInfo;
|
|
1421
|
-
declare const index_HookEventName: typeof HookEventName;
|
|
1422
|
-
declare const index_HookExecutionMode: typeof HookExecutionMode;
|
|
1423
|
-
declare const index_HookHandlerType: typeof HookHandlerType;
|
|
1424
|
-
type index_HookMetadata = HookMetadata;
|
|
1425
|
-
declare const index_HookMigration: typeof HookMigration;
|
|
1426
|
-
declare const index_HookOutputEntry: typeof HookOutputEntry;
|
|
1427
|
-
declare const index_HookOutputEntryKind: typeof HookOutputEntryKind;
|
|
1428
|
-
declare const index_HookPromptFragment: typeof HookPromptFragment;
|
|
1429
|
-
declare const index_HookRunStatus: typeof HookRunStatus;
|
|
1430
|
-
declare const index_HookRunSummary: typeof HookRunSummary;
|
|
1431
|
-
declare const index_HookScope: typeof HookScope;
|
|
1432
|
-
declare const index_HookSource: typeof HookSource;
|
|
1433
|
-
declare const index_HookStartedNotification: typeof HookStartedNotification;
|
|
1434
|
-
type index_HookTrustStatus = HookTrustStatus;
|
|
1435
|
-
type index_HooksListEntry = HooksListEntry;
|
|
1436
|
-
declare const index_HooksListParams: typeof HooksListParams;
|
|
1437
|
-
type index_HooksListResponse = HooksListResponse;
|
|
1438
|
-
declare const index_ItemCompletedNotification: typeof ItemCompletedNotification;
|
|
1439
|
-
declare const index_ItemGuardianApprovalReviewCompletedNotification: typeof ItemGuardianApprovalReviewCompletedNotification;
|
|
1440
|
-
declare const index_ItemGuardianApprovalReviewStartedNotification: typeof ItemGuardianApprovalReviewStartedNotification;
|
|
1441
|
-
declare const index_ItemStartedNotification: typeof ItemStartedNotification;
|
|
1442
|
-
declare const index_ListMcpServerStatusParams: typeof ListMcpServerStatusParams;
|
|
1443
|
-
declare const index_ListMcpServerStatusResponse: typeof ListMcpServerStatusResponse;
|
|
1444
|
-
declare const index_LoginAccountParams: typeof LoginAccountParams;
|
|
1445
|
-
type index_LoginAccountResponse = LoginAccountResponse;
|
|
1446
|
-
type index_LogoutAccountResponse = LogoutAccountResponse;
|
|
1447
|
-
type index_ManagedHooksRequirements = ManagedHooksRequirements;
|
|
1448
|
-
declare const index_MarketplaceAddParams: typeof MarketplaceAddParams;
|
|
1449
|
-
type index_MarketplaceAddResponse = MarketplaceAddResponse;
|
|
1450
|
-
type index_MarketplaceInterface = MarketplaceInterface;
|
|
1451
|
-
type index_MarketplaceLoadErrorInfo = MarketplaceLoadErrorInfo;
|
|
1452
|
-
declare const index_MarketplaceRemoveParams: typeof MarketplaceRemoveParams;
|
|
1453
|
-
type index_MarketplaceRemoveResponse = MarketplaceRemoveResponse;
|
|
1454
|
-
type index_MarketplaceUpgradeErrorInfo = MarketplaceUpgradeErrorInfo;
|
|
1455
|
-
declare const index_MarketplaceUpgradeParams: typeof MarketplaceUpgradeParams;
|
|
1456
|
-
type index_MarketplaceUpgradeResponse = MarketplaceUpgradeResponse;
|
|
1457
|
-
declare const index_McpAuthStatus: typeof McpAuthStatus;
|
|
1458
|
-
declare const index_McpElicitationArrayType: typeof McpElicitationArrayType;
|
|
1459
|
-
declare const index_McpElicitationBooleanSchema: typeof McpElicitationBooleanSchema;
|
|
1460
|
-
declare const index_McpElicitationBooleanType: typeof McpElicitationBooleanType;
|
|
1461
|
-
declare const index_McpElicitationConstOption: typeof McpElicitationConstOption;
|
|
1462
|
-
declare const index_McpElicitationEnumSchema: typeof McpElicitationEnumSchema;
|
|
1463
|
-
declare const index_McpElicitationLegacyTitledEnumSchema: typeof McpElicitationLegacyTitledEnumSchema;
|
|
1464
|
-
declare const index_McpElicitationMultiSelectEnumSchema: typeof McpElicitationMultiSelectEnumSchema;
|
|
1465
|
-
declare const index_McpElicitationNumberSchema: typeof McpElicitationNumberSchema;
|
|
1466
|
-
declare const index_McpElicitationNumberType: typeof McpElicitationNumberType;
|
|
1467
|
-
declare const index_McpElicitationObjectType: typeof McpElicitationObjectType;
|
|
1468
|
-
declare const index_McpElicitationPrimitiveSchema: typeof McpElicitationPrimitiveSchema;
|
|
1469
|
-
declare const index_McpElicitationSchema: typeof McpElicitationSchema;
|
|
1470
|
-
declare const index_McpElicitationSingleSelectEnumSchema: typeof McpElicitationSingleSelectEnumSchema;
|
|
1471
|
-
declare const index_McpElicitationStringFormat: typeof McpElicitationStringFormat;
|
|
1472
|
-
declare const index_McpElicitationStringSchema: typeof McpElicitationStringSchema;
|
|
1473
|
-
declare const index_McpElicitationStringType: typeof McpElicitationStringType;
|
|
1474
|
-
declare const index_McpElicitationTitledEnumItems: typeof McpElicitationTitledEnumItems;
|
|
1475
|
-
declare const index_McpElicitationTitledMultiSelectEnumSchema: typeof McpElicitationTitledMultiSelectEnumSchema;
|
|
1476
|
-
declare const index_McpElicitationTitledSingleSelectEnumSchema: typeof McpElicitationTitledSingleSelectEnumSchema;
|
|
1477
|
-
declare const index_McpElicitationUntitledEnumItems: typeof McpElicitationUntitledEnumItems;
|
|
1478
|
-
declare const index_McpElicitationUntitledMultiSelectEnumSchema: typeof McpElicitationUntitledMultiSelectEnumSchema;
|
|
1479
|
-
declare const index_McpElicitationUntitledSingleSelectEnumSchema: typeof McpElicitationUntitledSingleSelectEnumSchema;
|
|
1480
|
-
declare const index_McpResourceReadParams: typeof McpResourceReadParams;
|
|
1481
|
-
declare const index_McpResourceReadResponse: typeof McpResourceReadResponse;
|
|
1482
|
-
declare const index_McpServerElicitationAction: typeof McpServerElicitationAction;
|
|
1483
|
-
declare const index_McpServerElicitationRequestParams: typeof McpServerElicitationRequestParams;
|
|
1484
|
-
declare const index_McpServerElicitationRequestResponse: typeof McpServerElicitationRequestResponse;
|
|
1485
|
-
declare const index_McpServerMigration: typeof McpServerMigration;
|
|
1486
|
-
declare const index_McpServerOauthLoginCompletedNotification: typeof McpServerOauthLoginCompletedNotification;
|
|
1487
|
-
declare const index_McpServerOauthLoginParams: typeof McpServerOauthLoginParams;
|
|
1488
|
-
declare const index_McpServerOauthLoginResponse: typeof McpServerOauthLoginResponse;
|
|
1489
|
-
declare const index_McpServerRefreshResponse: typeof McpServerRefreshResponse;
|
|
1490
|
-
declare const index_McpServerStartupState: typeof McpServerStartupState;
|
|
1491
|
-
declare const index_McpServerStatus: typeof McpServerStatus;
|
|
1492
|
-
declare const index_McpServerStatusDetail: typeof McpServerStatusDetail;
|
|
1493
|
-
declare const index_McpServerStatusUpdatedNotification: typeof McpServerStatusUpdatedNotification;
|
|
1494
|
-
declare const index_McpServerToolCallParams: typeof McpServerToolCallParams;
|
|
1495
|
-
declare const index_McpServerToolCallResponse: typeof McpServerToolCallResponse;
|
|
1496
|
-
declare const index_McpToolCallError: typeof McpToolCallError;
|
|
1497
|
-
declare const index_McpToolCallProgressNotification: typeof McpToolCallProgressNotification;
|
|
1498
|
-
declare const index_McpToolCallResult: typeof McpToolCallResult;
|
|
1499
|
-
declare const index_McpToolCallStatus: typeof McpToolCallStatus;
|
|
1500
|
-
declare const index_MemoryCitation: typeof MemoryCitation;
|
|
1501
|
-
declare const index_MemoryCitationEntry: typeof MemoryCitationEntry;
|
|
1502
|
-
declare const index_MergeStrategy: typeof MergeStrategy;
|
|
1503
|
-
declare const index_MigrationDetails: typeof MigrationDetails;
|
|
1504
|
-
type index_Model = Model;
|
|
1505
|
-
type index_ModelAvailabilityNux = ModelAvailabilityNux;
|
|
1506
|
-
declare const index_ModelListParams: typeof ModelListParams;
|
|
1507
|
-
type index_ModelListResponse = ModelListResponse;
|
|
1508
|
-
declare const index_ModelProviderCapabilitiesReadParams: typeof ModelProviderCapabilitiesReadParams;
|
|
1509
|
-
type index_ModelProviderCapabilitiesReadResponse = ModelProviderCapabilitiesReadResponse;
|
|
1510
|
-
declare const index_ModelRerouteReason: typeof ModelRerouteReason;
|
|
1511
|
-
declare const index_ModelReroutedNotification: typeof ModelReroutedNotification;
|
|
1512
|
-
type index_ModelServiceTier = ModelServiceTier;
|
|
1513
|
-
type index_ModelUpgradeInfo = ModelUpgradeInfo;
|
|
1514
|
-
declare const index_ModelVerification: typeof ModelVerification;
|
|
1515
|
-
declare const index_ModelVerificationNotification: typeof ModelVerificationNotification;
|
|
1516
|
-
declare const index_NetworkAccess: typeof NetworkAccess;
|
|
1517
|
-
declare const index_NetworkApprovalContext: typeof NetworkApprovalContext;
|
|
1518
|
-
declare const index_NetworkApprovalProtocol: typeof NetworkApprovalProtocol;
|
|
1519
|
-
type index_NetworkDomainPermission = NetworkDomainPermission;
|
|
1520
|
-
type index_NetworkRequirements = NetworkRequirements;
|
|
1521
|
-
type index_NetworkUnixSocketPermission = NetworkUnixSocketPermission;
|
|
1522
|
-
declare const index_NonSteerableTurnKind: typeof NonSteerableTurnKind;
|
|
1523
|
-
type index_OverriddenMetadata = OverriddenMetadata;
|
|
1524
|
-
declare const index_PatchApplyStatus: typeof PatchApplyStatus;
|
|
1525
|
-
declare const index_PatchChangeKind: typeof PatchChangeKind;
|
|
1526
|
-
declare const index_PermissionGrantScope: typeof PermissionGrantScope;
|
|
1527
|
-
type index_PermissionProfile = PermissionProfile;
|
|
1528
|
-
type index_PermissionProfileFileSystemPermissions = PermissionProfileFileSystemPermissions;
|
|
1529
|
-
type index_PermissionProfileModificationParams = PermissionProfileModificationParams;
|
|
1530
|
-
type index_PermissionProfileNetworkPermissions = PermissionProfileNetworkPermissions;
|
|
1531
|
-
type index_PermissionProfileSelectionParams = PermissionProfileSelectionParams;
|
|
1532
|
-
declare const index_PermissionsRequestApprovalParams: typeof PermissionsRequestApprovalParams;
|
|
1533
|
-
declare const index_PermissionsRequestApprovalResponse: typeof PermissionsRequestApprovalResponse;
|
|
1534
|
-
declare const index_PlanDeltaNotification: typeof PlanDeltaNotification;
|
|
1535
|
-
type index_PluginAuthPolicy = PluginAuthPolicy;
|
|
1536
|
-
type index_PluginAvailability = PluginAvailability;
|
|
1537
|
-
type index_PluginDetail = PluginDetail;
|
|
1538
|
-
declare const index_PluginInstallParams: typeof PluginInstallParams;
|
|
1539
|
-
type index_PluginInstallPolicy = PluginInstallPolicy;
|
|
1540
|
-
type index_PluginInstallResponse = PluginInstallResponse;
|
|
1541
|
-
type index_PluginInterface = PluginInterface;
|
|
1542
|
-
declare const index_PluginListMarketplaceKind: typeof PluginListMarketplaceKind;
|
|
1543
|
-
declare const index_PluginListParams: typeof PluginListParams;
|
|
1544
|
-
type index_PluginListResponse = PluginListResponse;
|
|
1545
|
-
type index_PluginMarketplaceEntry = PluginMarketplaceEntry;
|
|
1546
|
-
declare const index_PluginReadParams: typeof PluginReadParams;
|
|
1547
|
-
type index_PluginReadResponse = PluginReadResponse;
|
|
1548
|
-
type index_PluginShareContext = PluginShareContext;
|
|
1549
|
-
declare const index_PluginShareDeleteParams: typeof PluginShareDeleteParams;
|
|
1550
|
-
type index_PluginShareDeleteResponse = PluginShareDeleteResponse;
|
|
1551
|
-
declare const index_PluginShareDiscoverability: typeof PluginShareDiscoverability;
|
|
1552
|
-
type index_PluginShareListItem = PluginShareListItem;
|
|
1553
|
-
declare const index_PluginShareListParams: typeof PluginShareListParams;
|
|
1554
|
-
type index_PluginShareListResponse = PluginShareListResponse;
|
|
1555
|
-
type index_PluginSharePrincipal = PluginSharePrincipal;
|
|
1556
|
-
declare const index_PluginSharePrincipalType: typeof PluginSharePrincipalType;
|
|
1557
|
-
declare const index_PluginShareSaveParams: typeof PluginShareSaveParams;
|
|
1558
|
-
type index_PluginShareSaveResponse = PluginShareSaveResponse;
|
|
1559
|
-
declare const index_PluginShareTarget: typeof PluginShareTarget;
|
|
1560
|
-
declare const index_PluginShareUpdateTargetsParams: typeof PluginShareUpdateTargetsParams;
|
|
1561
|
-
type index_PluginShareUpdateTargetsResponse = PluginShareUpdateTargetsResponse;
|
|
1562
|
-
declare const index_PluginSkillReadParams: typeof PluginSkillReadParams;
|
|
1563
|
-
type index_PluginSkillReadResponse = PluginSkillReadResponse;
|
|
1564
|
-
type index_PluginSource = PluginSource;
|
|
1565
|
-
type index_PluginSummary = PluginSummary;
|
|
1566
|
-
declare const index_PluginUninstallParams: typeof PluginUninstallParams;
|
|
1567
|
-
type index_PluginUninstallResponse = PluginUninstallResponse;
|
|
1568
|
-
declare const index_PluginsMigration: typeof PluginsMigration;
|
|
1569
|
-
declare const index_ProcessExitedNotification: typeof ProcessExitedNotification;
|
|
1570
|
-
declare const index_ProcessOutputDeltaNotification: typeof ProcessOutputDeltaNotification;
|
|
1571
|
-
declare const index_ProcessOutputStream: typeof ProcessOutputStream;
|
|
1572
|
-
type index_ProcessTerminalSize = ProcessTerminalSize;
|
|
1573
|
-
type index_ProfileV2 = ProfileV2;
|
|
1574
|
-
declare const index_RateLimitReachedType: typeof RateLimitReachedType;
|
|
1575
|
-
declare const index_RateLimitSnapshot: typeof RateLimitSnapshot;
|
|
1576
|
-
declare const index_RateLimitWindow: typeof RateLimitWindow;
|
|
1577
|
-
declare const index_RawResponseItemCompletedNotification: typeof RawResponseItemCompletedNotification;
|
|
1578
|
-
type index_ReasoningEffortOption = ReasoningEffortOption;
|
|
1579
|
-
declare const index_ReasoningSummaryPartAddedNotification: typeof ReasoningSummaryPartAddedNotification;
|
|
1580
|
-
declare const index_ReasoningSummaryTextDeltaNotification: typeof ReasoningSummaryTextDeltaNotification;
|
|
1581
|
-
declare const index_ReasoningTextDeltaNotification: typeof ReasoningTextDeltaNotification;
|
|
1582
|
-
declare const index_RemoteControlClientConnectionAudience: typeof RemoteControlClientConnectionAudience;
|
|
1583
|
-
declare const index_RemoteControlClientEnrollmentAudience: typeof RemoteControlClientEnrollmentAudience;
|
|
1584
|
-
declare const index_RemoteControlConnectionStatus: typeof RemoteControlConnectionStatus;
|
|
1585
|
-
declare const index_RemoteControlStatusChangedNotification: typeof RemoteControlStatusChangedNotification;
|
|
1586
|
-
declare const index_RequestPermissionProfile: typeof RequestPermissionProfile;
|
|
1587
|
-
type index_ResidencyRequirement = ResidencyRequirement;
|
|
1588
|
-
declare const index_ReviewDelivery: typeof ReviewDelivery;
|
|
1589
|
-
declare const index_ReviewStartParams: typeof ReviewStartParams;
|
|
1590
|
-
type index_ReviewStartResponse = ReviewStartResponse;
|
|
1591
|
-
declare const index_ReviewTarget: typeof ReviewTarget;
|
|
1592
|
-
declare const index_SandboxMode: typeof SandboxMode;
|
|
1593
|
-
declare const index_SandboxPolicy: typeof SandboxPolicy;
|
|
1594
|
-
type index_SandboxWorkspaceWrite = SandboxWorkspaceWrite;
|
|
1595
|
-
declare const index_SendAddCreditsNudgeEmailParams: typeof SendAddCreditsNudgeEmailParams;
|
|
1596
|
-
type index_SendAddCreditsNudgeEmailResponse = SendAddCreditsNudgeEmailResponse;
|
|
1597
|
-
declare const index_ServerRequestResolvedNotification: typeof ServerRequestResolvedNotification;
|
|
1598
|
-
declare const index_SessionMigration: typeof SessionMigration;
|
|
1599
|
-
type index_SkillDependencies = SkillDependencies;
|
|
1600
|
-
type index_SkillErrorInfo = SkillErrorInfo;
|
|
1601
|
-
type index_SkillInterface = SkillInterface;
|
|
1602
|
-
type index_SkillMetadata = SkillMetadata;
|
|
1603
|
-
type index_SkillScope = SkillScope;
|
|
1604
|
-
type index_SkillSummary = SkillSummary;
|
|
1605
|
-
type index_SkillToolDependency = SkillToolDependency;
|
|
1606
|
-
declare const index_SkillsChangedNotification: typeof SkillsChangedNotification;
|
|
1607
|
-
declare const index_SkillsConfigWriteParams: typeof SkillsConfigWriteParams;
|
|
1608
|
-
type index_SkillsConfigWriteResponse = SkillsConfigWriteResponse;
|
|
1609
|
-
type index_SkillsListEntry = SkillsListEntry;
|
|
1610
|
-
declare const index_SkillsListExtraRootsForCwd: typeof SkillsListExtraRootsForCwd;
|
|
1611
|
-
declare const index_SkillsListParams: typeof SkillsListParams;
|
|
1612
|
-
type index_SkillsListResponse = SkillsListResponse;
|
|
1613
|
-
declare const index_SortDirection: typeof SortDirection;
|
|
1614
|
-
declare const index_SubagentMigration: typeof SubagentMigration;
|
|
1615
|
-
declare const index_TerminalInteractionNotification: typeof TerminalInteractionNotification;
|
|
1616
|
-
declare const index_TextElement: typeof TextElement;
|
|
1617
|
-
declare const index_TextPosition: typeof TextPosition;
|
|
1618
|
-
declare const index_TextRange: typeof TextRange;
|
|
1619
|
-
declare const index_Thread: typeof Thread;
|
|
1620
|
-
declare const index_ThreadActiveFlag: typeof ThreadActiveFlag;
|
|
1621
|
-
declare const index_ThreadApproveGuardianDeniedActionParams: typeof ThreadApproveGuardianDeniedActionParams;
|
|
1622
|
-
type index_ThreadApproveGuardianDeniedActionResponse = ThreadApproveGuardianDeniedActionResponse;
|
|
1623
|
-
declare const index_ThreadArchiveParams: typeof ThreadArchiveParams;
|
|
1624
|
-
declare const index_ThreadArchiveResponse: typeof ThreadArchiveResponse;
|
|
1625
|
-
declare const index_ThreadArchivedNotification: typeof ThreadArchivedNotification;
|
|
1626
|
-
declare const index_ThreadClosedNotification: typeof ThreadClosedNotification;
|
|
1627
|
-
declare const index_ThreadCompactStartParams: typeof ThreadCompactStartParams;
|
|
1628
|
-
declare const index_ThreadCompactStartResponse: typeof ThreadCompactStartResponse;
|
|
1629
|
-
declare const index_ThreadForkParams: typeof ThreadForkParams;
|
|
1630
|
-
type index_ThreadForkResponse = ThreadForkResponse;
|
|
1631
|
-
declare const index_ThreadGoal: typeof ThreadGoal;
|
|
1632
|
-
declare const index_ThreadGoalClearedNotification: typeof ThreadGoalClearedNotification;
|
|
1633
|
-
declare const index_ThreadGoalStatus: typeof ThreadGoalStatus;
|
|
1634
|
-
declare const index_ThreadGoalUpdatedNotification: typeof ThreadGoalUpdatedNotification;
|
|
1635
|
-
declare const index_ThreadInjectItemsParams: typeof ThreadInjectItemsParams;
|
|
1636
|
-
type index_ThreadInjectItemsResponse = ThreadInjectItemsResponse;
|
|
1637
|
-
declare const index_ThreadItem: typeof ThreadItem;
|
|
1638
|
-
declare const index_ThreadListParams: typeof ThreadListParams;
|
|
1639
|
-
declare const index_ThreadListResponse: typeof ThreadListResponse;
|
|
1640
|
-
declare const index_ThreadLoadedListParams: typeof ThreadLoadedListParams;
|
|
1641
|
-
type index_ThreadLoadedListResponse = ThreadLoadedListResponse;
|
|
1642
|
-
declare const index_ThreadMetadataGitInfoUpdateParams: typeof ThreadMetadataGitInfoUpdateParams;
|
|
1643
|
-
declare const index_ThreadMetadataUpdateParams: typeof ThreadMetadataUpdateParams;
|
|
1644
|
-
declare const index_ThreadMetadataUpdateResponse: typeof ThreadMetadataUpdateResponse;
|
|
1645
|
-
declare const index_ThreadNameUpdatedNotification: typeof ThreadNameUpdatedNotification;
|
|
1646
|
-
declare const index_ThreadReadParams: typeof ThreadReadParams;
|
|
1647
|
-
declare const index_ThreadReadResponse: typeof ThreadReadResponse;
|
|
1648
|
-
declare const index_ThreadRealtimeAudioChunk: typeof ThreadRealtimeAudioChunk;
|
|
1649
|
-
declare const index_ThreadRealtimeClosedNotification: typeof ThreadRealtimeClosedNotification;
|
|
1650
|
-
declare const index_ThreadRealtimeErrorNotification: typeof ThreadRealtimeErrorNotification;
|
|
1651
|
-
declare const index_ThreadRealtimeItemAddedNotification: typeof ThreadRealtimeItemAddedNotification;
|
|
1652
|
-
declare const index_ThreadRealtimeOutputAudioDeltaNotification: typeof ThreadRealtimeOutputAudioDeltaNotification;
|
|
1653
|
-
declare const index_ThreadRealtimeSdpNotification: typeof ThreadRealtimeSdpNotification;
|
|
1654
|
-
type index_ThreadRealtimeStartTransport = ThreadRealtimeStartTransport;
|
|
1655
|
-
declare const index_ThreadRealtimeStartedNotification: typeof ThreadRealtimeStartedNotification;
|
|
1656
|
-
declare const index_ThreadRealtimeTranscriptDeltaNotification: typeof ThreadRealtimeTranscriptDeltaNotification;
|
|
1657
|
-
declare const index_ThreadRealtimeTranscriptDoneNotification: typeof ThreadRealtimeTranscriptDoneNotification;
|
|
1658
|
-
declare const index_ThreadResumeParams: typeof ThreadResumeParams;
|
|
1659
|
-
declare const index_ThreadResumeResponse: typeof ThreadResumeResponse;
|
|
1660
|
-
declare const index_ThreadRollbackParams: typeof ThreadRollbackParams;
|
|
1661
|
-
type index_ThreadRollbackResponse = ThreadRollbackResponse;
|
|
1662
|
-
declare const index_ThreadSetNameParams: typeof ThreadSetNameParams;
|
|
1663
|
-
declare const index_ThreadSetNameResponse: typeof ThreadSetNameResponse;
|
|
1664
|
-
declare const index_ThreadShellCommandParams: typeof ThreadShellCommandParams;
|
|
1665
|
-
type index_ThreadShellCommandResponse = ThreadShellCommandResponse;
|
|
1666
|
-
declare const index_ThreadSortKey: typeof ThreadSortKey;
|
|
1667
|
-
declare const index_ThreadSource: typeof ThreadSource;
|
|
1668
|
-
declare const index_ThreadSourceKind: typeof ThreadSourceKind;
|
|
1669
|
-
declare const index_ThreadStartParams: typeof ThreadStartParams;
|
|
1670
|
-
declare const index_ThreadStartResponse: typeof ThreadStartResponse;
|
|
1671
|
-
declare const index_ThreadStartSource: typeof ThreadStartSource;
|
|
1672
|
-
declare const index_ThreadStartedNotification: typeof ThreadStartedNotification;
|
|
1673
|
-
declare const index_ThreadStatus: typeof ThreadStatus;
|
|
1674
|
-
declare const index_ThreadStatusChangedNotification: typeof ThreadStatusChangedNotification;
|
|
1675
|
-
declare const index_ThreadTokenUsage: typeof ThreadTokenUsage;
|
|
1676
|
-
declare const index_ThreadTokenUsageUpdatedNotification: typeof ThreadTokenUsageUpdatedNotification;
|
|
1677
|
-
declare const index_ThreadUnarchiveParams: typeof ThreadUnarchiveParams;
|
|
1678
|
-
declare const index_ThreadUnarchiveResponse: typeof ThreadUnarchiveResponse;
|
|
1679
|
-
declare const index_ThreadUnarchivedNotification: typeof ThreadUnarchivedNotification;
|
|
1680
|
-
declare const index_ThreadUnsubscribeParams: typeof ThreadUnsubscribeParams;
|
|
1681
|
-
type index_ThreadUnsubscribeResponse = ThreadUnsubscribeResponse;
|
|
1682
|
-
type index_ThreadUnsubscribeStatus = ThreadUnsubscribeStatus;
|
|
1683
|
-
declare const index_TokenUsageBreakdown: typeof TokenUsageBreakdown;
|
|
1684
|
-
declare const index_ToolRequestUserInputAnswer: typeof ToolRequestUserInputAnswer;
|
|
1685
|
-
declare const index_ToolRequestUserInputOption: typeof ToolRequestUserInputOption;
|
|
1686
|
-
declare const index_ToolRequestUserInputParams: typeof ToolRequestUserInputParams;
|
|
1687
|
-
declare const index_ToolRequestUserInputQuestion: typeof ToolRequestUserInputQuestion;
|
|
1688
|
-
declare const index_ToolRequestUserInputResponse: typeof ToolRequestUserInputResponse;
|
|
1689
|
-
type index_ToolsV2 = ToolsV2;
|
|
1690
|
-
declare const index_Turn: typeof Turn;
|
|
1691
|
-
declare const index_TurnCompletedNotification: typeof TurnCompletedNotification;
|
|
1692
|
-
declare const index_TurnDiffUpdatedNotification: typeof TurnDiffUpdatedNotification;
|
|
1693
|
-
type index_TurnEnvironmentParams = TurnEnvironmentParams;
|
|
1694
|
-
declare const index_TurnError: typeof TurnError;
|
|
1695
|
-
declare const index_TurnInterruptParams: typeof TurnInterruptParams;
|
|
1696
|
-
declare const index_TurnInterruptResponse: typeof TurnInterruptResponse;
|
|
1697
|
-
declare const index_TurnItemsView: typeof TurnItemsView;
|
|
1698
|
-
declare const index_TurnPlanStep: typeof TurnPlanStep;
|
|
1699
|
-
declare const index_TurnPlanStepStatus: typeof TurnPlanStepStatus;
|
|
1700
|
-
declare const index_TurnPlanUpdatedNotification: typeof TurnPlanUpdatedNotification;
|
|
1701
|
-
declare const index_TurnStartParams: typeof TurnStartParams;
|
|
1702
|
-
declare const index_TurnStartResponse: typeof TurnStartResponse;
|
|
1703
|
-
declare const index_TurnStartedNotification: typeof TurnStartedNotification;
|
|
1704
|
-
declare const index_TurnStatus: typeof TurnStatus;
|
|
1705
|
-
declare const index_TurnSteerParams: typeof TurnSteerParams;
|
|
1706
|
-
declare const index_TurnSteerResponse: typeof TurnSteerResponse;
|
|
1707
|
-
declare const index_UserInput: typeof UserInput;
|
|
1708
|
-
declare const index_WarningNotification: typeof WarningNotification;
|
|
1709
|
-
declare const index_WebSearchAction: typeof WebSearchAction;
|
|
1710
|
-
type index_WindowsSandboxReadiness = WindowsSandboxReadiness;
|
|
1711
|
-
type index_WindowsSandboxReadinessResponse = WindowsSandboxReadinessResponse;
|
|
1712
|
-
declare const index_WindowsSandboxSetupCompletedNotification: typeof WindowsSandboxSetupCompletedNotification;
|
|
1713
|
-
declare const index_WindowsSandboxSetupMode: typeof WindowsSandboxSetupMode;
|
|
1714
|
-
declare const index_WindowsSandboxSetupStartParams: typeof WindowsSandboxSetupStartParams;
|
|
1715
|
-
type index_WindowsSandboxSetupStartResponse = WindowsSandboxSetupStartResponse;
|
|
1716
|
-
declare const index_WindowsWorldWritableWarningNotification: typeof WindowsWorldWritableWarningNotification;
|
|
1717
|
-
type index_WriteStatus = WriteStatus;
|
|
1718
|
-
declare namespace index {
|
|
1719
|
-
export { type index_Account as Account, index_AccountLoginCompletedNotification as AccountLoginCompletedNotification, index_AccountRateLimitsUpdatedNotification as AccountRateLimitsUpdatedNotification, index_AccountUpdatedNotification as AccountUpdatedNotification, type index_ActivePermissionProfile as ActivePermissionProfile, type index_ActivePermissionProfileModification as ActivePermissionProfileModification, index_AddCreditsNudgeCreditType as AddCreditsNudgeCreditType, type index_AddCreditsNudgeEmailStatus as AddCreditsNudgeEmailStatus, index_AdditionalFileSystemPermissions as AdditionalFileSystemPermissions, index_AdditionalNetworkPermissions as AdditionalNetworkPermissions, type index_AdditionalPermissionProfile as AdditionalPermissionProfile, index_AgentMessageDeltaNotification as AgentMessageDeltaNotification, type index_AnalyticsConfig as AnalyticsConfig, index_AppBranding as AppBranding, index_AppInfo as AppInfo, index_AppListUpdatedNotification as AppListUpdatedNotification, index_AppMetadata as AppMetadata, index_AppReview as AppReview, index_AppScreenshot as AppScreenshot, type index_AppSummary as AppSummary, type index_AppToolApproval as AppToolApproval, type index_AppToolsConfig as AppToolsConfig, index_ApprovalsReviewer as ApprovalsReviewer, type index_AppsConfig as AppsConfig, type index_AppsDefaultConfig as AppsDefaultConfig, index_AppsListParams as AppsListParams, type index_AppsListResponse as AppsListResponse, index_AskForApproval as AskForApproval, index_AutoReviewDecisionSource as AutoReviewDecisionSource, index_ByteRange as ByteRange, index_CancelLoginAccountParams as CancelLoginAccountParams, type index_CancelLoginAccountResponse as CancelLoginAccountResponse, type index_CancelLoginAccountStatus as CancelLoginAccountStatus, index_ChatgptAuthTokensRefreshParams as ChatgptAuthTokensRefreshParams, index_ChatgptAuthTokensRefreshReason as ChatgptAuthTokensRefreshReason, type index_ChatgptAuthTokensRefreshResponse as ChatgptAuthTokensRefreshResponse, index_CodexErrorInfo as CodexErrorInfo, index_CollabAgentState as CollabAgentState, index_CollabAgentStatus as CollabAgentStatus, index_CollabAgentTool as CollabAgentTool, index_CollabAgentToolCallStatus as CollabAgentToolCallStatus, index_CollaborationModeListParams as CollaborationModeListParams, index_CollaborationModeListResponse as CollaborationModeListResponse, index_CollaborationModeMask as CollaborationModeMask, index_CommandAction as CommandAction, index_CommandExecOutputDeltaNotification as CommandExecOutputDeltaNotification, index_CommandExecOutputStream as CommandExecOutputStream, index_CommandExecParams as CommandExecParams, index_CommandExecResizeParams as CommandExecResizeParams, type index_CommandExecResizeResponse as CommandExecResizeResponse, type index_CommandExecResponse as CommandExecResponse, index_CommandExecTerminalSize as CommandExecTerminalSize, index_CommandExecTerminateParams as CommandExecTerminateParams, type index_CommandExecTerminateResponse as CommandExecTerminateResponse, index_CommandExecWriteParams as CommandExecWriteParams, type index_CommandExecWriteResponse as CommandExecWriteResponse, index_CommandExecutionApprovalDecision as CommandExecutionApprovalDecision, index_CommandExecutionOutputDeltaNotification as CommandExecutionOutputDeltaNotification, index_CommandExecutionRequestApprovalParams as CommandExecutionRequestApprovalParams, index_CommandExecutionRequestApprovalResponse as CommandExecutionRequestApprovalResponse, index_CommandExecutionSource as CommandExecutionSource, index_CommandExecutionStatus as CommandExecutionStatus, index_CommandMigration as CommandMigration, type index_Config as Config, index_ConfigBatchWriteParams as ConfigBatchWriteParams, index_ConfigEdit as ConfigEdit, type index_ConfigLayer as ConfigLayer, type index_ConfigLayerMetadata as ConfigLayerMetadata, type index_ConfigLayerSource as ConfigLayerSource, index_ConfigReadParams as ConfigReadParams, type index_ConfigReadResponse as ConfigReadResponse, type index_ConfigRequirements as ConfigRequirements, type index_ConfigRequirementsReadResponse as ConfigRequirementsReadResponse, index_ConfigValueWriteParams as ConfigValueWriteParams, index_ConfigWarningNotification as ConfigWarningNotification, type index_ConfigWriteResponse as ConfigWriteResponse, type index_ConfiguredHookHandler as ConfiguredHookHandler, type index_ConfiguredHookMatcherGroup as ConfiguredHookMatcherGroup, index_ContextCompactedNotification as ContextCompactedNotification, index_CreditsSnapshot as CreditsSnapshot, index_DeprecationNoticeNotification as DeprecationNoticeNotification, type index_DeviceKeyAlgorithm as DeviceKeyAlgorithm, index_DeviceKeyCreateParams as DeviceKeyCreateParams, type index_DeviceKeyCreateResponse as DeviceKeyCreateResponse, type index_DeviceKeyProtectionClass as DeviceKeyProtectionClass, index_DeviceKeyProtectionPolicy as DeviceKeyProtectionPolicy, index_DeviceKeyPublicParams as DeviceKeyPublicParams, type index_DeviceKeyPublicResponse as DeviceKeyPublicResponse, index_DeviceKeySignParams as DeviceKeySignParams, index_DeviceKeySignPayload as DeviceKeySignPayload, type index_DeviceKeySignResponse as DeviceKeySignResponse, index_DynamicToolCallOutputContentItem as DynamicToolCallOutputContentItem, index_DynamicToolCallParams as DynamicToolCallParams, index_DynamicToolCallResponse as DynamicToolCallResponse, index_DynamicToolCallStatus as DynamicToolCallStatus, index_DynamicToolSpec as DynamicToolSpec, index_ErrorNotification as ErrorNotification, ExecPolicyAmendment$1 as ExecPolicyAmendment, type index_ExperimentalFeature as ExperimentalFeature, index_ExperimentalFeatureEnablementSetParams as ExperimentalFeatureEnablementSetParams, type index_ExperimentalFeatureEnablementSetResponse as ExperimentalFeatureEnablementSetResponse, index_ExperimentalFeatureListParams as ExperimentalFeatureListParams, type index_ExperimentalFeatureListResponse as ExperimentalFeatureListResponse, type index_ExperimentalFeatureStage as ExperimentalFeatureStage, index_ExternalAgentConfigDetectParams as ExternalAgentConfigDetectParams, type index_ExternalAgentConfigDetectResponse as ExternalAgentConfigDetectResponse, index_ExternalAgentConfigImportCompletedNotification as ExternalAgentConfigImportCompletedNotification, index_ExternalAgentConfigImportParams as ExternalAgentConfigImportParams, type index_ExternalAgentConfigImportResponse as ExternalAgentConfigImportResponse, index_ExternalAgentConfigMigrationItem as ExternalAgentConfigMigrationItem, index_ExternalAgentConfigMigrationItemType as ExternalAgentConfigMigrationItemType, index_FeedbackUploadParams as FeedbackUploadParams, type index_FeedbackUploadResponse as FeedbackUploadResponse, index_FileChangeApprovalDecision as FileChangeApprovalDecision, index_FileChangeOutputDeltaNotification as FileChangeOutputDeltaNotification, index_FileChangePatchUpdatedNotification as FileChangePatchUpdatedNotification, index_FileChangeRequestApprovalParams as FileChangeRequestApprovalParams, index_FileChangeRequestApprovalResponse as FileChangeRequestApprovalResponse, index_FileSystemAccessMode as FileSystemAccessMode, index_FileSystemPath as FileSystemPath, index_FileSystemSandboxEntry as FileSystemSandboxEntry, index_FileSystemSpecialPath as FileSystemSpecialPath, index_FileUpdateChange as FileUpdateChange, index_FsChangedNotification as FsChangedNotification, index_FsCopyParams as FsCopyParams, type index_FsCopyResponse as FsCopyResponse, index_FsCreateDirectoryParams as FsCreateDirectoryParams, type index_FsCreateDirectoryResponse as FsCreateDirectoryResponse, index_FsGetMetadataParams as FsGetMetadataParams, type index_FsGetMetadataResponse as FsGetMetadataResponse, type index_FsReadDirectoryEntry as FsReadDirectoryEntry, index_FsReadDirectoryParams as FsReadDirectoryParams, type index_FsReadDirectoryResponse as FsReadDirectoryResponse, index_FsReadFileParams as FsReadFileParams, type index_FsReadFileResponse as FsReadFileResponse, index_FsRemoveParams as FsRemoveParams, type index_FsRemoveResponse as FsRemoveResponse, index_FsUnwatchParams as FsUnwatchParams, type index_FsUnwatchResponse as FsUnwatchResponse, index_FsWatchParams as FsWatchParams, type index_FsWatchResponse as FsWatchResponse, index_FsWriteFileParams as FsWriteFileParams, type index_FsWriteFileResponse as FsWriteFileResponse, index_GetAccountParams as GetAccountParams, type index_GetAccountRateLimitsResponse as GetAccountRateLimitsResponse, type index_GetAccountResponse as GetAccountResponse, index_GitInfo as GitInfo, index_GrantedPermissionProfile as GrantedPermissionProfile, index_GuardianApprovalReview as GuardianApprovalReview, index_GuardianApprovalReviewAction as GuardianApprovalReviewAction, index_GuardianApprovalReviewStatus as GuardianApprovalReviewStatus, index_GuardianCommandSource as GuardianCommandSource, index_GuardianRiskLevel as GuardianRiskLevel, index_GuardianUserAuthorization as GuardianUserAuthorization, index_GuardianWarningNotification as GuardianWarningNotification, index_HookCompletedNotification as HookCompletedNotification, type index_HookErrorInfo as HookErrorInfo, index_HookEventName as HookEventName, index_HookExecutionMode as HookExecutionMode, index_HookHandlerType as HookHandlerType, type index_HookMetadata as HookMetadata, index_HookMigration as HookMigration, index_HookOutputEntry as HookOutputEntry, index_HookOutputEntryKind as HookOutputEntryKind, index_HookPromptFragment as HookPromptFragment, index_HookRunStatus as HookRunStatus, index_HookRunSummary as HookRunSummary, index_HookScope as HookScope, index_HookSource as HookSource, index_HookStartedNotification as HookStartedNotification, type index_HookTrustStatus as HookTrustStatus, type index_HooksListEntry as HooksListEntry, index_HooksListParams as HooksListParams, type index_HooksListResponse as HooksListResponse, index_ItemCompletedNotification as ItemCompletedNotification, index_ItemGuardianApprovalReviewCompletedNotification as ItemGuardianApprovalReviewCompletedNotification, index_ItemGuardianApprovalReviewStartedNotification as ItemGuardianApprovalReviewStartedNotification, index_ItemStartedNotification as ItemStartedNotification, index_ListMcpServerStatusParams as ListMcpServerStatusParams, index_ListMcpServerStatusResponse as ListMcpServerStatusResponse, index_LoginAccountParams as LoginAccountParams, type index_LoginAccountResponse as LoginAccountResponse, type index_LogoutAccountResponse as LogoutAccountResponse, type index_ManagedHooksRequirements as ManagedHooksRequirements, index_MarketplaceAddParams as MarketplaceAddParams, type index_MarketplaceAddResponse as MarketplaceAddResponse, type index_MarketplaceInterface as MarketplaceInterface, type index_MarketplaceLoadErrorInfo as MarketplaceLoadErrorInfo, index_MarketplaceRemoveParams as MarketplaceRemoveParams, type index_MarketplaceRemoveResponse as MarketplaceRemoveResponse, type index_MarketplaceUpgradeErrorInfo as MarketplaceUpgradeErrorInfo, index_MarketplaceUpgradeParams as MarketplaceUpgradeParams, type index_MarketplaceUpgradeResponse as MarketplaceUpgradeResponse, index_McpAuthStatus as McpAuthStatus, index_McpElicitationArrayType as McpElicitationArrayType, index_McpElicitationBooleanSchema as McpElicitationBooleanSchema, index_McpElicitationBooleanType as McpElicitationBooleanType, index_McpElicitationConstOption as McpElicitationConstOption, index_McpElicitationEnumSchema as McpElicitationEnumSchema, index_McpElicitationLegacyTitledEnumSchema as McpElicitationLegacyTitledEnumSchema, index_McpElicitationMultiSelectEnumSchema as McpElicitationMultiSelectEnumSchema, index_McpElicitationNumberSchema as McpElicitationNumberSchema, index_McpElicitationNumberType as McpElicitationNumberType, index_McpElicitationObjectType as McpElicitationObjectType, index_McpElicitationPrimitiveSchema as McpElicitationPrimitiveSchema, index_McpElicitationSchema as McpElicitationSchema, index_McpElicitationSingleSelectEnumSchema as McpElicitationSingleSelectEnumSchema, index_McpElicitationStringFormat as McpElicitationStringFormat, index_McpElicitationStringSchema as McpElicitationStringSchema, index_McpElicitationStringType as McpElicitationStringType, index_McpElicitationTitledEnumItems as McpElicitationTitledEnumItems, index_McpElicitationTitledMultiSelectEnumSchema as McpElicitationTitledMultiSelectEnumSchema, index_McpElicitationTitledSingleSelectEnumSchema as McpElicitationTitledSingleSelectEnumSchema, index_McpElicitationUntitledEnumItems as McpElicitationUntitledEnumItems, index_McpElicitationUntitledMultiSelectEnumSchema as McpElicitationUntitledMultiSelectEnumSchema, index_McpElicitationUntitledSingleSelectEnumSchema as McpElicitationUntitledSingleSelectEnumSchema, index_McpResourceReadParams as McpResourceReadParams, index_McpResourceReadResponse as McpResourceReadResponse, index_McpServerElicitationAction as McpServerElicitationAction, index_McpServerElicitationRequestParams as McpServerElicitationRequestParams, index_McpServerElicitationRequestResponse as McpServerElicitationRequestResponse, index_McpServerMigration as McpServerMigration, index_McpServerOauthLoginCompletedNotification as McpServerOauthLoginCompletedNotification, index_McpServerOauthLoginParams as McpServerOauthLoginParams, index_McpServerOauthLoginResponse as McpServerOauthLoginResponse, index_McpServerRefreshResponse as McpServerRefreshResponse, index_McpServerStartupState as McpServerStartupState, index_McpServerStatus as McpServerStatus, index_McpServerStatusDetail as McpServerStatusDetail, index_McpServerStatusUpdatedNotification as McpServerStatusUpdatedNotification, index_McpServerToolCallParams as McpServerToolCallParams, index_McpServerToolCallResponse as McpServerToolCallResponse, index_McpToolCallError as McpToolCallError, index_McpToolCallProgressNotification as McpToolCallProgressNotification, index_McpToolCallResult as McpToolCallResult, index_McpToolCallStatus as McpToolCallStatus, index_MemoryCitation as MemoryCitation, index_MemoryCitationEntry as MemoryCitationEntry, index_MergeStrategy as MergeStrategy, index_MigrationDetails as MigrationDetails, type index_Model as Model, type index_ModelAvailabilityNux as ModelAvailabilityNux, index_ModelListParams as ModelListParams, type index_ModelListResponse as ModelListResponse, index_ModelProviderCapabilitiesReadParams as ModelProviderCapabilitiesReadParams, type index_ModelProviderCapabilitiesReadResponse as ModelProviderCapabilitiesReadResponse, index_ModelRerouteReason as ModelRerouteReason, index_ModelReroutedNotification as ModelReroutedNotification, type index_ModelServiceTier as ModelServiceTier, type index_ModelUpgradeInfo as ModelUpgradeInfo, index_ModelVerification as ModelVerification, index_ModelVerificationNotification as ModelVerificationNotification, index_NetworkAccess as NetworkAccess, index_NetworkApprovalContext as NetworkApprovalContext, index_NetworkApprovalProtocol as NetworkApprovalProtocol, type index_NetworkDomainPermission as NetworkDomainPermission, NetworkPolicyAmendment$1 as NetworkPolicyAmendment, NetworkPolicyRuleAction$1 as NetworkPolicyRuleAction, type index_NetworkRequirements as NetworkRequirements, type index_NetworkUnixSocketPermission as NetworkUnixSocketPermission, index_NonSteerableTurnKind as NonSteerableTurnKind, type index_OverriddenMetadata as OverriddenMetadata, index_PatchApplyStatus as PatchApplyStatus, index_PatchChangeKind as PatchChangeKind, index_PermissionGrantScope as PermissionGrantScope, type index_PermissionProfile as PermissionProfile, type index_PermissionProfileFileSystemPermissions as PermissionProfileFileSystemPermissions, type index_PermissionProfileModificationParams as PermissionProfileModificationParams, type index_PermissionProfileNetworkPermissions as PermissionProfileNetworkPermissions, type index_PermissionProfileSelectionParams as PermissionProfileSelectionParams, index_PermissionsRequestApprovalParams as PermissionsRequestApprovalParams, index_PermissionsRequestApprovalResponse as PermissionsRequestApprovalResponse, index_PlanDeltaNotification as PlanDeltaNotification, type index_PluginAuthPolicy as PluginAuthPolicy, type index_PluginAvailability as PluginAvailability, type index_PluginDetail as PluginDetail, index_PluginInstallParams as PluginInstallParams, type index_PluginInstallPolicy as PluginInstallPolicy, type index_PluginInstallResponse as PluginInstallResponse, type index_PluginInterface as PluginInterface, index_PluginListMarketplaceKind as PluginListMarketplaceKind, index_PluginListParams as PluginListParams, type index_PluginListResponse as PluginListResponse, type index_PluginMarketplaceEntry as PluginMarketplaceEntry, index_PluginReadParams as PluginReadParams, type index_PluginReadResponse as PluginReadResponse, type index_PluginShareContext as PluginShareContext, index_PluginShareDeleteParams as PluginShareDeleteParams, type index_PluginShareDeleteResponse as PluginShareDeleteResponse, index_PluginShareDiscoverability as PluginShareDiscoverability, type index_PluginShareListItem as PluginShareListItem, index_PluginShareListParams as PluginShareListParams, type index_PluginShareListResponse as PluginShareListResponse, type index_PluginSharePrincipal as PluginSharePrincipal, index_PluginSharePrincipalType as PluginSharePrincipalType, index_PluginShareSaveParams as PluginShareSaveParams, type index_PluginShareSaveResponse as PluginShareSaveResponse, index_PluginShareTarget as PluginShareTarget, index_PluginShareUpdateTargetsParams as PluginShareUpdateTargetsParams, type index_PluginShareUpdateTargetsResponse as PluginShareUpdateTargetsResponse, index_PluginSkillReadParams as PluginSkillReadParams, type index_PluginSkillReadResponse as PluginSkillReadResponse, type index_PluginSource as PluginSource, type index_PluginSummary as PluginSummary, index_PluginUninstallParams as PluginUninstallParams, type index_PluginUninstallResponse as PluginUninstallResponse, index_PluginsMigration as PluginsMigration, index_ProcessExitedNotification as ProcessExitedNotification, index_ProcessOutputDeltaNotification as ProcessOutputDeltaNotification, index_ProcessOutputStream as ProcessOutputStream, type index_ProcessTerminalSize as ProcessTerminalSize, type index_ProfileV2 as ProfileV2, index_RateLimitReachedType as RateLimitReachedType, index_RateLimitSnapshot as RateLimitSnapshot, index_RateLimitWindow as RateLimitWindow, index_RawResponseItemCompletedNotification as RawResponseItemCompletedNotification, type index_ReasoningEffortOption as ReasoningEffortOption, index_ReasoningSummaryPartAddedNotification as ReasoningSummaryPartAddedNotification, index_ReasoningSummaryTextDeltaNotification as ReasoningSummaryTextDeltaNotification, index_ReasoningTextDeltaNotification as ReasoningTextDeltaNotification, index_RemoteControlClientConnectionAudience as RemoteControlClientConnectionAudience, index_RemoteControlClientEnrollmentAudience as RemoteControlClientEnrollmentAudience, index_RemoteControlConnectionStatus as RemoteControlConnectionStatus, index_RemoteControlStatusChangedNotification as RemoteControlStatusChangedNotification, index_RequestPermissionProfile as RequestPermissionProfile, type index_ResidencyRequirement as ResidencyRequirement, index_ReviewDelivery as ReviewDelivery, index_ReviewStartParams as ReviewStartParams, type index_ReviewStartResponse as ReviewStartResponse, index_ReviewTarget as ReviewTarget, index_SandboxMode as SandboxMode, index_SandboxPolicy as SandboxPolicy, type index_SandboxWorkspaceWrite as SandboxWorkspaceWrite, index_SendAddCreditsNudgeEmailParams as SendAddCreditsNudgeEmailParams, type index_SendAddCreditsNudgeEmailResponse as SendAddCreditsNudgeEmailResponse, index_ServerRequestResolvedNotification as ServerRequestResolvedNotification, index_SessionMigration as SessionMigration, SessionSource$1 as SessionSource, type index_SkillDependencies as SkillDependencies, type index_SkillErrorInfo as SkillErrorInfo, type index_SkillInterface as SkillInterface, type index_SkillMetadata as SkillMetadata, type index_SkillScope as SkillScope, type index_SkillSummary as SkillSummary, type index_SkillToolDependency as SkillToolDependency, index_SkillsChangedNotification as SkillsChangedNotification, index_SkillsConfigWriteParams as SkillsConfigWriteParams, type index_SkillsConfigWriteResponse as SkillsConfigWriteResponse, type index_SkillsListEntry as SkillsListEntry, index_SkillsListExtraRootsForCwd as SkillsListExtraRootsForCwd, index_SkillsListParams as SkillsListParams, type index_SkillsListResponse as SkillsListResponse, index_SortDirection as SortDirection, index_SubagentMigration as SubagentMigration, index_TerminalInteractionNotification as TerminalInteractionNotification, index_TextElement as TextElement, index_TextPosition as TextPosition, index_TextRange as TextRange, index_Thread as Thread, index_ThreadActiveFlag as ThreadActiveFlag, index_ThreadApproveGuardianDeniedActionParams as ThreadApproveGuardianDeniedActionParams, type index_ThreadApproveGuardianDeniedActionResponse as ThreadApproveGuardianDeniedActionResponse, index_ThreadArchiveParams as ThreadArchiveParams, index_ThreadArchiveResponse as ThreadArchiveResponse, index_ThreadArchivedNotification as ThreadArchivedNotification, index_ThreadClosedNotification as ThreadClosedNotification, index_ThreadCompactStartParams as ThreadCompactStartParams, index_ThreadCompactStartResponse as ThreadCompactStartResponse, index_ThreadForkParams as ThreadForkParams, type index_ThreadForkResponse as ThreadForkResponse, index_ThreadGoal as ThreadGoal, index_ThreadGoalClearedNotification as ThreadGoalClearedNotification, index_ThreadGoalStatus as ThreadGoalStatus, index_ThreadGoalUpdatedNotification as ThreadGoalUpdatedNotification, index_ThreadInjectItemsParams as ThreadInjectItemsParams, type index_ThreadInjectItemsResponse as ThreadInjectItemsResponse, index_ThreadItem as ThreadItem, index_ThreadListParams as ThreadListParams, index_ThreadListResponse as ThreadListResponse, index_ThreadLoadedListParams as ThreadLoadedListParams, type index_ThreadLoadedListResponse as ThreadLoadedListResponse, index_ThreadMetadataGitInfoUpdateParams as ThreadMetadataGitInfoUpdateParams, index_ThreadMetadataUpdateParams as ThreadMetadataUpdateParams, index_ThreadMetadataUpdateResponse as ThreadMetadataUpdateResponse, index_ThreadNameUpdatedNotification as ThreadNameUpdatedNotification, index_ThreadReadParams as ThreadReadParams, index_ThreadReadResponse as ThreadReadResponse, index_ThreadRealtimeAudioChunk as ThreadRealtimeAudioChunk, index_ThreadRealtimeClosedNotification as ThreadRealtimeClosedNotification, index_ThreadRealtimeErrorNotification as ThreadRealtimeErrorNotification, index_ThreadRealtimeItemAddedNotification as ThreadRealtimeItemAddedNotification, index_ThreadRealtimeOutputAudioDeltaNotification as ThreadRealtimeOutputAudioDeltaNotification, index_ThreadRealtimeSdpNotification as ThreadRealtimeSdpNotification, type index_ThreadRealtimeStartTransport as ThreadRealtimeStartTransport, index_ThreadRealtimeStartedNotification as ThreadRealtimeStartedNotification, index_ThreadRealtimeTranscriptDeltaNotification as ThreadRealtimeTranscriptDeltaNotification, index_ThreadRealtimeTranscriptDoneNotification as ThreadRealtimeTranscriptDoneNotification, index_ThreadResumeParams as ThreadResumeParams, index_ThreadResumeResponse as ThreadResumeResponse, index_ThreadRollbackParams as ThreadRollbackParams, type index_ThreadRollbackResponse as ThreadRollbackResponse, index_ThreadSetNameParams as ThreadSetNameParams, index_ThreadSetNameResponse as ThreadSetNameResponse, index_ThreadShellCommandParams as ThreadShellCommandParams, type index_ThreadShellCommandResponse as ThreadShellCommandResponse, index_ThreadSortKey as ThreadSortKey, index_ThreadSource as ThreadSource, index_ThreadSourceKind as ThreadSourceKind, index_ThreadStartParams as ThreadStartParams, index_ThreadStartResponse as ThreadStartResponse, index_ThreadStartSource as ThreadStartSource, index_ThreadStartedNotification as ThreadStartedNotification, index_ThreadStatus as ThreadStatus, index_ThreadStatusChangedNotification as ThreadStatusChangedNotification, index_ThreadTokenUsage as ThreadTokenUsage, index_ThreadTokenUsageUpdatedNotification as ThreadTokenUsageUpdatedNotification, index_ThreadUnarchiveParams as ThreadUnarchiveParams, index_ThreadUnarchiveResponse as ThreadUnarchiveResponse, index_ThreadUnarchivedNotification as ThreadUnarchivedNotification, index_ThreadUnsubscribeParams as ThreadUnsubscribeParams, type index_ThreadUnsubscribeResponse as ThreadUnsubscribeResponse, type index_ThreadUnsubscribeStatus as ThreadUnsubscribeStatus, index_TokenUsageBreakdown as TokenUsageBreakdown, index_ToolRequestUserInputAnswer as ToolRequestUserInputAnswer, index_ToolRequestUserInputOption as ToolRequestUserInputOption, index_ToolRequestUserInputParams as ToolRequestUserInputParams, index_ToolRequestUserInputQuestion as ToolRequestUserInputQuestion, index_ToolRequestUserInputResponse as ToolRequestUserInputResponse, type index_ToolsV2 as ToolsV2, index_Turn as Turn, index_TurnCompletedNotification as TurnCompletedNotification, index_TurnDiffUpdatedNotification as TurnDiffUpdatedNotification, type index_TurnEnvironmentParams as TurnEnvironmentParams, index_TurnError as TurnError, index_TurnInterruptParams as TurnInterruptParams, index_TurnInterruptResponse as TurnInterruptResponse, index_TurnItemsView as TurnItemsView, index_TurnPlanStep as TurnPlanStep, index_TurnPlanStepStatus as TurnPlanStepStatus, index_TurnPlanUpdatedNotification as TurnPlanUpdatedNotification, index_TurnStartParams as TurnStartParams, index_TurnStartResponse as TurnStartResponse, index_TurnStartedNotification as TurnStartedNotification, index_TurnStatus as TurnStatus, index_TurnSteerParams as TurnSteerParams, index_TurnSteerResponse as TurnSteerResponse, index_UserInput as UserInput, index_WarningNotification as WarningNotification, index_WebSearchAction as WebSearchAction, type index_WindowsSandboxReadiness as WindowsSandboxReadiness, type index_WindowsSandboxReadinessResponse as WindowsSandboxReadinessResponse, index_WindowsSandboxSetupCompletedNotification as WindowsSandboxSetupCompletedNotification, index_WindowsSandboxSetupMode as WindowsSandboxSetupMode, index_WindowsSandboxSetupStartParams as WindowsSandboxSetupStartParams, type index_WindowsSandboxSetupStartResponse as WindowsSandboxSetupStartResponse, index_WindowsWorldWritableWarningNotification as WindowsWorldWritableWarningNotification, type index_WriteStatus as WriteStatus };
|
|
1720
|
-
}
|
|
1721
|
-
|
|
1722
|
-
export { AbsolutePathBuf, type ApplyPatchApprovalResponse, AuthMode, type ConversationGitInfo, type ConversationSummary, type ExecCommandApprovalResponse, type ExecPolicyAmendment, type ForcedLoginMethod, type FuzzyFileSearchResponse, FuzzyFileSearchResult, type GetAuthStatusResponse, type GetConversationSummaryResponse, type GitDiffToRemoteResponse, type GitSha, type InputModality, type InternalSessionSource, type NetworkPolicyAmendment, type NetworkPolicyRuleAction, PlanType, type RealtimeOutputModality, type RealtimeVoice, type RealtimeVoicesList, ReasoningEffort, ReasoningSummary, type ReviewDecision, type SessionSource, SubAgentSource, ThreadId, type ThreadMemoryMode, type Verbosity, WebSearchMode, WebSearchToolConfig, index as v2 };
|