square-authentication 8.0.0__tar.gz → 8.0.1__tar.gz
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-8.0.0 → square_authentication-8.0.1}/PKG-INFO +7 -1
- {square_authentication-8.0.0 → square_authentication-8.0.1}/README.md +6 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/setup.py +1 -1
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/core.py +6 -2
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/PKG-INFO +7 -1
- {square_authentication-8.0.0 → square_authentication-8.0.1}/pyproject.toml +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/setup.cfg +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/__init__.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/configuration.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/data/config.sample.ini +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/data/config.testing.sample.ini +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/main.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/messages.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/pydantic_models/__init__.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/pydantic_models/core.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/pydantic_models/profile.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/__init__.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/profile.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/utility.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/__init__.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/core.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/encryption.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/token.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/SOURCES.txt +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/dependency_links.txt +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/requires.txt +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/top_level.txt +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/tests/test_1.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/tests/test_delete_user.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/tests/test_login.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/tests/test_update_profile.py +0 -0
- {square_authentication-8.0.0 → square_authentication-8.0.1}/tests/test_username.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: square_authentication
|
3
|
-
Version: 8.0.
|
3
|
+
Version: 8.0.1
|
4
4
|
Summary: authentication layer for my personal server.
|
5
5
|
Home-page: https://github.com/thepmsquare/square_authentication
|
6
6
|
Author: thePmSquare
|
@@ -54,6 +54,12 @@ pip install square_authentication
|
|
54
54
|
|
55
55
|
## changelog
|
56
56
|
|
57
|
+
### v8.0.1
|
58
|
+
|
59
|
+
- core
|
60
|
+
- add make recovery_methods_to_add and recovery_methods_to_remove parameters optional in
|
61
|
+
update_user_recovery_methods_v0.
|
62
|
+
|
57
63
|
### v8.0.0
|
58
64
|
|
59
65
|
- env
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/core.py
RENAMED
@@ -2075,9 +2075,13 @@ async def validate_and_get_payload_from_token_v0(
|
|
2075
2075
|
@global_object_square_logger.auto_logger()
|
2076
2076
|
async def update_user_recovery_methods_v0(
|
2077
2077
|
access_token: Annotated[str, Header()],
|
2078
|
-
recovery_methods_to_add: List[RecoveryMethodEnum],
|
2079
|
-
recovery_methods_to_remove: List[RecoveryMethodEnum],
|
2078
|
+
recovery_methods_to_add: List[RecoveryMethodEnum] = None,
|
2079
|
+
recovery_methods_to_remove: List[RecoveryMethodEnum] = None,
|
2080
2080
|
):
|
2081
|
+
if recovery_methods_to_add is None:
|
2082
|
+
recovery_methods_to_add = []
|
2083
|
+
if recovery_methods_to_remove is None:
|
2084
|
+
recovery_methods_to_remove = []
|
2081
2085
|
try:
|
2082
2086
|
|
2083
2087
|
"""
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: square_authentication
|
3
|
-
Version: 8.0.
|
3
|
+
Version: 8.0.1
|
4
4
|
Summary: authentication layer for my personal server.
|
5
5
|
Home-page: https://github.com/thepmsquare/square_authentication
|
6
6
|
Author: thePmSquare
|
@@ -54,6 +54,12 @@ pip install square_authentication
|
|
54
54
|
|
55
55
|
## changelog
|
56
56
|
|
57
|
+
### v8.0.1
|
58
|
+
|
59
|
+
- core
|
60
|
+
- add make recovery_methods_to_add and recovery_methods_to_remove parameters optional in
|
61
|
+
update_user_recovery_methods_v0.
|
62
|
+
|
57
63
|
### v8.0.0
|
58
64
|
|
59
65
|
- env
|
File without changes
|
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/__init__.py
RENAMED
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/configuration.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/messages.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/__init__.py
RENAMED
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/profile.py
RENAMED
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/routes/utility.py
RENAMED
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/__init__.py
RENAMED
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/core.py
RENAMED
File without changes
|
File without changes
|
{square_authentication-8.0.0 → square_authentication-8.0.1}/square_authentication/utils/token.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|