Olivier Pinon
Olivier Pinon
Hello! Yes, this is a problem indeed. The documentation [here](https://zod.dev/?id=strings) is misleading : ```typescript z.string().min(5, { message: "Must be 5 or more characters long" }); z.string().max(5, { message: "Must be...
For reference, * `Joi` solves this with [a parameter to specify the encoding](https://joi.dev/api/?v=17.13.3#stringlengthlimit-encoding) * `Yup` has the same issue as Zod https://github.com/jquense/yup?tab=readme-ov-file#stringminlimit-number--ref-message-string--function-schema (they use `value.length` in the implementation, so UTF-16...
I have started to tackle this and am almost in a place where I can create a PR for this. Work happens over here : https://github.com/AlisCode/slumber/tree/feat/support-openapiv3 Unresolved questions : *...
Thanks for the quick reply! > I don't like the idea of duplicating requests because you end up with multiple copies of it that the user would have to maintain....
Update: `openapi-tui` doesn't support external refs either AIUI. They just error when a ref is not of the shape `#/components//` (which is also what I do). I think that behavior...
Hey there, life's been a bit hectic and will continue to be so for the coming month, but I finally found some time to continue working on this. I got...
I think I need your opinion on stuff before I can write a bunch of unit tests or refactor the PR, so I'm marking this as ready.
Hi @lpil, this PR got a bit old and so it has a few merging conflicts that I'll resolve today after work. There are 2 points which needs clarification before...
@cdaringe, I believe the issue you ran into is orthogonal to this PR? I don't remember touching anything to do with caching. Do we need a special edge-case handling here...
Hi @lpil, Unfortunately I'm no longer actively working on this. It's become clear to me that I should start with smaller contribs because I don't see how to implement this...