Vladimir Sapronov

Results 29 comments of Vladimir Sapronov

It works in TypeScript `4.7.4` but it does not work in: `4.8.0-beta`, `4.8.1-rc`, and `4.8.2`. So it's again broken in the latest TypeScript 4.8.

@ovatsus Can we reconsider this question? Here are some benefits of doing the split into FSharp.Data base types and FSharp.Data type providers: 1. As mentioned above FSharp.Data.DesignTime.dll would not be...

@ovatsus I have checked more thoroughly latest state on things. Yes, it seems that reference to FSharp.Data.DesignTime.dll is not required anywhere. Even when using NuGet/paket reference to that dll is...

And by the way: in `io-ts` this is fully working (I'm trying to achieve with `superstruct` what I already have working in `io-ts`). The exact same code with only difference...

Actually, I have found the reason of my problems: In the code above `TOrderCreated` is `t.object` (no extra fields!). So what I have is ``` t.intersection([t.type({......}), t.object({......})]) ``` This is...

Hi @codingedgar . This is a great idea. I quickly took a look at `IJsonSerializer` I think it should be fairly easy to implement it with API provided by FSharp.Json....

@danieljsummers I can package it and publish it as `FSharp.Json.Giraffe` (I have booked the package name already). I will check code and put it into `FSharp.Json.Giraffe` soon.

I see the problem - I will take a look at this.

I can take a look later this week. Thank you. On Wed, May 15, 2019, 4:47 PM Jason Gardella wrote: > I've found a strange issue where deserialization of a...

@jgardella I was able to reproduce the issue. I can't get yet why it happens. There is one little detail: it happens even without debug mode in FSI. I keep...