maleo-identity 0.0.96__tar.gz → 0.0.97__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.
Potentially problematic release.
This version of maleo-identity might be problematic. Click here for more details.
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/PKG-INFO +1 -1
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/PKG-INFO +1 -1
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/pyproject.toml +1 -1
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/models.py +1 -1
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/LICENSE +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/README.md +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/SOURCES.txt +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/dependency_links.txt +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/requires.txt +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/top_level.txt +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/setup.cfg +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/organization_registration_code.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/user.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/user_profile.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/enums/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/enums/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/enums/organization_registration_code.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/enums/user.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/enums/user_profile.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/organization_registration_code.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/user.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/user_profile.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/common.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/organization_registration_code.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/user.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/user_profile.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/types/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/types/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/types/organization_registration_code.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/types/user.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/types/user_profile.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/utils/__init__.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/utils/organization.py +0 -0
- {maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/utils/user.py +0 -0
|
@@ -276,7 +276,7 @@ class User(
|
|
|
276
276
|
)
|
|
277
277
|
|
|
278
278
|
@declared_attr
|
|
279
|
-
def system_roles(cls) -> Mapped["UserSystemRole
|
|
279
|
+
def system_roles(cls) -> Mapped[list["UserSystemRole"]]:
|
|
280
280
|
return relationship(
|
|
281
281
|
"UserSystemRole", back_populates="user", cascade="all, delete-orphan"
|
|
282
282
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.96 → maleo_identity-0.0.97}/maleo_identity.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/constants/organization_registration_code.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
|
{maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/mixins/organization_registration_code.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.96 → maleo_identity-0.0.97}/src/schemas/organization_registration_code.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
|
|
File without changes
|