UNPKG
zephyr-scale-client
Version:
latest (0.1.1)
0.1.1
0.1.0
Minimal JavaScript client for Zephyr Scale (Cloud) REST API. ESM, Node >=18.
zephyr-scale-client
/
src
/
endpoints
/
automations.js
8 lines
(7 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
function
api
(
client
) {
return
{
async
createExecutionResult
(
body
) {
return
client.
_request
(
'/v2/automations/executions'
, {
method
:
'POST'
, body }); } }; }