maleo-identity 0.0.10__py3-none-any.whl → 0.0.11__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/services/organization.py +6 -10
- maleo_identity/client/services/user.py +11 -19
- maleo_identity/types/results/__init__.py +3 -1
- maleo_identity/types/results/client/__init__.py +13 -0
- maleo_identity/types/results/client/organization.py +19 -0
- maleo_identity/types/results/client/user.py +24 -0
- maleo_identity/types/results/client/user_organization.py +19 -0
- maleo_identity/types/results/client/user_profile.py +19 -0
- maleo_identity/types/results/client/user_system_role.py +19 -0
- {maleo_identity-0.0.10.dist-info → maleo_identity-0.0.11.dist-info}/METADATA +2 -2
- {maleo_identity-0.0.10.dist-info → maleo_identity-0.0.11.dist-info}/RECORD +13 -7
- {maleo_identity-0.0.10.dist-info → maleo_identity-0.0.11.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.10.dist-info → maleo_identity-0.0.11.dist-info}/top_level.txt +0 -0
|
@@ -6,7 +6,7 @@ from maleo_identity.enums.general import MaleoIdentityGeneralEnums
|
|
|
6
6
|
from maleo_identity.models.transfers.parameters.general.organization import MaleoIdentityOrganizationGeneralParametersTransfers
|
|
7
7
|
from maleo_identity.models.transfers.parameters.client.organization import MaleoIdentityOrganizationClientParametersTransfers
|
|
8
8
|
from maleo_identity.models.transfers.results.general.organization import MaleoIdentityOrganizationGeneralResultsTransfers
|
|
9
|
-
from maleo_identity.types.results.
|
|
9
|
+
from maleo_identity.types.results.client.organization import MaleoIdentityOrganizationClientResultsTypes
|
|
10
10
|
|
|
11
11
|
class MaleoIdentityOrganizationClientService(ClientService):
|
|
12
12
|
def __init__(self, logger, controllers:MaleoIdentityOrganizationControllers):
|
|
@@ -21,7 +21,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
21
21
|
self,
|
|
22
22
|
parameters:MaleoIdentityOrganizationClientParametersTransfers.GetMultiple,
|
|
23
23
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
24
|
-
) ->
|
|
24
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.GetMultiple:
|
|
25
25
|
"""Retrieve organizations from MaleoIdentity"""
|
|
26
26
|
@BaseExceptions.service_exception_handler(
|
|
27
27
|
operation="retrieving organizations",
|
|
@@ -55,7 +55,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
55
55
|
self,
|
|
56
56
|
parameters:MaleoIdentityOrganizationGeneralParametersTransfers.GetSingle,
|
|
57
57
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
58
|
-
) ->
|
|
58
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.GetSingle:
|
|
59
59
|
"""Retrieve organization from MaleoIdentity"""
|
|
60
60
|
@BaseExceptions.service_exception_handler(
|
|
61
61
|
operation="retrieving organization",
|
|
@@ -77,11 +77,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
77
77
|
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
78
78
|
#* Return proper response
|
|
79
79
|
if not controller_result.success:
|
|
80
|
-
|
|
81
|
-
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
82
|
-
else:
|
|
83
|
-
controller_result.content["success"] = True
|
|
84
|
-
return MaleoIdentityOrganizationGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
80
|
+
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
85
81
|
else:
|
|
86
82
|
return MaleoIdentityOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
87
83
|
return await _impl()
|
|
@@ -90,7 +86,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
90
86
|
self,
|
|
91
87
|
parameters:MaleoIdentityOrganizationGeneralParametersTransfers.Create,
|
|
92
88
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
93
|
-
) ->
|
|
89
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.CreateOrUpdate:
|
|
94
90
|
"""Create a new organization in MaleoIdentity"""
|
|
95
91
|
@BaseExceptions.service_exception_handler(
|
|
96
92
|
operation="creating a new organization",
|
|
@@ -121,7 +117,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
121
117
|
self,
|
|
122
118
|
parameters:MaleoIdentityOrganizationGeneralParametersTransfers.Update,
|
|
123
119
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
124
|
-
) ->
|
|
120
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.CreateOrUpdate:
|
|
125
121
|
"""Update organization's data in MaleoIdentity"""
|
|
126
122
|
@BaseExceptions.service_exception_handler(
|
|
127
123
|
operation="updating organization's data",
|
|
@@ -9,8 +9,8 @@ from maleo_identity.models.transfers.parameters.client.user import MaleoIdentity
|
|
|
9
9
|
from maleo_identity.models.transfers.parameters.client.user_system_role import MaleoIdentityUserSystemRoleClientParametersTransfers
|
|
10
10
|
from maleo_identity.models.transfers.results.general.user import MaleoIdentityUserGeneralResultsTransfers
|
|
11
11
|
from maleo_identity.models.transfers.results.general.user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
12
|
-
from maleo_identity.types.results.
|
|
13
|
-
from maleo_identity.types.results.
|
|
12
|
+
from maleo_identity.types.results.client.user import MaleoIdentityUserClientResultsTypes
|
|
13
|
+
from maleo_identity.types.results.client.user_system_role import MaleoIdentityUserSystemRoleClientResultsTypes
|
|
14
14
|
|
|
15
15
|
class MaleoIdentityUserClientService(ClientService):
|
|
16
16
|
def __init__(self, logger, controllers:MaleoIdentityUserControllers):
|
|
@@ -25,7 +25,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
25
25
|
self,
|
|
26
26
|
parameters:MaleoIdentityUserClientParametersTransfers.GetMultiple,
|
|
27
27
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
28
|
-
) ->
|
|
28
|
+
) -> MaleoIdentityUserClientResultsTypes.GetMultiple:
|
|
29
29
|
"""Retrieve users from MaleoIdentity"""
|
|
30
30
|
@BaseExceptions.service_exception_handler(
|
|
31
31
|
operation="retrieving users",
|
|
@@ -59,7 +59,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
59
59
|
self,
|
|
60
60
|
parameters:MaleoIdentityUserGeneralParametersTransfers.GetSingle,
|
|
61
61
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
62
|
-
) ->
|
|
62
|
+
) -> MaleoIdentityUserClientResultsTypes.GetSingle:
|
|
63
63
|
"""Retrieve user from MaleoIdentity"""
|
|
64
64
|
@BaseExceptions.service_exception_handler(
|
|
65
65
|
operation="retrieving user",
|
|
@@ -81,11 +81,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
81
81
|
return MaleoIdentityUserGeneralResultsTransfers.Fail(message=message, description=description)
|
|
82
82
|
#* Return proper response
|
|
83
83
|
if not controller_result.success:
|
|
84
|
-
|
|
85
|
-
return MaleoIdentityUserGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
86
|
-
else:
|
|
87
|
-
controller_result.content["success"] = True
|
|
88
|
-
return MaleoIdentityUserGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
84
|
+
return MaleoIdentityUserGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
89
85
|
else:
|
|
90
86
|
return MaleoIdentityUserGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
91
87
|
return await _impl()
|
|
@@ -94,7 +90,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
94
90
|
self,
|
|
95
91
|
parameters:MaleoIdentityUserGeneralParametersTransfers.Create,
|
|
96
92
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
97
|
-
) ->
|
|
93
|
+
) -> MaleoIdentityUserClientResultsTypes.CreateOrUpdate:
|
|
98
94
|
"""Create a new user in MaleoIdentity"""
|
|
99
95
|
@BaseExceptions.service_exception_handler(
|
|
100
96
|
operation="creating a new user",
|
|
@@ -125,7 +121,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
125
121
|
self,
|
|
126
122
|
parameters:MaleoIdentityUserGeneralParametersTransfers.Update,
|
|
127
123
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
128
|
-
) ->
|
|
124
|
+
) -> MaleoIdentityUserClientResultsTypes.CreateOrUpdate:
|
|
129
125
|
"""Update user's data in MaleoIdentity"""
|
|
130
126
|
@BaseExceptions.service_exception_handler(
|
|
131
127
|
operation="updating user's data",
|
|
@@ -156,7 +152,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
156
152
|
self,
|
|
157
153
|
parameters:MaleoIdentityUserGeneralParametersTransfers.GetSinglePassword,
|
|
158
154
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
159
|
-
) ->
|
|
155
|
+
) -> MaleoIdentityUserClientResultsTypes.GetSinglePassword:
|
|
160
156
|
"""Retrieve user's password from MaleoIdentity"""
|
|
161
157
|
@BaseExceptions.service_exception_handler(
|
|
162
158
|
operation="retrieving user's password",
|
|
@@ -187,7 +183,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
187
183
|
self,
|
|
188
184
|
parameters:MaleoIdentityUserSystemRoleClientParametersTransfers.GetMultipleFromUser,
|
|
189
185
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
190
|
-
) ->
|
|
186
|
+
) -> MaleoIdentityUserSystemRoleClientResultsTypes.GetMultiple:
|
|
191
187
|
"""Retrieve user's system roles from MaleoIdentity"""
|
|
192
188
|
@BaseExceptions.service_exception_handler(
|
|
193
189
|
operation="retrieving user's system roles",
|
|
@@ -221,7 +217,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
221
217
|
self,
|
|
222
218
|
parameters:MaleoIdentityUserSystemRoleGeneralParametersTransfers.GetSingle,
|
|
223
219
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
224
|
-
) ->
|
|
220
|
+
) -> MaleoIdentityUserSystemRoleClientResultsTypes.GetSingle:
|
|
225
221
|
"""Retrieve user's system role from MaleoIdentity"""
|
|
226
222
|
@BaseExceptions.service_exception_handler(
|
|
227
223
|
operation="retrieving user's system role",
|
|
@@ -243,11 +239,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
243
239
|
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail(message=message, description=description)
|
|
244
240
|
#* Return proper response
|
|
245
241
|
if not controller_result.success:
|
|
246
|
-
|
|
247
|
-
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
248
|
-
else:
|
|
249
|
-
controller_result.content["success"] = True
|
|
250
|
-
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
242
|
+
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
251
243
|
else:
|
|
252
244
|
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
253
245
|
return await _impl()
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
from .general import MaleoIdentityGeneralResultsTypes
|
|
3
3
|
from .query import MaleoIdentityQueryResultsTypes
|
|
4
|
+
from .client import MaleoIdentityClientResultsTypes
|
|
4
5
|
|
|
5
6
|
class MaleoIdentityResultsTypes:
|
|
6
7
|
General = MaleoIdentityGeneralResultsTypes
|
|
7
|
-
Query = MaleoIdentityQueryResultsTypes
|
|
8
|
+
Query = MaleoIdentityQueryResultsTypes
|
|
9
|
+
Client = MaleoIdentityClientResultsTypes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from .organization import MaleoIdentityOrganizationClientResultsTypes
|
|
3
|
+
from .user import MaleoIdentityUserClientResultsTypes
|
|
4
|
+
from .user_profile import MaleoIdentityUserProfileClientResultsTypes
|
|
5
|
+
from .user_system_role import MaleoIdentityUserSystemRoleClientResultsTypes
|
|
6
|
+
from .user_organization import MaleoIdentityUserOrganizationClientResultsTypes
|
|
7
|
+
|
|
8
|
+
class MaleoIdentityClientResultsTypes:
|
|
9
|
+
Organization = MaleoIdentityOrganizationClientResultsTypes
|
|
10
|
+
User = MaleoIdentityUserClientResultsTypes
|
|
11
|
+
UserProfile = MaleoIdentityUserProfileClientResultsTypes
|
|
12
|
+
UserSystemRole = MaleoIdentityUserSystemRoleClientResultsTypes
|
|
13
|
+
UserOrganization = MaleoIdentityUserOrganizationClientResultsTypes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.organization import MaleoIdentityOrganizationGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityOrganizationClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
CreateOrUpdate = Union[
|
|
17
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
18
|
+
MaleoIdentityOrganizationGeneralResultsTransfers.SingleData
|
|
19
|
+
]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user import MaleoIdentityUserGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
CreateOrUpdate = Union[
|
|
17
|
+
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
18
|
+
MaleoIdentityUserGeneralResultsTransfers.SingleData
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
GetSinglePassword = Union[
|
|
22
|
+
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
23
|
+
MaleoIdentityUserGeneralResultsTransfers.SinglePassword
|
|
24
|
+
]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user_organization import MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserOrganizationClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
Create = Union[
|
|
17
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
18
|
+
MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData
|
|
19
|
+
]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user_profile import MaleoIdentityUserProfileGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserProfileClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
CreateOrUpdate = Union[
|
|
17
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
18
|
+
MaleoIdentityUserProfileGeneralResultsTransfers.SingleData
|
|
19
|
+
]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.general.user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserSystemRoleClientResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
7
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.MultipleData
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
13
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
Create = Union[
|
|
17
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
18
|
+
MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData
|
|
19
|
+
]
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
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
9
|
Requires-Dist: maleo_foundation>=0.1.92
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.0.
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.0.65
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -7,8 +7,8 @@ maleo_identity/client/controllers/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
7
7
|
maleo_identity/client/controllers/http/organization.py,sha256=k55EjiUAd2dTRe5Zg37fXbh1iXEa6miSI8HXpY7eBps,4435
|
|
8
8
|
maleo_identity/client/controllers/http/user.py,sha256=hxt7YYETu-gyT-tOkLvmTEFbgfPpVSh5qiTn-wYS2O0,6949
|
|
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=
|
|
10
|
+
maleo_identity/client/services/organization.py,sha256=nk0dlrH9eRa6iaD6ECfXYqVXz0Zlc2L3nWfOiJSFlws,9003
|
|
11
|
+
maleo_identity/client/services/user.py,sha256=Uz8Zr_IawoL-dbSMQciFb9fE8YjQjibO_s9x5Kn_l3g,15051
|
|
12
12
|
maleo_identity/constants/__init__.py,sha256=g1zbxRrikSN_3GzxDTUQF-g5epTSLeoXH7iPHjyHQTE,632
|
|
13
13
|
maleo_identity/constants/organization.py,sha256=M5STqi5WMtT6kfNbB4BnQ1gEdQvU-l9dc9MiJCKzO_o,484
|
|
14
14
|
maleo_identity/constants/user.py,sha256=ye4oK5oDaDR4iJOERj9bQ-XcWjVAVAmXJpR8McXmFLc,1383
|
|
@@ -94,7 +94,13 @@ maleo_identity/models/transfers/results/query/user_organization.py,sha256=easdO0
|
|
|
94
94
|
maleo_identity/models/transfers/results/query/user_profile.py,sha256=LxuG_x3jTXtQ3Iw4Ffc1Xv_Cv7OMt4lDNqh4MyHnaYU,824
|
|
95
95
|
maleo_identity/models/transfers/results/query/user_system_role.py,sha256=9j6o48GtLNyirnxCz-sM3CaX_jiGyBNy5AWOH_cKTeo,842
|
|
96
96
|
maleo_identity/types/__init__.py,sha256=U6YJOUefzuJjISnFXE6j7gzQvrZEAHboW3t8Ezgty94,148
|
|
97
|
-
maleo_identity/types/results/__init__.py,sha256=
|
|
97
|
+
maleo_identity/types/results/__init__.py,sha256=Bru0muO5iXb5vfyB8yPvolXe8Ao5wksx1-lizJbk5Ts,359
|
|
98
|
+
maleo_identity/types/results/client/__init__.py,sha256=rm0x6L7s6FEcNLsgfuEgWEVioykOk98IDyMvFyJHibw,731
|
|
99
|
+
maleo_identity/types/results/client/organization.py,sha256=Nj22DnZl_Vs4ZjGI5xcfymn4s-HvzNqOwj2H9lWVkFU,754
|
|
100
|
+
maleo_identity/types/results/client/user.py,sha256=gRznLZdk2zwsnk3SBC0T_RksnsIOc_7qBzePcuoxI3M,831
|
|
101
|
+
maleo_identity/types/results/client/user_organization.py,sha256=YiWdgVbuNeKiEpT8iZXufno1JSumK97xACLDFZUdDp0,787
|
|
102
|
+
maleo_identity/types/results/client/user_profile.py,sha256=eOD_W8cFogI5rXXTBSvjknOb6DJYhkuSt0ck0qJGPVI,745
|
|
103
|
+
maleo_identity/types/results/client/user_system_role.py,sha256=SqJd5ZlolyL3dgVNButz5GsvYgPBYAMMn4PUWbHgAvY,768
|
|
98
104
|
maleo_identity/types/results/general/__init__.py,sha256=fBh243KjiAsbTrHfR9IX59dv1i-R96oVAfY0_ZRDu8k,742
|
|
99
105
|
maleo_identity/types/results/general/organization.py,sha256=_1lIf9ds756m7uMXToxHX0HA-Qha6E3yMmcG1Ei9XC4,820
|
|
100
106
|
maleo_identity/types/results/general/user.py,sha256=2raDahxVdE9rcpwJrj3LmHUWQUwQNVbXR-pOCOI_aCg,889
|
|
@@ -107,7 +113,7 @@ maleo_identity/types/results/query/user.py,sha256=SNgSJEOD3ZAdflkgPz47vVDYuTxtYV
|
|
|
107
113
|
maleo_identity/types/results/query/user_organization.py,sha256=5_YbwX6s9l1uYbLMZmlVg5EiP_5_RvUKRkRdbBFzLWo,835
|
|
108
114
|
maleo_identity/types/results/query/user_profile.py,sha256=Tz960UKJa17fYxaS5_Ju2iqVj5b1F07ZkgXsshWqX0E,788
|
|
109
115
|
maleo_identity/types/results/query/user_system_role.py,sha256=U5PgAv3B-g_5d852pi-9GdZy9sCkl0TgSdOgsEsRk-Q,814
|
|
110
|
-
maleo_identity-0.0.
|
|
111
|
-
maleo_identity-0.0.
|
|
112
|
-
maleo_identity-0.0.
|
|
113
|
-
maleo_identity-0.0.
|
|
116
|
+
maleo_identity-0.0.11.dist-info/METADATA,sha256=JvpS_ipdxHKP_CeGYV7rGTD8g6lUWv1gIlrfp2tNOX0,868
|
|
117
|
+
maleo_identity-0.0.11.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
118
|
+
maleo_identity-0.0.11.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
119
|
+
maleo_identity-0.0.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|