Louis Duchemin

Results 10 comments of Louis Duchemin

Hi ! Currently working on extending your widget to support multiple file uploads #5. To start on a clean base I used [widget-cookiecutter](https://github.com/jupyter-widgets/widget-cookiecutter) as suggested. Working code is available [here](https://github.com/nonesk/ipyfileupload)...

Great feature, that will allow me to refactor a bunch of validation code. Hope this gets merged soon! 🙏

Got a similar issue, which seems to be tied to the use of the coalescence operator `??`. The following statement returns the outdated value of `last_name`. Surprisingly, a computed property...

Also discussed this case with @Sikarii on discord (https://discord.com/channels/841451783728529451/1203386108302327910), which also involves mutation rewrites as reported by @LukeLaScala. Here is the schema : ```edgeql type Meta { annotation title :=...

@danielgtaylor hey, finally took some time to write tests for this feature. Coverage is almost 100%, except for 3 error checks on file I/O that are hard to trigger. API...

My specific use case is to document an API endpoint which can respond with a fixed set of response tokens, under the same HTTP status code. Overriding the response schema...

That is great news, thanks for releasing this feature! :pray: Would you consider modifying the `RequestResult` type so that we don't have to check both `error` and `data` for `undefined`...

I don't have a specific use-case in mind for using reject, just wanted to make sure it has no intended purpose in the new API. Seems like it is actually...

Gave some more thoughts on improving type safety of request results. Here is a proposal that fulfills the use-case described by @Hookyns, and correctly infers response body type depending on...

Sure, I work with Vue / Vuetify and the specific use case is implementing a composable for forms to use the schema for input documentation and validation. For example: ```ts...