@kmmao/happy-wire 0.17.1 → 0.19.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/dist/index.cjs +84 -2
- package/dist/index.d.cts +54 -3
- package/dist/index.d.mts +54 -3
- package/dist/index.mjs +83 -3
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2124,7 +2124,86 @@ const GetContextUsageResponseSchema = z.z.object({
|
|
|
2124
2124
|
serverName: z.z.string(),
|
|
2125
2125
|
tokens: z.z.number().int().nonnegative(),
|
|
2126
2126
|
isLoaded: z.z.boolean().optional()
|
|
2127
|
-
}))
|
|
2127
|
+
})),
|
|
2128
|
+
/** Messages 内部 token 细分(SDK messageBreakdown)。仅 SDK 0.2.139+ 返回。 */
|
|
2129
|
+
messageBreakdown: z.z.object({
|
|
2130
|
+
toolCallTokens: z.z.number().int().nonnegative(),
|
|
2131
|
+
toolResultTokens: z.z.number().int().nonnegative(),
|
|
2132
|
+
attachmentTokens: z.z.number().int().nonnegative(),
|
|
2133
|
+
assistantMessageTokens: z.z.number().int().nonnegative(),
|
|
2134
|
+
userMessageTokens: z.z.number().int().nonnegative(),
|
|
2135
|
+
redirectedContextTokens: z.z.number().int().nonnegative(),
|
|
2136
|
+
unattributedTokens: z.z.number().int().nonnegative(),
|
|
2137
|
+
toolCallsByType: z.z.array(z.z.object({
|
|
2138
|
+
name: z.z.string(),
|
|
2139
|
+
callTokens: z.z.number().int().nonnegative(),
|
|
2140
|
+
resultTokens: z.z.number().int().nonnegative()
|
|
2141
|
+
})),
|
|
2142
|
+
attachmentsByType: z.z.array(z.z.object({
|
|
2143
|
+
name: z.z.string(),
|
|
2144
|
+
tokens: z.z.number().int().nonnegative()
|
|
2145
|
+
}))
|
|
2146
|
+
}).optional(),
|
|
2147
|
+
/** System Prompt 各段 token 细分。 */
|
|
2148
|
+
systemPromptSections: z.z.array(z.z.object({
|
|
2149
|
+
name: z.z.string(),
|
|
2150
|
+
tokens: z.z.number().int().nonnegative()
|
|
2151
|
+
})).optional(),
|
|
2152
|
+
/** API 实际用量(input/output/cache hit/miss)。 */
|
|
2153
|
+
apiUsage: z.z.object({
|
|
2154
|
+
inputTokens: z.z.number().int().nonnegative(),
|
|
2155
|
+
outputTokens: z.z.number().int().nonnegative(),
|
|
2156
|
+
cacheCreationInputTokens: z.z.number().int().nonnegative(),
|
|
2157
|
+
cacheReadInputTokens: z.z.number().int().nonnegative()
|
|
2158
|
+
}).nullable().optional()
|
|
2159
|
+
}).strict();
|
|
2160
|
+
const GetContextDetailRequestSchema = z.z.object({
|
|
2161
|
+
/**
|
|
2162
|
+
* Category name from getContextUsage (e.g. "Messages", "System prompt",
|
|
2163
|
+
* "Skills", "Custom agents", "Autocompact buffer", "Memory files").
|
|
2164
|
+
*/
|
|
2165
|
+
category: z.z.string().min(1).max(128),
|
|
2166
|
+
/**
|
|
2167
|
+
* When true, return only subcategory counts (no item content).
|
|
2168
|
+
* Only meaningful for the "Messages" category.
|
|
2169
|
+
*/
|
|
2170
|
+
summaryOnly: z.z.boolean().optional(),
|
|
2171
|
+
/**
|
|
2172
|
+
* Filter to a specific subcategory within "Messages".
|
|
2173
|
+
* One of: "user", "system-reminder", "assistant".
|
|
2174
|
+
*/
|
|
2175
|
+
subcategory: z.z.string().optional()
|
|
2176
|
+
}).strict();
|
|
2177
|
+
const GetContextDetailResponseSchema = z.z.object({
|
|
2178
|
+
/** Parsed JSONL records for the requested category. Empty when summaryOnly=true. */
|
|
2179
|
+
items: z.z.array(z.z.object({
|
|
2180
|
+
/** JSONL record type (user, assistant, attachment, system, summary, etc.) */
|
|
2181
|
+
type: z.z.string(),
|
|
2182
|
+
/** Role when applicable (user / assistant) */
|
|
2183
|
+
role: z.z.string().optional(),
|
|
2184
|
+
/** Full text content of the record. Truncated at 50 KB per item. */
|
|
2185
|
+
content: z.z.string(),
|
|
2186
|
+
/** UUID of the JSONL record */
|
|
2187
|
+
uuid: z.z.string().optional(),
|
|
2188
|
+
/** ISO timestamp of the record */
|
|
2189
|
+
timestamp: z.z.string().optional()
|
|
2190
|
+
})),
|
|
2191
|
+
/** Category name echoed back for display */
|
|
2192
|
+
category: z.z.string(),
|
|
2193
|
+
/** Total number of matching items */
|
|
2194
|
+
totalItems: z.z.number().int().nonnegative(),
|
|
2195
|
+
/**
|
|
2196
|
+
* Subcategory breakdown for "Messages" when summaryOnly=true.
|
|
2197
|
+
* Each entry has a key, display label, and item count.
|
|
2198
|
+
*/
|
|
2199
|
+
subcategories: z.z.array(z.z.object({
|
|
2200
|
+
/** Subcategory key: "user" | "system-reminder" | "assistant" */
|
|
2201
|
+
name: z.z.string(),
|
|
2202
|
+
/** Human-readable label */
|
|
2203
|
+
label: z.z.string(),
|
|
2204
|
+
/** Number of items in this subcategory */
|
|
2205
|
+
count: z.z.number().int().nonnegative()
|
|
2206
|
+
})).optional()
|
|
2128
2207
|
}).strict();
|
|
2129
2208
|
const GetMcpServersRequestSchema = z.z.object({}).strict();
|
|
2130
2209
|
const GetMcpServersResponseSchema = z.z.object({
|
|
@@ -2148,7 +2227,8 @@ const CLAUDE_CONTROL_METHODS = [
|
|
|
2148
2227
|
"read_file",
|
|
2149
2228
|
"mcp_call",
|
|
2150
2229
|
"get_context_usage",
|
|
2151
|
-
"get_mcp_servers"
|
|
2230
|
+
"get_mcp_servers",
|
|
2231
|
+
"get_context_detail"
|
|
2152
2232
|
];
|
|
2153
2233
|
|
|
2154
2234
|
exports.AIBackendProfileSchema = AIBackendProfileSchema;
|
|
@@ -2209,6 +2289,8 @@ exports.DefaultPermissionModeSchema = DefaultPermissionModeSchema;
|
|
|
2209
2289
|
exports.EnvironmentVariableSchema = EnvironmentVariableSchema;
|
|
2210
2290
|
exports.GetBinaryVersionRequestSchema = GetBinaryVersionRequestSchema;
|
|
2211
2291
|
exports.GetBinaryVersionResponseSchema = GetBinaryVersionResponseSchema;
|
|
2292
|
+
exports.GetContextDetailRequestSchema = GetContextDetailRequestSchema;
|
|
2293
|
+
exports.GetContextDetailResponseSchema = GetContextDetailResponseSchema;
|
|
2212
2294
|
exports.GetContextUsageRequestSchema = GetContextUsageRequestSchema;
|
|
2213
2295
|
exports.GetContextUsageResponseSchema = GetContextUsageResponseSchema;
|
|
2214
2296
|
exports.GetMcpServersRequestSchema = GetMcpServersRequestSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -3726,9 +3726,60 @@ declare const GetContextUsageResponseSchema: z$1.ZodObject<{
|
|
|
3726
3726
|
tokens: z$1.ZodNumber;
|
|
3727
3727
|
isLoaded: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3728
3728
|
}, z$1.core.$strip>>;
|
|
3729
|
+
messageBreakdown: z$1.ZodOptional<z$1.ZodObject<{
|
|
3730
|
+
toolCallTokens: z$1.ZodNumber;
|
|
3731
|
+
toolResultTokens: z$1.ZodNumber;
|
|
3732
|
+
attachmentTokens: z$1.ZodNumber;
|
|
3733
|
+
assistantMessageTokens: z$1.ZodNumber;
|
|
3734
|
+
userMessageTokens: z$1.ZodNumber;
|
|
3735
|
+
redirectedContextTokens: z$1.ZodNumber;
|
|
3736
|
+
unattributedTokens: z$1.ZodNumber;
|
|
3737
|
+
toolCallsByType: z$1.ZodArray<z$1.ZodObject<{
|
|
3738
|
+
name: z$1.ZodString;
|
|
3739
|
+
callTokens: z$1.ZodNumber;
|
|
3740
|
+
resultTokens: z$1.ZodNumber;
|
|
3741
|
+
}, z$1.core.$strip>>;
|
|
3742
|
+
attachmentsByType: z$1.ZodArray<z$1.ZodObject<{
|
|
3743
|
+
name: z$1.ZodString;
|
|
3744
|
+
tokens: z$1.ZodNumber;
|
|
3745
|
+
}, z$1.core.$strip>>;
|
|
3746
|
+
}, z$1.core.$strip>>;
|
|
3747
|
+
systemPromptSections: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3748
|
+
name: z$1.ZodString;
|
|
3749
|
+
tokens: z$1.ZodNumber;
|
|
3750
|
+
}, z$1.core.$strip>>>;
|
|
3751
|
+
apiUsage: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
3752
|
+
inputTokens: z$1.ZodNumber;
|
|
3753
|
+
outputTokens: z$1.ZodNumber;
|
|
3754
|
+
cacheCreationInputTokens: z$1.ZodNumber;
|
|
3755
|
+
cacheReadInputTokens: z$1.ZodNumber;
|
|
3756
|
+
}, z$1.core.$strip>>>;
|
|
3729
3757
|
}, z$1.core.$strict>;
|
|
3730
3758
|
type GetContextUsageRequest = z$1.infer<typeof GetContextUsageRequestSchema>;
|
|
3731
3759
|
type GetContextUsageResponse = z$1.infer<typeof GetContextUsageResponseSchema>;
|
|
3760
|
+
declare const GetContextDetailRequestSchema: z$1.ZodObject<{
|
|
3761
|
+
category: z$1.ZodString;
|
|
3762
|
+
summaryOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3763
|
+
subcategory: z$1.ZodOptional<z$1.ZodString>;
|
|
3764
|
+
}, z$1.core.$strict>;
|
|
3765
|
+
declare const GetContextDetailResponseSchema: z$1.ZodObject<{
|
|
3766
|
+
items: z$1.ZodArray<z$1.ZodObject<{
|
|
3767
|
+
type: z$1.ZodString;
|
|
3768
|
+
role: z$1.ZodOptional<z$1.ZodString>;
|
|
3769
|
+
content: z$1.ZodString;
|
|
3770
|
+
uuid: z$1.ZodOptional<z$1.ZodString>;
|
|
3771
|
+
timestamp: z$1.ZodOptional<z$1.ZodString>;
|
|
3772
|
+
}, z$1.core.$strip>>;
|
|
3773
|
+
category: z$1.ZodString;
|
|
3774
|
+
totalItems: z$1.ZodNumber;
|
|
3775
|
+
subcategories: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3776
|
+
name: z$1.ZodString;
|
|
3777
|
+
label: z$1.ZodString;
|
|
3778
|
+
count: z$1.ZodNumber;
|
|
3779
|
+
}, z$1.core.$strip>>>;
|
|
3780
|
+
}, z$1.core.$strict>;
|
|
3781
|
+
type GetContextDetailRequest = z$1.infer<typeof GetContextDetailRequestSchema>;
|
|
3782
|
+
type GetContextDetailResponse = z$1.infer<typeof GetContextDetailResponseSchema>;
|
|
3732
3783
|
declare const GetMcpServersRequestSchema: z$1.ZodObject<{}, z$1.core.$strict>;
|
|
3733
3784
|
declare const GetMcpServersResponseSchema: z$1.ZodObject<{
|
|
3734
3785
|
servers: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -3759,8 +3810,8 @@ type GetMcpServersResponse = z$1.infer<typeof GetMcpServersResponseSchema>;
|
|
|
3759
3810
|
* Method name enum — consumers should derive typed handlers from this.
|
|
3760
3811
|
* When adding a new method, update the CLI handler registration too.
|
|
3761
3812
|
*/
|
|
3762
|
-
declare const CLAUDE_CONTROL_METHODS: readonly ["get_session_cost", "get_binary_version", "set_color", "read_file", "mcp_call", "get_context_usage", "get_mcp_servers"];
|
|
3813
|
+
declare const CLAUDE_CONTROL_METHODS: readonly ["get_session_cost", "get_binary_version", "set_color", "read_file", "mcp_call", "get_context_usage", "get_mcp_servers", "get_context_detail"];
|
|
3763
3814
|
type ClaudeControlMethod = typeof CLAUDE_CONTROL_METHODS[number];
|
|
3764
3815
|
|
|
3765
|
-
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
3766
|
-
export type { AIBackendProfile, AgentLoopSummary, AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, AutoDreamProfileSummary, AutomationAuditEventSummary, AutomationAuditStats, AutomationCounts, AutomationGuardianSummary, AutomationGuardianUsageSummary, AutomationJobKind, AutomationJobStatus, AutomationJobSummary, AutomationPriority, AutomationState, BootstrapProfileSummary, BriefMessage, BuiltInAIBackendProfileId, ClaudeControlMethod, CliInstallInfo, CliInstallSource, CodexAccount, CodexAgentSummary, CodexBackendMode, CodexConfigMode, CodexExperimentalFeature, CodexMcpServerSummary, CodexMetadata, CodexPromptSummary, CodexRateLimits, CodexRequestedBackend, CodexResolvedBackend, CodexRuntimeConfig, CodexSkillSummary, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, CreateKnowledgeEntryBody, CreateSkillBody, CreateTaskBody, CrossProjectSearchResponse, CrossProjectSearchResult, DaemonState, GetBinaryVersionRequest, GetBinaryVersionResponse, GetContextUsageRequest, GetContextUsageResponse, GetMcpServersRequest, GetMcpServersResponse, GetSessionCostRequest, GetSessionCostResponse, HappyMcpCanonicalToolName, HappyMcpToolActionMode, HappyProfileEnvKey, InboxCategory, InboxItemSummary, InboxNewItem, InboxSeverity, InboxUnreadCount, KnowledgeAction, KnowledgeChainEntry, KnowledgeChainRelation, KnowledgeChainResponse, KnowledgeConfidence, KnowledgeContributorType, KnowledgeEntryType, KnowledgeInjectionMode, KnowledgeInjectionRequest, KnowledgeInjectionResponse, KnowledgeStatus, LegacyMessageContent, LiveKitTokenResponse, MachineMetadata, McpCallRequest, McpCallResponse, MessageContent, MessageMeta, ProjectProfile, QueryKnowledgeParams, ReadFileRequest, ReadFileResponse, ResolvedRuntimeProfile, RuntimeProfileSource, RuntimeProfileTrust, SessionContextUsageEvent, SessionEnvelope, SessionEvent, SessionEventCreated, SessionEventReport, SessionEventSummary, SessionEventType, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProgressList, SessionProgressState, SessionProgressTodo, SessionProgressTodoStatus, SessionProtocolMessage, SessionRole, SessionSummaryRefreshActiveRequest, SessionSummaryRefreshRecentEntry, SessionSummaryRefreshState, SessionSummaryState, SessionTurnEndStatus, SetColorRequest, SetColorResponse, SkillContent, SkillSummary, TailscaleInfo, TailscaleServeEntry, TaskOutcome, TaskPriority, TaskStatus, TaskStatusChanged, TaskStatusReport, TaskSummary, TaskTriggerData, TaskTriggerType, TerminalCloseRequest, TerminalExitPayload, TerminalInputPayload, TerminalOutputPayload, TerminalResizeRequest, TerminalSpawnRequest, TerminalSpawnResponse, TunnelEntry, TunnelProviderInfo, TunnelState, TurnKnowledgeExtraction, Update, UpdateBody, UpdateKnowledgeEntryBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UpdateSkillBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue, VoiceTokenResponse };
|
|
3816
|
+
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextDetailRequestSchema, GetContextDetailResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
3817
|
+
export type { AIBackendProfile, AgentLoopSummary, AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, AutoDreamProfileSummary, AutomationAuditEventSummary, AutomationAuditStats, AutomationCounts, AutomationGuardianSummary, AutomationGuardianUsageSummary, AutomationJobKind, AutomationJobStatus, AutomationJobSummary, AutomationPriority, AutomationState, BootstrapProfileSummary, BriefMessage, BuiltInAIBackendProfileId, ClaudeControlMethod, CliInstallInfo, CliInstallSource, CodexAccount, CodexAgentSummary, CodexBackendMode, CodexConfigMode, CodexExperimentalFeature, CodexMcpServerSummary, CodexMetadata, CodexPromptSummary, CodexRateLimits, CodexRequestedBackend, CodexResolvedBackend, CodexRuntimeConfig, CodexSkillSummary, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, CreateKnowledgeEntryBody, CreateSkillBody, CreateTaskBody, CrossProjectSearchResponse, CrossProjectSearchResult, DaemonState, GetBinaryVersionRequest, GetBinaryVersionResponse, GetContextDetailRequest, GetContextDetailResponse, GetContextUsageRequest, GetContextUsageResponse, GetMcpServersRequest, GetMcpServersResponse, GetSessionCostRequest, GetSessionCostResponse, HappyMcpCanonicalToolName, HappyMcpToolActionMode, HappyProfileEnvKey, InboxCategory, InboxItemSummary, InboxNewItem, InboxSeverity, InboxUnreadCount, KnowledgeAction, KnowledgeChainEntry, KnowledgeChainRelation, KnowledgeChainResponse, KnowledgeConfidence, KnowledgeContributorType, KnowledgeEntryType, KnowledgeInjectionMode, KnowledgeInjectionRequest, KnowledgeInjectionResponse, KnowledgeStatus, LegacyMessageContent, LiveKitTokenResponse, MachineMetadata, McpCallRequest, McpCallResponse, MessageContent, MessageMeta, ProjectProfile, QueryKnowledgeParams, ReadFileRequest, ReadFileResponse, ResolvedRuntimeProfile, RuntimeProfileSource, RuntimeProfileTrust, SessionContextUsageEvent, SessionEnvelope, SessionEvent, SessionEventCreated, SessionEventReport, SessionEventSummary, SessionEventType, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProgressList, SessionProgressState, SessionProgressTodo, SessionProgressTodoStatus, SessionProtocolMessage, SessionRole, SessionSummaryRefreshActiveRequest, SessionSummaryRefreshRecentEntry, SessionSummaryRefreshState, SessionSummaryState, SessionTurnEndStatus, SetColorRequest, SetColorResponse, SkillContent, SkillSummary, TailscaleInfo, TailscaleServeEntry, TaskOutcome, TaskPriority, TaskStatus, TaskStatusChanged, TaskStatusReport, TaskSummary, TaskTriggerData, TaskTriggerType, TerminalCloseRequest, TerminalExitPayload, TerminalInputPayload, TerminalOutputPayload, TerminalResizeRequest, TerminalSpawnRequest, TerminalSpawnResponse, TunnelEntry, TunnelProviderInfo, TunnelState, TurnKnowledgeExtraction, Update, UpdateBody, UpdateKnowledgeEntryBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UpdateSkillBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue, VoiceTokenResponse };
|
package/dist/index.d.mts
CHANGED
|
@@ -3726,9 +3726,60 @@ declare const GetContextUsageResponseSchema: z$1.ZodObject<{
|
|
|
3726
3726
|
tokens: z$1.ZodNumber;
|
|
3727
3727
|
isLoaded: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3728
3728
|
}, z$1.core.$strip>>;
|
|
3729
|
+
messageBreakdown: z$1.ZodOptional<z$1.ZodObject<{
|
|
3730
|
+
toolCallTokens: z$1.ZodNumber;
|
|
3731
|
+
toolResultTokens: z$1.ZodNumber;
|
|
3732
|
+
attachmentTokens: z$1.ZodNumber;
|
|
3733
|
+
assistantMessageTokens: z$1.ZodNumber;
|
|
3734
|
+
userMessageTokens: z$1.ZodNumber;
|
|
3735
|
+
redirectedContextTokens: z$1.ZodNumber;
|
|
3736
|
+
unattributedTokens: z$1.ZodNumber;
|
|
3737
|
+
toolCallsByType: z$1.ZodArray<z$1.ZodObject<{
|
|
3738
|
+
name: z$1.ZodString;
|
|
3739
|
+
callTokens: z$1.ZodNumber;
|
|
3740
|
+
resultTokens: z$1.ZodNumber;
|
|
3741
|
+
}, z$1.core.$strip>>;
|
|
3742
|
+
attachmentsByType: z$1.ZodArray<z$1.ZodObject<{
|
|
3743
|
+
name: z$1.ZodString;
|
|
3744
|
+
tokens: z$1.ZodNumber;
|
|
3745
|
+
}, z$1.core.$strip>>;
|
|
3746
|
+
}, z$1.core.$strip>>;
|
|
3747
|
+
systemPromptSections: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3748
|
+
name: z$1.ZodString;
|
|
3749
|
+
tokens: z$1.ZodNumber;
|
|
3750
|
+
}, z$1.core.$strip>>>;
|
|
3751
|
+
apiUsage: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
3752
|
+
inputTokens: z$1.ZodNumber;
|
|
3753
|
+
outputTokens: z$1.ZodNumber;
|
|
3754
|
+
cacheCreationInputTokens: z$1.ZodNumber;
|
|
3755
|
+
cacheReadInputTokens: z$1.ZodNumber;
|
|
3756
|
+
}, z$1.core.$strip>>>;
|
|
3729
3757
|
}, z$1.core.$strict>;
|
|
3730
3758
|
type GetContextUsageRequest = z$1.infer<typeof GetContextUsageRequestSchema>;
|
|
3731
3759
|
type GetContextUsageResponse = z$1.infer<typeof GetContextUsageResponseSchema>;
|
|
3760
|
+
declare const GetContextDetailRequestSchema: z$1.ZodObject<{
|
|
3761
|
+
category: z$1.ZodString;
|
|
3762
|
+
summaryOnly: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3763
|
+
subcategory: z$1.ZodOptional<z$1.ZodString>;
|
|
3764
|
+
}, z$1.core.$strict>;
|
|
3765
|
+
declare const GetContextDetailResponseSchema: z$1.ZodObject<{
|
|
3766
|
+
items: z$1.ZodArray<z$1.ZodObject<{
|
|
3767
|
+
type: z$1.ZodString;
|
|
3768
|
+
role: z$1.ZodOptional<z$1.ZodString>;
|
|
3769
|
+
content: z$1.ZodString;
|
|
3770
|
+
uuid: z$1.ZodOptional<z$1.ZodString>;
|
|
3771
|
+
timestamp: z$1.ZodOptional<z$1.ZodString>;
|
|
3772
|
+
}, z$1.core.$strip>>;
|
|
3773
|
+
category: z$1.ZodString;
|
|
3774
|
+
totalItems: z$1.ZodNumber;
|
|
3775
|
+
subcategories: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3776
|
+
name: z$1.ZodString;
|
|
3777
|
+
label: z$1.ZodString;
|
|
3778
|
+
count: z$1.ZodNumber;
|
|
3779
|
+
}, z$1.core.$strip>>>;
|
|
3780
|
+
}, z$1.core.$strict>;
|
|
3781
|
+
type GetContextDetailRequest = z$1.infer<typeof GetContextDetailRequestSchema>;
|
|
3782
|
+
type GetContextDetailResponse = z$1.infer<typeof GetContextDetailResponseSchema>;
|
|
3732
3783
|
declare const GetMcpServersRequestSchema: z$1.ZodObject<{}, z$1.core.$strict>;
|
|
3733
3784
|
declare const GetMcpServersResponseSchema: z$1.ZodObject<{
|
|
3734
3785
|
servers: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -3759,8 +3810,8 @@ type GetMcpServersResponse = z$1.infer<typeof GetMcpServersResponseSchema>;
|
|
|
3759
3810
|
* Method name enum — consumers should derive typed handlers from this.
|
|
3760
3811
|
* When adding a new method, update the CLI handler registration too.
|
|
3761
3812
|
*/
|
|
3762
|
-
declare const CLAUDE_CONTROL_METHODS: readonly ["get_session_cost", "get_binary_version", "set_color", "read_file", "mcp_call", "get_context_usage", "get_mcp_servers"];
|
|
3813
|
+
declare const CLAUDE_CONTROL_METHODS: readonly ["get_session_cost", "get_binary_version", "set_color", "read_file", "mcp_call", "get_context_usage", "get_mcp_servers", "get_context_detail"];
|
|
3763
3814
|
type ClaudeControlMethod = typeof CLAUDE_CONTROL_METHODS[number];
|
|
3764
3815
|
|
|
3765
|
-
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
3766
|
-
export type { AIBackendProfile, AgentLoopSummary, AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, AutoDreamProfileSummary, AutomationAuditEventSummary, AutomationAuditStats, AutomationCounts, AutomationGuardianSummary, AutomationGuardianUsageSummary, AutomationJobKind, AutomationJobStatus, AutomationJobSummary, AutomationPriority, AutomationState, BootstrapProfileSummary, BriefMessage, BuiltInAIBackendProfileId, ClaudeControlMethod, CliInstallInfo, CliInstallSource, CodexAccount, CodexAgentSummary, CodexBackendMode, CodexConfigMode, CodexExperimentalFeature, CodexMcpServerSummary, CodexMetadata, CodexPromptSummary, CodexRateLimits, CodexRequestedBackend, CodexResolvedBackend, CodexRuntimeConfig, CodexSkillSummary, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, CreateKnowledgeEntryBody, CreateSkillBody, CreateTaskBody, CrossProjectSearchResponse, CrossProjectSearchResult, DaemonState, GetBinaryVersionRequest, GetBinaryVersionResponse, GetContextUsageRequest, GetContextUsageResponse, GetMcpServersRequest, GetMcpServersResponse, GetSessionCostRequest, GetSessionCostResponse, HappyMcpCanonicalToolName, HappyMcpToolActionMode, HappyProfileEnvKey, InboxCategory, InboxItemSummary, InboxNewItem, InboxSeverity, InboxUnreadCount, KnowledgeAction, KnowledgeChainEntry, KnowledgeChainRelation, KnowledgeChainResponse, KnowledgeConfidence, KnowledgeContributorType, KnowledgeEntryType, KnowledgeInjectionMode, KnowledgeInjectionRequest, KnowledgeInjectionResponse, KnowledgeStatus, LegacyMessageContent, LiveKitTokenResponse, MachineMetadata, McpCallRequest, McpCallResponse, MessageContent, MessageMeta, ProjectProfile, QueryKnowledgeParams, ReadFileRequest, ReadFileResponse, ResolvedRuntimeProfile, RuntimeProfileSource, RuntimeProfileTrust, SessionContextUsageEvent, SessionEnvelope, SessionEvent, SessionEventCreated, SessionEventReport, SessionEventSummary, SessionEventType, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProgressList, SessionProgressState, SessionProgressTodo, SessionProgressTodoStatus, SessionProtocolMessage, SessionRole, SessionSummaryRefreshActiveRequest, SessionSummaryRefreshRecentEntry, SessionSummaryRefreshState, SessionSummaryState, SessionTurnEndStatus, SetColorRequest, SetColorResponse, SkillContent, SkillSummary, TailscaleInfo, TailscaleServeEntry, TaskOutcome, TaskPriority, TaskStatus, TaskStatusChanged, TaskStatusReport, TaskSummary, TaskTriggerData, TaskTriggerType, TerminalCloseRequest, TerminalExitPayload, TerminalInputPayload, TerminalOutputPayload, TerminalResizeRequest, TerminalSpawnRequest, TerminalSpawnResponse, TunnelEntry, TunnelProviderInfo, TunnelState, TurnKnowledgeExtraction, Update, UpdateBody, UpdateKnowledgeEntryBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UpdateSkillBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue, VoiceTokenResponse };
|
|
3816
|
+
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextDetailRequestSchema, GetContextDetailResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
3817
|
+
export type { AIBackendProfile, AgentLoopSummary, AgentMessage, ApiMessage, ApiUpdateMachineState, ApiUpdateNewMessage, ApiUpdateSessionState, AutoDreamProfileSummary, AutomationAuditEventSummary, AutomationAuditStats, AutomationCounts, AutomationGuardianSummary, AutomationGuardianUsageSummary, AutomationJobKind, AutomationJobStatus, AutomationJobSummary, AutomationPriority, AutomationState, BootstrapProfileSummary, BriefMessage, BuiltInAIBackendProfileId, ClaudeControlMethod, CliInstallInfo, CliInstallSource, CodexAccount, CodexAgentSummary, CodexBackendMode, CodexConfigMode, CodexExperimentalFeature, CodexMcpServerSummary, CodexMetadata, CodexPromptSummary, CodexRateLimits, CodexRequestedBackend, CodexResolvedBackend, CodexRuntimeConfig, CodexSkillSummary, CoreUpdateBody, CoreUpdateContainer, CreateEnvelopeOptions, CreateKnowledgeEntryBody, CreateSkillBody, CreateTaskBody, CrossProjectSearchResponse, CrossProjectSearchResult, DaemonState, GetBinaryVersionRequest, GetBinaryVersionResponse, GetContextDetailRequest, GetContextDetailResponse, GetContextUsageRequest, GetContextUsageResponse, GetMcpServersRequest, GetMcpServersResponse, GetSessionCostRequest, GetSessionCostResponse, HappyMcpCanonicalToolName, HappyMcpToolActionMode, HappyProfileEnvKey, InboxCategory, InboxItemSummary, InboxNewItem, InboxSeverity, InboxUnreadCount, KnowledgeAction, KnowledgeChainEntry, KnowledgeChainRelation, KnowledgeChainResponse, KnowledgeConfidence, KnowledgeContributorType, KnowledgeEntryType, KnowledgeInjectionMode, KnowledgeInjectionRequest, KnowledgeInjectionResponse, KnowledgeStatus, LegacyMessageContent, LiveKitTokenResponse, MachineMetadata, McpCallRequest, McpCallResponse, MessageContent, MessageMeta, ProjectProfile, QueryKnowledgeParams, ReadFileRequest, ReadFileResponse, ResolvedRuntimeProfile, RuntimeProfileSource, RuntimeProfileTrust, SessionContextUsageEvent, SessionEnvelope, SessionEvent, SessionEventCreated, SessionEventReport, SessionEventSummary, SessionEventType, SessionMessage, SessionMessageContent, SessionModelUsage, SessionProgressList, SessionProgressState, SessionProgressTodo, SessionProgressTodoStatus, SessionProtocolMessage, SessionRole, SessionSummaryRefreshActiveRequest, SessionSummaryRefreshRecentEntry, SessionSummaryRefreshState, SessionSummaryState, SessionTurnEndStatus, SetColorRequest, SetColorResponse, SkillContent, SkillSummary, TailscaleInfo, TailscaleServeEntry, TaskOutcome, TaskPriority, TaskStatus, TaskStatusChanged, TaskStatusReport, TaskSummary, TaskTriggerData, TaskTriggerType, TerminalCloseRequest, TerminalExitPayload, TerminalInputPayload, TerminalOutputPayload, TerminalResizeRequest, TerminalSpawnRequest, TerminalSpawnResponse, TunnelEntry, TunnelProviderInfo, TunnelState, TurnKnowledgeExtraction, Update, UpdateBody, UpdateKnowledgeEntryBody, UpdateMachineBody, UpdateNewMessageBody, UpdateSessionBody, UpdateSkillBody, UserMessage, VersionedEncryptedValue, VersionedMachineEncryptedValue, VersionedNullableEncryptedValue, VoiceTokenResponse };
|
package/dist/index.mjs
CHANGED
|
@@ -2104,7 +2104,86 @@ const GetContextUsageResponseSchema = z$1.object({
|
|
|
2104
2104
|
serverName: z$1.string(),
|
|
2105
2105
|
tokens: z$1.number().int().nonnegative(),
|
|
2106
2106
|
isLoaded: z$1.boolean().optional()
|
|
2107
|
-
}))
|
|
2107
|
+
})),
|
|
2108
|
+
/** Messages 内部 token 细分(SDK messageBreakdown)。仅 SDK 0.2.139+ 返回。 */
|
|
2109
|
+
messageBreakdown: z$1.object({
|
|
2110
|
+
toolCallTokens: z$1.number().int().nonnegative(),
|
|
2111
|
+
toolResultTokens: z$1.number().int().nonnegative(),
|
|
2112
|
+
attachmentTokens: z$1.number().int().nonnegative(),
|
|
2113
|
+
assistantMessageTokens: z$1.number().int().nonnegative(),
|
|
2114
|
+
userMessageTokens: z$1.number().int().nonnegative(),
|
|
2115
|
+
redirectedContextTokens: z$1.number().int().nonnegative(),
|
|
2116
|
+
unattributedTokens: z$1.number().int().nonnegative(),
|
|
2117
|
+
toolCallsByType: z$1.array(z$1.object({
|
|
2118
|
+
name: z$1.string(),
|
|
2119
|
+
callTokens: z$1.number().int().nonnegative(),
|
|
2120
|
+
resultTokens: z$1.number().int().nonnegative()
|
|
2121
|
+
})),
|
|
2122
|
+
attachmentsByType: z$1.array(z$1.object({
|
|
2123
|
+
name: z$1.string(),
|
|
2124
|
+
tokens: z$1.number().int().nonnegative()
|
|
2125
|
+
}))
|
|
2126
|
+
}).optional(),
|
|
2127
|
+
/** System Prompt 各段 token 细分。 */
|
|
2128
|
+
systemPromptSections: z$1.array(z$1.object({
|
|
2129
|
+
name: z$1.string(),
|
|
2130
|
+
tokens: z$1.number().int().nonnegative()
|
|
2131
|
+
})).optional(),
|
|
2132
|
+
/** API 实际用量(input/output/cache hit/miss)。 */
|
|
2133
|
+
apiUsage: z$1.object({
|
|
2134
|
+
inputTokens: z$1.number().int().nonnegative(),
|
|
2135
|
+
outputTokens: z$1.number().int().nonnegative(),
|
|
2136
|
+
cacheCreationInputTokens: z$1.number().int().nonnegative(),
|
|
2137
|
+
cacheReadInputTokens: z$1.number().int().nonnegative()
|
|
2138
|
+
}).nullable().optional()
|
|
2139
|
+
}).strict();
|
|
2140
|
+
const GetContextDetailRequestSchema = z$1.object({
|
|
2141
|
+
/**
|
|
2142
|
+
* Category name from getContextUsage (e.g. "Messages", "System prompt",
|
|
2143
|
+
* "Skills", "Custom agents", "Autocompact buffer", "Memory files").
|
|
2144
|
+
*/
|
|
2145
|
+
category: z$1.string().min(1).max(128),
|
|
2146
|
+
/**
|
|
2147
|
+
* When true, return only subcategory counts (no item content).
|
|
2148
|
+
* Only meaningful for the "Messages" category.
|
|
2149
|
+
*/
|
|
2150
|
+
summaryOnly: z$1.boolean().optional(),
|
|
2151
|
+
/**
|
|
2152
|
+
* Filter to a specific subcategory within "Messages".
|
|
2153
|
+
* One of: "user", "system-reminder", "assistant".
|
|
2154
|
+
*/
|
|
2155
|
+
subcategory: z$1.string().optional()
|
|
2156
|
+
}).strict();
|
|
2157
|
+
const GetContextDetailResponseSchema = z$1.object({
|
|
2158
|
+
/** Parsed JSONL records for the requested category. Empty when summaryOnly=true. */
|
|
2159
|
+
items: z$1.array(z$1.object({
|
|
2160
|
+
/** JSONL record type (user, assistant, attachment, system, summary, etc.) */
|
|
2161
|
+
type: z$1.string(),
|
|
2162
|
+
/** Role when applicable (user / assistant) */
|
|
2163
|
+
role: z$1.string().optional(),
|
|
2164
|
+
/** Full text content of the record. Truncated at 50 KB per item. */
|
|
2165
|
+
content: z$1.string(),
|
|
2166
|
+
/** UUID of the JSONL record */
|
|
2167
|
+
uuid: z$1.string().optional(),
|
|
2168
|
+
/** ISO timestamp of the record */
|
|
2169
|
+
timestamp: z$1.string().optional()
|
|
2170
|
+
})),
|
|
2171
|
+
/** Category name echoed back for display */
|
|
2172
|
+
category: z$1.string(),
|
|
2173
|
+
/** Total number of matching items */
|
|
2174
|
+
totalItems: z$1.number().int().nonnegative(),
|
|
2175
|
+
/**
|
|
2176
|
+
* Subcategory breakdown for "Messages" when summaryOnly=true.
|
|
2177
|
+
* Each entry has a key, display label, and item count.
|
|
2178
|
+
*/
|
|
2179
|
+
subcategories: z$1.array(z$1.object({
|
|
2180
|
+
/** Subcategory key: "user" | "system-reminder" | "assistant" */
|
|
2181
|
+
name: z$1.string(),
|
|
2182
|
+
/** Human-readable label */
|
|
2183
|
+
label: z$1.string(),
|
|
2184
|
+
/** Number of items in this subcategory */
|
|
2185
|
+
count: z$1.number().int().nonnegative()
|
|
2186
|
+
})).optional()
|
|
2108
2187
|
}).strict();
|
|
2109
2188
|
const GetMcpServersRequestSchema = z$1.object({}).strict();
|
|
2110
2189
|
const GetMcpServersResponseSchema = z$1.object({
|
|
@@ -2128,7 +2207,8 @@ const CLAUDE_CONTROL_METHODS = [
|
|
|
2128
2207
|
"read_file",
|
|
2129
2208
|
"mcp_call",
|
|
2130
2209
|
"get_context_usage",
|
|
2131
|
-
"get_mcp_servers"
|
|
2210
|
+
"get_mcp_servers",
|
|
2211
|
+
"get_context_detail"
|
|
2132
2212
|
];
|
|
2133
2213
|
|
|
2134
|
-
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|
|
2214
|
+
export { AIBackendProfileSchema, AgentLoopSummarySchema, AgentMessageSchema, AnthropicConfigSchema, ApiMessageSchema, ApiUpdateMachineStateSchema, ApiUpdateNewMessageSchema, ApiUpdateSessionStateSchema, AutoDreamProfileSummarySchema, AutomationAuditEventSummarySchema, AutomationAuditStatsSchema, AutomationCountsSchema, AutomationGuardianSummarySchema, AutomationGuardianUsageSummarySchema, AutomationJobKindSchema, AutomationJobStatusSchema, AutomationJobSummarySchema, AutomationPrioritySchema, AutomationStateSchema, AzureOpenAIConfigSchema, BUILT_IN_AI_BACKEND_PROFILE_IDS, BootstrapProfileSummarySchema, BriefMessageSchema, BuiltInAIBackendProfileIdSchema, CLAUDE_CONTROL_METHODS, CLAUDE_CONTROL_SCOPE, CODEX_APP_SERVER_BACKEND, CODEX_MCP_LEGACY_BACKEND, CODEX_REQUESTED_BACKEND_ALIASES, CliInstallInfoSchema, CliInstallSourceSchema, CodexAccountSchema, CodexAgentSummarySchema, CodexBackendModeSchema, CodexConfigModeSchema, CodexConfigSchema, CodexExperimentalFeatureSchema, CodexMcpServerSummarySchema, CodexMetadataSchema, CodexPromptSummarySchema, CodexRateLimitsSchema, CodexRequestedBackendSchema, CodexResolvedBackendSchema, CodexRuntimeConfigSchema, CodexSkillSummarySchema, CoreUpdateBodySchema, CoreUpdateContainerSchema, CreateKnowledgeEntryBodySchema, CreateSkillBodySchema, CreateTaskBodySchema, CrossProjectSearchResponseSchema, CrossProjectSearchResultSchema, CustomModelSchema, DaemonStateSchema, DefaultPermissionModeSchema, EnvironmentVariableSchema, GetBinaryVersionRequestSchema, GetBinaryVersionResponseSchema, GetContextDetailRequestSchema, GetContextDetailResponseSchema, GetContextUsageRequestSchema, GetContextUsageResponseSchema, GetMcpServersRequestSchema, GetMcpServersResponseSchema, GetSessionCostRequestSchema, GetSessionCostResponseSchema, HAPPY_MCP_AUTO_APPROVE_TOOL_NAMES, HAPPY_MCP_SILENT_SUCCESS_TOOL_NAMES, HAPPY_MCP_TOOL_NAMES, HAPPY_MCP_TOOL_SPECS, HAPPY_PROFILE_ENV_KEYS, InboxCategorySchema, InboxItemSummarySchema, InboxNewItemSchema, InboxSeveritySchema, InboxUnreadCountSchema, KnowledgeActionSchema, KnowledgeChainEntrySchema, KnowledgeChainRelationSchema, KnowledgeChainResponseSchema, KnowledgeConfidenceSchema, KnowledgeContributorTypeSchema, KnowledgeEntryTypeSchema, KnowledgeInjectionModeSchema, KnowledgeInjectionRequestSchema, KnowledgeInjectionResponseSchema, KnowledgeStatusSchema, LegacyMessageContentSchema, LiveKitTokenResponseSchema, MachineMetadataSchema, McpCallRequestSchema, McpCallResponseSchema, MessageContentSchema, MessageMetaSchema, OpenAIConfigSchema, ProfileCompatibilitySchema, ProjectProfileSchema, QueryKnowledgeParamsSchema, RESOLVED_RUNTIME_PROFILE_SCHEMA_VERSION, ReadFileRequestSchema, ReadFileResponseSchema, ResolvedRuntimeProfileSchema, RuntimeProfileSourceSchema, RuntimeProfileTrustSchema, SessionEventCreatedSchema, SessionEventReportSchema, SessionEventSummarySchema, SessionEventTypeSchema, SessionMessageContentSchema, SessionMessageSchema, SessionProtocolMessageSchema, SetColorRequestSchema, SetColorResponseSchema, SkillContentSchema, SkillSummarySchema, TailscaleInfoSchema, TailscaleServeEntrySchema, TaskOutcomeSchema, TaskPrioritySchema, TaskStatusChangedSchema, TaskStatusReportSchema, TaskStatusSchema, TaskSummarySchema, TaskTriggerDataSchema, TaskTriggerTypeSchema, TmuxConfigSchema, TogetherAIConfigSchema, TunnelEntrySchema, TunnelProviderInfoSchema, TunnelStateSchema, TurnKnowledgeExtractionSchema, UpdateBodySchema, UpdateKnowledgeEntryBodySchema, UpdateMachineBodySchema, UpdateNewMessageBodySchema, UpdateSchema, UpdateSessionBodySchema, UpdateSkillBodySchema, UserMessageSchema, VersionedEncryptedValueSchema, VersionedMachineEncryptedValueSchema, VersionedNullableEncryptedValueSchema, VoiceTokenAllowedSchema, VoiceTokenDeniedSchema, VoiceTokenResponseSchema, createEnvelope, createResolvedRuntimeProfile, getBuiltInAIBackendProfile, getHappyMcpToolAction, getHappyMcpToolAliases, getHappyMcpToolTitle, getProfileEnvironmentVariables, isCodexAppServerBackend, isCodexLegacyBackend, isHappyMcpToolAlias, isHappyMcpToolName, isTrustedRuntimeProfile, normalizeHappyMcpToolName, normalizeResolvedRuntimeProfile, resolveCodexResolvedBackend, resolveCodexResumableThreadId, resolveRequestedCodexBackend, sessionContextUsageCategorySchema, sessionContextUsageEventSchema, sessionEnvelopeSchema, sessionEventSchema, sessionFileEventSchema, sessionModelUsageSchema, sessionNeedsContinueEventSchema, sessionProgressListSchema, sessionProgressStateSchema, sessionProgressTodoSchema, sessionProgressTodoStatusSchema, sessionPromptSuggestionEventSchema, sessionRoleSchema, sessionServiceMessageEventSchema, sessionStartEventSchema, sessionStateChangedEventSchema, sessionStopEventSchema, sessionSummaryRefreshActiveRequestSchema, sessionSummaryRefreshRecentEntrySchema, sessionSummaryRefreshStateSchema, sessionSummaryStateSchema, sessionTaskEndEventSchema, sessionTaskLogEventSchema, sessionTaskProgressEventSchema, sessionTaskStartEventSchema, sessionTextDeltaEventSchema, sessionTextEventSchema, sessionToolCallEndEventSchema, sessionToolCallStartEventSchema, sessionToolProgressEventSchema, sessionTurnEndEventSchema, sessionTurnEndStatusSchema, sessionTurnStartEventSchema, sessionUsageUpdateEventSchema, shouldAutoApproveHappyMcpReason, shouldAutoApproveHappyMcpToolName, shouldHideSuccessfulHappyMcpTool, terminalCloseRequestSchema, terminalExitPayloadSchema, terminalInputPayloadSchema, terminalOutputPayloadSchema, terminalResizeRequestSchema, terminalSpawnRequestSchema, terminalSpawnResponseSchema, validateProfileForAgent };
|