UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

10 lines 407 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.listAgents = void 0; const listAgents = ({ httpClient }) => ({ page = 1, per_page = 25, only_deployed } = {}) => { const url = '/gen-ai/agents'; const params = { page, per_page, only_deployed }; return httpClient.get(url, { params }); }; exports.listAgents = listAgents; //# sourceMappingURL=list-agents.js.map