diff --git a/propelauth_fastapi/__init__.py b/propelauth_fastapi/__init__.py index 77ced9e..9850c5d 100644 --- a/propelauth_fastapi/__init__.py +++ b/propelauth_fastapi/__init__.py @@ -135,6 +135,7 @@ def _handle_forbidden_exception(e: ForbiddenException, debug_mode: bool): "fetch_batch_user_metadata_by_user_ids", "fetch_batch_user_metadata_by_emails", "fetch_batch_user_metadata_by_usernames", + "fetch_user_signup_query_params_by_user_id", "fetch_org", "fetch_org_by_query", "fetch_users_by_query", @@ -210,6 +211,7 @@ def init_auth( fetch_org_by_query=auth.fetch_org_by_query, fetch_users_by_query=auth.fetch_users_by_query, fetch_users_in_org=auth.fetch_users_in_org, + fetch_user_signup_query_params_by_user_id=auth.fetch_user_signup_query_params_by_user_id, create_user=auth.create_user, update_user_email=auth.update_user_email, update_user_metadata=auth.update_user_metadata, diff --git a/setup.py b/setup.py index 4ba5ca2..fc1b71b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="propelauth-fastapi", - version="2.1.8", + version="2.1.9", description="A FastAPI library for managing authentication, backed by PropelAuth", long_description=README, long_description_content_type="text/markdown", @@ -20,7 +20,7 @@ author="PropelAuth", author_email="support@propelauth.com", license="MIT", - install_requires=["propelauth-py==3.1.9", "requests"], + install_requires=["propelauth-py==3.1.11", "requests"], setup_requires=pytest_runner, tests_require=["pytest==4.4.1"], test_suite="tests",