Description
Hi, right now, the generated functions take a single object as a parameter, which contains all the request fields.
For example:
ServersService.updateConfig({ id: this.server.id, serverConfig: this.server.serverConfig });
I would like the generator to create functions that use separate parameters instead of a single object, like this:
ServersService.updateConfig(this.server.id, this.server.serverConfig);
Add a configuration property, something like: separateParameters: boolean