maleo-identity 0.0.9__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 +8 -11
- maleo_identity/client/services/user.py +13 -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.9.dist-info → maleo_identity-0.0.11.dist-info}/METADATA +3 -3
- {maleo_identity-0.0.9.dist-info → maleo_identity-0.0.11.dist-info}/RECORD +13 -7
- {maleo_identity-0.0.9.dist-info → maleo_identity-0.0.11.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.9.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,10 +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
|
-
return MaleoIdentityOrganizationGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
80
|
+
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
84
81
|
else:
|
|
85
82
|
return MaleoIdentityOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
86
83
|
return await _impl()
|
|
@@ -89,7 +86,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
89
86
|
self,
|
|
90
87
|
parameters:MaleoIdentityOrganizationGeneralParametersTransfers.Create,
|
|
91
88
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
92
|
-
) ->
|
|
89
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.CreateOrUpdate:
|
|
93
90
|
"""Create a new organization in MaleoIdentity"""
|
|
94
91
|
@BaseExceptions.service_exception_handler(
|
|
95
92
|
operation="creating a new organization",
|
|
@@ -111,7 +108,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
111
108
|
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
112
109
|
#* Return proper response
|
|
113
110
|
if not controller_result.success:
|
|
114
|
-
return MaleoIdentityOrganizationGeneralResultsTransfers.
|
|
111
|
+
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
115
112
|
else:
|
|
116
113
|
return MaleoIdentityOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
117
114
|
return await _impl()
|
|
@@ -120,7 +117,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
120
117
|
self,
|
|
121
118
|
parameters:MaleoIdentityOrganizationGeneralParametersTransfers.Update,
|
|
122
119
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
123
|
-
) ->
|
|
120
|
+
) -> MaleoIdentityOrganizationClientResultsTypes.CreateOrUpdate:
|
|
124
121
|
"""Update organization's data in MaleoIdentity"""
|
|
125
122
|
@BaseExceptions.service_exception_handler(
|
|
126
123
|
operation="updating organization's data",
|
|
@@ -142,7 +139,7 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
142
139
|
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
143
140
|
#* Return proper response
|
|
144
141
|
if not controller_result.success:
|
|
145
|
-
return MaleoIdentityOrganizationGeneralResultsTransfers.
|
|
142
|
+
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
146
143
|
else:
|
|
147
144
|
return MaleoIdentityOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
148
145
|
return await _impl()
|
|
@@ -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,10 +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
|
-
return MaleoIdentityUserGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
84
|
+
return MaleoIdentityUserGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
88
85
|
else:
|
|
89
86
|
return MaleoIdentityUserGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
90
87
|
return await _impl()
|
|
@@ -93,7 +90,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
93
90
|
self,
|
|
94
91
|
parameters:MaleoIdentityUserGeneralParametersTransfers.Create,
|
|
95
92
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
96
|
-
) ->
|
|
93
|
+
) -> MaleoIdentityUserClientResultsTypes.CreateOrUpdate:
|
|
97
94
|
"""Create a new user in MaleoIdentity"""
|
|
98
95
|
@BaseExceptions.service_exception_handler(
|
|
99
96
|
operation="creating a new user",
|
|
@@ -115,7 +112,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
115
112
|
return MaleoIdentityUserGeneralResultsTransfers.Fail(message=message, description=description)
|
|
116
113
|
#* Return proper response
|
|
117
114
|
if not controller_result.success:
|
|
118
|
-
return MaleoIdentityUserGeneralResultsTransfers.
|
|
115
|
+
return MaleoIdentityUserGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
119
116
|
else:
|
|
120
117
|
return MaleoIdentityUserGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
121
118
|
return await _impl()
|
|
@@ -124,7 +121,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
124
121
|
self,
|
|
125
122
|
parameters:MaleoIdentityUserGeneralParametersTransfers.Update,
|
|
126
123
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
127
|
-
) ->
|
|
124
|
+
) -> MaleoIdentityUserClientResultsTypes.CreateOrUpdate:
|
|
128
125
|
"""Update user's data in MaleoIdentity"""
|
|
129
126
|
@BaseExceptions.service_exception_handler(
|
|
130
127
|
operation="updating user's data",
|
|
@@ -146,7 +143,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
146
143
|
return MaleoIdentityUserGeneralResultsTransfers.Fail(message=message, description=description)
|
|
147
144
|
#* Return proper response
|
|
148
145
|
if not controller_result.success:
|
|
149
|
-
return MaleoIdentityUserGeneralResultsTransfers.
|
|
146
|
+
return MaleoIdentityUserGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
150
147
|
else:
|
|
151
148
|
return MaleoIdentityUserGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
152
149
|
return await _impl()
|
|
@@ -155,7 +152,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
155
152
|
self,
|
|
156
153
|
parameters:MaleoIdentityUserGeneralParametersTransfers.GetSinglePassword,
|
|
157
154
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
158
|
-
) ->
|
|
155
|
+
) -> MaleoIdentityUserClientResultsTypes.GetSinglePassword:
|
|
159
156
|
"""Retrieve user's password from MaleoIdentity"""
|
|
160
157
|
@BaseExceptions.service_exception_handler(
|
|
161
158
|
operation="retrieving user's password",
|
|
@@ -186,7 +183,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
186
183
|
self,
|
|
187
184
|
parameters:MaleoIdentityUserSystemRoleClientParametersTransfers.GetMultipleFromUser,
|
|
188
185
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
189
|
-
) ->
|
|
186
|
+
) -> MaleoIdentityUserSystemRoleClientResultsTypes.GetMultiple:
|
|
190
187
|
"""Retrieve user's system roles from MaleoIdentity"""
|
|
191
188
|
@BaseExceptions.service_exception_handler(
|
|
192
189
|
operation="retrieving user's system roles",
|
|
@@ -220,7 +217,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
220
217
|
self,
|
|
221
218
|
parameters:MaleoIdentityUserSystemRoleGeneralParametersTransfers.GetSingle,
|
|
222
219
|
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
223
|
-
) ->
|
|
220
|
+
) -> MaleoIdentityUserSystemRoleClientResultsTypes.GetSingle:
|
|
224
221
|
"""Retrieve user's system role from MaleoIdentity"""
|
|
225
222
|
@BaseExceptions.service_exception_handler(
|
|
226
223
|
operation="retrieving user's system role",
|
|
@@ -242,10 +239,7 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
242
239
|
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail(message=message, description=description)
|
|
243
240
|
#* Return proper response
|
|
244
241
|
if not controller_result.success:
|
|
245
|
-
|
|
246
|
-
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
247
|
-
else:
|
|
248
|
-
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
242
|
+
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
249
243
|
else:
|
|
250
244
|
return MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
251
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
|
-
Requires-Dist: maleo_foundation>=0.1.
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.0.
|
|
9
|
+
Requires-Dist: maleo_foundation>=0.1.92
|
|
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
|