Daniel G. Taylor

Results 357 comments of Daniel G. Taylor

@m-mattia-m your OpenAPI setup looks reasonable. You may want to ask in e.g. https://github.com/stoplightio/elements how to properly set it up to get the authorize/login button and then have it use...

@openint-bot you can use it as a library, take a look at the [`main.go`](https://github.com/rest-sh/restish/blob/main/main.go) file and the [`cli.Run()`](https://github.com/rest-sh/restish/blob/main/cli/cli.go#L721) implementation you could customize to your liking. Just FYI it's generally recommended...

@guneyizol this isn't really possible using the built-in request validation pipeline, however I think you could use the `SkipValidate*` settings in [`huma.Operation`](https://pkg.go.dev/github.com/danielgtaylor/huma/v2#Operation) to bypass the built-in validation and then do...

@byted there is some missing information in the OpenAPI so you would still need to fill things in, but I agree that this can certainly be improved. Also take a...

Seems like we should find a workaround if possible to prevent the warning.

@ross96D thanks for the PR. I was looking into this one last night and wanted to give a brief update. I think you correctly identified a problem with custom param...

I think this should now be handled in a fast way without additional memory allocations by https://github.com/danielgtaylor/huma/releases/tag/v2.29.0 param enhancements like the `ParamWrapper` interface to return the `reflect.Value` to set. Please...