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