(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:
yatmesh
2025-08-25 14:43:14 +05:30
parent ddc29a7fe1
commit 7f7a16d4d2
8 changed files with 221 additions and 102 deletions
+3 -3
View File
@@ -345,15 +345,15 @@ class PlacesTextSearchRequestData(BaseModel):
frozen = True
)
textQuery: float = Field(
textQuery: str = Field(
description= "Text Query for find places",
frozen= True
)
max_count: int = Field(
maxCount: int = Field(
description= "Max count for get result counts",
frozen=True,
default=20
default=5
)