maleo-identity 0.0.11__py3-none-any.whl → 0.0.12__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 +34 -0
- maleo_identity/client/controllers/http/user.py +34 -0
- maleo_identity/client/services/organization.py +69 -1
- maleo_identity/client/services/user.py +69 -0
- maleo_identity/models/transfers/parameters/client/user_organization.py +12 -0
- {maleo_identity-0.0.11.dist-info → maleo_identity-0.0.12.dist-info}/METADATA +1 -1
- {maleo_identity-0.0.11.dist-info → maleo_identity-0.0.12.dist-info}/RECORD +9 -9
- {maleo_identity-0.0.11.dist-info → maleo_identity-0.0.12.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.11.dist-info → maleo_identity-0.0.12.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,9 @@ from maleo_foundation.managers.client.base import BearerAuth
|
|
|
2
2
|
from maleo_foundation.managers.client.maleo import MaleoClientHTTPController
|
|
3
3
|
from maleo_foundation.models.transfers.results.client.controllers.http import BaseClientHTTPControllerResults
|
|
4
4
|
from maleo_identity.models.transfers.parameters.general.organization import MaleoIdentityOrganizationGeneralParametersTransfers
|
|
5
|
+
from maleo_identity.models.transfers.parameters.general.user_organization import MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
5
6
|
from maleo_identity.models.transfers.parameters.client.organization import MaleoIdentityOrganizationClientParametersTransfers
|
|
7
|
+
from maleo_identity.models.transfers.parameters.client.user_organization import MaleoIdentityUserOrganizationClientParametersTransfers
|
|
6
8
|
|
|
7
9
|
class MaleoIdentityOrganizationHTTPController(MaleoClientHTTPController):
|
|
8
10
|
async def get_organizations(self, parameters:MaleoIdentityOrganizationClientParametersTransfers.GetMultiple) -> BaseClientHTTPControllerResults:
|
|
@@ -73,4 +75,36 @@ class MaleoIdentityOrganizationHTTPController(MaleoClientHTTPController):
|
|
|
73
75
|
|
|
74
76
|
#* Send request and wait for response
|
|
75
77
|
response = await client.put(url=url, json=json, params=params, auth=auth)
|
|
78
|
+
return BaseClientHTTPControllerResults(response=response)
|
|
79
|
+
|
|
80
|
+
async def get_organization_users(self, parameters:MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromOrganization) -> BaseClientHTTPControllerResults:
|
|
81
|
+
"""Get organization's users from MaleoIdentity"""
|
|
82
|
+
async with self._manager.get_client() as client:
|
|
83
|
+
#* Define URL
|
|
84
|
+
url = f"{self._manager.url.api}/v1/organizations/{parameters.organization_id}/users/"
|
|
85
|
+
|
|
86
|
+
#* Parse parameters to query params
|
|
87
|
+
params = MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromOrganizationQuery.model_validate(parameters.model_dump()).model_dump(exclude_none=True)
|
|
88
|
+
|
|
89
|
+
#* Create auth
|
|
90
|
+
auth = BearerAuth(token=self._service_manager.token)
|
|
91
|
+
|
|
92
|
+
#* Send request and wait for response
|
|
93
|
+
response = await client.get(url=url, params=params, auth=auth)
|
|
94
|
+
return BaseClientHTTPControllerResults(response=response)
|
|
95
|
+
|
|
96
|
+
async def get_organization_user(self, parameters:MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingle) -> BaseClientHTTPControllerResults:
|
|
97
|
+
"""Get user's organization from MaleoIdentity"""
|
|
98
|
+
async with self._manager.get_client() as client:
|
|
99
|
+
#* Define URL
|
|
100
|
+
url = f"{self._manager.url.api}/v1/organizations/{parameters.organization_id}/users/{parameters.user_id}"
|
|
101
|
+
|
|
102
|
+
#* Parse parameters to query params
|
|
103
|
+
params = MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingleQuery.model_validate(parameters.model_dump()).model_dump(exclude_none=True)
|
|
104
|
+
|
|
105
|
+
#* Create auth
|
|
106
|
+
auth = BearerAuth(token=self._service_manager.token)
|
|
107
|
+
|
|
108
|
+
#* Send request and wait for response
|
|
109
|
+
response = await client.get(url=url, params=params, auth=auth)
|
|
76
110
|
return BaseClientHTTPControllerResults(response=response)
|
|
@@ -2,8 +2,10 @@ from maleo_foundation.managers.client.base import BearerAuth
|
|
|
2
2
|
from maleo_foundation.managers.client.maleo import MaleoClientHTTPController
|
|
3
3
|
from maleo_foundation.models.transfers.results.client.controllers.http import BaseClientHTTPControllerResults
|
|
4
4
|
from maleo_identity.models.transfers.parameters.general.user import MaleoIdentityUserGeneralParametersTransfers
|
|
5
|
+
from maleo_identity.models.transfers.parameters.general.user_organization import MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
5
6
|
from maleo_identity.models.transfers.parameters.general.user_system_role import MaleoIdentityUserSystemRoleGeneralParametersTransfers
|
|
6
7
|
from maleo_identity.models.transfers.parameters.client.user import MaleoIdentityUserClientParametersTransfers
|
|
8
|
+
from maleo_identity.models.transfers.parameters.client.user_organization import MaleoIdentityUserOrganizationClientParametersTransfers
|
|
7
9
|
from maleo_identity.models.transfers.parameters.client.user_system_role import MaleoIdentityUserSystemRoleClientParametersTransfers
|
|
8
10
|
|
|
9
11
|
class MaleoIdentityUserHTTPController(MaleoClientHTTPController):
|
|
@@ -118,6 +120,38 @@ class MaleoIdentityUserHTTPController(MaleoClientHTTPController):
|
|
|
118
120
|
#* Create auth
|
|
119
121
|
auth = BearerAuth(token=self._service_manager.token)
|
|
120
122
|
|
|
123
|
+
#* Send request and wait for response
|
|
124
|
+
response = await client.get(url=url, params=params, auth=auth)
|
|
125
|
+
return BaseClientHTTPControllerResults(response=response)
|
|
126
|
+
|
|
127
|
+
async def get_user_organizations(self, parameters:MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromUser) -> BaseClientHTTPControllerResults:
|
|
128
|
+
"""Get user's organizations from MaleoIdentity"""
|
|
129
|
+
async with self._manager.get_client() as client:
|
|
130
|
+
#* Define URL
|
|
131
|
+
url = f"{self._manager.url.api}/v1/users/{parameters.user_id}/organizations/"
|
|
132
|
+
|
|
133
|
+
#* Parse parameters to query params
|
|
134
|
+
params = MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromUserQuery.model_validate(parameters.model_dump()).model_dump(exclude_none=True)
|
|
135
|
+
|
|
136
|
+
#* Create auth
|
|
137
|
+
auth = BearerAuth(token=self._service_manager.token)
|
|
138
|
+
|
|
139
|
+
#* Send request and wait for response
|
|
140
|
+
response = await client.get(url=url, params=params, auth=auth)
|
|
141
|
+
return BaseClientHTTPControllerResults(response=response)
|
|
142
|
+
|
|
143
|
+
async def get_user_organization(self, parameters:MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingle) -> BaseClientHTTPControllerResults:
|
|
144
|
+
"""Get user's organization from MaleoIdentity"""
|
|
145
|
+
async with self._manager.get_client() as client:
|
|
146
|
+
#* Define URL
|
|
147
|
+
url = f"{self._manager.url.api}/v1/users/{parameters.user_id}/organizations/{parameters.organization_id}"
|
|
148
|
+
|
|
149
|
+
#* Parse parameters to query params
|
|
150
|
+
params = MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingleQuery.model_validate(parameters.model_dump()).model_dump(exclude_none=True)
|
|
151
|
+
|
|
152
|
+
#* Create auth
|
|
153
|
+
auth = BearerAuth(token=self._service_manager.token)
|
|
154
|
+
|
|
121
155
|
#* Send request and wait for response
|
|
122
156
|
response = await client.get(url=url, params=params, auth=auth)
|
|
123
157
|
return BaseClientHTTPControllerResults(response=response)
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
from fastapi import status
|
|
2
1
|
from maleo_foundation.managers.client.base import ClientService
|
|
3
2
|
from maleo_foundation.utils.exceptions import BaseExceptions
|
|
4
3
|
from maleo_identity.client.controllers import MaleoIdentityOrganizationControllers
|
|
5
4
|
from maleo_identity.enums.general import MaleoIdentityGeneralEnums
|
|
6
5
|
from maleo_identity.models.transfers.parameters.general.organization import MaleoIdentityOrganizationGeneralParametersTransfers
|
|
6
|
+
from maleo_identity.models.transfers.parameters.general.user_organization import MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
7
7
|
from maleo_identity.models.transfers.parameters.client.organization import MaleoIdentityOrganizationClientParametersTransfers
|
|
8
|
+
from maleo_identity.models.transfers.parameters.client.user_organization import MaleoIdentityUserOrganizationClientParametersTransfers
|
|
8
9
|
from maleo_identity.models.transfers.results.general.organization import MaleoIdentityOrganizationGeneralResultsTransfers
|
|
10
|
+
from maleo_identity.models.transfers.results.general.user_organization import MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
9
11
|
from maleo_identity.types.results.client.organization import MaleoIdentityOrganizationClientResultsTypes
|
|
12
|
+
from maleo_identity.types.results.client.user_organization import MaleoIdentityUserOrganizationClientResultsTypes
|
|
10
13
|
|
|
11
14
|
class MaleoIdentityOrganizationClientService(ClientService):
|
|
12
15
|
def __init__(self, logger, controllers:MaleoIdentityOrganizationControllers):
|
|
@@ -142,4 +145,69 @@ class MaleoIdentityOrganizationClientService(ClientService):
|
|
|
142
145
|
return MaleoIdentityOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
143
146
|
else:
|
|
144
147
|
return MaleoIdentityOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
148
|
+
return await _impl()
|
|
149
|
+
|
|
150
|
+
async def get_organization_users(
|
|
151
|
+
self,
|
|
152
|
+
parameters:MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromOrganization,
|
|
153
|
+
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
154
|
+
) -> MaleoIdentityUserOrganizationClientResultsTypes.GetMultiple:
|
|
155
|
+
"""Retrieve organization's users from MaleoIdentity"""
|
|
156
|
+
@BaseExceptions.service_exception_handler(
|
|
157
|
+
operation="retrieving organization's users",
|
|
158
|
+
logger=self._logger,
|
|
159
|
+
fail_result_class=MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail
|
|
160
|
+
)
|
|
161
|
+
async def _impl():
|
|
162
|
+
#* Validate chosen controller type
|
|
163
|
+
if not isinstance(controller_type, MaleoIdentityGeneralEnums.ClientControllerType):
|
|
164
|
+
message = "Invalid controller type"
|
|
165
|
+
description = "The provided controller type did not exists"
|
|
166
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
167
|
+
#* Update organization's data using chosen controller
|
|
168
|
+
if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
169
|
+
controller_result = await self._controllers.http.get_organization_users(parameters=parameters)
|
|
170
|
+
else:
|
|
171
|
+
message = "Invalid controller type"
|
|
172
|
+
description = "The provided controller type has not been implemented"
|
|
173
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
174
|
+
#* Return proper response
|
|
175
|
+
if not controller_result.success:
|
|
176
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
177
|
+
else:
|
|
178
|
+
if controller_result.content["data"] is None:
|
|
179
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
180
|
+
else:
|
|
181
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.MultipleData.model_validate(controller_result.content)
|
|
182
|
+
return await _impl()
|
|
183
|
+
|
|
184
|
+
async def get_organization_user(
|
|
185
|
+
self,
|
|
186
|
+
parameters:MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingle,
|
|
187
|
+
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
188
|
+
) -> MaleoIdentityUserOrganizationClientResultsTypes.GetSingle:
|
|
189
|
+
"""Retrieve organization's user from MaleoIdentity"""
|
|
190
|
+
@BaseExceptions.service_exception_handler(
|
|
191
|
+
operation="retrieving organization's user",
|
|
192
|
+
logger=self._logger,
|
|
193
|
+
fail_result_class=MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail
|
|
194
|
+
)
|
|
195
|
+
async def _impl():
|
|
196
|
+
#* Validate chosen controller type
|
|
197
|
+
if not isinstance(controller_type, MaleoIdentityGeneralEnums.ClientControllerType):
|
|
198
|
+
message = "Invalid controller type"
|
|
199
|
+
description = "The provided controller type did not exists"
|
|
200
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
201
|
+
#* Update organization's data using chosen controller
|
|
202
|
+
if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
203
|
+
controller_result = await self._controllers.http.get_organization_user(parameters=parameters)
|
|
204
|
+
else:
|
|
205
|
+
message = "Invalid controller type"
|
|
206
|
+
description = "The provided controller type has not been implemented"
|
|
207
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
208
|
+
#* Return proper response
|
|
209
|
+
if not controller_result.success:
|
|
210
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
211
|
+
else:
|
|
212
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
145
213
|
return await _impl()
|
|
@@ -4,12 +4,16 @@ from maleo_foundation.utils.exceptions import BaseExceptions
|
|
|
4
4
|
from maleo_identity.client.controllers import MaleoIdentityUserControllers
|
|
5
5
|
from maleo_identity.enums.general import MaleoIdentityGeneralEnums
|
|
6
6
|
from maleo_identity.models.transfers.parameters.general.user import MaleoIdentityUserGeneralParametersTransfers
|
|
7
|
+
from maleo_identity.models.transfers.parameters.general.user_organization import MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
7
8
|
from maleo_identity.models.transfers.parameters.general.user_system_role import MaleoIdentityUserSystemRoleGeneralParametersTransfers
|
|
8
9
|
from maleo_identity.models.transfers.parameters.client.user import MaleoIdentityUserClientParametersTransfers
|
|
10
|
+
from maleo_identity.models.transfers.parameters.client.user_organization import MaleoIdentityUserOrganizationClientParametersTransfers
|
|
9
11
|
from maleo_identity.models.transfers.parameters.client.user_system_role import MaleoIdentityUserSystemRoleClientParametersTransfers
|
|
10
12
|
from maleo_identity.models.transfers.results.general.user import MaleoIdentityUserGeneralResultsTransfers
|
|
13
|
+
from maleo_identity.models.transfers.results.general.user_organization import MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
11
14
|
from maleo_identity.models.transfers.results.general.user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
12
15
|
from maleo_identity.types.results.client.user import MaleoIdentityUserClientResultsTypes
|
|
16
|
+
from maleo_identity.types.results.client.user_organization import MaleoIdentityUserOrganizationClientResultsTypes
|
|
13
17
|
from maleo_identity.types.results.client.user_system_role import MaleoIdentityUserSystemRoleClientResultsTypes
|
|
14
18
|
|
|
15
19
|
class MaleoIdentityUserClientService(ClientService):
|
|
@@ -179,6 +183,71 @@ class MaleoIdentityUserClientService(ClientService):
|
|
|
179
183
|
return MaleoIdentityUserGeneralResultsTransfers.SinglePassword.model_validate(controller_result.content)
|
|
180
184
|
return await _impl()
|
|
181
185
|
|
|
186
|
+
async def get_user_organizations(
|
|
187
|
+
self,
|
|
188
|
+
parameters:MaleoIdentityUserOrganizationClientParametersTransfers.GetMultipleFromUser,
|
|
189
|
+
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
190
|
+
) -> MaleoIdentityUserOrganizationClientResultsTypes.GetMultiple:
|
|
191
|
+
"""Retrieve user's organizations from MaleoIdentity"""
|
|
192
|
+
@BaseExceptions.service_exception_handler(
|
|
193
|
+
operation="retrieving user's organizations",
|
|
194
|
+
logger=self._logger,
|
|
195
|
+
fail_result_class=MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail
|
|
196
|
+
)
|
|
197
|
+
async def _impl():
|
|
198
|
+
#* Validate chosen controller type
|
|
199
|
+
if not isinstance(controller_type, MaleoIdentityGeneralEnums.ClientControllerType):
|
|
200
|
+
message = "Invalid controller type"
|
|
201
|
+
description = "The provided controller type did not exists"
|
|
202
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
203
|
+
#* Retrieve users using chosen controller
|
|
204
|
+
if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
205
|
+
controller_result = await self._controllers.http.get_user_organizations(parameters=parameters)
|
|
206
|
+
else:
|
|
207
|
+
message = "Invalid controller type"
|
|
208
|
+
description = "The provided controller type has not been implemented"
|
|
209
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
210
|
+
#* Return proper response
|
|
211
|
+
if not controller_result.success:
|
|
212
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
213
|
+
else:
|
|
214
|
+
if controller_result.content["data"] is None:
|
|
215
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.NoData.model_validate(controller_result.content)
|
|
216
|
+
else:
|
|
217
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.MultipleData.model_validate(controller_result.content)
|
|
218
|
+
return await _impl()
|
|
219
|
+
|
|
220
|
+
async def get_user_organization(
|
|
221
|
+
self,
|
|
222
|
+
parameters:MaleoIdentityUserOrganizationGeneralParametersTransfers.GetSingle,
|
|
223
|
+
controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP
|
|
224
|
+
) -> MaleoIdentityUserOrganizationClientResultsTypes.GetSingle:
|
|
225
|
+
"""Retrieve user's organization from MaleoIdentity"""
|
|
226
|
+
@BaseExceptions.service_exception_handler(
|
|
227
|
+
operation="retrieving user's organization",
|
|
228
|
+
logger=self._logger,
|
|
229
|
+
fail_result_class=MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail
|
|
230
|
+
)
|
|
231
|
+
async def _impl():
|
|
232
|
+
#* Validate chosen controller type
|
|
233
|
+
if not isinstance(controller_type, MaleoIdentityGeneralEnums.ClientControllerType):
|
|
234
|
+
message = "Invalid controller type"
|
|
235
|
+
description = "The provided controller type did not exists"
|
|
236
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
237
|
+
#* Retrieve user using chosen controller
|
|
238
|
+
if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
239
|
+
controller_result = await self._controllers.http.get_user_organization(parameters=parameters)
|
|
240
|
+
else:
|
|
241
|
+
message = "Invalid controller type"
|
|
242
|
+
description = "The provided controller type has not been implemented"
|
|
243
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail(message=message, description=description)
|
|
244
|
+
#* Return proper response
|
|
245
|
+
if not controller_result.success:
|
|
246
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail.model_validate(controller_result.content)
|
|
247
|
+
else:
|
|
248
|
+
return MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData.model_validate(controller_result.content)
|
|
249
|
+
return await _impl()
|
|
250
|
+
|
|
182
251
|
async def get_user_system_roles(
|
|
183
252
|
self,
|
|
184
253
|
parameters:MaleoIdentityUserSystemRoleClientParametersTransfers.GetMultipleFromUser,
|
|
@@ -24,6 +24,18 @@ class MaleoIdentityUserOrganizationClientParametersTransfers:
|
|
|
24
24
|
BaseClientParametersTransfers.GetPaginatedMultiple
|
|
25
25
|
): pass
|
|
26
26
|
|
|
27
|
+
class GetMultipleFromUserQuery(
|
|
28
|
+
MaleoIdentityUserOrganizationGeneralSchemas.Expand,
|
|
29
|
+
MaleoIdentityUserOrganizationGeneralSchemas.OptionalListOfOrganizationId,
|
|
30
|
+
BaseClientParametersTransfers.GetPaginatedMultipleQuery
|
|
31
|
+
): pass
|
|
32
|
+
|
|
33
|
+
class GetMultipleFromOrganizationQuery(
|
|
34
|
+
MaleoIdentityUserOrganizationGeneralSchemas.Expand,
|
|
35
|
+
MaleoIdentityUserOrganizationGeneralSchemas.OptionalListOfUserId,
|
|
36
|
+
BaseClientParametersTransfers.GetPaginatedMultipleQuery
|
|
37
|
+
): pass
|
|
38
|
+
|
|
27
39
|
class GetMultipleQuery(
|
|
28
40
|
MaleoIdentityUserOrganizationGeneralSchemas.Expand,
|
|
29
41
|
MaleoIdentityUserOrganizationGeneralSchemas.OptionalListOfOrganizationId,
|
|
@@ -4,11 +4,11 @@ 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=eJs_7qx9md_UjcDZfRy2FiyRDsvaiFm87yhdHAabv9M,6553
|
|
8
|
+
maleo_identity/client/controllers/http/user.py,sha256=ifaOciZYGkmGSN4uAbPt97ujL0xVuQmI8G24ddP9-B0,9043
|
|
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=vz2nY5LztwRBx1aJNyMESy8QpyDMutllKY7X1HMUv4M,13689
|
|
11
|
+
maleo_identity/client/services/user.py,sha256=TpBlHwguBYeRZnVYkaTWt-R-ou22vs-Cw_167R1y4lQ,19731
|
|
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
|
|
@@ -65,7 +65,7 @@ maleo_identity/models/transfers/parameters/__init__.py,sha256=ysazhGlRoT9kY_L_gr
|
|
|
65
65
|
maleo_identity/models/transfers/parameters/client/__init__.py,sha256=5CXqAUODAPcskCiwWqeSMvu1L09034IE-t-YqRRSsZ8,808
|
|
66
66
|
maleo_identity/models/transfers/parameters/client/organization.py,sha256=h-iOTTPtuYdBLnsuhZ-rlMyk0tfdyYiAWG7GRCps1UM,1065
|
|
67
67
|
maleo_identity/models/transfers/parameters/client/user.py,sha256=ntPf_E5gw4f_eL4sRgeRF_AZcjNoBTM8KWDIN02pB3c,1298
|
|
68
|
-
maleo_identity/models/transfers/parameters/client/user_organization.py,sha256=
|
|
68
|
+
maleo_identity/models/transfers/parameters/client/user_organization.py,sha256=9Vin2d8jrTDtnTwSD7lQDaWi5aAbtGlGbnkUmGaSXSI,2066
|
|
69
69
|
maleo_identity/models/transfers/parameters/client/user_profile.py,sha256=KB5_Ado_JAVYaSAPyqS00TSnrgbCkCE6yKYhe4NLb58,1224
|
|
70
70
|
maleo_identity/models/transfers/parameters/client/user_system_role.py,sha256=olEv7xSsej7jwuESoQ6qSK5cPRgGIhK6svamYjV_5ns,1569
|
|
71
71
|
maleo_identity/models/transfers/parameters/general/__init__.py,sha256=VOslVmijMHB9aot1QZom6Ug7prr9gGJ7FQvXrfADIBw,819
|
|
@@ -113,7 +113,7 @@ maleo_identity/types/results/query/user.py,sha256=SNgSJEOD3ZAdflkgPz47vVDYuTxtYV
|
|
|
113
113
|
maleo_identity/types/results/query/user_organization.py,sha256=5_YbwX6s9l1uYbLMZmlVg5EiP_5_RvUKRkRdbBFzLWo,835
|
|
114
114
|
maleo_identity/types/results/query/user_profile.py,sha256=Tz960UKJa17fYxaS5_Ju2iqVj5b1F07ZkgXsshWqX0E,788
|
|
115
115
|
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.
|
|
116
|
+
maleo_identity-0.0.12.dist-info/METADATA,sha256=ltvOhzhDMsROjPayUosFgCmRPo2GTl4wj16wwzIYGKg,868
|
|
117
|
+
maleo_identity-0.0.12.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
118
|
+
maleo_identity-0.0.12.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
119
|
+
maleo_identity-0.0.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|