dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
9 lines • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.updateAgentRoute = void 0;
const updateAgentRoute = ({ httpClient }) => ({ parent_agent_uuid, child_agent_uuid, updates }) => {
const url = `/gen-ai/agents/${parent_agent_uuid}/child_agents/${child_agent_uuid}`;
return httpClient.put(url, updates);
};
exports.updateAgentRoute = updateAgentRoute;
//# sourceMappingURL=update-agent-route.js.map