From d5ebe6510c44c5c66ef165667e1bf1af8d5dd604 Mon Sep 17 00:00:00 2001 From: rishabhpoddar Date: Tue, 14 Nov 2023 22:08:37 +0530 Subject: [PATCH] adding dev-v0.17.0 tag to this commit to ensure building --- html/supertokens_python/constants.html | 2 +- .../recipe/emailpassword/asyncio/index.html | 14 +++++++------- .../recipe/emailpassword/interfaces.html | 10 +++++----- .../thirdpartyemailpassword/asyncio/index.html | 10 +++++----- .../recipe/thirdpartyemailpassword/interfaces.html | 4 ++-- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/html/supertokens_python/constants.html b/html/supertokens_python/constants.html index f498da4ef..029bf1349 100644 --- a/html/supertokens_python/constants.html +++ b/html/supertokens_python/constants.html @@ -42,7 +42,7 @@

Module supertokens_python.constants

from __future__ import annotations SUPPORTED_CDI_VERSIONS = ["3.0"] -VERSION = "0.16.8" +VERSION = "0.17.0" TELEMETRY = "/telemetry" USER_COUNT = "/users/count" USER_DELETE = "/user/remove" diff --git a/html/supertokens_python/recipe/emailpassword/asyncio/index.html b/html/supertokens_python/recipe/emailpassword/asyncio/index.html index d78462e8a..36a2005fa 100644 --- a/html/supertokens_python/recipe/emailpassword/asyncio/index.html +++ b/html/supertokens_python/recipe/emailpassword/asyncio/index.html @@ -48,7 +48,7 @@

Module supertokens_python.recipe.emailpassword.asyncioModule supertokens_python.recipe.emailpassword.asyncioModule supertokens_python.recipe.emailpassword.asyncioFunctions

): token = await create_reset_password_token(tenant_id, user_id, user_context) if isinstance(token, CreateResetPasswordWrongUserIdError): - return CreateResetPasswordLinkUknownUserIdError() + return CreateResetPasswordLinkUnknownUserIdError() recipe_instance = EmailPasswordRecipe.get_instance() return CreateResetPasswordLinkOkResult( link=get_password_reset_link( recipe_instance.get_app_info(), - recipe_instance.get_recipe_id(), token.token, + recipe_instance.get_recipe_id(), tenant_id, ) ) @@ -350,7 +350,7 @@

Functions

tenant_id: str, user_id: str, user_context: Optional[Dict[str, Any]] = None ): link = await create_reset_password_link(tenant_id, user_id, user_context) - if isinstance(link, CreateResetPasswordLinkUknownUserIdError): + if isinstance(link, CreateResetPasswordLinkUnknownUserIdError): return SendResetPasswordEmailUnknownUserIdError() user = await get_user_by_id(user_id, user_context) diff --git a/html/supertokens_python/recipe/emailpassword/interfaces.html b/html/supertokens_python/recipe/emailpassword/interfaces.html index 873538074..1cb12d518 100644 --- a/html/supertokens_python/recipe/emailpassword/interfaces.html +++ b/html/supertokens_python/recipe/emailpassword/interfaces.html @@ -90,7 +90,7 @@

Module supertokens_python.recipe.emailpassword.interface self.link = link -class CreateResetPasswordLinkUknownUserIdError: +class CreateResetPasswordLinkUnknownUserIdError: pass @@ -613,8 +613,8 @@

Methods

self.link = link
-
-class CreateResetPasswordLinkUknownUserIdError +
+class CreateResetPasswordLinkUnknownUserIdError
@@ -622,7 +622,7 @@

Methods

Expand source code -
class CreateResetPasswordLinkUknownUserIdError:
+
class CreateResetPasswordLinkUnknownUserIdError:
     pass
@@ -1481,7 +1481,7 @@

CreateResetPasswordLinkOkResult

  • -

    CreateResetPasswordLinkUknownUserIdError

    +

    CreateResetPasswordLinkUnknownUserIdError

  • CreateResetPasswordOkResult

    diff --git a/html/supertokens_python/recipe/thirdpartyemailpassword/asyncio/index.html b/html/supertokens_python/recipe/thirdpartyemailpassword/asyncio/index.html index 9f2f32c69..765fc81c2 100644 --- a/html/supertokens_python/recipe/thirdpartyemailpassword/asyncio/index.html +++ b/html/supertokens_python/recipe/thirdpartyemailpassword/asyncio/index.html @@ -51,7 +51,7 @@

    Module supertokens_python.recipe.thirdpartyemailpassword from supertokens_python.recipe.thirdpartyemailpassword.interfaces import ( CreateResetPasswordWrongUserIdError, - CreateResetPasswordLinkUknownUserIdError, + CreateResetPasswordLinkUnknownUserIdError, CreateResetPasswordLinkOkResult, SendResetPasswordEmailUnknownUserIdError, SendResetPasswordEmailEmailOkResult, @@ -217,7 +217,7 @@

    Module supertokens_python.recipe.thirdpartyemailpassword ): token = await create_reset_password_token(tenant_id, user_id, user_context) if isinstance(token, CreateResetPasswordWrongUserIdError): - return CreateResetPasswordLinkUknownUserIdError() + return CreateResetPasswordLinkUnknownUserIdError() recipe_instance = ThirdPartyEmailPasswordRecipe.get_instance() @@ -240,7 +240,7 @@

    Module supertokens_python.recipe.thirdpartyemailpassword user_context: Optional[Dict[str, Any]] = None, ): link = await create_reset_password_link(tenant_id, user_id, user_context) - if isinstance(link, CreateResetPasswordLinkUknownUserIdError): + if isinstance(link, CreateResetPasswordLinkUnknownUserIdError): return SendResetPasswordEmailUnknownUserIdError() user = await get_user_by_id(user_id, user_context) @@ -279,7 +279,7 @@

    Functions

    ): token = await create_reset_password_token(tenant_id, user_id, user_context) if isinstance(token, CreateResetPasswordWrongUserIdError): - return CreateResetPasswordLinkUknownUserIdError() + return CreateResetPasswordLinkUnknownUserIdError() recipe_instance = ThirdPartyEmailPasswordRecipe.get_instance() @@ -480,7 +480,7 @@

    Functions

    user_context: Optional[Dict[str, Any]] = None, ): link = await create_reset_password_link(tenant_id, user_id, user_context) - if isinstance(link, CreateResetPasswordLinkUknownUserIdError): + if isinstance(link, CreateResetPasswordLinkUnknownUserIdError): return SendResetPasswordEmailUnknownUserIdError() user = await get_user_by_id(user_id, user_context) diff --git a/html/supertokens_python/recipe/thirdpartyemailpassword/interfaces.html b/html/supertokens_python/recipe/thirdpartyemailpassword/interfaces.html index db106c05c..90f7c8f9d 100644 --- a/html/supertokens_python/recipe/thirdpartyemailpassword/interfaces.html +++ b/html/supertokens_python/recipe/thirdpartyemailpassword/interfaces.html @@ -46,8 +46,8 @@

    Module supertokens_python.recipe.thirdpartyemailpassword CreateResetPasswordOkResult = EPInterfaces.CreateResetPasswordOkResult CreateResetPasswordWrongUserIdError = EPInterfaces.CreateResetPasswordWrongUserIdError CreateResetPasswordLinkOkResult = EPInterfaces.CreateResetPasswordLinkOkResult -CreateResetPasswordLinkUknownUserIdError = ( - EPInterfaces.CreateResetPasswordLinkUknownUserIdError +CreateResetPasswordLinkUnknownUserIdError = ( + EPInterfaces.CreateResetPasswordLinkUnknownUserIdError ) SendResetPasswordEmailEmailOkResult = EPInterfaces.SendResetPasswordEmailOkResult SendResetPasswordEmailUnknownUserIdError = (