Jamie Tanna

Results 289 comments of Jamie Tanna

Hey Jesse, thanks for raising this! Interestingly, I believe this may be because it's not a valid OpenAPI specification. I've run validation against https://github.com/stoplightio/spectral and https://redocly.com/docs/cli/, and both show a...

I'd recommend creating a new type which, instead of hardcoding the `token` in the security provider, it would perform validation of the JWT in the `Intercept` method, then it can...

We could look at producing a net/http router, for as limited a router as possible, but chi/gorilla provide a much better experience that I'd recommend it if possible.

I think this is the same as I saw in #626, which appears to mirror your issue

If you're able to share your config file you're using that may be helpful. For instance, this is what I've got: ```yaml package: api generate: models: true client: true output:...

@AlainODea no worries! Mind marking this as a draft? (I've also spotted that there may be cases where we're not (in the existing code) generating enums from nested objects -...

This is possible using the (new config) format's `import-mapping` configuration

In the meantime, a solution is to bundle specs, ie via https://www.jvt.me/posts/2022/02/10/bundle-openapi/

So right now you can use a document with an OpenAPI 3.1 version, but we don't yet support new stuff. There's a great post about what we need to add...