maleo-identity 0.0.15__py3-none-any.whl → 0.0.17__py3-none-any.whl
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/client/controllers/http/organization.py +69 -1
- maleo_identity/client/controllers/http/user.py +36 -2
- maleo_identity/client/services/organization.py +140 -2
- maleo_identity/client/services/user.py +74 -5
- maleo_identity/constants/__init__.py +7 -3
- maleo_identity/constants/organization_role.py +20 -0
- maleo_identity/constants/user_organization_role.py +31 -0
- maleo_identity/enums/__init__.py +8 -4
- maleo_identity/enums/organization_role.py +6 -0
- maleo_identity/enums/user_organization_role.py +8 -0
- maleo_identity/models/responses/__init__.py +8 -4
- maleo_identity/models/responses/organization_role.py +25 -0
- maleo_identity/models/responses/user_organization_role.py +25 -0
- maleo_identity/models/schemas/general/__init__.py +8 -4
- maleo_identity/models/schemas/general/organization_role.py +29 -0
- maleo_identity/models/schemas/general/user_organization_role.py +35 -0
- maleo_identity/models/schemas/parameters/__init__.py +8 -4
- maleo_identity/models/schemas/parameters/organization_role.py +7 -0
- maleo_identity/models/schemas/parameters/user_organization_role.py +8 -0
- maleo_identity/models/schemas/results/__init__.py +8 -4
- maleo_identity/models/schemas/results/organization_role.py +10 -0
- maleo_identity/models/schemas/results/user_organization_role.py +11 -0
- maleo_identity/models/tables/__init__.py +5 -1
- maleo_identity/models/tables/organization_role.py +12 -0
- maleo_identity/models/tables/user_organization_role.py +10 -0
- maleo_identity/models/transfers/general/__init__.py +5 -1
- maleo_identity/models/transfers/general/organization_role.py +15 -0
- maleo_identity/models/transfers/general/user_organization_role.py +18 -0
- maleo_identity/models/transfers/parameters/client/__init__.py +8 -4
- maleo_identity/models/transfers/parameters/client/organization_role.py +31 -0
- maleo_identity/models/transfers/parameters/client/user_organization_role.py +34 -0
- maleo_identity/models/transfers/parameters/general/__init__.py +8 -4
- maleo_identity/models/transfers/parameters/general/organization_role.py +16 -0
- maleo_identity/models/transfers/parameters/general/user_organization_role.py +16 -0
- maleo_identity/models/transfers/parameters/service/__init__.py +8 -4
- maleo_identity/models/transfers/parameters/service/organization_role.py +24 -0
- maleo_identity/models/transfers/parameters/service/user_organization_role.py +26 -0
- maleo_identity/models/transfers/results/general/__init__.py +8 -4
- maleo_identity/models/transfers/results/general/organization_role.py +15 -0
- maleo_identity/models/transfers/results/general/user_organization_role.py +15 -0
- maleo_identity/models/transfers/results/query/__init__.py +7 -3
- maleo_identity/models/transfers/results/query/organization_role.py +19 -0
- maleo_identity/models/transfers/results/query/user_organization_role.py +19 -0
- maleo_identity/types/results/client/__init__.py +8 -4
- maleo_identity/types/results/client/organization_role.py +14 -0
- maleo_identity/types/results/client/user_organization_role.py +14 -0
- maleo_identity/types/results/general/__init__.py +8 -4
- maleo_identity/types/results/general/organization_role.py +15 -0
- maleo_identity/types/results/general/user_organization_role.py +15 -0
- maleo_identity/types/results/query/__init__.py +8 -4
- maleo_identity/types/results/query/organization_role.py +15 -0
- maleo_identity/types/results/query/user_organization_role.py +15 -0
- {maleo_identity-0.0.15.dist-info → maleo_identity-0.0.17.dist-info}/METADATA +3 -3
- {maleo_identity-0.0.15.dist-info → maleo_identity-0.0.17.dist-info}/RECORD +56 -24
- {maleo_identity-0.0.15.dist-info → maleo_identity-0.0.17.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.15.dist-info → maleo_identity-0.0.17.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.organization_role import MaleoIdentityOrganizationRoleResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityOrganizationRoleQueryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityOrganizationRoleResultsSchemas.Base,
|
|
8
|
+
BaseServiceQueryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityOrganizationRoleQueryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityOrganizationRoleQueryResultsTransfers.Row]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.user_organization_role import MaleoIdentityUserOrganizationRoleResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityUserOrganizationRoleQueryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityUserOrganizationRoleResultsSchemas.Base,
|
|
8
|
+
BaseServiceQueryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Row]
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
from .organization_role import MaleoIdentityOrganizationRoleClientResultsTypes
|
|
2
3
|
from .organization import MaleoIdentityOrganizationClientResultsTypes
|
|
3
|
-
from .
|
|
4
|
+
from .user_organization_role import MaleoIdentityUserOrganizationRoleClientResultsTypes
|
|
5
|
+
from .user_organization import MaleoIdentityUserOrganizationClientResultsTypes
|
|
4
6
|
from .user_profile import MaleoIdentityUserProfileClientResultsTypes
|
|
5
7
|
from .user_system_role import MaleoIdentityUserSystemRoleClientResultsTypes
|
|
6
|
-
from .
|
|
8
|
+
from .user import MaleoIdentityUserClientResultsTypes
|
|
7
9
|
|
|
8
10
|
class MaleoIdentityClientResultsTypes:
|
|
11
|
+
OrganizationRole = MaleoIdentityOrganizationRoleClientResultsTypes
|
|
9
12
|
Organization = MaleoIdentityOrganizationClientResultsTypes
|
|
10
|
-
|
|
13
|
+
UserOrganizationRole = MaleoIdentityUserOrganizationRoleClientResultsTypes
|
|
14
|
+
UserOrganization = MaleoIdentityUserOrganizationClientResultsTypes
|
|
11
15
|
UserProfile = MaleoIdentityUserProfileClientResultsTypes
|
|
12
16
|
UserSystemRole = MaleoIdentityUserSystemRoleClientResultsTypes
|
|
13
|
-
|
|
17
|
+
User = MaleoIdentityUserClientResultsTypes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.organization_role import MaleoIdentityOrganizationRoleGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityOrganizationRoleClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserOrganizationRoleClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
from .organization_role import MaleoIdentityOrganizationRoleGeneralResultsTypes
|
|
2
3
|
from .organization import MaleoIdentityOrganizationGeneralResultsTypes
|
|
3
|
-
from .
|
|
4
|
+
from .user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTypes
|
|
5
|
+
from .user_organization import MaleoIdentityUserOrganizationGeneralResultsTypes
|
|
4
6
|
from .user_profile import MaleoIdentityUserProfileGeneralResultsTypes
|
|
5
7
|
from .user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTypes
|
|
6
|
-
from .
|
|
8
|
+
from .user import MaleoIdentityUserGeneralResultsTypes
|
|
7
9
|
|
|
8
10
|
class MaleoIdentityGeneralResultsTypes:
|
|
11
|
+
OrganizationRole = MaleoIdentityOrganizationRoleGeneralResultsTypes
|
|
9
12
|
Organization = MaleoIdentityOrganizationGeneralResultsTypes
|
|
10
|
-
|
|
13
|
+
UserOrganizationRole = MaleoIdentityUserOrganizationRoleGeneralResultsTypes
|
|
14
|
+
UserOrganization = MaleoIdentityUserOrganizationGeneralResultsTypes
|
|
11
15
|
UserProfile = MaleoIdentityUserProfileGeneralResultsTypes
|
|
12
16
|
UserSystemRole = MaleoIdentityUserSystemRoleGeneralResultsTypes
|
|
13
|
-
|
|
17
|
+
User = MaleoIdentityUserGeneralResultsTypes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.organization_role import MaleoIdentityOrganizationRoleGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityOrganizationRoleGeneralResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.NoData,
|
|
14
|
+
MaleoIdentityOrganizationRoleGeneralResultsTransfers.SingleData
|
|
15
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserOrganizationRoleGeneralResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.NoData,
|
|
14
|
+
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.SingleData
|
|
15
|
+
]
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
from .organization_role import MaleoIdentityOrganizationRoleQueryResultsTypes
|
|
2
3
|
from .organization import MaleoIdentityOrganizationQueryResultsTypes
|
|
3
|
-
from .
|
|
4
|
+
from .user_organization_role import MaleoIdentityUserOrganizationRoleQueryResultsTypes
|
|
5
|
+
from .user_organization import MaleoIdentityUserOrganizationQueryResultsTypes
|
|
4
6
|
from .user_profile import MaleoIdentityUserProfileQueryResultsTypes
|
|
5
7
|
from .user_system_role import MaleoIdentityUserSystemRoleQueryResultsTypes
|
|
6
|
-
from .
|
|
8
|
+
from .user import MaleoIdentityUserQueryResultsTypes
|
|
7
9
|
|
|
8
10
|
class MaleoIdentityQueryResultsTypes:
|
|
11
|
+
OrganizationRole = MaleoIdentityOrganizationRoleQueryResultsTypes
|
|
9
12
|
Organization = MaleoIdentityOrganizationQueryResultsTypes
|
|
10
|
-
|
|
13
|
+
UserOrganizationRole = MaleoIdentityUserOrganizationRoleQueryResultsTypes
|
|
14
|
+
UserOrganization = MaleoIdentityUserOrganizationQueryResultsTypes
|
|
11
15
|
UserProfile = MaleoIdentityUserProfileQueryResultsTypes
|
|
12
16
|
UserSystemRole = MaleoIdentityUserSystemRoleQueryResultsTypes
|
|
13
|
-
|
|
17
|
+
User = MaleoIdentityUserQueryResultsTypes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.query.organization_role import MaleoIdentityOrganizationRoleQueryResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityOrganizationRoleQueryResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.NoData,
|
|
14
|
+
MaleoIdentityOrganizationRoleQueryResultsTransfers.SingleData
|
|
15
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.query.user_organization_role import MaleoIdentityUserOrganizationRoleQueryResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserOrganizationRoleQueryResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.NoData,
|
|
14
|
+
MaleoIdentityUserOrganizationRoleQueryResultsTransfers.SingleData
|
|
15
|
+
]
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.17
|
|
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_foundation>=0.1.
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.0.
|
|
9
|
+
Requires-Dist: maleo_foundation>=0.1.97
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.0.68
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -4,116 +4,148 @@ maleo_identity/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
4
4
|
maleo_identity/client/manager.py,sha256=CZHz2E7EyrJt-cDklCC37xIIyVPcrGbfLChze8OiOgk,2636
|
|
5
5
|
maleo_identity/client/controllers/__init__.py,sha256=Kln0lR4EAnHsHaFWNEQBlOGH-hDiY_8KJdPq86msvA0,927
|
|
6
6
|
maleo_identity/client/controllers/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
maleo_identity/client/controllers/http/organization.py,sha256=
|
|
8
|
-
maleo_identity/client/controllers/http/user.py,sha256=
|
|
7
|
+
maleo_identity/client/controllers/http/organization.py,sha256=EzaOuCiAyOjiDo_sgohkwkiFUwua2FI13PnhMgMJ4yg,10901
|
|
8
|
+
maleo_identity/client/controllers/http/user.py,sha256=toRWFTRY7x_a8v7l2oWnK8xfMnTboJOeep7JaCnUw-I,11287
|
|
9
9
|
maleo_identity/client/services/__init__.py,sha256=52SEvH0DQUnTCGQIqRfdy-nnnOP1CXxxh4Zakzl5-W8,536
|
|
10
|
-
maleo_identity/client/services/organization.py,sha256=
|
|
11
|
-
maleo_identity/client/services/user.py,sha256=
|
|
12
|
-
maleo_identity/constants/__init__.py,sha256=
|
|
10
|
+
maleo_identity/client/services/organization.py,sha256=WkqvqDmZXzJGZQkmKneCheuxCbpgM6gSh6HBdkQttbM,23278
|
|
11
|
+
maleo_identity/client/services/user.py,sha256=dUMxFcrg-tNPi0ku1Pz59WqF3wDSuqwzoWqoorjrNPc,24666
|
|
12
|
+
maleo_identity/constants/__init__.py,sha256=EyuYkmm-m27VYwjrTjBKcB3iH78y48v2qDaie33WyiE,913
|
|
13
13
|
maleo_identity/constants/organization.py,sha256=M5STqi5WMtT6kfNbB4BnQ1gEdQvU-l9dc9MiJCKzO_o,484
|
|
14
|
+
maleo_identity/constants/organization_role.py,sha256=pUcxF2h5cH1j7JzObVKEp0l6Bz3Uoe7isZ-r5ere6Og,919
|
|
14
15
|
maleo_identity/constants/user.py,sha256=ye4oK5oDaDR4iJOERj9bQ-XcWjVAVAmXJpR8McXmFLc,1383
|
|
15
16
|
maleo_identity/constants/user_organization.py,sha256=HiGOdWo3ggjWLPZiiptqIanEGJC2gmZ_QNGxfN3-HwI,1417
|
|
17
|
+
maleo_identity/constants/user_organization_role.py,sha256=MZhiOe7arS3ii9iqlMbRvqbKINSrIl0OaC8EhPGgOOE,1470
|
|
16
18
|
maleo_identity/constants/user_profile.py,sha256=ua2Z-MOjQLDTxasDfgRwynu734LazvClKvuHi50gRSg,401
|
|
17
19
|
maleo_identity/constants/user_system_role.py,sha256=J0fZRt6ePJkesaCV__Mrh4vcLfMfRSVgRJGi_mcAV-A,830
|
|
18
|
-
maleo_identity/enums/__init__.py,sha256=
|
|
20
|
+
maleo_identity/enums/__init__.py,sha256=PjCbm3BlcSJcP4-HEc7sfH9W34Gd847s2fHHHgZ_hQ8,936
|
|
19
21
|
maleo_identity/enums/general.py,sha256=y51uhyCw5a8csBznt96Meh37wORpJbkz8mzueg_aSms,121
|
|
20
22
|
maleo_identity/enums/organization.py,sha256=FRam0cPO38Tt3ICnCyWeTQc1EoDalaaQXsRNSi2Ykwc,244
|
|
23
|
+
maleo_identity/enums/organization_role.py,sha256=n3xiZ0_OZFGn3VnUeEyF4AlUB5bDhjWNm4wJ8sj7SKA,203
|
|
21
24
|
maleo_identity/enums/user.py,sha256=jQV22g9BHJB7rypJXJyTArURbtEfsI1z0ar7dElAC1Q,382
|
|
22
25
|
maleo_identity/enums/user_organization.py,sha256=Gchi2yLeepvVZv40S6_KvwAoFnZ19u5LlMJQTDEfUrs,262
|
|
26
|
+
maleo_identity/enums/user_organization_role.py,sha256=AYMm9Lcpd1vu1GWAqOPV6_dRgoc7Yp6EpzcExTQT0xU,266
|
|
23
27
|
maleo_identity/enums/user_profile.py,sha256=8KJrEwC2dCdYOt10l6EBrgECxhmWgVxofY-3xAXwn48,251
|
|
24
28
|
maleo_identity/enums/user_system_role.py,sha256=CQALwTC5hY8T1cnGxs1Rx1EbjvobznkaAlAUNvdNEMU,197
|
|
25
29
|
maleo_identity/models/__init__.py,sha256=EfraJdk31RDfBzbrBvVOuk43qJVSJBi4AU_CM0kD_cY,305
|
|
26
|
-
maleo_identity/models/responses/__init__.py,sha256=
|
|
30
|
+
maleo_identity/models/responses/__init__.py,sha256=DOZ7d5pYmpWwNWa-zBCsp8E_Loryu75ctpBYjPrV1Uo,913
|
|
27
31
|
maleo_identity/models/responses/organization.py,sha256=O5_agwn2h2e5TYVVf0lIGHObNKmEO7M0ccrr6D2-sF4,2136
|
|
32
|
+
maleo_identity/models/responses/organization_role.py,sha256=jrYmicik9dytllqDIVg_NKzyxpmOg-zju0GdoQANXZE,1209
|
|
28
33
|
maleo_identity/models/responses/user.py,sha256=ESL5czj9KYzWeww-4fDja20eAWWvBFbiL54lq2MhrP0,2419
|
|
29
34
|
maleo_identity/models/responses/user_organization.py,sha256=ggNpXfXW8MsofDB1BmCQVB9gOh6jpCxRw2sDf6oIfTA,1209
|
|
35
|
+
maleo_identity/models/responses/user_organization_role.py,sha256=2OU29-8zjsglasEJCHDwQQibjCNKrfuRxsxSmtUs3Hg,1279
|
|
30
36
|
maleo_identity/models/responses/user_profile.py,sha256=vaO38a9DY8nN-cr8jzFgApiukVezYSnqqSooP9JL1Sc,2128
|
|
31
37
|
maleo_identity/models/responses/user_system_role.py,sha256=UJsmECAb5pHV-K0hR5PZL5aksUCmzJBRqHbYicC11no,1189
|
|
32
38
|
maleo_identity/models/schemas/__init__.py,sha256=17ZraVaZhf4eK46PvEZ21WxlYMlUqPUwbOcs5brnVGU,348
|
|
33
|
-
maleo_identity/models/schemas/general/__init__.py,sha256=
|
|
39
|
+
maleo_identity/models/schemas/general/__init__.py,sha256=yu6sFumS9z1MfvDJQTuRX0pDNDYXSPo9JOpMeyksKv4,988
|
|
34
40
|
maleo_identity/models/schemas/general/organization.py,sha256=NYhcHeByU2CiEoauae_MVaV965Le-LM2n9nxcMOO5rc,1213
|
|
41
|
+
maleo_identity/models/schemas/general/organization_role.py,sha256=W84j419N8vnAAUEUXQdKigdZYP1m52M4UjJ9RVgthB0,1303
|
|
35
42
|
maleo_identity/models/schemas/general/user.py,sha256=HGkRVjmNFJWUZqEDLp6E3boEiNLx8NwyxUSjdiKb6_I,895
|
|
36
43
|
maleo_identity/models/schemas/general/user_organization.py,sha256=XueJtW2BjfLsUt0RW5K5JNn_wy__M5wl3COpJEud-j0,917
|
|
44
|
+
maleo_identity/models/schemas/general/user_organization_role.py,sha256=lKX0DvbTXlITdwp2SRH12wEH8B-M-gNn403NdY6NHng,1548
|
|
37
45
|
maleo_identity/models/schemas/general/user_profile.py,sha256=N-F_NC6O7AwzSUtwqkQbDf_kDezdV6VCdefIMY-QQPg,1930
|
|
38
46
|
maleo_identity/models/schemas/general/user_system_role.py,sha256=Ta625LB8Y_Sou7vR0ZgEwdFep_eQ3oXnMAdD_DjcB_E,634
|
|
39
|
-
maleo_identity/models/schemas/parameters/__init__.py,sha256=
|
|
47
|
+
maleo_identity/models/schemas/parameters/__init__.py,sha256=EtThSB9TfQAwwNGkhS6S7gYzB2yMMSkIFiOSESA0vZg,1033
|
|
40
48
|
maleo_identity/models/schemas/parameters/organization.py,sha256=jZIe2vAS-PmoZCggKLQ1snYmPSMEC3C0bK-qat8AmgM,556
|
|
49
|
+
maleo_identity/models/schemas/parameters/organization_role.py,sha256=3pXjokaN5vJnrsekI_67WOJR8gb1de_4AkSEANlYqac,318
|
|
41
50
|
maleo_identity/models/schemas/parameters/user.py,sha256=m_0jxW7QS5clAgEZPqb3i1dr2Jn67xRKLedKjJ3GAS0,555
|
|
42
51
|
maleo_identity/models/schemas/parameters/user_organization.py,sha256=K1bM2qjo1wGA64aHCrrvLsaCYQ-chlggKLd7spQwFuw,321
|
|
52
|
+
maleo_identity/models/schemas/parameters/user_organization_role.py,sha256=0PCZ4fsIe2fN5kcRCbSVybtoSmN9aaiGTd8zN8G97Pc,403
|
|
43
53
|
maleo_identity/models/schemas/parameters/user_profile.py,sha256=wPA3Ym9wBYW8iHVzxyB0BZhFVw1wMwEFKBfAHxlIipA,1075
|
|
44
54
|
maleo_identity/models/schemas/parameters/user_system_role.py,sha256=iSQXUvBqUOkwuAZZsAx7tjR_IplHpRt2kbuhcUb84cM,413
|
|
45
|
-
maleo_identity/models/schemas/results/__init__.py,sha256=
|
|
55
|
+
maleo_identity/models/schemas/results/__init__.py,sha256=wt6Octvl7Akjz5dxmA8ZvE2qYe4XKEzrw081vRKhNso,988
|
|
46
56
|
maleo_identity/models/schemas/results/organization.py,sha256=F_20T69z1XDaEogXJWV3r4cJEcBtrv1U0ADxMaASAyM,934
|
|
57
|
+
maleo_identity/models/schemas/results/organization_role.py,sha256=Jz1YFm0LfF5H0FItCN16Nxb67V04oFRFvxkqnCDg6EI,495
|
|
47
58
|
maleo_identity/models/schemas/results/user.py,sha256=usktBEMGKVGloOIjwKmX9CBDaVIv2S6k56mRuiDqe3I,912
|
|
48
59
|
maleo_identity/models/schemas/results/user_organization.py,sha256=8Pbp4qIUlATuPEFhIIP3nPWRWXALDrbxBOu53dlYZsg,318
|
|
60
|
+
maleo_identity/models/schemas/results/user_organization_role.py,sha256=DWgwlS6TxNhM93j08THOGMwzgjP3cfugah-gkl5WAq0,592
|
|
49
61
|
maleo_identity/models/schemas/results/user_profile.py,sha256=eh5u4UZ7TkEk2s0PBFD-motMRLNrgaMdPSXgyg94TQY,1856
|
|
50
62
|
maleo_identity/models/schemas/results/user_system_role.py,sha256=jyFK-H4Dn9be9mVtmVX356cezVoNRXfIlYfRLdPkImA,410
|
|
51
|
-
maleo_identity/models/tables/__init__.py,sha256=
|
|
63
|
+
maleo_identity/models/tables/__init__.py,sha256=wTFyzZbktqfWIiCPI4ErJN9JK46C_Fec76v38ddkDDw,686
|
|
52
64
|
maleo_identity/models/tables/organization.py,sha256=hCzSbkP1JeYQIORSRNc2P2oy6XAe1WALVToo2WMDluU,1013
|
|
65
|
+
maleo_identity/models/tables/organization_role.py,sha256=ICybWmJy7Sv2iBP7dlDmHnMXcm1kuPBrtxBwSdBlEZ0,690
|
|
53
66
|
maleo_identity/models/tables/user.py,sha256=KIuf5IRBZ5vP1YgnP1We7BEBc-6GKOKDGFd4AH2RCNc,818
|
|
54
67
|
maleo_identity/models/tables/user_organization.py,sha256=_Txa_TUsYKDb3bpi6FQ6h33uOKp44GR1XvICBji1Aig,548
|
|
68
|
+
maleo_identity/models/tables/user_organization_role.py,sha256=-kfwoCnH_SaTPr-q3p7EfRZ5AYYyATnWBl7cNQ4K5bk,609
|
|
55
69
|
maleo_identity/models/tables/user_profile.py,sha256=cpst-UILnsoegEj7rTnaJ_1M5lHgAnrdyFjNAW5MyQk,1355
|
|
56
70
|
maleo_identity/models/tables/user_system_role.py,sha256=2E7dMDeG8wqPH5eZSEpgEw9-U30o1ixVu1PoK1lOkbg,707
|
|
57
71
|
maleo_identity/models/transfers/__init__.py,sha256=Ad-Z2MzjEA1pw2p2WR1QZeY99uX-bUUqUhlg9ARUY9Y,362
|
|
58
|
-
maleo_identity/models/transfers/general/__init__.py,sha256=
|
|
72
|
+
maleo_identity/models/transfers/general/__init__.py,sha256=zEASfoPYDlb7PADXLFevD6KVb6ZxWgCDXhc_40IgRjo,738
|
|
59
73
|
maleo_identity/models/transfers/general/organization.py,sha256=UWqmwXzHRmi10MuJg_MQH3Y49jnDCv35CtBTB4BvzOI,842
|
|
74
|
+
maleo_identity/models/transfers/general/organization_role.py,sha256=DXsR6KikDkPfNs-GDPF_L0ua8vmjLXZiv_LnetXx7Uw,738
|
|
60
75
|
maleo_identity/models/transfers/general/user.py,sha256=2YraJ7Qkz45HYKGMqHHSTrukgpI8I2Eg14K7vOg-55A,730
|
|
61
76
|
maleo_identity/models/transfers/general/user_organization.py,sha256=iUa0zBFcdrOX4B8LF3D_SrdSY6ngwK45Mpfw7eBAUIo,611
|
|
77
|
+
maleo_identity/models/transfers/general/user_organization_role.py,sha256=zy1Im8GqX_wzLcFDPPYvBNkcdBJI0zqE7MpFszzZJ2U,935
|
|
62
78
|
maleo_identity/models/transfers/general/user_profile.py,sha256=iz4Bry2Loytzpqm5f2K0lU2sjnceUhvmhBZyPKLHua8,562
|
|
63
79
|
maleo_identity/models/transfers/general/user_system_role.py,sha256=w9a1Pg7cAph9AitT0GJm-Wi1YIR33ueIbu8cest6c4w,649
|
|
64
80
|
maleo_identity/models/transfers/parameters/__init__.py,sha256=ysazhGlRoT9kY_L_grODkvceAGeuCwIDcG7EVywwcOc,416
|
|
65
|
-
maleo_identity/models/transfers/parameters/client/__init__.py,sha256=
|
|
81
|
+
maleo_identity/models/transfers/parameters/client/__init__.py,sha256=j5WO_zsvrK3nkyJQdcPF8jhAZFCJ20bug17pkbKZ0C0,1153
|
|
66
82
|
maleo_identity/models/transfers/parameters/client/organization.py,sha256=h-iOTTPtuYdBLnsuhZ-rlMyk0tfdyYiAWG7GRCps1UM,1065
|
|
83
|
+
maleo_identity/models/transfers/parameters/client/organization_role.py,sha256=5HILC0vVqL1rhTshlEyydAp-mL9nA63IRwlFST3EdvY,1494
|
|
67
84
|
maleo_identity/models/transfers/parameters/client/user.py,sha256=ntPf_E5gw4f_eL4sRgeRF_AZcjNoBTM8KWDIN02pB3c,1298
|
|
68
85
|
maleo_identity/models/transfers/parameters/client/user_organization.py,sha256=9Vin2d8jrTDtnTwSD7lQDaWi5aAbtGlGbnkUmGaSXSI,2066
|
|
86
|
+
maleo_identity/models/transfers/parameters/client/user_organization_role.py,sha256=idK6gDh7P8VmnaUiWKXBLFKcq2GNjQwtQn5G7GsuIu8,1783
|
|
69
87
|
maleo_identity/models/transfers/parameters/client/user_profile.py,sha256=KB5_Ado_JAVYaSAPyqS00TSnrgbCkCE6yKYhe4NLb58,1224
|
|
70
88
|
maleo_identity/models/transfers/parameters/client/user_system_role.py,sha256=olEv7xSsej7jwuESoQ6qSK5cPRgGIhK6svamYjV_5ns,1569
|
|
71
|
-
maleo_identity/models/transfers/parameters/general/__init__.py,sha256=
|
|
89
|
+
maleo_identity/models/transfers/parameters/general/__init__.py,sha256=aELl7jS8n-T2FLiXt-KTP8xEdaF3Cju00fK84-_yp0o,1168
|
|
72
90
|
maleo_identity/models/transfers/parameters/general/organization.py,sha256=anXvAmis4xoqNCrkl3u90QPDh9Pe06PmpZZ16-31u5s,1171
|
|
91
|
+
maleo_identity/models/transfers/parameters/general/organization_role.py,sha256=c0hShB0UXIUb2YdgaOPt5TmXy1Xsbg1eh4lcoUPjo9k,724
|
|
73
92
|
maleo_identity/models/transfers/parameters/general/user.py,sha256=IIEtjnJo9VwC1mOlSlhSdPhD0yA3n8jYEfoaxO9VYXQ,1264
|
|
74
93
|
maleo_identity/models/transfers/parameters/general/user_organization.py,sha256=Fi3Cdq41p9GDNa-9g-7ar_AaYN_Gsz3-nZETjKui8l4,1163
|
|
94
|
+
maleo_identity/models/transfers/parameters/general/user_organization_role.py,sha256=U8lVq5Y_W0Pu6heJE8PwxMt5UPy3nSaH_2H85bXqDzo,758
|
|
75
95
|
maleo_identity/models/transfers/parameters/general/user_profile.py,sha256=94q9T12zTgqd6lt77NvvSlXT-zgCv9eZ7IyajwGmzQ8,1272
|
|
76
96
|
maleo_identity/models/transfers/parameters/general/user_system_role.py,sha256=WXDCmE4qyrp1gxTkwErXg807FVNoq0k8epkuU-pcEhk,1112
|
|
77
|
-
maleo_identity/models/transfers/parameters/service/__init__.py,sha256=
|
|
97
|
+
maleo_identity/models/transfers/parameters/service/__init__.py,sha256=Qm31XrFfO60_XLAxOB3g2n56MCsYsD15eOekj9HJ_tE,1168
|
|
78
98
|
maleo_identity/models/transfers/parameters/service/organization.py,sha256=kWYtNQKrNyazNDrRbxHBHLnwnYg0V9ez9g8QPIekZ0g,1070
|
|
99
|
+
maleo_identity/models/transfers/parameters/service/organization_role.py,sha256=AOwLTOl-u9A4weSDLokcnQ4n0Pf9Xy7Ycwd61YARo5c,1186
|
|
79
100
|
maleo_identity/models/transfers/parameters/service/user.py,sha256=wuMwdSyoMR32PdsmpQU4KrYGfertg5LhzgSmik2UmQI,1303
|
|
80
101
|
maleo_identity/models/transfers/parameters/service/user_organization.py,sha256=IzscFWwmLpIusJ92e8nEuuqtIhlZBvQjw5L5V3v7Zkk,1451
|
|
102
|
+
maleo_identity/models/transfers/parameters/service/user_organization_role.py,sha256=i6xJlGaV9nkrs5dbh15ZItkQe2xaaJFvJwXcnt0NYh0,1393
|
|
81
103
|
maleo_identity/models/transfers/parameters/service/user_profile.py,sha256=mJ2ai09NqWMO68xwI2B-r4HEpFjqbSepfM9Fr0k0AeM,1229
|
|
82
104
|
maleo_identity/models/transfers/parameters/service/user_system_role.py,sha256=1cV5Ru3faPkce2I1H6Ow1t5lCtlXpeRLvO-WMt7m0EY,1273
|
|
83
105
|
maleo_identity/models/transfers/results/__init__.py,sha256=B4ca_o9yD0S3oEBLVshOS9uHc0HtPXILJutQy4G7sKs,282
|
|
84
|
-
maleo_identity/models/transfers/results/general/__init__.py,sha256=
|
|
106
|
+
maleo_identity/models/transfers/results/general/__init__.py,sha256=SfmgQuap4k8Wo-Y5Al-n58ibRspnjmt98xMNRFLvabs,1123
|
|
85
107
|
maleo_identity/models/transfers/results/general/organization.py,sha256=ukHQEPp7Nrkoc3lDyY1GpTfDFhie3CaBOlywH2rp67M,777
|
|
108
|
+
maleo_identity/models/transfers/results/general/organization_role.py,sha256=FzXDOP-lo-YAOBwzU1Ke9xKP35I3kLOMKkuZOeRkPxs,808
|
|
86
109
|
maleo_identity/models/transfers/results/general/user.py,sha256=_SdQSjoPTXKT2YBrueJaORCqOQrmgp5Tc8rygiKGeuQ,894
|
|
87
110
|
maleo_identity/models/transfers/results/general/user_organization.py,sha256=XFCGvUF2I0PpoUv3IteWKF4VR1NF-z080rfjXC4bDFg,808
|
|
111
|
+
maleo_identity/models/transfers/results/general/user_organization_role.py,sha256=RLBA7ZnpKmmkyZdtN87mx0oCwVCyx5BM_aEtS4WAm94,839
|
|
88
112
|
maleo_identity/models/transfers/results/general/user_profile.py,sha256=8kcBlsyaS-qG7iAGas1Z9jJWbCxSGEZWjh0opgBESpo,773
|
|
89
113
|
maleo_identity/models/transfers/results/general/user_system_role.py,sha256=RxwkIlkzFlJ-Tg-20QmFSL4BPwOCpR3JJFTYNi7w8oc,797
|
|
90
|
-
maleo_identity/models/transfers/results/query/__init__.py,sha256=
|
|
114
|
+
maleo_identity/models/transfers/results/query/__init__.py,sha256=xQcITrCo7KTLtuf9K9PewGkzMWuRZnJcC4JLds4I-Ps,1093
|
|
91
115
|
maleo_identity/models/transfers/results/query/organization.py,sha256=Ft2y9umyI7B301bkDIOKscOu7s-VxpYrD55BKnhg0Z4,829
|
|
116
|
+
maleo_identity/models/transfers/results/query/organization_role.py,sha256=tHBymr7CDub__WO-2a5Qb4zaMJvpJIa7DNnOqSo9ko4,853
|
|
92
117
|
maleo_identity/models/transfers/results/query/user.py,sha256=FC9ojDrPxsnA1O5ZnR7CgcJxUNE_-ABrQK9iHAXwAZU,1111
|
|
93
118
|
maleo_identity/models/transfers/results/query/user_organization.py,sha256=easdO0kiRmB77Z2-E7-LOVrzCK6neNUyyOyJXAsS3J0,853
|
|
119
|
+
maleo_identity/models/transfers/results/query/user_organization_role.py,sha256=Mj4dKdS4L0AjlzR5OFVlmnC8OFRMy6SkKvcUzH1cTds,878
|
|
94
120
|
maleo_identity/models/transfers/results/query/user_profile.py,sha256=LxuG_x3jTXtQ3Iw4Ffc1Xv_Cv7OMt4lDNqh4MyHnaYU,824
|
|
95
121
|
maleo_identity/models/transfers/results/query/user_system_role.py,sha256=9j6o48GtLNyirnxCz-sM3CaX_jiGyBNy5AWOH_cKTeo,842
|
|
96
122
|
maleo_identity/types/__init__.py,sha256=U6YJOUefzuJjISnFXE6j7gzQvrZEAHboW3t8Ezgty94,148
|
|
97
123
|
maleo_identity/types/results/__init__.py,sha256=Bru0muO5iXb5vfyB8yPvolXe8Ao5wksx1-lizJbk5Ts,359
|
|
98
|
-
maleo_identity/types/results/client/__init__.py,sha256=
|
|
124
|
+
maleo_identity/types/results/client/__init__.py,sha256=32xGwg-HBi1qJW2RxdTMbGuNKhVT7QAg6RMXE9rKWJ0,1048
|
|
99
125
|
maleo_identity/types/results/client/organization.py,sha256=Nj22DnZl_Vs4ZjGI5xcfymn4s-HvzNqOwj2H9lWVkFU,754
|
|
126
|
+
maleo_identity/types/results/client/organization_role.py,sha256=CDp8uzGRFFXI5O5LU2F0kUmA-EDPk8jCetAsoCy3heo,621
|
|
100
127
|
maleo_identity/types/results/client/user.py,sha256=gRznLZdk2zwsnk3SBC0T_RksnsIOc_7qBzePcuoxI3M,831
|
|
101
128
|
maleo_identity/types/results/client/user_organization.py,sha256=YiWdgVbuNeKiEpT8iZXufno1JSumK97xACLDFZUdDp0,787
|
|
129
|
+
maleo_identity/types/results/client/user_organization_role.py,sha256=nOQJ-LfUAUepzsK25GFgtVp2fU87xXxva4dQDHT3R24,654
|
|
102
130
|
maleo_identity/types/results/client/user_profile.py,sha256=eOD_W8cFogI5rXXTBSvjknOb6DJYhkuSt0ck0qJGPVI,745
|
|
103
131
|
maleo_identity/types/results/client/user_system_role.py,sha256=SqJd5ZlolyL3dgVNButz5GsvYgPBYAMMn4PUWbHgAvY,768
|
|
104
|
-
maleo_identity/types/results/general/__init__.py,sha256=
|
|
132
|
+
maleo_identity/types/results/general/__init__.py,sha256=QLXcaBLdAAh9EYyIUIela7zUdwwxmpZ8HK34M1_kNlY,1063
|
|
105
133
|
maleo_identity/types/results/general/organization.py,sha256=_1lIf9ds756m7uMXToxHX0HA-Qha6E3yMmcG1Ei9XC4,820
|
|
134
|
+
maleo_identity/types/results/general/organization_role.py,sha256=fY5JyP2abFkawFdust7QgNxYY24hh8XDMPeNrkP0O8I,691
|
|
106
135
|
maleo_identity/types/results/general/user.py,sha256=2raDahxVdE9rcpwJrj3LmHUWQUwQNVbXR-pOCOI_aCg,889
|
|
107
136
|
maleo_identity/types/results/general/user_organization.py,sha256=605vv7BsmH8oVXfPdcVcDNU1C_C28K7Q-holUR8_G2I,857
|
|
137
|
+
maleo_identity/types/results/general/user_organization_role.py,sha256=Yzpf0-F0Llo8vJwQltcwa7zKIDx7KPCMpep4SdwsPBQ,728
|
|
108
138
|
maleo_identity/types/results/general/user_profile.py,sha256=Vqv6uJcS2VFq_U1TBFla7C2xPo3UxR0dQwrO6bZl3wA,810
|
|
109
139
|
maleo_identity/types/results/general/user_system_role.py,sha256=G99FeKVhHbNuHXJuDZzIzc-ir2OLGrYEKN3m-J9PmR0,836
|
|
110
|
-
maleo_identity/types/results/query/__init__.py,sha256=
|
|
140
|
+
maleo_identity/types/results/query/__init__.py,sha256=RRyaMJqxX_KI54gNci7Lq64ifgtarAxl2_zsC34ED3I,1033
|
|
111
141
|
maleo_identity/types/results/query/organization.py,sha256=HX69MigtoRbwXotnWxiPaDLxY1_wre9b7vPLizysD30,798
|
|
142
|
+
maleo_identity/types/results/query/organization_role.py,sha256=hQBFbUuM_MUu9mKvNFlMZbFP-nYi0hp2pc3VCTkpTfM,673
|
|
112
143
|
maleo_identity/types/results/query/user.py,sha256=SNgSJEOD3ZAdflkgPz47vVDYuTxtYVS6frEOW5pumWQ,863
|
|
113
144
|
maleo_identity/types/results/query/user_organization.py,sha256=5_YbwX6s9l1uYbLMZmlVg5EiP_5_RvUKRkRdbBFzLWo,835
|
|
145
|
+
maleo_identity/types/results/query/user_organization_role.py,sha256=YwmwB3Y1wyq7QQYsea7BV1cO9QOpqPGjE4dTDU6lx3U,710
|
|
114
146
|
maleo_identity/types/results/query/user_profile.py,sha256=Tz960UKJa17fYxaS5_Ju2iqVj5b1F07ZkgXsshWqX0E,788
|
|
115
147
|
maleo_identity/types/results/query/user_system_role.py,sha256=U5PgAv3B-g_5d852pi-9GdZy9sCkl0TgSdOgsEsRk-Q,814
|
|
116
|
-
maleo_identity-0.0.
|
|
117
|
-
maleo_identity-0.0.
|
|
118
|
-
maleo_identity-0.0.
|
|
119
|
-
maleo_identity-0.0.
|
|
148
|
+
maleo_identity-0.0.17.dist-info/METADATA,sha256=JHxZmBHdw_8km5TUYnSBS50Ms8xtuCtqQVHsQX-1rc0,868
|
|
149
|
+
maleo_identity-0.0.17.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
150
|
+
maleo_identity-0.0.17.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
151
|
+
maleo_identity-0.0.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|