maleo-identity 0.0.73__py3-none-any.whl → 0.0.75__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.
- maleo_identity/client/controllers/http/organization.py +91 -91
- maleo_identity/client/services/organization.py +139 -139
- maleo_identity/models/responses/organization.py +12 -12
- maleo_identity/models/tables/organization.py +9 -9
- maleo_identity/models/transfers/general/organization.py +4 -4
- maleo_identity/models/transfers/parameters/client/organization.py +16 -16
- maleo_identity/models/transfers/parameters/service/organization.py +18 -18
- maleo_identity/models/transfers/results/client/organization.py +5 -5
- maleo_identity/models/transfers/results/service/organization.py +5 -5
- maleo_identity/types/results/client/organization.py +9 -9
- maleo_identity/types/results/service/organization.py +10 -10
- {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.75.dist-info}/METADATA +2 -2
- {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.75.dist-info}/RECORD +15 -15
- {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.75.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.75.dist-info}/top_level.txt +0 -0
|
@@ -71,53 +71,53 @@ class MaleoIdentityOrganizationHTTPController(MaleoClientHTTPController):
|
|
|
71
71
|
response = await client.get(url=url, params=params, headers=headers, auth=auth)
|
|
72
72
|
return BaseClientHTTPControllerResults(response=response)
|
|
73
73
|
|
|
74
|
-
async def get_structured_organizations(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
) -> BaseClientHTTPControllerResults:
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
74
|
+
# async def get_structured_organizations(
|
|
75
|
+
# self,
|
|
76
|
+
# parameters:MaleoIdentityOrganizationClientParametersTransfers.GetMultipleStructured,
|
|
77
|
+
# authorization:Optional[Authorization] = None,
|
|
78
|
+
# headers:Optional[Dict[str, str]] = None
|
|
79
|
+
# ) -> BaseClientHTTPControllerResults:
|
|
80
|
+
# """Fetch structured organizations from MaleoIdentity"""
|
|
81
|
+
# async with self._manager.get_client() as client:
|
|
82
|
+
# #* Define URL
|
|
83
|
+
# url = f"{self._manager.url}/v1/organizations/structured"
|
|
84
|
+
|
|
85
|
+
# #* Parse parameters to query params
|
|
86
|
+
# params = (
|
|
87
|
+
# MaleoIdentityOrganizationClientParametersTransfers
|
|
88
|
+
# .GetMultipleStructuredQuery
|
|
89
|
+
# .model_validate(
|
|
90
|
+
# parameters.model_dump()
|
|
91
|
+
# )
|
|
92
|
+
# .model_dump(
|
|
93
|
+
# exclude={"sort_columns", "date_filters"},
|
|
94
|
+
# exclude_none=True
|
|
95
|
+
# )
|
|
96
|
+
# )
|
|
97
|
+
|
|
98
|
+
# #* Create headers
|
|
99
|
+
# base_headers = {
|
|
100
|
+
# "Content-Type": "application/json"
|
|
101
|
+
# }
|
|
102
|
+
# if headers is not None:
|
|
103
|
+
# headers = deep_merge(
|
|
104
|
+
# base_headers,
|
|
105
|
+
# headers
|
|
106
|
+
# )
|
|
107
|
+
# else:
|
|
108
|
+
# headers = base_headers
|
|
109
|
+
|
|
110
|
+
# #* Create auth
|
|
111
|
+
# token = None
|
|
112
|
+
# if authorization and authorization.scheme == "Bearer":
|
|
113
|
+
# token = authorization.credentials
|
|
114
|
+
# elif self._service_manager.token:
|
|
115
|
+
# token = self._service_manager.token
|
|
116
|
+
# auth = BearerAuth(token) if token else None
|
|
117
|
+
|
|
118
|
+
# #* Send request and wait for response
|
|
119
|
+
# response = await client.get(url=url, params=params, headers=headers, auth=auth)
|
|
120
|
+
# return BaseClientHTTPControllerResults(response=response)
|
|
121
121
|
|
|
122
122
|
async def get_organization(
|
|
123
123
|
self,
|
|
@@ -164,50 +164,50 @@ class MaleoIdentityOrganizationHTTPController(MaleoClientHTTPController):
|
|
|
164
164
|
response = await client.get(url=url, params=params, headers=headers, auth=auth)
|
|
165
165
|
return BaseClientHTTPControllerResults(response=response)
|
|
166
166
|
|
|
167
|
-
async def get_structured_organization(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
) -> BaseClientHTTPControllerResults:
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
167
|
+
# async def get_structured_organization(
|
|
168
|
+
# self,
|
|
169
|
+
# parameters:MaleoIdentityOrganizationGeneralParametersTransfers.GetSingle,
|
|
170
|
+
# authorization:Optional[Authorization] = None,
|
|
171
|
+
# headers:Optional[Dict[str, str]] = None
|
|
172
|
+
# ) -> BaseClientHTTPControllerResults:
|
|
173
|
+
# """Fetch structured organization from MaleoIdentity"""
|
|
174
|
+
# async with self._manager.get_client() as client:
|
|
175
|
+
# #* Define URL
|
|
176
|
+
# url = f"{self._manager.url}/v1/organizations/{parameters.identifier}/{parameters.value}/structured"
|
|
177
|
+
|
|
178
|
+
# #* Parse parameters to query params
|
|
179
|
+
# params = (
|
|
180
|
+
# MaleoIdentityOrganizationGeneralParametersTransfers
|
|
181
|
+
# .GetSingleQuery
|
|
182
|
+
# .model_validate(
|
|
183
|
+
# parameters.model_dump()
|
|
184
|
+
# )
|
|
185
|
+
# .model_dump(exclude_none=True)
|
|
186
|
+
# )
|
|
187
|
+
|
|
188
|
+
# #* Create headers
|
|
189
|
+
# base_headers = {
|
|
190
|
+
# "Content-Type": "application/json"
|
|
191
|
+
# }
|
|
192
|
+
# if headers is not None:
|
|
193
|
+
# headers = deep_merge(
|
|
194
|
+
# base_headers,
|
|
195
|
+
# headers
|
|
196
|
+
# )
|
|
197
|
+
# else:
|
|
198
|
+
# headers = base_headers
|
|
199
|
+
|
|
200
|
+
# #* Create auth
|
|
201
|
+
# token = None
|
|
202
|
+
# if authorization and authorization.scheme == "Bearer":
|
|
203
|
+
# token = authorization.credentials
|
|
204
|
+
# elif self._service_manager.token:
|
|
205
|
+
# token = self._service_manager.token
|
|
206
|
+
# auth = BearerAuth(token) if token else None
|
|
207
|
+
|
|
208
|
+
# #* Send request and wait for response
|
|
209
|
+
# response = await client.get(url=url, params=params, headers=headers, auth=auth)
|
|
210
|
+
# return BaseClientHTTPControllerResults(response=response)
|
|
211
211
|
|
|
212
212
|
async def get_organization_children(
|
|
213
213
|
self,
|
|
@@ -126,79 +126,79 @@ class MaleoIdentityOrganizationClientService(MaleoClientService):
|
|
|
126
126
|
headers=headers
|
|
127
127
|
)
|
|
128
128
|
|
|
129
|
-
async def get_structured_organizations(
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
) -> MaleoIdentityOrganizationClientResultsTypes.GetMultipleStructured:
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
129
|
+
# async def get_structured_organizations(
|
|
130
|
+
# self,
|
|
131
|
+
# parameters:MaleoIdentityOrganizationClientParametersTransfers.GetMultipleStructured,
|
|
132
|
+
# controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP,
|
|
133
|
+
# authorization:Optional[Authorization] = None,
|
|
134
|
+
# headers:Optional[Dict[str, str]] = None
|
|
135
|
+
# ) -> MaleoIdentityOrganizationClientResultsTypes.GetMultipleStructured:
|
|
136
|
+
# """Retrieve structured organizations from MaleoIdentity"""
|
|
137
|
+
# @BaseExceptions.service_exception_handler(
|
|
138
|
+
# operation="retrieving structured organizations",
|
|
139
|
+
# logger=self._logger,
|
|
140
|
+
# fail_result_class=MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
141
|
+
# )
|
|
142
|
+
# async def _impl(
|
|
143
|
+
# parameters:MaleoIdentityOrganizationClientParametersTransfers.GetMultipleStructured,
|
|
144
|
+
# controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP,
|
|
145
|
+
# authorization:Optional[Authorization] = None,
|
|
146
|
+
# headers:Optional[Dict[str, str]] = None
|
|
147
|
+
# ):
|
|
148
|
+
# #* Validate chosen controller type
|
|
149
|
+
# if not isinstance(
|
|
150
|
+
# controller_type,
|
|
151
|
+
# MaleoIdentityGeneralEnums.ClientControllerType
|
|
152
|
+
# ):
|
|
153
|
+
# message = "Invalid controller type"
|
|
154
|
+
# description = "The provided controller type did not exists"
|
|
155
|
+
# return MaleoIdentityOrganizationClientResultsTransfers.Fail(
|
|
156
|
+
# message=message,
|
|
157
|
+
# description=description
|
|
158
|
+
# )
|
|
159
|
+
# #* Retrieve structured organizations using chosen controller
|
|
160
|
+
# if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
161
|
+
# controller_result = (
|
|
162
|
+
# await self._controllers.http
|
|
163
|
+
# .get_structured_organizations(
|
|
164
|
+
# parameters=parameters,
|
|
165
|
+
# authorization=authorization,
|
|
166
|
+
# headers=headers
|
|
167
|
+
# )
|
|
168
|
+
# )
|
|
169
|
+
# else:
|
|
170
|
+
# message = "Invalid controller type"
|
|
171
|
+
# description = "The provided controller type has not been implemented"
|
|
172
|
+
# return MaleoIdentityOrganizationClientResultsTransfers.Fail(
|
|
173
|
+
# message=message,
|
|
174
|
+
# description=description
|
|
175
|
+
# )
|
|
176
|
+
# #* Return proper response
|
|
177
|
+
# if not controller_result.success:
|
|
178
|
+
# return (
|
|
179
|
+
# MaleoIdentityOrganizationClientResultsTransfers
|
|
180
|
+
# .Fail
|
|
181
|
+
# .model_validate(controller_result.content)
|
|
182
|
+
# )
|
|
183
|
+
# else:
|
|
184
|
+
# if controller_result.content["data"] is None:
|
|
185
|
+
# return (
|
|
186
|
+
# MaleoIdentityOrganizationClientResultsTransfers
|
|
187
|
+
# .NoData
|
|
188
|
+
# .model_validate(controller_result.content)
|
|
189
|
+
# )
|
|
190
|
+
# else:
|
|
191
|
+
# return (
|
|
192
|
+
# MaleoIdentityOrganizationClientResultsTransfers
|
|
193
|
+
# .MultipleStructured
|
|
194
|
+
# .model_validate(controller_result.content)
|
|
195
|
+
# )
|
|
196
|
+
# return await _impl(
|
|
197
|
+
# parameters=parameters,
|
|
198
|
+
# controller_type=controller_type,
|
|
199
|
+
# authorization=authorization,
|
|
200
|
+
# headers=headers
|
|
201
|
+
# )
|
|
202
202
|
|
|
203
203
|
async def get_organization(
|
|
204
204
|
self,
|
|
@@ -267,72 +267,72 @@ class MaleoIdentityOrganizationClientService(MaleoClientService):
|
|
|
267
267
|
headers=headers
|
|
268
268
|
)
|
|
269
269
|
|
|
270
|
-
async def get_structured_organization(
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
) -> MaleoIdentityOrganizationClientResultsTypes.GetSingleStructured:
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
270
|
+
# async def get_structured_organization(
|
|
271
|
+
# self,
|
|
272
|
+
# parameters:MaleoIdentityOrganizationGeneralParametersTransfers.GetSingle,
|
|
273
|
+
# controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP,
|
|
274
|
+
# authorization:Optional[Authorization] = None,
|
|
275
|
+
# headers:Optional[Dict[str, str]] = None
|
|
276
|
+
# ) -> MaleoIdentityOrganizationClientResultsTypes.GetSingleStructured:
|
|
277
|
+
# """Retrieve structured organization from MaleoIdentity"""
|
|
278
|
+
# @BaseExceptions.service_exception_handler(
|
|
279
|
+
# operation="retrieving structured organization",
|
|
280
|
+
# logger=self._logger,
|
|
281
|
+
# fail_result_class=MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
282
|
+
# )
|
|
283
|
+
# async def _impl(
|
|
284
|
+
# parameters:MaleoIdentityOrganizationGeneralParametersTransfers.GetSingle,
|
|
285
|
+
# controller_type:MaleoIdentityGeneralEnums.ClientControllerType = MaleoIdentityGeneralEnums.ClientControllerType.HTTP,
|
|
286
|
+
# authorization:Optional[Authorization] = None,
|
|
287
|
+
# headers:Optional[Dict[str, str]] = None
|
|
288
|
+
# ):
|
|
289
|
+
# #* Validate chosen controller type
|
|
290
|
+
# if not isinstance(
|
|
291
|
+
# controller_type,
|
|
292
|
+
# MaleoIdentityGeneralEnums.ClientControllerType
|
|
293
|
+
# ):
|
|
294
|
+
# message = "Invalid controller type"
|
|
295
|
+
# description = "The provided controller type did not exists"
|
|
296
|
+
# return MaleoIdentityOrganizationClientResultsTransfers.Fail(
|
|
297
|
+
# message=message,
|
|
298
|
+
# description=description
|
|
299
|
+
# )
|
|
300
|
+
# #* Retrieve structured organization using chosen controller
|
|
301
|
+
# if controller_type == MaleoIdentityGeneralEnums.ClientControllerType.HTTP:
|
|
302
|
+
# controller_result = (
|
|
303
|
+
# await self._controllers.http
|
|
304
|
+
# .get_structured_organization(
|
|
305
|
+
# parameters=parameters,
|
|
306
|
+
# authorization=authorization,
|
|
307
|
+
# headers=headers
|
|
308
|
+
# )
|
|
309
|
+
# )
|
|
310
|
+
# else:
|
|
311
|
+
# message = "Invalid controller type"
|
|
312
|
+
# description = "The provided controller type has not been implemented"
|
|
313
|
+
# return MaleoIdentityOrganizationClientResultsTransfers.Fail(
|
|
314
|
+
# message=message,
|
|
315
|
+
# description=description
|
|
316
|
+
# )
|
|
317
|
+
# #* Return proper response
|
|
318
|
+
# if not controller_result.success:
|
|
319
|
+
# return (
|
|
320
|
+
# MaleoIdentityOrganizationClientResultsTransfers
|
|
321
|
+
# .Fail
|
|
322
|
+
# .model_validate(controller_result.content)
|
|
323
|
+
# )
|
|
324
|
+
# else:
|
|
325
|
+
# return (
|
|
326
|
+
# MaleoIdentityOrganizationClientResultsTransfers
|
|
327
|
+
# .SingleStructured
|
|
328
|
+
# .model_validate(controller_result.content)
|
|
329
|
+
# )
|
|
330
|
+
# return await _impl(
|
|
331
|
+
# parameters=parameters,
|
|
332
|
+
# controller_type=controller_type,
|
|
333
|
+
# authorization=authorization,
|
|
334
|
+
# headers=headers
|
|
335
|
+
# )
|
|
336
336
|
|
|
337
337
|
async def get_organization_children(
|
|
338
338
|
self,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from pydantic import Field
|
|
2
2
|
from maleo_foundation.models.responses import BaseResponses
|
|
3
3
|
from maleo_identity.enums.organization import MaleoIdentityOrganizationEnums
|
|
4
|
-
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
4
|
+
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
5
5
|
|
|
6
6
|
class MaleoIdentityOrganizationResponses:
|
|
7
7
|
class InvalidIdentifierType(BaseResponses.BadRequest):
|
|
@@ -27,17 +27,17 @@ class MaleoIdentityOrganizationResponses:
|
|
|
27
27
|
description:str = "Requested organizations found in database"
|
|
28
28
|
data:list[OrganizationTransfers] = Field(..., description="Organizations")
|
|
29
29
|
|
|
30
|
-
class GetSingleStructured(BaseResponses.SingleData):
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
class GetMultipleStructured(BaseResponses.PaginatedMultipleData):
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
30
|
+
# class GetSingleStructured(BaseResponses.SingleData):
|
|
31
|
+
# code:str = "IDT-ORG-005"
|
|
32
|
+
# message:str = "Structured organization found"
|
|
33
|
+
# description:str = "Requested structured organization found in database"
|
|
34
|
+
# data:StructuredOrganizationTransfers = Field(..., description="Structured organization")
|
|
35
|
+
|
|
36
|
+
# class GetMultipleStructured(BaseResponses.PaginatedMultipleData):
|
|
37
|
+
# code:str = "IDT-ORG-006"
|
|
38
|
+
# message:str = "Structured organizations found"
|
|
39
|
+
# description:str = "Requested structured organizations found in database"
|
|
40
|
+
# data:list[StructuredOrganizationTransfers] = Field(..., description="Structured organizations")
|
|
41
41
|
|
|
42
42
|
class CreateFailed(BaseResponses.BadRequest):
|
|
43
43
|
code:str = "IDT-ORG-007"
|
|
@@ -27,16 +27,16 @@ class OrganizationsTable(
|
|
|
27
27
|
parent = relationship(
|
|
28
28
|
"OrganizationsTable",
|
|
29
29
|
remote_side="OrganizationsTable.id",
|
|
30
|
-
back_populates="children"
|
|
31
|
-
)
|
|
32
|
-
children = relationship(
|
|
33
|
-
"OrganizationsTable",
|
|
34
|
-
back_populates="parent",
|
|
35
|
-
cascade="all",
|
|
36
|
-
lazy="select",
|
|
37
|
-
foreign_keys="[OrganizationsTable.parent_id]",
|
|
38
|
-
order_by="OrganizationsTable.id"
|
|
30
|
+
# back_populates="children"
|
|
39
31
|
)
|
|
32
|
+
# children = relationship(
|
|
33
|
+
# "OrganizationsTable",
|
|
34
|
+
# back_populates="parent",
|
|
35
|
+
# cascade="all",
|
|
36
|
+
# lazy="select",
|
|
37
|
+
# foreign_keys="[OrganizationsTable.parent_id]",
|
|
38
|
+
# order_by="OrganizationsTable.id"
|
|
39
|
+
# )
|
|
40
40
|
registration_code = relationship(
|
|
41
41
|
"OrganizationRegistrationCodesTable",
|
|
42
42
|
back_populates="organization",
|
|
@@ -24,8 +24,8 @@ class ExpandedOrganization(BaseModel):
|
|
|
24
24
|
class OptionalExpandedOrganization(BaseModel):
|
|
25
25
|
organization:Optional[OrganizationTransfers] = Field(None, description="Organization's details")
|
|
26
26
|
|
|
27
|
-
class StructuredOrganizationTransfers(OrganizationTransfers):
|
|
28
|
-
|
|
27
|
+
# class StructuredOrganizationTransfers(OrganizationTransfers):
|
|
28
|
+
# children:List["StructuredOrganizationTransfers"] = Field(..., description="Organization children")
|
|
29
29
|
|
|
30
|
-
# this is required for forward reference resolution
|
|
31
|
-
StructuredOrganizationTransfers.model_rebuild()
|
|
30
|
+
# # this is required for forward reference resolution
|
|
31
|
+
# StructuredOrganizationTransfers.model_rebuild()
|
|
@@ -33,14 +33,14 @@ class MaleoIdentityOrganizationClientParametersTransfers:
|
|
|
33
33
|
BaseParameterSchemas.OptionalListOfIds
|
|
34
34
|
): pass
|
|
35
35
|
|
|
36
|
-
class GetMultipleStructured(
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
): pass
|
|
36
|
+
# class GetMultipleStructured(
|
|
37
|
+
# BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
38
|
+
# BaseParameterSchemas.OptionalListOfKeys,
|
|
39
|
+
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
40
|
+
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
41
|
+
# BaseParameterSchemas.OptionalListOfUuids,
|
|
42
|
+
# BaseParameterSchemas.OptionalListOfIds
|
|
43
|
+
# ): pass
|
|
44
44
|
|
|
45
45
|
class GetMultipleQuery(
|
|
46
46
|
MaleoIdentityOrganizationSchemas.Expand,
|
|
@@ -67,11 +67,11 @@ class MaleoIdentityOrganizationClientParametersTransfers:
|
|
|
67
67
|
BaseParameterSchemas.OptionalListOfIds
|
|
68
68
|
): pass
|
|
69
69
|
|
|
70
|
-
class GetMultipleStructuredQuery(
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
): pass
|
|
70
|
+
# class GetMultipleStructuredQuery(
|
|
71
|
+
# BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
72
|
+
# BaseParameterSchemas.OptionalListOfKeys,
|
|
73
|
+
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
74
|
+
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
75
|
+
# BaseParameterSchemas.OptionalListOfUuids,
|
|
76
|
+
# BaseParameterSchemas.OptionalListOfIds
|
|
77
|
+
# ): pass
|
|
@@ -31,15 +31,15 @@ class MaleoIdentityOrganizationServiceParametersTransfers:
|
|
|
31
31
|
BaseParameterSchemas.OptionalListOfIds
|
|
32
32
|
): pass
|
|
33
33
|
|
|
34
|
-
class GetMultipleStructuredQuery(
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
): pass
|
|
34
|
+
# class GetMultipleStructuredQuery(
|
|
35
|
+
# MaleoIdentityOrganizationSchemas.Expand,
|
|
36
|
+
# BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
37
|
+
# BaseParameterSchemas.OptionalListOfKeys,
|
|
38
|
+
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
39
|
+
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
40
|
+
# BaseParameterSchemas.OptionalListOfUuids,
|
|
41
|
+
# BaseParameterSchemas.OptionalListOfIds
|
|
42
|
+
# ): pass
|
|
43
43
|
|
|
44
44
|
class GetMultiple(
|
|
45
45
|
MaleoIdentityOrganizationSchemas.Expand,
|
|
@@ -55,12 +55,12 @@ class MaleoIdentityOrganizationServiceParametersTransfers:
|
|
|
55
55
|
BaseParameterSchemas.OptionalListOfIds
|
|
56
56
|
): pass
|
|
57
57
|
|
|
58
|
-
class GetMultipleStructured(
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
): pass
|
|
58
|
+
# class GetMultipleStructured(
|
|
59
|
+
# MaleoIdentityOrganizationSchemas.Expand,
|
|
60
|
+
# BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
61
|
+
# BaseParameterSchemas.OptionalListOfKeys,
|
|
62
|
+
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
63
|
+
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
64
|
+
# BaseParameterSchemas.OptionalListOfUuids,
|
|
65
|
+
# BaseParameterSchemas.OptionalListOfIds
|
|
66
|
+
# ): pass
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
from pydantic import Field
|
|
3
3
|
from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
4
|
+
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
5
5
|
|
|
6
6
|
class MaleoIdentityOrganizationClientResultsTransfers:
|
|
7
7
|
class Fail(BaseClientServiceResultsTransfers.Fail): pass
|
|
@@ -14,8 +14,8 @@ class MaleoIdentityOrganizationClientResultsTransfers:
|
|
|
14
14
|
class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
15
15
|
data:list[OrganizationTransfers] = Field(..., description="Multiple organizations data")
|
|
16
16
|
|
|
17
|
-
class SingleStructured(BaseClientServiceResultsTransfers.SingleData):
|
|
18
|
-
|
|
17
|
+
# class SingleStructured(BaseClientServiceResultsTransfers.SingleData):
|
|
18
|
+
# data:StructuredOrganizationTransfers = Field(..., description="Single structured organization data")
|
|
19
19
|
|
|
20
|
-
class MultipleStructured(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
21
|
-
|
|
20
|
+
# class MultipleStructured(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
21
|
+
# data:list[StructuredOrganizationTransfers] = Field(..., description="Multiple structured organizations data")
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
from pydantic import Field
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
4
|
+
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
5
5
|
|
|
6
6
|
class MaleoIdentityOrganizationServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
@@ -14,8 +14,8 @@ class MaleoIdentityOrganizationServiceResultsTransfers:
|
|
|
14
14
|
class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
|
|
15
15
|
data:list[OrganizationTransfers] = Field(..., description="Multiple organizations data")
|
|
16
16
|
|
|
17
|
-
class SingleStructured(BaseServiceGeneralResultsTransfers.SingleData):
|
|
18
|
-
|
|
17
|
+
# class SingleStructured(BaseServiceGeneralResultsTransfers.SingleData):
|
|
18
|
+
# data:StructuredOrganizationTransfers = Field(..., description="Single structured organization data")
|
|
19
19
|
|
|
20
|
-
class MultipleStructured(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
|
|
21
|
-
|
|
20
|
+
# class MultipleStructured(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
|
|
21
|
+
# data:list[StructuredOrganizationTransfers] = Field(..., description="Multiple structured organizations data")
|
|
@@ -13,16 +13,16 @@ class MaleoIdentityOrganizationClientResultsTypes:
|
|
|
13
13
|
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
|
-
GetMultipleStructured = Union[
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
]
|
|
16
|
+
# GetMultipleStructured = Union[
|
|
17
|
+
# MaleoIdentityOrganizationClientResultsTransfers.MultipleStructured,
|
|
18
|
+
# MaleoIdentityOrganizationClientResultsTransfers.NoData,
|
|
19
|
+
# MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
20
|
+
# ]
|
|
21
21
|
|
|
22
|
-
GetSingleStructured = Union[
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
]
|
|
22
|
+
# GetSingleStructured = Union[
|
|
23
|
+
# MaleoIdentityOrganizationClientResultsTransfers.SingleStructured,
|
|
24
|
+
# MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
25
|
+
# ]
|
|
26
26
|
|
|
27
27
|
CreateOrUpdate = Union[
|
|
28
28
|
MaleoIdentityOrganizationClientResultsTransfers.SingleData,
|
|
@@ -14,17 +14,17 @@ class MaleoIdentityOrganizationServiceResultsTypes:
|
|
|
14
14
|
MaleoIdentityOrganizationServiceResultsTransfers.Fail
|
|
15
15
|
]
|
|
16
16
|
|
|
17
|
-
GetMultipleStructured = Union[
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
]
|
|
17
|
+
# GetMultipleStructured = Union[
|
|
18
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.MultipleStructured,
|
|
19
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.NoData,
|
|
20
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.Fail
|
|
21
|
+
# ]
|
|
22
22
|
|
|
23
|
-
GetSingleStructured = Union[
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
]
|
|
23
|
+
# GetSingleStructured = Union[
|
|
24
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.SingleStructured,
|
|
25
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.NoData,
|
|
26
|
+
# MaleoIdentityOrganizationServiceResultsTransfers.Fail
|
|
27
|
+
# ]
|
|
28
28
|
|
|
29
29
|
CreateOrUpdate = Union[
|
|
30
30
|
MaleoIdentityOrganizationServiceResultsTransfers.SingleData,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.75
|
|
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.3.31
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.1.
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.1.51
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -4,10 +4,10 @@ maleo_identity/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
4
4
|
maleo_identity/client/manager.py,sha256=Hla_oCqGm9xjvGVh5UZykwN1VurMlksA0-Ns1y-Owo8,2994
|
|
5
5
|
maleo_identity/client/controllers/__init__.py,sha256=XpsxpSc-g4g_tagwaQ0bmYIE2ufXjh-iyTqkbHEI04k,939
|
|
6
6
|
maleo_identity/client/controllers/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
maleo_identity/client/controllers/http/organization.py,sha256=
|
|
7
|
+
maleo_identity/client/controllers/http/organization.py,sha256=GtpKFHYVD6ncA4EYw4nuWr5doVIANGVi-NDChJS8XWo,25501
|
|
8
8
|
maleo_identity/client/controllers/http/user.py,sha256=dSlreGG3MUaExl-pzNFHbnupqqDYTX59jt8AqDDs30c,20999
|
|
9
9
|
maleo_identity/client/services/__init__.py,sha256=3lEqVBcNG7_3gSXxlJyaFtrN8OJFux67RYRZCDEI5WU,548
|
|
10
|
-
maleo_identity/client/services/organization.py,sha256=
|
|
10
|
+
maleo_identity/client/services/organization.py,sha256=LG1Sp0FTh-Xzg6kiyzEON6345BjjW3q-Vf0tDodl5qw,45666
|
|
11
11
|
maleo_identity/client/services/user.py,sha256=SYXWPQlbZnys9ai20bvj3qIj6AVlcrcvJzyXxmjTgMs,37701
|
|
12
12
|
maleo_identity/constants/__init__.py,sha256=EyuYkmm-m27VYwjrTjBKcB3iH78y48v2qDaie33WyiE,913
|
|
13
13
|
maleo_identity/constants/organization.py,sha256=M5STqi5WMtT6kfNbB4BnQ1gEdQvU-l9dc9MiJCKzO_o,484
|
|
@@ -30,7 +30,7 @@ maleo_identity/enums/user_profile.py,sha256=1QjZt2XROS4TEAgkegbMVInIm-oVh0PWcCIx
|
|
|
30
30
|
maleo_identity/enums/user_system_role.py,sha256=aVT2zHTtFEaCUbHP2RU1mMcxxvRFtS6w61KKlH1J_aM,138
|
|
31
31
|
maleo_identity/models/__init__.py,sha256=M3mB_vDV3bVyW_nwMFkE_DPptHnfu4Q-RgJci2OD614,382
|
|
32
32
|
maleo_identity/models/responses/__init__.py,sha256=DOZ7d5pYmpWwNWa-zBCsp8E_Loryu75ctpBYjPrV1Uo,913
|
|
33
|
-
maleo_identity/models/responses/organization.py,sha256=
|
|
33
|
+
maleo_identity/models/responses/organization.py,sha256=zUc2C76x5MIhIYDwg-ZEIeYQbpfYvyk9T3Kfiod77WU,2822
|
|
34
34
|
maleo_identity/models/responses/organization_registration_code.py,sha256=YWATzR-eK6W6JE6V8nbhuJUaJ_--UcQrRtF_FXXCiJI,2516
|
|
35
35
|
maleo_identity/models/responses/organization_role.py,sha256=jrYmicik9dytllqDIVg_NKzyxpmOg-zju0GdoQANXZE,1209
|
|
36
36
|
maleo_identity/models/responses/user.py,sha256=Pn5Nd00Z0oWJBXbsYfSsvjcj27OHxb0LTDtO7VpKMsg,2983
|
|
@@ -49,7 +49,7 @@ maleo_identity/models/schemas/user_organization_role.py,sha256=xedjuJ9P6vRtJimRT
|
|
|
49
49
|
maleo_identity/models/schemas/user_profile.py,sha256=x2--vAMY9KRa2Nyy7k2o4oYMz5DRm67dev3K45A7DkU,2603
|
|
50
50
|
maleo_identity/models/schemas/user_system_role.py,sha256=nhtfaZsNp4gn_i5VfWeHM38OaFa3MFwnDK7AhLXiFxY,436
|
|
51
51
|
maleo_identity/models/tables/__init__.py,sha256=mxBRnigBbeK7xKwK939qeAu9P5nErKi8qAgHy0CY-kg,835
|
|
52
|
-
maleo_identity/models/tables/organization.py,sha256
|
|
52
|
+
maleo_identity/models/tables/organization.py,sha256=-lNmH4ey6S9MWNTX9ED18Rf_eEHhqcdAbNbnppbvHzk,2103
|
|
53
53
|
maleo_identity/models/tables/organization_registration_code.py,sha256=0fkRVnp09ZzDdVD4VRpU13xwGNW3jn88EabCFixplJo,1198
|
|
54
54
|
maleo_identity/models/tables/organization_role.py,sha256=Vhg7IiZ58jWvQyfQBJdKCKSUSFb1xzKZg2uRK5jRZh8,1314
|
|
55
55
|
maleo_identity/models/tables/user.py,sha256=ml-SAMyokGq6ZT0jfzQvGN8COKUah_D_kLIf2msLoWc,1416
|
|
@@ -59,7 +59,7 @@ maleo_identity/models/tables/user_profile.py,sha256=ZIJnqvycAtTEjJ1wEdjSKzUyTbAB
|
|
|
59
59
|
maleo_identity/models/tables/user_system_role.py,sha256=2pnwifqEIIiKfXSwBaaXlfkIj13_oqJ4ZNGu9TMYGHo,944
|
|
60
60
|
maleo_identity/models/transfers/__init__.py,sha256=Ad-Z2MzjEA1pw2p2WR1QZeY99uX-bUUqUhlg9ARUY9Y,362
|
|
61
61
|
maleo_identity/models/transfers/general/__init__.py,sha256=zEASfoPYDlb7PADXLFevD6KVb6ZxWgCDXhc_40IgRjo,738
|
|
62
|
-
maleo_identity/models/transfers/general/organization.py,sha256=
|
|
62
|
+
maleo_identity/models/transfers/general/organization.py,sha256=N_MreWRI6sosVffYzRiTFdum_S6GwuP6BoDBuPUuzn8,1478
|
|
63
63
|
maleo_identity/models/transfers/general/organization_registration_code.py,sha256=a2no5mXjw1svph9im_I0QuIi7elf3Ena4Z6eoIcapEQ,913
|
|
64
64
|
maleo_identity/models/transfers/general/organization_role.py,sha256=kAlYwC0P9Pfg-gQVvZJjPjRqezqfhhQBQu7YeUAHOmw,897
|
|
65
65
|
maleo_identity/models/transfers/general/user.py,sha256=ZDvogoe8di6DTjR_5s5cB-w1e8W4GT23p6aVXT4rzMQ,1172
|
|
@@ -69,7 +69,7 @@ maleo_identity/models/transfers/general/user_profile.py,sha256=POAN_WSVj0tZo6h7W
|
|
|
69
69
|
maleo_identity/models/transfers/general/user_system_role.py,sha256=vSlZzv4EpBpGWjUQEz3rjrCUzFwsgU0J52r_deoOhkA,775
|
|
70
70
|
maleo_identity/models/transfers/parameters/__init__.py,sha256=ysazhGlRoT9kY_L_grODkvceAGeuCwIDcG7EVywwcOc,416
|
|
71
71
|
maleo_identity/models/transfers/parameters/client/__init__.py,sha256=j5WO_zsvrK3nkyJQdcPF8jhAZFCJ20bug17pkbKZ0C0,1153
|
|
72
|
-
maleo_identity/models/transfers/parameters/client/organization.py,sha256=
|
|
72
|
+
maleo_identity/models/transfers/parameters/client/organization.py,sha256=dKz7ruRMaKAKp_bVLx6vQDQx8QxXjHP44hdB3b9311o,3656
|
|
73
73
|
maleo_identity/models/transfers/parameters/client/organization_registration_code.py,sha256=QSG-90bKUNsmOKgXHuVZRw-AAfF-Qz47bfyu39dwjXc,977
|
|
74
74
|
maleo_identity/models/transfers/parameters/client/organization_role.py,sha256=OX0uj5ZbW3os5DN6qKpRq-soqmdTOLmObcxYVWtoVEg,1470
|
|
75
75
|
maleo_identity/models/transfers/parameters/client/user.py,sha256=FOhlOcZ5jz5Xfz31onxc5KTTlVNDvrjQIj5yADBFVZM,1882
|
|
@@ -87,7 +87,7 @@ maleo_identity/models/transfers/parameters/general/user_organization_role.py,sha
|
|
|
87
87
|
maleo_identity/models/transfers/parameters/general/user_profile.py,sha256=IXczeZU3SwfxgUv6BaWPM_pmOYRCNTVEwr8DrbTotaM,2151
|
|
88
88
|
maleo_identity/models/transfers/parameters/general/user_system_role.py,sha256=y3Mfrtiijjxug8LVhW1OVlegIhFkQxxjuSfkfkkM8eM,1189
|
|
89
89
|
maleo_identity/models/transfers/parameters/service/__init__.py,sha256=Qm31XrFfO60_XLAxOB3g2n56MCsYsD15eOekj9HJ_tE,1168
|
|
90
|
-
maleo_identity/models/transfers/parameters/service/organization.py,sha256=
|
|
90
|
+
maleo_identity/models/transfers/parameters/service/organization.py,sha256=uCC8GONieFZzt508ozkXGL0xGv259c0WfFgHqj4kIQk,3173
|
|
91
91
|
maleo_identity/models/transfers/parameters/service/organization_registration_code.py,sha256=UPDo2fHD7j0-O2bFzVQG2nuo--eRHLFi5dX1TeNQdsc,816
|
|
92
92
|
maleo_identity/models/transfers/parameters/service/organization_role.py,sha256=VTM2fT-CBMYYxBFJ2xg2P47aEAktKdTZel_1Njq3_fU,1207
|
|
93
93
|
maleo_identity/models/transfers/parameters/service/user.py,sha256=M87HPVRR3x-RaLDX1FaE7AMpHXwSOTUCn5-W5dMdkfY,1887
|
|
@@ -97,7 +97,7 @@ maleo_identity/models/transfers/parameters/service/user_profile.py,sha256=qMuFJZ
|
|
|
97
97
|
maleo_identity/models/transfers/parameters/service/user_system_role.py,sha256=CXno1c8B3Gz8-MUuFAy2njG0Y0TkAJSej2IVX_XA6TE,1292
|
|
98
98
|
maleo_identity/models/transfers/results/__init__.py,sha256=CPYBzQkPo_1sSL5OlkWydj_iJtrRceMPMVAfvVWFU6k,177
|
|
99
99
|
maleo_identity/models/transfers/results/client/__init__.py,sha256=Ue2IQSJqUtMgnot8zuidNdF23RB9_T6OhcV_9aDxz-o,1108
|
|
100
|
-
maleo_identity/models/transfers/results/client/organization.py,sha256=
|
|
100
|
+
maleo_identity/models/transfers/results/client/organization.py,sha256=peaxEpyRCSOA6-we_IRNufWAzkLINPgIHx1CEpoDB5s,1168
|
|
101
101
|
maleo_identity/models/transfers/results/client/organization_registration_code.py,sha256=_tsus796vmMJ60PeQmHonmKLrBwFj_6Myrco0TT10_I,888
|
|
102
102
|
maleo_identity/models/transfers/results/client/organization_role.py,sha256=YqMLypnLVnMF7LYGhFfZHzd3HbGL0xqhoqi9lium-J0,801
|
|
103
103
|
maleo_identity/models/transfers/results/client/user.py,sha256=-DQSxiRcE31wVSeZSha6v6sVLd8WcYJqtZuhdOnPnNI,1249
|
|
@@ -106,7 +106,7 @@ maleo_identity/models/transfers/results/client/user_organization_role.py,sha256=
|
|
|
106
106
|
maleo_identity/models/transfers/results/client/user_profile.py,sha256=8nQp2zSDpNgU1NF-ijXv5SWHplZB1ieWi044iQT5l3U,766
|
|
107
107
|
maleo_identity/models/transfers/results/client/user_system_role.py,sha256=ZCN65hEI6dTRe4xPpZEFFUQXI9wz_MRc0CthHMhMfDM,790
|
|
108
108
|
maleo_identity/models/transfers/results/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
-
maleo_identity/models/transfers/results/service/organization.py,sha256=
|
|
109
|
+
maleo_identity/models/transfers/results/service/organization.py,sha256=8JT7jinZUv6Qjkiu_VWyM1Uw9GwDBuJWLQKfmwCJ4qQ,1177
|
|
110
110
|
maleo_identity/models/transfers/results/service/organization_registration_code.py,sha256=7qhFKWBwl4aUpYZm9jG1iQTyxhCaauPu0Himm1P9QSA,895
|
|
111
111
|
maleo_identity/models/transfers/results/service/organization_role.py,sha256=T0gTxCHj6S9AytlmgwP2JTjgljNwi1BAAAsO5zRmwMo,808
|
|
112
112
|
maleo_identity/models/transfers/results/service/user.py,sha256=eeYNeSFtKtQXtbDFJteUPQvdB718I4wE5Pl7wYTZwlQ,1264
|
|
@@ -117,7 +117,7 @@ maleo_identity/models/transfers/results/service/user_system_role.py,sha256=NSjM0
|
|
|
117
117
|
maleo_identity/types/__init__.py,sha256=U6YJOUefzuJjISnFXE6j7gzQvrZEAHboW3t8Ezgty94,148
|
|
118
118
|
maleo_identity/types/results/__init__.py,sha256=LZbJEa8o9BosqB8XlEKcukr9UVk5EwfdCafL2L2tZd0,165
|
|
119
119
|
maleo_identity/types/results/client/__init__.py,sha256=32xGwg-HBi1qJW2RxdTMbGuNKhVT7QAg6RMXE9rKWJ0,1048
|
|
120
|
-
maleo_identity/types/results/client/organization.py,sha256=
|
|
120
|
+
maleo_identity/types/results/client/organization.py,sha256=5zWI8Z7gpJrmNzmKmdQFPdg6S9CUgf-hIIcmvydAj-E,1181
|
|
121
121
|
maleo_identity/types/results/client/organization_registration_code.py,sha256=GKms4MmjwpeJyanf4OwjyfW6KgMEFVBnfTvCI1LFMS0,905
|
|
122
122
|
maleo_identity/types/results/client/organization_role.py,sha256=Z3bQaOyqOxtZtHNNlikVVadbwIcuosSKwy0R1BdrQf4,614
|
|
123
123
|
maleo_identity/types/results/client/user.py,sha256=yYqArDqsyFQ-XpT2GEO_c9F4mMUGvXTjxnrYmSs6qoQ,970
|
|
@@ -126,7 +126,7 @@ maleo_identity/types/results/client/user_organization_role.py,sha256=dXu_UEyXPPn
|
|
|
126
126
|
maleo_identity/types/results/client/user_profile.py,sha256=rg2W3hRTySy5SfXDDqH0kCZuZ8-Tx8zWJzAZaObcb8o,736
|
|
127
127
|
maleo_identity/types/results/client/user_system_role.py,sha256=4XuSXCrSdb-VHDdFosdO-KdGFK8cr9T3KmshJ0yfzkI,759
|
|
128
128
|
maleo_identity/types/results/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
-
maleo_identity/types/results/service/organization.py,sha256=
|
|
129
|
+
maleo_identity/types/results/service/organization.py,sha256=vyOpJ7wLGet2FLBWcYY4unraY92-JQa6Jyl6CfqvJrI,1328
|
|
130
130
|
maleo_identity/types/results/service/organization_registration_code.py,sha256=pTq9l0lcP_zKqY_Z5uIlgwWZvRBDYUxBrx2fiKojHvs,1004
|
|
131
131
|
maleo_identity/types/results/service/organization_role.py,sha256=uvLAN9HWV0wYT-KdVWU7aK2RSavAHL9CQjFkqgNegfw,691
|
|
132
132
|
maleo_identity/types/results/service/user.py,sha256=pXSfN3V6rB3pFdIzh4g_GWFs9ZSd0YPc6TrIVXuMmU4,1041
|
|
@@ -134,7 +134,7 @@ maleo_identity/types/results/service/user_organization.py,sha256=hMVzRiKbv5yM8yr
|
|
|
134
134
|
maleo_identity/types/results/service/user_organization_role.py,sha256=gtgwB8ZlQR-Zs477kCNmcZ9TKRG-QmZhqTALiIdxt5I,728
|
|
135
135
|
maleo_identity/types/results/service/user_profile.py,sha256=6pAAAdm6bCvqBq2DjlSKJ59TpKvJsRgNt1wdFwWyWLs,810
|
|
136
136
|
maleo_identity/types/results/service/user_system_role.py,sha256=Cu_NvzAjv0iS7mGxGbjyx3eNixb0TXVjmDPDlcUqZ3Q,836
|
|
137
|
-
maleo_identity-0.0.
|
|
138
|
-
maleo_identity-0.0.
|
|
139
|
-
maleo_identity-0.0.
|
|
140
|
-
maleo_identity-0.0.
|
|
137
|
+
maleo_identity-0.0.75.dist-info/METADATA,sha256=8kktBjnKGY07lowFY7NxES13YfGJEbJogf96NvN3Sjs,868
|
|
138
|
+
maleo_identity-0.0.75.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
139
|
+
maleo_identity-0.0.75.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
140
|
+
maleo_identity-0.0.75.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|