Hi!. I somewhat got around this by adding as const at the end of { message: "Hi!"} so it looked like { message: "Hi!"} as const but then I couldn't assign variables to the response of that API call because the API calls response is infered as readonly{ message: "Hi!" as const} but is that the "proper" way to achieve strict inference? And why isn't there an example in the docs about this?