Julien Chomarat

Results 35 comments of Julien Chomarat

I just checked the rust client for this issue, I'm no expert but according to the doc : https://github.com/meilisearch/meilisearch-rust/blob/261fa529e795a831035c7fb30f27313ea9496af7/src/search.rs#L12-L25 This works thanks to serde, who has the ability to flatten...

Good question ? Very good question... Digging further, I found this issue opened in `System.Text.Json` in order to have a `JsonPropertyFlatten` attribute like in `serde` : https://github.com/dotnet/runtime/issues/55120 Not sure this...

Actually, this is an interesting issue, in case other clients needs to do the same here are some side effects. For exemple, let say we want to serialize our documents...

I think it's a system api key. I pulled the docker image and add the key. I made nothing more.

Actually, developers may want to wait for a task (Meilisearch side) to finish and know the result. If Meilisearch is on error for some reason, we have to know something...

I understand why you want to encourage a fire and forget strategy for async server side operations. In this case, should this method stay in the client project ? If...

> I'd like to make this an extension to hyperscript, rather than the core. Are you OK with that? You're the boss, you tell me what to do 😄 And...

> If you don't mind waiting a week, we are going to do some restructuring and can look at how things shake out after that. Ok, no problem for me.

Where do you want to have the tests for the strategies ?

I've added the tests like this one but they all fail. ```js describe("tailwindcss extensions", function () { beforeEach(function () { clearWorkArea(); }); afterEach(function () { clearWorkArea(); _hyperscript.config.defaultHideShowStrategy = null; });...