UNPKG

zephyr-scale-client

Version:

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

12 lines (11 loc) 365 B
export function api(client) { return { async list({ startAt = 0, maxResults = 100 } = {}) { return client._request('/v2/environments', { query: { startAt, maxResults } }); }, async create(body) { if (!body?.name) throw new Error('name is required'); return client._request('/v2/environments', { method: 'POST', body }); } }; }