square-authentication 10.0.6__tar.gz → 10.0.7__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.
Files changed (24) hide show
  1. {square_authentication-10.0.6 → square_authentication-10.0.7}/PKG-INFO +1 -1
  2. {square_authentication-10.0.6 → square_authentication-10.0.7}/pyproject.toml +1 -1
  3. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/main.py +2 -2
  4. square_authentication-10.0.6/square_authentication/routes/utility.py → square_authentication-10.0.7/square_authentication/routes/internal.py +2 -2
  5. {square_authentication-10.0.6 → square_authentication-10.0.7}/README.md +0 -0
  6. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/__init__.py +0 -0
  7. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/configuration.py +0 -0
  8. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/data/config.sample.ini +0 -0
  9. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/data/config.testing.sample.ini +0 -0
  10. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/messages.py +0 -0
  11. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/pydantic_models/__init__.py +0 -0
  12. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/pydantic_models/core.py +0 -0
  13. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/pydantic_models/profile.py +0 -0
  14. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/routes/__init__.py +0 -0
  15. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/routes/core.py +0 -0
  16. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/routes/profile.py +0 -0
  17. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/__init__.py +0 -0
  18. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/core.py +0 -0
  19. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/encryption.py +0 -0
  20. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/routes/__init__.py +0 -0
  21. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/routes/core.py +0 -0
  22. /square_authentication-10.0.6/square_authentication/utils/routes/utility.py → /square_authentication-10.0.7/square_authentication/utils/routes/internal.py +0 -0
  23. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/routes/profile.py +0 -0
  24. {square_authentication-10.0.6 → square_authentication-10.0.7}/square_authentication/utils/token.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: square-authentication
3
- Version: 10.0.6
3
+ Version: 10.0.7
4
4
  Summary: authentication layer for my personal server.
5
5
  Keywords: authentication,fastapi,server,utilities
6
6
  Author: Parth Mukesh Mangtani
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "square_authentication"
7
- version = "10.0.6"
7
+ version = "10.0.7"
8
8
  description = "authentication layer for my personal server."
9
9
  readme = "README.md"
10
10
  readme-content-type = "text/markdown"
@@ -15,7 +15,7 @@ from square_authentication.configuration import (
15
15
  config_str_ssl_crt_file_path,
16
16
  config_list_allow_origins,
17
17
  )
18
- from square_authentication.routes import core, utility, profile
18
+ from square_authentication.routes import core, internal, profile
19
19
 
20
20
  app = FastAPI()
21
21
 
@@ -28,7 +28,7 @@ app.add_middleware(
28
28
  )
29
29
 
30
30
  app.include_router(core.router)
31
- app.include_router(utility.router)
31
+ app.include_router(internal.router)
32
32
  app.include_router(profile.router)
33
33
 
34
34
 
@@ -4,10 +4,10 @@ from square_commons import get_api_output_in_standard_format
4
4
 
5
5
  from square_authentication.configuration import global_object_square_logger
6
6
  from square_authentication.messages import messages
7
- from square_authentication.utils.routes.utility import util_get_text_hash_v0
7
+ from square_authentication.utils.routes.internal import util_get_text_hash_v0
8
8
 
9
9
  router = APIRouter(
10
- tags=["utility"],
10
+ tags=["internal"],
11
11
  )
12
12
 
13
13