|
|
@@ -1606,6 +1606,8 @@ async def _get_person_birth_data(person_id: str) -> dict[str, Any]:
|
|
|
"timezone": person.get("timezone"),
|
|
|
"birth_datetime_utc": utc_dt, # for ephemeris calls
|
|
|
"birthplace": person.get("birthplace"),
|
|
|
+ "name": person.get("name"),
|
|
|
+ "nickname": person.get("nickname"),
|
|
|
"latitude": person["latitude"],
|
|
|
"longitude": person["longitude"],
|
|
|
"elevation": person.get("elevation", 0.0),
|
|
|
@@ -1658,6 +1660,8 @@ async def calculate_natal_chart_by_id(
|
|
|
if "error" not in result:
|
|
|
result["input"]["birth_datetime"] = birth["birth_datetime"]
|
|
|
result["input"]["timezone"] = birth.get("timezone")
|
|
|
+ result["input"]["name"] = birth.get("name")
|
|
|
+ result["input"]["birthplace"] = birth.get("birthplace")
|
|
|
return result
|
|
|
|
|
|
|