belgie-core 0.3.1__tar.gz → 0.4.0__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 (20) hide show
  1. {belgie_core-0.3.1 → belgie_core-0.4.0}/PKG-INFO +1 -1
  2. {belgie_core-0.3.1 → belgie_core-0.4.0}/pyproject.toml +1 -1
  3. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/belgie.py +2 -1
  4. {belgie_core-0.3.1 → belgie_core-0.4.0}/README.md +0 -0
  5. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/__init__.py +0 -0
  6. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/__init__.py +0 -0
  7. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/client.py +0 -0
  8. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/exceptions.py +0 -0
  9. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/hooks.py +0 -0
  10. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/protocols.py +0 -0
  11. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/core/settings.py +0 -0
  12. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/providers/__init__.py +0 -0
  13. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/providers/google.py +0 -0
  14. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/providers/protocols.py +0 -0
  15. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/py.typed +0 -0
  16. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/session/__init__.py +0 -0
  17. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/session/manager.py +0 -0
  18. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/utils/__init__.py +0 -0
  19. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/utils/crypto.py +0 -0
  20. {belgie_core-0.3.1 → belgie_core-0.4.0}/src/belgie_core/utils/scopes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: belgie-core
3
- Version: 0.3.1
3
+ Version: 0.4.0
4
4
  Summary: Core authentication logic for Belgie
5
5
  Author: Matt LeMay
6
6
  Author-email: Matt LeMay <mplemay@users.noreply.github.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "belgie-core"
3
- version = "0.3.1"
3
+ version = "0.4.0"
4
4
  description = "Core authentication logic for Belgie"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -93,7 +93,7 @@ class Belgie[
93
93
  adapter: Database adapter for persistence operations
94
94
  session_manager: Session manager instance for session operations
95
95
  providers: Dictionary of registered OAuth providers keyed by provider_id
96
- router: FastAPI router with authentication endpoints (cached property)
96
+ router: FastAPI router with authentication endpoints
97
97
 
98
98
  Example:
99
99
  >>> from belgie_core import Belgie, BelgieSettings
@@ -191,6 +191,7 @@ class Belgie[
191
191
 
192
192
  return instance
193
193
 
194
+ @property
194
195
  def router(self) -> APIRouter:
195
196
  """FastAPI router with all provider routes.
196
197
 
File without changes