maleo-identity 0.0.75__py3-none-any.whl → 0.0.77__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/manager.py +157 -0
- maleo/identity/client/services/organization.py +1944 -0
- maleo/identity/client/services/organization_registration_code.py +470 -0
- maleo/identity/client/services/organization_role.py +276 -0
- maleo/identity/client/services/user.py +1559 -0
- maleo/identity/client/services/user_organization.py +276 -0
- maleo/identity/client/services/user_organization_role.py +278 -0
- maleo/identity/client/services/user_profile.py +276 -0
- maleo/identity/client/services/user_system_role.py +276 -0
- maleo/identity/constants/organization.py +18 -0
- maleo/identity/constants/organization_registration_code.py +25 -0
- maleo/identity/constants/organization_role.py +35 -0
- maleo/identity/constants/user.py +24 -0
- maleo/identity/constants/user_organization.py +58 -0
- maleo/identity/constants/user_organization_role.py +47 -0
- maleo/identity/constants/user_profile.py +26 -0
- maleo/identity/constants/user_system_role.py +16 -0
- maleo/identity/db.py +4 -0
- maleo/identity/dtos/organization_registration_code.py +12 -0
- maleo/identity/enums/__init__.py +0 -0
- maleo/identity/enums/general.py +5 -0
- maleo/identity/enums/organization.py +12 -0
- maleo/identity/enums/organization_registration_code.py +8 -0
- maleo/identity/enums/organization_role.py +7 -0
- maleo/identity/enums/user.py +17 -0
- maleo/identity/enums/user_organization.py +14 -0
- maleo/identity/enums/user_organization_role.py +15 -0
- maleo/identity/enums/user_profile.py +17 -0
- maleo/identity/enums/user_system_role.py +5 -0
- maleo/identity/mixins/__init__.py +0 -0
- maleo/identity/mixins/organization.py +15 -0
- maleo/identity/mixins/organization_registration_code.py +14 -0
- maleo/identity/mixins/organization_role.py +15 -0
- maleo/identity/mixins/user.py +47 -0
- maleo/identity/mixins/user_organization.py +6 -0
- maleo/identity/mixins/user_organization_role.py +6 -0
- maleo/identity/mixins/user_profile.py +81 -0
- maleo/identity/mixins/user_system_role.py +6 -0
- maleo/identity/models/__init__.py +0 -0
- {maleo_identity/models/tables → maleo/identity/models}/organization.py +21 -17
- {maleo_identity/models/tables → maleo/identity/models}/organization_registration_code.py +11 -15
- {maleo_identity/models/tables → maleo/identity/models}/organization_role.py +11 -17
- {maleo_identity/models/tables → maleo/identity/models}/user.py +13 -17
- {maleo_identity/models/tables → maleo/identity/models}/user_organization.py +15 -25
- {maleo_identity/models/tables → maleo/identity/models}/user_organization_role.py +16 -24
- {maleo_identity/models/tables → maleo/identity/models}/user_profile.py +16 -14
- maleo/identity/models/user_system_role.py +26 -0
- maleo/identity/schemas/__init__.py +0 -0
- maleo/identity/schemas/data/__init__.py +0 -0
- maleo/identity/schemas/data/organization.py +36 -0
- maleo/identity/schemas/data/organization_registration_code.py +33 -0
- maleo/identity/schemas/data/organization_role.py +32 -0
- maleo/identity/schemas/data/user.py +33 -0
- maleo/identity/schemas/data/user_organization.py +23 -0
- maleo/identity/schemas/data/user_organization_role.py +13 -0
- maleo/identity/schemas/data/user_profile.py +59 -0
- maleo/identity/schemas/data/user_system_role.py +25 -0
- maleo/identity/schemas/metadata/__init__.py +0 -0
- maleo/identity/schemas/metadata/user.py +6 -0
- maleo/identity/schemas/parameter/__init__.py +0 -0
- maleo/identity/schemas/parameter/client/__init__.py +0 -0
- maleo/identity/schemas/parameter/client/organization.py +74 -0
- maleo/identity/schemas/parameter/client/organization_registration_code.py +24 -0
- maleo/identity/schemas/parameter/client/organization_role.py +42 -0
- maleo/identity/schemas/parameter/client/user.py +44 -0
- maleo/identity/schemas/parameter/client/user_organization.py +62 -0
- maleo/identity/schemas/parameter/client/user_organization_role.py +49 -0
- maleo/identity/schemas/parameter/client/user_profile.py +28 -0
- maleo/identity/schemas/parameter/client/user_system_role.py +43 -0
- maleo/identity/schemas/parameter/general/__init__.py +0 -0
- maleo/identity/schemas/parameter/general/organization.py +43 -0
- maleo/identity/schemas/parameter/general/organization_registration_code.py +30 -0
- maleo/identity/schemas/parameter/general/organization_role.py +14 -0
- maleo/identity/schemas/parameter/general/user.py +101 -0
- maleo/identity/schemas/parameter/general/user_organization.py +18 -0
- maleo/identity/schemas/parameter/general/user_organization_role.py +15 -0
- maleo/identity/schemas/parameter/general/user_profile.py +82 -0
- maleo/identity/schemas/parameter/general/user_system_role.py +30 -0
- maleo/identity/schemas/parameter/service/__init__.py +0 -0
- maleo/identity/schemas/parameter/service/organization.py +60 -0
- maleo/identity/schemas/parameter/service/organization_registration_code.py +24 -0
- maleo/identity/schemas/parameter/service/organization_role.py +35 -0
- maleo/identity/schemas/parameter/service/user.py +47 -0
- maleo/identity/schemas/parameter/service/user_organization_role.py +36 -0
- maleo/identity/schemas/parameter/service/user_profile.py +28 -0
- maleo/identity/schemas/parameter/service/user_system_role.py +31 -0
- {maleo_identity → maleo/identity}/types/__init__.py +2 -2
- maleo/identity/types/base/__init__.py +0 -0
- maleo/identity/types/base/organization.py +5 -0
- maleo/identity/types/base/organization_registration_code.py +4 -0
- maleo/identity/types/base/user.py +5 -0
- maleo/identity/types/base/user_profile.py +4 -0
- {maleo_identity-0.0.75.dist-info → maleo_identity-0.0.77.dist-info}/METADATA +3 -3
- maleo_identity-0.0.77.dist-info/RECORD +101 -0
- maleo_identity-0.0.77.dist-info/top_level.txt +1 -0
- maleo_identity/client/controllers/__init__.py +0 -17
- 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/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/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/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/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 → maleo/identity}/__init__.py +0 -0
- {maleo_identity → maleo/identity}/client/__init__.py +0 -0
- {maleo_identity/client/controllers/http → maleo/identity/client/services}/__init__.py +0 -0
- {maleo_identity/models/transfers/results/service → maleo/identity/constants}/__init__.py +0 -0
- {maleo_identity/types/results/service → maleo/identity/dtos}/__init__.py +0 -0
- {maleo_identity-0.0.75.dist-info → maleo_identity-0.0.77.dist-info}/WHEEL +0 -0
|
@@ -1,77 +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.client import BaseClientParametersTransfers
|
|
5
|
-
from maleo_metadata.models.expanded_schemas.organization_type import MaleoMetadataOrganizationTypeExpandedSchemas
|
|
6
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
7
|
-
from maleo_identity.models.schemas.organization import MaleoIdentityOrganizationSchemas
|
|
8
|
-
|
|
9
|
-
class MaleoIdentityOrganizationClientParametersTransfers:
|
|
10
|
-
class GetMultiple(
|
|
11
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
12
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
13
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
14
|
-
BaseGeneralSchemas.IsLeaf,
|
|
15
|
-
BaseGeneralSchemas.IsChild,
|
|
16
|
-
BaseGeneralSchemas.IsParent,
|
|
17
|
-
BaseGeneralSchemas.IsRoot,
|
|
18
|
-
MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
19
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
20
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
21
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
22
|
-
): pass
|
|
23
|
-
|
|
24
|
-
class GetMultipleChildren(
|
|
25
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
26
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
27
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
28
|
-
BaseGeneralSchemas.IsLeaf,
|
|
29
|
-
BaseGeneralSchemas.IsParent,
|
|
30
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
31
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
32
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
33
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
34
|
-
): pass
|
|
35
|
-
|
|
36
|
-
# class GetMultipleStructured(
|
|
37
|
-
# BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
38
|
-
# BaseParameterSchemas.OptionalListOfKeys,
|
|
39
|
-
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
40
|
-
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
41
|
-
# BaseParameterSchemas.OptionalListOfUuids,
|
|
42
|
-
# BaseParameterSchemas.OptionalListOfIds
|
|
43
|
-
# ): pass
|
|
44
|
-
|
|
45
|
-
class GetMultipleQuery(
|
|
46
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
47
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
48
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
49
|
-
BaseGeneralSchemas.IsLeaf,
|
|
50
|
-
BaseGeneralSchemas.IsChild,
|
|
51
|
-
BaseGeneralSchemas.IsParent,
|
|
52
|
-
BaseGeneralSchemas.IsRoot,
|
|
53
|
-
MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
54
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
55
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
56
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
57
|
-
): pass
|
|
58
|
-
|
|
59
|
-
class GetMultipleChildrenQuery(
|
|
60
|
-
MaleoIdentityOrganizationSchemas.Expand,
|
|
61
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
62
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
63
|
-
BaseGeneralSchemas.IsLeaf,
|
|
64
|
-
BaseGeneralSchemas.IsParent,
|
|
65
|
-
MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
66
|
-
BaseParameterSchemas.OptionalListOfUuids,
|
|
67
|
-
BaseParameterSchemas.OptionalListOfIds
|
|
68
|
-
): pass
|
|
69
|
-
|
|
70
|
-
# class GetMultipleStructuredQuery(
|
|
71
|
-
# BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
72
|
-
# BaseParameterSchemas.OptionalListOfKeys,
|
|
73
|
-
# MaleoIdentityOrganizationSchemas.OptionalListOfParentIds,
|
|
74
|
-
# MaleoMetadataOrganizationTypeExpandedSchemas.OptionalListOfSimpleOrganizationTypes,
|
|
75
|
-
# BaseParameterSchemas.OptionalListOfUuids,
|
|
76
|
-
# BaseParameterSchemas.OptionalListOfIds
|
|
77
|
-
# ): pass
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.client import BaseClientParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRegistrationCodeClientParametersTransfers:
|
|
7
|
-
class GetMultipleFromOrganization(
|
|
8
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
9
|
-
MaleoIdentityGeneralSchemas.OrganizationId
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class GetMultiple(
|
|
13
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
14
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
15
|
-
): pass
|
|
16
|
-
|
|
17
|
-
class GetMultipleFromOrganizationQuery(
|
|
18
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class GetMultipleQuery(
|
|
22
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
23
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
24
|
-
): 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.client import BaseClientParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.organization_role import MaleoIdentityOrganizationRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityOrganizationRoleClientParametersTransfers:
|
|
8
|
-
class GetMultipleFromOrganization(
|
|
9
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
10
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
11
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
12
|
-
MaleoIdentityGeneralSchemas.OrganizationId
|
|
13
|
-
): pass
|
|
14
|
-
|
|
15
|
-
class GetMultiple(
|
|
16
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
17
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
18
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
19
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
20
|
-
): pass
|
|
21
|
-
|
|
22
|
-
class GetMultipleFromOrganizationQuery(
|
|
23
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
24
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
25
|
-
BaseParameterSchemas.OptionalListOfKeys
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class GetMultipleQuery(
|
|
29
|
-
MaleoIdentityOrganizationRoleSchemas.Expand,
|
|
30
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
31
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
32
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
33
|
-
): 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.client import BaseClientParametersTransfers
|
|
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 MaleoIdentityUserClientParametersTransfers:
|
|
10
|
-
class GetMultiple(
|
|
11
|
-
MaleoIdentityUserSchemas.Expand,
|
|
12
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
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 GetMultipleQuery(
|
|
24
|
-
MaleoIdentityUserSchemas.Expand,
|
|
25
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
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,45 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.client import BaseClientParametersTransfers
|
|
3
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
4
|
-
from maleo_identity.models.schemas.user_organization import MaleoIdentityUserOrganizationSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationClientParametersTransfers:
|
|
7
|
-
class GetMultipleFromUser(
|
|
8
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
9
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
10
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
11
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
12
|
-
): pass
|
|
13
|
-
|
|
14
|
-
class GetMultipleFromOrganization(
|
|
15
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
16
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
17
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
18
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
19
|
-
): pass
|
|
20
|
-
|
|
21
|
-
class GetMultiple(
|
|
22
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
23
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
24
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
25
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class GetMultipleFromUserQuery(
|
|
29
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
30
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
31
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds
|
|
32
|
-
): pass
|
|
33
|
-
|
|
34
|
-
class GetMultipleFromOrganizationQuery(
|
|
35
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
36
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
37
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
38
|
-
): pass
|
|
39
|
-
|
|
40
|
-
class GetMultipleQuery(
|
|
41
|
-
MaleoIdentityUserOrganizationSchemas.Expand,
|
|
42
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
43
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
44
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
45
|
-
): pass
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.parameter import BaseParameterSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.parameters.client import BaseClientParametersTransfers
|
|
4
|
-
from maleo_identity.models.schemas.general import MaleoIdentityGeneralSchemas
|
|
5
|
-
from maleo_identity.models.schemas.user_organization_role import MaleoIdentityUserOrganizationRoleSchemas
|
|
6
|
-
|
|
7
|
-
class MaleoIdentityUserOrganizationRoleClientParametersTransfers:
|
|
8
|
-
class GetMultipleFromUserOrOrganization(
|
|
9
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
10
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
11
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
12
|
-
MaleoIdentityGeneralSchemas.OrganizationId,
|
|
13
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
14
|
-
): pass
|
|
15
|
-
|
|
16
|
-
class GetMultiple(
|
|
17
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
18
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
19
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
20
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
21
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
22
|
-
): pass
|
|
23
|
-
|
|
24
|
-
class GetMultipleFromUserOrOrganizationQuery(
|
|
25
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
26
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
27
|
-
BaseParameterSchemas.OptionalListOfKeys
|
|
28
|
-
): pass
|
|
29
|
-
|
|
30
|
-
class GetMultipleQuery(
|
|
31
|
-
MaleoIdentityUserOrganizationRoleSchemas.Expand,
|
|
32
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
33
|
-
BaseParameterSchemas.OptionalListOfKeys,
|
|
34
|
-
MaleoIdentityGeneralSchemas.OptionalListOfOrganizationIds,
|
|
35
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
36
|
-
): pass
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.client import BaseClientParametersTransfers
|
|
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 MaleoIdentityUserProfileClientParametersTransfers:
|
|
9
|
-
class GetMultiple(
|
|
10
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
11
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
12
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
13
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
14
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
15
|
-
): pass
|
|
16
|
-
|
|
17
|
-
class GetMultipleQuery(
|
|
18
|
-
MaleoIdentityUserProfileSchemas.Expand,
|
|
19
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
20
|
-
MaleoMetadataBloodTypeExpandedSchemas.OptionalListOfSimpleBloodTypes,
|
|
21
|
-
MaleoMetadataGenderExpandedSchemas.OptionalListOfSimpleGenders,
|
|
22
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
23
|
-
): pass
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.parameters.client import BaseClientParametersTransfers
|
|
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 MaleoIdentityUserSystemRoleClientParametersTransfers:
|
|
8
|
-
class GetMultipleFromUser(
|
|
9
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
10
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
11
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles,
|
|
12
|
-
MaleoIdentityGeneralSchemas.UserId
|
|
13
|
-
): pass
|
|
14
|
-
|
|
15
|
-
class GetMultiple(
|
|
16
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
17
|
-
BaseClientParametersTransfers.GetPaginatedMultiple,
|
|
18
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles,
|
|
19
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
20
|
-
): pass
|
|
21
|
-
|
|
22
|
-
class GetMultipleFromUserQuery(
|
|
23
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
24
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
25
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles
|
|
26
|
-
): pass
|
|
27
|
-
|
|
28
|
-
class GetMultipleQuery(
|
|
29
|
-
MaleoIdentityUserSystemRoleSchemas.Expand,
|
|
30
|
-
BaseClientParametersTransfers.GetPaginatedMultipleQuery,
|
|
31
|
-
MaleoMetadataSystemRoleExpandedSchemas.OptionalListOfSimpleSystemRoles,
|
|
32
|
-
MaleoIdentityGeneralSchemas.OptionalListOfUserIds
|
|
33
|
-
): pass
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleGeneralParametersTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationGeneralParametersTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleGeneralParametersTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileGeneralParametersTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleGeneralParametersTransfers
|
|
8
|
-
from .user import MaleoIdentityUserGeneralParametersTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityGeneralParametersTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleGeneralParametersTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationGeneralParametersTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleGeneralParametersTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationGeneralParametersTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileGeneralParametersTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleGeneralParametersTransfers
|
|
17
|
-
User = MaleoIdentityUserGeneralParametersTransfers
|
|
@@ -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
|