@tansr/serve 0.6.0 → 0.6.1

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +100 -2
  2. package/dist/index.js +1229 -354
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -12130,6 +12130,104 @@ declare function createMemoryBlobStore(options?: MemoryBlobStoreOptions): Segmen
12130
12130
  keys(): string[];
12131
12131
  };
12132
12132
 
12133
+ interface FsBlobStoreOptions {
12134
+ /** 根目录(不存在则首次操作创建);只作冷层 */
12135
+ dir: string;
12136
+ /** 覆写能力自述(测试用,如模拟无条件写后端;行为不随之变——一致性测试套据此揭示「自述不实」) */
12137
+ capabilities?: Partial<BlobStoreCapabilities>;
12138
+ }
12139
+ declare function createFsBlobStore(options: FsBlobStoreOptions): SegmentBlobStore;
12140
+
12141
+ interface StorageConformanceOptions {
12142
+ /** 大对象体量;缺省 16 MiB(正式认证建议 1 GiB) */
12143
+ largeObjectBytes?: number;
12144
+ /** 大对象 put / get 各自允许的 RSS 峰值增量;缺省 64 MiB */
12145
+ rssBudgetBytes?: number;
12146
+ /** list 最终一致可见窗口;0 = 须立即可见;缺省 0 */
12147
+ eventualConsistencyMs?: number;
12148
+ /** 隔离前缀;缺省 `conformance-<random>` */
12149
+ keyPrefix?: string;
12150
+ /** 并发封存用例的键数;缺省 16 */
12151
+ concurrency?: number;
12152
+ /** 结束时不清理(排障) */
12153
+ keepObjects?: boolean;
12154
+ signal?: AbortSignal;
12155
+ }
12156
+ interface StorageConformanceCase {
12157
+ id: string;
12158
+ passed: boolean;
12159
+ detail: string;
12160
+ /** 因能力自述不适用而跳过(计 passed) */
12161
+ skipped?: boolean;
12162
+ durationMs: number;
12163
+ }
12164
+ interface StorageConformanceReport {
12165
+ cases: StorageConformanceCase[];
12166
+ /** 全部用例 passed */
12167
+ passed: boolean;
12168
+ capabilities: BlobStoreCapabilities;
12169
+ startedAt: string;
12170
+ durationMs: number;
12171
+ }
12172
+ declare function runStorageConformance(store: SegmentBlobStore, options?: StorageConformanceOptions): Promise<StorageConformanceReport>;
12173
+
12174
+ /**
12175
+ * 混沌包装器 `createChaosBlobStore(inner, faults)`(doc/119 IO-14)——把任一 `SegmentBlobStore` 包成
12176
+ * 会出故障的后端,供一致性测试套 / 对抗验收(doc/119 §1.2 A1–A14)注入:
12177
+ *
12178
+ * failPut put 立即失败(true / 按键谓词 / 前 N 次),kind = putErrorKind(缺省 transient)
12179
+ * failPutAfterBytes put 消费体到 N 字节后失败(连接中断;体已部分读出,不得留半对象)
12180
+ * putErrorKind 注入的 put 失败分类(transient | permanent | not_found | precondition_failed)
12181
+ * eventualListLagMs list 对「最近 lag 毫秒内 put 的键」不可见(最终一致);capabilities.consistency 报 eventual
12182
+ * dropListEntries list 丢项(按键谓词 / 概率 0–1)
12183
+ * corruptSegmentKeys get 对匹配键返回翻转首字节的体(篡改;A4)
12184
+ * abortMidStream get 的流在首块之后以 transient 出错(下载中断;A7)
12185
+ * latencyMs 每次调用前延迟(定值 / [min,max] 均匀)
12186
+ *
12187
+ * `faults` 对象**按引用持有**,测试可运行时翻转(如愈合 failPut 观察追平);`stats` 记各类注入次数。
12188
+ * 不改语义的调用原样透传;内层错误原样上抛(不二次包装)。
12189
+ */
12190
+
12191
+ type KeyPredicate = boolean | ((key: string) => boolean);
12192
+ interface ChaosFaults {
12193
+ /** put 立即失败:true / 按键谓词 / 数字 = 前 N 次 put 失败 */
12194
+ failPut?: KeyPredicate | number;
12195
+ /** put 读体至 N 字节后失败(不留半对象) */
12196
+ failPutAfterBytes?: number;
12197
+ /** 注入的 put 失败分类;缺省 transient */
12198
+ putErrorKind?: StoreErrorKind;
12199
+ /** transient 时附带的 retryAfterMs 提示 */
12200
+ retryAfterMs?: number;
12201
+ /** list 对最近 lag 毫秒内 put 的键不可见 */
12202
+ eventualListLagMs?: number;
12203
+ /** list 丢项:按键谓词 / 概率(0–1) */
12204
+ dropListEntries?: KeyPredicate | number;
12205
+ /** get 返回篡改体(首字节翻转)的键 */
12206
+ corruptSegmentKeys?: KeyPredicate;
12207
+ /** get 流在首块后以 transient 出错 */
12208
+ abortMidStream?: KeyPredicate;
12209
+ /** 每次调用前延迟 */
12210
+ latencyMs?: number | {
12211
+ min: number;
12212
+ max: number;
12213
+ };
12214
+ }
12215
+ interface ChaosStats {
12216
+ putFailures: number;
12217
+ putTruncated: number;
12218
+ listHidden: number;
12219
+ listDropped: number;
12220
+ corruptedGets: number;
12221
+ abortedGets: number;
12222
+ calls: Record<'put' | 'get' | 'head' | 'list' | 'delete', number>;
12223
+ }
12224
+ interface ChaosBlobStore extends SegmentBlobStore {
12225
+ readonly faults: ChaosFaults;
12226
+ readonly stats: ChaosStats;
12227
+ readonly inner: SegmentBlobStore;
12228
+ }
12229
+ declare function createChaosBlobStore(inner: SegmentBlobStore, faults?: ChaosFaults, now?: () => number): ChaosBlobStore;
12230
+
12133
12231
  /** 会话身份(冷层键形 `<tenant>/<endUserKey>/<sessionId>/<volumeId>/…` 与清单分域所需)+ 热层目录 */
12134
12232
  interface ColdSessionRef {
12135
12233
  sessionId: string;
@@ -18559,5 +18657,5 @@ declare function alignHistoryPage(messages: readonly IRMessage[], offset: number
18559
18657
  */
18560
18658
  declare function sliceHistoryPage(messages: readonly IRMessage[], offset: number, limit: number | undefined): HistoryPage;
18561
18659
 
18562
- export { AGENT_SESSION_CONTRACT_VERSION, AUDIO_INPUT_PATTERN, AUDIO_LANGUAGE_MAX_CHARS, AUDIO_MAX_BODY_BYTES, AUDIO_PROMPT_MAX_CHARS, AUDIO_ROUTE_SEGMENTS, AUDIO_SPEECH_FORMATS, AUDIO_SPEECH_INPUT_MAX_CHARS, AUDIO_VOICE_MAX_CHARS, AgentSessionBridge, AgentSessionCreateError, AgentSessionStoreError, AppTokenMintError, AudioSpeechBodySchema, AudioTranscriptionsBodySchema, BUILTIN_CAPABILITY_PROFILES, CHECKPOINT_EXPORT_CONTENT_TYPE, CHECKPOINT_IMPORT_MAX_BODY_BYTES, CHECKPOINT_IMPORT_SEGMENT, CHECKPOINT_LABEL_MAX_CHARS, CLIENT_TOOL_NAME_PATTERN, COMPACT_INSTRUCTIONS_MAX_CHARS, CONTROL_FRAME, CheckpointBodySchema, CheckpointOptionSchema, ClientToolDeclSchema, ClientToolNameConflictError, CompactBodySchema, CreateSessionBodySchema, DEFAULT_BUNDLE_CACHE_TTL_MS, DEFAULT_SSE_FLUSH_SLICE_MS, DEFAULT_SSE_HEARTBEAT_MS, DEFAULT_SSE_RETRY_MS, END_USER_ID_PATTERN, EXCLUDE_TOKEN_PATTERN, EventRingBuffer, IMAGE_MIME_PATTERN, ImageGenDataSchema, LOG_EVENT, LOG_EVENT_NAMES, MemorySessionEventLog, MessageBlockSchema, MessagesBodySchema, OBSERVABILITY_PATHS, OPENMETRICS_CONTENT_TYPE, PermissionReceiptSchema, QuestionReceiptSchema, REPLAY_GAP_EVENT, REQUEST_ID_HEADER, ReceiptContentSchema, RestoreBodySchema, SEGMENTED_STORE_DEFAULTS, SERVER_MESSAGE_KEY, SERVER_MESSAGE_KEYS, SERVE_RUNTIME_ENV, SERVE_RUNTIME_ENV_NAMES, SESSION_ID_SHARD_MAX, ServeSessionDriver, SetCwdBodySchema, SpeechDataSchema, SseTransport, StoreError, TURN_END_NOTIFY_SIGNATURE_HEADER, ToolParameterSpecSchema, ToolResultReceiptSchema, TranscriptDataSchema, TurnEndNotifier, V2_ASSEMBLY_MESSAGE_KEY, V2_ASSEMBLY_MESSAGE_KEYS, V2_CTX_PERSIST_MESSAGE_KEY, V2_CTX_PERSIST_MESSAGE_KEYS, V2_ERROR_CODE, V2_LIMITS, VideoGenDataSchema, alignHistoryPage, appliedRuntimeEnvByGroup, assertSessionIdShard, buildRemoteTool, createAgentSessionFactory, createAppTokenMinter, createBundleCache, createMemoryBlobStore, createMetricsRegistry, createPlatformServeSessionFactory, createPlatformSessionAssembler, createServeAgentSessionStore, createServeCheckpointStore, createUpstreamGovernor, defaultMetrics, encodeAgentStreamFrame, encodeKernelEventFrame, encodeSseComment, encodeSseFrame, endUserKeyOf, extractBearerToken, getRequestContext, isAuthorized, isControlFrameType, isExcluded, isLoopbackHost, isSessionHistoryStore, kernelMetricsFor, negotiateLocale, parseExcludeTokens, parseHistoryPageQuery, parseMediaArtifact, registerBuiltinLocales, rejectionCodeOf, renderOpenMetrics, resolvePlatformAdjudicator, resolveRequestId, resolveServeRuntimeOptions, resolveUpstreamFetch, routeTemplateOf, runIdleCompaction, serveMetricsFor, sessionIdShardOf, sessionIdShardPrefix, sessionTitleOf, setLocale, shardedSessionId, sliceHistoryPage, slowSubscriberGapFrame, startServer, sumRingStats, toCheckpointMetaView, toStoreError, tokenMatches, translateMintError, translateUpstreamAssemblyErrors, upstreamAgentOptions, upstreamOriginOf };
18563
- export type { AdjudicationPosture, AdmissionDecision, AdmissionOptions, AdmissionReadiness, AdmissionRejectReason, AdmissionStats, AgentCheckpointOptions, AgentCheckpointResult, AgentCheckpointStore, AgentCheckpointsOptions, AgentCompactOptions, AgentCompactResult, AgentControlEvent, AgentCreateErrorCode, AgentCwdPolicy, AgentDeleteCheckpointResult, AgentExportCheckpointResult, AgentGovernanceOptions, AgentGovernanceStats, AgentImportCheckpointOptions, AgentImportCheckpointResult, AgentInterruptOptions, AgentInterruptSource, AgentListCheckpointsResult, AgentPlatformAudioFace, AgentPlatformAudioResult, AgentRestoreOptions, AgentRestoreResult, AgentSessionBridgeOptions, AgentSessionCreateInit, AgentSessionCreateResult, AgentSessionFactory, AgentSessionFactoryBuild, AgentSessionHandle, AgentSessionsOptions, AgentSetCwdResult, AgentStoreCommitMeta, AgentStoreForkInput, AgentStoreReader, AgentStoredCwdChange, AgentStoredSessionMeta, AgentStoredSessionRecord, AgentStreamEvent, AlignedHistoryPage, AppTokenMintErrorKind, AppTokenMinter, AppTokenMinterStats, ApprovalCredentialSink, AssembledBundleAdjudicator, AssembledSessionModel, AttachOptions, AudioRouteSegment, AudioSpeechBody, AudioTranscriptionsBody, AuxFastSource, BlobListEntry, BlobMeta, BlobStoreCapabilities, BundleCache, BundleCacheStats, ByteRange, CheckpointBody, ClientToolDecl, StoredSessionMeta$1 as ColdStoredSessionMeta, ColdTierEvent, ColdTierEventType, ColdTierStats, CompactBody, ControlFrameName, ControlFramePayload, CounterMetric, CreateAgentSessionFactoryOptions, CreateAppTokenMinterOptions, CreateBundleCacheOptions, CreatePlatformSessionAssemblerOptions, CreateServeAgentSessionStoreOptions, CreateServeCheckpointStoreOptions, CreateSessionBody, DrainOptions, DrainReport, EventRingBufferOptions, EventRingBufferStats, GaugeMetric, HistogramMetric, HistoryPage, HistoryPageQuery, HttpServerOptions, IdleCompactionInput, IdleCompactionResult, ImageGenData, LoadQuery, LoadResult, LogEventName, MediaArtifact, MemoryBlobStoreOptions, MessageBlock, MessagesBody, MetricLabels, MetricSnapshot, MetricsRegistry, MetricsSnapshot, OverloadReason, ParsedHistoryQuery, PermissionReceipt, PermissionRequestPayload, PlatformAdjudicationOptions, PlatformAgentSessionOptions, PlatformServeSessionFactoryOptions, PlatformSessionAssemblerInput, PlatformUpstreamStats, PutOptions, PutResult, QuestionReceipt, QuestionRequestPayload, RateLimitDecision, ReadinessProbe, ReceiptOutcome, RemoteToolBuild, ReplayGapNotice, RequestClosedPayload, RequestContext, RestoreBody, RingBufferSummary, SegmentBlobStore, SegmentedStorePolicy, ServeAgentSessionStore, ServeCwdRebinder, ServeIdleCompactOptions, ServeIdleCompactResult, ServeLogFormat, ServeLogLevel, ServeLogger, ServeMetrics, ServeObservabilityOptions, ServeRestoreHistoryResult, ServeRuntimeEnvGroup, ServeRuntimeEnvKind, ServeRuntimeEnvSpec, ServeRuntimeEnvWarning, ServeRuntimeOptions, ServeRuntimeServerOptions, ServeRuntimeSessionOptions, ServeRuntimeV2Options, ServeSessionDriverOptions, ServeSessionExtras, ServeSessionFactory, ServeSetCwdResult, ServeStats, ServeTurnEndInfo, ServerHandle, SessionEventLog, SessionEventLogContext, SessionEventLogFactory, SessionEventLogRead, SessionFactory, SessionGovernanceStats, SessionHandle, SessionHistoryStore, SessionIndexStore, SessionInit, SessionModelAssembler, SessionSendOutcome, SetCwdBody, SharedMcpTool, SpeechData, SseFrame, SseOptions, SseTransportOptions, SseTransportStats, StartServerOptions, StoreErrorKind, StoreErrorOptions, StoreInput, StoredSessionMeta, StreamTransform, SubscriberWriter, SubscriberWriterStats, SubscribersGoneContext, SubscribersGoneDecision, ToolCancelPayload, ToolRequestPayload, ToolResultReceipt, TranscriptData, TurnEndNotifierBreakerState, TurnEndNotifierOptions, TurnEndNotifierStats, TurnEndNotifyFailure, TurnEndNotifyPayload, TurnEndNotifyStatus, UpstreamGovernor, UpstreamGovernorEvent, UpstreamGovernorLike, UpstreamGovernorOptions, UpstreamGovernorStats, UpstreamOriginStats, UpstreamRejectReason, V1GovernanceOptions, V1SessionsOptions, V2CheckpointList, V2CheckpointMeta, V2CompactResult, V2ErrorCode, V2RestoreResult, V2SessionMetaView, V2SessionStatus, V2SetCwdResult, VideoGenData, WireToolParameterSpec };
18660
+ export { AGENT_SESSION_CONTRACT_VERSION, AUDIO_INPUT_PATTERN, AUDIO_LANGUAGE_MAX_CHARS, AUDIO_MAX_BODY_BYTES, AUDIO_PROMPT_MAX_CHARS, AUDIO_ROUTE_SEGMENTS, AUDIO_SPEECH_FORMATS, AUDIO_SPEECH_INPUT_MAX_CHARS, AUDIO_VOICE_MAX_CHARS, AgentSessionBridge, AgentSessionCreateError, AgentSessionStoreError, AppTokenMintError, AudioSpeechBodySchema, AudioTranscriptionsBodySchema, BUILTIN_CAPABILITY_PROFILES, CHECKPOINT_EXPORT_CONTENT_TYPE, CHECKPOINT_IMPORT_MAX_BODY_BYTES, CHECKPOINT_IMPORT_SEGMENT, CHECKPOINT_LABEL_MAX_CHARS, CLIENT_TOOL_NAME_PATTERN, COMPACT_INSTRUCTIONS_MAX_CHARS, CONTROL_FRAME, CheckpointBodySchema, CheckpointOptionSchema, ClientToolDeclSchema, ClientToolNameConflictError, CompactBodySchema, CreateSessionBodySchema, DEFAULT_BUNDLE_CACHE_TTL_MS, DEFAULT_SSE_FLUSH_SLICE_MS, DEFAULT_SSE_HEARTBEAT_MS, DEFAULT_SSE_RETRY_MS, END_USER_ID_PATTERN, EXCLUDE_TOKEN_PATTERN, EventRingBuffer, IMAGE_MIME_PATTERN, ImageGenDataSchema, LOG_EVENT, LOG_EVENT_NAMES, MemorySessionEventLog, MessageBlockSchema, MessagesBodySchema, OBSERVABILITY_PATHS, OPENMETRICS_CONTENT_TYPE, PermissionReceiptSchema, QuestionReceiptSchema, REPLAY_GAP_EVENT, REQUEST_ID_HEADER, ReceiptContentSchema, RestoreBodySchema, SEGMENTED_STORE_DEFAULTS, SERVER_MESSAGE_KEY, SERVER_MESSAGE_KEYS, SERVE_RUNTIME_ENV, SERVE_RUNTIME_ENV_NAMES, SESSION_ID_SHARD_MAX, ServeSessionDriver, SetCwdBodySchema, SpeechDataSchema, SseTransport, StoreError, TURN_END_NOTIFY_SIGNATURE_HEADER, ToolParameterSpecSchema, ToolResultReceiptSchema, TranscriptDataSchema, TurnEndNotifier, V2_ASSEMBLY_MESSAGE_KEY, V2_ASSEMBLY_MESSAGE_KEYS, V2_CTX_PERSIST_MESSAGE_KEY, V2_CTX_PERSIST_MESSAGE_KEYS, V2_ERROR_CODE, V2_LIMITS, VideoGenDataSchema, alignHistoryPage, appliedRuntimeEnvByGroup, assertSessionIdShard, buildRemoteTool, createAgentSessionFactory, createAppTokenMinter, createBundleCache, createChaosBlobStore, createFsBlobStore, createMemoryBlobStore, createMetricsRegistry, createPlatformServeSessionFactory, createPlatformSessionAssembler, createServeAgentSessionStore, createServeCheckpointStore, createUpstreamGovernor, defaultMetrics, encodeAgentStreamFrame, encodeKernelEventFrame, encodeSseComment, encodeSseFrame, endUserKeyOf, extractBearerToken, getRequestContext, isAuthorized, isControlFrameType, isExcluded, isLoopbackHost, isSessionHistoryStore, kernelMetricsFor, negotiateLocale, parseExcludeTokens, parseHistoryPageQuery, parseMediaArtifact, registerBuiltinLocales, rejectionCodeOf, renderOpenMetrics, resolvePlatformAdjudicator, resolveRequestId, resolveServeRuntimeOptions, resolveUpstreamFetch, routeTemplateOf, runIdleCompaction, runStorageConformance, serveMetricsFor, sessionIdShardOf, sessionIdShardPrefix, sessionTitleOf, setLocale, shardedSessionId, sliceHistoryPage, slowSubscriberGapFrame, startServer, sumRingStats, toCheckpointMetaView, toStoreError, tokenMatches, translateMintError, translateUpstreamAssemblyErrors, upstreamAgentOptions, upstreamOriginOf };
18661
+ export type { AdjudicationPosture, AdmissionDecision, AdmissionOptions, AdmissionReadiness, AdmissionRejectReason, AdmissionStats, AgentCheckpointOptions, AgentCheckpointResult, AgentCheckpointStore, AgentCheckpointsOptions, AgentCompactOptions, AgentCompactResult, AgentControlEvent, AgentCreateErrorCode, AgentCwdPolicy, AgentDeleteCheckpointResult, AgentExportCheckpointResult, AgentGovernanceOptions, AgentGovernanceStats, AgentImportCheckpointOptions, AgentImportCheckpointResult, AgentInterruptOptions, AgentInterruptSource, AgentListCheckpointsResult, AgentPlatformAudioFace, AgentPlatformAudioResult, AgentRestoreOptions, AgentRestoreResult, AgentSessionBridgeOptions, AgentSessionCreateInit, AgentSessionCreateResult, AgentSessionFactory, AgentSessionFactoryBuild, AgentSessionHandle, AgentSessionsOptions, AgentSetCwdResult, AgentStoreCommitMeta, AgentStoreForkInput, AgentStoreReader, AgentStoredCwdChange, AgentStoredSessionMeta, AgentStoredSessionRecord, AgentStreamEvent, AlignedHistoryPage, AppTokenMintErrorKind, AppTokenMinter, AppTokenMinterStats, ApprovalCredentialSink, AssembledBundleAdjudicator, AssembledSessionModel, AttachOptions, AudioRouteSegment, AudioSpeechBody, AudioTranscriptionsBody, AuxFastSource, BlobListEntry, BlobMeta, BlobStoreCapabilities, BundleCache, BundleCacheStats, ByteRange, ChaosBlobStore, ChaosFaults, ChaosStats, CheckpointBody, ClientToolDecl, StoredSessionMeta$1 as ColdStoredSessionMeta, ColdTierEvent, ColdTierEventType, ColdTierStats, CompactBody, ControlFrameName, ControlFramePayload, CounterMetric, CreateAgentSessionFactoryOptions, CreateAppTokenMinterOptions, CreateBundleCacheOptions, CreatePlatformSessionAssemblerOptions, CreateServeAgentSessionStoreOptions, CreateServeCheckpointStoreOptions, CreateSessionBody, DrainOptions, DrainReport, EventRingBufferOptions, EventRingBufferStats, FsBlobStoreOptions, GaugeMetric, HistogramMetric, HistoryPage, HistoryPageQuery, HttpServerOptions, IdleCompactionInput, IdleCompactionResult, ImageGenData, KeyPredicate, LoadQuery, LoadResult, LogEventName, MediaArtifact, MemoryBlobStoreOptions, MessageBlock, MessagesBody, MetricLabels, MetricSnapshot, MetricsRegistry, MetricsSnapshot, OverloadReason, ParsedHistoryQuery, PermissionReceipt, PermissionRequestPayload, PlatformAdjudicationOptions, PlatformAgentSessionOptions, PlatformServeSessionFactoryOptions, PlatformSessionAssemblerInput, PlatformUpstreamStats, PutOptions, PutResult, QuestionReceipt, QuestionRequestPayload, RateLimitDecision, ReadinessProbe, ReceiptOutcome, RemoteToolBuild, ReplayGapNotice, RequestClosedPayload, RequestContext, RestoreBody, RingBufferSummary, SegmentBlobStore, SegmentedStorePolicy, ServeAgentSessionStore, ServeCwdRebinder, ServeIdleCompactOptions, ServeIdleCompactResult, ServeLogFormat, ServeLogLevel, ServeLogger, ServeMetrics, ServeObservabilityOptions, ServeRestoreHistoryResult, ServeRuntimeEnvGroup, ServeRuntimeEnvKind, ServeRuntimeEnvSpec, ServeRuntimeEnvWarning, ServeRuntimeOptions, ServeRuntimeServerOptions, ServeRuntimeSessionOptions, ServeRuntimeV2Options, ServeSessionDriverOptions, ServeSessionExtras, ServeSessionFactory, ServeSetCwdResult, ServeStats, ServeTurnEndInfo, ServerHandle, SessionEventLog, SessionEventLogContext, SessionEventLogFactory, SessionEventLogRead, SessionFactory, SessionGovernanceStats, SessionHandle, SessionHistoryStore, SessionIndexStore, SessionInit, SessionModelAssembler, SessionSendOutcome, SetCwdBody, SharedMcpTool, SpeechData, SseFrame, SseOptions, SseTransportOptions, SseTransportStats, StartServerOptions, StorageConformanceCase, StorageConformanceOptions, StorageConformanceReport, StoreErrorKind, StoreErrorOptions, StoreInput, StoredSessionMeta, StreamTransform, SubscriberWriter, SubscriberWriterStats, SubscribersGoneContext, SubscribersGoneDecision, ToolCancelPayload, ToolRequestPayload, ToolResultReceipt, TranscriptData, TurnEndNotifierBreakerState, TurnEndNotifierOptions, TurnEndNotifierStats, TurnEndNotifyFailure, TurnEndNotifyPayload, TurnEndNotifyStatus, UpstreamGovernor, UpstreamGovernorEvent, UpstreamGovernorLike, UpstreamGovernorOptions, UpstreamGovernorStats, UpstreamOriginStats, UpstreamRejectReason, V1GovernanceOptions, V1SessionsOptions, V2CheckpointList, V2CheckpointMeta, V2CompactResult, V2ErrorCode, V2RestoreResult, V2SessionMetaView, V2SessionStatus, V2SetCwdResult, VideoGenData, WireToolParameterSpec };