refactor(cli): separate json payload output from logging

This commit is contained in:
Peter Steinberger
2026-03-22 23:19:14 +00:00
parent 274af0486a
commit 4ee41cc6f3
89 changed files with 710 additions and 693 deletions

View File

@@ -80,7 +80,7 @@ export function registerPairingCli(program: Command) {
? await listChannelPairingRequests(channel, process.env, accountId)
: await listChannelPairingRequests(channel);
if (opts.json) {
defaultRuntime.log(JSON.stringify({ channel, requests }, null, 2));
defaultRuntime.writeJson({ channel, requests });
return;
}
if (requests.length === 0) {