Is there anyway to override Swagger IO CodeGen naming conventions, when its creating Angular API Service Proxies?
Its naming by this equation: API + Controller Name + Controller Method + HTTP Action.
public apiProductGetProductByProductIdGet(productNumber?: string, observe?: 'body', reportProgress?: boolean): Observable<ProductResponse>;
We want to restructure/reorder the naming convention for our company.
Currently linking Net Core 3 APIs with Angular Typescript.
Will accept javascript answer for CodeGen.
Update Possible Solution:
How do I change the nickname property in C#?
https://docs.swagger.io/spec.html
"Nickname. A unique id for the operation that can be used by tools reading the output for further and easier manipulation. For example, Swagger-Codegen will use the nickname as the method name of the operation in the client it generates. The value MUST be alphanumeric and may include underscores. Whitespace characters are not allowed.
"nickname": "addPet",