Incrementally adoptable type-safety for your new and existing APIs import { initClient } from '@ts-rest/core'; import { contract } from './contract'; const client = initClient(contract, { baseUrl: 'http://localhost:3000', baseHeaders: {}, }); const response = await client.updatePost({ params: { postId: '01ARZ3NDEKTSV4RRFFQ69G5FAV', }, body: { title: 'Post Title', content: 'Post Body', }, }); impor