Daniel G. Taylor
Daniel G. Taylor
@thebauda why would this be better? Flags are typically optional while the `org-id` positional parameter is always required in your example. You can also use the [CLI shorthand](https://rest.sh/#/shorthand) for the...
@eds000n I think this is an interesting idea and would be open to having a command which does this. Just be aware that with all the extra processing Restish does...
@Klarys there's no special logic to handle multi-part forms in Restish yet. For now you can use `curl` to do it, e.g. see https://everything.curl.dev/http/multipart. I'll consider this a feature request...
@jmls great question. Right now Restish is set up to have a flat list of operation commands rather than a hierarchy like you are describing. There are a few different...
Yes, right now router-agnostic middlewares are only assigned at operation registration time so are specific to all the operation paths in your API. I think you're right that we should...
The more I look into this the more difficult it seems to be to support, due to the nature of Huma being router-agnostic and the fact that the Huma layer...
@gregoryjjb thanks for the question! Couple of things to clarify: 1. Can you help me understand why you need this? In Go, the nullable types applied to marshalled formats like...
@gregoryjjb thanks, yeah this looks doable but isn't a small fix. I need to dig into what updating `Schema.Type` to a slice would entail. It will definitely have an impact...
@gregoryjjb yes this seems kind of tricky overall. I'll have to take some time soon and dig deeper into it. For now I'll leave this open as a feature request...
I wonder if it would be simpler to support it using something like this, but I'm not sure how SDK generators would handle it: ```yaml MyType: oneOf: - type: "null"...