maleo-identity 0.0.75__py3-none-any.whl → 0.0.76__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-0.0.75.dist-info → maleo_identity-0.0.76.dist-info}/METADATA +3 -3
- maleo_identity-0.0.76.dist-info/RECORD +4 -0
- maleo_identity-0.0.76.dist-info/top_level.txt +1 -0
- maleo_identity/__init__.py +0 -0
- maleo_identity/client/__init__.py +0 -0
- maleo_identity/client/controllers/__init__.py +0 -17
- maleo_identity/client/controllers/http/__init__.py +0 -0
- maleo_identity/client/controllers/http/organization.py +0 -647
- maleo_identity/client/controllers/http/user.py +0 -541
- maleo_identity/client/manager.py +0 -77
- maleo_identity/client/services/__init__.py +0 -11
- maleo_identity/client/services/organization.py +0 -968
- maleo_identity/client/services/user.py +0 -817
- maleo_identity/constants/__init__.py +0 -17
- maleo_identity/constants/organization.py +0 -13
- maleo_identity/constants/organization_registration_code.py +0 -14
- maleo_identity/constants/organization_role.py +0 -22
- maleo_identity/constants/user.py +0 -27
- maleo_identity/constants/user_organization.py +0 -46
- maleo_identity/constants/user_organization_role.py +0 -35
- maleo_identity/constants/user_profile.py +0 -20
- maleo_identity/constants/user_system_role.py +0 -9
- maleo_identity/db.py +0 -6
- maleo_identity/enums/__init__.py +0 -19
- maleo_identity/enums/general.py +0 -5
- maleo_identity/enums/organization.py +0 -11
- maleo_identity/enums/organization_registration_code.py +0 -8
- maleo_identity/enums/organization_role.py +0 -7
- maleo_identity/enums/user.py +0 -16
- maleo_identity/enums/user_organization.py +0 -14
- maleo_identity/enums/user_organization_role.py +0 -15
- maleo_identity/enums/user_profile.py +0 -15
- maleo_identity/enums/user_system_role.py +0 -5
- maleo_identity/models/__init__.py +0 -11
- maleo_identity/models/responses/__init__.py +0 -17
- maleo_identity/models/responses/organization.py +0 -58
- maleo_identity/models/responses/organization_registration_code.py +0 -46
- maleo_identity/models/responses/organization_role.py +0 -25
- maleo_identity/models/responses/user.py +0 -68
- maleo_identity/models/responses/user_organization.py +0 -25
- maleo_identity/models/responses/user_organization_role.py +0 -25
- maleo_identity/models/responses/user_profile.py +0 -46
- maleo_identity/models/responses/user_system_role.py +0 -25
- maleo_identity/models/schemas/__init__.py +0 -19
- maleo_identity/models/schemas/general.py +0 -18
- maleo_identity/models/schemas/organization.py +0 -25
- maleo_identity/models/schemas/organization_registration_code.py +0 -21
- maleo_identity/models/schemas/organization_role.py +0 -15
- maleo_identity/models/schemas/user.py +0 -44
- maleo_identity/models/schemas/user_organization.py +0 -8
- maleo_identity/models/schemas/user_organization_role.py +0 -15
- maleo_identity/models/schemas/user_profile.py +0 -57
- maleo_identity/models/schemas/user_system_role.py +0 -8
- maleo_identity/models/tables/__init__.py +0 -19
- maleo_identity/models/tables/organization.py +0 -58
- maleo_identity/models/tables/organization_registration_code.py +0 -37
- maleo_identity/models/tables/organization_role.py +0 -43
- maleo_identity/models/tables/user.py +0 -43
- maleo_identity/models/tables/user_organization.py +0 -58
- maleo_identity/models/tables/user_organization_role.py +0 -69
- maleo_identity/models/tables/user_profile.py +0 -31
- maleo_identity/models/tables/user_system_role.py +0 -24
- maleo_identity/models/transfers/__init__.py +0 -9
- maleo_identity/models/transfers/general/__init__.py +0 -17
- maleo_identity/models/transfers/general/organization.py +0 -31
- maleo_identity/models/transfers/general/organization_registration_code.py +0 -19
- maleo_identity/models/transfers/general/organization_role.py +0 -20
- maleo_identity/models/transfers/general/user.py +0 -28
- maleo_identity/models/transfers/general/user_organization.py +0 -18
- maleo_identity/models/transfers/general/user_organization_role.py +0 -19
- maleo_identity/models/transfers/general/user_profile.py +0 -32
- maleo_identity/models/transfers/general/user_system_role.py +0 -17
- maleo_identity/models/transfers/parameters/__init__.py +0 -9
- maleo_identity/models/transfers/parameters/client/__init__.py +0 -17
- maleo_identity/models/transfers/parameters/client/organization.py +0 -77
- maleo_identity/models/transfers/parameters/client/organization_registration_code.py +0 -24
- maleo_identity/models/transfers/parameters/client/organization_role.py +0 -33
- maleo_identity/models/transfers/parameters/client/user.py +0 -34
- maleo_identity/models/transfers/parameters/client/user_organization.py +0 -45
- maleo_identity/models/transfers/parameters/client/user_organization_role.py +0 -36
- maleo_identity/models/transfers/parameters/client/user_profile.py +0 -23
- maleo_identity/models/transfers/parameters/client/user_system_role.py +0 -33
- maleo_identity/models/transfers/parameters/general/__init__.py +0 -17
- maleo_identity/models/transfers/parameters/general/organization.py +0 -35
- maleo_identity/models/transfers/parameters/general/organization_registration_code.py +0 -33
- maleo_identity/models/transfers/parameters/general/organization_role.py +0 -17
- maleo_identity/models/transfers/parameters/general/user.py +0 -77
- maleo_identity/models/transfers/parameters/general/user_organization.py +0 -31
- maleo_identity/models/transfers/parameters/general/user_organization_role.py +0 -18
- maleo_identity/models/transfers/parameters/general/user_profile.py +0 -55
- maleo_identity/models/transfers/parameters/general/user_system_role.py +0 -29
- maleo_identity/models/transfers/parameters/service/__init__.py +0 -17
- maleo_identity/models/transfers/parameters/service/organization.py +0 -66
- maleo_identity/models/transfers/parameters/service/organization_registration_code.py +0 -19
- maleo_identity/models/transfers/parameters/service/organization_role.py +0 -26
- maleo_identity/models/transfers/parameters/service/user.py +0 -34
- maleo_identity/models/transfers/parameters/service/user_organization.py +0 -31
- maleo_identity/models/transfers/parameters/service/user_organization_role.py +0 -28
- maleo_identity/models/transfers/parameters/service/user_profile.py +0 -23
- maleo_identity/models/transfers/parameters/service/user_system_role.py +0 -26
- maleo_identity/models/transfers/results/__init__.py +0 -5
- maleo_identity/models/transfers/results/client/__init__.py +0 -17
- maleo_identity/models/transfers/results/client/organization.py +0 -21
- maleo_identity/models/transfers/results/client/organization_registration_code.py +0 -15
- maleo_identity/models/transfers/results/client/organization_role.py +0 -15
- maleo_identity/models/transfers/results/client/user.py +0 -24
- maleo_identity/models/transfers/results/client/user_organization.py +0 -15
- maleo_identity/models/transfers/results/client/user_organization_role.py +0 -15
- maleo_identity/models/transfers/results/client/user_profile.py +0 -15
- maleo_identity/models/transfers/results/client/user_system_role.py +0 -15
- maleo_identity/models/transfers/results/service/__init__.py +0 -0
- maleo_identity/models/transfers/results/service/organization.py +0 -21
- maleo_identity/models/transfers/results/service/organization_registration_code.py +0 -15
- maleo_identity/models/transfers/results/service/organization_role.py +0 -15
- maleo_identity/models/transfers/results/service/user.py +0 -24
- maleo_identity/models/transfers/results/service/user_organization.py +0 -15
- maleo_identity/models/transfers/results/service/user_organization_role.py +0 -15
- maleo_identity/models/transfers/results/service/user_profile.py +0 -15
- maleo_identity/models/transfers/results/service/user_system_role.py +0 -15
- maleo_identity/types/__init__.py +0 -5
- maleo_identity/types/results/__init__.py +0 -5
- maleo_identity/types/results/client/__init__.py +0 -17
- maleo_identity/types/results/client/organization.py +0 -30
- maleo_identity/types/results/client/organization_registration_code.py +0 -20
- maleo_identity/types/results/client/organization_role.py +0 -14
- maleo_identity/types/results/client/user.py +0 -29
- maleo_identity/types/results/client/user_organization.py +0 -19
- maleo_identity/types/results/client/user_organization_role.py +0 -14
- maleo_identity/types/results/client/user_profile.py +0 -19
- maleo_identity/types/results/client/user_system_role.py +0 -19
- maleo_identity/types/results/service/__init__.py +0 -0
- maleo_identity/types/results/service/organization.py +0 -32
- maleo_identity/types/results/service/organization_registration_code.py +0 -21
- maleo_identity/types/results/service/organization_role.py +0 -15
- maleo_identity/types/results/service/user.py +0 -30
- maleo_identity/types/results/service/user_organization.py +0 -20
- maleo_identity/types/results/service/user_organization_role.py +0 -15
- maleo_identity/types/results/service/user_profile.py +0 -20
- maleo_identity/types/results/service/user_system_role.py +0 -20
- maleo_identity-0.0.75.dist-info/RECORD +0 -140
- maleo_identity-0.0.75.dist-info/top_level.txt +0 -1
- {maleo_identity-0.0.75.dist-info → maleo_identity-0.0.76.dist-info}/WHEEL +0 -0
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.organization_type import MaleoMetadataOrganizationTypeExpandedSchemas
|
|
4
|
-
from maleo_identity.models.schemas.organization import MaleoIdentityOrganizationSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationGeneralParametersTransfers:
|
|
7
|
-
class GetSingleQuery(
|
|
8
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
9
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class GetSingle(
|
|
13
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
14
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
15
|
-
BaseParameterSchemas.IdentifierValue,
|
|
16
|
-
MaleoIdentityOrganizationSchemas.IdentifierType
|
|
17
|
-
): pass
|
|
18
|
-
|
|
19
|
-
class CreateOrUpdateQuery(MaleoIdentityOrganizationSchemas.Expand): pass
|
|
20
|
-
|
|
21
|
-
class CreateOrUpdateData(
|
|
22
|
-
MaleoIdentityOrganizationSchemas.Name,
|
|
23
|
-
MaleoIdentityOrganizationSchemas.Key,
|
|
24
|
-
MaleoIdentityOrganizationSchemas.OptionalParentId,
|
|
25
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.SimpleOrganizationType
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class Create(CreateOrUpdateData, CreateOrUpdateQuery): pass
|
|
29
|
-
|
|
30
|
-
class Update(
|
|
31
|
-
CreateOrUpdateData,
|
|
32
|
-
CreateOrUpdateQuery,
|
|
33
|
-
BaseParameterSchemas.IdentifierValue,
|
|
34
|
-
MaleoIdentityOrganizationSchemas.IdentifierType
|
|
35
|
-
): pass
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.general import BaseGeneralParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.organization_registration_code import MaleoIdentityOrganizationRegistrationCodeSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityOrganizationRegistrationCodeGeneralParametersTransfers:
|
|
8
|
-
class GetSingleQuery(BaseGeneralParametersTransfers.GetSingleQuery): pass
|
|
9
|
-
|
|
10
|
-
class GetSingle(
|
|
11
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
12
|
-
BaseParameterSchemas.IdentifierValue,
|
|
13
|
-
MaleoIdentityOrganizationRegistrationCodeSchemas.IdentifierType
|
|
14
|
-
): pass
|
|
15
|
-
|
|
16
|
-
class CreateFromOrganizationData(
|
|
17
|
-
MaleoIdentityOrganizationRegistrationCodeSchemas.MaxUses
|
|
18
|
-
): pass
|
|
19
|
-
|
|
20
|
-
class CreateData(
|
|
21
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
22
|
-
MaleoIdentityOrganizationRegistrationCodeSchemas.MaxUses
|
|
23
|
-
): pass
|
|
24
|
-
|
|
25
|
-
class Create(CreateData): pass
|
|
26
|
-
|
|
27
|
-
class UpdateData(MaleoIdentityOrganizationRegistrationCodeSchemas.MaxUses): pass
|
|
28
|
-
|
|
29
|
-
class Update(
|
|
30
|
-
UpdateData,
|
|
31
|
-
BaseParameterSchemas.IdentifierValue,
|
|
32
|
-
MaleoIdentityOrganizationRegistrationCodeSchemas.IdentifierType
|
|
33
|
-
): pass
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
4
|
-
from maleo_identity.models.schemas.organization_role import MaleoIdentityOrganizationRoleSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRoleGeneralParametersTransfers:
|
|
7
|
-
class GetSingleQuery(
|
|
8
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
9
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class GetSingle(
|
|
13
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
14
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
15
|
-
MaleoIdentityOrganizationRoleSchemas.Key,
|
|
16
|
-
MaleoIdentityGeneralSchemas.OrganizationId
|
|
17
|
-
): pass
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.blood_type import MaleoMetadataBloodTypeExpandedSchemas
|
|
4
|
-
from maleo_metadata.models.expanded_schemas.gender import MaleoMetadataGenderExpandedSchemas
|
|
5
|
-
from maleo_metadata.models.expanded_schemas.user_type import MaleoMetadataUserTypeExpandedSchemas
|
|
6
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
7
|
-
from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
|
|
8
|
-
from maleo_identity.models.schemas.user_profile import MaleoIdentityUserProfileSchemas
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityUserGeneralParametersTransfers:
|
|
11
|
-
class GetSingleQuery(
|
|
12
|
-
MaleoIdentityUserSchemas.Expand,
|
|
13
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
14
|
-
): pass
|
|
15
|
-
|
|
16
|
-
class BaseGetSingle(
|
|
17
|
-
BaseParameterSchemas.IdentifierValue,
|
|
18
|
-
MaleoIdentityUserSchemas.IdentifierType
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class GetSinglePassword(BaseGetSingle): pass
|
|
22
|
-
|
|
23
|
-
class GetSingle(
|
|
24
|
-
MaleoIdentityUserSchemas.Expand,
|
|
25
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
26
|
-
BaseGetSingle
|
|
27
|
-
): pass
|
|
28
|
-
|
|
29
|
-
class CreateOrUpdateQuery(MaleoIdentityUserSchemas.Expand): pass
|
|
30
|
-
|
|
31
|
-
class UpdateData(
|
|
32
|
-
MaleoIdentityUserSchemas.Phone,
|
|
33
|
-
MaleoIdentityUserSchemas.Email,
|
|
34
|
-
MaleoIdentityUserSchemas.Username
|
|
35
|
-
): pass
|
|
36
|
-
|
|
37
|
-
class CreateData(
|
|
38
|
-
MaleoIdentityUserSchemas.Password,
|
|
39
|
-
UpdateData,
|
|
40
|
-
MaleoMetadataUserTypeExpandedSchemas.SimpleUserType,
|
|
41
|
-
MaleoIdentityGeneralSchemas.OptionalOrganizationId
|
|
42
|
-
): pass
|
|
43
|
-
|
|
44
|
-
class Update(
|
|
45
|
-
CreateOrUpdateQuery,
|
|
46
|
-
UpdateData,
|
|
47
|
-
BaseParameterSchemas.IdentifierValue,
|
|
48
|
-
MaleoIdentityUserSchemas.IdentifierType
|
|
49
|
-
): pass
|
|
50
|
-
|
|
51
|
-
class Create(
|
|
52
|
-
CreateOrUpdateQuery,
|
|
53
|
-
CreateData
|
|
54
|
-
): pass
|
|
55
|
-
|
|
56
|
-
class Register(
|
|
57
|
-
CreateOrUpdateQuery,
|
|
58
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatarName,
|
|
59
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatarContentType,
|
|
60
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatar,
|
|
61
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalSimpleBloodType,
|
|
62
|
-
MaleoMetadataGenderExpandedSchemas.OptionalSimpleGender,
|
|
63
|
-
MaleoIdentityUserProfileSchemas.BirthDate,
|
|
64
|
-
MaleoIdentityUserProfileSchemas.BirthPlace,
|
|
65
|
-
MaleoIdentityUserProfileSchemas.EndingTitle,
|
|
66
|
-
MaleoIdentityUserProfileSchemas.LastName,
|
|
67
|
-
MaleoIdentityUserProfileSchemas.MiddleName,
|
|
68
|
-
MaleoIdentityUserProfileSchemas.FirstName,
|
|
69
|
-
MaleoIdentityUserProfileSchemas.LeadingTitle,
|
|
70
|
-
MaleoIdentityUserProfileSchemas.OptionalIdCard,
|
|
71
|
-
MaleoIdentityUserSchemas.PasswordConfirmation,
|
|
72
|
-
MaleoIdentityUserSchemas.Password,
|
|
73
|
-
MaleoIdentityUserSchemas.Phone,
|
|
74
|
-
MaleoIdentityUserSchemas.Email,
|
|
75
|
-
MaleoIdentityUserSchemas.Username,
|
|
76
|
-
MaleoIdentityUserSchemas.RegistrationCode
|
|
77
|
-
): pass
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
4
|
-
from maleo_identity.models.schemas.user_organization import MaleoIdentityUserOrganizationSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationGeneralParametersTransfers:
|
|
7
|
-
class GetSingleQuery(
|
|
8
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
9
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class GetSingle(
|
|
13
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
14
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
15
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
16
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
17
|
-
): pass
|
|
18
|
-
|
|
19
|
-
class AssignQuery(
|
|
20
|
-
MaleoIdentityUserOrganizationSchemas.Expand
|
|
21
|
-
): pass
|
|
22
|
-
|
|
23
|
-
class AssignData(
|
|
24
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
25
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class Assign(
|
|
29
|
-
AssignData,
|
|
30
|
-
AssignQuery
|
|
31
|
-
): pass
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
4
|
-
from maleo_identity.models.schemas.user_organization_role import MaleoIdentityUserOrganizationRoleSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationRoleGeneralParametersTransfers:
|
|
7
|
-
class GetSingleQuery(
|
|
8
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
9
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class GetSingle(
|
|
13
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
14
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
15
|
-
MaleoIdentityUserOrganizationRoleSchemas.Key,
|
|
16
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
17
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
18
|
-
): pass
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.blood_type import MaleoMetadataBloodTypeExpandedSchemas
|
|
4
|
-
from maleo_metadata.models.expanded_schemas.gender import MaleoMetadataGenderExpandedSchemas
|
|
5
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
6
|
-
from maleo_identity.models.schemas.user_profile import MaleoIdentityUserProfileSchemas
|
|
7
|
-
|
|
8
|
-
class MaleoIdentityUserProfileGeneralParametersTransfers:
|
|
9
|
-
class GetSingleQuery(
|
|
10
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
11
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
12
|
-
): pass
|
|
13
|
-
|
|
14
|
-
class GetSingle(
|
|
15
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
16
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
17
|
-
BaseParameterSchemas.IdentifierValue,
|
|
18
|
-
MaleoIdentityUserProfileSchemas.IdentifierType
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class CreateOrUpdateQuery(MaleoIdentityUserProfileSchemas.Expand): pass
|
|
22
|
-
|
|
23
|
-
class AvatarData(
|
|
24
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatarContentType,
|
|
25
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatar
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class CreateOrUpdateData(
|
|
29
|
-
MaleoIdentityUserProfileSchemas.OptionalAvatarName,
|
|
30
|
-
MaleoMetadataGenderExpandedSchemas.OptionalSimpleGender,
|
|
31
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalSimpleBloodType,
|
|
32
|
-
MaleoIdentityUserProfileSchemas.BirthDate,
|
|
33
|
-
MaleoIdentityUserProfileSchemas.BirthPlace,
|
|
34
|
-
MaleoIdentityUserProfileSchemas.EndingTitle,
|
|
35
|
-
MaleoIdentityUserProfileSchemas.LastName,
|
|
36
|
-
MaleoIdentityUserProfileSchemas.MiddleName,
|
|
37
|
-
MaleoIdentityUserProfileSchemas.FirstName,
|
|
38
|
-
MaleoIdentityUserProfileSchemas.LeadingTitle,
|
|
39
|
-
MaleoIdentityUserProfileSchemas.OptionalIdCard,
|
|
40
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
41
|
-
): pass
|
|
42
|
-
|
|
43
|
-
class Create(
|
|
44
|
-
AvatarData,
|
|
45
|
-
CreateOrUpdateData,
|
|
46
|
-
CreateOrUpdateQuery
|
|
47
|
-
): pass
|
|
48
|
-
|
|
49
|
-
class Update(
|
|
50
|
-
AvatarData,
|
|
51
|
-
CreateOrUpdateData,
|
|
52
|
-
CreateOrUpdateQuery,
|
|
53
|
-
BaseParameterSchemas.IdentifierValue,
|
|
54
|
-
MaleoIdentityUserProfileSchemas.IdentifierType
|
|
55
|
-
): pass
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.system_role import MaleoMetadataSystemRoleExpandedSchemas
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.user_system_role import MaleoIdentityUserSystemRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityUserSystemRoleGeneralParametersTransfers:
|
|
8
|
-
class GetSingleQuery(
|
|
9
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
10
|
-
BaseParameterSchemas.OptionalListOfStatuses
|
|
11
|
-
): pass
|
|
12
|
-
|
|
13
|
-
class GetSingle(
|
|
14
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
15
|
-
BaseParameterSchemas.OptionalListOfStatuses,
|
|
16
|
-
MaleoMetadataSystemRoleExpandedSchemas.SimpleSystemRole,
|
|
17
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
18
|
-
): pass
|
|
19
|
-
|
|
20
|
-
class AssignQuery(MaleoIdentityUserSystemRoleSchemas.Expand): pass
|
|
21
|
-
|
|
22
|
-
class AssignFromUserBody(MaleoMetadataSystemRoleExpandedSchemas.SimpleSystemRole): pass
|
|
23
|
-
|
|
24
|
-
class AssignData(
|
|
25
|
-
MaleoMetadataSystemRoleExpandedSchemas.SimpleSystemRole,
|
|
26
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
27
|
-
): pass
|
|
28
|
-
|
|
29
|
-
class Assign(AssignData, AssignQuery): pass
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleServiceParametersTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationServiceParametersTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleServiceParametersTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationServiceParametersTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileServiceParametersTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleServiceParametersTransfers
|
|
8
|
-
from .user import MaleoIdentityUserServiceParametersTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityServiceParametersTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleServiceParametersTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationServiceParametersTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleServiceParametersTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationServiceParametersTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileServiceParametersTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleServiceParametersTransfers
|
|
17
|
-
User = MaleoIdentityUserServiceParametersTransfers
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.general import BaseGeneralSchemas
|
|
3
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
4
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
5
|
-
from maleo_metadata.models.expanded_schemas.organization_type import MaleoMetadataOrganizationTypeExpandedSchemas
|
|
6
|
-
from maleo_identity.models.schemas.organization import MaleoIdentityOrganizationSchemas
|
|
7
|
-
|
|
8
|
-
class MaleoIdentityOrganizationServiceParametersTransfers:
|
|
9
|
-
class GetMultipleChildrenQuery(
|
|
10
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
11
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
12
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
13
|
-
BaseGeneralSchemas.IsLeaf,
|
|
14
|
-
BaseGeneralSchemas.IsParent,
|
|
15
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
16
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
17
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
18
|
-
): pass
|
|
19
|
-
|
|
20
|
-
class GetMultipleQuery(
|
|
21
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
22
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
23
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
24
|
-
BaseGeneralSchemas.IsLeaf,
|
|
25
|
-
BaseGeneralSchemas.IsChild,
|
|
26
|
-
BaseGeneralSchemas.IsParent,
|
|
27
|
-
BaseGeneralSchemas.IsRoot,
|
|
28
|
-
MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
29
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
30
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
31
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
32
|
-
): pass
|
|
33
|
-
|
|
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
|
-
|
|
44
|
-
class GetMultiple(
|
|
45
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
46
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
47
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
48
|
-
BaseGeneralSchemas.IsLeaf,
|
|
49
|
-
BaseGeneralSchemas.IsChild,
|
|
50
|
-
BaseGeneralSchemas.IsParent,
|
|
51
|
-
BaseGeneralSchemas.IsRoot,
|
|
52
|
-
MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
53
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
54
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
55
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
56
|
-
): pass
|
|
57
|
-
|
|
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,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRegistrationCodeServiceParametersTransfers:
|
|
7
|
-
class GetMultipleFromOrganizationQuery(
|
|
8
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class GetMultipleQuery(
|
|
12
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
13
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
14
|
-
): pass
|
|
15
|
-
|
|
16
|
-
class GetMultiple(
|
|
17
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
18
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
19
|
-
): pass
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.organization_role import MaleoIdentityOrganizationRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityOrganizationRoleServiceParametersTransfers:
|
|
8
|
-
class GetMultipleFromOrganizationQuery(
|
|
9
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
10
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
11
|
-
BaseParameterSchemas.OptionalListOfKeys
|
|
12
|
-
): pass
|
|
13
|
-
|
|
14
|
-
class GetMultipleQuery(
|
|
15
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
16
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
17
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
18
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class GetMultiple(
|
|
22
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
23
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
24
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
25
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
26
|
-
): pass
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
4
|
-
from maleo_metadata.models.expanded_schemas.user_type import MaleoMetadataUserTypeExpandedSchemas
|
|
5
|
-
from maleo_metadata.models.expanded_schemas.blood_type import MaleoMetadataBloodTypeExpandedSchemas
|
|
6
|
-
from maleo_metadata.models.expanded_schemas.gender import MaleoMetadataGenderExpandedSchemas
|
|
7
|
-
from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
|
|
8
|
-
|
|
9
|
-
class MaleoIdentityUserServiceParametersTransfers:
|
|
10
|
-
class GetMultipleQuery(
|
|
11
|
-
MaleoIdentityUserSchemas.Expand,
|
|
12
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
13
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
14
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
15
|
-
MaleoIdentityUserSchemas.OptionalListOfPhones,
|
|
16
|
-
MaleoIdentityUserSchemas.OptionalListOfEmails,
|
|
17
|
-
MaleoIdentityUserSchemas.OptionalListOfUsernames,
|
|
18
|
-
MaleoMetadataUserTypeExpandedSchemas.OptionalListOfSimpleUserTypes,
|
|
19
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
20
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
21
|
-
): pass
|
|
22
|
-
|
|
23
|
-
class GetMultiple(
|
|
24
|
-
MaleoIdentityUserSchemas.Expand,
|
|
25
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
26
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
27
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
28
|
-
MaleoIdentityUserSchemas.OptionalListOfPhones,
|
|
29
|
-
MaleoIdentityUserSchemas.OptionalListOfEmails,
|
|
30
|
-
MaleoIdentityUserSchemas.OptionalListOfUsernames,
|
|
31
|
-
MaleoMetadataUserTypeExpandedSchemas.OptionalListOfSimpleUserTypes,
|
|
32
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
33
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
34
|
-
): pass
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
3
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
4
|
-
from maleo_identity.models.schemas.user_organization import MaleoIdentityUserOrganizationSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationServiceParametersTransfers:
|
|
7
|
-
class GetMultipleFromUserQuery(
|
|
8
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
9
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
10
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
11
|
-
): pass
|
|
12
|
-
|
|
13
|
-
class GetMultipleFromOrganizationQuery(
|
|
14
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
15
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
16
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
17
|
-
): pass
|
|
18
|
-
|
|
19
|
-
class GetMultipleQuery(
|
|
20
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
21
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
22
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
23
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
24
|
-
): pass
|
|
25
|
-
|
|
26
|
-
class GetMultiple(
|
|
27
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
28
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
29
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
30
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
31
|
-
): pass
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.user_organization_role import MaleoIdentityUserOrganizationRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityUserOrganizationRoleServiceParametersTransfers:
|
|
8
|
-
class GetMultipleFromUserOrOrganizationQuery(
|
|
9
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
10
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
11
|
-
BaseParameterSchemas.OptionalListOfKeys
|
|
12
|
-
): pass
|
|
13
|
-
|
|
14
|
-
class GetMultipleQuery(
|
|
15
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
16
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
17
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
18
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
19
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
20
|
-
): pass
|
|
21
|
-
|
|
22
|
-
class GetMultiple(
|
|
23
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
24
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
25
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
26
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
27
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
28
|
-
): pass
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.blood_type import MaleoMetadataBloodTypeExpandedSchemas
|
|
4
|
-
from maleo_metadata.models.expanded_schemas.gender import MaleoMetadataGenderExpandedSchemas
|
|
5
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
6
|
-
from maleo_identity.models.schemas.user_profile import MaleoIdentityUserProfileSchemas
|
|
7
|
-
|
|
8
|
-
class MaleoIdentityUserProfileServiceParametersTransfers:
|
|
9
|
-
class GetMultipleQuery(
|
|
10
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
11
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
12
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
13
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
14
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
15
|
-
): pass
|
|
16
|
-
|
|
17
|
-
class GetMultiple(
|
|
18
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
19
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
20
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
21
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
22
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
23
|
-
): pass
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.service import BaseServiceParametersTransfers
|
|
3
|
-
from maleo_metadata.models.expanded_schemas.system_role import MaleoMetadataSystemRoleExpandedSchemas
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.user_system_role import MaleoIdentityUserSystemRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityUserSystemRoleServiceParametersTransfers:
|
|
8
|
-
class GetMultipleFromUserQuery(
|
|
9
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
10
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
11
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles
|
|
12
|
-
): pass
|
|
13
|
-
|
|
14
|
-
class GetMultipleQuery(
|
|
15
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
16
|
-
BaseServiceParametersTransfers.GetPaginatedMultipleQuery,
|
|
17
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles,
|
|
18
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class GetMultiple(
|
|
22
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
23
|
-
BaseServiceParametersTransfers.GetPaginatedMultiple,
|
|
24
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles,
|
|
25
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
26
|
-
): pass
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleClientResultsTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationClientResultsTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleClientResultsTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationClientResultsTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileClientResultsTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleClientResultsTransfers
|
|
8
|
-
from .user import MaleoIdentityUserClientResultsTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityClientResultsTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleClientResultsTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationClientResultsTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleClientResultsTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationClientResultsTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileClientResultsTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleClientResultsTransfers
|
|
17
|
-
User = MaleoIdentityUserClientResultsTransfers
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from pydantic import Field
|
|
3
|
-
from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization import OrganizationTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationClientResultsTransfers:
|
|
7
|
-
class Fail(BaseClientServiceResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseClientServiceResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseClientServiceResultsTransfers.SingleData):
|
|
12
|
-
data:OrganizationTransfers = Field(..., description="Single organization data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
15
|
-
data:list[OrganizationTransfers] = Field(..., description="Multiple organizations data")
|
|
16
|
-
|
|
17
|
-
# class SingleStructured(BaseClientServiceResultsTransfers.SingleData):
|
|
18
|
-
# data:StructuredOrganizationTransfers = Field(..., description="Single structured organization data")
|
|
19
|
-
|
|
20
|
-
# class MultipleStructured(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
21
|
-
# data:list[StructuredOrganizationTransfers] = Field(..., description="Multiple structured organizations data")
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from pydantic import Field
|
|
3
|
-
from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization_registration_code import OrganizationRegistrationCodeTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers:
|
|
7
|
-
class Fail(BaseClientServiceResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseClientServiceResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseClientServiceResultsTransfers.SingleData):
|
|
12
|
-
data:OrganizationRegistrationCodeTransfers = Field(..., description="Single organization registration code data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
|
|
15
|
-
data:list[OrganizationRegistrationCodeTransfers] = Field(..., description="Multiple organization registration codes data")
|