Added documentation for the auto-population feature and the analytics integration.

This commit is contained in:
ajaysi
2026-01-17 11:01:10 +05:30
parent 8193cdba67
commit 1db10ccd0f
61 changed files with 6773 additions and 579 deletions

View File

@@ -82,14 +82,12 @@ async def complete_onboarding(current_user: Dict[str, Any]):
return await _complete_onboarding_impl(current_user)
async def reset_onboarding():
return await _reset_onboarding_impl()
async def reset_onboarding(current_user: Dict[str, Any]):
return await _reset_onboarding_impl(current_user)
async def get_resume_info():
return await _get_resume_info_impl()
__all__ = [name for name in globals().keys() if not name.startswith('_')]
__all__ = [name for name in globals().keys() if not name.startswith('_')]