Julius R Friedman
Julius R Friedman
This is also something I think is missing from the options, See https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/spring.md its an option there... We have a custom resolver so don't find any value in updating the...
@zernonia, sorry for the delay, I will try to stackblitz up something ASAP... While I work on a repo is it possible to explain how to use the `style-src` CSP...
Hey @zernonia its been over a month since I posted the repo, any details / updates you can provide here? Thank you!
I'm away from keyboard right now, but the root of the issue is that I don't want the header to be a parameter to the method that is generated. I...
`service.someMethod()` is generated when the header is ignored lets say and `service.someMethod(requiredParamter)` is generated when there is a header, what's even worse is that when the header is inserted its...
Here is the spec of the method ``` "/api/ForgotPassword/SendEmail/{cultureName}": { "post": { "tags": [ "ForgotPassword" ], "operationId": "ForgotPassword_SendEmail", "parameters": [ { "name": "cultureName", "in": "path", "required": true, "schema": { "type":...
It depends on the tech stack in use but at a high level, during runtime we could resolve the header from a separate GET request dynamically, this GET request returns...
Yes and Yes, We add it as a required header for the swagger operations so that users can use the swagger interface to test the API without the UI portion...
Yes, an option like that should definitely work, Just as a FYI we are actually using https://github.com/ferdikoomen/openapi-typescript-codegen which I believe is the prior version of this library. I went to...
Yes, I opted to change the OpenApi data we generate the client from to NOT include the required header for now. I essentially generate 2 different forms of OpenApi data:...