(options: { responseLevel?: ResponseLevel })
| 62 | // shape; the per-command client normalizers assume the default shape, so the |
| 63 | // capture methods pass the leveled payload through unnormalized instead. |
| 64 | const isLeveledResponse = (options: { responseLevel?: ResponseLevel }): boolean => |
| 65 | isNonDefaultResponseLevel(options.responseLevel ?? config.responseLevel); |
| 66 | |
| 67 | const execute = async ( |
| 68 | command: string, |
no test coverage detected