@jrkropp/codex-js 0.1.4 → 0.3.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 +17 -0
- package/README.md +104 -615
- 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/app_server_event_mapping.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 +99 -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/app-server.d.ts +60 -0
- package/dist/server/dynamic-tools.d.ts +40 -0
- package/dist/server/index.d.ts +7 -29
- package/dist/server/index.js +20961 -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 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/upstream/codex-rs/app-server-protocol/schema/typescript/v2/index.ts"],"names":[],"mappings":";AAAA,IAAA,UAAA,GAAA","file":"index.js","sourcesContent":["// GENERATED CODE! DO NOT MODIFY BY HAND!\n\nexport type { Account } from \"./Account\";\nexport type { AccountLoginCompletedNotification } from \"./AccountLoginCompletedNotification\";\nexport type { AccountRateLimitsUpdatedNotification } from \"./AccountRateLimitsUpdatedNotification\";\nexport type { AccountUpdatedNotification } from \"./AccountUpdatedNotification\";\nexport type { ActivePermissionProfile } from \"./ActivePermissionProfile\";\nexport type { ActivePermissionProfileModification } from \"./ActivePermissionProfileModification\";\nexport type { AddCreditsNudgeCreditType } from \"./AddCreditsNudgeCreditType\";\nexport type { AddCreditsNudgeEmailStatus } from \"./AddCreditsNudgeEmailStatus\";\nexport type { AdditionalFileSystemPermissions } from \"./AdditionalFileSystemPermissions\";\nexport type { AdditionalNetworkPermissions } from \"./AdditionalNetworkPermissions\";\nexport type { AdditionalPermissionProfile } from \"./AdditionalPermissionProfile\";\nexport type { AgentMessageDeltaNotification } from \"./AgentMessageDeltaNotification\";\nexport type { AnalyticsConfig } from \"./AnalyticsConfig\";\nexport type { AppBranding } from \"./AppBranding\";\nexport type { AppInfo } from \"./AppInfo\";\nexport type { AppListUpdatedNotification } from \"./AppListUpdatedNotification\";\nexport type { AppMetadata } from \"./AppMetadata\";\nexport type { AppReview } from \"./AppReview\";\nexport type { AppScreenshot } from \"./AppScreenshot\";\nexport type { AppSummary } from \"./AppSummary\";\nexport type { AppToolApproval } from \"./AppToolApproval\";\nexport type { AppToolsConfig } from \"./AppToolsConfig\";\nexport type { ApprovalsReviewer } from \"./ApprovalsReviewer\";\nexport type { AppsConfig } from \"./AppsConfig\";\nexport type { AppsDefaultConfig } from \"./AppsDefaultConfig\";\nexport type { AppsListParams } from \"./AppsListParams\";\nexport type { AppsListResponse } from \"./AppsListResponse\";\nexport type { AskForApproval } from \"./AskForApproval\";\nexport type { AutoReviewDecisionSource } from \"./AutoReviewDecisionSource\";\nexport type { ByteRange } from \"./ByteRange\";\nexport type { CancelLoginAccountParams } from \"./CancelLoginAccountParams\";\nexport type { CancelLoginAccountResponse } from \"./CancelLoginAccountResponse\";\nexport type { CancelLoginAccountStatus } from \"./CancelLoginAccountStatus\";\nexport type { ChatgptAuthTokensRefreshParams } from \"./ChatgptAuthTokensRefreshParams\";\nexport type { ChatgptAuthTokensRefreshReason } from \"./ChatgptAuthTokensRefreshReason\";\nexport type { ChatgptAuthTokensRefreshResponse } from \"./ChatgptAuthTokensRefreshResponse\";\nexport type { CodexErrorInfo } from \"./CodexErrorInfo\";\nexport type { CollabAgentState } from \"./CollabAgentState\";\nexport type { CollabAgentStatus } from \"./CollabAgentStatus\";\nexport type { CollabAgentTool } from \"./CollabAgentTool\";\nexport type { CollabAgentToolCallStatus } from \"./CollabAgentToolCallStatus\";\nexport type { CollaborationModeListParams } from \"./CollaborationModeListParams\";\nexport type { CollaborationModeListResponse } from \"./CollaborationModeListResponse\";\nexport type { CollaborationModeMask } from \"./CollaborationModeMask\";\nexport type { CommandAction } from \"./CommandAction\";\nexport type { CommandExecOutputDeltaNotification } from \"./CommandExecOutputDeltaNotification\";\nexport type { CommandExecOutputStream } from \"./CommandExecOutputStream\";\nexport type { CommandExecParams } from \"./CommandExecParams\";\nexport type { CommandExecResizeParams } from \"./CommandExecResizeParams\";\nexport type { CommandExecResizeResponse } from \"./CommandExecResizeResponse\";\nexport type { CommandExecResponse } from \"./CommandExecResponse\";\nexport type { CommandExecTerminalSize } from \"./CommandExecTerminalSize\";\nexport type { CommandExecTerminateParams } from \"./CommandExecTerminateParams\";\nexport type { CommandExecTerminateResponse } from \"./CommandExecTerminateResponse\";\nexport type { CommandExecWriteParams } from \"./CommandExecWriteParams\";\nexport type { CommandExecWriteResponse } from \"./CommandExecWriteResponse\";\nexport type { CommandExecutionApprovalDecision } from \"./CommandExecutionApprovalDecision\";\nexport type { CommandExecutionOutputDeltaNotification } from \"./CommandExecutionOutputDeltaNotification\";\nexport type { CommandExecutionRequestApprovalParams } from \"./CommandExecutionRequestApprovalParams\";\nexport type { CommandExecutionRequestApprovalResponse } from \"./CommandExecutionRequestApprovalResponse\";\nexport type { CommandExecutionSource } from \"./CommandExecutionSource\";\nexport type { CommandExecutionStatus } from \"./CommandExecutionStatus\";\nexport type { CommandMigration } from \"./CommandMigration\";\nexport type { Config } from \"./Config\";\nexport type { ConfigBatchWriteParams } from \"./ConfigBatchWriteParams\";\nexport type { ConfigEdit } from \"./ConfigEdit\";\nexport type { ConfigLayer } from \"./ConfigLayer\";\nexport type { ConfigLayerMetadata } from \"./ConfigLayerMetadata\";\nexport type { ConfigLayerSource } from \"./ConfigLayerSource\";\nexport type { ConfigReadParams } from \"./ConfigReadParams\";\nexport type { ConfigReadResponse } from \"./ConfigReadResponse\";\nexport type { ConfigRequirements } from \"./ConfigRequirements\";\nexport type { ConfigRequirementsReadResponse } from \"./ConfigRequirementsReadResponse\";\nexport type { ConfigValueWriteParams } from \"./ConfigValueWriteParams\";\nexport type { ConfigWarningNotification } from \"./ConfigWarningNotification\";\nexport type { ConfigWriteResponse } from \"./ConfigWriteResponse\";\nexport type { ConfiguredHookHandler } from \"./ConfiguredHookHandler\";\nexport type { ConfiguredHookMatcherGroup } from \"./ConfiguredHookMatcherGroup\";\nexport type { ContextCompactedNotification } from \"./ContextCompactedNotification\";\nexport type { CreditsSnapshot } from \"./CreditsSnapshot\";\nexport type { DeprecationNoticeNotification } from \"./DeprecationNoticeNotification\";\nexport type { DeviceKeyAlgorithm } from \"./DeviceKeyAlgorithm\";\nexport type { DeviceKeyCreateParams } from \"./DeviceKeyCreateParams\";\nexport type { DeviceKeyCreateResponse } from \"./DeviceKeyCreateResponse\";\nexport type { DeviceKeyProtectionClass } from \"./DeviceKeyProtectionClass\";\nexport type { DeviceKeyProtectionPolicy } from \"./DeviceKeyProtectionPolicy\";\nexport type { DeviceKeyPublicParams } from \"./DeviceKeyPublicParams\";\nexport type { DeviceKeyPublicResponse } from \"./DeviceKeyPublicResponse\";\nexport type { DeviceKeySignParams } from \"./DeviceKeySignParams\";\nexport type { DeviceKeySignPayload } from \"./DeviceKeySignPayload\";\nexport type { DeviceKeySignResponse } from \"./DeviceKeySignResponse\";\nexport type { DynamicToolCallOutputContentItem } from \"./DynamicToolCallOutputContentItem\";\nexport type { DynamicToolCallParams } from \"./DynamicToolCallParams\";\nexport type { DynamicToolCallResponse } from \"./DynamicToolCallResponse\";\nexport type { DynamicToolCallStatus } from \"./DynamicToolCallStatus\";\nexport type { DynamicToolSpec } from \"./DynamicToolSpec\";\nexport type { ErrorNotification } from \"./ErrorNotification\";\nexport type { ExecPolicyAmendment } from \"./ExecPolicyAmendment\";\nexport type { ExperimentalFeature } from \"./ExperimentalFeature\";\nexport type { ExperimentalFeatureEnablementSetParams } from \"./ExperimentalFeatureEnablementSetParams\";\nexport type { ExperimentalFeatureEnablementSetResponse } from \"./ExperimentalFeatureEnablementSetResponse\";\nexport type { ExperimentalFeatureListParams } from \"./ExperimentalFeatureListParams\";\nexport type { ExperimentalFeatureListResponse } from \"./ExperimentalFeatureListResponse\";\nexport type { ExperimentalFeatureStage } from \"./ExperimentalFeatureStage\";\nexport type { ExternalAgentConfigDetectParams } from \"./ExternalAgentConfigDetectParams\";\nexport type { ExternalAgentConfigDetectResponse } from \"./ExternalAgentConfigDetectResponse\";\nexport type { ExternalAgentConfigImportCompletedNotification } from \"./ExternalAgentConfigImportCompletedNotification\";\nexport type { ExternalAgentConfigImportParams } from \"./ExternalAgentConfigImportParams\";\nexport type { ExternalAgentConfigImportResponse } from \"./ExternalAgentConfigImportResponse\";\nexport type { ExternalAgentConfigMigrationItem } from \"./ExternalAgentConfigMigrationItem\";\nexport type { ExternalAgentConfigMigrationItemType } from \"./ExternalAgentConfigMigrationItemType\";\nexport type { FeedbackUploadParams } from \"./FeedbackUploadParams\";\nexport type { FeedbackUploadResponse } from \"./FeedbackUploadResponse\";\nexport type { FileChangeApprovalDecision } from \"./FileChangeApprovalDecision\";\nexport type { FileChangeOutputDeltaNotification } from \"./FileChangeOutputDeltaNotification\";\nexport type { FileChangePatchUpdatedNotification } from \"./FileChangePatchUpdatedNotification\";\nexport type { FileChangeRequestApprovalParams } from \"./FileChangeRequestApprovalParams\";\nexport type { FileChangeRequestApprovalResponse } from \"./FileChangeRequestApprovalResponse\";\nexport type { FileSystemAccessMode } from \"./FileSystemAccessMode\";\nexport type { FileSystemPath } from \"./FileSystemPath\";\nexport type { FileSystemSandboxEntry } from \"./FileSystemSandboxEntry\";\nexport type { FileSystemSpecialPath } from \"./FileSystemSpecialPath\";\nexport type { FileUpdateChange } from \"./FileUpdateChange\";\nexport type { FsChangedNotification } from \"./FsChangedNotification\";\nexport type { FsCopyParams } from \"./FsCopyParams\";\nexport type { FsCopyResponse } from \"./FsCopyResponse\";\nexport type { FsCreateDirectoryParams } from \"./FsCreateDirectoryParams\";\nexport type { FsCreateDirectoryResponse } from \"./FsCreateDirectoryResponse\";\nexport type { FsGetMetadataParams } from \"./FsGetMetadataParams\";\nexport type { FsGetMetadataResponse } from \"./FsGetMetadataResponse\";\nexport type { FsReadDirectoryEntry } from \"./FsReadDirectoryEntry\";\nexport type { FsReadDirectoryParams } from \"./FsReadDirectoryParams\";\nexport type { FsReadDirectoryResponse } from \"./FsReadDirectoryResponse\";\nexport type { FsReadFileParams } from \"./FsReadFileParams\";\nexport type { FsReadFileResponse } from \"./FsReadFileResponse\";\nexport type { FsRemoveParams } from \"./FsRemoveParams\";\nexport type { FsRemoveResponse } from \"./FsRemoveResponse\";\nexport type { FsUnwatchParams } from \"./FsUnwatchParams\";\nexport type { FsUnwatchResponse } from \"./FsUnwatchResponse\";\nexport type { FsWatchParams } from \"./FsWatchParams\";\nexport type { FsWatchResponse } from \"./FsWatchResponse\";\nexport type { FsWriteFileParams } from \"./FsWriteFileParams\";\nexport type { FsWriteFileResponse } from \"./FsWriteFileResponse\";\nexport type { GetAccountParams } from \"./GetAccountParams\";\nexport type { GetAccountRateLimitsResponse } from \"./GetAccountRateLimitsResponse\";\nexport type { GetAccountResponse } from \"./GetAccountResponse\";\nexport type { GitInfo } from \"./GitInfo\";\nexport type { GrantedPermissionProfile } from \"./GrantedPermissionProfile\";\nexport type { GuardianApprovalReview } from \"./GuardianApprovalReview\";\nexport type { GuardianApprovalReviewAction } from \"./GuardianApprovalReviewAction\";\nexport type { GuardianApprovalReviewStatus } from \"./GuardianApprovalReviewStatus\";\nexport type { GuardianCommandSource } from \"./GuardianCommandSource\";\nexport type { GuardianRiskLevel } from \"./GuardianRiskLevel\";\nexport type { GuardianUserAuthorization } from \"./GuardianUserAuthorization\";\nexport type { GuardianWarningNotification } from \"./GuardianWarningNotification\";\nexport type { HookCompletedNotification } from \"./HookCompletedNotification\";\nexport type { HookErrorInfo } from \"./HookErrorInfo\";\nexport type { HookEventName } from \"./HookEventName\";\nexport type { HookExecutionMode } from \"./HookExecutionMode\";\nexport type { HookHandlerType } from \"./HookHandlerType\";\nexport type { HookMetadata } from \"./HookMetadata\";\nexport type { HookMigration } from \"./HookMigration\";\nexport type { HookOutputEntry } from \"./HookOutputEntry\";\nexport type { HookOutputEntryKind } from \"./HookOutputEntryKind\";\nexport type { HookPromptFragment } from \"./HookPromptFragment\";\nexport type { HookRunStatus } from \"./HookRunStatus\";\nexport type { HookRunSummary } from \"./HookRunSummary\";\nexport type { HookScope } from \"./HookScope\";\nexport type { HookSource } from \"./HookSource\";\nexport type { HookStartedNotification } from \"./HookStartedNotification\";\nexport type { HookTrustStatus } from \"./HookTrustStatus\";\nexport type { HooksListEntry } from \"./HooksListEntry\";\nexport type { HooksListParams } from \"./HooksListParams\";\nexport type { HooksListResponse } from \"./HooksListResponse\";\nexport type { ItemCompletedNotification } from \"./ItemCompletedNotification\";\nexport type { ItemGuardianApprovalReviewCompletedNotification } from \"./ItemGuardianApprovalReviewCompletedNotification\";\nexport type { ItemGuardianApprovalReviewStartedNotification } from \"./ItemGuardianApprovalReviewStartedNotification\";\nexport type { ItemStartedNotification } from \"./ItemStartedNotification\";\nexport type { ListMcpServerStatusParams } from \"./ListMcpServerStatusParams\";\nexport type { ListMcpServerStatusResponse } from \"./ListMcpServerStatusResponse\";\nexport type { LoginAccountParams } from \"./LoginAccountParams\";\nexport type { LoginAccountResponse } from \"./LoginAccountResponse\";\nexport type { LogoutAccountResponse } from \"./LogoutAccountResponse\";\nexport type { ManagedHooksRequirements } from \"./ManagedHooksRequirements\";\nexport type { MarketplaceAddParams } from \"./MarketplaceAddParams\";\nexport type { MarketplaceAddResponse } from \"./MarketplaceAddResponse\";\nexport type { MarketplaceInterface } from \"./MarketplaceInterface\";\nexport type { MarketplaceLoadErrorInfo } from \"./MarketplaceLoadErrorInfo\";\nexport type { MarketplaceRemoveParams } from \"./MarketplaceRemoveParams\";\nexport type { MarketplaceRemoveResponse } from \"./MarketplaceRemoveResponse\";\nexport type { MarketplaceUpgradeErrorInfo } from \"./MarketplaceUpgradeErrorInfo\";\nexport type { MarketplaceUpgradeParams } from \"./MarketplaceUpgradeParams\";\nexport type { MarketplaceUpgradeResponse } from \"./MarketplaceUpgradeResponse\";\nexport type { McpAuthStatus } from \"./McpAuthStatus\";\nexport type { McpElicitationArrayType } from \"./McpElicitationArrayType\";\nexport type { McpElicitationBooleanSchema } from \"./McpElicitationBooleanSchema\";\nexport type { McpElicitationBooleanType } from \"./McpElicitationBooleanType\";\nexport type { McpElicitationConstOption } from \"./McpElicitationConstOption\";\nexport type { McpElicitationEnumSchema } from \"./McpElicitationEnumSchema\";\nexport type { McpElicitationLegacyTitledEnumSchema } from \"./McpElicitationLegacyTitledEnumSchema\";\nexport type { McpElicitationMultiSelectEnumSchema } from \"./McpElicitationMultiSelectEnumSchema\";\nexport type { McpElicitationNumberSchema } from \"./McpElicitationNumberSchema\";\nexport type { McpElicitationNumberType } from \"./McpElicitationNumberType\";\nexport type { McpElicitationObjectType } from \"./McpElicitationObjectType\";\nexport type { McpElicitationPrimitiveSchema } from \"./McpElicitationPrimitiveSchema\";\nexport type { McpElicitationSchema } from \"./McpElicitationSchema\";\nexport type { McpElicitationSingleSelectEnumSchema } from \"./McpElicitationSingleSelectEnumSchema\";\nexport type { McpElicitationStringFormat } from \"./McpElicitationStringFormat\";\nexport type { McpElicitationStringSchema } from \"./McpElicitationStringSchema\";\nexport type { McpElicitationStringType } from \"./McpElicitationStringType\";\nexport type { McpElicitationTitledEnumItems } from \"./McpElicitationTitledEnumItems\";\nexport type { McpElicitationTitledMultiSelectEnumSchema } from \"./McpElicitationTitledMultiSelectEnumSchema\";\nexport type { McpElicitationTitledSingleSelectEnumSchema } from \"./McpElicitationTitledSingleSelectEnumSchema\";\nexport type { McpElicitationUntitledEnumItems } from \"./McpElicitationUntitledEnumItems\";\nexport type { McpElicitationUntitledMultiSelectEnumSchema } from \"./McpElicitationUntitledMultiSelectEnumSchema\";\nexport type { McpElicitationUntitledSingleSelectEnumSchema } from \"./McpElicitationUntitledSingleSelectEnumSchema\";\nexport type { McpResourceReadParams } from \"./McpResourceReadParams\";\nexport type { McpResourceReadResponse } from \"./McpResourceReadResponse\";\nexport type { McpServerElicitationAction } from \"./McpServerElicitationAction\";\nexport type { McpServerElicitationRequestParams } from \"./McpServerElicitationRequestParams\";\nexport type { McpServerElicitationRequestResponse } from \"./McpServerElicitationRequestResponse\";\nexport type { McpServerMigration } from \"./McpServerMigration\";\nexport type { McpServerOauthLoginCompletedNotification } from \"./McpServerOauthLoginCompletedNotification\";\nexport type { McpServerOauthLoginParams } from \"./McpServerOauthLoginParams\";\nexport type { McpServerOauthLoginResponse } from \"./McpServerOauthLoginResponse\";\nexport type { McpServerRefreshResponse } from \"./McpServerRefreshResponse\";\nexport type { McpServerStartupState } from \"./McpServerStartupState\";\nexport type { McpServerStatus } from \"./McpServerStatus\";\nexport type { McpServerStatusDetail } from \"./McpServerStatusDetail\";\nexport type { McpServerStatusUpdatedNotification } from \"./McpServerStatusUpdatedNotification\";\nexport type { McpServerToolCallParams } from \"./McpServerToolCallParams\";\nexport type { McpServerToolCallResponse } from \"./McpServerToolCallResponse\";\nexport type { McpToolCallError } from \"./McpToolCallError\";\nexport type { McpToolCallProgressNotification } from \"./McpToolCallProgressNotification\";\nexport type { McpToolCallResult } from \"./McpToolCallResult\";\nexport type { McpToolCallStatus } from \"./McpToolCallStatus\";\nexport type { MemoryCitation } from \"./MemoryCitation\";\nexport type { MemoryCitationEntry } from \"./MemoryCitationEntry\";\nexport type { MergeStrategy } from \"./MergeStrategy\";\nexport type { MigrationDetails } from \"./MigrationDetails\";\nexport type { Model } from \"./Model\";\nexport type { ModelAvailabilityNux } from \"./ModelAvailabilityNux\";\nexport type { ModelListParams } from \"./ModelListParams\";\nexport type { ModelListResponse } from \"./ModelListResponse\";\nexport type { ModelProviderCapabilitiesReadParams } from \"./ModelProviderCapabilitiesReadParams\";\nexport type { ModelProviderCapabilitiesReadResponse } from \"./ModelProviderCapabilitiesReadResponse\";\nexport type { ModelRerouteReason } from \"./ModelRerouteReason\";\nexport type { ModelReroutedNotification } from \"./ModelReroutedNotification\";\nexport type { ModelServiceTier } from \"./ModelServiceTier\";\nexport type { ModelUpgradeInfo } from \"./ModelUpgradeInfo\";\nexport type { ModelVerification } from \"./ModelVerification\";\nexport type { ModelVerificationNotification } from \"./ModelVerificationNotification\";\nexport type { NetworkAccess } from \"./NetworkAccess\";\nexport type { NetworkApprovalContext } from \"./NetworkApprovalContext\";\nexport type { NetworkApprovalProtocol } from \"./NetworkApprovalProtocol\";\nexport type { NetworkDomainPermission } from \"./NetworkDomainPermission\";\nexport type { NetworkPolicyAmendment } from \"./NetworkPolicyAmendment\";\nexport type { NetworkPolicyRuleAction } from \"./NetworkPolicyRuleAction\";\nexport type { NetworkRequirements } from \"./NetworkRequirements\";\nexport type { NetworkUnixSocketPermission } from \"./NetworkUnixSocketPermission\";\nexport type { NonSteerableTurnKind } from \"./NonSteerableTurnKind\";\nexport type { OverriddenMetadata } from \"./OverriddenMetadata\";\nexport type { PatchApplyStatus } from \"./PatchApplyStatus\";\nexport type { PatchChangeKind } from \"./PatchChangeKind\";\nexport type { PermissionGrantScope } from \"./PermissionGrantScope\";\nexport type { PermissionProfile } from \"./PermissionProfile\";\nexport type { PermissionProfileFileSystemPermissions } from \"./PermissionProfileFileSystemPermissions\";\nexport type { PermissionProfileModificationParams } from \"./PermissionProfileModificationParams\";\nexport type { PermissionProfileNetworkPermissions } from \"./PermissionProfileNetworkPermissions\";\nexport type { PermissionProfileSelectionParams } from \"./PermissionProfileSelectionParams\";\nexport type { PermissionsRequestApprovalParams } from \"./PermissionsRequestApprovalParams\";\nexport type { PermissionsRequestApprovalResponse } from \"./PermissionsRequestApprovalResponse\";\nexport type { PlanDeltaNotification } from \"./PlanDeltaNotification\";\nexport type { PluginAuthPolicy } from \"./PluginAuthPolicy\";\nexport type { PluginAvailability } from \"./PluginAvailability\";\nexport type { PluginDetail } from \"./PluginDetail\";\nexport type { PluginInstallParams } from \"./PluginInstallParams\";\nexport type { PluginInstallPolicy } from \"./PluginInstallPolicy\";\nexport type { PluginInstallResponse } from \"./PluginInstallResponse\";\nexport type { PluginInterface } from \"./PluginInterface\";\nexport type { PluginListMarketplaceKind } from \"./PluginListMarketplaceKind\";\nexport type { PluginListParams } from \"./PluginListParams\";\nexport type { PluginListResponse } from \"./PluginListResponse\";\nexport type { PluginMarketplaceEntry } from \"./PluginMarketplaceEntry\";\nexport type { PluginReadParams } from \"./PluginReadParams\";\nexport type { PluginReadResponse } from \"./PluginReadResponse\";\nexport type { PluginShareContext } from \"./PluginShareContext\";\nexport type { PluginShareDeleteParams } from \"./PluginShareDeleteParams\";\nexport type { PluginShareDeleteResponse } from \"./PluginShareDeleteResponse\";\nexport type { PluginShareDiscoverability } from \"./PluginShareDiscoverability\";\nexport type { PluginShareListItem } from \"./PluginShareListItem\";\nexport type { PluginShareListParams } from \"./PluginShareListParams\";\nexport type { PluginShareListResponse } from \"./PluginShareListResponse\";\nexport type { PluginSharePrincipal } from \"./PluginSharePrincipal\";\nexport type { PluginSharePrincipalType } from \"./PluginSharePrincipalType\";\nexport type { PluginShareSaveParams } from \"./PluginShareSaveParams\";\nexport type { PluginShareSaveResponse } from \"./PluginShareSaveResponse\";\nexport type { PluginShareTarget } from \"./PluginShareTarget\";\nexport type { PluginShareUpdateTargetsParams } from \"./PluginShareUpdateTargetsParams\";\nexport type { PluginShareUpdateTargetsResponse } from \"./PluginShareUpdateTargetsResponse\";\nexport type { PluginSkillReadParams } from \"./PluginSkillReadParams\";\nexport type { PluginSkillReadResponse } from \"./PluginSkillReadResponse\";\nexport type { PluginSource } from \"./PluginSource\";\nexport type { PluginSummary } from \"./PluginSummary\";\nexport type { PluginUninstallParams } from \"./PluginUninstallParams\";\nexport type { PluginUninstallResponse } from \"./PluginUninstallResponse\";\nexport type { PluginsMigration } from \"./PluginsMigration\";\nexport type { ProcessExitedNotification } from \"./ProcessExitedNotification\";\nexport type { ProcessOutputDeltaNotification } from \"./ProcessOutputDeltaNotification\";\nexport type { ProcessOutputStream } from \"./ProcessOutputStream\";\nexport type { ProcessTerminalSize } from \"./ProcessTerminalSize\";\nexport type { ProfileV2 } from \"./ProfileV2\";\nexport type { RateLimitReachedType } from \"./RateLimitReachedType\";\nexport type { RateLimitSnapshot } from \"./RateLimitSnapshot\";\nexport type { RateLimitWindow } from \"./RateLimitWindow\";\nexport type { RawResponseItemCompletedNotification } from \"./RawResponseItemCompletedNotification\";\nexport type { ReasoningEffortOption } from \"./ReasoningEffortOption\";\nexport type { ReasoningSummaryPartAddedNotification } from \"./ReasoningSummaryPartAddedNotification\";\nexport type { ReasoningSummaryTextDeltaNotification } from \"./ReasoningSummaryTextDeltaNotification\";\nexport type { ReasoningTextDeltaNotification } from \"./ReasoningTextDeltaNotification\";\nexport type { RemoteControlClientConnectionAudience } from \"./RemoteControlClientConnectionAudience\";\nexport type { RemoteControlClientEnrollmentAudience } from \"./RemoteControlClientEnrollmentAudience\";\nexport type { RemoteControlConnectionStatus } from \"./RemoteControlConnectionStatus\";\nexport type { RemoteControlStatusChangedNotification } from \"./RemoteControlStatusChangedNotification\";\nexport type { RequestPermissionProfile } from \"./RequestPermissionProfile\";\nexport type { ResidencyRequirement } from \"./ResidencyRequirement\";\nexport type { ReviewDelivery } from \"./ReviewDelivery\";\nexport type { ReviewStartParams } from \"./ReviewStartParams\";\nexport type { ReviewStartResponse } from \"./ReviewStartResponse\";\nexport type { ReviewTarget } from \"./ReviewTarget\";\nexport type { SandboxMode } from \"./SandboxMode\";\nexport type { SandboxPolicy } from \"./SandboxPolicy\";\nexport type { SandboxWorkspaceWrite } from \"./SandboxWorkspaceWrite\";\nexport type { SendAddCreditsNudgeEmailParams } from \"./SendAddCreditsNudgeEmailParams\";\nexport type { SendAddCreditsNudgeEmailResponse } from \"./SendAddCreditsNudgeEmailResponse\";\nexport type { ServerRequestResolvedNotification } from \"./ServerRequestResolvedNotification\";\nexport type { SessionMigration } from \"./SessionMigration\";\nexport type { SessionSource } from \"./SessionSource\";\nexport type { SkillDependencies } from \"./SkillDependencies\";\nexport type { SkillErrorInfo } from \"./SkillErrorInfo\";\nexport type { SkillInterface } from \"./SkillInterface\";\nexport type { SkillMetadata } from \"./SkillMetadata\";\nexport type { SkillScope } from \"./SkillScope\";\nexport type { SkillSummary } from \"./SkillSummary\";\nexport type { SkillToolDependency } from \"./SkillToolDependency\";\nexport type { SkillsChangedNotification } from \"./SkillsChangedNotification\";\nexport type { SkillsConfigWriteParams } from \"./SkillsConfigWriteParams\";\nexport type { SkillsConfigWriteResponse } from \"./SkillsConfigWriteResponse\";\nexport type { SkillsListEntry } from \"./SkillsListEntry\";\nexport type { SkillsListExtraRootsForCwd } from \"./SkillsListExtraRootsForCwd\";\nexport type { SkillsListParams } from \"./SkillsListParams\";\nexport type { SkillsListResponse } from \"./SkillsListResponse\";\nexport type { SortDirection } from \"./SortDirection\";\nexport type { SubagentMigration } from \"./SubagentMigration\";\nexport type { TerminalInteractionNotification } from \"./TerminalInteractionNotification\";\nexport type { TextElement } from \"./TextElement\";\nexport type { TextPosition } from \"./TextPosition\";\nexport type { TextRange } from \"./TextRange\";\nexport type { Thread } from \"./Thread\";\nexport type { ThreadActiveFlag } from \"./ThreadActiveFlag\";\nexport type { ThreadApproveGuardianDeniedActionParams } from \"./ThreadApproveGuardianDeniedActionParams\";\nexport type { ThreadApproveGuardianDeniedActionResponse } from \"./ThreadApproveGuardianDeniedActionResponse\";\nexport type { ThreadArchiveParams } from \"./ThreadArchiveParams\";\nexport type { ThreadArchiveResponse } from \"./ThreadArchiveResponse\";\nexport type { ThreadArchivedNotification } from \"./ThreadArchivedNotification\";\nexport type { ThreadClosedNotification } from \"./ThreadClosedNotification\";\nexport type { ThreadCompactStartParams } from \"./ThreadCompactStartParams\";\nexport type { ThreadCompactStartResponse } from \"./ThreadCompactStartResponse\";\nexport type { ThreadForkParams } from \"./ThreadForkParams\";\nexport type { ThreadForkResponse } from \"./ThreadForkResponse\";\nexport type { ThreadGoal } from \"./ThreadGoal\";\nexport type { ThreadGoalClearedNotification } from \"./ThreadGoalClearedNotification\";\nexport type { ThreadGoalStatus } from \"./ThreadGoalStatus\";\nexport type { ThreadGoalUpdatedNotification } from \"./ThreadGoalUpdatedNotification\";\nexport type { ThreadInjectItemsParams } from \"./ThreadInjectItemsParams\";\nexport type { ThreadInjectItemsResponse } from \"./ThreadInjectItemsResponse\";\nexport type { ThreadItem } from \"./ThreadItem\";\nexport type { ThreadListParams } from \"./ThreadListParams\";\nexport type { ThreadListResponse } from \"./ThreadListResponse\";\nexport type { ThreadLoadedListParams } from \"./ThreadLoadedListParams\";\nexport type { ThreadLoadedListResponse } from \"./ThreadLoadedListResponse\";\nexport type { ThreadMetadataGitInfoUpdateParams } from \"./ThreadMetadataGitInfoUpdateParams\";\nexport type { ThreadMetadataUpdateParams } from \"./ThreadMetadataUpdateParams\";\nexport type { ThreadMetadataUpdateResponse } from \"./ThreadMetadataUpdateResponse\";\nexport type { ThreadNameUpdatedNotification } from \"./ThreadNameUpdatedNotification\";\nexport type { ThreadReadParams } from \"./ThreadReadParams\";\nexport type { ThreadReadResponse } from \"./ThreadReadResponse\";\nexport type { ThreadRealtimeAudioChunk } from \"./ThreadRealtimeAudioChunk\";\nexport type { ThreadRealtimeClosedNotification } from \"./ThreadRealtimeClosedNotification\";\nexport type { ThreadRealtimeErrorNotification } from \"./ThreadRealtimeErrorNotification\";\nexport type { ThreadRealtimeItemAddedNotification } from \"./ThreadRealtimeItemAddedNotification\";\nexport type { ThreadRealtimeOutputAudioDeltaNotification } from \"./ThreadRealtimeOutputAudioDeltaNotification\";\nexport type { ThreadRealtimeSdpNotification } from \"./ThreadRealtimeSdpNotification\";\nexport type { ThreadRealtimeStartTransport } from \"./ThreadRealtimeStartTransport\";\nexport type { ThreadRealtimeStartedNotification } from \"./ThreadRealtimeStartedNotification\";\nexport type { ThreadRealtimeTranscriptDeltaNotification } from \"./ThreadRealtimeTranscriptDeltaNotification\";\nexport type { ThreadRealtimeTranscriptDoneNotification } from \"./ThreadRealtimeTranscriptDoneNotification\";\nexport type { ThreadResumeParams } from \"./ThreadResumeParams\";\nexport type { ThreadResumeResponse } from \"./ThreadResumeResponse\";\nexport type { ThreadRollbackParams } from \"./ThreadRollbackParams\";\nexport type { ThreadRollbackResponse } from \"./ThreadRollbackResponse\";\nexport type { ThreadSetNameParams } from \"./ThreadSetNameParams\";\nexport type { ThreadSetNameResponse } from \"./ThreadSetNameResponse\";\nexport type { ThreadShellCommandParams } from \"./ThreadShellCommandParams\";\nexport type { ThreadShellCommandResponse } from \"./ThreadShellCommandResponse\";\nexport type { ThreadSortKey } from \"./ThreadSortKey\";\nexport type { ThreadSource } from \"./ThreadSource\";\nexport type { ThreadSourceKind } from \"./ThreadSourceKind\";\nexport type { ThreadStartParams } from \"./ThreadStartParams\";\nexport type { ThreadStartResponse } from \"./ThreadStartResponse\";\nexport type { ThreadStartSource } from \"./ThreadStartSource\";\nexport type { ThreadStartedNotification } from \"./ThreadStartedNotification\";\nexport type { ThreadStatus } from \"./ThreadStatus\";\nexport type { ThreadStatusChangedNotification } from \"./ThreadStatusChangedNotification\";\nexport type { ThreadTokenUsage } from \"./ThreadTokenUsage\";\nexport type { ThreadTokenUsageUpdatedNotification } from \"./ThreadTokenUsageUpdatedNotification\";\nexport type { ThreadUnarchiveParams } from \"./ThreadUnarchiveParams\";\nexport type { ThreadUnarchiveResponse } from \"./ThreadUnarchiveResponse\";\nexport type { ThreadUnarchivedNotification } from \"./ThreadUnarchivedNotification\";\nexport type { ThreadUnsubscribeParams } from \"./ThreadUnsubscribeParams\";\nexport type { ThreadUnsubscribeResponse } from \"./ThreadUnsubscribeResponse\";\nexport type { ThreadUnsubscribeStatus } from \"./ThreadUnsubscribeStatus\";\nexport type { TokenUsageBreakdown } from \"./TokenUsageBreakdown\";\nexport type { ToolRequestUserInputAnswer } from \"./ToolRequestUserInputAnswer\";\nexport type { ToolRequestUserInputOption } from \"./ToolRequestUserInputOption\";\nexport type { ToolRequestUserInputParams } from \"./ToolRequestUserInputParams\";\nexport type { ToolRequestUserInputQuestion } from \"./ToolRequestUserInputQuestion\";\nexport type { ToolRequestUserInputResponse } from \"./ToolRequestUserInputResponse\";\nexport type { ToolsV2 } from \"./ToolsV2\";\nexport type { Turn } from \"./Turn\";\nexport type { TurnCompletedNotification } from \"./TurnCompletedNotification\";\nexport type { TurnDiffUpdatedNotification } from \"./TurnDiffUpdatedNotification\";\nexport type { TurnEnvironmentParams } from \"./TurnEnvironmentParams\";\nexport type { TurnError } from \"./TurnError\";\nexport type { TurnInterruptParams } from \"./TurnInterruptParams\";\nexport type { TurnInterruptResponse } from \"./TurnInterruptResponse\";\nexport type { TurnItemsView } from \"./TurnItemsView\";\nexport type { TurnPlanStep } from \"./TurnPlanStep\";\nexport type { TurnPlanStepStatus } from \"./TurnPlanStepStatus\";\nexport type { TurnPlanUpdatedNotification } from \"./TurnPlanUpdatedNotification\";\nexport type { TurnStartParams } from \"./TurnStartParams\";\nexport type { TurnStartResponse } from \"./TurnStartResponse\";\nexport type { TurnStartedNotification } from \"./TurnStartedNotification\";\nexport type { TurnStatus } from \"./TurnStatus\";\nexport type { TurnSteerParams } from \"./TurnSteerParams\";\nexport type { TurnSteerResponse } from \"./TurnSteerResponse\";\nexport type { UserInput } from \"./UserInput\";\nexport type { WarningNotification } from \"./WarningNotification\";\nexport type { WebSearchAction } from \"./WebSearchAction\";\nexport type { WindowsSandboxReadiness } from \"./WindowsSandboxReadiness\";\nexport type { WindowsSandboxReadinessResponse } from \"./WindowsSandboxReadinessResponse\";\nexport type { WindowsSandboxSetupCompletedNotification } from \"./WindowsSandboxSetupCompletedNotification\";\nexport type { WindowsSandboxSetupMode } from \"./WindowsSandboxSetupMode\";\nexport type { WindowsSandboxSetupStartParams } from \"./WindowsSandboxSetupStartParams\";\nexport type { WindowsSandboxSetupStartResponse } from \"./WindowsSandboxSetupStartResponse\";\nexport type { WindowsWorldWritableWarningNotification } from \"./WindowsWorldWritableWarningNotification\";\nexport type { WriteStatus } from \"./WriteStatus\";\n"]}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export { A as AppServerProtocolEvent, E as EventMappingContext, S as ServerRequestCoreTarget, c as coreTurnItemToThreadItem, e as eventMsgToAppServerEvent, a as eventMsgToAppServerEvents, b as eventMsgToServerProtocolEvent, d as eventMsgToServerProtocolEvents, s as serverRequestResolvedNotification, t as threadTokenUsageFromTokenUsageInfo } from '../../event-mapping-CbISdQ1D.js';
|
|
2
|
-
import { c as Turn$1, T as Thread } from '../../ServerRequest-B5cKVJjr.js';
|
|
3
|
-
import { i as ThreadResumeResponse } from '../../ThreadResumeResponse-DvmE1juU.js';
|
|
4
|
-
import { f as StoredThreadHistory, e as StoredThread } from '../../types-BTeabLYr.js';
|
|
5
|
-
import { a as Turn } from '../../thread-history-builder-zW0zeqcS.js';
|
|
6
|
-
export { C as ClientRequestSerializationScope, c as clientRequestExperimentalReason, a as clientRequestId, b as clientRequestMethod, d as clientRequestSerializationScope } from '../../common-CTyph5x8.js';
|
|
7
|
-
import '../../protocol-mpBcYHrm.js';
|
|
8
|
-
import '../../ToolRequestUserInputQuestion-CeZa5X1J.js';
|
|
9
|
-
|
|
10
|
-
type ThreadResumeSnapshotInput = {
|
|
11
|
-
history: StoredThreadHistory;
|
|
12
|
-
thread: StoredThread;
|
|
13
|
-
};
|
|
14
|
-
declare function buildThreadResumeResponseFromHistory(input: ThreadResumeSnapshotInput): ThreadResumeResponse;
|
|
15
|
-
declare function threadHistoryToAppServerThread(input: ThreadResumeSnapshotInput): Thread;
|
|
16
|
-
declare function renderableHistoryFromAppServerThread(thread: Thread): StoredThreadHistory;
|
|
17
|
-
declare function appServerTurnFromCoreTurn(turn: Turn): Turn$1;
|
|
18
|
-
|
|
19
|
-
export { type ThreadResumeSnapshotInput, appServerTurnFromCoreTurn, buildThreadResumeResponseFromHistory, renderableHistoryFromAppServerThread, threadHistoryToAppServerThread };
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export { appServerTurnFromCoreTurn, buildThreadResumeResponseFromHistory, clientRequestExperimentalReason, clientRequestId, clientRequestMethod, clientRequestSerializationScope, coreTurnItemToThreadItem, eventMsgToAppServerEvent, eventMsgToAppServerEvents, eventMsgToServerProtocolEvent, eventMsgToServerProtocolEvents, renderableHistoryFromAppServerThread, serverRequestResolvedNotification, threadHistoryToAppServerThread, threadTokenUsageFromTokenUsageInfo } from '../../chunk-2DZRMCI2.js';
|
|
2
|
-
import '../../chunk-DYLHN3HG.js';
|
|
3
|
-
//# sourceMappingURL=protocol.js.map
|
|
4
|
-
//# sourceMappingURL=protocol.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"protocol.js"}
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { d as ResponsesApiRequest, i as ResponsesWsRequest, a as ResponseEvent, c as ResponseStream } from '../../responses_websocket-BhxSgCzK.js';
|
|
2
|
-
export { C as Compression, P as Prompt, R as ResponseCreateWsRequest, b as ResponseProcessedWsRequest, e as ResponsesClient, f as ResponsesClientInput, j as ResponsesOptions, g as ResponsesWebsocketClient, k as ResponsesWebsocketClientInput, h as ResponsesWebsocketConnection, T as TurnState, W as W3cTraceContext, l as WS_REQUEST_HEADER_TRACEPARENT_CLIENT_METADATA_KEY, m as WS_REQUEST_HEADER_TRACESTATE_CLIENT_METADATA_KEY, n as WsStream, r as responseCreateWsRequestFromResponsesApiRequest, o as response_create_client_metadata } from '../../responses_websocket-BhxSgCzK.js';
|
|
3
|
-
import { k as Submission, A as ResponseItem, j as RolloutItem, U as UserInput, E as EventMsg, a2 as ResponseItemWire, I as RateLimitSnapshot } from '../../protocol-mpBcYHrm.js';
|
|
4
|
-
export { a3 as responseInputToResponseItem } from '../../protocol-mpBcYHrm.js';
|
|
5
|
-
import { k as ProviderRuntimeConfig } from '../../index-CoDZosq0.js';
|
|
6
|
-
|
|
7
|
-
declare function modelInputFromHistoryAndSubmission(history: RolloutItem[], submission: Submission): ResponseItem[];
|
|
8
|
-
declare function modelInputFromHistory(history: RolloutItem[]): ResponseItem[];
|
|
9
|
-
declare function inputFromSubmission(submission: Submission): ResponseItem[];
|
|
10
|
-
declare function userMessageEventAsResponseInput(event: EventMsg & {
|
|
11
|
-
type: "user_message";
|
|
12
|
-
}): ResponseItem;
|
|
13
|
-
declare function userInputAsResponseInput(items: UserInput[]): ResponseItem;
|
|
14
|
-
declare function outputTextDeltaFromStreamEvent(event: unknown): {
|
|
15
|
-
text: string;
|
|
16
|
-
item_id?: string;
|
|
17
|
-
} | null;
|
|
18
|
-
type OpenAiResponseLike = {
|
|
19
|
-
output?: unknown;
|
|
20
|
-
};
|
|
21
|
-
declare function responseOutputItemsFromResponse(response: OpenAiResponseLike): ResponseItem[];
|
|
22
|
-
declare function rawAssistantOutputTextFromItem(item: ResponseItem): string | null;
|
|
23
|
-
type ProposedPlanExtraction = {
|
|
24
|
-
assistantText: string;
|
|
25
|
-
planText: string | null;
|
|
26
|
-
};
|
|
27
|
-
declare function extractProposedPlanFromText(text: string): ProposedPlanExtraction;
|
|
28
|
-
|
|
29
|
-
type ResponsesApiWireRequest = Omit<ResponsesApiRequest, "input" | "instructions" | "service_tier" | "prompt_cache_key" | "text" | "client_metadata"> & {
|
|
30
|
-
instructions?: string;
|
|
31
|
-
input: ResponseItemWire[];
|
|
32
|
-
service_tier?: string;
|
|
33
|
-
prompt_cache_key?: string;
|
|
34
|
-
text?: unknown;
|
|
35
|
-
client_metadata?: Record<string, string>;
|
|
36
|
-
previous_response_id?: string;
|
|
37
|
-
generate?: boolean;
|
|
38
|
-
};
|
|
39
|
-
declare function serializeResponsesApiRequest(request: ResponsesApiRequest): ResponsesApiWireRequest;
|
|
40
|
-
declare function serializeResponseItemForResponsesApi(item: ResponseItem): ResponseItemWire;
|
|
41
|
-
declare function attachItemIds(payloadJson: unknown, originalItems: ResponseItem[]): void;
|
|
42
|
-
declare function serializeResponsesWsRequest(request: ResponsesWsRequest): Record<string, unknown>;
|
|
43
|
-
|
|
44
|
-
type ApiErrorCode = "transport" | "api" | "stream" | "context_window_exceeded" | "quota_exceeded" | "usage_not_included" | "retryable" | "rate_limit" | "invalid_request" | "cyber_policy" | "server_overloaded";
|
|
45
|
-
declare class ApiError extends Error {
|
|
46
|
-
readonly code: ApiErrorCode;
|
|
47
|
-
readonly status?: number;
|
|
48
|
-
readonly delay_ms?: number | null;
|
|
49
|
-
constructor(input: {
|
|
50
|
-
code: ApiErrorCode;
|
|
51
|
-
message: string;
|
|
52
|
-
status?: number;
|
|
53
|
-
delay_ms?: number | null;
|
|
54
|
-
});
|
|
55
|
-
static transport(message: string): ApiError;
|
|
56
|
-
static api(status: number, message: string): ApiError;
|
|
57
|
-
static stream(message: string): ApiError;
|
|
58
|
-
static retryable(message: string, delay_ms?: number | null): ApiError;
|
|
59
|
-
}
|
|
60
|
-
declare function apiErrorFromResponsePayload(status: number, payload: unknown): ApiError;
|
|
61
|
-
declare function apiErrorFromResponsesEvent(event: Record<string, unknown>): ApiError;
|
|
62
|
-
declare function apiErrorFromUnknown(error: unknown): ApiError;
|
|
63
|
-
declare function htmlChallengeApiError(): ApiError;
|
|
64
|
-
declare function isRetryableApiError(error: ApiError): boolean;
|
|
65
|
-
|
|
66
|
-
declare function responsesUrlWithQuery(runtime: ProviderRuntimeConfig): string;
|
|
67
|
-
declare function websocketUrlForPath(runtime: ProviderRuntimeConfig, path: string): string;
|
|
68
|
-
declare function providerRequestHeaders(input: {
|
|
69
|
-
api_key: string;
|
|
70
|
-
runtime: ProviderRuntimeConfig;
|
|
71
|
-
originator: string;
|
|
72
|
-
user_agent: string;
|
|
73
|
-
chatgpt_account_id?: string | null;
|
|
74
|
-
fedramp?: boolean;
|
|
75
|
-
extra_headers?: HeadersInit;
|
|
76
|
-
}): Headers;
|
|
77
|
-
declare function providerWebsocketHeaders(input: {
|
|
78
|
-
api_key: string;
|
|
79
|
-
runtime: ProviderRuntimeConfig;
|
|
80
|
-
originator: string;
|
|
81
|
-
user_agent: string;
|
|
82
|
-
chatgpt_account_id?: string | null;
|
|
83
|
-
fedramp?: boolean;
|
|
84
|
-
extra_headers?: HeadersInit;
|
|
85
|
-
default_headers?: HeadersInit;
|
|
86
|
-
}): Headers;
|
|
87
|
-
|
|
88
|
-
declare function parseAllRateLimits(headers: Headers): RateLimitSnapshot[];
|
|
89
|
-
declare function parseRateLimitEventPayload(event: Record<string, unknown>): RateLimitSnapshot | null;
|
|
90
|
-
|
|
91
|
-
type SpawnResponseStreamInput = {
|
|
92
|
-
headers?: Headers | null;
|
|
93
|
-
chunks: AsyncIterable<string>;
|
|
94
|
-
idle_timeout_ms?: number | null;
|
|
95
|
-
require_completed?: boolean;
|
|
96
|
-
};
|
|
97
|
-
declare function spawnResponseStream(input: SpawnResponseStreamInput): ResponseStream;
|
|
98
|
-
declare function responseEventsFromSseTextChunks(chunks: AsyncIterable<string>, options?: {
|
|
99
|
-
headers?: Headers | null;
|
|
100
|
-
idle_timeout_ms?: number | null;
|
|
101
|
-
require_completed?: boolean;
|
|
102
|
-
}): AsyncGenerator<ResponseEvent>;
|
|
103
|
-
|
|
104
|
-
export { ApiError, type ApiErrorCode, type OpenAiResponseLike, type ProposedPlanExtraction, ResponseEvent, ResponseStream, ResponsesApiRequest, type ResponsesApiWireRequest, ResponsesWsRequest, type SpawnResponseStreamInput, apiErrorFromResponsePayload, apiErrorFromResponsesEvent, apiErrorFromUnknown, attachItemIds, extractProposedPlanFromText, htmlChallengeApiError, inputFromSubmission, isRetryableApiError, modelInputFromHistory, modelInputFromHistoryAndSubmission, outputTextDeltaFromStreamEvent, parseAllRateLimits, parseRateLimitEventPayload, providerRequestHeaders, providerWebsocketHeaders, rawAssistantOutputTextFromItem, responseEventsFromSseTextChunks, responseOutputItemsFromResponse, responsesUrlWithQuery, serializeResponseItemForResponsesApi, serializeResponsesApiRequest, serializeResponsesWsRequest, spawnResponseStream, userInputAsResponseInput, userMessageEventAsResponseInput, websocketUrlForPath };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export { ApiError, ResponsesClient, ResponsesWebsocketClient, ResponsesWebsocketConnection, WS_REQUEST_HEADER_TRACEPARENT_CLIENT_METADATA_KEY, WS_REQUEST_HEADER_TRACESTATE_CLIENT_METADATA_KEY, WsStream, apiErrorFromResponsePayload, apiErrorFromResponsesEvent, apiErrorFromUnknown, attachItemIds, extractProposedPlanFromText, htmlChallengeApiError, inputFromSubmission, isRetryableApiError, modelInputFromHistory, modelInputFromHistoryAndSubmission, outputTextDeltaFromStreamEvent, parseAllRateLimits, parseRateLimitEventPayload, providerRequestHeaders, providerWebsocketHeaders, rawAssistantOutputTextFromItem, responseCreateWsRequestFromResponsesApiRequest, responseEventsFromSseTextChunks, responseOutputItemsFromResponse, response_create_client_metadata, responsesUrlWithQuery, serializeResponseItemForResponsesApi, serializeResponsesApiRequest, serializeResponsesWsRequest, spawnResponseStream, userInputAsResponseInput, userMessageEventAsResponseInput, websocketUrlForPath } from '../../chunk-LWQNX4LI.js';
|
|
2
|
-
import '../../chunk-PST3ZWX2.js';
|
|
3
|
-
import '../../chunk-Z63UPBS3.js';
|
|
4
|
-
import '../../chunk-YHVCFD2D.js';
|
|
5
|
-
import '../../chunk-DCMKA2A6.js';
|
|
6
|
-
import '../../chunk-CGBS37IU.js';
|
|
7
|
-
import '../../chunk-DYLHN3HG.js';
|
|
8
|
-
import '../../chunk-SYPHCDRD.js';
|
|
9
|
-
export { responseInputToResponseItem } from '../../chunk-O44XP7LH.js';
|
|
10
|
-
//# sourceMappingURL=index.js.map
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { b as ConfigToml, C as ConfigLayerEntry, L as LoaderOverrides, c as ConfigLayerStack, e as ConfigOverrides, R as ResolvedConfig, a as ConfigLayerSource } from '../../spec_plan_types-CmsJ-Tfn.js';
|
|
2
|
-
export { g as CONFIG_TOML_FILE, h as ConfigLayerMetadata, d as ConfigLayerStackOrdering, i as ConfigProfile, F as FeaturesToml, T as ToolsToml, j as createConfigLayerStack } from '../../spec_plan_types-CmsJ-Tfn.js';
|
|
3
|
-
import { P as PermissionProfile, L as ActivePermissionProfile, S as SandboxPolicy, l as ThreadId } from '../../protocol-mpBcYHrm.js';
|
|
4
|
-
export { C as ConfigLayerEntry_is_disabled, a as ConfigLayerEntry_new, b as ConfigLayerEntry_new_disabled, c as ConfigLayerEntry_new_with_raw_toml, d as ConfigLayerStack_effective_config, e as ConfigLayerStack_get_layers, f as ConfigLayerStack_new, g as build_cli_overrides_layer, h as config_layer_source_precedence, m as merge_config_layers, i as merge_toml_values, r as resolve_config, j as resolve_web_search_config, k as resolve_web_search_mode, l as resolve_web_search_mode_for_turn } from '../../merge-B_AWVmnI.js';
|
|
5
|
-
import '../../WebSearchToolConfig-D3ep0625.js';
|
|
6
|
-
|
|
7
|
-
type TomlValue = string | number | bigint | boolean | null | TomlValue[] | {
|
|
8
|
-
[key: string]: TomlValue;
|
|
9
|
-
};
|
|
10
|
-
type TomlTable = {
|
|
11
|
-
[key: string]: TomlValue;
|
|
12
|
-
};
|
|
13
|
-
declare function parse_config_toml(contents: string): ConfigToml;
|
|
14
|
-
declare function parse_toml_value(contents: string): TomlTable;
|
|
15
|
-
declare function serialize_config_toml(config: ConfigToml): string;
|
|
16
|
-
declare function empty_config_toml(): ConfigToml;
|
|
17
|
-
declare function config_toml_from_unknown(value: unknown): ConfigToml;
|
|
18
|
-
declare function isTomlTable(value: unknown): value is TomlTable;
|
|
19
|
-
|
|
20
|
-
type PermissionsToml = {
|
|
21
|
-
permission_profile?: PermissionProfile | null;
|
|
22
|
-
active_permission_profile?: ActivePermissionProfile | null;
|
|
23
|
-
sandbox_policy?: SandboxPolicy | null;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
type ThreadConfigContext = {
|
|
27
|
-
thread_id: ThreadId | null;
|
|
28
|
-
cwd: string | null;
|
|
29
|
-
};
|
|
30
|
-
type SessionThreadConfig = ConfigToml & {
|
|
31
|
-
model_provider?: string;
|
|
32
|
-
model_providers?: Record<string, unknown>;
|
|
33
|
-
features?: Record<string, unknown>;
|
|
34
|
-
};
|
|
35
|
-
type UserThreadConfig = ConfigToml;
|
|
36
|
-
type ThreadConfigSource = {
|
|
37
|
-
type: "Session";
|
|
38
|
-
config: SessionThreadConfig;
|
|
39
|
-
} | {
|
|
40
|
-
type: "User";
|
|
41
|
-
config: UserThreadConfig;
|
|
42
|
-
};
|
|
43
|
-
type ThreadConfigLoadErrorCode = "Auth" | "Timeout" | "Parse" | "RequestFailed" | "Internal";
|
|
44
|
-
declare class ThreadConfigLoadError extends Error {
|
|
45
|
-
readonly code: ThreadConfigLoadErrorCode;
|
|
46
|
-
readonly status_code: number | null;
|
|
47
|
-
constructor(code: ThreadConfigLoadErrorCode, message: string, status_code?: number | null);
|
|
48
|
-
}
|
|
49
|
-
interface ThreadConfigLoader {
|
|
50
|
-
load(context: ThreadConfigContext): Promise<ThreadConfigSource[]> | ThreadConfigSource[];
|
|
51
|
-
load_config_layers(context: ThreadConfigContext): Promise<ConfigLayerEntry[]> | ConfigLayerEntry[];
|
|
52
|
-
}
|
|
53
|
-
declare abstract class BaseThreadConfigLoader implements ThreadConfigLoader {
|
|
54
|
-
abstract load(context: ThreadConfigContext): Promise<ThreadConfigSource[]> | ThreadConfigSource[];
|
|
55
|
-
load_config_layers(context: ThreadConfigContext): Promise<ConfigLayerEntry[]>;
|
|
56
|
-
}
|
|
57
|
-
declare class StaticThreadConfigLoader extends BaseThreadConfigLoader {
|
|
58
|
-
private readonly sources;
|
|
59
|
-
constructor(sources?: ThreadConfigSource[]);
|
|
60
|
-
load(context: ThreadConfigContext): ThreadConfigSource[];
|
|
61
|
-
}
|
|
62
|
-
declare class NoopThreadConfigLoader extends BaseThreadConfigLoader {
|
|
63
|
-
static readonly instance: NoopThreadConfigLoader;
|
|
64
|
-
load(context: ThreadConfigContext): ThreadConfigSource[];
|
|
65
|
-
}
|
|
66
|
-
declare function thread_config_source_to_layer(source: ThreadConfigSource): ConfigLayerEntry | null;
|
|
67
|
-
|
|
68
|
-
type ConfigFileReader = (path: string) => Promise<string | null> | string | null;
|
|
69
|
-
type LoadConfigLayersStateParams = {
|
|
70
|
-
codex_home?: string;
|
|
71
|
-
cwd?: string | null;
|
|
72
|
-
cli_overrides?: Array<[string, unknown]>;
|
|
73
|
-
overrides?: LoaderOverrides;
|
|
74
|
-
thread_config_loader?: ThreadConfigLoader;
|
|
75
|
-
read_file_text?: ConfigFileReader;
|
|
76
|
-
app_config?: {
|
|
77
|
-
file: string;
|
|
78
|
-
contents: string;
|
|
79
|
-
} | null;
|
|
80
|
-
startup_warnings?: string[];
|
|
81
|
-
};
|
|
82
|
-
declare function load_config_layers_state(params?: LoadConfigLayersStateParams): Promise<ConfigLayerStack>;
|
|
83
|
-
declare function load_config(stack: ConfigLayerStack, overrides?: ConfigOverrides): Promise<ResolvedConfig>;
|
|
84
|
-
declare function load_config_toml_for_required_layer(read_file_text: ConfigFileReader, name: ConfigLayerSource): Promise<ConfigLayerEntry>;
|
|
85
|
-
declare function load_config_toml_from_text(name: ConfigLayerSource, contents: string): ConfigLayerEntry;
|
|
86
|
-
declare function insert_layer_by_precedence(layers: ConfigLayerEntry[], layer: ConfigLayerEntry): void;
|
|
87
|
-
|
|
88
|
-
export { BaseThreadConfigLoader, type ConfigFileReader, ConfigLayerEntry, ConfigLayerSource, ConfigLayerStack, ConfigOverrides, ConfigToml, type LoadConfigLayersStateParams, LoaderOverrides, NoopThreadConfigLoader, type PermissionsToml, ResolvedConfig, type SessionThreadConfig, StaticThreadConfigLoader, type ThreadConfigContext, ThreadConfigLoadError, type ThreadConfigLoadErrorCode, type ThreadConfigLoader, type ThreadConfigSource, type TomlTable, type TomlValue, type UserThreadConfig, config_toml_from_unknown, empty_config_toml, insert_layer_by_precedence, isTomlTable, load_config, load_config_layers_state, load_config_toml_for_required_layer, load_config_toml_from_text, parse_config_toml, parse_toml_value, serialize_config_toml, thread_config_source_to_layer };
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export { BaseThreadConfigLoader, CONFIG_TOML_FILE, ConfigLayerEntry_is_disabled, ConfigLayerEntry_new, ConfigLayerEntry_new_disabled, ConfigLayerEntry_new_with_raw_toml, ConfigLayerStackOrdering, ConfigLayerStack_effective_config, ConfigLayerStack_get_layers, ConfigLayerStack_new, NoopThreadConfigLoader, StaticThreadConfigLoader, ThreadConfigLoadError, build_cli_overrides_layer, config_layer_source_precedence, config_toml_from_unknown, createConfigLayerStack, empty_config_toml, insert_layer_by_precedence, isTomlTable, load_config, load_config_layers_state, load_config_toml_for_required_layer, load_config_toml_from_text, merge_config_layers, merge_toml_values, parse_config_toml, parse_toml_value, resolve_config, resolve_web_search_config, resolve_web_search_mode, resolve_web_search_mode_for_turn, serialize_config_toml, thread_config_source_to_layer } from '../../chunk-SYPHCDRD.js';
|
|
2
|
-
import '../../chunk-O44XP7LH.js';
|
|
3
|
-
//# sourceMappingURL=index.js.map
|
|
4
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { a as WebSearchToolConfig } from '../../../WebSearchToolConfig-D3ep0625.js';
|
|
2
|
-
import { R as ResolvedConfig, D as DefaultToolsConfigInput, k as ToolsConfig } from '../../../spec_plan_types-CmsJ-Tfn.js';
|
|
3
|
-
export { l as resolve_web_search_mode_for_turn } from '../../../merge-B_AWVmnI.js';
|
|
4
|
-
import { a1 as PermissionProfileBuiltinName, P as PermissionProfile, S as SandboxPolicy } from '../../../protocol-mpBcYHrm.js';
|
|
5
|
-
|
|
6
|
-
declare const BUILT_IN_READ_ONLY_PROFILE = ":read-only";
|
|
7
|
-
declare const BUILT_IN_WORKSPACE_PROFILE = ":workspace";
|
|
8
|
-
declare const BUILT_IN_DANGER_NO_SANDBOX_PROFILE = ":danger-no-sandbox";
|
|
9
|
-
declare function defaultBuiltinPermissionProfileName(input?: {
|
|
10
|
-
trusted?: boolean | null;
|
|
11
|
-
untrusted?: boolean | null;
|
|
12
|
-
}): PermissionProfileBuiltinName;
|
|
13
|
-
declare function readOnlyPermissionProfile(): PermissionProfile;
|
|
14
|
-
declare function workspaceWritePermissionProfile(): PermissionProfile;
|
|
15
|
-
declare function disabledPermissionProfile(): PermissionProfile;
|
|
16
|
-
declare function builtinPermissionProfile(name: PermissionProfileBuiltinName): PermissionProfile;
|
|
17
|
-
declare function permissionProfileFromLegacySandboxPolicy(sandboxPolicy: SandboxPolicy | null | undefined): PermissionProfile;
|
|
18
|
-
declare function legacySandboxPolicyFromPermissionProfile(permissionProfile: PermissionProfile | null | undefined, cwd?: string): SandboxPolicy;
|
|
19
|
-
declare function effectivePermissionProfile(input: {
|
|
20
|
-
permission_profile?: PermissionProfile | null;
|
|
21
|
-
sandbox_policy?: SandboxPolicy | null;
|
|
22
|
-
}): PermissionProfile;
|
|
23
|
-
declare function builtinPermissionProfileNameFromProfile(permissionProfile: PermissionProfile | null | undefined): PermissionProfileBuiltinName;
|
|
24
|
-
declare function activePermissionProfileForBuiltin(id: PermissionProfileBuiltinName): {
|
|
25
|
-
id: PermissionProfileBuiltinName;
|
|
26
|
-
extends: null;
|
|
27
|
-
modifications: never[];
|
|
28
|
-
};
|
|
29
|
-
declare function active_permission_profile(permissionProfile: PermissionProfile | null | undefined): {
|
|
30
|
-
id: PermissionProfileBuiltinName;
|
|
31
|
-
extends: null;
|
|
32
|
-
modifications: never[];
|
|
33
|
-
};
|
|
34
|
-
declare function validatePermissionProfile(permissionProfile: PermissionProfile | null | undefined): string[];
|
|
35
|
-
|
|
36
|
-
type ManagedFeature = {
|
|
37
|
-
name: string;
|
|
38
|
-
enabled: boolean;
|
|
39
|
-
source?: string | null;
|
|
40
|
-
};
|
|
41
|
-
type ManagedFeatures = Record<string, ManagedFeature>;
|
|
42
|
-
declare function emptyManagedFeatures(): ManagedFeatures;
|
|
43
|
-
|
|
44
|
-
type NetworkProxySpec = {
|
|
45
|
-
mode: "disabled" | "default" | "custom";
|
|
46
|
-
url?: string | null;
|
|
47
|
-
};
|
|
48
|
-
declare function defaultNetworkProxySpec(): NetworkProxySpec;
|
|
49
|
-
|
|
50
|
-
type AgentRole = {
|
|
51
|
-
name: string;
|
|
52
|
-
description?: string | null;
|
|
53
|
-
instructions?: string | null;
|
|
54
|
-
};
|
|
55
|
-
type AgentRoles = Record<string, AgentRole>;
|
|
56
|
-
|
|
57
|
-
declare function tools_config_from_config(config: ResolvedConfig): Omit<DefaultToolsConfigInput, "web_search"> & {
|
|
58
|
-
web_search?: Partial<WebSearchToolConfig> | boolean | null;
|
|
59
|
-
} & ToolsConfig;
|
|
60
|
-
|
|
61
|
-
export { type AgentRole, type AgentRoles, BUILT_IN_DANGER_NO_SANDBOX_PROFILE, BUILT_IN_READ_ONLY_PROFILE, BUILT_IN_WORKSPACE_PROFILE, type ManagedFeature, type ManagedFeatures, type NetworkProxySpec, activePermissionProfileForBuiltin, active_permission_profile, builtinPermissionProfile, builtinPermissionProfileNameFromProfile, defaultBuiltinPermissionProfileName, defaultNetworkProxySpec, disabledPermissionProfile, effectivePermissionProfile, emptyManagedFeatures, legacySandboxPolicyFromPermissionProfile, permissionProfileFromLegacySandboxPolicy, readOnlyPermissionProfile, tools_config_from_config, validatePermissionProfile, workspaceWritePermissionProfile };
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export { defaultNetworkProxySpec, emptyManagedFeatures, tools_config_from_config } from '../../../chunk-DCMKA2A6.js';
|
|
2
|
-
export { BUILT_IN_DANGER_NO_SANDBOX_PROFILE, BUILT_IN_READ_ONLY_PROFILE, BUILT_IN_WORKSPACE_PROFILE, activePermissionProfileForBuiltin, active_permission_profile, builtinPermissionProfile, builtinPermissionProfileNameFromProfile, defaultBuiltinPermissionProfileName, disabledPermissionProfile, effectivePermissionProfile, legacySandboxPolicyFromPermissionProfile, permissionProfileFromLegacySandboxPolicy, readOnlyPermissionProfile, resolve_web_search_mode_for_turn, validatePermissionProfile, workspaceWritePermissionProfile } from '../../../chunk-SYPHCDRD.js';
|
|
3
|
-
import '../../../chunk-O44XP7LH.js';
|
|
4
|
-
//# sourceMappingURL=index.js.map
|
|
5
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
|