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 @@
supertokens_python.constants
supertokens_python.recipe.emailpassword.asyncio
from supertokens_python.recipe.emailpassword.interfaces import (
CreateResetPasswordWrongUserIdError,
- CreateResetPasswordLinkUknownUserIdError,
+ CreateResetPasswordLinkUnknownUserIdError,
CreateResetPasswordLinkOkResult,
SendResetPasswordEmailOkResult,
SendResetPasswordEmailUnknownUserIdError,
@@ -167,14 +167,14 @@ Module supertokens_python.recipe.emailpassword.asyncio
):
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,
)
)
@@ -184,7 +184,7 @@ Module supertokens_python.recipe.emailpassword.asyncio
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)
@@ -223,14 +223,14 @@ Functions
):
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 = (