mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 18:37:03 +00:00
fix(test): align trace directive type stubs
This commit is contained in:
parent
d77360c076
commit
9dbbee8a02
3 changed files with 3 additions and 1 deletions
|
|
@ -1199,7 +1199,7 @@ async function readActiveMemorySearchDebug(
|
|||
continue;
|
||||
}
|
||||
const details = asRecord(message.details);
|
||||
const debug = asRecord(details?.debug);
|
||||
const debug = asRecord(details?.debug) ?? {};
|
||||
const warning = normalizeOptionalString(details?.warning);
|
||||
const action = normalizeOptionalString(details?.action);
|
||||
const error = normalizeOptionalString(details?.error);
|
||||
|
|
|
|||
|
|
@ -165,6 +165,7 @@ function buildCommandParams(params?: {
|
|||
hasVerboseDirective: false,
|
||||
hasFastDirective: false,
|
||||
hasReasoningDirective: false,
|
||||
hasTraceDirective: false,
|
||||
hasElevatedDirective: false,
|
||||
hasExecDirective: false,
|
||||
hasExecOptions: false,
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@ function buildContext(params?: {
|
|||
hasVerboseDirective: false,
|
||||
hasFastDirective: false,
|
||||
hasReasoningDirective: false,
|
||||
hasTraceDirective: false,
|
||||
hasElevatedDirective: false,
|
||||
hasExecDirective: false,
|
||||
hasExecOptions: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue