Skip to content

Commit 3fb213f

Browse files
authored
Merge pull request #17 from ryan-roche/dev
Merge dev into prod
2 parents 61bee53 + 0db0d91 commit 3fb213f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ class BuildingEntryModel(BaseModel):
4848
buildingName: str = Field(..., description="The name of the building")
4949
thumbnail: str = Field(..., description="The filename of the building's thumbnail image")
5050
navID: str = Field(..., description="The navID of the building's BuildingKey node", alias="keyID")
51+
applePlaceID: str = Field(..., description="The building's Apple Maps place ID")
52+
googlePlaceID: str = Field(..., description="The building's Google Maps place ID")
5153

5254
class Config:
5355
populate_by_name = True
@@ -92,7 +94,7 @@ class RouteResponseModel(BaseModel):
9294
app = FastAPI(
9395
title="GopherMaps API",
9496
summary="REST API for the GopherMaps Project",
95-
version="1.0.2",
97+
version="1.1",
9698
contact={
9799
"name": "Ryan Roche",
98100
"url": "https://socialcoding.net"

0 commit comments

Comments
 (0)