mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-07 23:31:07 +00:00
* CLI: gate exec SecretRef dry-run resolution behind opt-in * Docs: clarify config dry-run exec opt-in behavior * CLI: preserve static exec dry-run validation
23 lines
511 B
TypeScript
23 lines
511 B
TypeScript
export type ConfigSetDryRunInputMode = "value" | "json" | "builder";
|
|
|
|
export type ConfigSetDryRunError = {
|
|
kind: "schema" | "resolvability";
|
|
message: string;
|
|
ref?: string;
|
|
};
|
|
|
|
export type ConfigSetDryRunResult = {
|
|
ok: boolean;
|
|
operations: number;
|
|
configPath: string;
|
|
inputModes: ConfigSetDryRunInputMode[];
|
|
checks: {
|
|
schema: boolean;
|
|
resolvability: boolean;
|
|
resolvabilityComplete: boolean;
|
|
};
|
|
refsChecked: number;
|
|
skippedExecRefs: number;
|
|
errors?: ConfigSetDryRunError[];
|
|
};
|