refactor(auto-reply): hide internal command types · openclaw/openclaw@5055f32
vincentkoc
·
2026-06-17
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -27,7 +27,7 @@ const ACP_LIVE_HARD_FLUSH_CHARS = 480;
|
27 | 27 | const TERMINAL_TOOL_STATUSES = new Set(["completed", "failed", "cancelled", "done", "error"]); |
28 | 28 | const HIDDEN_BOUNDARY_TAGS = new Set<AcpSessionUpdateTag>(["tool_call", "tool_call_update"]); |
29 | 29 | |
30 | | -export type AcpProjectedDeliveryMeta = { |
| 30 | +type AcpProjectedDeliveryMeta = { |
31 | 31 | tag?: AcpSessionUpdateTag; |
32 | 32 | toolCallId?: string; |
33 | 33 | toolStatus?: string; |
@@ -161,7 +161,7 @@ function renderToolSummaryText(event: Extract<AcpRuntimeEvent, { type: "tool_cal
|
161 | 161 | return formatToolSummary(display); |
162 | 162 | } |
163 | 163 | |
164 | | -export type AcpReplyProjector = { |
| 164 | +type AcpReplyProjector = { |
165 | 165 | onEvent: (event: AcpRuntimeEvent) => Promise<void>; |
166 | 166 | flush: (force?: boolean) => Promise<void>; |
167 | 167 | }; |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。