When working with HttpApiEndpoint schemas is there any good way to set the "sdk" schema and the server handler schema separately. I want to have an encoded id hash (using hashid) that the client interacts with when calling HttpApiClient.make(Api) "sdk" fns but I also want the server to decode the /user/:encoded-id to a number when the api endpoint is called. Do I have to decode it manually from the string in the handler fn?