I have been attempting to retrieve the specific location connected to a postal code, such as the name of the administrative area. Despite thoroughly examining all the fields within the entry object, I was unable to locate the information I was looking for.
const res : NodeGeocoder.Entry[] = await geocoder.reverse({lat:lat,lon:lng})
const zipcode = res[0].zipcode!
const country = res[0].country!
const city = res[0].city || undefined