/** * @summary Info for a specific pet * @link /pets/:pet_id */ export async function showPetById( { petId, testId }: { petId: ShowPetByIdPathParams['pet_id']; testId: ShowPetByIdPathParams['testId'] }, options: Partial[0]> = {}, ): Promise['data']> { const res = await client({ method: 'get', url: `/pets/${petId}`, ...options }) return res.data }