(20250825) -Added new google places API Integration system, no more oauth system for places api integration,
added multiple files for and correction and changes as well.
This commit is contained in:
@@ -173,6 +173,41 @@ class OAuthPlacesHandleCallbackResponse(BaseModel):
|
||||
pass
|
||||
|
||||
|
||||
class GooglePlacesAuth(BaseModel):
|
||||
email: str = Field(
|
||||
description="Email for google places API",
|
||||
frozen=False
|
||||
)
|
||||
|
||||
apiKey: str = Field(
|
||||
description="API KEY of Places API",
|
||||
frozen=True,
|
||||
)
|
||||
|
||||
displayName: str = Field(
|
||||
description="Display Name",
|
||||
frozen=True,
|
||||
)
|
||||
|
||||
# ┏┓ ┏•
|
||||
# ┃ ┏┓┏┓╋┓┏┓
|
||||
# ┗┛┗┛┛┗┛┗┗┫
|
||||
# ┛
|
||||
|
||||
class Config:
|
||||
extra = "forbid"
|
||||
|
||||
# ┏┓ ┏┓
|
||||
# ┃ ┓┏┏╋┏┓┏┳┓ ┣ ┓┏┏┓┏┏
|
||||
# ┗┛┗┻┛┗┗┛┛┗┗ ┻ ┗┻┛┗┗┛
|
||||
|
||||
pass
|
||||
|
||||
# ┓┏ ┓• ┓ •
|
||||
# ┃┃┏┓┃┓┏┫┏┓╋┓┏┓┏┓
|
||||
# ┗┛┗┻┗┗┗┻┗┻┗┗┗┛┛┗
|
||||
|
||||
pass
|
||||
# *****************************************************************************************************************
|
||||
# ***** ****
|
||||
# *** MAIN PROGRAM ***
|
||||
|
||||
Reference in New Issue
Block a user