(config, requestId, body)
| 411 | } |
| 412 | |
| 413 | async function completeRpc(config, requestId, body) { |
| 414 | return studioJson(config, "/api/actions/provider-hosts/rpc/complete", { |
| 415 | ...body, |
| 416 | hostId: config.hostId, |
| 417 | hostToken: config.hostToken, |
| 418 | requestId, |
| 419 | }); |
| 420 | } |
| 421 | |
| 422 | async function localProviderMetadata(config) { |
| 423 | const [health, simulators] = await Promise.all([ |
no test coverage detected