undeclared keys in nested object
Hello.
I want to use arktype for parsing objects in backend before sending them to client (mainly for removing unwanted keys),
But when i use nested object types the undeclared keys won't get deleted
ex:
result in
wanted result:
Is this a limitation or am i doing something wrong?
-# it works correctly if i parse user object with tUser before passing it to tAuthMeResult
Thanks for your time
2 Replies
You can use
.onDeepUndeclaredKey()
instead of the "+": "delete"
So type({phoneNumber: "string", type: tuserType}).onDeepUndeclaredKey("delete");
At first it didn't worked, but when i used onDeepUndeclaredKey on tAuthMeResult it works.
Thanks for your response ❤️