mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-27 21:07:01 -06:00
refactor(deadcode): trim mid-size src exports (#105888)
* refactor(deadcode): trim auto-reply and CLI exports * refactor(deadcode): trim cron and task exports * refactor(deadcode): trim fleet and process exports * test(deadcode): exercise live task and process seams * test(fleet): cover stream redaction through owner module * refactor(security): trim dead internal exports * refactor(secrets): trim dead internal exports * refactor(deadcode): trim remaining src exports * refactor(deadcode): remove test-only runtime exports * refactor(deadcode): trim pairing test exports * refactor(deadcode): reconcile refreshed baseline * test(auto-reply): deduplicate queue state imports
This commit is contained in:
committed by
GitHub
parent
0ab7e2569b
commit
e2ec8283c4
@@ -10,10 +10,10 @@ import { isWSL } from "../../infra/wsl.js";
|
||||
import { defaultRuntime } from "../../runtime.js";
|
||||
|
||||
/** Gateway service action emitted by lifecycle commands. */
|
||||
export type DaemonAction = "install" | "uninstall" | "start" | "stop" | "restart";
|
||||
type DaemonAction = "install" | "uninstall" | "start" | "stop" | "restart";
|
||||
|
||||
/** Stable hint category for machine-readable daemon command output. */
|
||||
export type DaemonHintKind =
|
||||
type DaemonHintKind =
|
||||
| "install"
|
||||
| "container-restart"
|
||||
| "container-foreground"
|
||||
@@ -23,7 +23,7 @@ export type DaemonHintKind =
|
||||
| "generic";
|
||||
|
||||
/** Classified daemon recovery hint item. */
|
||||
export type DaemonHintItem = {
|
||||
type DaemonHintItem = {
|
||||
kind: DaemonHintKind;
|
||||
text: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user