Skip to content

Commit 382d417

Browse files
committed
adding dev-v0.10.1 tag to this commit to ensure building
1 parent 7c416f9 commit 382d417

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

html/supertokens_python/constants.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h1 class="title">Module <code>supertokens_python.constants</code></h1>
4040
# License for the specific language governing permissions and limitations
4141
# under the License.
4242
SUPPORTED_CDI_VERSIONS = [&#34;2.9&#34;, &#34;2.10&#34;, &#34;2.11&#34;, &#34;2.12&#34;, &#34;2.13&#34;, &#34;2.14&#34;]
43-
VERSION = &#34;0.10.0&#34;
43+
VERSION = &#34;0.10.1&#34;
4444
TELEMETRY = &#34;/telemetry&#34;
4545
USER_COUNT = &#34;/users/count&#34;
4646
USER_DELETE = &#34;/user/remove&#34;

html/supertokens_python/querier.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ <h1 class="title">Module <code>supertokens_python.querier</code></h1>
109109
if Querier.__api_key is not None:
110110
headers = {API_KEY_HEADER: Querier.__api_key}
111111
async with AsyncClient() as client:
112-
return await client.get(url, headers=headers)
112+
return await client.get(url, headers=headers) # type:ignore
113113

114114
response = await self.__send_request_helper(
115115
NormalisedURLPath(API_VERSION), &#34;GET&#34;, f, len(self.__hosts)
@@ -161,7 +161,7 @@ <h1 class="title">Module <code>supertokens_python.querier</code></h1>
161161

162162
async def f(url: str) -&gt; Response:
163163
async with AsyncClient() as client:
164-
return await client.get(
164+
return await client.get( # type:ignore
165165
url,
166166
params=params,
167167
headers=await self.__get_headers_with_api_version(path),
@@ -197,7 +197,7 @@ <h1 class="title">Module <code>supertokens_python.querier</code></h1>
197197
async def send_delete_request(self, path: NormalisedURLPath):
198198
async def f(url: str) -&gt; Response:
199199
async with AsyncClient() as client:
200-
return await client.delete(
200+
return await client.delete( # type:ignore
201201
url, headers=await self.__get_headers_with_api_version(path)
202202
)
203203

@@ -336,7 +336,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
336336
if Querier.__api_key is not None:
337337
headers = {API_KEY_HEADER: Querier.__api_key}
338338
async with AsyncClient() as client:
339-
return await client.get(url, headers=headers)
339+
return await client.get(url, headers=headers) # type:ignore
340340

341341
response = await self.__send_request_helper(
342342
NormalisedURLPath(API_VERSION), &#34;GET&#34;, f, len(self.__hosts)
@@ -388,7 +388,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
388388

389389
async def f(url: str) -&gt; Response:
390390
async with AsyncClient() as client:
391-
return await client.get(
391+
return await client.get( # type:ignore
392392
url,
393393
params=params,
394394
headers=await self.__get_headers_with_api_version(path),
@@ -424,7 +424,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
424424
async def send_delete_request(self, path: NormalisedURLPath):
425425
async def f(url: str) -&gt; Response:
426426
async with AsyncClient() as client:
427-
return await client.delete(
427+
return await client.delete( # type:ignore
428428
url, headers=await self.__get_headers_with_api_version(path)
429429
)
430430

@@ -601,7 +601,7 @@ <h3>Methods</h3>
601601
if Querier.__api_key is not None:
602602
headers = {API_KEY_HEADER: Querier.__api_key}
603603
async with AsyncClient() as client:
604-
return await client.get(url, headers=headers)
604+
return await client.get(url, headers=headers) # type:ignore
605605

606606
response = await self.__send_request_helper(
607607
NormalisedURLPath(API_VERSION), &#34;GET&#34;, f, len(self.__hosts)
@@ -632,7 +632,7 @@ <h3>Methods</h3>
632632
<pre><code class="python">async def send_delete_request(self, path: NormalisedURLPath):
633633
async def f(url: str) -&gt; Response:
634634
async with AsyncClient() as client:
635-
return await client.delete(
635+
return await client.delete( # type:ignore
636636
url, headers=await self.__get_headers_with_api_version(path)
637637
)
638638

@@ -656,7 +656,7 @@ <h3>Methods</h3>
656656

657657
async def f(url: str) -&gt; Response:
658658
async with AsyncClient() as client:
659-
return await client.get(
659+
return await client.get( # type:ignore
660660
url,
661661
params=params,
662662
headers=await self.__get_headers_with_api_version(path),

html/supertokens_python/recipe/thirdparty/providers/apple.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.ap
183183
self.APPLE_PUBLIC_KEYS
184184
) == 0:
185185
async with AsyncClient() as client:
186-
response = await client.get(self.APPLE_PUBLIC_KEY_URL)
186+
response = await client.get(self.APPLE_PUBLIC_KEY_URL) # type:ignore
187187
key_payload = response.json()
188188
for key in key_payload[&#34;keys&#34;]:
189189
self.APPLE_PUBLIC_KEYS.append(RSAAlgorithm.from_jwk(key)) # type: ignore
@@ -343,7 +343,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
343343
self.APPLE_PUBLIC_KEYS
344344
) == 0:
345345
async with AsyncClient() as client:
346-
response = await client.get(self.APPLE_PUBLIC_KEY_URL)
346+
response = await client.get(self.APPLE_PUBLIC_KEY_URL) # type:ignore
347347
key_payload = response.json()
348348
for key in key_payload[&#34;keys&#34;]:
349349
self.APPLE_PUBLIC_KEYS.append(RSAAlgorithm.from_jwk(key)) # type: ignore

html/supertokens_python/recipe/thirdparty/providers/discord.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.di
8787
access_token: str = auth_code_response[&#34;access_token&#34;]
8888
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
8989
async with AsyncClient() as client:
90-
response = await client.get(
90+
response = await client.get( # type:ignore
9191
url=self.base_url + &#34;/api/users/@me&#34;, headers=headers
9292
)
9393
user_info = response.json()
@@ -185,7 +185,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
185185
access_token: str = auth_code_response[&#34;access_token&#34;]
186186
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
187187
async with AsyncClient() as client:
188-
response = await client.get(
188+
response = await client.get( # type:ignore
189189
url=self.base_url + &#34;/api/users/@me&#34;, headers=headers
190190
)
191191
user_info = response.json()
@@ -312,7 +312,7 @@ <h3>Methods</h3>
312312
access_token: str = auth_code_response[&#34;access_token&#34;]
313313
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
314314
async with AsyncClient() as client:
315-
response = await client.get(
315+
response = await client.get( # type:ignore
316316
url=self.base_url + &#34;/api/users/@me&#34;, headers=headers
317317
)
318318
user_info = response.json()

html/supertokens_python/recipe/thirdparty/providers/facebook.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.fa
8282

8383
params = {&#34;access_token&#34;: access_token, &#34;fields&#34;: &#34;id,email&#34;, &#34;format&#34;: &#34;json&#34;}
8484
async with AsyncClient() as client:
85-
response = await client.get(
85+
response = await client.get( # type:ignore
8686
url=&#34;https://graph.facebook.com/me&#34;, params=params
8787
)
8888
user_info = response.json()
@@ -168,7 +168,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
168168

169169
params = {&#34;access_token&#34;: access_token, &#34;fields&#34;: &#34;id,email&#34;, &#34;format&#34;: &#34;json&#34;}
170170
async with AsyncClient() as client:
171-
response = await client.get(
171+
response = await client.get( # type:ignore
172172
url=&#34;https://graph.facebook.com/me&#34;, params=params
173173
)
174174
user_info = response.json()
@@ -287,7 +287,7 @@ <h3>Methods</h3>
287287

288288
params = {&#34;access_token&#34;: access_token, &#34;fields&#34;: &#34;id,email&#34;, &#34;format&#34;: &#34;json&#34;}
289289
async with AsyncClient() as client:
290-
response = await client.get(
290+
response = await client.get( # type:ignore
291291
url=&#34;https://graph.facebook.com/me&#34;, params=params
292292
)
293293
user_info = response.json()

html/supertokens_python/recipe/thirdparty/providers/github.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.gi
9292
&#34;Accept&#34;: &#34;application/vnd.github.v3+json&#34;,
9393
}
9494
async with AsyncClient() as client:
95-
response_user = await client.get(
95+
response_user = await client.get( # type:ignore
9696
url=&#34;https://api.github.com/user&#34;, params=params, headers=headers
9797
)
98-
response_email = await client.get(
98+
response_email = await client.get( # type:ignore
9999
url=&#34;https://api.github.com/user/emails&#34;, params=params, headers=headers
100100
)
101101
user_info = response_user.json()
@@ -202,10 +202,10 @@ <h2 class="section-title" id="header-classes">Classes</h2>
202202
&#34;Accept&#34;: &#34;application/vnd.github.v3+json&#34;,
203203
}
204204
async with AsyncClient() as client:
205-
response_user = await client.get(
205+
response_user = await client.get( # type:ignore
206206
url=&#34;https://api.github.com/user&#34;, params=params, headers=headers
207207
)
208-
response_email = await client.get(
208+
response_email = await client.get( # type:ignore
209209
url=&#34;https://api.github.com/user/emails&#34;, params=params, headers=headers
210210
)
211211
user_info = response_user.json()
@@ -340,10 +340,10 @@ <h3>Methods</h3>
340340
&#34;Accept&#34;: &#34;application/vnd.github.v3+json&#34;,
341341
}
342342
async with AsyncClient() as client:
343-
response_user = await client.get(
343+
response_user = await client.get( # type:ignore
344344
url=&#34;https://api.github.com/user&#34;, params=params, headers=headers
345345
)
346-
response_email = await client.get(
346+
response_email = await client.get( # type:ignore
347347
url=&#34;https://api.github.com/user/emails&#34;, params=params, headers=headers
348348
)
349349
user_info = response_user.json()

html/supertokens_python/recipe/thirdparty/providers/google.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h1 class="title">Module <code>supertokens_python.recipe.thirdparty.providers.go
8787
params = {&#34;alt&#34;: &#34;json&#34;}
8888
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
8989
async with AsyncClient() as client:
90-
response = await client.get(
90+
response = await client.get( # type: ignore
9191
url=&#34;https://www.googleapis.com/oauth2/v1/userinfo&#34;,
9292
params=params,
9393
headers=headers,
@@ -189,7 +189,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
189189
params = {&#34;alt&#34;: &#34;json&#34;}
190190
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
191191
async with AsyncClient() as client:
192-
response = await client.get(
192+
response = await client.get( # type: ignore
193193
url=&#34;https://www.googleapis.com/oauth2/v1/userinfo&#34;,
194194
params=params,
195195
headers=headers,
@@ -323,7 +323,7 @@ <h3>Methods</h3>
323323
params = {&#34;alt&#34;: &#34;json&#34;}
324324
headers = {&#34;Authorization&#34;: &#34;Bearer &#34; + access_token}
325325
async with AsyncClient() as client:
326-
response = await client.get(
326+
response = await client.get( # type: ignore
327327
url=&#34;https://www.googleapis.com/oauth2/v1/userinfo&#34;,
328328
params=params,
329329
headers=headers,

0 commit comments

Comments
 (0)