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