Bing Analytics and Insights added, background jobs added, database setup updated, environment setup updated, frontend updated, backend updated.

Onboarding Manager and Router Manager refactored, analytics and background jobs added, database setup updated, environment setup updated, frontend updated, backend updated.
Critical onboarding database migration implemented.
This commit is contained in:
ajaysi
2025-10-18 10:28:15 +05:30
parent 40fb6ac95b
commit 1f087aad4c
69 changed files with 11995 additions and 189 deletions

View File

@@ -182,7 +182,7 @@ async def get_user_writing_personas(user_id: int = 1):
raise HTTPException(status_code=500, detail="Internal server error")
async def save_business_info(business_info: 'BusinessInfoRequest'):
async def save_business_info(business_info: dict):
try:
from api.onboarding_utils.business_info_service import BusinessInfoService
business_service = BusinessInfoService()
@@ -212,7 +212,7 @@ async def get_business_info_by_user(user_id: int):
raise HTTPException(status_code=500, detail=f"Failed to get business info: {str(e)}")
async def update_business_info(business_info_id: int, business_info: 'BusinessInfoRequest'):
async def update_business_info(business_info_id: int, business_info: dict):
try:
from api.onboarding_utils.business_info_service import BusinessInfoService
business_service = BusinessInfoService()