Skip to content

Commit d5ebe65

Browse files
committed
adding dev-v0.17.0 tag to this commit to ensure building
1 parent 2195b23 commit d5ebe65

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

html/supertokens_python/constants.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4242
from __future__ import annotations
4343

4444
SUPPORTED_CDI_VERSIONS = [&#34;3.0&#34;]
45-
VERSION = &#34;0.16.8&#34;
45+
VERSION = &#34;0.17.0&#34;
4646
TELEMETRY = &#34;/telemetry&#34;
4747
USER_COUNT = &#34;/users/count&#34;
4848
USER_DELETE = &#34;/user/remove&#34;

html/supertokens_python/recipe/emailpassword/asyncio/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.emailpassword.asyncio</
4848

4949
from supertokens_python.recipe.emailpassword.interfaces import (
5050
CreateResetPasswordWrongUserIdError,
51-
CreateResetPasswordLinkUknownUserIdError,
51+
CreateResetPasswordLinkUnknownUserIdError,
5252
CreateResetPasswordLinkOkResult,
5353
SendResetPasswordEmailOkResult,
5454
SendResetPasswordEmailUnknownUserIdError,
@@ -167,14 +167,14 @@ <h1 class="title">Module <code>supertokens_python.recipe.emailpassword.asyncio</
167167
):
168168
token = await create_reset_password_token(tenant_id, user_id, user_context)
169169
if isinstance(token, CreateResetPasswordWrongUserIdError):
170-
return CreateResetPasswordLinkUknownUserIdError()
170+
return CreateResetPasswordLinkUnknownUserIdError()
171171

172172
recipe_instance = EmailPasswordRecipe.get_instance()
173173
return CreateResetPasswordLinkOkResult(
174174
link=get_password_reset_link(
175175
recipe_instance.get_app_info(),
176-
recipe_instance.get_recipe_id(),
177176
token.token,
177+
recipe_instance.get_recipe_id(),
178178
tenant_id,
179179
)
180180
)
@@ -184,7 +184,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.emailpassword.asyncio</
184184
tenant_id: str, user_id: str, user_context: Optional[Dict[str, Any]] = None
185185
):
186186
link = await create_reset_password_link(tenant_id, user_id, user_context)
187-
if isinstance(link, CreateResetPasswordLinkUknownUserIdError):
187+
if isinstance(link, CreateResetPasswordLinkUnknownUserIdError):
188188
return SendResetPasswordEmailUnknownUserIdError()
189189

190190
user = await get_user_by_id(user_id, user_context)
@@ -223,14 +223,14 @@ <h2 class="section-title" id="header-functions">Functions</h2>
223223
):
224224
token = await create_reset_password_token(tenant_id, user_id, user_context)
225225
if isinstance(token, CreateResetPasswordWrongUserIdError):
226-
return CreateResetPasswordLinkUknownUserIdError()
226+
return CreateResetPasswordLinkUnknownUserIdError()
227227

228228
recipe_instance = EmailPasswordRecipe.get_instance()
229229
return CreateResetPasswordLinkOkResult(
230230
link=get_password_reset_link(
231231
recipe_instance.get_app_info(),
232-
recipe_instance.get_recipe_id(),
233232
token.token,
233+
recipe_instance.get_recipe_id(),
234234
tenant_id,
235235
)
236236
)</code></pre>
@@ -350,7 +350,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
350350
tenant_id: str, user_id: str, user_context: Optional[Dict[str, Any]] = None
351351
):
352352
link = await create_reset_password_link(tenant_id, user_id, user_context)
353-
if isinstance(link, CreateResetPasswordLinkUknownUserIdError):
353+
if isinstance(link, CreateResetPasswordLinkUnknownUserIdError):
354354
return SendResetPasswordEmailUnknownUserIdError()
355355

356356
user = await get_user_by_id(user_id, user_context)

html/supertokens_python/recipe/emailpassword/interfaces.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.emailpassword.interface
9090
self.link = link
9191

9292

93-
class CreateResetPasswordLinkUknownUserIdError:
93+
class CreateResetPasswordLinkUnknownUserIdError:
9494
pass
9595

9696

@@ -613,16 +613,16 @@ <h3>Methods</h3>
613613
self.link = link</code></pre>
614614
</details>
615615
</dd>
616-
<dt id="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUknownUserIdError"><code class="flex name class">
617-
<span>class <span class="ident">CreateResetPasswordLinkUknownUserIdError</span></span>
616+
<dt id="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUnknownUserIdError"><code class="flex name class">
617+
<span>class <span class="ident">CreateResetPasswordLinkUnknownUserIdError</span></span>
618618
</code></dt>
619619
<dd>
620620
<div class="desc"></div>
621621
<details class="source">
622622
<summary>
623623
<span>Expand source code</span>
624624
</summary>
625-
<pre><code class="python">class CreateResetPasswordLinkUknownUserIdError:
625+
<pre><code class="python">class CreateResetPasswordLinkUnknownUserIdError:
626626
pass</code></pre>
627627
</details>
628628
</dd>
@@ -1481,7 +1481,7 @@ <h4><code><a title="supertokens_python.recipe.emailpassword.interfaces.APIOption
14811481
<h4><code><a title="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkOkResult" href="#supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkOkResult">CreateResetPasswordLinkOkResult</a></code></h4>
14821482
</li>
14831483
<li>
1484-
<h4><code><a title="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUknownUserIdError" href="#supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUknownUserIdError">CreateResetPasswordLinkUknownUserIdError</a></code></h4>
1484+
<h4><code><a title="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUnknownUserIdError" href="#supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordLinkUnknownUserIdError">CreateResetPasswordLinkUnknownUserIdError</a></code></h4>
14851485
</li>
14861486
<li>
14871487
<h4><code><a title="supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordOkResult" href="#supertokens_python.recipe.emailpassword.interfaces.CreateResetPasswordOkResult">CreateResetPasswordOkResult</a></code></h4>

html/supertokens_python/recipe/thirdpartyemailpassword/asyncio/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdpartyemailpassword
5151

5252
from supertokens_python.recipe.thirdpartyemailpassword.interfaces import (
5353
CreateResetPasswordWrongUserIdError,
54-
CreateResetPasswordLinkUknownUserIdError,
54+
CreateResetPasswordLinkUnknownUserIdError,
5555
CreateResetPasswordLinkOkResult,
5656
SendResetPasswordEmailUnknownUserIdError,
5757
SendResetPasswordEmailEmailOkResult,
@@ -217,7 +217,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdpartyemailpassword
217217
):
218218
token = await create_reset_password_token(tenant_id, user_id, user_context)
219219
if isinstance(token, CreateResetPasswordWrongUserIdError):
220-
return CreateResetPasswordLinkUknownUserIdError()
220+
return CreateResetPasswordLinkUnknownUserIdError()
221221

222222
recipe_instance = ThirdPartyEmailPasswordRecipe.get_instance()
223223

@@ -240,7 +240,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdpartyemailpassword
240240
user_context: Optional[Dict[str, Any]] = None,
241241
):
242242
link = await create_reset_password_link(tenant_id, user_id, user_context)
243-
if isinstance(link, CreateResetPasswordLinkUknownUserIdError):
243+
if isinstance(link, CreateResetPasswordLinkUnknownUserIdError):
244244
return SendResetPasswordEmailUnknownUserIdError()
245245

246246
user = await get_user_by_id(user_id, user_context)
@@ -279,7 +279,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
279279
):
280280
token = await create_reset_password_token(tenant_id, user_id, user_context)
281281
if isinstance(token, CreateResetPasswordWrongUserIdError):
282-
return CreateResetPasswordLinkUknownUserIdError()
282+
return CreateResetPasswordLinkUnknownUserIdError()
283283

284284
recipe_instance = ThirdPartyEmailPasswordRecipe.get_instance()
285285

@@ -480,7 +480,7 @@ <h2 class="section-title" id="header-functions">Functions</h2>
480480
user_context: Optional[Dict[str, Any]] = None,
481481
):
482482
link = await create_reset_password_link(tenant_id, user_id, user_context)
483-
if isinstance(link, CreateResetPasswordLinkUknownUserIdError):
483+
if isinstance(link, CreateResetPasswordLinkUnknownUserIdError):
484484
return SendResetPasswordEmailUnknownUserIdError()
485485

486486
user = await get_user_by_id(user_id, user_context)

html/supertokens_python/recipe/thirdpartyemailpassword/interfaces.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdpartyemailpassword
4646
CreateResetPasswordOkResult = EPInterfaces.CreateResetPasswordOkResult
4747
CreateResetPasswordWrongUserIdError = EPInterfaces.CreateResetPasswordWrongUserIdError
4848
CreateResetPasswordLinkOkResult = EPInterfaces.CreateResetPasswordLinkOkResult
49-
CreateResetPasswordLinkUknownUserIdError = (
50-
EPInterfaces.CreateResetPasswordLinkUknownUserIdError
49+
CreateResetPasswordLinkUnknownUserIdError = (
50+
EPInterfaces.CreateResetPasswordLinkUnknownUserIdError
5151
)
5252
SendResetPasswordEmailEmailOkResult = EPInterfaces.SendResetPasswordEmailOkResult
5353
SendResetPasswordEmailUnknownUserIdError = (

0 commit comments

Comments
 (0)