(target: TargetShape, identity: Identity, code: string)
| 202 | request(target, identity, path, { method: "DELETE" }); |
| 203 | |
| 204 | const execute = (target: TargetShape, identity: Identity, code: string): Promise<ExecuteResponse> => |
| 205 | postJson<ExecuteResponse>(target, identity, "/api/executions", { |
| 206 | code, |
| 207 | autoApprove: true, |
| 208 | }).then((response) => response.body); |
| 209 | |
| 210 | const addSourceThroughConsole = (input: { |
| 211 | readonly target: TargetShape; |
no test coverage detected