dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
10 lines • 437 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.listAgentRoutes = void 0;
const listAgentRoutes = ({ httpClient }) => ({ agent_uuid, page = 1, per_page = 25 }) => {
const url = `/gen-ai/agents/${agent_uuid}/child_agents`;
const params = { page, per_page };
return httpClient.get(url, { params });
};
exports.listAgentRoutes = listAgentRoutes;
//# sourceMappingURL=list-agent-routes.js.map