UNPKG

zephyr-scale-client

Version:

Minimal JavaScript client for Zephyr Scale (Cloud) REST API. ESM, Node >=18.

10 lines (9 loc) 258 B
export function api(client) { return { async list() { return client._request('/v2/statuses'); }, async get(id) { if (!id) throw new Error('id is required'); return client._request(`/v2/statuses/${encodeURIComponent(id)}`); } }; }