refactor(infra): hide backup helper types · openclaw/openclaw@f8fc316
vincentkoc
·
2026-06-17
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -60,7 +60,7 @@ function filePathCandidates(input: string): string[] {
|
60 | 60 | return [normalized, normalizePosix(`/${normalized}`)]; |
61 | 61 | } |
62 | 62 | |
63 | | -export type VolatileFilterPlan = { |
| 63 | +type VolatileFilterPlan = { |
64 | 64 | /** Canonical state directories the filter should treat as volatile anchors. */ |
65 | 65 | stateDirs: string[]; |
66 | 66 | }; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -70,7 +70,7 @@ export function pickResolvedGatewayPort(beacon: GatewayBonjourBeacon): number |
|
70 | 70 | return resolveGatewayDiscoveryEndpoint(beacon)?.port ?? null; |
71 | 71 | } |
72 | 72 | |
73 | | -export type GatewayBonjourDiscoverOpts = { |
| 73 | +type GatewayBonjourDiscoverOpts = { |
74 | 74 | timeoutMs?: number; |
75 | 75 | domains?: string[]; |
76 | 76 | wideAreaDomain?: string | null; |
|
| Original file line number | Diff line number | Diff line change |
|---|
|
1 | 1 | /** Risk level returned by exec auto-reviewers for approval routing decisions. */ |
2 | | -export type ExecAutoReviewRisk = "unknown" | "low" | "medium" | "high"; |
| 2 | +type ExecAutoReviewRisk = "unknown" | "low" | "medium" | "high"; |
3 | 3 | |
4 | 4 | /** Auto-review outcome: either approve once or send the command to normal approval. */ |
5 | 5 | export type ExecAutoReviewDecision = |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。