ArkErrors serialization/deserialization
I'm implementing a very simple NestJS + ArkType bridge (like nestjs-zod or so). Currently I can't find a pretty way to serialize and deserialize ArkErrors object to use it in RPC transports for further use. Is there any "in-a-box" way? Looks like storing whole Traversal context and source data inside serialized object and monkey-patching methods doesn't look good.
4 Replies
There's a basic version of this in
type("string").toJsonSchema()
But I don't think it works once you add custom morphs etc.It does serialize typing schema but what about ArkErrors?
Or am I that blind? š
Ah yeah, sorry, I misread your message. I'm not aware of a built-in serialisation method for ArkErrors
There's
ArkErrors.summary
which will convert it to a string, but you lose the ctx
and can't go back to the ArkErrors
yup, that's not what i'm looking for.
my goal is to serialize and deserialize whole ArkErrors object.
As i see there's ArkError:input field in each object and it depends on the rule that failed validation.
eg. "string > 2" in case of failure contains
So, theoretically, I can use error.path and error.input for storing data during serialization. As long as the Traversal config is the same between the serializer and deserializer, I see that these fields, along with data, can be removed from the object.
The only problem is that Iām not sure how to properly deserialize it back while keeping all the internal logic working as expected.