(input: { readonly verbose?: boolean })
| 298 | ); |
| 299 | |
| 300 | const list = (input: { readonly verbose?: boolean }) => |
| 301 | executor |
| 302 | .execute(ToolAddress.make("executor.coreTools.connections.list"), { |
| 303 | integration: String(INTEG), |
| 304 | owner: "org", |
| 305 | ...input, |
| 306 | }) |
| 307 | .pipe(Effect.flatMap(decodeConnectionListHealthOutput)); |
| 308 | |
| 309 | const defaultList = yield* list({}); |
| 310 | const nonVerboseList = yield* list({ verbose: false }); |
no test coverage detected