maleo-identity 0.0.82__tar.gz → 0.0.83__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.82 → maleo_identity-0.0.83}/PKG-INFO +3 -3
- maleo_identity-0.0.83/maleo/identity/dtos/configuration.py +15 -0
- maleo_identity-0.0.83/maleo/identity/dtos/settings.py +17 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/organization_registration_code.py +1 -1
- maleo_identity-0.0.83/maleo/identity/types/base/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo_identity.egg-info/PKG-INFO +3 -3
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo_identity.egg-info/SOURCES.txt +5 -2
- maleo_identity-0.0.83/maleo_identity.egg-info/requires.txt +2 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/pyproject.toml +3 -3
- maleo_identity-0.0.82/maleo_identity.egg-info/requires.txt +0 -2
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/README.md +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/manager.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_system_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_system_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/db.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/dtos/__init__.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/enums → maleo_identity-0.0.83/maleo/identity/dtos/data}/__init__.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/dtos → maleo_identity-0.0.83/maleo/identity/dtos/data}/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/dtos → maleo_identity-0.0.83/maleo/identity/dtos/data}/user_profile.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/mixins → maleo_identity-0.0.83/maleo/identity/enums}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/general.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/models → maleo_identity-0.0.83/maleo/identity/mixins}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas → maleo_identity-0.0.83/maleo/identity/models}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/data → maleo_identity-0.0.83/maleo/identity/schemas}/__init__.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/metadata → maleo_identity-0.0.83/maleo/identity/schemas/data}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/parameter → maleo_identity-0.0.83/maleo/identity/schemas/metadata}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/metadata/user.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/parameter/client → maleo_identity-0.0.83/maleo/identity/schemas/parameter}/__init__.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/parameter/general → maleo_identity-0.0.83/maleo/identity/schemas/parameter/client}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/schemas/parameter/service → maleo_identity-0.0.83/maleo/identity/schemas/parameter/general}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user_organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/types → maleo_identity-0.0.83/maleo/identity/schemas/parameter/service}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/user_organization_role.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/user_system_role.py +0 -0
- {maleo_identity-0.0.82/maleo/identity/types/base → maleo_identity-0.0.83/maleo/identity/types}/__init__.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/types/base/organization.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/types/base/organization_registration_code.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/types/base/user.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/types/base/user_profile.py +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo_identity.egg-info/dependency_links.txt +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo_identity.egg-info/top_level.txt +0 -0
- {maleo_identity-0.0.82 → maleo_identity-0.0.83}/setup.cfg +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.83
|
|
4
4
|
Summary: MaleoIdentity service package
|
|
5
5
|
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.7
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
-
Requires-Dist: maleo_soma>=0.1.
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.2.
|
|
9
|
+
Requires-Dist: maleo_soma>=0.1.84
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.2.40
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from maleo.soma.dtos.configurations import ConfigurationDTO as BaseConfigurationDTO
|
|
2
|
+
from maleo.soma.dtos.configurations.client.maleo import (
|
|
3
|
+
MaleoMetadataClientConfigurationMixin,
|
|
4
|
+
)
|
|
5
|
+
from maleo.soma.dtos.configurations.pubsub.publisher import TopicsConfigurationDTO
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class MaleoClientsConfiguration(MaleoMetadataClientConfigurationMixin):
|
|
9
|
+
pass
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ConfigurationDTO(
|
|
13
|
+
BaseConfigurationDTO[MaleoClientsConfiguration, TopicsConfigurationDTO, None]
|
|
14
|
+
):
|
|
15
|
+
pass
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from pydantic import model_validator
|
|
2
|
+
from typing import Self
|
|
3
|
+
from maleo.soma.dtos.settings import Settings as BaseSettings
|
|
4
|
+
from maleo.soma.enums.service import ServiceKey, ServiceName
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Settings(BaseSettings):
|
|
8
|
+
@model_validator(mode="after")
|
|
9
|
+
def validate_service_key_name(self) -> Self:
|
|
10
|
+
assert (
|
|
11
|
+
self.SERVICE_KEY is ServiceKey.IDENTITY
|
|
12
|
+
), f"'SERVICE_KEY' must be '{ServiceKey.IDENTITY}'"
|
|
13
|
+
assert (
|
|
14
|
+
self.SERVICE_NAME is ServiceName.IDENTITY
|
|
15
|
+
), f"'SERVICE_NAME' must be '{ServiceName.IDENTITY}'"
|
|
16
|
+
|
|
17
|
+
return self
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from pydantic import BaseModel, Field
|
|
2
2
|
from typing import Optional
|
|
3
3
|
from maleo.soma.mixins.data import DataIdentifier, DataTimestamp, DataStatus
|
|
4
|
-
from maleo.identity.dtos.organization_registration_code import (
|
|
4
|
+
from maleo.identity.dtos.data.organization_registration_code import (
|
|
5
5
|
OrganizationRegistrationCodeDTO,
|
|
6
6
|
)
|
|
7
7
|
|
|
File without changes
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.83
|
|
4
4
|
Summary: MaleoIdentity service package
|
|
5
5
|
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.7
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
-
Requires-Dist: maleo_soma>=0.1.
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.2.
|
|
9
|
+
Requires-Dist: maleo_soma>=0.1.84
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.2.40
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -23,8 +23,11 @@ maleo/identity/constants/user_organization_role.py
|
|
|
23
23
|
maleo/identity/constants/user_profile.py
|
|
24
24
|
maleo/identity/constants/user_system_role.py
|
|
25
25
|
maleo/identity/dtos/__init__.py
|
|
26
|
-
maleo/identity/dtos/
|
|
27
|
-
maleo/identity/dtos/
|
|
26
|
+
maleo/identity/dtos/configuration.py
|
|
27
|
+
maleo/identity/dtos/settings.py
|
|
28
|
+
maleo/identity/dtos/data/__init__.py
|
|
29
|
+
maleo/identity/dtos/data/organization_registration_code.py
|
|
30
|
+
maleo/identity/dtos/data/user_profile.py
|
|
28
31
|
maleo/identity/enums/__init__.py
|
|
29
32
|
maleo/identity/enums/general.py
|
|
30
33
|
maleo/identity/enums/organization.py
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "maleo-identity" # PyPI package name
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.83"
|
|
8
8
|
description = "MaleoIdentity service package"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Agra Bima Yuda", email = "agra@nexmedis.com" }
|
|
@@ -13,8 +13,8 @@ license = { text = "MIT" }
|
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
requires-python = ">=3.7"
|
|
15
15
|
dependencies = [
|
|
16
|
-
"maleo_soma>=0.1.
|
|
17
|
-
"maleo_metadata>=0.2.
|
|
16
|
+
"maleo_soma>=0.1.84",
|
|
17
|
+
"maleo_metadata>=0.2.40",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
[tool.setuptools.packages.find]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/organization.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/organization_role.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_organization.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_profile.py
RENAMED
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/client/services/user_system_role.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/organization_role.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_organization.py
RENAMED
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_organization_role.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/constants/user_system_role.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
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/enums/user_organization_role.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/mixins/user_organization_role.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/models/user_organization_role.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/organization_role.py
RENAMED
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_organization.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/data/user_system_role.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/client/user.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/general/user.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo/identity/schemas/parameter/service/user.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
|
{maleo_identity-0.0.82 → maleo_identity-0.0.83}/maleo_identity.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|