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