UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

10 lines 482 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.listAgentsByAnthropicKey = void 0; const listAgentsByAnthropicKey = ({ httpClient }) => ({ key_uuid, page = 1, per_page = 25 }) => { const url = `/gen-ai/anthropic/keys/${key_uuid}/agents`; const params = { page, per_page }; return httpClient.get(url, { params }); }; exports.listAgentsByAnthropicKey = listAgentsByAnthropicKey; //# sourceMappingURL=list-agents-by-anthropic-key.js.map