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