square-authentication 5.2.0__py3-none-any.whl → 6.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- square_authentication/routes/core.py +4 -5
- {square_authentication-5.2.0.dist-info → square_authentication-6.0.0.dist-info}/METADATA +5 -1
- {square_authentication-5.2.0.dist-info → square_authentication-6.0.0.dist-info}/RECORD +5 -5
- {square_authentication-5.2.0.dist-info → square_authentication-6.0.0.dist-info}/WHEEL +0 -0
- {square_authentication-5.2.0.dist-info → square_authentication-6.0.0.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,4 @@
|
|
1
|
+
import copy
|
1
2
|
from datetime import datetime, timedelta, timezone
|
2
3
|
from typing import Annotated, List
|
3
4
|
|
@@ -302,16 +303,14 @@ async def get_user_details_v0(
|
|
302
303
|
),
|
303
304
|
)["data"]["main"]
|
304
305
|
)
|
306
|
+
user_profile = copy.deepcopy(local_list_response_user_profile[0])
|
307
|
+
del user_profile[UserProfile.user_id.name]
|
305
308
|
"""
|
306
309
|
return value
|
307
310
|
"""
|
308
311
|
return_this = {
|
309
312
|
"user_id": user_id,
|
310
|
-
"
|
311
|
-
"username": local_list_response_user_profile[0][
|
312
|
-
UserProfile.user_profile_username.name
|
313
|
-
],
|
314
|
-
},
|
313
|
+
"profile": user_profile,
|
315
314
|
"apps": [
|
316
315
|
y[App.app_name.name]
|
317
316
|
for y in local_list_app
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: square_authentication
|
3
|
-
Version:
|
3
|
+
Version: 6.0.0
|
4
4
|
Summary: authentication layer for my personal server.
|
5
5
|
Home-page: https://github.com/thepmsquare/square_authentication
|
6
6
|
Author: thePmSquare
|
@@ -53,6 +53,10 @@ pip install square_authentication
|
|
53
53
|
|
54
54
|
## changelog
|
55
55
|
|
56
|
+
### v6.0.0
|
57
|
+
|
58
|
+
- add profile details in get_user_details_v0 instead of credentials keyword.
|
59
|
+
|
56
60
|
### v5.2.0
|
57
61
|
|
58
62
|
- add temp folder to .gitignore.
|
@@ -6,13 +6,13 @@ square_authentication/data/config.ini,sha256=xkKVlwqspOE8z55ty15ERbZcNVkMOuxF_rL
|
|
6
6
|
square_authentication/pydantic_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
square_authentication/pydantic_models/core.py,sha256=qeNETcJv7mnRKGhATOW2bg0NlHuyzvot1dZ1b1qqhwU,610
|
8
8
|
square_authentication/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
-
square_authentication/routes/core.py,sha256=
|
9
|
+
square_authentication/routes/core.py,sha256=Ui2kJI3DHK1tsb4_cCle8iurZlU__O_nptk2-YLZ2vg,56778
|
10
10
|
square_authentication/routes/profile.py,sha256=YkApDwsSL4KDKdT5uHDqdpSmTEhPgRkJ6bTQkf5sj9Q,4879
|
11
11
|
square_authentication/routes/utility.py,sha256=KDr8KdkT0jAGPjfP-b5XXYG7p49WU7J1FiK6oSIckQI,1779
|
12
12
|
square_authentication/utils/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
13
13
|
square_authentication/utils/encryption.py,sha256=WakaiEAgWpTJltxBzqOtv81_DCDKfzJqt60fWSPoNvo,2027
|
14
14
|
square_authentication/utils/token.py,sha256=t-RPBY4cYyT1ro3lkLBTOy2BeRGBfluBVBivL5DLmDg,680
|
15
|
-
square_authentication-
|
16
|
-
square_authentication-
|
17
|
-
square_authentication-
|
18
|
-
square_authentication-
|
15
|
+
square_authentication-6.0.0.dist-info/METADATA,sha256=diCuuGBkXdBe3l2ArU7R1M6dB-BwAox2bdzdDb-MC8o,4733
|
16
|
+
square_authentication-6.0.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
17
|
+
square_authentication-6.0.0.dist-info/top_level.txt,sha256=wDssVJIl9KIEJPj5rR3rv4uRI7yCndMBrvHd_6BGXQA,22
|
18
|
+
square_authentication-6.0.0.dist-info/RECORD,,
|
File without changes
|
{square_authentication-5.2.0.dist-info → square_authentication-6.0.0.dist-info}/top_level.txt
RENAMED
File without changes
|