Skip to content

Commit

Permalink
feat: add fetch_user_signup_query_params_by_user_id and up version nu…
Browse files Browse the repository at this point in the history
…mber (#15)
  • Loading branch information
itailevi98 committed Jan 18, 2024
1 parent d8ca326 commit 0fa74ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions propelauth_fastapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 0fa74ea

Please sign in to comment.