Currently the internal [_add_api_route()](https://github.com/awtkns/fastapi-crudrouter/blob/9b829865d85113a3f16f94c029502a9a584d47bb/fastapi_crudrouter/core/_base.py#L119) function is implemented with **kwargs which is passed to FastAPIs `add_api_route()` Unfortunately its not possible to add any **kwargs, because all the CRUD functions aren't utilising it. I came to this issue because i use the OpenAPIGenerator which translates the `opertaion_id` argument as the function being called. If it is not provided, the generated function name is very ugly such as `routeActivitiesItemIdPut` for and update function.